From 661f55ea9e997e3b6055f0d93efeeb5831e07db2 Mon Sep 17 00:00:00 2001 From: plopez Date: Fri, 6 Sep 2024 18:07:59 +0000 Subject: [PATCH 01/38] Fixed naming conventions for necb systems --- lib/openstudio-standards.rb | 1 + .../standards/necb/NECB2011/hvac_namer.rb | 264 ++++++++++++++++++ .../NECB2011/hvac_system_1_single_speed.rb | 2 +- .../necb/NECB2011/hvac_system_2_and_5.rb | 2 +- .../hvac_system_3_and_8_single_speed.rb | 3 +- .../standards/necb/NECB2011/hvac_system_4.rb | 3 +- .../standards/necb/NECB2011/hvac_system_6.rb | 2 +- .../standards/necb/NECB2011/hvac_systems.rb | 9 +- utilities/btap_cli/print_available_systems.rb | 218 +++++++++++++++ 9 files changed, 493 insertions(+), 11 deletions(-) create mode 100644 lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb create mode 100644 utilities/btap_cli/print_available_systems.rb diff --git a/lib/openstudio-standards.rb b/lib/openstudio-standards.rb index 781c0a80d1..b78760050e 100644 --- a/lib/openstudio-standards.rb +++ b/lib/openstudio-standards.rb @@ -91,6 +91,7 @@ module OpenstudioStandards require_relative "#{stds}/necb/NECB2011/hvac_system_3_and_8_multi_speed" require_relative "#{stds}/necb/NECB2011/hvac_system_4" require_relative "#{stds}/necb/NECB2011/hvac_system_6" + require_relative "#{stds}/necb/NECB2011/hvac_namer" require_relative "#{stds}/necb/NECB2011/service_water_heating" require_relative "#{stds}/necb/NECB2011/electrical_power_systems_and_motors" require_relative "#{stds}/necb/NECB2011/beps_compliance_path" diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb new file mode 100644 index 0000000000..0790e86ba8 --- /dev/null +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb @@ -0,0 +1,264 @@ +class NECB2011 + def detect_air_system_type(air_loop, old_name = nil) + # Determine system charecteristics. + unitary_hp = air_loop.components.detect(proc {false}) { |equip| equip.to_AirLoopHVACUnitaryHeatPumpAirToAir.is_initialized()} ? air_loop.components.detect() { |equip| equip.to_AirLoopHVACUnitaryHeatPumpAirToAir.is_initialized()}.to_AirLoopHVACUnitaryHeatPumpAirToAir.get : false + unitary_heating_coil_elec = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingElectric.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.get : false + unitary_heating_coil_gas = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingGas.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.get : false + unitary_heating_coil_ashp = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingDXSingleSpeed.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingDXSingleSpeed.get : false + unitary_supply_fan_on_off = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplyAirFan.to_FanOnOff.is_initialized() ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplyAirFan.to_FanOnOff.get : false + heating_coil_elect = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingElectric.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilHeatingElectric.is_initialized}.to_CoilHeatingElectric.get : false + heating_coil_ashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized and equip.to_CoilHeatingDXSingleSpeed.get.minimumOutdoorDryBulbTemperatureforCompressorOperation == -10} ? air_loop.components.detect() { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized}.to_CoilHeatingDXSingleSpeed.get : false + heating_coil_ccashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized and equip.to_CoilHeatingDXSingleSpeed.get.minimumOutdoorDryBulbTemperatureforCompressorOperation == -25} ? air_loop.components.detect() { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized}.to_CoilHeatingDXSingleSpeed.get : false + heating_coil_water = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingWater.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilHeatingWater.is_initialized}.to_CoilHeatingWater.get : false + heating_coil_gas = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingGas.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilHeatingGas.is_initialized}.to_CoilHeatingGas.get : false + cooling_coil_ashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and heating_coil_ashp} + cooling_coil_ccashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and heating_coil_ccashp} + cooling_coil_dx = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and (heating_coil_gas or heating_coil_elect or heating_coil_water)} + + cooling_coil_water = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingWater.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilCoolingWater.is_initialized}.to_CoilCoolingWater.get : false + zone_htg_b_elec = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Electric') } + zone_htg_b_water = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Water') } + zone_vav_rh = air_loop.components.detect(proc {false}) { |equip| equip.to_AirTerminalSingleDuctVAVReheat.is_initialized()} ? air_loop.components.detect() { |equip| equip.to_AirTerminalSingleDuctVAVReheat.is_initialized()}.to_AirTerminalSingleDuctVAVReheat.get : false + + + #Check if TPFC is on or off. + zone_tpfc = false + zone_fpfc = false + if air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized()} + case air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized()}.to_ZoneHVACFourPipeFanCoil.get.coolingCoil.to_CoilCoolingWater.get.availabilitySchedule.nameString + when 'tpfc_clg_availability' + zone_tpfc = true + when OpenStudio::Model::Model.new.alwaysOnDiscreteSchedule.nameString + zone_fpfc = true + else + raise('unknown schedule type') + end + end + + zone_htg_pthp = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Packaged Terminal Heat Pump') } + zone_clg_ptac = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('PTAC') } + zone_clg_pthp = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Packaged Terminal Heat Pump') } + zone_rh_elec = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Air Terminal Single Duct Constant Volume Reheat') and equip.to_AirTerminalSingleDuctConstantVolumeReheat.get.reheatCoil.nameString.include?('Coil Heating Electric') } + zone_rh_gas = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Air Terminal Single Duct Constant Volume Reheat') and equip.to_AirTerminalSingleDuctConstantVolumeReheat.get.reheatCoil.nameString.include?('Coil Heating Gas') } + zone_rh_hw = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Air Terminal Single Duct Constant Volume Reheat') and equip.to_AirTerminalSingleDuctConstantVolumeReheat.get.reheatCoil.nameString.include?('Coil Heating Water') } + return_fan = air_loop.components.detect(proc {false}) { |equip| equip.nameString.include?('Fan') } + # Determine System Outdoor Air type. + oa_controller = air_loop.components.detect(proc {false}) { |equip| equip.nameString.include?('ControllerOutdoorAir') } + oa_system = air_loop.components.detect(proc {false}) { |equip| equip.nameString.include?('OutdoorAirSystem') } + # Determine System Heat Recovery type. + heat_recovery = air_loop.components.detect(proc {false}) { |equip| equip.nameString.include?('HeatExchangerAirToAirSensibleAndLatent') } + # Determine System Supply Fan type. + fans_vv = air_loop.components.select{ |equip| equip.to_FanVariableVolume.is_initialized()} + fans_cv = air_loop.components.select{ |equip| equip.to_FanConstantVolume.is_initialized()} + case fans_vv.size + when 1 + supply_fan_vv = fans_vv[1].to_FanVariableVolume.get + return_fan_vv = false + when 2 + return_fan_vv = fans_vv[0].to_FanVariableVolume.get + supply_fan_vv = fans_vv[1].to_FanVariableVolume.get + else + supply_fan_vv = false + return_fan_vv = false + end + case fans_cv.size + when 1 + supply_fan_cv = fans_cv[0].to_FanConstantVolume.get + return_fan_cv = false + when 2 + return_fan_cv = fans_cv[0].to_FanConstantVolume.get + supply_fan_cv = fans_cv[1].to_FanConstantVolume.get + else + supply_fan_cv = false + return_fan_cv = false + end + + # System 1 systems must have the following components: + # 1. Heating Coil: Electric, ASHP, Hot Water + # 2. Cooling Coil: ASHP, CCASHP, DX + # 3. Fan: Constant Volume + # 4. Zone Heating: Baseboard Electric, Baseboard Hot Water + # 5. Zone Cooling: PTAC if no hp systems are present. + + # System 1 systems must have the following components: + # Should have ashp, electric or hot water heating coil + if (heating_coil_ashp or heating_coil_elect or heating_coil_water) + # Should have ashp, ccashp or dx cooling coil, if no ashp zones should have PTAC. + if (cooling_coil_ashp or cooling_coil_ccashp or cooling_coil_dx) or (not cooling_coil_ashp and not cooling_coil_ccashp and zone_clg_ptac) + # Should have constant volume fan + if (supply_fan_cv) + # Zone heating should have electric or hot water baseboard + if (zone_htg_b_elec or zone_htg_b_water) + ref_sys = "sys_1" + oa='doas' + oa = 'mixed' if heating_coil_ashp or heating_coil_ccashp + end + end + end + end + + # System 2 systems must have the following components: + # Zonal conditioning systems must have fpfc with always on schedule. + if (zone_fpfc) + ref_sys = "sys_2" + oa='doas' + end + + # System 5 systems must have the following components: + # Zonal conditioning systems must have fpfc with always on schedule. + if (zone_tpfc) + ref_sys = "sys_5" + oa='doas' + end + + # System 3 systems must have the following components: + # Heat pump system must have + + + if (unitary_hp and ( unitary_heating_coil_elec or unitary_heating_coil_gas or unitary_heating_coil_ashp) and unitary_supply_fan_on_off and (zone_htg_b_elec or zone_htg_b_water)) + ref_sys = "sys_3" + oa='mixed' + elsif (zone_htg_b_elec or zone_htg_b_water) and (heating_coil_ashp or heating_coil_elect or heating_coil_gas) and cooling_coil_dx and not zone_clg_ptac + ref_sys = "sys_3" + oa='mixed' + end + + if zone_vav_rh and return_fan_vv and supply_fan_vv + ref_sys = "sys_6" + oa='mixed' + end + + # Determine if the system is a DOAS based on + # whether there is 100% OA in heating and cooling sizing. + puts "allOutdoorAirinCooling #{air_loop.sizingSystem.allOutdoorAirinCooling}" + puts "allOutdoorAirinHeating #{air_loop.sizingSystem.allOutdoorAirinHeating}" + puts "typeofLoadtoSizeOn #{air_loop.sizingSystem.typeofLoadtoSizeOn}" + + + + + + # puts "heating_coil_elect: #{heating_coil_elect.nil?}" + # puts "heating_coil_ashp: #{heating_coil_ashp}" + # puts "heating_coil_ccashp: #{heating_coil_ccashp}" + # puts "heating_coil_water: #{heating_coil_water}" + # puts "cooling_coil_ashp: #{cooling_coil_ashp}" + # puts "cooling_coil_ccashp: #{cooling_coil_ccashp}" + # puts "cooling_coil_dx: #{cooling_coil_dx}" + # puts "cooling_coil_water: #{cooling_coil_water}" + # puts "heating_coil_gas: #{heating_coil_gas}" + # puts "zone_htg_b_elec: #{zone_htg_b_elec}" + # puts "zone_htg_b_water: #{zone_htg_b_water}" + # puts "zone_htg_tpfc: #{zone_htg_tpfc}" + # puts "zone_htg_fpfc: #{zone_htg_fpfc}" + # puts "zone_htg_pthp: #{zone_htg_pthp}" + # puts "zone_clg_tpfc: #{zone_clg_tpfc}" + # puts "zone_clg_fpfc: #{zone_clg_fpfc}" + # puts "zone_clg_ptac: #{zone_clg_ptac}" + # puts "zone_clg_pthp: #{zone_clg_pthp}" + # puts "return_fan: #{return_fan}" + # puts "oa_controller: #{oa_controller}" + # puts "oa_system: #{oa_system}" + # puts "heat_recovery: #{heat_recovery}" + # puts "supply_fan_vv: #{supply_fan_vv}" + # puts "return_fan_vv: #{return_fan_vv}" + # puts "supply_fan_cv: #{supply_fan_cv}" + # puts "return_fan_cv: #{return_fan_cv}" + # puts "zone_rh_elec: #{zone_rh_elec}" + # puts "zone_rh_gas: #{zone_rh_gas}" + # puts "unitary_hp: #{unitary_hp}" + # puts "unitary_heating_coil_elec: #{unitary_heating_coil_elec}" + # puts "unitary_heating_coil_gas: #{unitary_heating_coil_gas}" + # puts "unitary_heating_coil_ashp: #{unitary_heating_coil_ashp}" + # puts "unitary_supply_fan_on_off: #{unitary_supply_fan_on_off}" + # puts "zone_htg_b_elec: #{zone_htg_b_elec}" + # puts "zone_htg_b_water: #{zone_htg_b_water}" + + + + + + # sys_htg or sh>? + if heating_coil_elect + sh = 'sh>c-e' + elsif heating_coil_ashp or unitary_hp + sh = 'sh>ashp' + elsif heating_coil_ccashp + sh = 'sh>ccashp' + elsif heating_coil_water + sh = 'sh>c-hw' + elsif heating_coil_gas + sh = 'sh>c-g' + else + sh = 'sh>none' + end + + # sys_clg or sc>? + + if cooling_coil_ashp or unitary_hp + sc = 'sc>ashp' + elsif cooling_coil_ccashp + sc = 'sc>ccashp' + elsif cooling_coil_dx + sc = 'sc>dx' + elsif cooling_coil_water + sc = 'sc>c-chw' + else + sc = 'sc>none' + end + + # sys_sf or ssf>? + if supply_fan_cv or unitary_supply_fan_on_off + ssf = 'ssf>cv' + elsif supply_fan_vv + ssf = 'ssf>vv' + else + ssf = 'ssf>none' + end + + + if return_fan_cv + srf = 'srf>cv' + elsif return_fan_vv + srf = 'srf>vv' + else + srf = 'srf>none' + end + + # zone_htg or zh>? + if zone_htg_b_elec + zh = 'zh>b-e' + elsif zone_htg_b_water + zh = 'zh>b-hw' + elsif zone_tpfc + zh = 'zh>tpfc' + elsif zone_fpfc + zh = 'zh>fpfc' + elsif zone_htg_pthp + zh = 'zh>pthp' + else + zh = 'zh>none' + end + + if zone_tpfc + zc = 'zc>tpfc' + elsif zone_fpfc + zc = 'zc>fpfc' + elsif zone_clg_ptac + zc = 'zc>ptac' + elsif zone_clg_pthp + zc = 'zc>pthp' + else + zc = 'zc>none' + end + name ="" + + # sh and sc are reversed for system 6 + unless ref_sys == "sys_6" + name = "#{ref_sys}|#{oa}|shr>none|#{sc}|#{sh}|#{ssf}|#{zh}|#{zc}|#{srf}|" + else + name = "#{ref_sys}|#{oa}|shr>none|#{sh}|#{sc}|#{ssf}|#{zh}|#{zc}|#{srf}|" + end + return old_name, name + end +end \ No newline at end of file diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb index c49b7d8e4c..7c299e4e27 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb @@ -262,7 +262,7 @@ def add_sys1_unitary_ac_baseboard_heating_single_speed(model:, sys_oa = 'doas' end sys_name_pars['sys_rf'] = 'none' - assign_base_sys_name(mau_air_loop, + return assign_base_sys_name(mau_air_loop, sys_abbr: 'sys_1', sys_oa: sys_oa, sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb index 40cc34b6df..fc53ec9e23 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb @@ -169,7 +169,7 @@ def add_sys2_FPFC_sys5_TPFC(model:, sys_name_pars['zone_htg'] = fan_coil_type sys_name_pars['zone_clg'] = fan_coil_type sys_name_pars['sys_rf'] = 'none' - assign_base_sys_name(mau_air_loop, + return assign_base_sys_name(mau_air_loop, sys_abbr: sys_abbr, sys_oa: 'doas', sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb index c87bb5bebc..736a14f833 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb @@ -123,11 +123,10 @@ def add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating_single sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'none' - assign_base_sys_name(air_loop, + return assign_base_sys_name(air_loop, sys_abbr: 'sys_3', sys_oa: 'mixed', sys_name_pars: sys_name_pars) - return true end def add_system_3_and_8_airloop(heating_coil_type, model, system_data, control_zone, necb_reference_hp:false, necb_reference_hp_supp_fuel:'DefaultFuel') diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb index 9dd62c8afa..536b4874e7 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb @@ -203,12 +203,11 @@ def add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model:, sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'none' - assign_base_sys_name(air_loop, + return assign_base_sys_name(air_loop, sys_abbr: 'sys_4', sys_oa: 'mixed', sys_name_pars: sys_name_pars) - return true end # end add_sys4_single_zone_make_up_air_unit_with_baseboard_heating end diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb index 1da86ae0f2..dedb77666b 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb @@ -148,7 +148,7 @@ def add_sys6_multi_zone_built_up_system_with_baseboard_heating(model:, sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'vv' - assign_base_sys_name(air_loop, + return assign_base_sys_name(air_loop, sys_abbr: 'sys_6', sys_oa: 'mixed', sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb index 69eb6e1199..b1d43c61a8 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb @@ -2162,7 +2162,7 @@ def assign_base_sys_name(airloop, sys_abbr:, sys_oa:, sys_name_pars:) sys_name += 'sh>c-e' when 'hot water' sys_name += 'sh>c-hw' - when 'gas' + when 'gas', 'g' sys_name += 'sh>c-g' when 'dx' sys_name += 'sh>ashp' @@ -2176,7 +2176,7 @@ def assign_base_sys_name(airloop, sys_abbr:, sys_oa:, sys_name_pars:) case value.downcase when 'none' sys_name += 'sc>none' - when 'chilled water' + when 'chilled water','hydronic' sys_name += 'sc>c-chw' when 'dx' if sys_name_pars['sys_htg'] == 'dx' @@ -2209,9 +2209,9 @@ def assign_base_sys_name(airloop, sys_abbr:, sys_oa:, sys_name_pars:) when 'hot water' sys_name += 'zh>b-hw' when 'tpfc' - sys_name += 'zh>fpfc' - when 'fpfc' sys_name += 'zh>tpfc' + when 'fpfc' + sys_name += 'zh>fpfc' when 'pthp' sys_name += 'zh>pthp' end @@ -2244,6 +2244,7 @@ def assign_base_sys_name(airloop, sys_abbr:, sys_oa:, sys_name_pars:) end airloop.setName(sys_name) + return detect_air_system_type(airloop, sys_name) end # Method to update the base system name based on the inputs provided. diff --git a/utilities/btap_cli/print_available_systems.rb b/utilities/btap_cli/print_available_systems.rb new file mode 100644 index 0000000000..ce03870add --- /dev/null +++ b/utilities/btap_cli/print_available_systems.rb @@ -0,0 +1,218 @@ +require_relative './libs.rb' +WEATHER_FILE = 'CAN_ON_Toronto.Intl.AP.716240_CWEC2020.epw' +# Create NECB2011 objects +NECB = NECB2011.new +$base_model = nil +$failures = [] +$successes = [] + +def create_model() + # create model + standard = Standard.build('NECB2011') + if $base_model.nil? + $base_model = standard.load_building_type_from_library(building_type: 'SmallOffice') + standard.apply_weather_data(model: $base_model, epw_file: WEATHER_FILE) + standard.apply_loads(model: $base_model) + standard.apply_envelope(model: $base_model) + standard.apply_fdwr_srr_daylighting(model: $base_model) + standard.apply_auto_zoning(model: $base_model) + end + return BTAP::FileIO.deep_copy($base_model) +end + +def system1() + create_model() + mau_type = [true] + mau_heating_types = ["DX","Hot Water", "Electric"] + necb_reference_hp_types = [true, false] + necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity"] + baseboard_types = ["Hot Water", "Electric"] + # Generate all possible combinations of the above arrays + mau_type.product(mau_heating_types, necb_reference_hp_types, necb_reference_hp_supp_fuel_types, baseboard_types).each do |mau_type, mau_heating_type, necb_reference_hp, necb_reference_hp_supp_fuel, baseboard_type| + model = create_model() + + # Create hot water loop + hw_loop = OpenStudio::Model::PlantLoop.new(model) + + + # Create NECB2011 objects + necb = NECB2011.new + + + if (mau_type == false and necb_reference_hp == true) or + (necb_reference_hp == true and mau_heating_type != 'DX') or + (necb_reference_hp == false and mau_heating_type == 'DX') + next + end + arguments = Hash[ + "mau_type", mau_type, + "mau_heating_type", mau_heating_type, + "necb_reference_hp", necb_reference_hp, + "necb_reference_hp_supp_fuel", necb_reference_hp_supp_fuel, + "baseboard_type", baseboard_type + ] + + old_name, new_name = necb.add_sys1_unitary_ac_baseboard_heating_single_speed( + model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: model.getThermalZones, + mau_type: mau_type, + mau_heating_coil_type: mau_heating_type, + baseboard_type: baseboard_type, + hw_loop: hw_loop + ) + if old_name == new_name + $successes.push([arguments,old_name,new_name]) + else + $failures.push([arguments,old_name,new_name]) + end + end +end + +def system2_5() + fan_coil_types = ['FPFC','TPFC'] + chiller_types = ["Scroll","Centrifugal","RotaryScrew","Reciprocating"] + mau_cooling_types = ["DX","Hydronic"] + # Generate all possible combinations of the above arrays + mau_cooling_types.product( chiller_types, fan_coil_types).each do |mau_cooling_type, chiller_type, fan_coil_type| + puts("mau_cooling_type: #{mau_cooling_type}, chiller_types: #{chiller_type}, fan_coil_types: #{fan_coil_type}") + arguments = Hash[ + "mau_cooling_type", mau_cooling_type, + "chiller_type", chiller_type, + "fan_coil_type", fan_coil_type, + ] + + #Create model + model = create_model + + # Create hot water loop + hw_loop = OpenStudio::Model::PlantLoop.new(model) + + # Create NECB2011 objects + old_name, new_name = NECB2011.new.add_sys2_FPFC_sys5_TPFC( model: model, + zones:model.getThermalZones, + chiller_type: chiller_type, + fan_coil_type: fan_coil_type, + mau_cooling_type: mau_cooling_type, + hw_loop: hw_loop) + if old_name == new_name + $successes.push([arguments,old_name,new_name]) + else + $failures.push([arguments,old_name,new_name]) + end +end +end + +def system3() + mau_type = [true] + heating_coil_types = ["DX","Gas", "Electric"] + necb_reference_hp_types = [true, false] + necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity"] + baseboard_types = ["Hot Water", "Electric"] + # Generate all possible combinations of the above arrays + mau_type.product(heating_coil_types, necb_reference_hp_types, necb_reference_hp_supp_fuel_types, baseboard_types).each do |mau_type, heating_coil_type, necb_reference_hp, necb_reference_hp_supp_fuel, baseboard_type| + arguments = Hash[ + "mau_type", mau_type, + "heating_coil_type", heating_coil_type, + "necb_reference_hp", necb_reference_hp, + "necb_reference_hp_supp_fuel", necb_reference_hp_supp_fuel, + "baseboard_type", baseboard_type + ] + + + #Create model + model = create_model + + hw_loop = nil + if (baseboard_type == "Hot Water") + hw_loop = OpenStudio::Model::PlantLoop.new(model) + NECB.setup_hw_loop_with_components(model, hw_loop, 'Electricity', model.alwaysOnDiscreteSchedule) + end + + if (mau_type == false and necb_reference_hp == true) or + (necb_reference_hp == true and heating_coil_type != 'DX') or + (necb_reference_hp == false and heating_coil_type == 'DX') + next + end + old_name, new_name = NECB.add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating_single_speed( + model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: model.getThermalZones, + heating_coil_type: heating_coil_type, + baseboard_type: baseboard_type, + hw_loop: hw_loop, + new_auto_zoner: true) + if old_name == new_name + $successes.push([arguments,old_name,new_name]) + else + $failures.push([arguments,old_name,new_name]) + end + end + +end + +def system6() + heating_coil_types = ["Electric" , "Hot Water"] + baseboard_types = ["Electric", "Hot Water"] + chiller_types = ["Scroll","Centrifugal","RotaryScrew","Reciprocating"] + fan_types = ["AF_or_BI_rdg_fancurve","AF_or_BI_inletvanes","fc_inletvanes","var_speed_drive"] + # Generate all possible combinations of the above arrays + heating_coil_types.product( baseboard_types, chiller_types, fan_types).each do |heating_coil_type, baseboard_type, chiller_type, fan_type| + puts("heating_coil_type: #{heating_coil_type} baseboard_type: #{baseboard_type}, chiller_type: #{chiller_type}, fan_type : #{fan_type}") + arguments = Hash[ + "heating_coil_type", heating_coil_type, + "baseboard_type", baseboard_type, + "chiller_type", chiller_type, + "fan_type", fan_type, + ] + + #Create model + model = create_model + + # Create hot water loop + hw_loop = OpenStudio::Model::PlantLoop.new(model) + + # Create NECB2011 objects + old_name,new_name = NECB2011.new.add_sys6_multi_zone_built_up_system_with_baseboard_heating( + model:model, + zones:model.getThermalZones, + heating_coil_type: heating_coil_type, + baseboard_type: baseboard_type, + chiller_type: chiller_type, + fan_type: fan_type, + hw_loop: hw_loop + ) + + if old_name == new_name + $successes.push([arguments,old_name,new_name]) + else + $failures.push([arguments,old_name,new_name]) + end + end +end + + + +system1() +system2_5() +system3() +system6() +puts ("Successes: #{$successes}") +puts("Failures: #{$failures}") +#Save $failures hash to the csv file. +CSV.open('failures.csv', 'w') do |csv| + csv << ["arguments","old_name","new_name"] + $failures.each do |failure| + csv << failure + end +end +#Save $successes hash to the csv file. +CSV.open('successes.csv', 'w') do |csv| + csv << ["arguments","old_name","new_name"] + $successes.each do |success| + csv << success + end +end + From 506672b58f6d18db802c4a559c3c2ccb90b14a55 Mon Sep 17 00:00:00 2001 From: plopez Date: Mon, 9 Sep 2024 02:43:55 +0000 Subject: [PATCH 02/38] updated airloop in method calls --- .../standards/necb/NECB2011/hvac_namer.rb | 79 ++++------ .../NECB2011/hvac_system_1_single_speed.rb | 2 +- .../necb/NECB2011/hvac_system_2_and_5.rb | 2 +- .../hvac_system_3_and_8_single_speed.rb | 2 +- .../standards/necb/NECB2011/hvac_system_4.rb | 2 +- .../standards/necb/NECB2011/hvac_system_6.rb | 2 +- .../standards/necb/NECB2011/hvac_systems.rb | 8 +- utilities/btap_cli/print_available_systems.rb | 141 +++++++++++++++--- 8 files changed, 155 insertions(+), 83 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb index 0790e86ba8..b3fc24959b 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb @@ -1,6 +1,7 @@ class NECB2011 - def detect_air_system_type(air_loop, old_name = nil) + def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) # Determine system charecteristics. + puts air_loop unitary_hp = air_loop.components.detect(proc {false}) { |equip| equip.to_AirLoopHVACUnitaryHeatPumpAirToAir.is_initialized()} ? air_loop.components.detect() { |equip| equip.to_AirLoopHVACUnitaryHeatPumpAirToAir.is_initialized()}.to_AirLoopHVACUnitaryHeatPumpAirToAir.get : false unitary_heating_coil_elec = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingElectric.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.get : false unitary_heating_coil_gas = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingGas.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.get : false @@ -73,60 +74,33 @@ def detect_air_system_type(air_loop, old_name = nil) return_fan_cv = false end - # System 1 systems must have the following components: - # 1. Heating Coil: Electric, ASHP, Hot Water - # 2. Cooling Coil: ASHP, CCASHP, DX - # 3. Fan: Constant Volume - # 4. Zone Heating: Baseboard Electric, Baseboard Hot Water - # 5. Zone Cooling: PTAC if no hp systems are present. - - # System 1 systems must have the following components: - # Should have ashp, electric or hot water heating coil - if (heating_coil_ashp or heating_coil_elect or heating_coil_water) - # Should have ashp, ccashp or dx cooling coil, if no ashp zones should have PTAC. - if (cooling_coil_ashp or cooling_coil_ccashp or cooling_coil_dx) or (not cooling_coil_ashp and not cooling_coil_ccashp and zone_clg_ptac) - # Should have constant volume fan - if (supply_fan_cv) - # Zone heating should have electric or hot water baseboard - if (zone_htg_b_elec or zone_htg_b_water) - ref_sys = "sys_1" - oa='doas' - oa = 'mixed' if heating_coil_ashp or heating_coil_ccashp - end - end - end - end - - # System 2 systems must have the following components: - # Zonal conditioning systems must have fpfc with always on schedule. - if (zone_fpfc) - ref_sys = "sys_2" - oa='doas' - end - - # System 5 systems must have the following components: - # Zonal conditioning systems must have fpfc with always on schedule. - if (zone_tpfc) - ref_sys = "sys_5" - oa='doas' - end - - # System 3 systems must have the following components: - # Heat pump system must have - - - if (unitary_hp and ( unitary_heating_coil_elec or unitary_heating_coil_gas or unitary_heating_coil_ashp) and unitary_supply_fan_on_off and (zone_htg_b_elec or zone_htg_b_water)) - ref_sys = "sys_3" + # System Name and assumptions + + case sys_abbr + when "sys_1" + ref_sys = sys_abbr + oa='doas' + oa = 'mixed' if heating_coil_ashp or heating_coil_ccashp + when "sys_2" + ref_sys = sys_abbr + oa='doas' + when "sys_3" + ref_sys = sys_abbr oa='mixed' - elsif (zone_htg_b_elec or zone_htg_b_water) and (heating_coil_ashp or heating_coil_elect or heating_coil_gas) and cooling_coil_dx and not zone_clg_ptac - ref_sys = "sys_3" + when "sys_5" + ref_sys = sys_abbr + oa='doas' + when "sys_4" + ref_sys = sys_abbr oa='mixed' - end - - if zone_vav_rh and return_fan_vv and supply_fan_vv - ref_sys = "sys_6" + when "sys_6" + ref_sys = sys_abbr oa='mixed' + else + raise("System name not recognized") end + + # Determine if the system is a DOAS based on # whether there is 100% OA in heating and cooling sizing. @@ -253,12 +227,13 @@ def detect_air_system_type(air_loop, old_name = nil) end name ="" + # sh and sc are reversed for system 6 unless ref_sys == "sys_6" name = "#{ref_sys}|#{oa}|shr>none|#{sc}|#{sh}|#{ssf}|#{zh}|#{zc}|#{srf}|" else name = "#{ref_sys}|#{oa}|shr>none|#{sh}|#{sc}|#{ssf}|#{zh}|#{zc}|#{srf}|" end - return old_name, name + return old_system_name, name end end \ No newline at end of file diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb index 7c299e4e27..bda464e66f 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb @@ -262,7 +262,7 @@ def add_sys1_unitary_ac_baseboard_heating_single_speed(model:, sys_oa = 'doas' end sys_name_pars['sys_rf'] = 'none' - return assign_base_sys_name(mau_air_loop, + return assign_base_sys_name(air_loop: mau_air_loop, sys_abbr: 'sys_1', sys_oa: sys_oa, sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb index fc53ec9e23..ceb8595b27 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb @@ -169,7 +169,7 @@ def add_sys2_FPFC_sys5_TPFC(model:, sys_name_pars['zone_htg'] = fan_coil_type sys_name_pars['zone_clg'] = fan_coil_type sys_name_pars['sys_rf'] = 'none' - return assign_base_sys_name(mau_air_loop, + return assign_base_sys_name(air_loop: mau_air_loop, sys_abbr: sys_abbr, sys_oa: 'doas', sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb index 736a14f833..cd03adc2ba 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb @@ -123,7 +123,7 @@ def add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating_single sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'none' - return assign_base_sys_name(air_loop, + return assign_base_sys_name( air_loop: air_loop, sys_abbr: 'sys_3', sys_oa: 'mixed', sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb index 536b4874e7..13ed7f08e8 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb @@ -203,7 +203,7 @@ def add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model:, sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'none' - return assign_base_sys_name(air_loop, + return assign_base_sys_name(air_loop: air_loop, sys_abbr: 'sys_4', sys_oa: 'mixed', sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb index dedb77666b..c561bd86ae 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb @@ -148,7 +148,7 @@ def add_sys6_multi_zone_built_up_system_with_baseboard_heating(model:, sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'vv' - return assign_base_sys_name(air_loop, + return assign_base_sys_name(air_loop: air_loop, sys_abbr: 'sys_6', sys_oa: 'mixed', sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb index b1d43c61a8..80c4699493 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb @@ -2144,7 +2144,7 @@ def create_heating_cooling_on_off_availability_schedule(model) # "sys_oa": "mixed" or "doas" # "sys_name_pars" is a hash for the remaining system name parts for heat recovery, # heating, cooling, supply fan, zone heating, zone cooling, and return fan - def assign_base_sys_name(airloop, sys_abbr:, sys_oa:, sys_name_pars:) + def assign_base_sys_name(air_loop:, sys_abbr:, sys_oa:, sys_name_pars:) sys_name = "#{sys_abbr}|#{sys_oa}|" sys_name_pars.each do |key, value| case key.downcase @@ -2243,8 +2243,10 @@ def assign_base_sys_name(airloop, sys_abbr:, sys_oa:, sys_name_pars:) sys_name += '|' end - airloop.setName(sys_name) - return detect_air_system_type(airloop, sys_name) + air_loop.setName(sys_name) + return detect_air_system_type(air_loop: air_loop, + old_system_name: sys_name, + sys_abbr: sys_abbr) end # Method to update the base system name based on the inputs provided. diff --git a/utilities/btap_cli/print_available_systems.rb b/utilities/btap_cli/print_available_systems.rb index ce03870add..818a718ca6 100644 --- a/utilities/btap_cli/print_available_systems.rb +++ b/utilities/btap_cli/print_available_systems.rb @@ -4,7 +4,7 @@ NECB = NECB2011.new $base_model = nil $failures = [] -$successes = [] +$successes = {} def create_model() # create model @@ -27,8 +27,9 @@ def system1() necb_reference_hp_types = [true, false] necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity"] baseboard_types = ["Hot Water", "Electric"] + multispeed_type = [false] # Generate all possible combinations of the above arrays - mau_type.product(mau_heating_types, necb_reference_hp_types, necb_reference_hp_supp_fuel_types, baseboard_types).each do |mau_type, mau_heating_type, necb_reference_hp, necb_reference_hp_supp_fuel, baseboard_type| + mau_type.product(mau_heating_types, necb_reference_hp_types, necb_reference_hp_supp_fuel_types, baseboard_types,multispeed_type).each do |mau_type, mau_heating_type, necb_reference_hp, necb_reference_hp_supp_fuel, baseboard_type,multispeed| model = create_model() # Create hot water loop @@ -49,7 +50,8 @@ def system1() "mau_heating_type", mau_heating_type, "necb_reference_hp", necb_reference_hp, "necb_reference_hp_supp_fuel", necb_reference_hp_supp_fuel, - "baseboard_type", baseboard_type + "baseboard_type", baseboard_type, + "multispeed", multispeed ] old_name, new_name = necb.add_sys1_unitary_ac_baseboard_heating_single_speed( @@ -62,16 +64,17 @@ def system1() baseboard_type: baseboard_type, hw_loop: hw_loop ) - if old_name == new_name - $successes.push([arguments,old_name,new_name]) - else - $failures.push([arguments,old_name,new_name]) - end + if old_name == new_name + arguments["system"] = "sys_1" + $successes[new_name] = arguments + else + $failures.push([arguments,old_name,new_name]) + end end end -def system2_5() - fan_coil_types = ['FPFC','TPFC'] +def system2() + fan_coil_types = ['FPFC'] chiller_types = ["Scroll","Centrifugal","RotaryScrew","Reciprocating"] mau_cooling_types = ["DX","Hydronic"] # Generate all possible combinations of the above arrays @@ -97,11 +100,12 @@ def system2_5() mau_cooling_type: mau_cooling_type, hw_loop: hw_loop) if old_name == new_name - $successes.push([arguments,old_name,new_name]) + arguments["system"] = "sys_2" + $successes[new_name] = arguments else $failures.push([arguments,old_name,new_name]) end -end + end end def system3() @@ -110,14 +114,16 @@ def system3() necb_reference_hp_types = [true, false] necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity"] baseboard_types = ["Hot Water", "Electric"] + multispeed_type = [false] # Generate all possible combinations of the above arrays - mau_type.product(heating_coil_types, necb_reference_hp_types, necb_reference_hp_supp_fuel_types, baseboard_types).each do |mau_type, heating_coil_type, necb_reference_hp, necb_reference_hp_supp_fuel, baseboard_type| + mau_type.product(heating_coil_types, necb_reference_hp_types, necb_reference_hp_supp_fuel_types, baseboard_types,multispeed_type).each do |mau_type, heating_coil_type, necb_reference_hp, necb_reference_hp_supp_fuel, baseboard_type,multispeed| arguments = Hash[ "mau_type", mau_type, "heating_coil_type", heating_coil_type, "necb_reference_hp", necb_reference_hp, "necb_reference_hp_supp_fuel", necb_reference_hp_supp_fuel, - "baseboard_type", baseboard_type + "baseboard_type", baseboard_type, + "multispeed", multispeed ] @@ -145,7 +151,8 @@ def system3() hw_loop: hw_loop, new_auto_zoner: true) if old_name == new_name - $successes.push([arguments,old_name,new_name]) + arguments["system"] = "sys_3" + $successes[new_name] = arguments else $failures.push([arguments,old_name,new_name]) end @@ -153,6 +160,88 @@ def system3() end + +def system4() + necb_reference_hp_types = [true, false] + necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity"] + heating_coil_types = ["DX","Gas", "Electric"] + baseboard_types = ["Hot Water", "Electric"] + necb_reference_hp_types.product(necb_reference_hp_supp_fuel_types, heating_coil_types, baseboard_types).each do |necb_reference_hp, necb_reference_hp_supp_fuel, heating_coil_type, baseboard_type| + #Create model + model = create_model + hw_loop = nil + if (baseboard_type == "Hot Water") + hw_loop = OpenStudio::Model::PlantLoop.new(model) + NECB.setup_hw_loop_with_components(model, hw_loop, 'Electricity', model.alwaysOnDiscreteSchedule) + end + arguments = Hash[ + "necb_reference_hp", necb_reference_hp, + "necb_reference_hp_supp_fuel", necb_reference_hp_supp_fuel, + "heating_coil_type", heating_coil_type, + "baseboard_type", baseboard_type + ] + + if (necb_reference_hp == true and heating_coil_type != 'DX') or + (necb_reference_hp == false and heating_coil_type == 'DX') + next + end + + old_name, new_name = NECB2011.new.add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: model.getThermalZones, + heating_coil_type: heating_coil_type, + baseboard_type: baseboard_type, + hw_loop: hw_loop) + + if old_name == new_name + arguments["system"] = "sys_4" + $successes[new_name] = arguments + else + $failures.push([arguments,old_name,new_name]) + end + end +end + + + + +def system5() + fan_coil_types = ['TPFC'] + chiller_types = ["Scroll","Centrifugal","RotaryScrew","Reciprocating"] + mau_cooling_types = ["DX","Hydronic"] + # Generate all possible combinations of the above arrays + mau_cooling_types.product( chiller_types, fan_coil_types).each do |mau_cooling_type, chiller_type, fan_coil_type| + puts("mau_cooling_type: #{mau_cooling_type}, chiller_types: #{chiller_type}, fan_coil_types: #{fan_coil_type}") + arguments = Hash[ + "mau_cooling_type", mau_cooling_type, + "chiller_type", chiller_type, + "fan_coil_type", fan_coil_type, + ] + + #Create model + model = create_model + + # Create hot water loop + hw_loop = OpenStudio::Model::PlantLoop.new(model) + + # Create NECB2011 objects + old_name, new_name = NECB2011.new.add_sys2_FPFC_sys5_TPFC( model: model, + zones:model.getThermalZones, + chiller_type: chiller_type, + fan_coil_type: fan_coil_type, + mau_cooling_type: mau_cooling_type, + hw_loop: hw_loop) + if old_name == new_name + arguments["system"] = "sys_5" + $successes[new_name] = arguments + else + $failures.push([arguments,old_name,new_name]) + end + end +end + + def system6() heating_coil_types = ["Electric" , "Hot Water"] baseboard_types = ["Electric", "Hot Water"] @@ -186,7 +275,8 @@ def system6() ) if old_name == new_name - $successes.push([arguments,old_name,new_name]) + arguments["system"] = "sys_6" + $successes[new_name] = arguments else $failures.push([arguments,old_name,new_name]) end @@ -196,8 +286,10 @@ def system6() system1() -system2_5() +system2() system3() +system4() +system5() system6() puts ("Successes: #{$successes}") puts("Failures: #{$failures}") @@ -208,11 +300,14 @@ def system6() csv << failure end end -#Save $successes hash to the csv file. -CSV.open('successes.csv', 'w') do |csv| - csv << ["arguments","old_name","new_name"] - $successes.each do |success| - csv << success - end + + +# save $successes hash as a pretty json file. +File.open('successes.json', 'w') do |f| + f.write(JSON.pretty_generate($successes)) end + + + + From f22006a2fe78d665b51f4b6699ef8a46fef4418c Mon Sep 17 00:00:00 2001 From: plopez Date: Wed, 18 Sep 2024 11:26:29 +0000 Subject: [PATCH 03/38] script to add system types --- .../standards/necb/common/system_types.yaml | 0 openstudio-standards.gemspec | 64 ++++++++++--------- utilities/btap_cli/print_available_systems.rb | 39 ++++++++--- 3 files changed, 63 insertions(+), 40 deletions(-) create mode 100644 lib/openstudio-standards/standards/necb/common/system_types.yaml diff --git a/lib/openstudio-standards/standards/necb/common/system_types.yaml b/lib/openstudio-standards/standards/necb/common/system_types.yaml new file mode 100644 index 0000000000..e69de29bb2 diff --git a/openstudio-standards.gemspec b/openstudio-standards.gemspec index 2d1ab29a23..93bb9a8550 100644 --- a/openstudio-standards.gemspec +++ b/openstudio-standards.gemspec @@ -5,49 +5,53 @@ require 'openstudio-standards/version' Gem::Specification.new do |spec| spec.name = 'openstudio-standards' spec.version = OpenstudioStandards::VERSION - spec.authors = ['Andrew Parker', 'Yixing Chen', 'Mark Adams', 'Kaiyu Sun', 'Mini Maholtra', 'David Goldwasser', 'Phylroy Lopez', 'Maria Mottillo', 'Kamel Haddad', 'Julien Marrec', 'Matt Leach', 'Matt Steen', 'Eric Ringold', 'Daniel Macumber', 'Matthew Dahlhausen', 'Jian Zhang', 'Doug Maddox', 'Yunyang Ye', 'Xuechen (Jerry) Lei', 'Juan Gonzalez Matamoros', 'Jeremy Lerond', 'Carlos Duarte'] - spec.email = ['andrew.parker@nrel.gov'] - spec.homepage = 'http://openstudio.net' - spec.summary = 'Creates DOE Prototype building models and transforms proposed OpenStudio models to baseline OpenStudio models.' - spec.description = 'Creates DOE Prototype building models and transforms proposed models to baseline models for energy codes like ASHRAE 90.1 and the Canadian NECB.' - spec.license = 'Modified BSD License' - + spec.authors = ['Mark Adams', 'Yeonjin Bae', 'Carlo Bianchi', 'Jeff Blake', 'Yixing Chen', 'Matthew Dahlhausen', 'Carlos Duarte', 'Sarah Gilani', 'David Goldwasser', 'Kamel Haddad', 'Piljae Im', 'Chris Kirney', 'Matt Leach', 'Xuechen (Jerry) Lei', 'Jeremy Lerond', 'Nicholas Long', 'Phylroy Lopez', 'Iain MacDonald', 'Daniel Macumber', 'Doug Maddox', 'Mini Maholtra', 'Julien Marrec', 'Juan Gonzalez Matamoros', 'Maria Mottillo', 'Andrew Parker', 'Padmassun Rajakareyar', 'Eric Ringold', 'Matt Steen', 'Kaiyu Sun', 'Weilie Xu', 'Yunyang Ye', 'Jian Zhang'] + spec.email = ['matthew.dahlhausen@nrel.gov'] + spec.homepage = 'http://openstudio.net' + spec.summary = 'Creates OpenStudio models of typical buildings, creates standard baselines from proposed models, and checks a model against a standard.' + spec.description = 'The openstudio-standards library provides methods for programatically generating, modifying, and checking OpenStudio building energy models. It can create a typical building from user geometry, template geometry, or programmatically generated geometry. It can apply a building standard including ASHRAE 90.1 or NECB to a model. It can transform a proposed building model into a 90.1 Appendix G code baseline model. It can check a model against a building standard. It can generate represenative typical buildings, such as those used in ComStock.' + spec.license = 'Modified BSD License' spec.required_ruby_version = '>= 2.0.0' spec.required_rubygems_version = '>= 1.3.6' - spec.files = Dir['LICENSE.md', 'lib/**/*', 'data/**/*'] - # spec.test_files = Dir['test/**/*'] spec.require_paths = ['lib'] - spec.add_development_dependency 'minitest-reporters', '1.6.1' - spec.add_development_dependency 'minitest-parallel_fork' - spec.add_development_dependency 'ruby-progressbar' if RUBY_VERSION < '2.3' - spec.add_development_dependency 'parallel_tests', '<= 2.32.0' - spec.add_development_dependency 'nokogiri', '<= 1.6.8.1' spec.add_development_dependency 'bundler', '~> 1.9' + spec.add_development_dependency 'nokogiri', '<= 1.6.8.1' + spec.add_development_dependency 'parallel_tests', '<= 2.32.0' elsif RUBY_VERSION < '2.7' - spec.add_development_dependency 'parallel_tests', '~> 3.0.0' - spec.add_development_dependency 'nokogiri', '<= 1.11.7' # updated to use more secure version spec.add_development_dependency 'bundler', '~> 2.1' + spec.add_development_dependency 'nokogiri', '<= 1.11.7' + spec.add_development_dependency 'parallel_tests', '~> 3.0.0' + elsif RUBY_VERSION < '3.2' + spec.add_development_dependency 'bundler', '<= 2.4.22' + spec.add_development_dependency 'nokogiri', '<= 1.15.6' + spec.add_development_dependency 'parallel_tests', '<= 4.7.1' + spec.add_development_dependency 'public_suffix','<= 5.1.1' else - spec.add_development_dependency 'parallel_tests', '~> 3.7.0' + spec.add_development_dependency 'bundler', '~> 2.4.22' spec.add_development_dependency 'nokogiri', '~> 1.15.6' - spec.add_development_dependency 'bundler', '~> 2.1.4' + spec.add_development_dependency 'parallel_tests', '~> 4.7.1' + spec.add_development_dependency 'public_suffix','~> 5.1.1' end - spec.add_development_dependency 'rake', '~> 12.3.1' - spec.add_development_dependency 'yard', '~> 0.9' - spec.add_development_dependency 'rubocop', '0.68.1' - spec.add_development_dependency 'rubocop-checkstyle_formatter', '~> 0.1.1' - spec.add_development_dependency 'minitest-ci', '<= 5.10.3' - spec.add_development_dependency 'rubyXL', '~> 3.4' - spec.add_development_dependency 'google_drive' - spec.add_development_dependency 'simplecov-html', '< 0.11.0' - spec.add_development_dependency 'codecov' - spec.add_development_dependency 'rest-client', '2.0.2' spec.add_development_dependency 'aes', '0.5.0' - spec.add_development_dependency 'roo', '2.7.1' + spec.add_development_dependency 'codecov' + spec.add_development_dependency 'google_drive' + spec.add_development_dependency 'minitest', '~> 5.14.0' + spec.add_development_dependency 'minitest-ci' + spec.add_development_dependency 'minitest-parallel_fork' + spec.add_development_dependency 'minitest-reporters', '~> 1.4.2' spec.add_development_dependency 'openstudio-api-stubs' + spec.add_development_dependency 'rake', '~> 13.0' + spec.add_development_dependency 'rest-client', '~> 2.0.2' + spec.add_development_dependency 'roo', '2.7.1' + spec.add_development_dependency 'rubocop', '1.50' + spec.add_development_dependency 'rubocop-checkstyle_formatter', '~> 0.6.0' + spec.add_development_dependency 'ruby-progressbar' + spec.add_development_dependency 'rubyXL', '~> 3.4' + spec.add_development_dependency 'simplecov', '0.22.0' + spec.add_development_dependency 'yard', '~> 0.9' spec.add_runtime_dependency 'tbd', '~> 3' spec.add_development_dependency 'aws-sdk-s3' spec.add_development_dependency 'git-revision' -end +end \ No newline at end of file diff --git a/utilities/btap_cli/print_available_systems.rb b/utilities/btap_cli/print_available_systems.rb index 818a718ca6..d4ee9df748 100644 --- a/utilities/btap_cli/print_available_systems.rb +++ b/utilities/btap_cli/print_available_systems.rb @@ -4,7 +4,7 @@ NECB = NECB2011.new $base_model = nil $failures = [] -$successes = {} +$successes = [] def create_model() # create model @@ -66,7 +66,10 @@ def system1() ) if old_name == new_name arguments["system"] = "sys_1" - $successes[new_name] = arguments + # Make the "name" key the first key in the hash + arguments = arguments.sort.to_h + arguments = {"name" => new_name}.merge(arguments) + $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) end @@ -101,7 +104,10 @@ def system2() hw_loop: hw_loop) if old_name == new_name arguments["system"] = "sys_2" - $successes[new_name] = arguments + # Make the "name" key the first key in the hash + arguments = arguments.sort.to_h + arguments = {"name" => new_name}.merge(arguments) + $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) end @@ -152,7 +158,10 @@ def system3() new_auto_zoner: true) if old_name == new_name arguments["system"] = "sys_3" - $successes[new_name] = arguments + # Make the "name" key the first key in the hash + arguments = arguments.sort.to_h + arguments = {"name" => new_name}.merge(arguments) + $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) end @@ -196,7 +205,10 @@ def system4() if old_name == new_name arguments["system"] = "sys_4" - $successes[new_name] = arguments + # Make the "name" key the first key in the hash + arguments = arguments.sort.to_h + arguments = {"name" => new_name}.merge(arguments) + $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) end @@ -234,7 +246,10 @@ def system5() hw_loop: hw_loop) if old_name == new_name arguments["system"] = "sys_5" - $successes[new_name] = arguments + # Make the "name" key the first key in the hash + arguments = arguments.sort.to_h + arguments = {"name" => new_name}.merge(arguments) + $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) end @@ -276,7 +291,10 @@ def system6() if old_name == new_name arguments["system"] = "sys_6" - $successes[new_name] = arguments + # Make the "name" key the first key in the hash + arguments = arguments.sort.to_h + arguments = { "name" => new_name}.merge(arguments) + $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) end @@ -302,12 +320,13 @@ def system6() end -# save $successes hash as a pretty json file. -File.open('successes.json', 'w') do |f| - f.write(JSON.pretty_generate($successes)) +# save $successes array of hashes as a pretty yaml file. +File.open('successes.yaml', 'w') do |file| + file.write($successes.to_yaml) end + From 92e27031acde727af4bfca1abf30185780ab485e Mon Sep 17 00:00:00 2001 From: Phylroy Lopez Date: Fri, 20 Sep 2024 19:08:01 +0000 Subject: [PATCH 04/38] updated syntax to support chillers --- .../standards/necb/NECB2011/hvac_namer.rb | 84 ++++++++++++++++++- utilities/btap_cli/print_available_systems.rb | 41 ++++++--- 2 files changed, 109 insertions(+), 16 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb index b3fc24959b..e7d2b466ef 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb @@ -15,8 +15,41 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) cooling_coil_ashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and heating_coil_ashp} cooling_coil_ccashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and heating_coil_ccashp} cooling_coil_dx = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and (heating_coil_gas or heating_coil_elect or heating_coil_water)} - cooling_coil_water = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingWater.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilCoolingWater.is_initialized}.to_CoilCoolingWater.get : false + # Determine PlantLoop that is connected to the cooling_coil_water coil. + if cooling_coil_water + # Get the PlantLoop attached to the CoilCoolingWater + plant_loop = cooling_coil_water.plantLoop + # Initialize an array to hold the names of the ChillerElectricEIR objects + chiller_names = [] + # Check if the PlantLoop is valid + if plant_loop.is_initialized + # Get the actual PlantLoop object + plant_loop = plant_loop.get + # Get the ChillerElectricEIR objects attached to the PlantLoop + chillers = plant_loop.supplyComponents(OpenStudio::Model::ChillerElectricEIR::iddObjectType) + chillers.each do |chiller| + chiller = chiller.to_ChillerElectricEIR.get + chiller_names << chiller.name.get + end #chillers + + case chiller_names[0] + # Check if name contains ["Scroll","Centrifugal","RotaryScrew","Reciprocating"] + when /Scroll/ + chiller_type = 'scrl' + when /Centrifugal/ + chiller_type = 'cent' + when /RotaryScrew/ + chiller_type = 'screw' + when /Reciprocating/ + chiller_type = 'recip' + else + raise("Chiller type not recognized") + end + end + end + + zone_htg_b_elec = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Electric') } zone_htg_b_water = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Water') } zone_vav_rh = air_loop.components.detect(proc {false}) { |equip| equip.to_AirTerminalSingleDuctVAVReheat.is_initialized()} ? air_loop.components.detect() { |equip| equip.to_AirTerminalSingleDuctVAVReheat.is_initialized()}.to_AirTerminalSingleDuctVAVReheat.get : false @@ -28,12 +61,45 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) if air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized()} case air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized()}.to_ZoneHVACFourPipeFanCoil.get.coolingCoil.to_CoilCoolingWater.get.availabilitySchedule.nameString when 'tpfc_clg_availability' - zone_tpfc = true + zone_tpfc = true when OpenStudio::Model::Model.new.alwaysOnDiscreteSchedule.nameString - zone_fpfc = true + zone_fpfc = true else raise('unknown schedule type') end + cooling_coil_water = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized()}.to_ZoneHVACFourPipeFanCoil.get.coolingCoil.to_CoilCoolingWater.get + # Determine PlantLoop that is connected to the cooling_coil_water coil. + if cooling_coil_water + # Get the PlantLoop attached to the CoilCoolingWater + plant_loop = cooling_coil_water.plantLoop + # Initialize an array to hold the names of the ChillerElectricEIR objects + chiller_names = [] + # Check if the PlantLoop is valid + if plant_loop.is_initialized + # Get the actual PlantLoop object + plant_loop = plant_loop.get + # Get the ChillerElectricEIR objects attached to the PlantLoop + chillers = plant_loop.supplyComponents(OpenStudio::Model::ChillerElectricEIR::iddObjectType) + chillers.each do |chiller| + chiller = chiller.to_ChillerElectricEIR.get + chiller_names << chiller.name.get + end #chillers + + case chiller_names[0] + # Check if name contains ["Scroll","Centrifugal","RotaryScrew","Reciprocating"] + when /Scroll/ + chiller_type = 'scrl' + when /Centrifugal/ + chiller_type = 'cent' + when /RotaryScrew/ + chiller_type = 'screw' + when /Reciprocating/ + chiller_type = 'recip' + else + raise("Chiller type not recognized") + end + end + end end zone_htg_pthp = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Packaged Terminal Heat Pump') } @@ -225,6 +291,15 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) else zc = 'zc>none' end + + # Chiller type + if chiller_type + chiller = "ch>#{chiller_type}" + else + chiller = "ch>none" + end + + name ="" @@ -234,6 +309,7 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) else name = "#{ref_sys}|#{oa}|shr>none|#{sh}|#{sc}|#{ssf}|#{zh}|#{zc}|#{srf}|" end - return old_system_name, name + new_name = name+"#{chiller}|" + return old_system_name, name, new_name end end \ No newline at end of file diff --git a/utilities/btap_cli/print_available_systems.rb b/utilities/btap_cli/print_available_systems.rb index d4ee9df748..a2b251cd4c 100644 --- a/utilities/btap_cli/print_available_systems.rb +++ b/utilities/btap_cli/print_available_systems.rb @@ -54,7 +54,7 @@ def system1() "multispeed", multispeed ] - old_name, new_name = necb.add_sys1_unitary_ac_baseboard_heating_single_speed( + old_name,new_name,updated_name = necb.add_sys1_unitary_ac_baseboard_heating_single_speed( model: model, necb_reference_hp: necb_reference_hp, necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, @@ -68,7 +68,7 @@ def system1() arguments["system"] = "sys_1" # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = {"name" => new_name}.merge(arguments) + arguments = {"name" => updated_name}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -96,7 +96,7 @@ def system2() hw_loop = OpenStudio::Model::PlantLoop.new(model) # Create NECB2011 objects - old_name, new_name = NECB2011.new.add_sys2_FPFC_sys5_TPFC( model: model, + old_name,new_name,updated_name = NECB2011.new.add_sys2_FPFC_sys5_TPFC( model: model, zones:model.getThermalZones, chiller_type: chiller_type, fan_coil_type: fan_coil_type, @@ -106,7 +106,7 @@ def system2() arguments["system"] = "sys_2" # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = {"name" => new_name}.merge(arguments) + arguments = {"name" => updated_name}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -147,7 +147,7 @@ def system3() (necb_reference_hp == false and heating_coil_type == 'DX') next end - old_name, new_name = NECB.add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating_single_speed( + old_name,new_name,updated_name = NECB.add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating_single_speed( model: model, necb_reference_hp: necb_reference_hp, necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, @@ -160,7 +160,7 @@ def system3() arguments["system"] = "sys_3" # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = {"name" => new_name}.merge(arguments) + arguments = {"name" => updated_name}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -195,7 +195,7 @@ def system4() next end - old_name, new_name = NECB2011.new.add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, + old_name,new_name,updated_name = NECB2011.new.add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, necb_reference_hp: necb_reference_hp, necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, zones: model.getThermalZones, @@ -207,7 +207,7 @@ def system4() arguments["system"] = "sys_4" # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = {"name" => new_name}.merge(arguments) + arguments = {"name" => updated_name}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -231,6 +231,7 @@ def system5() "fan_coil_type", fan_coil_type, ] + #Create model model = create_model @@ -238,7 +239,7 @@ def system5() hw_loop = OpenStudio::Model::PlantLoop.new(model) # Create NECB2011 objects - old_name, new_name = NECB2011.new.add_sys2_FPFC_sys5_TPFC( model: model, + old_name,new_name,updated_name = NECB2011.new.add_sys2_FPFC_sys5_TPFC( model: model, zones:model.getThermalZones, chiller_type: chiller_type, fan_coil_type: fan_coil_type, @@ -248,7 +249,7 @@ def system5() arguments["system"] = "sys_5" # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = {"name" => new_name}.merge(arguments) + arguments = {"name" => updated_name}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -279,7 +280,7 @@ def system6() hw_loop = OpenStudio::Model::PlantLoop.new(model) # Create NECB2011 objects - old_name,new_name = NECB2011.new.add_sys6_multi_zone_built_up_system_with_baseboard_heating( + old_name,new_name,updated_name = NECB2011.new.add_sys6_multi_zone_built_up_system_with_baseboard_heating( model:model, zones:model.getThermalZones, heating_coil_type: heating_coil_type, @@ -293,7 +294,7 @@ def system6() arguments["system"] = "sys_6" # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = { "name" => new_name}.merge(arguments) + arguments = { "name" => updated_name}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -319,6 +320,22 @@ def system6() end end +# save $successes array of hashes as a csv file. +# filter $successes array of hashes to only include hashes wehre the "system" key is "sys_1" +["sys_1","sys_2","sys_3","sys_4","sys_5","sys_6"].each do |system_type| + system = $successes.select{|hash| hash["system"] == system_type} + filename = "#{system_type}.csv" + CSV.open(filename, 'w') do |csv| + csv << system[0].keys + system.each do |hash| + csv << hash.values + end + end +end + + + + # save $successes array of hashes as a pretty yaml file. File.open('successes.yaml', 'w') do |file| From cb70b9e5dfb220b642a8335aeda83a1e45a496de Mon Sep 17 00:00:00 2001 From: Phylroy Lopez Date: Fri, 20 Sep 2024 19:23:08 +0000 Subject: [PATCH 05/38] system 6 fan_type does nothing. Setting to var_speed_drive only for now --- utilities/btap_cli/print_available_systems.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/btap_cli/print_available_systems.rb b/utilities/btap_cli/print_available_systems.rb index a2b251cd4c..304872940b 100644 --- a/utilities/btap_cli/print_available_systems.rb +++ b/utilities/btap_cli/print_available_systems.rb @@ -262,7 +262,7 @@ def system6() heating_coil_types = ["Electric" , "Hot Water"] baseboard_types = ["Electric", "Hot Water"] chiller_types = ["Scroll","Centrifugal","RotaryScrew","Reciprocating"] - fan_types = ["AF_or_BI_rdg_fancurve","AF_or_BI_inletvanes","fc_inletvanes","var_speed_drive"] + fan_types = ["var_speed_drive"] # Generate all possible combinations of the above arrays heating_coil_types.product( baseboard_types, chiller_types, fan_types).each do |heating_coil_type, baseboard_type, chiller_type, fan_type| puts("heating_coil_type: #{heating_coil_type} baseboard_type: #{baseboard_type}, chiller_type: #{chiller_type}, fan_type : #{fan_type}") From 92b4238d6c75894cfbff39243df3c4c401b7bcb9 Mon Sep 17 00:00:00 2001 From: Phylroy Lopez Date: Tue, 24 Sep 2024 01:56:30 +0000 Subject: [PATCH 06/38] updated reference system namer --- .../standards/necb/NECB2011/hvac_namer.rb | 202 ++++++++++++++++-- utilities/btap_cli/print_available_systems.rb | 111 +++++++--- 2 files changed, 270 insertions(+), 43 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb index e7d2b466ef..b2798e390e 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb @@ -1,12 +1,25 @@ class NECB2011 def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) - # Determine system charecteristics. - puts air_loop + ref_system_desc = { + "sys_1" => "PSZ MAU %s Coils and %s", + "sys_2" => "FPFC MAU %s Coils with %s Chiller", + "sys_3" => "PSZ RTU %s Coils and %s", + "sys_4" => "PSZ MAU %s Coils and %s", + "sys_5" => "TPFC MAU %s Coils with %s Chiller", + "sys_6" => "MZ Built-Up %s Heating Coil %s Chiller and %s" + } + + # AirLoopHVACUnitaryHeatPumpAirToAir unitary_hp = air_loop.components.detect(proc {false}) { |equip| equip.to_AirLoopHVACUnitaryHeatPumpAirToAir.is_initialized()} ? air_loop.components.detect() { |equip| equip.to_AirLoopHVACUnitaryHeatPumpAirToAir.is_initialized()}.to_AirLoopHVACUnitaryHeatPumpAirToAir.get : false - unitary_heating_coil_elec = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingElectric.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.get : false - unitary_heating_coil_gas = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingGas.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.get : false + unitary_heating_coil_elec = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingElectric.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingElectric.get : false + unitary_heating_coil_gas = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingGas.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingGas.get : false unitary_heating_coil_ashp = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingDXSingleSpeed.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingDXSingleSpeed.get : false + unitary_sup_heating_coil_elec =( unitary_hp && unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingElectric.is_initialized()) ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingElectric.get : false + unitary_sup_heating_coil_gas = ( unitary_hp && unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingGas.is_initialized()) ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingGas.get : false + unitary_sup_heating_coil_ashp =( unitary_hp && unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingDXSingleSpeed.is_initialized()) ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingDXSingleSpeed.get : false unitary_supply_fan_on_off = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplyAirFan.to_FanOnOff.is_initialized() ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplyAirFan.to_FanOnOff.get : false + + # Main AirLoopHVAC Components heating_coil_elect = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingElectric.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilHeatingElectric.is_initialized}.to_CoilHeatingElectric.get : false heating_coil_ashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized and equip.to_CoilHeatingDXSingleSpeed.get.minimumOutdoorDryBulbTemperatureforCompressorOperation == -10} ? air_loop.components.detect() { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized}.to_CoilHeatingDXSingleSpeed.get : false heating_coil_ccashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized and equip.to_CoilHeatingDXSingleSpeed.get.minimumOutdoorDryBulbTemperatureforCompressorOperation == -25} ? air_loop.components.detect() { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized}.to_CoilHeatingDXSingleSpeed.get : false @@ -16,7 +29,9 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) cooling_coil_ccashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and heating_coil_ccashp} cooling_coil_dx = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and (heating_coil_gas or heating_coil_elect or heating_coil_water)} cooling_coil_water = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingWater.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilCoolingWater.is_initialized}.to_CoilCoolingWater.get : false - # Determine PlantLoop that is connected to the cooling_coil_water coil. + + + # PlantLoop cooling. if cooling_coil_water # Get the PlantLoop attached to the CoilCoolingWater plant_loop = cooling_coil_water.plantLoop @@ -49,13 +64,15 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) end end - + # Zone Baseboard Heating zone_htg_b_elec = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Electric') } zone_htg_b_water = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Water') } + + # Zone VAV with Reheat. zone_vav_rh = air_loop.components.detect(proc {false}) { |equip| equip.to_AirTerminalSingleDuctVAVReheat.is_initialized()} ? air_loop.components.detect() { |equip| equip.to_AirTerminalSingleDuctVAVReheat.is_initialized()}.to_AirTerminalSingleDuctVAVReheat.get : false - #Check if TPFC is on or off. + # Zone 2/4 Pipe Fan Coils. zone_tpfc = false zone_fpfc = false if air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized()} @@ -102,6 +119,7 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) end end + zone_htg_pthp = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Packaged Terminal Heat Pump') } zone_clg_ptac = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('PTAC') } zone_clg_pthp = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Packaged Terminal Heat Pump') } @@ -204,8 +222,8 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) # puts "return_fan_vv: #{return_fan_vv}" # puts "supply_fan_cv: #{supply_fan_cv}" # puts "return_fan_cv: #{return_fan_cv}" - # puts "zone_rh_elec: #{zone_rh_elec}" - # puts "zone_rh_gas: #{zone_rh_gas}" + puts "zone_rh_elec: #{zone_rh_elec}" + puts "zone_rh_gas: #{zone_rh_gas}" # puts "unitary_hp: #{unitary_hp}" # puts "unitary_heating_coil_elec: #{unitary_heating_coil_elec}" # puts "unitary_heating_coil_gas: #{unitary_heating_coil_gas}" @@ -219,6 +237,104 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) # sys_htg or sh>? + sh_map = { + "sh>none" => 'None', + "sh>c-e" => 'Electric', + "sh>c-g" => 'Gas', + "sh>c-hw" => 'Hot Water', + "sh>ashp" => 'ASHP', + "sh>ccashp" => 'CCASHP' + } + sc_map = { + "sc>none" => 'None', + "sc>ashp" => 'ASHP', + "sc>ccashp" => 'CCASHP', + "sc>dx" => 'DX', + "sc>c-chw" => 'Chilled Water' + } + ssf_map = { + "ssf>none" => 'None', + "ssf>cv" => 'Constant Volume', + "ssf>vv" => 'Variable Volume' + } + zh_map = { + "zh>none" => 'None', + "zh>b-e" => 'Electric Baseboard', + "zh>b-hw" => 'Hot Water Baseboard', + "zh>tpfc" => 'TPFC', + "zh>fpfc" => 'FPFC', + "zh>pthp" => 'PTHP' + } + zc_map = { + "zc>none" => 'None', + "zc>tpfc" => 'TPFC', + "zc>fpfc" => 'FPFC', + "zc>ptac" => 'PTAC', + "zc>pthp" => 'PTHP' + } + chiller_map = { + "ch>none" => 'None', + "ch>scrl" => 'Scroll', + "ch>cent" => 'Centrifugal', + "ch>screw" => 'Rotary Screw', + "ch>recip" => 'Reciprocating' + } + srf_map = { + "srf>none" => 'None', + "srf>cv" => 'Constant Volume', + "srf>vv" => 'Variable Volume' + } + zrh_map = { + "zrh>none" => 'None', + "zrh>e" => 'Electric', + "zrh>g" => 'Gas', + "zrh>hw" => 'Hot Water' + } + # Unitary Heating Coil + uhc_map = { + "uhc>none" => 'None', + "uhc>e" => 'Electric', + "uhc>g" => 'Gas', + } + + # Unitary Supplemental Heating Coil + ushc_map = { + "ushc>none" => 'None', + "ushc>e" => 'Electric', + "ushc>g" => 'Gas', + } + + # Unitary Supplemental Heating Coil + if unitary_sup_heating_coil_elec + ushc = 'ushc>e' + elsif unitary_sup_heating_coil_gas + ushc = 'ushc>g' + else + ushc = 'ushc>none' + end + + # Unitary Heating Coil + if unitary_heating_coil_elec + uhc = 'uhc>e' + elsif unitary_heating_coil_gas + uhc = 'uhc>g' + elsif unitary_heating_coil_ashp + uhc = 'uhc>ashp' + else + uhc = 'uhc>none' + end + + # Zone Reheat + if zone_rh_gas + zrh = 'zrh>g' + elsif zone_rh_elec + zrh = 'zrh>e' + elsif zone_rh_hw + zrh = 'zrh>hw' + else + zrh = 'zrh>none' + end + if heating_coil_elect sh = 'sh>c-e' elsif heating_coil_ashp or unitary_hp @@ -301,15 +417,69 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) name ="" - - + desc ="" # sh and sc are reversed for system 6 - unless ref_sys == "sys_6" - name = "#{ref_sys}|#{oa}|shr>none|#{sc}|#{sh}|#{ssf}|#{zh}|#{zc}|#{srf}|" + + name = "#{ref_sys}|#{oa}|shr>none|#{sc}|#{sh}|#{ssf}|#{zh}|#{zc}|#{srf}|" + fixed_name = name + + case ref_sys + when "sys_1" + # Air Loop Coils + coils = "" + # if heating and cooling coils are the same, only list it once + if sh_map[sh] == sc_map[sc] + coils = "#{sh_map[sh]}" + else + coils = "#{sh_map[sh]} and #{sc_map[sc]}" + end + zone_system = "#{zh_map[zh]}" + zone_system += " with #{zc_map[zc]}" if zc_map[zc] != 'None' + # If reheating is present, add it to the zone system name + if zrh_map[zrh] != 'None' + zone_system += " with #{zrh_map[zrh]} Reheat" + end + desc= ref_system_desc[ref_sys] % [coils,zone_system] + when "sys_2" + desc= ref_system_desc[ref_sys] % [sc_map[sc],chiller_map[chiller]] + when "sys_3" + coils = "" + # if heating and cooling coils are the same, only list it once + if sh_map[sh] == sc_map[sc] + coils = "#{sh_map[sh]}" + else + coils = "#{sh_map[sh]} and #{sc_map[sc]}" + end + if ushc_map[ushc] != 'None' + coils += " with #{ushc_map[ushc]} Supp. Heat" + end + zone_system = "#{zh_map[zh]}" + zone_system += " with #{zc_map[zc]}" if zc_map[zc] != 'None' + desc= ref_system_desc[ref_sys] % [coils,zone_system] + when "sys_4" + coils = "" + # if heating and cooling coils are the same, only list it once + if sh_map[sh] == sc_map[sc] + coils = "#{sh_map[sh]}" + else + coils = "#{sh_map[sh]} and #{sc_map[sc]}" + end + if ushc_map[ushc] != 'None' + coils += " with #{ushc_map[ushc]} Supp. Heat" + end + zone_system = "#{zh_map[zh]}" + zone_system += " with #{zc_map[zc]}" if zc_map[zc] != 'None' + desc= ref_system_desc[ref_sys] % [coils,zone_system] + when "sys_5" + desc= ref_system_desc[ref_sys] % [sc_map[sc],chiller_map[chiller]] + when "sys_6" + zone_system = "#{zh_map[zh]}" + zone_system += " with #{zc_map[zc]}" if zc_map[zc] != 'None' + desc= ref_system_desc[ref_sys] % [sh_map[sh],chiller_map[chiller], zone_system] + fixed_name = "#{ref_sys}|#{oa}|shr>none|#{sh}|#{sc}|#{ssf}|#{zh}|#{zc}|#{srf}|" else - name = "#{ref_sys}|#{oa}|shr>none|#{sh}|#{sc}|#{ssf}|#{zh}|#{zc}|#{srf}|" + end - new_name = name+"#{chiller}|" - return old_system_name, name, new_name + return old_system_name, fixed_name, name, desc end end \ No newline at end of file diff --git a/utilities/btap_cli/print_available_systems.rb b/utilities/btap_cli/print_available_systems.rb index 304872940b..a353bcae11 100644 --- a/utilities/btap_cli/print_available_systems.rb +++ b/utilities/btap_cli/print_available_systems.rb @@ -1,3 +1,7 @@ + +# Add require for Spreadsheet::Workbook +require 'rubyXL' +require 'csv' require_relative './libs.rb' WEATHER_FILE = 'CAN_ON_Toronto.Intl.AP.716240_CWEC2020.epw' # Create NECB2011 objects @@ -25,7 +29,7 @@ def system1() mau_type = [true] mau_heating_types = ["DX","Hot Water", "Electric"] necb_reference_hp_types = [true, false] - necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity"] + necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity","None"] baseboard_types = ["Hot Water", "Electric"] multispeed_type = [false] # Generate all possible combinations of the above arrays @@ -42,7 +46,11 @@ def system1() if (mau_type == false and necb_reference_hp == true) or (necb_reference_hp == true and mau_heating_type != 'DX') or - (necb_reference_hp == false and mau_heating_type == 'DX') + (necb_reference_hp == false and mau_heating_type == 'DX') or + (necb_reference_hp == false and necb_reference_hp_supp_fuel != 'None')or + (necb_reference_hp == true and necb_reference_hp_supp_fuel == 'None') + + next end arguments = Hash[ @@ -54,7 +62,7 @@ def system1() "multispeed", multispeed ] - old_name,new_name,updated_name = necb.add_sys1_unitary_ac_baseboard_heating_single_speed( + old_name,new_name,updated_name,desc = necb.add_sys1_unitary_ac_baseboard_heating_single_speed( model: model, necb_reference_hp: necb_reference_hp, necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, @@ -66,9 +74,11 @@ def system1() ) if old_name == new_name arguments["system"] = "sys_1" + arguments["description"] = desc # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = {"name" => updated_name}.merge(arguments) + arguments = { "name" => updated_name}.merge(arguments) + arguments = { "description" => desc}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -96,7 +106,7 @@ def system2() hw_loop = OpenStudio::Model::PlantLoop.new(model) # Create NECB2011 objects - old_name,new_name,updated_name = NECB2011.new.add_sys2_FPFC_sys5_TPFC( model: model, + old_name,new_name,updated_name,desc = NECB2011.new.add_sys2_FPFC_sys5_TPFC( model: model, zones:model.getThermalZones, chiller_type: chiller_type, fan_coil_type: fan_coil_type, @@ -104,9 +114,11 @@ def system2() hw_loop: hw_loop) if old_name == new_name arguments["system"] = "sys_2" + arguments["description"] = desc # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = {"name" => updated_name}.merge(arguments) + arguments = { "name" => updated_name}.merge(arguments) + arguments = { "description" => desc}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -118,7 +130,7 @@ def system3() mau_type = [true] heating_coil_types = ["DX","Gas", "Electric"] necb_reference_hp_types = [true, false] - necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity"] + necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity","None"] baseboard_types = ["Hot Water", "Electric"] multispeed_type = [false] # Generate all possible combinations of the above arrays @@ -144,10 +156,12 @@ def system3() if (mau_type == false and necb_reference_hp == true) or (necb_reference_hp == true and heating_coil_type != 'DX') or - (necb_reference_hp == false and heating_coil_type == 'DX') + (necb_reference_hp == false and heating_coil_type == 'DX') or + (necb_reference_hp == false and necb_reference_hp_supp_fuel != 'None') or + (necb_reference_hp == true and necb_reference_hp_supp_fuel == 'None') next end - old_name,new_name,updated_name = NECB.add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating_single_speed( + old_name,new_name,updated_name,desc = NECB.add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating_single_speed( model: model, necb_reference_hp: necb_reference_hp, necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, @@ -158,9 +172,11 @@ def system3() new_auto_zoner: true) if old_name == new_name arguments["system"] = "sys_3" + arguments["description"] = desc # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = {"name" => updated_name}.merge(arguments) + arguments = { "name" => updated_name}.merge(arguments) + arguments = { "description" => desc}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -172,7 +188,7 @@ def system3() def system4() necb_reference_hp_types = [true, false] - necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity"] + necb_reference_hp_supp_fuel_types = ["NaturalGas", "Electricity","None"] heating_coil_types = ["DX","Gas", "Electric"] baseboard_types = ["Hot Water", "Electric"] necb_reference_hp_types.product(necb_reference_hp_supp_fuel_types, heating_coil_types, baseboard_types).each do |necb_reference_hp, necb_reference_hp_supp_fuel, heating_coil_type, baseboard_type| @@ -191,11 +207,13 @@ def system4() ] if (necb_reference_hp == true and heating_coil_type != 'DX') or - (necb_reference_hp == false and heating_coil_type == 'DX') + (necb_reference_hp == false and heating_coil_type == 'DX') or + (necb_reference_hp == false and necb_reference_hp_supp_fuel != 'None') or + (necb_reference_hp == true and necb_reference_hp_supp_fuel == 'None') next end - old_name,new_name,updated_name = NECB2011.new.add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, + old_name,new_name,updated_name,desc = NECB2011.new.add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, necb_reference_hp: necb_reference_hp, necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, zones: model.getThermalZones, @@ -205,9 +223,11 @@ def system4() if old_name == new_name arguments["system"] = "sys_4" + arguments["description"] = desc # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = {"name" => updated_name}.merge(arguments) + arguments = { "name" => updated_name}.merge(arguments) + arguments = { "description" => desc}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -239,7 +259,7 @@ def system5() hw_loop = OpenStudio::Model::PlantLoop.new(model) # Create NECB2011 objects - old_name,new_name,updated_name = NECB2011.new.add_sys2_FPFC_sys5_TPFC( model: model, + old_name,new_name,updated_name,desc = NECB2011.new.add_sys2_FPFC_sys5_TPFC( model: model, zones:model.getThermalZones, chiller_type: chiller_type, fan_coil_type: fan_coil_type, @@ -247,9 +267,11 @@ def system5() hw_loop: hw_loop) if old_name == new_name arguments["system"] = "sys_5" + arguments["description"] = desc # Make the "name" key the first key in the hash arguments = arguments.sort.to_h - arguments = {"name" => updated_name}.merge(arguments) + arguments = { "name" => updated_name}.merge(arguments) + arguments = { "description" => desc}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -280,7 +302,7 @@ def system6() hw_loop = OpenStudio::Model::PlantLoop.new(model) # Create NECB2011 objects - old_name,new_name,updated_name = NECB2011.new.add_sys6_multi_zone_built_up_system_with_baseboard_heating( + old_name,new_name,updated_name,desc = NECB2011.new.add_sys6_multi_zone_built_up_system_with_baseboard_heating( model:model, zones:model.getThermalZones, heating_coil_type: heating_coil_type, @@ -292,9 +314,11 @@ def system6() if old_name == new_name arguments["system"] = "sys_6" + arguments["description"] = desc # Make the "name" key the first key in the hash arguments = arguments.sort.to_h arguments = { "name" => updated_name}.merge(arguments) + arguments = { "description" => desc}.merge(arguments) $successes.append(arguments) else $failures.push([arguments,old_name,new_name]) @@ -302,8 +326,6 @@ def system6() end end - - system1() system2() system3() @@ -319,29 +341,64 @@ def system6() csv << failure end end +# Save Successes to a csv file +CSV.open('successes.csv', 'w') do |csv| + csv << $successes[0].keys + $successes.each do |hash| + csv << hash.values + end +end # save $successes array of hashes as a csv file. # filter $successes array of hashes to only include hashes wehre the "system" key is "sys_1" ["sys_1","sys_2","sys_3","sys_4","sys_5","sys_6"].each do |system_type| system = $successes.select{|hash| hash["system"] == system_type} - filename = "#{system_type}.csv" - CSV.open(filename, 'w') do |csv| - csv << system[0].keys - system.each do |hash| - csv << hash.values + unless system.nil? or system.empty? + filename = "#{system_type}.csv" + CSV.open(filename, 'w') do |csv| + csv << system[0].keys + system.each do |hash| + csv << hash.values + end end end end +# save $successes array of hashes as a pretty yaml file. +File.open('successes.yaml', 'w') do |file| + file.write($successes.to_yaml) +end +cvslist = ["sys_1.csv","sys_2.csv","sys_3.csv","sys_4.csv","sys_5.csv","sys_6.csv"] +#load all csv files and create an excel file with each csv file as a sheet using RubyXL +# Create a new workbook +workbook = RubyXL::Workbook.new -# save $successes array of hashes as a pretty yaml file. -File.open('successes.yaml', 'w') do |file| - file.write($successes.to_yaml) +cvslist.each do |csv| + # Make sure the csv file exists + unless File.exist?(csv) + puts "File not found: #{csv}" + next + end + # Create a new worksheet with the name of the CSV file (without extension) + sheet_name = File.basename(csv, File.extname(csv)) + worksheet = workbook.add_worksheet(sheet_name) + + # Read the CSV file and add each row to the worksheet + CSV.foreach(csv).with_index do |row, row_index| + row.each_with_index do |cell, col_index| + worksheet.add_cell(row_index, col_index, cell) + end + end end +# Remove the default worksheet created by RubyXL +workbook.worksheets.delete_at(0) + +# Write the workbook to an Excel file +workbook.write('systems.xlsx') From 52cb7a64d90db49c1483bb1dc375c3180a038d80 Mon Sep 17 00:00:00 2001 From: Phylroy Lopez Date: Thu, 26 Sep 2024 20:37:00 +0000 Subject: [PATCH 07/38] Update HVAC system naming conventions for NECB2011 - Updated the HVAC system naming conventions in the NECB2011 module to include additional options for air source heat pumps with different supplemental fuels. - Modified the 'sys_htg' parameter in the system name parameters to include 'ashp>c-g' for air source heat pumps with natural gas as the supplemental fuel and 'ashp>c-e' for air source heat pumps with electricity as the supplemental fuel. - Made the necessary changes in the 'hvac_system_4.rb', 'hvac_system_1_single_speed.rb', 'hvac_systems.rb', and 'hvac_system_3_and_8_single_speed.rb' files. --- .../standards/necb/NECB2011/hvac_namer.rb | 149 +++++++++--------- .../NECB2011/hvac_system_1_single_speed.rb | 2 + .../hvac_system_3_and_8_single_speed.rb | 3 +- .../standards/necb/NECB2011/hvac_system_4.rb | 3 +- .../standards/necb/NECB2011/hvac_systems.rb | 15 +- 5 files changed, 91 insertions(+), 81 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb index b2798e390e..4e955c2f94 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb @@ -1,37 +1,6 @@ class NECB2011 - def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) - ref_system_desc = { - "sys_1" => "PSZ MAU %s Coils and %s", - "sys_2" => "FPFC MAU %s Coils with %s Chiller", - "sys_3" => "PSZ RTU %s Coils and %s", - "sys_4" => "PSZ MAU %s Coils and %s", - "sys_5" => "TPFC MAU %s Coils with %s Chiller", - "sys_6" => "MZ Built-Up %s Heating Coil %s Chiller and %s" - } - # AirLoopHVACUnitaryHeatPumpAirToAir - unitary_hp = air_loop.components.detect(proc {false}) { |equip| equip.to_AirLoopHVACUnitaryHeatPumpAirToAir.is_initialized()} ? air_loop.components.detect() { |equip| equip.to_AirLoopHVACUnitaryHeatPumpAirToAir.is_initialized()}.to_AirLoopHVACUnitaryHeatPumpAirToAir.get : false - unitary_heating_coil_elec = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingElectric.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingElectric.get : false - unitary_heating_coil_gas = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingGas.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingGas.get : false - unitary_heating_coil_ashp = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingDXSingleSpeed.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingDXSingleSpeed.get : false - unitary_sup_heating_coil_elec =( unitary_hp && unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingElectric.is_initialized()) ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingElectric.get : false - unitary_sup_heating_coil_gas = ( unitary_hp && unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingGas.is_initialized()) ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingGas.get : false - unitary_sup_heating_coil_ashp =( unitary_hp && unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingDXSingleSpeed.is_initialized()) ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingDXSingleSpeed.get : false - unitary_supply_fan_on_off = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplyAirFan.to_FanOnOff.is_initialized() ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplyAirFan.to_FanOnOff.get : false - - # Main AirLoopHVAC Components - heating_coil_elect = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingElectric.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilHeatingElectric.is_initialized}.to_CoilHeatingElectric.get : false - heating_coil_ashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized and equip.to_CoilHeatingDXSingleSpeed.get.minimumOutdoorDryBulbTemperatureforCompressorOperation == -10} ? air_loop.components.detect() { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized}.to_CoilHeatingDXSingleSpeed.get : false - heating_coil_ccashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized and equip.to_CoilHeatingDXSingleSpeed.get.minimumOutdoorDryBulbTemperatureforCompressorOperation == -25} ? air_loop.components.detect() { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized}.to_CoilHeatingDXSingleSpeed.get : false - heating_coil_water = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingWater.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilHeatingWater.is_initialized}.to_CoilHeatingWater.get : false - heating_coil_gas = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingGas.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilHeatingGas.is_initialized}.to_CoilHeatingGas.get : false - cooling_coil_ashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and heating_coil_ashp} - cooling_coil_ccashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and heating_coil_ccashp} - cooling_coil_dx = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and (heating_coil_gas or heating_coil_elect or heating_coil_water)} - cooling_coil_water = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingWater.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilCoolingWater.is_initialized}.to_CoilCoolingWater.get : false - - - # PlantLoop cooling. + def get_chiller_type_from_water_coil(cooling_coil_water: nil) if cooling_coil_water # Get the PlantLoop attached to the CoilCoolingWater plant_loop = cooling_coil_water.plantLoop @@ -63,8 +32,45 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) end end end + end - # Zone Baseboard Heating + def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) + ref_system_desc = { + "sys_1" => "PSZ %s %s Coils and %s", + "sys_2" => "FPFC %s %s Coils with %s Chiller", + "sys_3" => "PSZ %s %s Coils and %s", + "sys_4" => "PSZ %s %s Coils and %s", + "sys_5" => "TPFC %s %s Coils with %s Chiller", + "sys_6" => "MZ BU %s %s Heating Coil %s Chiller and %s" + } + + # AirLoopHVACUnitaryHeatPumpAirToAir + unitary_hp = air_loop.components.detect(proc {false}) { |equip| equip.to_AirLoopHVACUnitaryHeatPumpAirToAir.is_initialized()} ? air_loop.components.detect() { |equip| equip.to_AirLoopHVACUnitaryHeatPumpAirToAir.is_initialized()}.to_AirLoopHVACUnitaryHeatPumpAirToAir.get : false + unitary_heating_coil_elec = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingElectric.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingElectric.get : false + unitary_heating_coil_gas = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingGas.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingGas.get : false + unitary_heating_coil_ashp = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingDXSingleSpeed.is_initialized()? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.heatingCoil.to_CoilHeatingDXSingleSpeed.get : false + unitary_sup_heating_coil_elec =( unitary_hp && unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingElectric.is_initialized()) ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingElectric.get : false + unitary_sup_heating_coil_gas = ( unitary_hp && unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingGas.is_initialized()) ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingGas.get : false + unitary_sup_heating_coil_ashp =( unitary_hp && unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingDXSingleSpeed.is_initialized()) ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplementalHeatingCoil.to_CoilHeatingDXSingleSpeed.get : false + unitary_supply_fan_on_off = unitary_hp and unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplyAirFan.to_FanOnOff.is_initialized() ? unitary_hp.to_AirLoopHVACUnitaryHeatPumpAirToAir.get.supplyAirFan.to_FanOnOff.get : false + + # Main AirLoopHVAC Components + # Heating Coils + heating_coil_elect = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingElectric.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilHeatingElectric.is_initialized}.to_CoilHeatingElectric.get : false + heating_coil_ashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized and equip.to_CoilHeatingDXSingleSpeed.get.minimumOutdoorDryBulbTemperatureforCompressorOperation == -10} ? air_loop.components.detect() { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized}.to_CoilHeatingDXSingleSpeed.get : false + heating_coil_ccashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized and equip.to_CoilHeatingDXSingleSpeed.get.minimumOutdoorDryBulbTemperatureforCompressorOperation == -25} ? air_loop.components.detect() { |equip| equip.to_CoilHeatingDXSingleSpeed.is_initialized}.to_CoilHeatingDXSingleSpeed.get : false + heating_coil_water = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingWater.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilHeatingWater.is_initialized}.to_CoilHeatingWater.get : false + heating_coil_gas = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilHeatingGas.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilHeatingGas.is_initialized}.to_CoilHeatingGas.get : false + # Cooling Coils + cooling_coil_ashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and heating_coil_ashp} + cooling_coil_ccashp = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and heating_coil_ccashp} + cooling_coil_dx = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingDXSingleSpeed.is_initialized and (heating_coil_gas or heating_coil_elect or heating_coil_water)} + cooling_coil_water = air_loop.components.detect(proc {false}) { |equip| equip.to_CoilCoolingWater.is_initialized } ? air_loop.components.detect() { |equip| equip.to_CoilCoolingWater.is_initialized}.to_CoilCoolingWater.get : false + + # MAU Chiller Type + chiller_type = get_chiller_type_from_water_coil(cooling_coil_water: cooling_coil_water) + + # Zone Baseboard Heating. zone_htg_b_elec = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Electric') } zone_htg_b_water = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Water') } @@ -82,41 +88,12 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) when OpenStudio::Model::Model.new.alwaysOnDiscreteSchedule.nameString zone_fpfc = true else - raise('unknown schedule type') + raise('unknown schedule type') end cooling_coil_water = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized()}.to_ZoneHVACFourPipeFanCoil.get.coolingCoil.to_CoilCoolingWater.get - # Determine PlantLoop that is connected to the cooling_coil_water coil. - if cooling_coil_water - # Get the PlantLoop attached to the CoilCoolingWater - plant_loop = cooling_coil_water.plantLoop - # Initialize an array to hold the names of the ChillerElectricEIR objects - chiller_names = [] - # Check if the PlantLoop is valid - if plant_loop.is_initialized - # Get the actual PlantLoop object - plant_loop = plant_loop.get - # Get the ChillerElectricEIR objects attached to the PlantLoop - chillers = plant_loop.supplyComponents(OpenStudio::Model::ChillerElectricEIR::iddObjectType) - chillers.each do |chiller| - chiller = chiller.to_ChillerElectricEIR.get - chiller_names << chiller.name.get - end #chillers - - case chiller_names[0] - # Check if name contains ["Scroll","Centrifugal","RotaryScrew","Reciprocating"] - when /Scroll/ - chiller_type = 'scrl' - when /Centrifugal/ - chiller_type = 'cent' - when /RotaryScrew/ - chiller_type = 'screw' - when /Reciprocating/ - chiller_type = 'recip' - else - raise("Chiller type not recognized") - end - end - end + + # If chiller was not detected, from MAU or RTU, then detect it from the fan coil. + chiller_type = get_chiller_type_from_water_coil(cooling_coil_water: cooling_coil_water) if not chiller_type end @@ -242,8 +219,12 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) "sh>c-e" => 'Electric', "sh>c-g" => 'Gas', "sh>c-hw" => 'Hot Water', - "sh>ashp" => 'ASHP', - "sh>ccashp" => 'CCASHP' + "sh>ashp>c-e" => 'ASHP with Electric', + "sh>ashp>c-g" => 'ASHP with Gas', + "sh>ashp>c-hw" => 'ASHP with Hot Water', + "sh>ccashp>c-e" => 'CCASHP with Electric', + "sh>ccashp>c-g" => 'CCASHP with Gas', + "sh>ccashp>c-hw" => 'CCASHP with Hot Water' } sc_map = { "sc>none" => 'None', @@ -339,8 +320,22 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) sh = 'sh>c-e' elsif heating_coil_ashp or unitary_hp sh = 'sh>ashp' + if zone_rh_gas or unitary_sup_heating_coil_gas + sh += '>c-g' + elsif zone_rh_elec or unitary_sup_heating_coil_elec + sh += '>c-e' + elsif zone_rh_hw + sh += '>c-hw' + end elsif heating_coil_ccashp sh = 'sh>ccashp' + if zone_rh_gas or unitary_sup_heating_coil_gas + sh += '>c-g' + elsif zone_rh_elec or unitary_sup_heating_coil_elec + sh += '>c-e' + elsif zone_rh_hw + sh += '>c-hw' + end elsif heating_coil_water sh = 'sh>c-hw' elsif heating_coil_gas @@ -419,10 +414,9 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) name ="" desc ="" # sh and sc are reversed for system 6 - name = "#{ref_sys}|#{oa}|shr>none|#{sc}|#{sh}|#{ssf}|#{zh}|#{zc}|#{srf}|" fixed_name = name - + air_unit_type = oa == "mixed" ? 'RTU' : 'MAU' case ref_sys when "sys_1" # Air Loop Coils @@ -439,9 +433,9 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) if zrh_map[zrh] != 'None' zone_system += " with #{zrh_map[zrh]} Reheat" end - desc= ref_system_desc[ref_sys] % [coils,zone_system] + desc= ref_system_desc[ref_sys] % [air_unit_type,coils,zone_system] when "sys_2" - desc= ref_system_desc[ref_sys] % [sc_map[sc],chiller_map[chiller]] + desc= ref_system_desc[ref_sys] % [air_unit_type,sc_map[sc],chiller_map[chiller]] when "sys_3" coils = "" # if heating and cooling coils are the same, only list it once @@ -455,7 +449,7 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) end zone_system = "#{zh_map[zh]}" zone_system += " with #{zc_map[zc]}" if zc_map[zc] != 'None' - desc= ref_system_desc[ref_sys] % [coils,zone_system] + desc= ref_system_desc[ref_sys] % [air_unit_type,coils,zone_system] when "sys_4" coils = "" # if heating and cooling coils are the same, only list it once @@ -469,17 +463,20 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) end zone_system = "#{zh_map[zh]}" zone_system += " with #{zc_map[zc]}" if zc_map[zc] != 'None' - desc= ref_system_desc[ref_sys] % [coils,zone_system] + desc= ref_system_desc[ref_sys] % [air_unit_type,coils,zone_system] when "sys_5" - desc= ref_system_desc[ref_sys] % [sc_map[sc],chiller_map[chiller]] + desc= ref_system_desc[ref_sys] % [air_unit_type,sc_map[sc],chiller_map[chiller]] when "sys_6" zone_system = "#{zh_map[zh]}" zone_system += " with #{zc_map[zc]}" if zc_map[zc] != 'None' - desc= ref_system_desc[ref_sys] % [sh_map[sh],chiller_map[chiller], zone_system] + desc= ref_system_desc[ref_sys] % [air_unit_type, sh_map[sh],chiller_map[chiller], zone_system] fixed_name = "#{ref_sys}|#{oa}|shr>none|#{sh}|#{sc}|#{ssf}|#{zh}|#{zc}|#{srf}|" else end + + # + return old_system_name, fixed_name, name, desc end end \ No newline at end of file diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb index bda464e66f..ecb77afbd2 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb @@ -251,6 +251,8 @@ def add_sys1_unitary_ac_baseboard_heating_single_speed(model:, sys_name_pars['sys_clg'] = 'ashp' if necb_reference_hp sys_name_pars['sys_htg'] = mau_heating_coil_type sys_name_pars['sys_htg'] = 'ashp' if necb_reference_hp + sys_name_pars['sys_htg'] = 'ashp>c-g' if necb_reference_hp and necb_reference_hp_supp_fuel == "NaturalGas" + sys_name_pars['sys_htg'] = 'ashp>c-e' if necb_reference_hp and necb_reference_hp_supp_fuel == "Electricity" sys_name_pars['sys_sf'] = 'cv' sys_name_pars['zone_htg'] = baseboard_type sys_oa = 'doas' diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb index cd03adc2ba..7c9c465de0 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb @@ -118,7 +118,8 @@ def add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating_single sys_name_pars['sys_clg'] = 'dx' sys_name_pars['sys_clg'] = 'ashp' if necb_reference_hp sys_name_pars['sys_htg'] = heating_coil_type - sys_name_pars['sys_htg'] = 'ashp' if necb_reference_hp + sys_name_pars['sys_htg'] = 'ashp>c-g' if necb_reference_hp and necb_reference_hp_supp_fuel == "NaturalGas" + sys_name_pars['sys_htg'] = 'ashp>c-e' if necb_reference_hp and necb_reference_hp_supp_fuel == "Electricity" sys_name_pars['sys_sf'] = 'cv' sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb index 13ed7f08e8..00452efd96 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb @@ -198,7 +198,8 @@ def add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model:, sys_name_pars['sys_clg'] = 'dx' sys_name_pars['sys_clg'] = 'ashp' if necb_reference_hp sys_name_pars['sys_htg'] = heating_coil_type - sys_name_pars['sys_htg'] = 'ashp' if necb_reference_hp + sys_name_pars['sys_htg'] = 'ashp>c-g' if necb_reference_hp and necb_reference_hp_supp_fuel == "NaturalGas" + sys_name_pars['sys_htg'] = 'ashp>c-e' if necb_reference_hp and necb_reference_hp_supp_fuel == "Electricity" sys_name_pars['sys_sf'] = 'cv' sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb index 80c4699493..1c47c4aabd 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb @@ -2164,12 +2164,21 @@ def assign_base_sys_name(air_loop:, sys_abbr:, sys_oa:, sys_name_pars:) sys_name += 'sh>c-hw' when 'gas', 'g' sys_name += 'sh>c-g' - when 'dx' + when 'dx' , 'ashp' sys_name += 'sh>ashp' + when 'ashp>c-g' + sys_name += 'sh>ashp>c-g' + when 'ashp>c-e' + sys_name += 'sh>ashp>c-e' when 'ccashp' sys_name += 'sh>ccashp' - when 'ashp' - sys_name += 'sh>ashp' + when 'ccashp>c-g' + sys_name += 'sh>ccashp>c-g' + when 'ccashp>c-e' + sys_name += 'sh>ccashp>c-e' + + else + sys_name += 'sh>none' end when 'sys_clg' From 0c1d447be998b3966cde1b651fea58401317369b Mon Sep 17 00:00:00 2001 From: Phylroy Date: Thu, 21 Nov 2024 15:31:53 +0000 Subject: [PATCH 08/38] modifications to allow consistent naming of systems. --- .../hvac_system_3_and_8_single_speed.rb | 2 +- .../necb/BTAPPRE1980/hvac_system_4.rb | 2 +- .../necb/BTAPPRE1980/hvac_system_6.rb | 2 +- .../standards/necb/ECMS/hvac_systems.rb | 5 +- .../standards/necb/NECB2011/hvac_namer.rb | 47 +++++++++++-------- .../standards/necb/NECB2011/hvac_system_6.rb | 2 +- 6 files changed, 35 insertions(+), 25 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_3_and_8_single_speed.rb b/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_3_and_8_single_speed.rb index 2eb5ad5fb2..6147a74505 100644 --- a/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_3_and_8_single_speed.rb +++ b/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_3_and_8_single_speed.rb @@ -88,7 +88,7 @@ def add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating_single sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'none' - assign_base_sys_name(air_loop, + assign_base_sys_name(air_loop: air_loop, sys_abbr: 'sys_3', sys_oa: 'mixed', sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_4.rb b/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_4.rb index 3a02a1a010..6d96e6d369 100644 --- a/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_4.rb +++ b/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_4.rb @@ -167,7 +167,7 @@ def add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model:, sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'none' - assign_base_sys_name(air_loop, + assign_base_sys_name(air_loop: air_loop, sys_abbr: 'sys_4', sys_oa: 'mixed', sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_6.rb b/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_6.rb index c2edd5b9c0..bc662cfe3f 100644 --- a/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_6.rb +++ b/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_6.rb @@ -154,7 +154,7 @@ def add_sys6_multi_zone_built_up_system_with_baseboard_heating(model:, sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'vv' - assign_base_sys_name(air_loop, + assign_base_sys_name(air_loop: air_loop, sys_abbr: 'sys_6', sys_oa: 'mixed', sys_name_pars: sys_name_pars) diff --git a/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb b/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb index df401275af..8a7b961518 100755 --- a/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb @@ -819,7 +819,10 @@ def add_air_system(model:, sys_name_pars['sys_rf'] = 'none' sys_name_pars['sys_rf'] = 'cv' if sys_ret_fan_type == 'constant_volume' sys_name_pars['sys_rf'] = 'vv' if sys_ret_fan_type == 'variable_volume' - assign_base_sys_name(airloop, sys_abbr: sys_abbr, sys_oa: sys_vent_type, sys_name_pars: sys_name_pars) + assign_base_sys_name( air_loop: airloop, + sys_abbr: sys_abbr, + sys_oa: sys_vent_type, + sys_name_pars: sys_name_pars) return airloop, clg_eqpt, htg_eqpt, return_fan end diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb index 4e955c2f94..0fd888d658 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb @@ -18,17 +18,19 @@ def get_chiller_type_from_water_coil(cooling_coil_water: nil) end #chillers case chiller_names[0] - # Check if name contains ["Scroll","Centrifugal","RotaryScrew","Reciprocating"] + # Check if name contains ["Scroll","Centrifugal","RotaryScrew","Reciprocating","WaterCooled"] when /Scroll/ chiller_type = 'scrl' when /Centrifugal/ chiller_type = 'cent' - when /RotaryScrew/ + when /RotaryScrew/ , /Rotary Screw/ chiller_type = 'screw' when /Reciprocating/ chiller_type = 'recip' + when /WaterCooled/ + chiller_type = 'water' else - raise("Chiller type not recognized") + raise("Chiller type not recognized #{chiller_names[0]}") end end end @@ -71,8 +73,8 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) chiller_type = get_chiller_type_from_water_coil(cooling_coil_water: cooling_coil_water) # Zone Baseboard Heating. - zone_htg_b_elec = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Electric') } - zone_htg_b_water = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Water') } + zone_htg_b_elec = air_loop.thermalZones.first.respond_to?(:equipment) ? air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Electric') } : false + zone_htg_b_water = air_loop.thermalZones.first.respond_to?(:equipment) ? air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Baseboard Convective Water') } : false # Zone VAV with Reheat. zone_vav_rh = air_loop.components.detect(proc {false}) { |equip| equip.to_AirTerminalSingleDuctVAVReheat.is_initialized()} ? air_loop.components.detect() { |equip| equip.to_AirTerminalSingleDuctVAVReheat.is_initialized()}.to_AirTerminalSingleDuctVAVReheat.get : false @@ -81,28 +83,33 @@ def detect_air_system_type(air_loop: nil , sys_abbr: nil , old_system_name: nil) # Zone 2/4 Pipe Fan Coils. zone_tpfc = false zone_fpfc = false - if air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized()} - case air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized()}.to_ZoneHVACFourPipeFanCoil.get.coolingCoil.to_CoilCoolingWater.get.availabilitySchedule.nameString - when 'tpfc_clg_availability' - zone_tpfc = true - when OpenStudio::Model::Model.new.alwaysOnDiscreteSchedule.nameString - zone_fpfc = true - else - raise('unknown schedule type') - end + if air_loop.thermalZones.first.respond_to?(:equipment) + fan_coil = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized() } + if fan_coil + case fan_coil.to_ZoneHVACFourPipeFanCoil.get.coolingCoil.to_CoilCoolingWater.get.availabilitySchedule.nameString + when 'tpfc_clg_availability' + zone_tpfc = true + when OpenStudio::Model::Model.new.alwaysOnDiscreteSchedule.nameString + zone_fpfc = true + else + raise('unknown schedule type') + end cooling_coil_water = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.to_ZoneHVACFourPipeFanCoil().is_initialized()}.to_ZoneHVACFourPipeFanCoil.get.coolingCoil.to_CoilCoolingWater.get # If chiller was not detected, from MAU or RTU, then detect it from the fan coil. chiller_type = get_chiller_type_from_water_coil(cooling_coil_water: cooling_coil_water) if not chiller_type + end end - zone_htg_pthp = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Packaged Terminal Heat Pump') } - zone_clg_ptac = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('PTAC') } - zone_clg_pthp = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Packaged Terminal Heat Pump') } - zone_rh_elec = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Air Terminal Single Duct Constant Volume Reheat') and equip.to_AirTerminalSingleDuctConstantVolumeReheat.get.reheatCoil.nameString.include?('Coil Heating Electric') } - zone_rh_gas = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Air Terminal Single Duct Constant Volume Reheat') and equip.to_AirTerminalSingleDuctConstantVolumeReheat.get.reheatCoil.nameString.include?('Coil Heating Gas') } - zone_rh_hw = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Air Terminal Single Duct Constant Volume Reheat') and equip.to_AirTerminalSingleDuctConstantVolumeReheat.get.reheatCoil.nameString.include?('Coil Heating Water') } + if air_loop.thermalZones.first.respond_to?(:equipment) + zone_htg_pthp = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Packaged Terminal Heat Pump') } + zone_clg_ptac = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('PTAC') } + zone_clg_pthp = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Zone HVAC Packaged Terminal Heat Pump') } + zone_rh_elec = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Air Terminal Single Duct Constant Volume Reheat') and equip.to_AirTerminalSingleDuctConstantVolumeReheat.get.reheatCoil.nameString.include?('Coil Heating Electric') } + zone_rh_gas = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Air Terminal Single Duct Constant Volume Reheat') and equip.to_AirTerminalSingleDuctConstantVolumeReheat.get.reheatCoil.nameString.include?('Coil Heating Gas') } + zone_rh_hw = air_loop.thermalZones.first.equipment.detect(proc {false}) { |equip| equip.nameString.include?('Air Terminal Single Duct Constant Volume Reheat') and equip.to_AirTerminalSingleDuctConstantVolumeReheat.get.reheatCoil.nameString.include?('Coil Heating Water') } + end return_fan = air_loop.components.detect(proc {false}) { |equip| equip.nameString.include?('Fan') } # Determine System Outdoor Air type. oa_controller = air_loop.components.detect(proc {false}) { |equip| equip.nameString.include?('ControllerOutdoorAir') } diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb index f3188819ae..612642a52b 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb @@ -429,7 +429,7 @@ def add_sys6_multi_zone_reference_hp_with_baseboard_heating(model:, sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'cv' - assign_base_sys_name(air_loop, + assign_base_sys_name(air_loop: air_loop, sys_abbr: 'sys_6', sys_oa: 'mixed', sys_name_pars: sys_name_pars) From 40609a4f28dcb103b4515c421f698f0f0fb90b0c Mon Sep 17 00:00:00 2001 From: plopez Date: Fri, 22 Nov 2024 16:13:31 +0000 Subject: [PATCH 09/38] Update .gitignore and refactor weather file download tests --- test/.gitignore | 6 ++ .../tests/test_necb_weather_file_download.rb | 102 +++++------------- 2 files changed, 35 insertions(+), 73 deletions(-) diff --git a/test/.gitignore b/test/.gitignore index 7c4b4b2974..e011eb8329 100644 --- a/test/.gitignore +++ b/test/.gitignore @@ -2,3 +2,9 @@ /coverage/ **/reports/ /ci_tests.json +*test_result.osm +*test_result.idf +*diffs.json +*btap_data_report_test_result.json +*ecm_envelope_test_result.json +*qaqc_report_test_result.json \ No newline at end of file diff --git a/test/necb/unit_tests/tests/test_necb_weather_file_download.rb b/test/necb/unit_tests/tests/test_necb_weather_file_download.rb index 78d10822f5..0083b2db0e 100644 --- a/test/necb/unit_tests/tests/test_necb_weather_file_download.rb +++ b/test/necb/unit_tests/tests/test_necb_weather_file_download.rb @@ -2,86 +2,42 @@ require_relative '../../../helpers/create_doe_prototype_helper' require 'json' - -#This test will check that the ERVs are added and the assignment from the erv.json library works. +# This test will check that the weather files are downloaded and exist in the specified directory. class NECB_Download_Weather_Files_Test < Minitest::Test - def test_weather_file_download() + def test_weather_file_download + template = 'NECB2020' + standard = Standard.build(template) - # File paths. - weather_folder = File.absolute_path(File.join(__FILE__, '..', '..', '..', '..', '..' , "data/weather")) - weather_files = [ - { - zip_file: "CAN_ON_Wiarton-Keppel.Intl.AP.716330_CWEC2016.zip", - clm_file: "CAN_ON_Wiarton-Keppel.Intl.AP.716330_CWEC2016.clm", - ddy_file: "CAN_ON_Wiarton-Keppel.Intl.AP.716330_CWEC2016.ddy", - epw_file: "CAN_ON_Wiarton-Keppel.Intl.AP.716330_CWEC2016.epw", - pvsyst_file: "CAN_ON_Wiarton-Keppel.Intl.AP.716330_CWEC2016.pvsyst", - rain_file: "CAN_ON_Wiarton-Keppel.Intl.AP.716330_CWEC2016.rain", - stat_file: "CAN_ON_Wiarton-Keppel.Intl.AP.716330_CWEC2016.stat", - wea_file: "CAN_ON_Wiarton-Keppel.Intl.AP.716330_CWEC2016.wea", - ashrae_ddy_file: "CAN_ON_Wiarton-Keppel.Intl.AP.716330_CWEC2016.ddy" # Redundant file added for consistency - }, - { - zip_file: "CAN_SK_Yorkton.Muni.AP.712920_TMYx.2004-2018.zip", - clm_file: "CAN_SK_Yorkton.Muni.AP.712920_TMYx.2004-2018.clm", - ddy_file: "CAN_SK_Yorkton.Muni.AP.712920_TMYx.2004-2018.ddy", - epw_file: "CAN_SK_Yorkton.Muni.AP.712920_TMYx.2004-2018.epw", - pvsyst_file: "CAN_SK_Yorkton.Muni.AP.712920_TMYx.2004-2018.pvsyst", - rain_file: "CAN_SK_Yorkton.Muni.AP.712920_TMYx.2004-2018.rain", - stat_file: "CAN_SK_Yorkton.Muni.AP.712920_TMYx.2004-2018.stat", - wea_file: "CAN_SK_Yorkton.Muni.AP.712920_TMYx.2004-2018.wea", - ashrae_ddy_file: "CAN_SK_Yorkton.Muni.AP.712920_TMYx.2004-2018.ddy" # Redundant file added for consistency - }, - { - zip_file: "CAN_BC_Prince.Rupert.AP-Digby.Island.710220_NRCv12022_TMY_GW1.5.zip", - clm_file: "CAN_BC_Prince.Rupert.AP-Digby.Island.710220_NRCv12022_TMY_GW1.5.clm", - ddy_file: "CAN_BC_Prince.Rupert.AP-Digby.Island.710220_NRCv12022_TMY_GW1.5.ddy", - epw_file: "CAN_BC_Prince.Rupert.AP-Digby.Island.710220_NRCv12022_TMY_GW1.5.epw", - pvsyst_file: "CAN_BC_Prince.Rupert.AP-Digby.Island.710220_NRCv12022_TMY_GW1.5.pvsyst", - rain_file: "CAN_BC_Prince.Rupert.AP-Digby.Island.710220_NRCv12022_TMY_GW1.5.rain", - stat_file: "CAN_BC_Prince.Rupert.AP-Digby.Island.710220_NRCv12022_TMY_GW1.5.stat", - wea_file: "CAN_BC_Prince.Rupert.AP-Digby.Island.710220_NRCv12022_TMY_GW1.5.wea", - ashrae_ddy_file: "CAN_BC_Prince.Rupert.AP-Digby.Island.710220_NRCv12022_TMY_GW1.5_ASHRAE.ddy" - }, - { - zip_file: "CAN_QC_Cap.Tourmente.713840_NRCv12022_TRY_MaxTemp_1991-2021.zip", - clm_file: "CAN_QC_Cap.Tourmente.713840_NRCv12022_TRY_MaxTemp_1991-2021.clm", - ddy_file: "CAN_QC_Cap.Tourmente.713840_NRCv12022_TRY_MaxTemp_1991-2021.ddy", - epw_file: "CAN_QC_Cap.Tourmente.713840_NRCv12022_TRY_MaxTemp_1991-2021.epw", - pvsyst_file: "CAN_QC_Cap.Tourmente.713840_NRCv12022_TRY_MaxTemp_1991-2021.pvsyst", - rain_file: "CAN_QC_Cap.Tourmente.713840_NRCv12022_TRY_MaxTemp_1991-2021.rain", - stat_file: "CAN_QC_Cap.Tourmente.713840_NRCv12022_TRY_MaxTemp_1991-2021.stat", - wea_file: "CAN_QC_Cap.Tourmente.713840_NRCv12022_TRY_MaxTemp_1991-2021.wea", - ashrae_ddy_file: "CAN_QC_Cap.Tourmente.713840_NRCv12022_TRY_MaxTemp_1991-2021.ddy" - }, + # File paths and extensions. + weather_folder = File.absolute_path(File.join(__FILE__, '..', '..', '..', '..', '..', "data/weather")) + weather_file_extensions = %w[clm ddy epw pvsyst rain stat wea zip] + + # Weather locations to test. + weather_locations = [ + "CAN_ON_Wiarton-Keppel.Intl.AP.716330_CWEC2016", + "CAN_SK_Yorkton.Muni.AP.712920_TMYx.2004-2018", + "CAN_BC_Prince.Rupert.AP-Digby.Island.710220_NRCv12022_TMY_GW1.5", + "CAN_QC_Cap.Tourmente.713840_NRCv12022_TRY_MaxTemp_1991-2021" ] - #Range of test options. - template = 'NECB2020' + # Download and verify weather files. + weather_locations.each do |location| + standard.get_weather_file_from_repo(epw_file: "#{location}.epw") + weather_file_extensions.each do |ext| + file = File.join(weather_folder, "#{location}.#{ext}") + assert(File.exist?(file), "The file #{file} does not exist.") + end + end - standard = Standard.build(template) - weather_files.each do |weather_file| - standard.get_weather_file_from_repo(epw_file: weather_file[:epw_file]) - zip_file = File.join(weather_folder, weather_file[:zip_file]) - assert(false, "This file was not downloaded properly: #{zip_file}") unless File.exist?(zip_file) - clm_file = File.join(weather_folder, weather_file[:clm_file]) - assert(false, "This file was not extracted properly: #{clm_file}") unless File.exist?(clm_file) - ddy_file = File.join(weather_folder, weather_file[:ddy_file]) - assert(false, "This file was not extracted properly: #{ddy_file}") unless File.exist?(ddy_file) - epw_file = File.join(weather_folder, weather_file[:epw_file]) - assert(false, "This file was not extracted properly: #{epw_file}") unless File.exist?(epw_file) - pvsyst_file = File.join(weather_folder, weather_file[:pvsyst_file]) - assert(false, "This file was not extracted properly: #{pvsyst_file}") unless File.exist?(pvsyst_file) - rain_file = File.join(weather_folder, weather_file[:rain_file]) - assert(false, "This file was not extracted properly: #{rain_file}") unless File.exist?(rain_file) - stat_file = File.join(weather_folder, weather_file[:stat_file]) - assert(false, "This file was not extracted properly: #{stat_file}") unless File.exist?(stat_file) - wea_file = File.join(weather_folder, weather_file[:wea_file]) - assert(false, "This file was not extracted properly: #{wea_file}") unless File.exist?(wea_file) - ashrae_ddy_file = File.join(weather_folder, weather_file[:ashrae_ddy_file]) - assert(false, "This file was not extracted properly: #{ashrae_ddy_file}") unless File.exist?(ashrae_ddy_file) + # Clean up downloaded files. + weather_locations.each do |location| + Dir.glob("#{weather_folder}/#{location}*.*").each do |file| + File.delete(file) + end end end end + + From b631f2bfdb715f3b19b9844762fcd729d03989d7 Mon Sep 17 00:00:00 2001 From: phylroy Date: Tue, 26 Nov 2024 19:32:30 +0000 Subject: [PATCH 10/38] updated regression test files. --- .devcontainer/devcontainer.json | 3 +- ...ity-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm | 48 +- ...Gas-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm | 48 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 48 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 48 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 48 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 48 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 60 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 60 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 60 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 60 +- ...ity-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm | 84 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 60 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 60 +- ...Gas-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm | 60 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 60 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 60 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 84 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 84 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 84 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 84 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 96 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 96 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 96 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 96 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 96 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 96 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 96 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 96 +- ...P1980TO2010-Electricity-CAN_AB_Calgary.osm | 56 +- ...AP1980TO2010-NaturalGas-CAN_AB_Calgary.osm | 74 +- ...el-NECB2011-Electricity-CAN_AB_Calgary.osm | 56 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 236 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 236 +- ...tel-NECB2011-NaturalGas-CAN_AB_Calgary.osm | 78 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 236 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 236 +- ...el-NECB2017-Electricity-CAN_AB_Calgary.osm | 78 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 242 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 242 +- ...tel-NECB2017-NaturalGas-CAN_AB_Calgary.osm | 56 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 242 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 242 +- ...el-NECB2020-Electricity-CAN_AB_Calgary.osm | 56 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 242 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 242 +- ...tel-NECB2020-NaturalGas-CAN_AB_Calgary.osm | 66 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 242 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 242 +- ...P1980TO2010-Electricity-CAN_AB_Calgary.osm | 102 +- ...AP1980TO2010-NaturalGas-CAN_AB_Calgary.osm | 112 +- ...ce-NECB2011-Electricity-CAN_AB_Calgary.osm | 10616 ++++------ ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 108 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 108 +- ...ice-NECB2011-NaturalGas-CAN_AB_Calgary.osm | 15632 +++++---------- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 108 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 108 +- ...ce-NECB2017-Electricity-CAN_AB_Calgary.osm | 11050 ++++------- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 114 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 114 +- ...ice-NECB2017-NaturalGas-CAN_AB_Calgary.osm | 16300 +++++----------- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 114 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 114 +- ...ce-NECB2020-Electricity-CAN_AB_Calgary.osm | 10990 ++++------- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 114 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 114 +- ...ice-NECB2020-NaturalGas-CAN_AB_Calgary.osm | 16262 +++++---------- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 114 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 114 +- ...P1980TO2010-Electricity-CAN_AB_Calgary.osm | 84 +- ...AP1980TO2010-NaturalGas-CAN_AB_Calgary.osm | 84 +- ...ce-NECB2011-Electricity-CAN_AB_Calgary.osm | 4297 +--- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 56 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 56 +- ...ice-NECB2011-NaturalGas-CAN_AB_Calgary.osm | 6035 ++---- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 56 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 56 +- ...ce-NECB2017-Electricity-CAN_AB_Calgary.osm | 4617 +---- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 56 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 56 +- ...ice-NECB2017-NaturalGas-CAN_AB_Calgary.osm | 6269 ++---- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 56 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 56 +- ...ce-NECB2020-Electricity-CAN_AB_Calgary.osm | 4583 +---- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 56 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 56 +- ...ice-NECB2020-NaturalGas-CAN_AB_Calgary.osm | 6187 ++---- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 56 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 56 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 84 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 84 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 84 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 84 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 96 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 96 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 96 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 96 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 96 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 96 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 96 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 96 +- ...P1980TO2010-Electricity-CAN_AB_Calgary.osm | 56 +- ...AP1980TO2010-NaturalGas-CAN_AB_Calgary.osm | 56 +- ...ol-NECB2011-Electricity-CAN_AB_Calgary.osm | 84 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 360 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 360 +- ...ool-NECB2011-NaturalGas-CAN_AB_Calgary.osm | 84 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 360 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 360 +- ...ol-NECB2017-Electricity-CAN_AB_Calgary.osm | 56 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 432 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 432 +- ...ool-NECB2017-NaturalGas-CAN_AB_Calgary.osm | 56 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 432 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 432 +- ...ol-NECB2020-Electricity-CAN_AB_Calgary.osm | 28 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 396 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 396 +- ...ool-NECB2020-NaturalGas-CAN_AB_Calgary.osm | 28 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 396 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 396 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 48 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 48 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 48 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 48 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 60 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 60 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 60 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 60 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 60 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 60 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 60 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 60 +- ...ne-NECB2011-Electricity-CAN_AB_Calgary.osm | 28 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 156 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 156 +- ...one-NECB2011-NaturalGas-CAN_AB_Calgary.osm | 28 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 156 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 156 +- ...ne-NECB2017-Electricity-CAN_AB_Calgary.osm | 28 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 186 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 186 +- ...one-NECB2017-NaturalGas-CAN_AB_Calgary.osm | 28 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 186 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 186 +- ...ne-NECB2020-Electricity-CAN_AB_Calgary.osm | 28 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 150 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 150 +- ...one-NECB2020-NaturalGas-CAN_AB_Calgary.osm | 28 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 150 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 150 +- ...P1980TO2010-Electricity-CAN_AB_Calgary.osm | 196 +- ...AP1980TO2010-NaturalGas-CAN_AB_Calgary.osm | 196 +- ...ol-NECB2011-Electricity-CAN_AB_Calgary.osm | 224 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 768 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 768 +- ...ool-NECB2011-NaturalGas-CAN_AB_Calgary.osm | 224 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 768 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 768 +- ...ol-NECB2017-Electricity-CAN_AB_Calgary.osm | 224 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 888 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 888 +- ...ool-NECB2017-NaturalGas-CAN_AB_Calgary.osm | 224 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 888 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 888 +- ...ol-NECB2020-Electricity-CAN_AB_Calgary.osm | 112 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 744 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 744 +- ...ool-NECB2020-NaturalGas-CAN_AB_Calgary.osm | 112 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 744 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 744 +- ...P1980TO2010-Electricity-CAN_AB_Calgary.osm | 18 +- ...AP1980TO2010-NaturalGas-CAN_AB_Calgary.osm | 28 +- ...el-NECB2011-Electricity-CAN_AB_Calgary.osm | 10 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 204 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 204 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 204 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 204 +- ...el-NECB2017-Electricity-CAN_AB_Calgary.osm | 22 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 246 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 246 +- ...tel-NECB2017-NaturalGas-CAN_AB_Calgary.osm | 22 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 246 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 246 +- ...el-NECB2020-Electricity-CAN_AB_Calgary.osm | 32 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 246 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 246 +- ...tel-NECB2020-NaturalGas-CAN_AB_Calgary.osm | 32 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 246 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 246 +- ...se-NECB2011-Electricity-CAN_AB_Calgary.osm | 56 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 144 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 144 +- ...use-NECB2011-NaturalGas-CAN_AB_Calgary.osm | 56 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 144 +- ...1-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 144 +- ...se-NECB2017-Electricity-CAN_AB_Calgary.osm | 56 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 162 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 162 +- ...use-NECB2017-NaturalGas-CAN_AB_Calgary.osm | 56 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 162 +- ...7-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 162 +- ...se-NECB2020-Electricity-CAN_AB_Calgary.osm | 56 +- ...ElectricityHPElecBackup-CAN_AB_Calgary.osm | 162 +- ...tricityHPGasBackupMixed-CAN_AB_Calgary.osm | 162 +- ...use-NECB2020-NaturalGas-CAN_AB_Calgary.osm | 56 +- ...ralGasHPElecBackupMixed-CAN_AB_Calgary.osm | 162 +- ...0-NaturalGasHPGasBackup-CAN_AB_Calgary.osm | 162 +- 208 files changed, 47489 insertions(+), 98546 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index df68d5f704..150ae063de 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -18,7 +18,8 @@ "ms-python.python", "janisdd.vscode-edit-csv", "qwtel.sqlite-viewer", - "moshfeu.compare-folders" + "moshfeu.compare-folders", + "GitHub.copilot-chat" ] } }, diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-BTAP1980TO2010-Electricity-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-BTAP1980TO2010-Electricity-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm index 4ab479c498..7a3d8663a3 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-BTAP1980TO2010-Electricity-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-BTAP1980TO2010-Electricity-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm @@ -36,7 +36,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000020}, !- Availability Schedule {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name @@ -58,7 +58,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none|, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000021}, !- Availability Schedule {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name @@ -3947,85 +3947,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000088}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Inlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000070}, !- Inlet Port {00000000-0000-0000-0016-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000089}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Outlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000090}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Mixed Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000082}, !- Inlet Port {00000000-0000-0000-0016-000000000083}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000091}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Outdoor Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000092}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Relief Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000080}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000093}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Inlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000068}, !- Inlet Port {00000000-0000-0000-0016-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000094}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Outlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000095}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Inlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000096}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Outlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port {00000000-0000-0000-0016-000000000045}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000097}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Mixed Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000056}, !- Inlet Port {00000000-0000-0000-0016-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000098}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Outdoor Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000099}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Relief Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000054}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000100}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Inlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000101}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Outlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000052}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port @@ -5557,7 +5557,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000047}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Default, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -5572,7 +5572,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000048}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5581,7 +5581,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000049}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5590,7 +5590,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000050}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Default, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -5605,7 +5605,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000051}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5614,7 +5614,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000052}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6176,7 +6176,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000020}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000048}, !- Summer Design Day Schedule Name @@ -6184,7 +6184,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000021}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-BTAP1980TO2010-NaturalGas-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-BTAP1980TO2010-NaturalGas-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm index 9dce9bc9ee..67eada897b 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-BTAP1980TO2010-NaturalGas-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-BTAP1980TO2010-NaturalGas-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm @@ -36,7 +36,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000020}, !- Availability Schedule {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name @@ -58,7 +58,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none|, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000021}, !- Availability Schedule {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name @@ -3957,85 +3957,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000088}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Inlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000070}, !- Inlet Port {00000000-0000-0000-0016-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000089}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Outlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000090}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Mixed Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000082}, !- Inlet Port {00000000-0000-0000-0016-000000000083}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000091}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Outdoor Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000092}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Relief Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000080}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000093}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Inlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000068}, !- Inlet Port {00000000-0000-0000-0016-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000094}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Outlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000095}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Inlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000096}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Outlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port {00000000-0000-0000-0016-000000000045}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000097}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Mixed Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000056}, !- Inlet Port {00000000-0000-0000-0016-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000098}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Outdoor Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000099}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Relief Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000054}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000100}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Inlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000101}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Outlet Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000052}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port @@ -5567,7 +5567,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000047}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Default, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -5582,7 +5582,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000048}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5591,7 +5591,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000049}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5600,7 +5600,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000050}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Default, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -5615,7 +5615,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000051}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5624,7 +5624,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000052}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6186,7 +6186,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000020}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000048}, !- Summer Design Day Schedule Name @@ -6194,7 +6194,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000021}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 9efdb44235..09c8a3a904 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0058-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0058-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2507,85 +2507,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0044-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000024}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000027}, !- Inlet Port {00000000-0000-0000-0016-000000000025}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000032}, !- Inlet Port {00000000-0000-0000-0016-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000030}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000028}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000031}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000029}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000032}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000033}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000030}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000034}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000035}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000036}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port {00000000-0000-0000-0016-000000000015}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000037}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000011}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port @@ -3820,7 +3820,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3835,7 +3835,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3844,7 +3844,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3853,7 +3853,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3868,7 +3868,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3877,7 +3877,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4439,7 +4439,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0058-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0056-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0056-000000000048}, !- Summer Design Day Schedule Name @@ -4447,7 +4447,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0058-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0056-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0056-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 31cfae9992..18e4351fce 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0058-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0058-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2525,85 +2525,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0044-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000024}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000027}, !- Inlet Port {00000000-0000-0000-0016-000000000025}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000032}, !- Inlet Port {00000000-0000-0000-0016-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000030}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000028}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000031}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000029}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000032}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000033}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000030}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000034}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000035}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000036}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port {00000000-0000-0000-0016-000000000015}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000037}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000011}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port @@ -3838,7 +3838,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3853,7 +3853,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3862,7 +3862,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3871,7 +3871,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3886,7 +3886,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3895,7 +3895,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4457,7 +4457,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0058-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0056-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0056-000000000048}, !- Summer Design Day Schedule Name @@ -4465,7 +4465,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0058-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0056-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0056-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 9bad79099e..8817469234 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2949,85 +2949,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0046-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000052}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000055}, !- Inlet Port {00000000-0000-0000-0018-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000060}, !- Inlet Port {00000000-0000-0000-0018-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000057}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000058}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port {00000000-0000-0000-0018-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000036}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port @@ -4343,7 +4343,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4358,7 +4358,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4367,7 +4367,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4376,7 +4376,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4391,7 +4391,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4400,7 +4400,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4962,7 +4962,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000048}, !- Summer Design Day Schedule Name @@ -4970,7 +4970,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 31ef18da96..8ad1d651e6 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2967,85 +2967,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0046-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000052}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000055}, !- Inlet Port {00000000-0000-0000-0018-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000060}, !- Inlet Port {00000000-0000-0000-0018-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000057}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000058}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port {00000000-0000-0000-0018-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000036}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port @@ -4361,7 +4361,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4376,7 +4376,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4385,7 +4385,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4394,7 +4394,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4409,7 +4409,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4418,7 +4418,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4980,7 +4980,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000048}, !- Summer Design Day Schedule Name @@ -4988,7 +4988,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 4c3bcf2676..27ef29dcc4 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -1954,7 +1954,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -1980,7 +1980,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2615,109 +2615,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0045-000000000027}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000028}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000029}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000030}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000031}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000020}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000026}, !- Inlet Port {00000000-0000-0000-0016-000000000021}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000070}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000039}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000010}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000077}, !- Inlet Port {00000000-0000-0000-0016-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000071}, !- Inlet Port {00000000-0000-0000-0016-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port @@ -4045,7 +4045,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4060,7 +4060,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4069,7 +4069,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4078,7 +4078,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4093,7 +4093,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4102,7 +4102,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4727,7 +4727,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000051}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000052}, !- Summer Design Day Schedule Name @@ -4735,7 +4735,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000022}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000054}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000055}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 140ab75107..2c703e1f09 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -1972,7 +1972,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -1998,7 +1998,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2633,109 +2633,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0045-000000000027}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000028}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000029}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000030}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000031}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000020}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000026}, !- Inlet Port {00000000-0000-0000-0016-000000000021}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000070}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000039}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000010}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000077}, !- Inlet Port {00000000-0000-0000-0016-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000071}, !- Inlet Port {00000000-0000-0000-0016-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port @@ -4063,7 +4063,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4078,7 +4078,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4087,7 +4087,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4096,7 +4096,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4111,7 +4111,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4120,7 +4120,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4745,7 +4745,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000051}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000052}, !- Summer Design Day Schedule Name @@ -4753,7 +4753,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000022}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000054}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000055}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 5e119a4dfd..ec5932f826 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2300,7 +2300,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2326,7 +2326,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3057,109 +3057,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0047-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000108}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000048}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000054}, !- Inlet Port {00000000-0000-0000-0018-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000035}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000109}, !- Inlet Port {00000000-0000-0000-0018-000000000110}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000111}, !- Inlet Port {00000000-0000-0000-0018-000000000112}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000059}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000060}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000105}, !- Inlet Port {00000000-0000-0000-0018-000000000106}; !- Outlet Port @@ -4568,7 +4568,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4583,7 +4583,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4592,7 +4592,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4601,7 +4601,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4616,7 +4616,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4625,7 +4625,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5250,7 +5250,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000051}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000052}, !- Summer Design Day Schedule Name @@ -5258,7 +5258,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000022}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000054}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000055}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 87c80a5038..f3f3523eb9 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2318,7 +2318,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2344,7 +2344,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3075,109 +3075,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0047-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000108}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000048}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000054}, !- Inlet Port {00000000-0000-0000-0018-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000035}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000109}, !- Inlet Port {00000000-0000-0000-0018-000000000110}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000111}, !- Inlet Port {00000000-0000-0000-0018-000000000112}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000059}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000060}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000105}, !- Inlet Port {00000000-0000-0000-0018-000000000106}; !- Outlet Port @@ -4586,7 +4586,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4601,7 +4601,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4610,7 +4610,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4619,7 +4619,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4634,7 +4634,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4643,7 +4643,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5268,7 +5268,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000051}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000052}, !- Summer Design Day Schedule Name @@ -5276,7 +5276,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000022}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000054}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000055}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-Electricity-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-Electricity-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm index 98c4712212..b404080b0e 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-Electricity-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-Electricity-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm @@ -36,7 +36,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000021}, !- Availability Schedule {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name @@ -58,7 +58,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none|, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000022}, !- Availability Schedule {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name @@ -3012,7 +3012,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000003}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3038,7 +3038,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000003}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4055,109 +4055,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000088}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Inlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000068}, !- Inlet Port {00000000-0000-0000-0016-000000000070}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000089}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Outlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000071}, !- Inlet Port {00000000-0000-0000-0016-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000090}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Mixed Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000091}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Outdoor Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000202}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000092}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Relief Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000207}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000093}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Inlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000066}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000094}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Outlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000076}, !- Inlet Port {00000000-0000-0000-0016-000000000067}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000095}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Inlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000096}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Outlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port {00000000-0000-0000-0016-000000000045}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000097}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Mixed Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000054}, !- Inlet Port {00000000-0000-0000-0016-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000098}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Outdoor Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000196}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000099}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Relief Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000201}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000100}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Inlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000101}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Outlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000052}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000102}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000203}, !- Inlet Port {00000000-0000-0000-0016-000000000204}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000103}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000205}, !- Inlet Port {00000000-0000-0000-0016-000000000206}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000104}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000197}, !- Inlet Port {00000000-0000-0000-0016-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000105}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000199}, !- Inlet Port {00000000-0000-0000-0016-000000000200}; !- Outlet Port @@ -5684,7 +5684,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000044}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 2, !- Hour 1 0, !- Minute 1 @@ -5699,7 +5699,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000045}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -5720,7 +5720,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000046}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 2, !- Hour 1 0, !- Minute 1 @@ -5735,7 +5735,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000047}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -5782,8 +5782,8 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000051}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -5797,8 +5797,8 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -5806,8 +5806,8 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -5815,8 +5815,8 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Default, !- Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -5830,8 +5830,8 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -5839,8 +5839,8 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -6464,16 +6464,16 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000021}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch, !- Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000051}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000052}, !- Summer Design Day Schedule Name {00000000-0000-0000-0065-000000000053}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000022}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch, !- Name + {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000054}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000055}, !- Summer Design Day Schedule Name {00000000-0000-0000-0065-000000000056}; !- Winter Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 38097d3bae..6275c9ac12 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -1954,7 +1954,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -1980,7 +1980,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2615,109 +2615,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0045-000000000027}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000028}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000029}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000030}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000031}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000020}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000026}, !- Inlet Port {00000000-0000-0000-0016-000000000021}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000070}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000039}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000010}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000077}, !- Inlet Port {00000000-0000-0000-0016-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000071}, !- Inlet Port {00000000-0000-0000-0016-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port @@ -4045,7 +4045,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4060,7 +4060,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4069,7 +4069,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4078,7 +4078,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4093,7 +4093,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4102,7 +4102,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4727,7 +4727,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000051}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000052}, !- Summer Design Day Schedule Name @@ -4735,7 +4735,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000022}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000054}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000055}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index be8a9c0c57..db120a1722 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -1972,7 +1972,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -1998,7 +1998,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2633,109 +2633,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0045-000000000027}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000028}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000029}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000030}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000031}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000020}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000026}, !- Inlet Port {00000000-0000-0000-0016-000000000021}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000070}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000039}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000010}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000077}, !- Inlet Port {00000000-0000-0000-0016-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000071}, !- Inlet Port {00000000-0000-0000-0016-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port @@ -4063,7 +4063,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4078,7 +4078,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4087,7 +4087,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4096,7 +4096,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4111,7 +4111,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4120,7 +4120,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4745,7 +4745,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000051}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000052}, !- Summer Design Day Schedule Name @@ -4753,7 +4753,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000022}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000054}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000055}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGas-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGas-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm index 6be5e778c4..29bfdca4e0 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGas-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGas-HS14_CGSHP_FanCoils-CAN_AB_Calgary.osm @@ -36,7 +36,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000021}, !- Availability Schedule {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name @@ -58,7 +58,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none|, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000022}, !- Availability Schedule {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name @@ -3022,7 +3022,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000003}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3048,7 +3048,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000003}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4065,109 +4065,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000088}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Inlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000068}, !- Inlet Port {00000000-0000-0000-0016-000000000070}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000089}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Outlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000071}, !- Inlet Port {00000000-0000-0000-0016-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000090}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Mixed Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000091}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Outdoor Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000202}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000092}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Relief Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000207}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000093}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Inlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000066}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000094}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Outlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000076}, !- Inlet Port {00000000-0000-0000-0016-000000000067}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000095}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Inlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000096}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Outlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port {00000000-0000-0000-0016-000000000045}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000097}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Mixed Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000054}, !- Inlet Port {00000000-0000-0000-0016-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000098}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Outdoor Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000196}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000099}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Relief Air Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000201}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000100}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Inlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000101}, !- Handle - sys_1|doas|shr>erv|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Outlet Node, !- Name + sys_1|doas|shr>erv|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000052}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000102}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000203}, !- Inlet Port {00000000-0000-0000-0016-000000000204}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000103}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000205}, !- Inlet Port {00000000-0000-0000-0016-000000000206}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000104}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000197}, !- Inlet Port {00000000-0000-0000-0016-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000105}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000199}, !- Inlet Port {00000000-0000-0000-0016-000000000200}; !- Outlet Port @@ -5792,7 +5792,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000051}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Default, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -5807,7 +5807,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5816,7 +5816,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5825,7 +5825,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Default, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -5840,7 +5840,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5849,7 +5849,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6474,7 +6474,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000021}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000051}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000052}, !- Summer Design Day Schedule Name @@ -6482,7 +6482,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000022}, !- Handle - sys_1|doas|shr>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch, !- Name + sys_1|doas|shr>none|sh>none|ssf>cv|zh>fancoil_4pipe|zc>fancoil_4pipe|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000054}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000055}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index e368a88fb2..43b2f9912e 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2300,7 +2300,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2326,7 +2326,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3057,109 +3057,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0047-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000108}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000048}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000054}, !- Inlet Port {00000000-0000-0000-0018-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000035}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000109}, !- Inlet Port {00000000-0000-0000-0018-000000000110}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000111}, !- Inlet Port {00000000-0000-0000-0018-000000000112}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000059}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000060}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000105}, !- Inlet Port {00000000-0000-0000-0018-000000000106}; !- Outlet Port @@ -4568,7 +4568,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4583,7 +4583,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4592,7 +4592,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4601,7 +4601,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4616,7 +4616,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4625,7 +4625,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5250,7 +5250,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000051}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000052}, !- Summer Design Day Schedule Name @@ -5258,7 +5258,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000022}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000054}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000055}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 72a81d825a..851cff11f4 100644 --- a/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/FullServiceRestaurant-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2318,7 +2318,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2344,7 +2344,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3075,109 +3075,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0047-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000108}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000048}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000054}, !- Inlet Port {00000000-0000-0000-0018-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000035}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000109}, !- Inlet Port {00000000-0000-0000-0018-000000000110}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000111}, !- Inlet Port {00000000-0000-0000-0018-000000000112}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000059}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000060}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000105}, !- Inlet Port {00000000-0000-0000-0018-000000000106}; !- Outlet Port @@ -4586,7 +4586,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4601,7 +4601,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4610,7 +4610,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4619,7 +4619,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4634,7 +4634,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4643,7 +4643,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5268,7 +5268,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000051}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000052}, !- Summer Design Day Schedule Name @@ -5276,7 +5276,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000022}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000054}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000055}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 01ad1a3a4a..a2920d3f93 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10476,7 +10476,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0066-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10484,7 +10484,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10492,27 +10492,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {32b6e795-a54c-48de-b042-090a1d15655c}<23.9 && {32b6e795-a54c-48de-b042-090a1d15655c}>1.7, !- Program Line 1 - SET {6d06986e-f821-4457-ad4e-db72ec375442} = 29.4, !- Program Line 2 - SET {bb60b0f9-c16d-4062-ba2e-3e9e173a8003} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {32b6e795-a54c-48de-b042-090a1d15655c}<23.9 && {32b6e795-a54c-48de-b042-090a1d15655c}>1.7, !- Program Line 4 - SET {6d06986e-f821-4457-ad4e-db72ec375442} = 29.4, !- Program Line 5 - SET {bb60b0f9-c16d-4062-ba2e-3e9e173a8003} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {32b6e795-a54c-48de-b042-090a1d15655c}<23.9 && {32b6e795-a54c-48de-b042-090a1d15655c}>1.7, !- Program Line 7 - SET {6d06986e-f821-4457-ad4e-db72ec375442} = 29.4, !- Program Line 8 - SET {bb60b0f9-c16d-4062-ba2e-3e9e173a8003} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {32b6e795-a54c-48de-b042-090a1d15655c}<23.9 && {32b6e795-a54c-48de-b042-090a1d15655c}>1.7, !- Program Line 10 - SET {6d06986e-f821-4457-ad4e-db72ec375442} = 29.4, !- Program Line 11 - SET {bb60b0f9-c16d-4062-ba2e-3e9e173a8003} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {90544f60-2737-4d20-ac5f-0956ec7fe1eb}<23.9 && {90544f60-2737-4d20-ac5f-0956ec7fe1eb}>1.7, !- Program Line 1 + SET {bf84509e-c80c-48bd-a41b-964e8356c8b6} = 29.4, !- Program Line 2 + SET {47572e19-bba9-425a-bc7e-b97ffd7f1748} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {90544f60-2737-4d20-ac5f-0956ec7fe1eb}<23.9 && {90544f60-2737-4d20-ac5f-0956ec7fe1eb}>1.7, !- Program Line 4 + SET {bf84509e-c80c-48bd-a41b-964e8356c8b6} = 29.4, !- Program Line 5 + SET {47572e19-bba9-425a-bc7e-b97ffd7f1748} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {90544f60-2737-4d20-ac5f-0956ec7fe1eb}<23.9 && {90544f60-2737-4d20-ac5f-0956ec7fe1eb}>1.7, !- Program Line 7 + SET {bf84509e-c80c-48bd-a41b-964e8356c8b6} = 29.4, !- Program Line 8 + SET {47572e19-bba9-425a-bc7e-b97ffd7f1748} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {90544f60-2737-4d20-ac5f-0956ec7fe1eb}<23.9 && {90544f60-2737-4d20-ac5f-0956ec7fe1eb}>1.7, !- Program Line 10 + SET {bf84509e-c80c-48bd-a41b-964e8356c8b6} = 29.4, !- Program Line 11 + SET {47572e19-bba9-425a-bc7e-b97ffd7f1748} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6d06986e-f821-4457-ad4e-db72ec375442} = NULL, !- Program Line 14 - SET {bb60b0f9-c16d-4062-ba2e-3e9e173a8003} = NULL, !- Program Line 15 + SET {bf84509e-c80c-48bd-a41b-964e8356c8b6} = NULL, !- Program Line 14 + SET {47572e19-bba9-425a-bc7e-b97ffd7f1748} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -14299,85 +14299,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000536}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000537}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000538}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000105}, !- Inlet Port {00000000-0000-0000-0017-000000000106}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000539}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000540}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000098}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000541}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000542}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000099}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000543}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000589}, !- Inlet Port {00000000-0000-0000-0017-000000000591}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000544}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000592}, !- Inlet Port {00000000-0000-0000-0017-000000000590}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000545}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000597}, !- Inlet Port {00000000-0000-0000-0017-000000000598}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000546}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000593}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000547}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000594}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000548}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000587}, !- Inlet Port {00000000-0000-0000-0017-000000000596}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000549}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000595}, !- Inlet Port {00000000-0000-0000-0017-000000000588}; !- Outlet Port @@ -18432,7 +18432,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18441,7 +18441,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18450,7 +18450,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18459,7 +18459,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18468,7 +18468,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18477,7 +18477,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -19258,7 +19258,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000053}, !- Summer Design Day Schedule Name @@ -19266,7 +19266,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 5c2226a24e..63c69bb97d 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10810,7 +10810,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0066-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10818,7 +10818,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10826,27 +10826,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2f36351c-8b9d-46d7-ba4d-0f31ab415f24}<23.9 && {2f36351c-8b9d-46d7-ba4d-0f31ab415f24}>1.7, !- Program Line 1 - SET {95125b96-d821-472e-918a-b19da5301919} = 29.4, !- Program Line 2 - SET {4aaaac11-bf4b-4043-8abc-c4c9e813088e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2f36351c-8b9d-46d7-ba4d-0f31ab415f24}<23.9 && {2f36351c-8b9d-46d7-ba4d-0f31ab415f24}>1.7, !- Program Line 4 - SET {95125b96-d821-472e-918a-b19da5301919} = 29.4, !- Program Line 5 - SET {4aaaac11-bf4b-4043-8abc-c4c9e813088e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2f36351c-8b9d-46d7-ba4d-0f31ab415f24}<23.9 && {2f36351c-8b9d-46d7-ba4d-0f31ab415f24}>1.7, !- Program Line 7 - SET {95125b96-d821-472e-918a-b19da5301919} = 29.4, !- Program Line 8 - SET {4aaaac11-bf4b-4043-8abc-c4c9e813088e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2f36351c-8b9d-46d7-ba4d-0f31ab415f24}<23.9 && {2f36351c-8b9d-46d7-ba4d-0f31ab415f24}>1.7, !- Program Line 10 - SET {95125b96-d821-472e-918a-b19da5301919} = 29.4, !- Program Line 11 - SET {4aaaac11-bf4b-4043-8abc-c4c9e813088e} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b5b6cc8f-3120-46b4-b73d-433f2c71b661}<23.9 && {b5b6cc8f-3120-46b4-b73d-433f2c71b661}>1.7, !- Program Line 1 + SET {71a6ba94-3d69-406f-92cb-2e7ea21023bc} = 29.4, !- Program Line 2 + SET {d25e74af-a8b0-4836-b4dd-3ed94badec97} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b5b6cc8f-3120-46b4-b73d-433f2c71b661}<23.9 && {b5b6cc8f-3120-46b4-b73d-433f2c71b661}>1.7, !- Program Line 4 + SET {71a6ba94-3d69-406f-92cb-2e7ea21023bc} = 29.4, !- Program Line 5 + SET {d25e74af-a8b0-4836-b4dd-3ed94badec97} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b5b6cc8f-3120-46b4-b73d-433f2c71b661}<23.9 && {b5b6cc8f-3120-46b4-b73d-433f2c71b661}>1.7, !- Program Line 7 + SET {71a6ba94-3d69-406f-92cb-2e7ea21023bc} = 29.4, !- Program Line 8 + SET {d25e74af-a8b0-4836-b4dd-3ed94badec97} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b5b6cc8f-3120-46b4-b73d-433f2c71b661}<23.9 && {b5b6cc8f-3120-46b4-b73d-433f2c71b661}>1.7, !- Program Line 10 + SET {71a6ba94-3d69-406f-92cb-2e7ea21023bc} = 29.4, !- Program Line 11 + SET {d25e74af-a8b0-4836-b4dd-3ed94badec97} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {95125b96-d821-472e-918a-b19da5301919} = NULL, !- Program Line 14 - SET {4aaaac11-bf4b-4043-8abc-c4c9e813088e} = NULL, !- Program Line 15 + SET {71a6ba94-3d69-406f-92cb-2e7ea21023bc} = NULL, !- Program Line 14 + SET {d25e74af-a8b0-4836-b4dd-3ed94badec97} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -14633,85 +14633,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000536}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000537}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000538}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000105}, !- Inlet Port {00000000-0000-0000-0017-000000000106}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000539}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000540}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000098}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000541}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000542}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000099}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000543}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000589}, !- Inlet Port {00000000-0000-0000-0017-000000000591}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000544}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000592}, !- Inlet Port {00000000-0000-0000-0017-000000000590}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000545}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000597}, !- Inlet Port {00000000-0000-0000-0017-000000000598}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000546}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000593}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000547}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000594}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000548}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000587}, !- Inlet Port {00000000-0000-0000-0017-000000000596}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000549}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000595}, !- Inlet Port {00000000-0000-0000-0017-000000000588}; !- Outlet Port @@ -18766,7 +18766,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18775,7 +18775,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18784,7 +18784,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18793,7 +18793,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18802,7 +18802,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18811,7 +18811,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -19592,7 +19592,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000053}, !- Summer Design Day Schedule Name @@ -19600,7 +19600,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index e70f40cb88..5bf49f1604 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14606,7 +14606,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0069-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14614,7 +14614,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0069-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14622,27 +14622,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {dabe2bb7-4db5-4658-87d5-c23386c90f24}<23.9 && {dabe2bb7-4db5-4658-87d5-c23386c90f24}>1.7, !- Program Line 1 - SET {1b0a158b-a410-4c49-b664-81adff0376d2} = 29.4, !- Program Line 2 - SET {e9fdcc32-ed46-49fd-af3d-bbbce25d38ed} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {dabe2bb7-4db5-4658-87d5-c23386c90f24}<23.9 && {dabe2bb7-4db5-4658-87d5-c23386c90f24}>1.7, !- Program Line 4 - SET {1b0a158b-a410-4c49-b664-81adff0376d2} = 29.4, !- Program Line 5 - SET {e9fdcc32-ed46-49fd-af3d-bbbce25d38ed} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {dabe2bb7-4db5-4658-87d5-c23386c90f24}<23.9 && {dabe2bb7-4db5-4658-87d5-c23386c90f24}>1.7, !- Program Line 7 - SET {1b0a158b-a410-4c49-b664-81adff0376d2} = 29.4, !- Program Line 8 - SET {e9fdcc32-ed46-49fd-af3d-bbbce25d38ed} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {dabe2bb7-4db5-4658-87d5-c23386c90f24}<23.9 && {dabe2bb7-4db5-4658-87d5-c23386c90f24}>1.7, !- Program Line 10 - SET {1b0a158b-a410-4c49-b664-81adff0376d2} = 29.4, !- Program Line 11 - SET {e9fdcc32-ed46-49fd-af3d-bbbce25d38ed} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {36024ba0-465e-4538-8744-a6e5b93ad295}<23.9 && {36024ba0-465e-4538-8744-a6e5b93ad295}>1.7, !- Program Line 1 + SET {efafeefd-0e1b-4b95-87fd-a3bba01526f7} = 29.4, !- Program Line 2 + SET {aed97f6c-2cac-4b47-8e1f-687b042aeee4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {36024ba0-465e-4538-8744-a6e5b93ad295}<23.9 && {36024ba0-465e-4538-8744-a6e5b93ad295}>1.7, !- Program Line 4 + SET {efafeefd-0e1b-4b95-87fd-a3bba01526f7} = 29.4, !- Program Line 5 + SET {aed97f6c-2cac-4b47-8e1f-687b042aeee4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {36024ba0-465e-4538-8744-a6e5b93ad295}<23.9 && {36024ba0-465e-4538-8744-a6e5b93ad295}>1.7, !- Program Line 7 + SET {efafeefd-0e1b-4b95-87fd-a3bba01526f7} = 29.4, !- Program Line 8 + SET {aed97f6c-2cac-4b47-8e1f-687b042aeee4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {36024ba0-465e-4538-8744-a6e5b93ad295}<23.9 && {36024ba0-465e-4538-8744-a6e5b93ad295}>1.7, !- Program Line 10 + SET {efafeefd-0e1b-4b95-87fd-a3bba01526f7} = 29.4, !- Program Line 11 + SET {aed97f6c-2cac-4b47-8e1f-687b042aeee4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1b0a158b-a410-4c49-b664-81adff0376d2} = NULL, !- Program Line 14 - SET {e9fdcc32-ed46-49fd-af3d-bbbce25d38ed} = NULL, !- Program Line 15 + SET {efafeefd-0e1b-4b95-87fd-a3bba01526f7} = NULL, !- Program Line 14 + SET {aed97f6c-2cac-4b47-8e1f-687b042aeee4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -19581,85 +19581,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0054-000000000728}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000120}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000729}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000121}, !- Inlet Port {00000000-0000-0000-0019-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000730}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000130}, !- Inlet Port {00000000-0000-0000-0019-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000731}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000122}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000732}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000123}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000733}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000116}, !- Inlet Port {00000000-0000-0000-0019-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000734}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000124}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000735}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000933}, !- Inlet Port {00000000-0000-0000-0019-000000000935}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000736}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000936}, !- Inlet Port {00000000-0000-0000-0019-000000000934}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000737}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000941}, !- Inlet Port {00000000-0000-0000-0019-000000000942}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000738}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000937}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000739}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000938}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000740}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000931}, !- Inlet Port {00000000-0000-0000-0019-000000000940}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000741}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000939}, !- Inlet Port {00000000-0000-0000-0019-000000000932}; !- Outlet Port @@ -23795,7 +23795,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23804,7 +23804,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23813,7 +23813,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23822,7 +23822,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23831,7 +23831,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23840,7 +23840,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24621,7 +24621,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000053}, !- Summer Design Day Schedule Name @@ -24629,7 +24629,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index f679e67d03..94cfd871de 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14940,7 +14940,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0069-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14948,7 +14948,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0069-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14956,27 +14956,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {71d13b7c-ba04-448b-9d52-de22773be0ab}<23.9 && {71d13b7c-ba04-448b-9d52-de22773be0ab}>1.7, !- Program Line 1 - SET {877df344-0fe8-4ad1-a862-4bcec19ee856} = 29.4, !- Program Line 2 - SET {9c5f2523-4bd6-46b0-adbb-7ec4f5a3fed8} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {71d13b7c-ba04-448b-9d52-de22773be0ab}<23.9 && {71d13b7c-ba04-448b-9d52-de22773be0ab}>1.7, !- Program Line 4 - SET {877df344-0fe8-4ad1-a862-4bcec19ee856} = 29.4, !- Program Line 5 - SET {9c5f2523-4bd6-46b0-adbb-7ec4f5a3fed8} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {71d13b7c-ba04-448b-9d52-de22773be0ab}<23.9 && {71d13b7c-ba04-448b-9d52-de22773be0ab}>1.7, !- Program Line 7 - SET {877df344-0fe8-4ad1-a862-4bcec19ee856} = 29.4, !- Program Line 8 - SET {9c5f2523-4bd6-46b0-adbb-7ec4f5a3fed8} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {71d13b7c-ba04-448b-9d52-de22773be0ab}<23.9 && {71d13b7c-ba04-448b-9d52-de22773be0ab}>1.7, !- Program Line 10 - SET {877df344-0fe8-4ad1-a862-4bcec19ee856} = 29.4, !- Program Line 11 - SET {9c5f2523-4bd6-46b0-adbb-7ec4f5a3fed8} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {92619716-3d6b-4b3a-9be5-0bf69e1bbe15}<23.9 && {92619716-3d6b-4b3a-9be5-0bf69e1bbe15}>1.7, !- Program Line 1 + SET {d7cfaef5-7db5-438b-8a7e-9325db570ff2} = 29.4, !- Program Line 2 + SET {69de9d8a-3aa6-4e61-a27f-78bba61c359a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {92619716-3d6b-4b3a-9be5-0bf69e1bbe15}<23.9 && {92619716-3d6b-4b3a-9be5-0bf69e1bbe15}>1.7, !- Program Line 4 + SET {d7cfaef5-7db5-438b-8a7e-9325db570ff2} = 29.4, !- Program Line 5 + SET {69de9d8a-3aa6-4e61-a27f-78bba61c359a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {92619716-3d6b-4b3a-9be5-0bf69e1bbe15}<23.9 && {92619716-3d6b-4b3a-9be5-0bf69e1bbe15}>1.7, !- Program Line 7 + SET {d7cfaef5-7db5-438b-8a7e-9325db570ff2} = 29.4, !- Program Line 8 + SET {69de9d8a-3aa6-4e61-a27f-78bba61c359a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {92619716-3d6b-4b3a-9be5-0bf69e1bbe15}<23.9 && {92619716-3d6b-4b3a-9be5-0bf69e1bbe15}>1.7, !- Program Line 10 + SET {d7cfaef5-7db5-438b-8a7e-9325db570ff2} = 29.4, !- Program Line 11 + SET {69de9d8a-3aa6-4e61-a27f-78bba61c359a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {877df344-0fe8-4ad1-a862-4bcec19ee856} = NULL, !- Program Line 14 - SET {9c5f2523-4bd6-46b0-adbb-7ec4f5a3fed8} = NULL, !- Program Line 15 + SET {d7cfaef5-7db5-438b-8a7e-9325db570ff2} = NULL, !- Program Line 14 + SET {69de9d8a-3aa6-4e61-a27f-78bba61c359a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -19915,85 +19915,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0054-000000000728}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000120}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000729}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000121}, !- Inlet Port {00000000-0000-0000-0019-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000730}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000130}, !- Inlet Port {00000000-0000-0000-0019-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000731}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000122}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000732}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000123}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000733}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000116}, !- Inlet Port {00000000-0000-0000-0019-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000734}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000124}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000735}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000933}, !- Inlet Port {00000000-0000-0000-0019-000000000935}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000736}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000936}, !- Inlet Port {00000000-0000-0000-0019-000000000934}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000737}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000941}, !- Inlet Port {00000000-0000-0000-0019-000000000942}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000738}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000937}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000739}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000938}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000740}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000931}, !- Inlet Port {00000000-0000-0000-0019-000000000940}; !- Outlet Port OS:Node, {00000000-0000-0000-0054-000000000741}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000939}, !- Inlet Port {00000000-0000-0000-0019-000000000932}; !- Outlet Port @@ -24129,7 +24129,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24138,7 +24138,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24147,7 +24147,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24156,7 +24156,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24165,7 +24165,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24174,7 +24174,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24955,7 +24955,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000053}, !- Summer Design Day Schedule Name @@ -24963,7 +24963,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 927acc8636..c240b26f95 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10532,7 +10532,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10540,7 +10540,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10548,27 +10548,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {dd8e052a-9311-41ef-93ce-e538c9bdfd2b}<23.9 && {dd8e052a-9311-41ef-93ce-e538c9bdfd2b}>1.7, !- Program Line 1 - SET {408a89ed-09d3-42b9-954b-b76ac5e3f3b2} = 29.4, !- Program Line 2 - SET {8531bac7-3676-4e0e-b944-60a86b7bb4b0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {dd8e052a-9311-41ef-93ce-e538c9bdfd2b}<23.9 && {dd8e052a-9311-41ef-93ce-e538c9bdfd2b}>1.7, !- Program Line 4 - SET {408a89ed-09d3-42b9-954b-b76ac5e3f3b2} = 29.4, !- Program Line 5 - SET {8531bac7-3676-4e0e-b944-60a86b7bb4b0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {dd8e052a-9311-41ef-93ce-e538c9bdfd2b}<23.9 && {dd8e052a-9311-41ef-93ce-e538c9bdfd2b}>1.7, !- Program Line 7 - SET {408a89ed-09d3-42b9-954b-b76ac5e3f3b2} = 29.4, !- Program Line 8 - SET {8531bac7-3676-4e0e-b944-60a86b7bb4b0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {dd8e052a-9311-41ef-93ce-e538c9bdfd2b}<23.9 && {dd8e052a-9311-41ef-93ce-e538c9bdfd2b}>1.7, !- Program Line 10 - SET {408a89ed-09d3-42b9-954b-b76ac5e3f3b2} = 29.4, !- Program Line 11 - SET {8531bac7-3676-4e0e-b944-60a86b7bb4b0} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7a3517ab-a824-4d65-a734-4af9c1f9ef31}<23.9 && {7a3517ab-a824-4d65-a734-4af9c1f9ef31}>1.7, !- Program Line 1 + SET {33224533-a188-4112-8c3c-8d0b8e44c1d1} = 29.4, !- Program Line 2 + SET {4a87f5f4-93e5-4d24-8c60-959c68be577c} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7a3517ab-a824-4d65-a734-4af9c1f9ef31}<23.9 && {7a3517ab-a824-4d65-a734-4af9c1f9ef31}>1.7, !- Program Line 4 + SET {33224533-a188-4112-8c3c-8d0b8e44c1d1} = 29.4, !- Program Line 5 + SET {4a87f5f4-93e5-4d24-8c60-959c68be577c} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7a3517ab-a824-4d65-a734-4af9c1f9ef31}<23.9 && {7a3517ab-a824-4d65-a734-4af9c1f9ef31}>1.7, !- Program Line 7 + SET {33224533-a188-4112-8c3c-8d0b8e44c1d1} = 29.4, !- Program Line 8 + SET {4a87f5f4-93e5-4d24-8c60-959c68be577c} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7a3517ab-a824-4d65-a734-4af9c1f9ef31}<23.9 && {7a3517ab-a824-4d65-a734-4af9c1f9ef31}>1.7, !- Program Line 10 + SET {33224533-a188-4112-8c3c-8d0b8e44c1d1} = 29.4, !- Program Line 11 + SET {4a87f5f4-93e5-4d24-8c60-959c68be577c} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {408a89ed-09d3-42b9-954b-b76ac5e3f3b2} = NULL, !- Program Line 14 - SET {8531bac7-3676-4e0e-b944-60a86b7bb4b0} = NULL, !- Program Line 15 + SET {33224533-a188-4112-8c3c-8d0b8e44c1d1} = NULL, !- Program Line 14 + SET {4a87f5f4-93e5-4d24-8c60-959c68be577c} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -10678,7 +10678,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10704,7 +10704,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14407,109 +14407,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000536}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000537}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000538}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000539}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000001001}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000540}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000001006}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000541}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000542}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000097}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000543}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000001002}, !- Inlet Port {00000000-0000-0000-0017-000000001003}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000544}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000001004}, !- Inlet Port {00000000-0000-0000-0017-000000001005}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000545}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000587}, !- Inlet Port {00000000-0000-0000-0017-000000000589}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000546}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000590}, !- Inlet Port {00000000-0000-0000-0017-000000000588}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000547}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000593}, !- Inlet Port {00000000-0000-0000-0017-000000000594}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000548}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000001007}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000549}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000001012}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000550}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000585}, !- Inlet Port {00000000-0000-0000-0017-000000000592}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000551}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000591}, !- Inlet Port {00000000-0000-0000-0017-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000552}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000001008}, !- Inlet Port {00000000-0000-0000-0017-000000001009}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000553}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000001010}, !- Inlet Port {00000000-0000-0000-0017-000000001011}; !- Outlet Port @@ -18564,7 +18564,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18573,7 +18573,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18582,7 +18582,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18591,7 +18591,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18600,7 +18600,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18609,7 +18609,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -19390,7 +19390,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000053}, !- Summer Design Day Schedule Name @@ -19398,7 +19398,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 8e355dfd78..9e54278096 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10866,7 +10866,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10874,7 +10874,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10882,27 +10882,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {dbe15ac2-be55-41a2-b68a-76bc269adf47}<23.9 && {dbe15ac2-be55-41a2-b68a-76bc269adf47}>1.7, !- Program Line 1 - SET {4625ac05-577c-4e85-9232-4b35d4f05740} = 29.4, !- Program Line 2 - SET {9cd05909-6182-4b8b-bcd3-416d25cea3e2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {dbe15ac2-be55-41a2-b68a-76bc269adf47}<23.9 && {dbe15ac2-be55-41a2-b68a-76bc269adf47}>1.7, !- Program Line 4 - SET {4625ac05-577c-4e85-9232-4b35d4f05740} = 29.4, !- Program Line 5 - SET {9cd05909-6182-4b8b-bcd3-416d25cea3e2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {dbe15ac2-be55-41a2-b68a-76bc269adf47}<23.9 && {dbe15ac2-be55-41a2-b68a-76bc269adf47}>1.7, !- Program Line 7 - SET {4625ac05-577c-4e85-9232-4b35d4f05740} = 29.4, !- Program Line 8 - SET {9cd05909-6182-4b8b-bcd3-416d25cea3e2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {dbe15ac2-be55-41a2-b68a-76bc269adf47}<23.9 && {dbe15ac2-be55-41a2-b68a-76bc269adf47}>1.7, !- Program Line 10 - SET {4625ac05-577c-4e85-9232-4b35d4f05740} = 29.4, !- Program Line 11 - SET {9cd05909-6182-4b8b-bcd3-416d25cea3e2} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {769669ad-132e-4366-a57a-be7285a9e721}<23.9 && {769669ad-132e-4366-a57a-be7285a9e721}>1.7, !- Program Line 1 + SET {52844485-878a-41b0-914a-b35386579694} = 29.4, !- Program Line 2 + SET {4dd206b1-2d58-497d-b9d0-3ca0aa1aac65} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {769669ad-132e-4366-a57a-be7285a9e721}<23.9 && {769669ad-132e-4366-a57a-be7285a9e721}>1.7, !- Program Line 4 + SET {52844485-878a-41b0-914a-b35386579694} = 29.4, !- Program Line 5 + SET {4dd206b1-2d58-497d-b9d0-3ca0aa1aac65} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {769669ad-132e-4366-a57a-be7285a9e721}<23.9 && {769669ad-132e-4366-a57a-be7285a9e721}>1.7, !- Program Line 7 + SET {52844485-878a-41b0-914a-b35386579694} = 29.4, !- Program Line 8 + SET {4dd206b1-2d58-497d-b9d0-3ca0aa1aac65} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {769669ad-132e-4366-a57a-be7285a9e721}<23.9 && {769669ad-132e-4366-a57a-be7285a9e721}>1.7, !- Program Line 10 + SET {52844485-878a-41b0-914a-b35386579694} = 29.4, !- Program Line 11 + SET {4dd206b1-2d58-497d-b9d0-3ca0aa1aac65} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4625ac05-577c-4e85-9232-4b35d4f05740} = NULL, !- Program Line 14 - SET {9cd05909-6182-4b8b-bcd3-416d25cea3e2} = NULL, !- Program Line 15 + SET {52844485-878a-41b0-914a-b35386579694} = NULL, !- Program Line 14 + SET {4dd206b1-2d58-497d-b9d0-3ca0aa1aac65} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -11012,7 +11012,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11038,7 +11038,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14741,109 +14741,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000536}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000537}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000538}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000539}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000001001}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000540}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000001006}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000541}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000542}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000097}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000543}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000001002}, !- Inlet Port {00000000-0000-0000-0017-000000001003}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000544}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000001004}, !- Inlet Port {00000000-0000-0000-0017-000000001005}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000545}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000587}, !- Inlet Port {00000000-0000-0000-0017-000000000589}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000546}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000590}, !- Inlet Port {00000000-0000-0000-0017-000000000588}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000547}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000593}, !- Inlet Port {00000000-0000-0000-0017-000000000594}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000548}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000001007}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000549}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000001012}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000550}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000585}, !- Inlet Port {00000000-0000-0000-0017-000000000592}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000551}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000591}, !- Inlet Port {00000000-0000-0000-0017-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000552}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000001008}, !- Inlet Port {00000000-0000-0000-0017-000000001009}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000553}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000001010}, !- Inlet Port {00000000-0000-0000-0017-000000001011}; !- Outlet Port @@ -18898,7 +18898,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18907,7 +18907,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18916,7 +18916,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18925,7 +18925,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18934,7 +18934,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18943,7 +18943,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -19724,7 +19724,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000053}, !- Summer Design Day Schedule Name @@ -19732,7 +19732,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 0c22f5e48c..10a443a3d3 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0070-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0070-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14662,7 +14662,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0070-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14670,7 +14670,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0070-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14678,27 +14678,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d026ad3f-bb2a-4c05-878f-366457807b84}<23.9 && {d026ad3f-bb2a-4c05-878f-366457807b84}>1.7, !- Program Line 1 - SET {8150efeb-c508-4f62-9acf-60300ef0df40} = 29.4, !- Program Line 2 - SET {49edf818-5e19-4d24-b087-25fc6a011ee9} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d026ad3f-bb2a-4c05-878f-366457807b84}<23.9 && {d026ad3f-bb2a-4c05-878f-366457807b84}>1.7, !- Program Line 4 - SET {8150efeb-c508-4f62-9acf-60300ef0df40} = 29.4, !- Program Line 5 - SET {49edf818-5e19-4d24-b087-25fc6a011ee9} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d026ad3f-bb2a-4c05-878f-366457807b84}<23.9 && {d026ad3f-bb2a-4c05-878f-366457807b84}>1.7, !- Program Line 7 - SET {8150efeb-c508-4f62-9acf-60300ef0df40} = 29.4, !- Program Line 8 - SET {49edf818-5e19-4d24-b087-25fc6a011ee9} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d026ad3f-bb2a-4c05-878f-366457807b84}<23.9 && {d026ad3f-bb2a-4c05-878f-366457807b84}>1.7, !- Program Line 10 - SET {8150efeb-c508-4f62-9acf-60300ef0df40} = 29.4, !- Program Line 11 - SET {49edf818-5e19-4d24-b087-25fc6a011ee9} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6ad950a8-1127-4638-81da-d0f9416a1873}<23.9 && {6ad950a8-1127-4638-81da-d0f9416a1873}>1.7, !- Program Line 1 + SET {8accbbda-da63-46e0-8acf-fd35cffc2a01} = 29.4, !- Program Line 2 + SET {690d4a4a-a7ef-4d42-b888-261bbb8aa280} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6ad950a8-1127-4638-81da-d0f9416a1873}<23.9 && {6ad950a8-1127-4638-81da-d0f9416a1873}>1.7, !- Program Line 4 + SET {8accbbda-da63-46e0-8acf-fd35cffc2a01} = 29.4, !- Program Line 5 + SET {690d4a4a-a7ef-4d42-b888-261bbb8aa280} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6ad950a8-1127-4638-81da-d0f9416a1873}<23.9 && {6ad950a8-1127-4638-81da-d0f9416a1873}>1.7, !- Program Line 7 + SET {8accbbda-da63-46e0-8acf-fd35cffc2a01} = 29.4, !- Program Line 8 + SET {690d4a4a-a7ef-4d42-b888-261bbb8aa280} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6ad950a8-1127-4638-81da-d0f9416a1873}<23.9 && {6ad950a8-1127-4638-81da-d0f9416a1873}>1.7, !- Program Line 10 + SET {8accbbda-da63-46e0-8acf-fd35cffc2a01} = 29.4, !- Program Line 11 + SET {690d4a4a-a7ef-4d42-b888-261bbb8aa280} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8150efeb-c508-4f62-9acf-60300ef0df40} = NULL, !- Program Line 14 - SET {49edf818-5e19-4d24-b087-25fc6a011ee9} = NULL, !- Program Line 15 + SET {8accbbda-da63-46e0-8acf-fd35cffc2a01} = NULL, !- Program Line 14 + SET {690d4a4a-a7ef-4d42-b888-261bbb8aa280} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -14808,7 +14808,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0048-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0067-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14834,7 +14834,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0048-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0067-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -19689,109 +19689,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0055-000000000728}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000120}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000729}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000121}, !- Inlet Port {00000000-0000-0000-0019-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000730}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000128}, !- Inlet Port {00000000-0000-0000-0019-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000731}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001385}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000732}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001390}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000733}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000116}, !- Inlet Port {00000000-0000-0000-0019-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000734}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000122}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000735}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001386}, !- Inlet Port {00000000-0000-0000-0019-000000001387}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000736}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001388}, !- Inlet Port {00000000-0000-0000-0019-000000001389}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000737}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000931}, !- Inlet Port {00000000-0000-0000-0019-000000000933}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000738}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000934}, !- Inlet Port {00000000-0000-0000-0019-000000000932}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000739}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000937}, !- Inlet Port {00000000-0000-0000-0019-000000000938}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000740}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001391}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000741}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001396}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000742}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000929}, !- Inlet Port {00000000-0000-0000-0019-000000000936}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000743}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000935}, !- Inlet Port {00000000-0000-0000-0019-000000000930}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000744}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001392}, !- Inlet Port {00000000-0000-0000-0019-000000001393}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000745}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001394}, !- Inlet Port {00000000-0000-0000-0019-000000001395}; !- Outlet Port @@ -23927,7 +23927,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23936,7 +23936,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23945,7 +23945,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23954,7 +23954,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23963,7 +23963,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23972,7 +23972,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24753,7 +24753,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0070-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0068-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0068-000000000053}, !- Summer Design Day Schedule Name @@ -24761,7 +24761,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0070-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0068-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0068-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 106c5dbb63..64ece6decb 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0070-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0070-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14996,7 +14996,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0070-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -15004,7 +15004,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0070-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -15012,27 +15012,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f0e942d5-593a-4291-b9dc-c862ddde4f32}<23.9 && {f0e942d5-593a-4291-b9dc-c862ddde4f32}>1.7, !- Program Line 1 - SET {89a6d939-672d-4118-b772-631fa50ea2d8} = 29.4, !- Program Line 2 - SET {c8f4831c-63b1-4c22-b13e-880f2e9c05a2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f0e942d5-593a-4291-b9dc-c862ddde4f32}<23.9 && {f0e942d5-593a-4291-b9dc-c862ddde4f32}>1.7, !- Program Line 4 - SET {89a6d939-672d-4118-b772-631fa50ea2d8} = 29.4, !- Program Line 5 - SET {c8f4831c-63b1-4c22-b13e-880f2e9c05a2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f0e942d5-593a-4291-b9dc-c862ddde4f32}<23.9 && {f0e942d5-593a-4291-b9dc-c862ddde4f32}>1.7, !- Program Line 7 - SET {89a6d939-672d-4118-b772-631fa50ea2d8} = 29.4, !- Program Line 8 - SET {c8f4831c-63b1-4c22-b13e-880f2e9c05a2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f0e942d5-593a-4291-b9dc-c862ddde4f32}<23.9 && {f0e942d5-593a-4291-b9dc-c862ddde4f32}>1.7, !- Program Line 10 - SET {89a6d939-672d-4118-b772-631fa50ea2d8} = 29.4, !- Program Line 11 - SET {c8f4831c-63b1-4c22-b13e-880f2e9c05a2} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {dae87b8f-b0f0-4904-8253-77bd1f429269}<23.9 && {dae87b8f-b0f0-4904-8253-77bd1f429269}>1.7, !- Program Line 1 + SET {8794aef3-61d6-4e42-869d-72d1298057b8} = 29.4, !- Program Line 2 + SET {c900134b-3064-4efe-bff5-17ed4aa450fb} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {dae87b8f-b0f0-4904-8253-77bd1f429269}<23.9 && {dae87b8f-b0f0-4904-8253-77bd1f429269}>1.7, !- Program Line 4 + SET {8794aef3-61d6-4e42-869d-72d1298057b8} = 29.4, !- Program Line 5 + SET {c900134b-3064-4efe-bff5-17ed4aa450fb} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {dae87b8f-b0f0-4904-8253-77bd1f429269}<23.9 && {dae87b8f-b0f0-4904-8253-77bd1f429269}>1.7, !- Program Line 7 + SET {8794aef3-61d6-4e42-869d-72d1298057b8} = 29.4, !- Program Line 8 + SET {c900134b-3064-4efe-bff5-17ed4aa450fb} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {dae87b8f-b0f0-4904-8253-77bd1f429269}<23.9 && {dae87b8f-b0f0-4904-8253-77bd1f429269}>1.7, !- Program Line 10 + SET {8794aef3-61d6-4e42-869d-72d1298057b8} = 29.4, !- Program Line 11 + SET {c900134b-3064-4efe-bff5-17ed4aa450fb} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {89a6d939-672d-4118-b772-631fa50ea2d8} = NULL, !- Program Line 14 - SET {c8f4831c-63b1-4c22-b13e-880f2e9c05a2} = NULL, !- Program Line 15 + SET {8794aef3-61d6-4e42-869d-72d1298057b8} = NULL, !- Program Line 14 + SET {c900134b-3064-4efe-bff5-17ed4aa450fb} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -15142,7 +15142,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0048-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0067-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15168,7 +15168,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0048-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0067-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -20023,109 +20023,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0055-000000000728}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000120}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000729}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000121}, !- Inlet Port {00000000-0000-0000-0019-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000730}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000128}, !- Inlet Port {00000000-0000-0000-0019-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000731}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001385}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000732}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001390}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000733}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000116}, !- Inlet Port {00000000-0000-0000-0019-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000734}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000122}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000735}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001386}, !- Inlet Port {00000000-0000-0000-0019-000000001387}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000736}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001388}, !- Inlet Port {00000000-0000-0000-0019-000000001389}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000737}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000931}, !- Inlet Port {00000000-0000-0000-0019-000000000933}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000738}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000934}, !- Inlet Port {00000000-0000-0000-0019-000000000932}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000739}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000937}, !- Inlet Port {00000000-0000-0000-0019-000000000938}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000740}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001391}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000741}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001396}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000742}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000929}, !- Inlet Port {00000000-0000-0000-0019-000000000936}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000743}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000935}, !- Inlet Port {00000000-0000-0000-0019-000000000930}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000744}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001392}, !- Inlet Port {00000000-0000-0000-0019-000000001393}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000745}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001394}, !- Inlet Port {00000000-0000-0000-0019-000000001395}; !- Outlet Port @@ -24261,7 +24261,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24270,7 +24270,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24279,7 +24279,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24288,7 +24288,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24297,7 +24297,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24306,7 +24306,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25087,7 +25087,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0070-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0068-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0068-000000000053}, !- Summer Design Day Schedule Name @@ -25095,7 +25095,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0070-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0068-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0068-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 79c65b9760..816e58e1f0 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10532,7 +10532,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10540,7 +10540,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10548,27 +10548,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d9dec427-4ee4-471c-92f6-06c2eb59f8a3}<23.9 && {d9dec427-4ee4-471c-92f6-06c2eb59f8a3}>1.7, !- Program Line 1 - SET {c734a720-37a7-439a-976f-f47119c5312e} = 29.4, !- Program Line 2 - SET {dbc53ea6-56c3-45f3-a687-614cfbd4c5ca} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d9dec427-4ee4-471c-92f6-06c2eb59f8a3}<23.9 && {d9dec427-4ee4-471c-92f6-06c2eb59f8a3}>1.7, !- Program Line 4 - SET {c734a720-37a7-439a-976f-f47119c5312e} = 29.4, !- Program Line 5 - SET {dbc53ea6-56c3-45f3-a687-614cfbd4c5ca} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d9dec427-4ee4-471c-92f6-06c2eb59f8a3}<23.9 && {d9dec427-4ee4-471c-92f6-06c2eb59f8a3}>1.7, !- Program Line 7 - SET {c734a720-37a7-439a-976f-f47119c5312e} = 29.4, !- Program Line 8 - SET {dbc53ea6-56c3-45f3-a687-614cfbd4c5ca} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d9dec427-4ee4-471c-92f6-06c2eb59f8a3}<23.9 && {d9dec427-4ee4-471c-92f6-06c2eb59f8a3}>1.7, !- Program Line 10 - SET {c734a720-37a7-439a-976f-f47119c5312e} = 29.4, !- Program Line 11 - SET {dbc53ea6-56c3-45f3-a687-614cfbd4c5ca} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9938d5a3-ff7b-4aee-badf-8de2d4fcf3ef}<23.9 && {9938d5a3-ff7b-4aee-badf-8de2d4fcf3ef}>1.7, !- Program Line 1 + SET {d625ede2-eadc-434e-8219-c21dd40efe7f} = 29.4, !- Program Line 2 + SET {e110cb94-2bd0-4642-afd7-cdf86fc17b1f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9938d5a3-ff7b-4aee-badf-8de2d4fcf3ef}<23.9 && {9938d5a3-ff7b-4aee-badf-8de2d4fcf3ef}>1.7, !- Program Line 4 + SET {d625ede2-eadc-434e-8219-c21dd40efe7f} = 29.4, !- Program Line 5 + SET {e110cb94-2bd0-4642-afd7-cdf86fc17b1f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9938d5a3-ff7b-4aee-badf-8de2d4fcf3ef}<23.9 && {9938d5a3-ff7b-4aee-badf-8de2d4fcf3ef}>1.7, !- Program Line 7 + SET {d625ede2-eadc-434e-8219-c21dd40efe7f} = 29.4, !- Program Line 8 + SET {e110cb94-2bd0-4642-afd7-cdf86fc17b1f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9938d5a3-ff7b-4aee-badf-8de2d4fcf3ef}<23.9 && {9938d5a3-ff7b-4aee-badf-8de2d4fcf3ef}>1.7, !- Program Line 10 + SET {d625ede2-eadc-434e-8219-c21dd40efe7f} = 29.4, !- Program Line 11 + SET {e110cb94-2bd0-4642-afd7-cdf86fc17b1f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c734a720-37a7-439a-976f-f47119c5312e} = NULL, !- Program Line 14 - SET {dbc53ea6-56c3-45f3-a687-614cfbd4c5ca} = NULL, !- Program Line 15 + SET {d625ede2-eadc-434e-8219-c21dd40efe7f} = NULL, !- Program Line 14 + SET {e110cb94-2bd0-4642-afd7-cdf86fc17b1f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -10678,7 +10678,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10704,7 +10704,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14407,109 +14407,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000536}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000537}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000538}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000539}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000001001}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000540}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000001006}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000541}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000542}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000097}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000543}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000001002}, !- Inlet Port {00000000-0000-0000-0017-000000001003}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000544}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000001004}, !- Inlet Port {00000000-0000-0000-0017-000000001005}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000545}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000587}, !- Inlet Port {00000000-0000-0000-0017-000000000589}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000546}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000590}, !- Inlet Port {00000000-0000-0000-0017-000000000588}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000547}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000593}, !- Inlet Port {00000000-0000-0000-0017-000000000594}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000548}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000001007}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000549}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000001012}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000550}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000585}, !- Inlet Port {00000000-0000-0000-0017-000000000592}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000551}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000591}, !- Inlet Port {00000000-0000-0000-0017-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000552}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000001008}, !- Inlet Port {00000000-0000-0000-0017-000000001009}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000553}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000001010}, !- Inlet Port {00000000-0000-0000-0017-000000001011}; !- Outlet Port @@ -18564,7 +18564,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18573,7 +18573,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18582,7 +18582,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18591,7 +18591,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18600,7 +18600,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18609,7 +18609,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -19390,7 +19390,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000053}, !- Summer Design Day Schedule Name @@ -19398,7 +19398,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 1e8ffabfa2..330da502ce 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10866,7 +10866,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10874,7 +10874,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10882,27 +10882,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4170446a-c9bf-4667-9f7b-46e2e5196996}<23.9 && {4170446a-c9bf-4667-9f7b-46e2e5196996}>1.7, !- Program Line 1 - SET {55449534-3e4a-4737-8775-6a1c9bca87e5} = 29.4, !- Program Line 2 - SET {8f345832-8b9b-45ff-b6df-e7327c33cae2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4170446a-c9bf-4667-9f7b-46e2e5196996}<23.9 && {4170446a-c9bf-4667-9f7b-46e2e5196996}>1.7, !- Program Line 4 - SET {55449534-3e4a-4737-8775-6a1c9bca87e5} = 29.4, !- Program Line 5 - SET {8f345832-8b9b-45ff-b6df-e7327c33cae2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4170446a-c9bf-4667-9f7b-46e2e5196996}<23.9 && {4170446a-c9bf-4667-9f7b-46e2e5196996}>1.7, !- Program Line 7 - SET {55449534-3e4a-4737-8775-6a1c9bca87e5} = 29.4, !- Program Line 8 - SET {8f345832-8b9b-45ff-b6df-e7327c33cae2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4170446a-c9bf-4667-9f7b-46e2e5196996}<23.9 && {4170446a-c9bf-4667-9f7b-46e2e5196996}>1.7, !- Program Line 10 - SET {55449534-3e4a-4737-8775-6a1c9bca87e5} = 29.4, !- Program Line 11 - SET {8f345832-8b9b-45ff-b6df-e7327c33cae2} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6240b22c-e902-4fc4-b4c7-860d0f8d4cb2}<23.9 && {6240b22c-e902-4fc4-b4c7-860d0f8d4cb2}>1.7, !- Program Line 1 + SET {9c5e2265-a2d5-4455-85bc-bd267e8ee782} = 29.4, !- Program Line 2 + SET {ad2b513f-fff5-4cdb-b6b2-d7daa59250fc} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6240b22c-e902-4fc4-b4c7-860d0f8d4cb2}<23.9 && {6240b22c-e902-4fc4-b4c7-860d0f8d4cb2}>1.7, !- Program Line 4 + SET {9c5e2265-a2d5-4455-85bc-bd267e8ee782} = 29.4, !- Program Line 5 + SET {ad2b513f-fff5-4cdb-b6b2-d7daa59250fc} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6240b22c-e902-4fc4-b4c7-860d0f8d4cb2}<23.9 && {6240b22c-e902-4fc4-b4c7-860d0f8d4cb2}>1.7, !- Program Line 7 + SET {9c5e2265-a2d5-4455-85bc-bd267e8ee782} = 29.4, !- Program Line 8 + SET {ad2b513f-fff5-4cdb-b6b2-d7daa59250fc} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6240b22c-e902-4fc4-b4c7-860d0f8d4cb2}<23.9 && {6240b22c-e902-4fc4-b4c7-860d0f8d4cb2}>1.7, !- Program Line 10 + SET {9c5e2265-a2d5-4455-85bc-bd267e8ee782} = 29.4, !- Program Line 11 + SET {ad2b513f-fff5-4cdb-b6b2-d7daa59250fc} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {55449534-3e4a-4737-8775-6a1c9bca87e5} = NULL, !- Program Line 14 - SET {8f345832-8b9b-45ff-b6df-e7327c33cae2} = NULL, !- Program Line 15 + SET {9c5e2265-a2d5-4455-85bc-bd267e8ee782} = NULL, !- Program Line 14 + SET {ad2b513f-fff5-4cdb-b6b2-d7daa59250fc} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -11012,7 +11012,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11038,7 +11038,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14741,109 +14741,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000536}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000537}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000538}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000539}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000001001}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000540}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000001006}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000541}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000542}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000097}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000543}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000001002}, !- Inlet Port {00000000-0000-0000-0017-000000001003}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000544}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000001004}, !- Inlet Port {00000000-0000-0000-0017-000000001005}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000545}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000587}, !- Inlet Port {00000000-0000-0000-0017-000000000589}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000546}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000590}, !- Inlet Port {00000000-0000-0000-0017-000000000588}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000547}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000593}, !- Inlet Port {00000000-0000-0000-0017-000000000594}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000548}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000001007}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000549}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000001012}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000550}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000585}, !- Inlet Port {00000000-0000-0000-0017-000000000592}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000551}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000591}, !- Inlet Port {00000000-0000-0000-0017-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000552}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000001008}, !- Inlet Port {00000000-0000-0000-0017-000000001009}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000553}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000001010}, !- Inlet Port {00000000-0000-0000-0017-000000001011}; !- Outlet Port @@ -18898,7 +18898,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18907,7 +18907,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18916,7 +18916,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18925,7 +18925,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18934,7 +18934,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18943,7 +18943,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -19724,7 +19724,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000053}, !- Summer Design Day Schedule Name @@ -19732,7 +19732,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index a195799750..dae00084b7 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0070-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0070-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14662,7 +14662,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0070-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14670,7 +14670,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0070-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14678,27 +14678,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d6bef164-3637-4a5f-bca4-f0acffd74dde}<23.9 && {d6bef164-3637-4a5f-bca4-f0acffd74dde}>1.7, !- Program Line 1 - SET {f97e607e-c7ee-4f53-8f25-94865dd78a30} = 29.4, !- Program Line 2 - SET {62afa4c6-d03c-440d-bc88-9fe3a6f5a8e1} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d6bef164-3637-4a5f-bca4-f0acffd74dde}<23.9 && {d6bef164-3637-4a5f-bca4-f0acffd74dde}>1.7, !- Program Line 4 - SET {f97e607e-c7ee-4f53-8f25-94865dd78a30} = 29.4, !- Program Line 5 - SET {62afa4c6-d03c-440d-bc88-9fe3a6f5a8e1} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d6bef164-3637-4a5f-bca4-f0acffd74dde}<23.9 && {d6bef164-3637-4a5f-bca4-f0acffd74dde}>1.7, !- Program Line 7 - SET {f97e607e-c7ee-4f53-8f25-94865dd78a30} = 29.4, !- Program Line 8 - SET {62afa4c6-d03c-440d-bc88-9fe3a6f5a8e1} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d6bef164-3637-4a5f-bca4-f0acffd74dde}<23.9 && {d6bef164-3637-4a5f-bca4-f0acffd74dde}>1.7, !- Program Line 10 - SET {f97e607e-c7ee-4f53-8f25-94865dd78a30} = 29.4, !- Program Line 11 - SET {62afa4c6-d03c-440d-bc88-9fe3a6f5a8e1} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4683d022-6ebf-4986-913d-461acdf5ee2a}<23.9 && {4683d022-6ebf-4986-913d-461acdf5ee2a}>1.7, !- Program Line 1 + SET {609b33b1-339f-437d-974c-3b9a0748796b} = 29.4, !- Program Line 2 + SET {c0c6e49e-128e-4fff-b5ff-6131b0d2a6ef} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4683d022-6ebf-4986-913d-461acdf5ee2a}<23.9 && {4683d022-6ebf-4986-913d-461acdf5ee2a}>1.7, !- Program Line 4 + SET {609b33b1-339f-437d-974c-3b9a0748796b} = 29.4, !- Program Line 5 + SET {c0c6e49e-128e-4fff-b5ff-6131b0d2a6ef} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4683d022-6ebf-4986-913d-461acdf5ee2a}<23.9 && {4683d022-6ebf-4986-913d-461acdf5ee2a}>1.7, !- Program Line 7 + SET {609b33b1-339f-437d-974c-3b9a0748796b} = 29.4, !- Program Line 8 + SET {c0c6e49e-128e-4fff-b5ff-6131b0d2a6ef} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4683d022-6ebf-4986-913d-461acdf5ee2a}<23.9 && {4683d022-6ebf-4986-913d-461acdf5ee2a}>1.7, !- Program Line 10 + SET {609b33b1-339f-437d-974c-3b9a0748796b} = 29.4, !- Program Line 11 + SET {c0c6e49e-128e-4fff-b5ff-6131b0d2a6ef} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f97e607e-c7ee-4f53-8f25-94865dd78a30} = NULL, !- Program Line 14 - SET {62afa4c6-d03c-440d-bc88-9fe3a6f5a8e1} = NULL, !- Program Line 15 + SET {609b33b1-339f-437d-974c-3b9a0748796b} = NULL, !- Program Line 14 + SET {c0c6e49e-128e-4fff-b5ff-6131b0d2a6ef} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -14808,7 +14808,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0048-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0067-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14834,7 +14834,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0048-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0067-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -19689,109 +19689,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0055-000000000728}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000120}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000729}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000121}, !- Inlet Port {00000000-0000-0000-0019-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000730}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000128}, !- Inlet Port {00000000-0000-0000-0019-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000731}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001385}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000732}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001390}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000733}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000116}, !- Inlet Port {00000000-0000-0000-0019-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000734}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000122}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000735}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001386}, !- Inlet Port {00000000-0000-0000-0019-000000001387}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000736}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001388}, !- Inlet Port {00000000-0000-0000-0019-000000001389}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000737}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000931}, !- Inlet Port {00000000-0000-0000-0019-000000000933}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000738}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000934}, !- Inlet Port {00000000-0000-0000-0019-000000000932}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000739}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000937}, !- Inlet Port {00000000-0000-0000-0019-000000000938}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000740}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001391}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000741}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001396}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000742}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000929}, !- Inlet Port {00000000-0000-0000-0019-000000000936}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000743}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000935}, !- Inlet Port {00000000-0000-0000-0019-000000000930}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000744}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001392}, !- Inlet Port {00000000-0000-0000-0019-000000001393}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000745}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001394}, !- Inlet Port {00000000-0000-0000-0019-000000001395}; !- Outlet Port @@ -23927,7 +23927,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23936,7 +23936,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23945,7 +23945,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23954,7 +23954,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23963,7 +23963,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23972,7 +23972,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24753,7 +24753,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0070-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0068-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0068-000000000053}, !- Summer Design Day Schedule Name @@ -24761,7 +24761,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0070-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0068-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0068-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/HighriseApartment-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/HighriseApartment-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 48ab1fe45d..c291576dd9 100644 --- a/test/necb/regression_tests/expected/HighriseApartment-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/HighriseApartment-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0070-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0070-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14996,7 +14996,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0070-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -15004,7 +15004,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0070-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -15012,27 +15012,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ace8fbbe-da22-40a1-9c59-74c9d1632f2e}<23.9 && {ace8fbbe-da22-40a1-9c59-74c9d1632f2e}>1.7, !- Program Line 1 - SET {3082c64e-9135-45df-a343-d6bb84ddce85} = 29.4, !- Program Line 2 - SET {b8c4340b-0fea-445e-813d-a7b34ee847f7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ace8fbbe-da22-40a1-9c59-74c9d1632f2e}<23.9 && {ace8fbbe-da22-40a1-9c59-74c9d1632f2e}>1.7, !- Program Line 4 - SET {3082c64e-9135-45df-a343-d6bb84ddce85} = 29.4, !- Program Line 5 - SET {b8c4340b-0fea-445e-813d-a7b34ee847f7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ace8fbbe-da22-40a1-9c59-74c9d1632f2e}<23.9 && {ace8fbbe-da22-40a1-9c59-74c9d1632f2e}>1.7, !- Program Line 7 - SET {3082c64e-9135-45df-a343-d6bb84ddce85} = 29.4, !- Program Line 8 - SET {b8c4340b-0fea-445e-813d-a7b34ee847f7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ace8fbbe-da22-40a1-9c59-74c9d1632f2e}<23.9 && {ace8fbbe-da22-40a1-9c59-74c9d1632f2e}>1.7, !- Program Line 10 - SET {3082c64e-9135-45df-a343-d6bb84ddce85} = 29.4, !- Program Line 11 - SET {b8c4340b-0fea-445e-813d-a7b34ee847f7} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ae9765a5-a329-40b4-b470-16a04f1ebc50}<23.9 && {ae9765a5-a329-40b4-b470-16a04f1ebc50}>1.7, !- Program Line 1 + SET {36a18bb8-05df-45a5-ae6d-fa140adec8cd} = 29.4, !- Program Line 2 + SET {00ae1a2b-ae1d-44f5-a056-856a6f8c5c7f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ae9765a5-a329-40b4-b470-16a04f1ebc50}<23.9 && {ae9765a5-a329-40b4-b470-16a04f1ebc50}>1.7, !- Program Line 4 + SET {36a18bb8-05df-45a5-ae6d-fa140adec8cd} = 29.4, !- Program Line 5 + SET {00ae1a2b-ae1d-44f5-a056-856a6f8c5c7f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ae9765a5-a329-40b4-b470-16a04f1ebc50}<23.9 && {ae9765a5-a329-40b4-b470-16a04f1ebc50}>1.7, !- Program Line 7 + SET {36a18bb8-05df-45a5-ae6d-fa140adec8cd} = 29.4, !- Program Line 8 + SET {00ae1a2b-ae1d-44f5-a056-856a6f8c5c7f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ae9765a5-a329-40b4-b470-16a04f1ebc50}<23.9 && {ae9765a5-a329-40b4-b470-16a04f1ebc50}>1.7, !- Program Line 10 + SET {36a18bb8-05df-45a5-ae6d-fa140adec8cd} = 29.4, !- Program Line 11 + SET {00ae1a2b-ae1d-44f5-a056-856a6f8c5c7f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3082c64e-9135-45df-a343-d6bb84ddce85} = NULL, !- Program Line 14 - SET {b8c4340b-0fea-445e-813d-a7b34ee847f7} = NULL, !- Program Line 15 + SET {36a18bb8-05df-45a5-ae6d-fa140adec8cd} = NULL, !- Program Line 14 + SET {00ae1a2b-ae1d-44f5-a056-856a6f8c5c7f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -15142,7 +15142,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0048-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0067-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15168,7 +15168,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0048-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0067-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -20023,109 +20023,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0055-000000000728}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000120}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000729}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000121}, !- Inlet Port {00000000-0000-0000-0019-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000730}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000128}, !- Inlet Port {00000000-0000-0000-0019-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000731}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001385}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000732}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001390}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000733}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000116}, !- Inlet Port {00000000-0000-0000-0019-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000734}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000122}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000735}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001386}, !- Inlet Port {00000000-0000-0000-0019-000000001387}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000736}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001388}, !- Inlet Port {00000000-0000-0000-0019-000000001389}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000737}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000931}, !- Inlet Port {00000000-0000-0000-0019-000000000933}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000738}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000934}, !- Inlet Port {00000000-0000-0000-0019-000000000932}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000739}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000937}, !- Inlet Port {00000000-0000-0000-0019-000000000938}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000740}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001391}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000741}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001396}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000742}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000929}, !- Inlet Port {00000000-0000-0000-0019-000000000936}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000743}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000935}, !- Inlet Port {00000000-0000-0000-0019-000000000930}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000744}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001392}, !- Inlet Port {00000000-0000-0000-0019-000000001393}; !- Outlet Port OS:Node, {00000000-0000-0000-0055-000000000745}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001394}, !- Inlet Port {00000000-0000-0000-0019-000000001395}; !- Outlet Port @@ -24261,7 +24261,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24270,7 +24270,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24279,7 +24279,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24288,7 +24288,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24297,7 +24297,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24306,7 +24306,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0068-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25087,7 +25087,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0070-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0071-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0068-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0068-000000000053}, !- Summer Design Day Schedule Name @@ -25095,7 +25095,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0070-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0071-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0068-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0068-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm index 3084e146c4..dd1d7c4c3d 100644 --- a/test/necb/regression_tests/expected/LargeHotel-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm @@ -18295,41 +18295,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}<23.9 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}>1.7, !- Program Line 1 - SET {ca88ebba-dff9-4c8b-85bd-f4c4eec50f24} = 29.4, !- Program Line 2 - SET {cfb32bd7-fc99-4d6f-b2f7-56eeb0ed3cea} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}<23.9 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}>1.7, !- Program Line 4 - SET {ca88ebba-dff9-4c8b-85bd-f4c4eec50f24} = 29.4, !- Program Line 5 - SET {cfb32bd7-fc99-4d6f-b2f7-56eeb0ed3cea} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}<23.9 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}>1.7, !- Program Line 7 - SET {ca88ebba-dff9-4c8b-85bd-f4c4eec50f24} = 29.4, !- Program Line 8 - SET {cfb32bd7-fc99-4d6f-b2f7-56eeb0ed3cea} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}<23.9 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}>1.7, !- Program Line 10 - SET {ca88ebba-dff9-4c8b-85bd-f4c4eec50f24} = 29.4, !- Program Line 11 - SET {cfb32bd7-fc99-4d6f-b2f7-56eeb0ed3cea} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}<23.9 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}>1.7, !- Program Line 1 + SET {060a55e2-77ec-4862-9017-3e3796e00c63} = 29.4, !- Program Line 2 + SET {189f3956-6ee2-45f0-ae54-c9a07f65a638} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}<23.9 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}>1.7, !- Program Line 4 + SET {060a55e2-77ec-4862-9017-3e3796e00c63} = 29.4, !- Program Line 5 + SET {189f3956-6ee2-45f0-ae54-c9a07f65a638} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}<23.9 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}>1.7, !- Program Line 7 + SET {060a55e2-77ec-4862-9017-3e3796e00c63} = 29.4, !- Program Line 8 + SET {189f3956-6ee2-45f0-ae54-c9a07f65a638} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}<23.9 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}>1.7, !- Program Line 10 + SET {060a55e2-77ec-4862-9017-3e3796e00c63} = 29.4, !- Program Line 11 + SET {189f3956-6ee2-45f0-ae54-c9a07f65a638} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ca88ebba-dff9-4c8b-85bd-f4c4eec50f24} = NULL, !- Program Line 14 - SET {cfb32bd7-fc99-4d6f-b2f7-56eeb0ed3cea} = NULL, !- Program Line 15 + SET {060a55e2-77ec-4862-9017-3e3796e00c63} = NULL, !- Program Line 14 + SET {189f3956-6ee2-45f0-ae54-c9a07f65a638} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}<23.9 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}>1.7, !- Program Line 1 - SET {467c7022-4802-4ebc-86f7-833810f6e7e1} = 29.4, !- Program Line 2 - SET {ea2c8070-24c2-4810-a37f-4da6c3b634fd} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}<23.9 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}>1.7, !- Program Line 4 - SET {467c7022-4802-4ebc-86f7-833810f6e7e1} = 29.4, !- Program Line 5 - SET {ea2c8070-24c2-4810-a37f-4da6c3b634fd} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}<23.9 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}>1.7, !- Program Line 7 - SET {467c7022-4802-4ebc-86f7-833810f6e7e1} = 29.4, !- Program Line 8 - SET {ea2c8070-24c2-4810-a37f-4da6c3b634fd} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}<23.9 && {4092ef7e-d1d9-4ee5-b7a2-8b4fe14714bb}>1.7, !- Program Line 10 - SET {467c7022-4802-4ebc-86f7-833810f6e7e1} = 29.4, !- Program Line 11 - SET {ea2c8070-24c2-4810-a37f-4da6c3b634fd} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}<23.9 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}>1.7, !- Program Line 1 + SET {9e8f6e49-1a96-4176-87a7-3dc354767e04} = 29.4, !- Program Line 2 + SET {e0605686-39e7-47b1-ab3b-5efe3652863c} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}<23.9 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}>1.7, !- Program Line 4 + SET {9e8f6e49-1a96-4176-87a7-3dc354767e04} = 29.4, !- Program Line 5 + SET {e0605686-39e7-47b1-ab3b-5efe3652863c} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}<23.9 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}>1.7, !- Program Line 7 + SET {9e8f6e49-1a96-4176-87a7-3dc354767e04} = 29.4, !- Program Line 8 + SET {e0605686-39e7-47b1-ab3b-5efe3652863c} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}<23.9 && {832cb21d-9812-4e37-ac1a-70e1f27e06d2}>1.7, !- Program Line 10 + SET {9e8f6e49-1a96-4176-87a7-3dc354767e04} = 29.4, !- Program Line 11 + SET {e0605686-39e7-47b1-ab3b-5efe3652863c} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {467c7022-4802-4ebc-86f7-833810f6e7e1} = NULL, !- Program Line 14 - SET {ea2c8070-24c2-4810-a37f-4da6c3b634fd} = NULL, !- Program Line 15 + SET {9e8f6e49-1a96-4176-87a7-3dc354767e04} = NULL, !- Program Line 14 + SET {e0605686-39e7-47b1-ab3b-5efe3652863c} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/LargeHotel-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm index 3c1c3ad39e..0e15c025ca 100644 --- a/test/necb/regression_tests/expected/LargeHotel-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm @@ -21692,41 +21692,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0042-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}<23.9 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}>1.7, !- Program Line 1 - SET {5fcf15f9-335c-49ad-92dc-872235904903} = 29.4, !- Program Line 2 - SET {8fac4a80-28b5-4363-89aa-41f4a22af371} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}<23.9 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}>1.7, !- Program Line 4 - SET {5fcf15f9-335c-49ad-92dc-872235904903} = 29.4, !- Program Line 5 - SET {8fac4a80-28b5-4363-89aa-41f4a22af371} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}<23.9 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}>1.7, !- Program Line 7 - SET {5fcf15f9-335c-49ad-92dc-872235904903} = 29.4, !- Program Line 8 - SET {8fac4a80-28b5-4363-89aa-41f4a22af371} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}<23.9 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}>1.7, !- Program Line 10 - SET {5fcf15f9-335c-49ad-92dc-872235904903} = 29.4, !- Program Line 11 - SET {8fac4a80-28b5-4363-89aa-41f4a22af371} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}<23.9 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}>1.7, !- Program Line 1 + SET {421eca5f-f8a8-41ca-961b-f266279a8925} = 29.4, !- Program Line 2 + SET {f644a30b-dd35-4177-b1aa-30d293789afc} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}<23.9 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}>1.7, !- Program Line 4 + SET {421eca5f-f8a8-41ca-961b-f266279a8925} = 29.4, !- Program Line 5 + SET {f644a30b-dd35-4177-b1aa-30d293789afc} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}<23.9 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}>1.7, !- Program Line 7 + SET {421eca5f-f8a8-41ca-961b-f266279a8925} = 29.4, !- Program Line 8 + SET {f644a30b-dd35-4177-b1aa-30d293789afc} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}<23.9 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}>1.7, !- Program Line 10 + SET {421eca5f-f8a8-41ca-961b-f266279a8925} = 29.4, !- Program Line 11 + SET {f644a30b-dd35-4177-b1aa-30d293789afc} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5fcf15f9-335c-49ad-92dc-872235904903} = NULL, !- Program Line 14 - SET {8fac4a80-28b5-4363-89aa-41f4a22af371} = NULL, !- Program Line 15 + SET {421eca5f-f8a8-41ca-961b-f266279a8925} = NULL, !- Program Line 14 + SET {f644a30b-dd35-4177-b1aa-30d293789afc} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0042-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}<23.9 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}>1.7, !- Program Line 1 - SET {1e8ece7a-f3c6-4598-bf9c-d464e420e0be} = 29.4, !- Program Line 2 - SET {f2a1b8e4-4b0b-4f92-a371-d0510ca1258b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}<23.9 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}>1.7, !- Program Line 4 - SET {1e8ece7a-f3c6-4598-bf9c-d464e420e0be} = 29.4, !- Program Line 5 - SET {f2a1b8e4-4b0b-4f92-a371-d0510ca1258b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}<23.9 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}>1.7, !- Program Line 7 - SET {1e8ece7a-f3c6-4598-bf9c-d464e420e0be} = 29.4, !- Program Line 8 - SET {f2a1b8e4-4b0b-4f92-a371-d0510ca1258b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}<23.9 && {c5ed0958-771a-4211-92ca-a5a4fd69ea09}>1.7, !- Program Line 10 - SET {1e8ece7a-f3c6-4598-bf9c-d464e420e0be} = 29.4, !- Program Line 11 - SET {f2a1b8e4-4b0b-4f92-a371-d0510ca1258b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}<23.9 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}>1.7, !- Program Line 1 + SET {58fda000-a0df-4545-afc7-bd21ef1d4eba} = 29.4, !- Program Line 2 + SET {d5e99b3f-4b05-440d-84e7-6bfd297b43d1} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}<23.9 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}>1.7, !- Program Line 4 + SET {58fda000-a0df-4545-afc7-bd21ef1d4eba} = 29.4, !- Program Line 5 + SET {d5e99b3f-4b05-440d-84e7-6bfd297b43d1} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}<23.9 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}>1.7, !- Program Line 7 + SET {58fda000-a0df-4545-afc7-bd21ef1d4eba} = 29.4, !- Program Line 8 + SET {d5e99b3f-4b05-440d-84e7-6bfd297b43d1} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}<23.9 && {92a74a4b-7c46-4c89-9894-ecf81cad24d6}>1.7, !- Program Line 10 + SET {58fda000-a0df-4545-afc7-bd21ef1d4eba} = 29.4, !- Program Line 11 + SET {d5e99b3f-4b05-440d-84e7-6bfd297b43d1} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1e8ece7a-f3c6-4598-bf9c-d464e420e0be} = NULL, !- Program Line 14 - SET {f2a1b8e4-4b0b-4f92-a371-d0510ca1258b} = NULL, !- Program Line 15 + SET {58fda000-a0df-4545-afc7-bd21ef1d4eba} = NULL, !- Program Line 14 + SET {d5e99b3f-4b05-440d-84e7-6bfd297b43d1} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -34292,7 +34292,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0071-000000000149}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0074-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -34370,7 +34370,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0071-000000000150}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0074-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -34379,7 +34379,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0071-000000000151}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0074-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -34589,7 +34589,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0071-000000000159}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0074-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -35057,7 +35057,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0071-000000000165}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0074-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -35738,7 +35738,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0071-000000000192}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0074-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -38234,7 +38234,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0073-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0074-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0071-000000000149}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -38470,13 +38470,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0073-000000000043}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0074-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0071-000000000150}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0073-000000000044}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0074-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0071-000000000151}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2011-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2011-Electricity-CAN_AB_Calgary.osm index 316c7f1ebb..501d303666 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2011-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2011-Electricity-CAN_AB_Calgary.osm @@ -18148,41 +18148,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f05bcaf3-dfaf-47bd-b316-195873574849}<23.9 && {f05bcaf3-dfaf-47bd-b316-195873574849}>1.7, !- Program Line 1 - SET {5802cb59-163a-4893-bbf9-2929d724a65a} = 29.4, !- Program Line 2 - SET {66ad18a7-d661-4ced-a4b1-2968fac0dfba} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f05bcaf3-dfaf-47bd-b316-195873574849}<23.9 && {f05bcaf3-dfaf-47bd-b316-195873574849}>1.7, !- Program Line 4 - SET {5802cb59-163a-4893-bbf9-2929d724a65a} = 29.4, !- Program Line 5 - SET {66ad18a7-d661-4ced-a4b1-2968fac0dfba} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f05bcaf3-dfaf-47bd-b316-195873574849}<23.9 && {f05bcaf3-dfaf-47bd-b316-195873574849}>1.7, !- Program Line 7 - SET {5802cb59-163a-4893-bbf9-2929d724a65a} = 29.4, !- Program Line 8 - SET {66ad18a7-d661-4ced-a4b1-2968fac0dfba} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f05bcaf3-dfaf-47bd-b316-195873574849}<23.9 && {f05bcaf3-dfaf-47bd-b316-195873574849}>1.7, !- Program Line 10 - SET {5802cb59-163a-4893-bbf9-2929d724a65a} = 29.4, !- Program Line 11 - SET {66ad18a7-d661-4ced-a4b1-2968fac0dfba} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {461f9d93-1655-4031-aa4e-b15720badfec}<23.9 && {461f9d93-1655-4031-aa4e-b15720badfec}>1.7, !- Program Line 1 + SET {5d42e6e2-a132-4f63-bf57-4b1dad2ed5ca} = 29.4, !- Program Line 2 + SET {204d2a1a-8444-4aa4-afdf-d3527c304257} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {461f9d93-1655-4031-aa4e-b15720badfec}<23.9 && {461f9d93-1655-4031-aa4e-b15720badfec}>1.7, !- Program Line 4 + SET {5d42e6e2-a132-4f63-bf57-4b1dad2ed5ca} = 29.4, !- Program Line 5 + SET {204d2a1a-8444-4aa4-afdf-d3527c304257} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {461f9d93-1655-4031-aa4e-b15720badfec}<23.9 && {461f9d93-1655-4031-aa4e-b15720badfec}>1.7, !- Program Line 7 + SET {5d42e6e2-a132-4f63-bf57-4b1dad2ed5ca} = 29.4, !- Program Line 8 + SET {204d2a1a-8444-4aa4-afdf-d3527c304257} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {461f9d93-1655-4031-aa4e-b15720badfec}<23.9 && {461f9d93-1655-4031-aa4e-b15720badfec}>1.7, !- Program Line 10 + SET {5d42e6e2-a132-4f63-bf57-4b1dad2ed5ca} = 29.4, !- Program Line 11 + SET {204d2a1a-8444-4aa4-afdf-d3527c304257} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5802cb59-163a-4893-bbf9-2929d724a65a} = NULL, !- Program Line 14 - SET {66ad18a7-d661-4ced-a4b1-2968fac0dfba} = NULL, !- Program Line 15 + SET {5d42e6e2-a132-4f63-bf57-4b1dad2ed5ca} = NULL, !- Program Line 14 + SET {204d2a1a-8444-4aa4-afdf-d3527c304257} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f05bcaf3-dfaf-47bd-b316-195873574849}<23.9 && {f05bcaf3-dfaf-47bd-b316-195873574849}>1.7, !- Program Line 1 - SET {bcc877f3-57e7-4116-8eb8-1ef402f9e725} = 29.4, !- Program Line 2 - SET {397e2e3e-7531-4693-9587-0e8c87359e9d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f05bcaf3-dfaf-47bd-b316-195873574849}<23.9 && {f05bcaf3-dfaf-47bd-b316-195873574849}>1.7, !- Program Line 4 - SET {bcc877f3-57e7-4116-8eb8-1ef402f9e725} = 29.4, !- Program Line 5 - SET {397e2e3e-7531-4693-9587-0e8c87359e9d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f05bcaf3-dfaf-47bd-b316-195873574849}<23.9 && {f05bcaf3-dfaf-47bd-b316-195873574849}>1.7, !- Program Line 7 - SET {bcc877f3-57e7-4116-8eb8-1ef402f9e725} = 29.4, !- Program Line 8 - SET {397e2e3e-7531-4693-9587-0e8c87359e9d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f05bcaf3-dfaf-47bd-b316-195873574849}<23.9 && {f05bcaf3-dfaf-47bd-b316-195873574849}>1.7, !- Program Line 10 - SET {bcc877f3-57e7-4116-8eb8-1ef402f9e725} = 29.4, !- Program Line 11 - SET {397e2e3e-7531-4693-9587-0e8c87359e9d} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {461f9d93-1655-4031-aa4e-b15720badfec}<23.9 && {461f9d93-1655-4031-aa4e-b15720badfec}>1.7, !- Program Line 1 + SET {bf63f5c8-588c-428f-a66f-430ffeb615f1} = 29.4, !- Program Line 2 + SET {defb5b2c-b36c-4f11-87f1-69128107f954} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {461f9d93-1655-4031-aa4e-b15720badfec}<23.9 && {461f9d93-1655-4031-aa4e-b15720badfec}>1.7, !- Program Line 4 + SET {bf63f5c8-588c-428f-a66f-430ffeb615f1} = 29.4, !- Program Line 5 + SET {defb5b2c-b36c-4f11-87f1-69128107f954} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {461f9d93-1655-4031-aa4e-b15720badfec}<23.9 && {461f9d93-1655-4031-aa4e-b15720badfec}>1.7, !- Program Line 7 + SET {bf63f5c8-588c-428f-a66f-430ffeb615f1} = 29.4, !- Program Line 8 + SET {defb5b2c-b36c-4f11-87f1-69128107f954} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {461f9d93-1655-4031-aa4e-b15720badfec}<23.9 && {461f9d93-1655-4031-aa4e-b15720badfec}>1.7, !- Program Line 10 + SET {bf63f5c8-588c-428f-a66f-430ffeb615f1} = 29.4, !- Program Line 11 + SET {defb5b2c-b36c-4f11-87f1-69128107f954} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {bcc877f3-57e7-4116-8eb8-1ef402f9e725} = NULL, !- Program Line 14 - SET {397e2e3e-7531-4693-9587-0e8c87359e9d} = NULL, !- Program Line 15 + SET {bf63f5c8-588c-428f-a66f-430ffeb615f1} = NULL, !- Program Line 14 + SET {defb5b2c-b36c-4f11-87f1-69128107f954} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 37cedd9bf1..83f5741b1f 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -112,7 +112,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000046}, !- Availability Schedule {00000000-0000-0000-0010-000000000007}, !- Availability Manager List Name @@ -134,7 +134,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000047}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -156,7 +156,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -178,7 +178,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -200,7 +200,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -222,7 +222,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10809,7 +10809,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10817,7 +10817,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10857,67 +10857,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ecd1cce6-0e4b-4dc3-ad09-03a31126c520}<23.9 && {ecd1cce6-0e4b-4dc3-ad09-03a31126c520}>1.7, !- Program Line 1 - SET {460bd503-c26c-45cb-b636-96e7eb5c865c} = 29.4, !- Program Line 2 - SET {f5fda44d-0002-4a30-96de-a60457f2a4b0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ecd1cce6-0e4b-4dc3-ad09-03a31126c520}<23.9 && {ecd1cce6-0e4b-4dc3-ad09-03a31126c520}>1.7, !- Program Line 4 - SET {460bd503-c26c-45cb-b636-96e7eb5c865c} = 29.4, !- Program Line 5 - SET {f5fda44d-0002-4a30-96de-a60457f2a4b0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ecd1cce6-0e4b-4dc3-ad09-03a31126c520}<23.9 && {ecd1cce6-0e4b-4dc3-ad09-03a31126c520}>1.7, !- Program Line 7 - SET {460bd503-c26c-45cb-b636-96e7eb5c865c} = 29.4, !- Program Line 8 - SET {f5fda44d-0002-4a30-96de-a60457f2a4b0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ecd1cce6-0e4b-4dc3-ad09-03a31126c520}<23.9 && {ecd1cce6-0e4b-4dc3-ad09-03a31126c520}>1.7, !- Program Line 10 - SET {460bd503-c26c-45cb-b636-96e7eb5c865c} = 29.4, !- Program Line 11 - SET {f5fda44d-0002-4a30-96de-a60457f2a4b0} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5a39f28d-ec32-407b-b060-73a1f26d5e3d}<23.9 && {5a39f28d-ec32-407b-b060-73a1f26d5e3d}>1.7, !- Program Line 1 + SET {38a5b560-93ca-4157-bacf-68e8d5e7c0c1} = 29.4, !- Program Line 2 + SET {dabb63df-ecff-405a-81fb-b1938c0c1c7a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5a39f28d-ec32-407b-b060-73a1f26d5e3d}<23.9 && {5a39f28d-ec32-407b-b060-73a1f26d5e3d}>1.7, !- Program Line 4 + SET {38a5b560-93ca-4157-bacf-68e8d5e7c0c1} = 29.4, !- Program Line 5 + SET {dabb63df-ecff-405a-81fb-b1938c0c1c7a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5a39f28d-ec32-407b-b060-73a1f26d5e3d}<23.9 && {5a39f28d-ec32-407b-b060-73a1f26d5e3d}>1.7, !- Program Line 7 + SET {38a5b560-93ca-4157-bacf-68e8d5e7c0c1} = 29.4, !- Program Line 8 + SET {dabb63df-ecff-405a-81fb-b1938c0c1c7a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5a39f28d-ec32-407b-b060-73a1f26d5e3d}<23.9 && {5a39f28d-ec32-407b-b060-73a1f26d5e3d}>1.7, !- Program Line 10 + SET {38a5b560-93ca-4157-bacf-68e8d5e7c0c1} = 29.4, !- Program Line 11 + SET {dabb63df-ecff-405a-81fb-b1938c0c1c7a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {460bd503-c26c-45cb-b636-96e7eb5c865c} = NULL, !- Program Line 14 - SET {f5fda44d-0002-4a30-96de-a60457f2a4b0} = NULL, !- Program Line 15 + SET {38a5b560-93ca-4157-bacf-68e8d5e7c0c1} = NULL, !- Program Line 14 + SET {dabb63df-ecff-405a-81fb-b1938c0c1c7a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}<23.9 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}>1.7, !- Program Line 1 - SET {fb7a077c-7fa5-48cf-ad2d-b12e46760cdb} = 29.4, !- Program Line 2 - SET {995ce4b9-b56c-4490-bd8f-3db760594f0b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}<23.9 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}>1.7, !- Program Line 4 - SET {fb7a077c-7fa5-48cf-ad2d-b12e46760cdb} = 29.4, !- Program Line 5 - SET {995ce4b9-b56c-4490-bd8f-3db760594f0b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}<23.9 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}>1.7, !- Program Line 7 - SET {fb7a077c-7fa5-48cf-ad2d-b12e46760cdb} = 29.4, !- Program Line 8 - SET {995ce4b9-b56c-4490-bd8f-3db760594f0b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}<23.9 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}>1.7, !- Program Line 10 - SET {fb7a077c-7fa5-48cf-ad2d-b12e46760cdb} = 29.4, !- Program Line 11 - SET {995ce4b9-b56c-4490-bd8f-3db760594f0b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}<23.9 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}>1.7, !- Program Line 1 + SET {13d2e7db-d417-4fbb-ba5f-60142fe323de} = 29.4, !- Program Line 2 + SET {dafc1b2e-f76b-4e79-bb00-31d2ae0aba33} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}<23.9 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}>1.7, !- Program Line 4 + SET {13d2e7db-d417-4fbb-ba5f-60142fe323de} = 29.4, !- Program Line 5 + SET {dafc1b2e-f76b-4e79-bb00-31d2ae0aba33} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}<23.9 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}>1.7, !- Program Line 7 + SET {13d2e7db-d417-4fbb-ba5f-60142fe323de} = 29.4, !- Program Line 8 + SET {dafc1b2e-f76b-4e79-bb00-31d2ae0aba33} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}<23.9 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}>1.7, !- Program Line 10 + SET {13d2e7db-d417-4fbb-ba5f-60142fe323de} = 29.4, !- Program Line 11 + SET {dafc1b2e-f76b-4e79-bb00-31d2ae0aba33} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {fb7a077c-7fa5-48cf-ad2d-b12e46760cdb} = NULL, !- Program Line 14 - SET {995ce4b9-b56c-4490-bd8f-3db760594f0b} = NULL, !- Program Line 15 + SET {13d2e7db-d417-4fbb-ba5f-60142fe323de} = NULL, !- Program Line 14 + SET {dafc1b2e-f76b-4e79-bb00-31d2ae0aba33} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}<23.9 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}>1.7, !- Program Line 1 - SET {1bc0364d-3348-4240-9861-532113a6b70e} = 29.4, !- Program Line 2 - SET {5c1db417-e0a1-41aa-9396-50c49fc1bc90} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}<23.9 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}>1.7, !- Program Line 4 - SET {1bc0364d-3348-4240-9861-532113a6b70e} = 29.4, !- Program Line 5 - SET {5c1db417-e0a1-41aa-9396-50c49fc1bc90} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}<23.9 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}>1.7, !- Program Line 7 - SET {1bc0364d-3348-4240-9861-532113a6b70e} = 29.4, !- Program Line 8 - SET {5c1db417-e0a1-41aa-9396-50c49fc1bc90} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}<23.9 && {8dc3f617-d2c8-4ec0-b39e-fae09d64042f}>1.7, !- Program Line 10 - SET {1bc0364d-3348-4240-9861-532113a6b70e} = 29.4, !- Program Line 11 - SET {5c1db417-e0a1-41aa-9396-50c49fc1bc90} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}<23.9 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}>1.7, !- Program Line 1 + SET {e7e2326b-a0eb-42fb-b375-e2267701fe42} = 29.4, !- Program Line 2 + SET {75cf193d-8d08-4f96-b0c9-0760d6a28747} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}<23.9 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}>1.7, !- Program Line 4 + SET {e7e2326b-a0eb-42fb-b375-e2267701fe42} = 29.4, !- Program Line 5 + SET {75cf193d-8d08-4f96-b0c9-0760d6a28747} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}<23.9 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}>1.7, !- Program Line 7 + SET {e7e2326b-a0eb-42fb-b375-e2267701fe42} = 29.4, !- Program Line 8 + SET {75cf193d-8d08-4f96-b0c9-0760d6a28747} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}<23.9 && {e5c8f54d-3d88-4ba3-b9e6-05086e71a4d9}>1.7, !- Program Line 10 + SET {e7e2326b-a0eb-42fb-b375-e2267701fe42} = 29.4, !- Program Line 11 + SET {75cf193d-8d08-4f96-b0c9-0760d6a28747} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1bc0364d-3348-4240-9861-532113a6b70e} = NULL, !- Program Line 14 - SET {5c1db417-e0a1-41aa-9396-50c49fc1bc90} = NULL, !- Program Line 15 + SET {e7e2326b-a0eb-42fb-b375-e2267701fe42} = NULL, !- Program Line 14 + SET {75cf193d-8d08-4f96-b0c9-0760d6a28747} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -14290,253 +14290,253 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000405}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000406}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000407}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000102}, !- Inlet Port {00000000-0000-0000-0017-000000000103}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000408}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000409}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000095}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000410}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000411}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000412}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000538}, !- Inlet Port {00000000-0000-0000-0017-000000000540}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000413}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000541}, !- Inlet Port {00000000-0000-0000-0017-000000000539}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000414}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000546}, !- Inlet Port {00000000-0000-0000-0017-000000000547}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000415}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000542}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000416}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000543}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000417}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000536}, !- Inlet Port {00000000-0000-0000-0017-000000000545}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000418}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000544}, !- Inlet Port {00000000-0000-0000-0017-000000000537}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000419}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000556}, !- Inlet Port {00000000-0000-0000-0017-000000000558}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000420}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000559}, !- Inlet Port {00000000-0000-0000-0017-000000000557}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000421}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000564}, !- Inlet Port {00000000-0000-0000-0017-000000000565}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000422}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000560}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000423}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000561}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000424}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000554}, !- Inlet Port {00000000-0000-0000-0017-000000000563}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000425}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000562}, !- Inlet Port {00000000-0000-0000-0017-000000000555}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000426}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000520}, !- Inlet Port {00000000-0000-0000-0017-000000000522}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000427}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000523}, !- Inlet Port {00000000-0000-0000-0017-000000000521}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000428}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000528}, !- Inlet Port {00000000-0000-0000-0017-000000000529}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000429}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000524}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000430}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000525}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000431}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000518}, !- Inlet Port {00000000-0000-0000-0017-000000000527}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000432}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000526}, !- Inlet Port {00000000-0000-0000-0017-000000000519}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000433}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000448}, !- Inlet Port {00000000-0000-0000-0017-000000000450}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000434}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000451}, !- Inlet Port {00000000-0000-0000-0017-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000435}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000456}, !- Inlet Port {00000000-0000-0000-0017-000000000457}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000436}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000452}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000437}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000453}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000438}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000446}, !- Inlet Port {00000000-0000-0000-0017-000000000455}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000439}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000454}, !- Inlet Port {00000000-0000-0000-0017-000000000447}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000440}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000424}, !- Inlet Port {00000000-0000-0000-0017-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000441}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000427}, !- Inlet Port {00000000-0000-0000-0017-000000000425}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000442}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000432}, !- Inlet Port {00000000-0000-0000-0017-000000000433}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000443}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000428}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000444}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000429}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000445}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000422}, !- Inlet Port {00000000-0000-0000-0017-000000000431}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000446}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000430}, !- Inlet Port {00000000-0000-0000-0017-000000000423}; !- Outlet Port @@ -20655,7 +20655,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000159}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20664,7 +20664,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000160}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20673,7 +20673,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000161}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20682,7 +20682,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20697,7 +20697,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20706,7 +20706,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20715,7 +20715,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20730,7 +20730,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20739,7 +20739,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20748,7 +20748,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20763,7 +20763,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20772,7 +20772,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20781,7 +20781,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000171}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20790,7 +20790,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000172}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20799,7 +20799,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20808,7 +20808,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20823,7 +20823,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000175}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20832,7 +20832,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000176}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23348,7 +23348,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000046}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000159}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000160}, !- Summer Design Day Schedule Name @@ -23356,7 +23356,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000162}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000163}, !- Summer Design Day Schedule Name @@ -23364,7 +23364,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000166}, !- Summer Design Day Schedule Name @@ -23372,7 +23372,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000169}, !- Summer Design Day Schedule Name @@ -23380,7 +23380,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000172}, !- Summer Design Day Schedule Name @@ -23388,7 +23388,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000175}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 6f9d976d4d..0a479bfc3a 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -112,7 +112,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000046}, !- Availability Schedule {00000000-0000-0000-0010-000000000007}, !- Availability Manager List Name @@ -134,7 +134,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000047}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -156,7 +156,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -178,7 +178,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -200,7 +200,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -222,7 +222,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -11067,7 +11067,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -11075,7 +11075,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -11115,67 +11115,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d3680796-7951-4cd8-a510-dfe06515b848}<23.9 && {d3680796-7951-4cd8-a510-dfe06515b848}>1.7, !- Program Line 1 - SET {2a64dc55-34ca-4cb4-a985-64e42f46e76f} = 29.4, !- Program Line 2 - SET {b834a307-ee98-4d64-9fc9-5c129212c531} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d3680796-7951-4cd8-a510-dfe06515b848}<23.9 && {d3680796-7951-4cd8-a510-dfe06515b848}>1.7, !- Program Line 4 - SET {2a64dc55-34ca-4cb4-a985-64e42f46e76f} = 29.4, !- Program Line 5 - SET {b834a307-ee98-4d64-9fc9-5c129212c531} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d3680796-7951-4cd8-a510-dfe06515b848}<23.9 && {d3680796-7951-4cd8-a510-dfe06515b848}>1.7, !- Program Line 7 - SET {2a64dc55-34ca-4cb4-a985-64e42f46e76f} = 29.4, !- Program Line 8 - SET {b834a307-ee98-4d64-9fc9-5c129212c531} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d3680796-7951-4cd8-a510-dfe06515b848}<23.9 && {d3680796-7951-4cd8-a510-dfe06515b848}>1.7, !- Program Line 10 - SET {2a64dc55-34ca-4cb4-a985-64e42f46e76f} = 29.4, !- Program Line 11 - SET {b834a307-ee98-4d64-9fc9-5c129212c531} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5bd8cfba-afda-4297-93bc-0c70800971a5}<23.9 && {5bd8cfba-afda-4297-93bc-0c70800971a5}>1.7, !- Program Line 1 + SET {5c23ae0f-ff97-48df-99c7-6030feb8187c} = 29.4, !- Program Line 2 + SET {14d0a5a2-d683-46d0-86e3-80b251a43415} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5bd8cfba-afda-4297-93bc-0c70800971a5}<23.9 && {5bd8cfba-afda-4297-93bc-0c70800971a5}>1.7, !- Program Line 4 + SET {5c23ae0f-ff97-48df-99c7-6030feb8187c} = 29.4, !- Program Line 5 + SET {14d0a5a2-d683-46d0-86e3-80b251a43415} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5bd8cfba-afda-4297-93bc-0c70800971a5}<23.9 && {5bd8cfba-afda-4297-93bc-0c70800971a5}>1.7, !- Program Line 7 + SET {5c23ae0f-ff97-48df-99c7-6030feb8187c} = 29.4, !- Program Line 8 + SET {14d0a5a2-d683-46d0-86e3-80b251a43415} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5bd8cfba-afda-4297-93bc-0c70800971a5}<23.9 && {5bd8cfba-afda-4297-93bc-0c70800971a5}>1.7, !- Program Line 10 + SET {5c23ae0f-ff97-48df-99c7-6030feb8187c} = 29.4, !- Program Line 11 + SET {14d0a5a2-d683-46d0-86e3-80b251a43415} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {2a64dc55-34ca-4cb4-a985-64e42f46e76f} = NULL, !- Program Line 14 - SET {b834a307-ee98-4d64-9fc9-5c129212c531} = NULL, !- Program Line 15 + SET {5c23ae0f-ff97-48df-99c7-6030feb8187c} = NULL, !- Program Line 14 + SET {14d0a5a2-d683-46d0-86e3-80b251a43415} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}<23.9 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}>1.7, !- Program Line 1 - SET {8334a493-d8ec-4da8-8c43-d957867f33f0} = 29.4, !- Program Line 2 - SET {9c562bf2-763e-4344-ae31-748e403f6fc7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}<23.9 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}>1.7, !- Program Line 4 - SET {8334a493-d8ec-4da8-8c43-d957867f33f0} = 29.4, !- Program Line 5 - SET {9c562bf2-763e-4344-ae31-748e403f6fc7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}<23.9 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}>1.7, !- Program Line 7 - SET {8334a493-d8ec-4da8-8c43-d957867f33f0} = 29.4, !- Program Line 8 - SET {9c562bf2-763e-4344-ae31-748e403f6fc7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}<23.9 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}>1.7, !- Program Line 10 - SET {8334a493-d8ec-4da8-8c43-d957867f33f0} = 29.4, !- Program Line 11 - SET {9c562bf2-763e-4344-ae31-748e403f6fc7} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}<23.9 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}>1.7, !- Program Line 1 + SET {c8715951-84c2-4a64-8c73-827f0c7842c6} = 29.4, !- Program Line 2 + SET {9f1d99e4-e0ac-4303-bfbd-e2058c5f85b3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}<23.9 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}>1.7, !- Program Line 4 + SET {c8715951-84c2-4a64-8c73-827f0c7842c6} = 29.4, !- Program Line 5 + SET {9f1d99e4-e0ac-4303-bfbd-e2058c5f85b3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}<23.9 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}>1.7, !- Program Line 7 + SET {c8715951-84c2-4a64-8c73-827f0c7842c6} = 29.4, !- Program Line 8 + SET {9f1d99e4-e0ac-4303-bfbd-e2058c5f85b3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}<23.9 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}>1.7, !- Program Line 10 + SET {c8715951-84c2-4a64-8c73-827f0c7842c6} = 29.4, !- Program Line 11 + SET {9f1d99e4-e0ac-4303-bfbd-e2058c5f85b3} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8334a493-d8ec-4da8-8c43-d957867f33f0} = NULL, !- Program Line 14 - SET {9c562bf2-763e-4344-ae31-748e403f6fc7} = NULL, !- Program Line 15 + SET {c8715951-84c2-4a64-8c73-827f0c7842c6} = NULL, !- Program Line 14 + SET {9f1d99e4-e0ac-4303-bfbd-e2058c5f85b3} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}<23.9 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}>1.7, !- Program Line 1 - SET {bd04a254-5434-40e5-8c97-9992b28c80c0} = 29.4, !- Program Line 2 - SET {5ad9962b-45d7-44d7-8224-8849bb1f71ef} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}<23.9 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}>1.7, !- Program Line 4 - SET {bd04a254-5434-40e5-8c97-9992b28c80c0} = 29.4, !- Program Line 5 - SET {5ad9962b-45d7-44d7-8224-8849bb1f71ef} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}<23.9 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}>1.7, !- Program Line 7 - SET {bd04a254-5434-40e5-8c97-9992b28c80c0} = 29.4, !- Program Line 8 - SET {5ad9962b-45d7-44d7-8224-8849bb1f71ef} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}<23.9 && {0b1e055e-0a56-4642-bbd1-0e2e84169c45}>1.7, !- Program Line 10 - SET {bd04a254-5434-40e5-8c97-9992b28c80c0} = 29.4, !- Program Line 11 - SET {5ad9962b-45d7-44d7-8224-8849bb1f71ef} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}<23.9 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}>1.7, !- Program Line 1 + SET {eb16af75-5ffe-4fc8-bf8a-d2cac526ab42} = 29.4, !- Program Line 2 + SET {8593b2f1-7a8c-4f01-ad1f-3aeb7ee575b5} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}<23.9 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}>1.7, !- Program Line 4 + SET {eb16af75-5ffe-4fc8-bf8a-d2cac526ab42} = 29.4, !- Program Line 5 + SET {8593b2f1-7a8c-4f01-ad1f-3aeb7ee575b5} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}<23.9 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}>1.7, !- Program Line 7 + SET {eb16af75-5ffe-4fc8-bf8a-d2cac526ab42} = 29.4, !- Program Line 8 + SET {8593b2f1-7a8c-4f01-ad1f-3aeb7ee575b5} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}<23.9 && {44b3ae7b-d356-47eb-841c-eb9b6c849220}>1.7, !- Program Line 10 + SET {eb16af75-5ffe-4fc8-bf8a-d2cac526ab42} = 29.4, !- Program Line 11 + SET {8593b2f1-7a8c-4f01-ad1f-3aeb7ee575b5} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {bd04a254-5434-40e5-8c97-9992b28c80c0} = NULL, !- Program Line 14 - SET {5ad9962b-45d7-44d7-8224-8849bb1f71ef} = NULL, !- Program Line 15 + SET {eb16af75-5ffe-4fc8-bf8a-d2cac526ab42} = NULL, !- Program Line 14 + SET {8593b2f1-7a8c-4f01-ad1f-3aeb7ee575b5} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -14548,253 +14548,253 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000405}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000406}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000407}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000102}, !- Inlet Port {00000000-0000-0000-0017-000000000103}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000408}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000409}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000095}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000410}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000411}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000412}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000538}, !- Inlet Port {00000000-0000-0000-0017-000000000540}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000413}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000541}, !- Inlet Port {00000000-0000-0000-0017-000000000539}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000414}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000546}, !- Inlet Port {00000000-0000-0000-0017-000000000547}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000415}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000542}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000416}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000543}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000417}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000536}, !- Inlet Port {00000000-0000-0000-0017-000000000545}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000418}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000544}, !- Inlet Port {00000000-0000-0000-0017-000000000537}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000419}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000556}, !- Inlet Port {00000000-0000-0000-0017-000000000558}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000420}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000559}, !- Inlet Port {00000000-0000-0000-0017-000000000557}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000421}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000564}, !- Inlet Port {00000000-0000-0000-0017-000000000565}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000422}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000560}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000423}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000561}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000424}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000554}, !- Inlet Port {00000000-0000-0000-0017-000000000563}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000425}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000562}, !- Inlet Port {00000000-0000-0000-0017-000000000555}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000426}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000520}, !- Inlet Port {00000000-0000-0000-0017-000000000522}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000427}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000523}, !- Inlet Port {00000000-0000-0000-0017-000000000521}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000428}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000528}, !- Inlet Port {00000000-0000-0000-0017-000000000529}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000429}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000524}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000430}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000525}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000431}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000518}, !- Inlet Port {00000000-0000-0000-0017-000000000527}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000432}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000526}, !- Inlet Port {00000000-0000-0000-0017-000000000519}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000433}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000448}, !- Inlet Port {00000000-0000-0000-0017-000000000450}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000434}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000451}, !- Inlet Port {00000000-0000-0000-0017-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000435}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000456}, !- Inlet Port {00000000-0000-0000-0017-000000000457}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000436}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000452}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000437}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000453}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000438}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000446}, !- Inlet Port {00000000-0000-0000-0017-000000000455}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000439}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000454}, !- Inlet Port {00000000-0000-0000-0017-000000000447}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000440}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000424}, !- Inlet Port {00000000-0000-0000-0017-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000441}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000427}, !- Inlet Port {00000000-0000-0000-0017-000000000425}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000442}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000432}, !- Inlet Port {00000000-0000-0000-0017-000000000433}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000443}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000428}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000444}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000429}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000445}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000422}, !- Inlet Port {00000000-0000-0000-0017-000000000431}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000446}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000430}, !- Inlet Port {00000000-0000-0000-0017-000000000423}; !- Outlet Port @@ -20913,7 +20913,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000159}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20922,7 +20922,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000160}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20931,7 +20931,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000161}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20940,7 +20940,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20955,7 +20955,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20964,7 +20964,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20973,7 +20973,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20988,7 +20988,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20997,7 +20997,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21006,7 +21006,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21021,7 +21021,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21030,7 +21030,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21039,7 +21039,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000171}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21048,7 +21048,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000172}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21057,7 +21057,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21066,7 +21066,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -21081,7 +21081,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000175}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21090,7 +21090,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000176}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23606,7 +23606,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000046}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000159}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000160}, !- Summer Design Day Schedule Name @@ -23614,7 +23614,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000162}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000163}, !- Summer Design Day Schedule Name @@ -23622,7 +23622,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000166}, !- Summer Design Day Schedule Name @@ -23630,7 +23630,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000169}, !- Summer Design Day Schedule Name @@ -23638,7 +23638,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000172}, !- Summer Design Day Schedule Name @@ -23646,7 +23646,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000175}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGas-CAN_AB_Calgary.osm index 295013a0ba..f45b97fe74 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGas-CAN_AB_Calgary.osm @@ -21545,41 +21545,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0042-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f033fca2-ef44-40e1-b885-57cb8179f531}<23.9 && {f033fca2-ef44-40e1-b885-57cb8179f531}>1.7, !- Program Line 1 - SET {09d8bfb8-51e1-4efd-95fe-31831de5fc24} = 29.4, !- Program Line 2 - SET {4432b123-1609-4963-a62f-53b471d64bc1} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f033fca2-ef44-40e1-b885-57cb8179f531}<23.9 && {f033fca2-ef44-40e1-b885-57cb8179f531}>1.7, !- Program Line 4 - SET {09d8bfb8-51e1-4efd-95fe-31831de5fc24} = 29.4, !- Program Line 5 - SET {4432b123-1609-4963-a62f-53b471d64bc1} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f033fca2-ef44-40e1-b885-57cb8179f531}<23.9 && {f033fca2-ef44-40e1-b885-57cb8179f531}>1.7, !- Program Line 7 - SET {09d8bfb8-51e1-4efd-95fe-31831de5fc24} = 29.4, !- Program Line 8 - SET {4432b123-1609-4963-a62f-53b471d64bc1} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f033fca2-ef44-40e1-b885-57cb8179f531}<23.9 && {f033fca2-ef44-40e1-b885-57cb8179f531}>1.7, !- Program Line 10 - SET {09d8bfb8-51e1-4efd-95fe-31831de5fc24} = 29.4, !- Program Line 11 - SET {4432b123-1609-4963-a62f-53b471d64bc1} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {57c9c283-c805-44a4-ba99-882253a54c7b}<23.9 && {57c9c283-c805-44a4-ba99-882253a54c7b}>1.7, !- Program Line 1 + SET {a1f496d8-8b9f-4036-8765-2a8f0d9a998f} = 29.4, !- Program Line 2 + SET {dc4751f2-25d9-4b82-8d11-efe6faa0dfa7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {57c9c283-c805-44a4-ba99-882253a54c7b}<23.9 && {57c9c283-c805-44a4-ba99-882253a54c7b}>1.7, !- Program Line 4 + SET {a1f496d8-8b9f-4036-8765-2a8f0d9a998f} = 29.4, !- Program Line 5 + SET {dc4751f2-25d9-4b82-8d11-efe6faa0dfa7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {57c9c283-c805-44a4-ba99-882253a54c7b}<23.9 && {57c9c283-c805-44a4-ba99-882253a54c7b}>1.7, !- Program Line 7 + SET {a1f496d8-8b9f-4036-8765-2a8f0d9a998f} = 29.4, !- Program Line 8 + SET {dc4751f2-25d9-4b82-8d11-efe6faa0dfa7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {57c9c283-c805-44a4-ba99-882253a54c7b}<23.9 && {57c9c283-c805-44a4-ba99-882253a54c7b}>1.7, !- Program Line 10 + SET {a1f496d8-8b9f-4036-8765-2a8f0d9a998f} = 29.4, !- Program Line 11 + SET {dc4751f2-25d9-4b82-8d11-efe6faa0dfa7} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {09d8bfb8-51e1-4efd-95fe-31831de5fc24} = NULL, !- Program Line 14 - SET {4432b123-1609-4963-a62f-53b471d64bc1} = NULL, !- Program Line 15 + SET {a1f496d8-8b9f-4036-8765-2a8f0d9a998f} = NULL, !- Program Line 14 + SET {dc4751f2-25d9-4b82-8d11-efe6faa0dfa7} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0042-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f033fca2-ef44-40e1-b885-57cb8179f531}<23.9 && {f033fca2-ef44-40e1-b885-57cb8179f531}>1.7, !- Program Line 1 - SET {7f8e801a-a220-43fe-84c8-8e590d784b63} = 29.4, !- Program Line 2 - SET {e647d40a-6eef-4be4-b234-4e015fb9cc8b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f033fca2-ef44-40e1-b885-57cb8179f531}<23.9 && {f033fca2-ef44-40e1-b885-57cb8179f531}>1.7, !- Program Line 4 - SET {7f8e801a-a220-43fe-84c8-8e590d784b63} = 29.4, !- Program Line 5 - SET {e647d40a-6eef-4be4-b234-4e015fb9cc8b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f033fca2-ef44-40e1-b885-57cb8179f531}<23.9 && {f033fca2-ef44-40e1-b885-57cb8179f531}>1.7, !- Program Line 7 - SET {7f8e801a-a220-43fe-84c8-8e590d784b63} = 29.4, !- Program Line 8 - SET {e647d40a-6eef-4be4-b234-4e015fb9cc8b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f033fca2-ef44-40e1-b885-57cb8179f531}<23.9 && {f033fca2-ef44-40e1-b885-57cb8179f531}>1.7, !- Program Line 10 - SET {7f8e801a-a220-43fe-84c8-8e590d784b63} = 29.4, !- Program Line 11 - SET {e647d40a-6eef-4be4-b234-4e015fb9cc8b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {57c9c283-c805-44a4-ba99-882253a54c7b}<23.9 && {57c9c283-c805-44a4-ba99-882253a54c7b}>1.7, !- Program Line 1 + SET {eef18f22-6748-495a-b02e-9546f4888070} = 29.4, !- Program Line 2 + SET {6d525ba3-dea3-439d-a457-ed6c8f46d621} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {57c9c283-c805-44a4-ba99-882253a54c7b}<23.9 && {57c9c283-c805-44a4-ba99-882253a54c7b}>1.7, !- Program Line 4 + SET {eef18f22-6748-495a-b02e-9546f4888070} = 29.4, !- Program Line 5 + SET {6d525ba3-dea3-439d-a457-ed6c8f46d621} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {57c9c283-c805-44a4-ba99-882253a54c7b}<23.9 && {57c9c283-c805-44a4-ba99-882253a54c7b}>1.7, !- Program Line 7 + SET {eef18f22-6748-495a-b02e-9546f4888070} = 29.4, !- Program Line 8 + SET {6d525ba3-dea3-439d-a457-ed6c8f46d621} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {57c9c283-c805-44a4-ba99-882253a54c7b}<23.9 && {57c9c283-c805-44a4-ba99-882253a54c7b}>1.7, !- Program Line 10 + SET {eef18f22-6748-495a-b02e-9546f4888070} = 29.4, !- Program Line 11 + SET {6d525ba3-dea3-439d-a457-ed6c8f46d621} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7f8e801a-a220-43fe-84c8-8e590d784b63} = NULL, !- Program Line 14 - SET {e647d40a-6eef-4be4-b234-4e015fb9cc8b} = NULL, !- Program Line 15 + SET {eef18f22-6748-495a-b02e-9546f4888070} = NULL, !- Program Line 14 + SET {6d525ba3-dea3-439d-a457-ed6c8f46d621} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -33958,7 +33958,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0070-000000000149}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -34036,7 +34036,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0070-000000000150}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -34045,7 +34045,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0070-000000000151}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -34081,7 +34081,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0070-000000000155}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -34264,7 +34264,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0070-000000000160}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -34732,7 +34732,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0070-000000000166}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -35413,7 +35413,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0070-000000000193}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -37909,7 +37909,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0072-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0070-000000000149}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -38145,13 +38145,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0072-000000000043}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0070-000000000150}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0072-000000000044}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0070-000000000151}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -38163,7 +38163,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0072-000000000046}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0073-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0073-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0070-000000000155}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 164e446607..23b52b05b3 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -112,7 +112,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000046}, !- Availability Schedule {00000000-0000-0000-0010-000000000007}, !- Availability Manager List Name @@ -134,7 +134,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000047}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -156,7 +156,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -178,7 +178,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -200,7 +200,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -222,7 +222,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -13864,7 +13864,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13872,7 +13872,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13912,67 +13912,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {959a23c2-6f1d-4fc7-b379-d0695e7628e4}<23.9 && {959a23c2-6f1d-4fc7-b379-d0695e7628e4}>1.7, !- Program Line 1 - SET {62b32219-9eac-4529-bb14-7005fa02934c} = 29.4, !- Program Line 2 - SET {26d2acdc-31fb-4982-9f19-c396b2c75d0d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {959a23c2-6f1d-4fc7-b379-d0695e7628e4}<23.9 && {959a23c2-6f1d-4fc7-b379-d0695e7628e4}>1.7, !- Program Line 4 - SET {62b32219-9eac-4529-bb14-7005fa02934c} = 29.4, !- Program Line 5 - SET {26d2acdc-31fb-4982-9f19-c396b2c75d0d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {959a23c2-6f1d-4fc7-b379-d0695e7628e4}<23.9 && {959a23c2-6f1d-4fc7-b379-d0695e7628e4}>1.7, !- Program Line 7 - SET {62b32219-9eac-4529-bb14-7005fa02934c} = 29.4, !- Program Line 8 - SET {26d2acdc-31fb-4982-9f19-c396b2c75d0d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {959a23c2-6f1d-4fc7-b379-d0695e7628e4}<23.9 && {959a23c2-6f1d-4fc7-b379-d0695e7628e4}>1.7, !- Program Line 10 - SET {62b32219-9eac-4529-bb14-7005fa02934c} = 29.4, !- Program Line 11 - SET {26d2acdc-31fb-4982-9f19-c396b2c75d0d} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b3d98574-1764-48a9-aebe-8a5eef2fcd5c}<23.9 && {b3d98574-1764-48a9-aebe-8a5eef2fcd5c}>1.7, !- Program Line 1 + SET {1642ed64-f976-4211-8159-31aaf39fe5aa} = 29.4, !- Program Line 2 + SET {dbb014b0-0b98-4c69-9ee2-dbaaf1a56347} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b3d98574-1764-48a9-aebe-8a5eef2fcd5c}<23.9 && {b3d98574-1764-48a9-aebe-8a5eef2fcd5c}>1.7, !- Program Line 4 + SET {1642ed64-f976-4211-8159-31aaf39fe5aa} = 29.4, !- Program Line 5 + SET {dbb014b0-0b98-4c69-9ee2-dbaaf1a56347} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b3d98574-1764-48a9-aebe-8a5eef2fcd5c}<23.9 && {b3d98574-1764-48a9-aebe-8a5eef2fcd5c}>1.7, !- Program Line 7 + SET {1642ed64-f976-4211-8159-31aaf39fe5aa} = 29.4, !- Program Line 8 + SET {dbb014b0-0b98-4c69-9ee2-dbaaf1a56347} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b3d98574-1764-48a9-aebe-8a5eef2fcd5c}<23.9 && {b3d98574-1764-48a9-aebe-8a5eef2fcd5c}>1.7, !- Program Line 10 + SET {1642ed64-f976-4211-8159-31aaf39fe5aa} = 29.4, !- Program Line 11 + SET {dbb014b0-0b98-4c69-9ee2-dbaaf1a56347} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {62b32219-9eac-4529-bb14-7005fa02934c} = NULL, !- Program Line 14 - SET {26d2acdc-31fb-4982-9f19-c396b2c75d0d} = NULL, !- Program Line 15 + SET {1642ed64-f976-4211-8159-31aaf39fe5aa} = NULL, !- Program Line 14 + SET {dbb014b0-0b98-4c69-9ee2-dbaaf1a56347} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0de41bbb-d386-4504-bf18-446957d6cc5a}<23.9 && {0de41bbb-d386-4504-bf18-446957d6cc5a}>1.7, !- Program Line 1 - SET {f6978d37-23ca-495a-a59a-cf38ba7287eb} = 29.4, !- Program Line 2 - SET {09fea60b-f68d-4b5f-be28-546896de787a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0de41bbb-d386-4504-bf18-446957d6cc5a}<23.9 && {0de41bbb-d386-4504-bf18-446957d6cc5a}>1.7, !- Program Line 4 - SET {f6978d37-23ca-495a-a59a-cf38ba7287eb} = 29.4, !- Program Line 5 - SET {09fea60b-f68d-4b5f-be28-546896de787a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0de41bbb-d386-4504-bf18-446957d6cc5a}<23.9 && {0de41bbb-d386-4504-bf18-446957d6cc5a}>1.7, !- Program Line 7 - SET {f6978d37-23ca-495a-a59a-cf38ba7287eb} = 29.4, !- Program Line 8 - SET {09fea60b-f68d-4b5f-be28-546896de787a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0de41bbb-d386-4504-bf18-446957d6cc5a}<23.9 && {0de41bbb-d386-4504-bf18-446957d6cc5a}>1.7, !- Program Line 10 - SET {f6978d37-23ca-495a-a59a-cf38ba7287eb} = 29.4, !- Program Line 11 - SET {09fea60b-f68d-4b5f-be28-546896de787a} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}<23.9 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}>1.7, !- Program Line 1 + SET {ea7aee7d-28e3-424f-9fab-22c59b53f2e0} = 29.4, !- Program Line 2 + SET {4be03eca-cb08-44ec-ae0f-bcc77fdf0d1a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}<23.9 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}>1.7, !- Program Line 4 + SET {ea7aee7d-28e3-424f-9fab-22c59b53f2e0} = 29.4, !- Program Line 5 + SET {4be03eca-cb08-44ec-ae0f-bcc77fdf0d1a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}<23.9 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}>1.7, !- Program Line 7 + SET {ea7aee7d-28e3-424f-9fab-22c59b53f2e0} = 29.4, !- Program Line 8 + SET {4be03eca-cb08-44ec-ae0f-bcc77fdf0d1a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}<23.9 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}>1.7, !- Program Line 10 + SET {ea7aee7d-28e3-424f-9fab-22c59b53f2e0} = 29.4, !- Program Line 11 + SET {4be03eca-cb08-44ec-ae0f-bcc77fdf0d1a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f6978d37-23ca-495a-a59a-cf38ba7287eb} = NULL, !- Program Line 14 - SET {09fea60b-f68d-4b5f-be28-546896de787a} = NULL, !- Program Line 15 + SET {ea7aee7d-28e3-424f-9fab-22c59b53f2e0} = NULL, !- Program Line 14 + SET {4be03eca-cb08-44ec-ae0f-bcc77fdf0d1a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0de41bbb-d386-4504-bf18-446957d6cc5a}<23.9 && {0de41bbb-d386-4504-bf18-446957d6cc5a}>1.7, !- Program Line 1 - SET {11f5ba3c-dd0a-410b-a655-310c2b1ac786} = 29.4, !- Program Line 2 - SET {6bdf1646-4181-4708-96cc-32581b9d534c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0de41bbb-d386-4504-bf18-446957d6cc5a}<23.9 && {0de41bbb-d386-4504-bf18-446957d6cc5a}>1.7, !- Program Line 4 - SET {11f5ba3c-dd0a-410b-a655-310c2b1ac786} = 29.4, !- Program Line 5 - SET {6bdf1646-4181-4708-96cc-32581b9d534c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0de41bbb-d386-4504-bf18-446957d6cc5a}<23.9 && {0de41bbb-d386-4504-bf18-446957d6cc5a}>1.7, !- Program Line 7 - SET {11f5ba3c-dd0a-410b-a655-310c2b1ac786} = 29.4, !- Program Line 8 - SET {6bdf1646-4181-4708-96cc-32581b9d534c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0de41bbb-d386-4504-bf18-446957d6cc5a}<23.9 && {0de41bbb-d386-4504-bf18-446957d6cc5a}>1.7, !- Program Line 10 - SET {11f5ba3c-dd0a-410b-a655-310c2b1ac786} = 29.4, !- Program Line 11 - SET {6bdf1646-4181-4708-96cc-32581b9d534c} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}<23.9 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}>1.7, !- Program Line 1 + SET {5325a627-56ec-433f-8058-6dfdd007a236} = 29.4, !- Program Line 2 + SET {131062b0-cdb2-4555-afd7-d16c46b760d2} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}<23.9 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}>1.7, !- Program Line 4 + SET {5325a627-56ec-433f-8058-6dfdd007a236} = 29.4, !- Program Line 5 + SET {131062b0-cdb2-4555-afd7-d16c46b760d2} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}<23.9 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}>1.7, !- Program Line 7 + SET {5325a627-56ec-433f-8058-6dfdd007a236} = 29.4, !- Program Line 8 + SET {131062b0-cdb2-4555-afd7-d16c46b760d2} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}<23.9 && {1409bf35-dec8-4ce8-a0dc-1da63fa02f2d}>1.7, !- Program Line 10 + SET {5325a627-56ec-433f-8058-6dfdd007a236} = 29.4, !- Program Line 11 + SET {131062b0-cdb2-4555-afd7-d16c46b760d2} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {11f5ba3c-dd0a-410b-a655-310c2b1ac786} = NULL, !- Program Line 14 - SET {6bdf1646-4181-4708-96cc-32581b9d534c} = NULL, !- Program Line 15 + SET {5325a627-56ec-433f-8058-6dfdd007a236} = NULL, !- Program Line 14 + SET {131062b0-cdb2-4555-afd7-d16c46b760d2} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -18197,253 +18197,253 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000547}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000115}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000548}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000116}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000549}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000127}, !- Inlet Port {00000000-0000-0000-0019-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000550}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000551}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000120}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000552}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000113}, !- Inlet Port {00000000-0000-0000-0019-000000000126}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000553}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000121}, !- Inlet Port {00000000-0000-0000-0019-000000000114}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000554}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000814}, !- Inlet Port {00000000-0000-0000-0019-000000000816}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000555}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000817}, !- Inlet Port {00000000-0000-0000-0019-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000556}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000822}, !- Inlet Port {00000000-0000-0000-0019-000000000823}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000557}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000818}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000558}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000819}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000559}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000812}, !- Inlet Port {00000000-0000-0000-0019-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000560}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000820}, !- Inlet Port {00000000-0000-0000-0019-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000561}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000836}, !- Inlet Port {00000000-0000-0000-0019-000000000838}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000562}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000839}, !- Inlet Port {00000000-0000-0000-0019-000000000837}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000563}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000844}, !- Inlet Port {00000000-0000-0000-0019-000000000845}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000564}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000840}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000565}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000841}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000566}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000834}, !- Inlet Port {00000000-0000-0000-0019-000000000843}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000567}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000842}, !- Inlet Port {00000000-0000-0000-0019-000000000835}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000568}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000792}, !- Inlet Port {00000000-0000-0000-0019-000000000794}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000569}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000795}, !- Inlet Port {00000000-0000-0000-0019-000000000793}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000570}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000800}, !- Inlet Port {00000000-0000-0000-0019-000000000801}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000571}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000796}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000572}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000797}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000573}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000790}, !- Inlet Port {00000000-0000-0000-0019-000000000799}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000574}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000798}, !- Inlet Port {00000000-0000-0000-0019-000000000791}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000575}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000692}, !- Inlet Port {00000000-0000-0000-0019-000000000694}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000576}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000695}, !- Inlet Port {00000000-0000-0000-0019-000000000693}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000577}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000700}, !- Inlet Port {00000000-0000-0000-0019-000000000701}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000578}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000696}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000579}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000697}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000580}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000690}, !- Inlet Port {00000000-0000-0000-0019-000000000699}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000581}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000698}, !- Inlet Port {00000000-0000-0000-0019-000000000691}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000582}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000660}, !- Inlet Port {00000000-0000-0000-0019-000000000662}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000583}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000663}, !- Inlet Port {00000000-0000-0000-0019-000000000661}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000584}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000668}, !- Inlet Port {00000000-0000-0000-0019-000000000669}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000585}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000664}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000586}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000665}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000587}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000658}, !- Inlet Port {00000000-0000-0000-0019-000000000667}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000588}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000666}, !- Inlet Port {00000000-0000-0000-0019-000000000659}; !- Outlet Port @@ -24643,7 +24643,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000159}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24652,7 +24652,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000160}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24661,7 +24661,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000161}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24670,7 +24670,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24685,7 +24685,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24694,7 +24694,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24703,7 +24703,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -24718,7 +24718,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24727,7 +24727,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24736,7 +24736,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -24751,7 +24751,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24760,7 +24760,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24769,7 +24769,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000171}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24778,7 +24778,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000172}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24787,7 +24787,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24796,7 +24796,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -24811,7 +24811,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000175}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24820,7 +24820,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000176}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -27336,7 +27336,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000046}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000159}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000160}, !- Summer Design Day Schedule Name @@ -27344,7 +27344,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000162}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000163}, !- Summer Design Day Schedule Name @@ -27352,7 +27352,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000166}, !- Summer Design Day Schedule Name @@ -27360,7 +27360,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000169}, !- Summer Design Day Schedule Name @@ -27368,7 +27368,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000172}, !- Summer Design Day Schedule Name @@ -27376,7 +27376,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000175}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 71a8c29a3e..0774f85448 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -112,7 +112,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000046}, !- Availability Schedule {00000000-0000-0000-0010-000000000007}, !- Availability Manager List Name @@ -134,7 +134,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000047}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -156,7 +156,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -178,7 +178,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -200,7 +200,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -222,7 +222,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14122,7 +14122,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14130,7 +14130,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14170,67 +14170,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e4193893-5121-4069-b889-fe2b0a21b184}<23.9 && {e4193893-5121-4069-b889-fe2b0a21b184}>1.7, !- Program Line 1 - SET {29c20c65-deeb-42d9-9231-323e2e83e9a7} = 29.4, !- Program Line 2 - SET {97528f42-d29f-45a9-b7ab-bd7a331dc1d6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e4193893-5121-4069-b889-fe2b0a21b184}<23.9 && {e4193893-5121-4069-b889-fe2b0a21b184}>1.7, !- Program Line 4 - SET {29c20c65-deeb-42d9-9231-323e2e83e9a7} = 29.4, !- Program Line 5 - SET {97528f42-d29f-45a9-b7ab-bd7a331dc1d6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e4193893-5121-4069-b889-fe2b0a21b184}<23.9 && {e4193893-5121-4069-b889-fe2b0a21b184}>1.7, !- Program Line 7 - SET {29c20c65-deeb-42d9-9231-323e2e83e9a7} = 29.4, !- Program Line 8 - SET {97528f42-d29f-45a9-b7ab-bd7a331dc1d6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e4193893-5121-4069-b889-fe2b0a21b184}<23.9 && {e4193893-5121-4069-b889-fe2b0a21b184}>1.7, !- Program Line 10 - SET {29c20c65-deeb-42d9-9231-323e2e83e9a7} = 29.4, !- Program Line 11 - SET {97528f42-d29f-45a9-b7ab-bd7a331dc1d6} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d9e8bc50-2e84-4f1d-888b-4e7a72bce227}<23.9 && {d9e8bc50-2e84-4f1d-888b-4e7a72bce227}>1.7, !- Program Line 1 + SET {381bad34-ead8-4dac-9877-01dd801d5771} = 29.4, !- Program Line 2 + SET {674636bf-c126-4270-94f4-d5ef847c4707} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d9e8bc50-2e84-4f1d-888b-4e7a72bce227}<23.9 && {d9e8bc50-2e84-4f1d-888b-4e7a72bce227}>1.7, !- Program Line 4 + SET {381bad34-ead8-4dac-9877-01dd801d5771} = 29.4, !- Program Line 5 + SET {674636bf-c126-4270-94f4-d5ef847c4707} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d9e8bc50-2e84-4f1d-888b-4e7a72bce227}<23.9 && {d9e8bc50-2e84-4f1d-888b-4e7a72bce227}>1.7, !- Program Line 7 + SET {381bad34-ead8-4dac-9877-01dd801d5771} = 29.4, !- Program Line 8 + SET {674636bf-c126-4270-94f4-d5ef847c4707} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d9e8bc50-2e84-4f1d-888b-4e7a72bce227}<23.9 && {d9e8bc50-2e84-4f1d-888b-4e7a72bce227}>1.7, !- Program Line 10 + SET {381bad34-ead8-4dac-9877-01dd801d5771} = 29.4, !- Program Line 11 + SET {674636bf-c126-4270-94f4-d5ef847c4707} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {29c20c65-deeb-42d9-9231-323e2e83e9a7} = NULL, !- Program Line 14 - SET {97528f42-d29f-45a9-b7ab-bd7a331dc1d6} = NULL, !- Program Line 15 + SET {381bad34-ead8-4dac-9877-01dd801d5771} = NULL, !- Program Line 14 + SET {674636bf-c126-4270-94f4-d5ef847c4707} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1b4f7288-adab-40a9-855b-7f57242bcf71}<23.9 && {1b4f7288-adab-40a9-855b-7f57242bcf71}>1.7, !- Program Line 1 - SET {ac92002c-76cf-4a6c-963a-036d15aa6c35} = 29.4, !- Program Line 2 - SET {0b2e76e9-7038-45cc-a1dd-3ffcedf65fa1} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1b4f7288-adab-40a9-855b-7f57242bcf71}<23.9 && {1b4f7288-adab-40a9-855b-7f57242bcf71}>1.7, !- Program Line 4 - SET {ac92002c-76cf-4a6c-963a-036d15aa6c35} = 29.4, !- Program Line 5 - SET {0b2e76e9-7038-45cc-a1dd-3ffcedf65fa1} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1b4f7288-adab-40a9-855b-7f57242bcf71}<23.9 && {1b4f7288-adab-40a9-855b-7f57242bcf71}>1.7, !- Program Line 7 - SET {ac92002c-76cf-4a6c-963a-036d15aa6c35} = 29.4, !- Program Line 8 - SET {0b2e76e9-7038-45cc-a1dd-3ffcedf65fa1} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1b4f7288-adab-40a9-855b-7f57242bcf71}<23.9 && {1b4f7288-adab-40a9-855b-7f57242bcf71}>1.7, !- Program Line 10 - SET {ac92002c-76cf-4a6c-963a-036d15aa6c35} = 29.4, !- Program Line 11 - SET {0b2e76e9-7038-45cc-a1dd-3ffcedf65fa1} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}<23.9 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}>1.7, !- Program Line 1 + SET {b48f4584-1f9f-42e9-bada-8506f2160043} = 29.4, !- Program Line 2 + SET {c4b76a4c-52ba-4e3a-b9a5-22f8e5695922} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}<23.9 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}>1.7, !- Program Line 4 + SET {b48f4584-1f9f-42e9-bada-8506f2160043} = 29.4, !- Program Line 5 + SET {c4b76a4c-52ba-4e3a-b9a5-22f8e5695922} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}<23.9 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}>1.7, !- Program Line 7 + SET {b48f4584-1f9f-42e9-bada-8506f2160043} = 29.4, !- Program Line 8 + SET {c4b76a4c-52ba-4e3a-b9a5-22f8e5695922} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}<23.9 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}>1.7, !- Program Line 10 + SET {b48f4584-1f9f-42e9-bada-8506f2160043} = 29.4, !- Program Line 11 + SET {c4b76a4c-52ba-4e3a-b9a5-22f8e5695922} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ac92002c-76cf-4a6c-963a-036d15aa6c35} = NULL, !- Program Line 14 - SET {0b2e76e9-7038-45cc-a1dd-3ffcedf65fa1} = NULL, !- Program Line 15 + SET {b48f4584-1f9f-42e9-bada-8506f2160043} = NULL, !- Program Line 14 + SET {c4b76a4c-52ba-4e3a-b9a5-22f8e5695922} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1b4f7288-adab-40a9-855b-7f57242bcf71}<23.9 && {1b4f7288-adab-40a9-855b-7f57242bcf71}>1.7, !- Program Line 1 - SET {7c436a32-5d33-4fbe-aa02-c0a8dada1091} = 29.4, !- Program Line 2 - SET {d4fd6f4d-1b3f-42a5-89bb-1519acca98fe} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1b4f7288-adab-40a9-855b-7f57242bcf71}<23.9 && {1b4f7288-adab-40a9-855b-7f57242bcf71}>1.7, !- Program Line 4 - SET {7c436a32-5d33-4fbe-aa02-c0a8dada1091} = 29.4, !- Program Line 5 - SET {d4fd6f4d-1b3f-42a5-89bb-1519acca98fe} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1b4f7288-adab-40a9-855b-7f57242bcf71}<23.9 && {1b4f7288-adab-40a9-855b-7f57242bcf71}>1.7, !- Program Line 7 - SET {7c436a32-5d33-4fbe-aa02-c0a8dada1091} = 29.4, !- Program Line 8 - SET {d4fd6f4d-1b3f-42a5-89bb-1519acca98fe} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1b4f7288-adab-40a9-855b-7f57242bcf71}<23.9 && {1b4f7288-adab-40a9-855b-7f57242bcf71}>1.7, !- Program Line 10 - SET {7c436a32-5d33-4fbe-aa02-c0a8dada1091} = 29.4, !- Program Line 11 - SET {d4fd6f4d-1b3f-42a5-89bb-1519acca98fe} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}<23.9 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}>1.7, !- Program Line 1 + SET {af5ee4c4-00df-4d6c-907b-408808724996} = 29.4, !- Program Line 2 + SET {b04180d1-56df-4a26-b78a-c924c26106cd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}<23.9 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}>1.7, !- Program Line 4 + SET {af5ee4c4-00df-4d6c-907b-408808724996} = 29.4, !- Program Line 5 + SET {b04180d1-56df-4a26-b78a-c924c26106cd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}<23.9 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}>1.7, !- Program Line 7 + SET {af5ee4c4-00df-4d6c-907b-408808724996} = 29.4, !- Program Line 8 + SET {b04180d1-56df-4a26-b78a-c924c26106cd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}<23.9 && {c5fd09e4-4cd0-433c-bd90-bbdad6e6cdad}>1.7, !- Program Line 10 + SET {af5ee4c4-00df-4d6c-907b-408808724996} = 29.4, !- Program Line 11 + SET {b04180d1-56df-4a26-b78a-c924c26106cd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7c436a32-5d33-4fbe-aa02-c0a8dada1091} = NULL, !- Program Line 14 - SET {d4fd6f4d-1b3f-42a5-89bb-1519acca98fe} = NULL, !- Program Line 15 + SET {af5ee4c4-00df-4d6c-907b-408808724996} = NULL, !- Program Line 14 + SET {b04180d1-56df-4a26-b78a-c924c26106cd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -18455,253 +18455,253 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000547}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000115}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000548}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000116}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000549}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000127}, !- Inlet Port {00000000-0000-0000-0019-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000550}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000551}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000120}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000552}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000113}, !- Inlet Port {00000000-0000-0000-0019-000000000126}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000553}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000121}, !- Inlet Port {00000000-0000-0000-0019-000000000114}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000554}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000814}, !- Inlet Port {00000000-0000-0000-0019-000000000816}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000555}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000817}, !- Inlet Port {00000000-0000-0000-0019-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000556}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000822}, !- Inlet Port {00000000-0000-0000-0019-000000000823}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000557}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000818}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000558}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000819}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000559}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000812}, !- Inlet Port {00000000-0000-0000-0019-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000560}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000820}, !- Inlet Port {00000000-0000-0000-0019-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000561}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000836}, !- Inlet Port {00000000-0000-0000-0019-000000000838}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000562}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000839}, !- Inlet Port {00000000-0000-0000-0019-000000000837}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000563}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000844}, !- Inlet Port {00000000-0000-0000-0019-000000000845}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000564}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000840}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000565}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000841}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000566}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000834}, !- Inlet Port {00000000-0000-0000-0019-000000000843}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000567}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000842}, !- Inlet Port {00000000-0000-0000-0019-000000000835}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000568}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000792}, !- Inlet Port {00000000-0000-0000-0019-000000000794}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000569}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000795}, !- Inlet Port {00000000-0000-0000-0019-000000000793}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000570}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000800}, !- Inlet Port {00000000-0000-0000-0019-000000000801}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000571}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000796}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000572}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000797}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000573}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000790}, !- Inlet Port {00000000-0000-0000-0019-000000000799}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000574}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000798}, !- Inlet Port {00000000-0000-0000-0019-000000000791}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000575}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000692}, !- Inlet Port {00000000-0000-0000-0019-000000000694}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000576}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000695}, !- Inlet Port {00000000-0000-0000-0019-000000000693}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000577}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000700}, !- Inlet Port {00000000-0000-0000-0019-000000000701}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000578}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000696}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000579}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000697}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000580}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000690}, !- Inlet Port {00000000-0000-0000-0019-000000000699}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000581}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000698}, !- Inlet Port {00000000-0000-0000-0019-000000000691}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000582}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000660}, !- Inlet Port {00000000-0000-0000-0019-000000000662}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000583}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000663}, !- Inlet Port {00000000-0000-0000-0019-000000000661}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000584}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000668}, !- Inlet Port {00000000-0000-0000-0019-000000000669}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000585}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000664}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000586}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000665}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000587}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000658}, !- Inlet Port {00000000-0000-0000-0019-000000000667}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000588}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000666}, !- Inlet Port {00000000-0000-0000-0019-000000000659}; !- Outlet Port @@ -24901,7 +24901,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000159}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24910,7 +24910,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000160}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24919,7 +24919,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000161}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24928,7 +24928,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24943,7 +24943,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24952,7 +24952,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24961,7 +24961,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -24976,7 +24976,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24985,7 +24985,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24994,7 +24994,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -25009,7 +25009,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25018,7 +25018,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25027,7 +25027,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000171}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25036,7 +25036,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000172}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25045,7 +25045,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25054,7 +25054,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -25069,7 +25069,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000175}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25078,7 +25078,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000176}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -27594,7 +27594,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000046}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000159}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000160}, !- Summer Design Day Schedule Name @@ -27602,7 +27602,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000162}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000163}, !- Summer Design Day Schedule Name @@ -27610,7 +27610,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000166}, !- Summer Design Day Schedule Name @@ -27618,7 +27618,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000169}, !- Summer Design Day Schedule Name @@ -27626,7 +27626,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000172}, !- Summer Design Day Schedule Name @@ -27634,7 +27634,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000175}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2017-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2017-Electricity-CAN_AB_Calgary.osm index 6db1d8f903..db33e075a3 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2017-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2017-Electricity-CAN_AB_Calgary.osm @@ -17952,41 +17952,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}<23.9 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}>1.7, !- Program Line 1 - SET {0d037aff-6d0f-4fc6-9671-881631270833} = 29.4, !- Program Line 2 - SET {5a433bfe-2dd4-4e2b-ad06-8406b9b871c1} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}<23.9 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}>1.7, !- Program Line 4 - SET {0d037aff-6d0f-4fc6-9671-881631270833} = 29.4, !- Program Line 5 - SET {5a433bfe-2dd4-4e2b-ad06-8406b9b871c1} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}<23.9 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}>1.7, !- Program Line 7 - SET {0d037aff-6d0f-4fc6-9671-881631270833} = 29.4, !- Program Line 8 - SET {5a433bfe-2dd4-4e2b-ad06-8406b9b871c1} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}<23.9 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}>1.7, !- Program Line 10 - SET {0d037aff-6d0f-4fc6-9671-881631270833} = 29.4, !- Program Line 11 - SET {5a433bfe-2dd4-4e2b-ad06-8406b9b871c1} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}<23.9 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}>1.7, !- Program Line 1 + SET {66128751-2b75-48f5-b0a5-b2510f5c3edf} = 29.4, !- Program Line 2 + SET {ac2b2a43-81a0-4f43-a2ca-df010633384a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}<23.9 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}>1.7, !- Program Line 4 + SET {66128751-2b75-48f5-b0a5-b2510f5c3edf} = 29.4, !- Program Line 5 + SET {ac2b2a43-81a0-4f43-a2ca-df010633384a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}<23.9 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}>1.7, !- Program Line 7 + SET {66128751-2b75-48f5-b0a5-b2510f5c3edf} = 29.4, !- Program Line 8 + SET {ac2b2a43-81a0-4f43-a2ca-df010633384a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}<23.9 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}>1.7, !- Program Line 10 + SET {66128751-2b75-48f5-b0a5-b2510f5c3edf} = 29.4, !- Program Line 11 + SET {ac2b2a43-81a0-4f43-a2ca-df010633384a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0d037aff-6d0f-4fc6-9671-881631270833} = NULL, !- Program Line 14 - SET {5a433bfe-2dd4-4e2b-ad06-8406b9b871c1} = NULL, !- Program Line 15 + SET {66128751-2b75-48f5-b0a5-b2510f5c3edf} = NULL, !- Program Line 14 + SET {ac2b2a43-81a0-4f43-a2ca-df010633384a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}<23.9 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}>1.7, !- Program Line 1 - SET {ae21c9cf-6606-4869-980f-d82263d795d3} = 29.4, !- Program Line 2 - SET {0769775e-a9d9-4baa-ac01-8a4ce70f2c3d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}<23.9 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}>1.7, !- Program Line 4 - SET {ae21c9cf-6606-4869-980f-d82263d795d3} = 29.4, !- Program Line 5 - SET {0769775e-a9d9-4baa-ac01-8a4ce70f2c3d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}<23.9 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}>1.7, !- Program Line 7 - SET {ae21c9cf-6606-4869-980f-d82263d795d3} = 29.4, !- Program Line 8 - SET {0769775e-a9d9-4baa-ac01-8a4ce70f2c3d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}<23.9 && {6acc43f4-20f0-4174-b63f-2fb49a1a4d55}>1.7, !- Program Line 10 - SET {ae21c9cf-6606-4869-980f-d82263d795d3} = 29.4, !- Program Line 11 - SET {0769775e-a9d9-4baa-ac01-8a4ce70f2c3d} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}<23.9 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}>1.7, !- Program Line 1 + SET {d90783c0-53e0-4a06-a9ee-a3a5b2fe92bb} = 29.4, !- Program Line 2 + SET {d1b7e5c6-3da0-4b44-8672-bd048cd5d1bd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}<23.9 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}>1.7, !- Program Line 4 + SET {d90783c0-53e0-4a06-a9ee-a3a5b2fe92bb} = 29.4, !- Program Line 5 + SET {d1b7e5c6-3da0-4b44-8672-bd048cd5d1bd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}<23.9 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}>1.7, !- Program Line 7 + SET {d90783c0-53e0-4a06-a9ee-a3a5b2fe92bb} = 29.4, !- Program Line 8 + SET {d1b7e5c6-3da0-4b44-8672-bd048cd5d1bd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}<23.9 && {acb18d9f-fae7-40cd-800d-16083b0abdc2}>1.7, !- Program Line 10 + SET {d90783c0-53e0-4a06-a9ee-a3a5b2fe92bb} = 29.4, !- Program Line 11 + SET {d1b7e5c6-3da0-4b44-8672-bd048cd5d1bd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ae21c9cf-6606-4869-980f-d82263d795d3} = NULL, !- Program Line 14 - SET {0769775e-a9d9-4baa-ac01-8a4ce70f2c3d} = NULL, !- Program Line 15 + SET {d90783c0-53e0-4a06-a9ee-a3a5b2fe92bb} = NULL, !- Program Line 14 + SET {d1b7e5c6-3da0-4b44-8672-bd048cd5d1bd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -29955,7 +29955,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000171}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -30033,7 +30033,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000172}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -30042,7 +30042,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000173}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -30090,7 +30090,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000177}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -30273,7 +30273,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000182}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -30741,7 +30741,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000188}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -31401,7 +31401,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000212}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -34201,7 +34201,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000171}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -34473,13 +34473,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000049}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000172}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000050}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000173}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -34491,7 +34491,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000052}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0070-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000177}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 7e1c435106..8934c98592 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -96,7 +96,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -118,7 +118,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -140,7 +140,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -162,7 +162,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -184,7 +184,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10514,7 +10514,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0065-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10522,7 +10522,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0065-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10562,67 +10562,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {51e33007-d9b1-4194-9aa9-c6510a314b28}<23.9 && {51e33007-d9b1-4194-9aa9-c6510a314b28}>1.7, !- Program Line 1 - SET {6d48de16-4e57-4eed-ada6-fdaad8e18823} = 29.4, !- Program Line 2 - SET {2876dc2a-2f35-4666-a219-2c6d9e534eae} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {51e33007-d9b1-4194-9aa9-c6510a314b28}<23.9 && {51e33007-d9b1-4194-9aa9-c6510a314b28}>1.7, !- Program Line 4 - SET {6d48de16-4e57-4eed-ada6-fdaad8e18823} = 29.4, !- Program Line 5 - SET {2876dc2a-2f35-4666-a219-2c6d9e534eae} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {51e33007-d9b1-4194-9aa9-c6510a314b28}<23.9 && {51e33007-d9b1-4194-9aa9-c6510a314b28}>1.7, !- Program Line 7 - SET {6d48de16-4e57-4eed-ada6-fdaad8e18823} = 29.4, !- Program Line 8 - SET {2876dc2a-2f35-4666-a219-2c6d9e534eae} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {51e33007-d9b1-4194-9aa9-c6510a314b28}<23.9 && {51e33007-d9b1-4194-9aa9-c6510a314b28}>1.7, !- Program Line 10 - SET {6d48de16-4e57-4eed-ada6-fdaad8e18823} = 29.4, !- Program Line 11 - SET {2876dc2a-2f35-4666-a219-2c6d9e534eae} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {451f13ea-2ebf-4d2e-84af-30a4abab7fcd}<23.9 && {451f13ea-2ebf-4d2e-84af-30a4abab7fcd}>1.7, !- Program Line 1 + SET {fd13887e-1aed-4fa9-8751-2528685a6a00} = 29.4, !- Program Line 2 + SET {531a64d9-82fe-4da8-8d5b-1b66aaa80edb} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {451f13ea-2ebf-4d2e-84af-30a4abab7fcd}<23.9 && {451f13ea-2ebf-4d2e-84af-30a4abab7fcd}>1.7, !- Program Line 4 + SET {fd13887e-1aed-4fa9-8751-2528685a6a00} = 29.4, !- Program Line 5 + SET {531a64d9-82fe-4da8-8d5b-1b66aaa80edb} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {451f13ea-2ebf-4d2e-84af-30a4abab7fcd}<23.9 && {451f13ea-2ebf-4d2e-84af-30a4abab7fcd}>1.7, !- Program Line 7 + SET {fd13887e-1aed-4fa9-8751-2528685a6a00} = 29.4, !- Program Line 8 + SET {531a64d9-82fe-4da8-8d5b-1b66aaa80edb} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {451f13ea-2ebf-4d2e-84af-30a4abab7fcd}<23.9 && {451f13ea-2ebf-4d2e-84af-30a4abab7fcd}>1.7, !- Program Line 10 + SET {fd13887e-1aed-4fa9-8751-2528685a6a00} = 29.4, !- Program Line 11 + SET {531a64d9-82fe-4da8-8d5b-1b66aaa80edb} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6d48de16-4e57-4eed-ada6-fdaad8e18823} = NULL, !- Program Line 14 - SET {2876dc2a-2f35-4666-a219-2c6d9e534eae} = NULL, !- Program Line 15 + SET {fd13887e-1aed-4fa9-8751-2528685a6a00} = NULL, !- Program Line 14 + SET {531a64d9-82fe-4da8-8d5b-1b66aaa80edb} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}<23.9 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}>1.7, !- Program Line 1 - SET {3720c335-280e-4dd4-8aed-c39c8bbae5bb} = 29.4, !- Program Line 2 - SET {61ad428a-a61f-4da5-ac16-b5d659739fba} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}<23.9 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}>1.7, !- Program Line 4 - SET {3720c335-280e-4dd4-8aed-c39c8bbae5bb} = 29.4, !- Program Line 5 - SET {61ad428a-a61f-4da5-ac16-b5d659739fba} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}<23.9 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}>1.7, !- Program Line 7 - SET {3720c335-280e-4dd4-8aed-c39c8bbae5bb} = 29.4, !- Program Line 8 - SET {61ad428a-a61f-4da5-ac16-b5d659739fba} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}<23.9 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}>1.7, !- Program Line 10 - SET {3720c335-280e-4dd4-8aed-c39c8bbae5bb} = 29.4, !- Program Line 11 - SET {61ad428a-a61f-4da5-ac16-b5d659739fba} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}<23.9 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}>1.7, !- Program Line 1 + SET {54600908-82d1-42cf-92a2-fb532a2cef19} = 29.4, !- Program Line 2 + SET {5106822d-42d8-4c06-99aa-59b338428afd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}<23.9 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}>1.7, !- Program Line 4 + SET {54600908-82d1-42cf-92a2-fb532a2cef19} = 29.4, !- Program Line 5 + SET {5106822d-42d8-4c06-99aa-59b338428afd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}<23.9 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}>1.7, !- Program Line 7 + SET {54600908-82d1-42cf-92a2-fb532a2cef19} = 29.4, !- Program Line 8 + SET {5106822d-42d8-4c06-99aa-59b338428afd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}<23.9 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}>1.7, !- Program Line 10 + SET {54600908-82d1-42cf-92a2-fb532a2cef19} = 29.4, !- Program Line 11 + SET {5106822d-42d8-4c06-99aa-59b338428afd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3720c335-280e-4dd4-8aed-c39c8bbae5bb} = NULL, !- Program Line 14 - SET {61ad428a-a61f-4da5-ac16-b5d659739fba} = NULL, !- Program Line 15 + SET {54600908-82d1-42cf-92a2-fb532a2cef19} = NULL, !- Program Line 14 + SET {5106822d-42d8-4c06-99aa-59b338428afd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}<23.9 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}>1.7, !- Program Line 1 - SET {593e4385-9af6-47cd-92b4-98aa17b94125} = 29.4, !- Program Line 2 - SET {23e11611-6db6-4c34-a670-40714c8cd96e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}<23.9 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}>1.7, !- Program Line 4 - SET {593e4385-9af6-47cd-92b4-98aa17b94125} = 29.4, !- Program Line 5 - SET {23e11611-6db6-4c34-a670-40714c8cd96e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}<23.9 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}>1.7, !- Program Line 7 - SET {593e4385-9af6-47cd-92b4-98aa17b94125} = 29.4, !- Program Line 8 - SET {23e11611-6db6-4c34-a670-40714c8cd96e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}<23.9 && {54587aaf-0e2a-410b-ace8-7421b3d81c0e}>1.7, !- Program Line 10 - SET {593e4385-9af6-47cd-92b4-98aa17b94125} = 29.4, !- Program Line 11 - SET {23e11611-6db6-4c34-a670-40714c8cd96e} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}<23.9 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}>1.7, !- Program Line 1 + SET {4334879b-a083-40bc-9423-c5e2c8468ede} = 29.4, !- Program Line 2 + SET {58036234-9455-4328-9401-a5743beceb76} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}<23.9 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}>1.7, !- Program Line 4 + SET {4334879b-a083-40bc-9423-c5e2c8468ede} = 29.4, !- Program Line 5 + SET {58036234-9455-4328-9401-a5743beceb76} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}<23.9 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}>1.7, !- Program Line 7 + SET {4334879b-a083-40bc-9423-c5e2c8468ede} = 29.4, !- Program Line 8 + SET {58036234-9455-4328-9401-a5743beceb76} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}<23.9 && {0e8841dc-2c61-42f0-a637-729cd11fa1e7}>1.7, !- Program Line 10 + SET {4334879b-a083-40bc-9423-c5e2c8468ede} = 29.4, !- Program Line 11 + SET {58036234-9455-4328-9401-a5743beceb76} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {593e4385-9af6-47cd-92b4-98aa17b94125} = NULL, !- Program Line 14 - SET {23e11611-6db6-4c34-a670-40714c8cd96e} = NULL, !- Program Line 15 + SET {4334879b-a083-40bc-9423-c5e2c8468ede} = NULL, !- Program Line 14 + SET {58036234-9455-4328-9401-a5743beceb76} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -10794,7 +10794,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10820,7 +10820,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10846,7 +10846,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10872,7 +10872,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10898,7 +10898,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14096,271 +14096,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000401}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000402}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000403}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000100}, !- Inlet Port {00000000-0000-0000-0017-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000404}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000818}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000405}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000823}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000406}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000407}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000094}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000408}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000819}, !- Inlet Port {00000000-0000-0000-0017-000000000820}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000409}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000821}, !- Inlet Port {00000000-0000-0000-0017-000000000822}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000410}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000534}, !- Inlet Port {00000000-0000-0000-0017-000000000536}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000411}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000537}, !- Inlet Port {00000000-0000-0000-0017-000000000535}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000412}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000540}, !- Inlet Port {00000000-0000-0000-0017-000000000541}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000413}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000830}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000414}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000835}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000415}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000532}, !- Inlet Port {00000000-0000-0000-0017-000000000539}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000416}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000538}, !- Inlet Port {00000000-0000-0000-0017-000000000533}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000417}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000518}, !- Inlet Port {00000000-0000-0000-0017-000000000520}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000418}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000521}, !- Inlet Port {00000000-0000-0000-0017-000000000519}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000419}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000524}, !- Inlet Port {00000000-0000-0000-0017-000000000525}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000420}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000824}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000421}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000829}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000422}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000516}, !- Inlet Port {00000000-0000-0000-0017-000000000523}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000423}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000522}, !- Inlet Port {00000000-0000-0000-0017-000000000517}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000424}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000831}, !- Inlet Port {00000000-0000-0000-0017-000000000832}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000425}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000833}, !- Inlet Port {00000000-0000-0000-0017-000000000834}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000426}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000825}, !- Inlet Port {00000000-0000-0000-0017-000000000826}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000427}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000827}, !- Inlet Port {00000000-0000-0000-0017-000000000828}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000428}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000444}, !- Inlet Port {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000429}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000447}, !- Inlet Port {00000000-0000-0000-0017-000000000445}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000430}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000450}, !- Inlet Port {00000000-0000-0000-0017-000000000451}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000431}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000842}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000432}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000847}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000433}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000442}, !- Inlet Port {00000000-0000-0000-0017-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000434}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000448}, !- Inlet Port {00000000-0000-0000-0017-000000000443}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000435}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000422}, !- Inlet Port {00000000-0000-0000-0017-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000436}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000425}, !- Inlet Port {00000000-0000-0000-0017-000000000423}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000437}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000428}, !- Inlet Port {00000000-0000-0000-0017-000000000429}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000438}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000836}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000439}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000841}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000440}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000420}, !- Inlet Port {00000000-0000-0000-0017-000000000427}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000441}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000426}, !- Inlet Port {00000000-0000-0000-0017-000000000421}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000442}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000843}, !- Inlet Port {00000000-0000-0000-0017-000000000844}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000443}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000845}, !- Inlet Port {00000000-0000-0000-0017-000000000846}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000444}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000837}, !- Inlet Port {00000000-0000-0000-0017-000000000838}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000445}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000839}, !- Inlet Port {00000000-0000-0000-0017-000000000840}; !- Outlet Port @@ -20977,7 +20977,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000181}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20992,7 +20992,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000182}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21001,7 +21001,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000183}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21010,7 +21010,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21025,7 +21025,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21034,7 +21034,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21043,7 +21043,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21058,7 +21058,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21067,7 +21067,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21076,7 +21076,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000190}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -21091,7 +21091,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000191}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21100,7 +21100,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000192}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21109,7 +21109,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000193}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -21124,7 +21124,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000194}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21133,7 +21133,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000195}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23989,7 +23989,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000182}, !- Summer Design Day Schedule Name @@ -23997,7 +23997,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000185}, !- Summer Design Day Schedule Name @@ -24005,7 +24005,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000188}, !- Summer Design Day Schedule Name @@ -24013,7 +24013,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000191}, !- Summer Design Day Schedule Name @@ -24021,7 +24021,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000194}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index caa7e40aa1..16c2363d60 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -96,7 +96,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -118,7 +118,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -140,7 +140,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -162,7 +162,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -184,7 +184,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10772,7 +10772,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0065-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10780,7 +10780,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0065-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10820,67 +10820,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {de7530c9-dea2-41ba-b5a5-8c8a861dc8ca}<23.9 && {de7530c9-dea2-41ba-b5a5-8c8a861dc8ca}>1.7, !- Program Line 1 - SET {0619f738-e10c-406e-b901-fc2d5cd6cf3c} = 29.4, !- Program Line 2 - SET {7acf3a05-2489-4561-84c3-1d1fd49267a8} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {de7530c9-dea2-41ba-b5a5-8c8a861dc8ca}<23.9 && {de7530c9-dea2-41ba-b5a5-8c8a861dc8ca}>1.7, !- Program Line 4 - SET {0619f738-e10c-406e-b901-fc2d5cd6cf3c} = 29.4, !- Program Line 5 - SET {7acf3a05-2489-4561-84c3-1d1fd49267a8} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {de7530c9-dea2-41ba-b5a5-8c8a861dc8ca}<23.9 && {de7530c9-dea2-41ba-b5a5-8c8a861dc8ca}>1.7, !- Program Line 7 - SET {0619f738-e10c-406e-b901-fc2d5cd6cf3c} = 29.4, !- Program Line 8 - SET {7acf3a05-2489-4561-84c3-1d1fd49267a8} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {de7530c9-dea2-41ba-b5a5-8c8a861dc8ca}<23.9 && {de7530c9-dea2-41ba-b5a5-8c8a861dc8ca}>1.7, !- Program Line 10 - SET {0619f738-e10c-406e-b901-fc2d5cd6cf3c} = 29.4, !- Program Line 11 - SET {7acf3a05-2489-4561-84c3-1d1fd49267a8} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ea51ae6e-18d8-4aef-8842-17db219f86fe}<23.9 && {ea51ae6e-18d8-4aef-8842-17db219f86fe}>1.7, !- Program Line 1 + SET {f861e3d5-58b3-4d6b-875c-00569bcf6acc} = 29.4, !- Program Line 2 + SET {43d6e946-3087-4250-a334-98a696e3a190} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ea51ae6e-18d8-4aef-8842-17db219f86fe}<23.9 && {ea51ae6e-18d8-4aef-8842-17db219f86fe}>1.7, !- Program Line 4 + SET {f861e3d5-58b3-4d6b-875c-00569bcf6acc} = 29.4, !- Program Line 5 + SET {43d6e946-3087-4250-a334-98a696e3a190} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ea51ae6e-18d8-4aef-8842-17db219f86fe}<23.9 && {ea51ae6e-18d8-4aef-8842-17db219f86fe}>1.7, !- Program Line 7 + SET {f861e3d5-58b3-4d6b-875c-00569bcf6acc} = 29.4, !- Program Line 8 + SET {43d6e946-3087-4250-a334-98a696e3a190} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ea51ae6e-18d8-4aef-8842-17db219f86fe}<23.9 && {ea51ae6e-18d8-4aef-8842-17db219f86fe}>1.7, !- Program Line 10 + SET {f861e3d5-58b3-4d6b-875c-00569bcf6acc} = 29.4, !- Program Line 11 + SET {43d6e946-3087-4250-a334-98a696e3a190} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0619f738-e10c-406e-b901-fc2d5cd6cf3c} = NULL, !- Program Line 14 - SET {7acf3a05-2489-4561-84c3-1d1fd49267a8} = NULL, !- Program Line 15 + SET {f861e3d5-58b3-4d6b-875c-00569bcf6acc} = NULL, !- Program Line 14 + SET {43d6e946-3087-4250-a334-98a696e3a190} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}<23.9 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}>1.7, !- Program Line 1 - SET {e9199f9f-5afe-4ca6-8bb5-8680a37f0d12} = 29.4, !- Program Line 2 - SET {692e3739-2c8f-4766-b7dd-f3a93b068de5} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}<23.9 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}>1.7, !- Program Line 4 - SET {e9199f9f-5afe-4ca6-8bb5-8680a37f0d12} = 29.4, !- Program Line 5 - SET {692e3739-2c8f-4766-b7dd-f3a93b068de5} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}<23.9 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}>1.7, !- Program Line 7 - SET {e9199f9f-5afe-4ca6-8bb5-8680a37f0d12} = 29.4, !- Program Line 8 - SET {692e3739-2c8f-4766-b7dd-f3a93b068de5} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}<23.9 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}>1.7, !- Program Line 10 - SET {e9199f9f-5afe-4ca6-8bb5-8680a37f0d12} = 29.4, !- Program Line 11 - SET {692e3739-2c8f-4766-b7dd-f3a93b068de5} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}<23.9 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}>1.7, !- Program Line 1 + SET {347abce9-7133-4bc5-a4eb-205f5f3cd7ba} = 29.4, !- Program Line 2 + SET {8d2276da-09c3-47c4-8762-48031a46e35e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}<23.9 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}>1.7, !- Program Line 4 + SET {347abce9-7133-4bc5-a4eb-205f5f3cd7ba} = 29.4, !- Program Line 5 + SET {8d2276da-09c3-47c4-8762-48031a46e35e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}<23.9 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}>1.7, !- Program Line 7 + SET {347abce9-7133-4bc5-a4eb-205f5f3cd7ba} = 29.4, !- Program Line 8 + SET {8d2276da-09c3-47c4-8762-48031a46e35e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}<23.9 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}>1.7, !- Program Line 10 + SET {347abce9-7133-4bc5-a4eb-205f5f3cd7ba} = 29.4, !- Program Line 11 + SET {8d2276da-09c3-47c4-8762-48031a46e35e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e9199f9f-5afe-4ca6-8bb5-8680a37f0d12} = NULL, !- Program Line 14 - SET {692e3739-2c8f-4766-b7dd-f3a93b068de5} = NULL, !- Program Line 15 + SET {347abce9-7133-4bc5-a4eb-205f5f3cd7ba} = NULL, !- Program Line 14 + SET {8d2276da-09c3-47c4-8762-48031a46e35e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}<23.9 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}>1.7, !- Program Line 1 - SET {981e1423-88ad-4a58-aa64-dc1e5e63ba66} = 29.4, !- Program Line 2 - SET {6d206b82-bd88-4181-bc2d-20c6e624b779} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}<23.9 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}>1.7, !- Program Line 4 - SET {981e1423-88ad-4a58-aa64-dc1e5e63ba66} = 29.4, !- Program Line 5 - SET {6d206b82-bd88-4181-bc2d-20c6e624b779} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}<23.9 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}>1.7, !- Program Line 7 - SET {981e1423-88ad-4a58-aa64-dc1e5e63ba66} = 29.4, !- Program Line 8 - SET {6d206b82-bd88-4181-bc2d-20c6e624b779} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}<23.9 && {e5de0c8b-ec16-42a0-9acb-523f8fe32b10}>1.7, !- Program Line 10 - SET {981e1423-88ad-4a58-aa64-dc1e5e63ba66} = 29.4, !- Program Line 11 - SET {6d206b82-bd88-4181-bc2d-20c6e624b779} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}<23.9 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}>1.7, !- Program Line 1 + SET {98d854e5-4ebf-4775-adbc-4f7b1f83369a} = 29.4, !- Program Line 2 + SET {2f1c5de3-c166-4f49-ae84-287d98a83ab6} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}<23.9 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}>1.7, !- Program Line 4 + SET {98d854e5-4ebf-4775-adbc-4f7b1f83369a} = 29.4, !- Program Line 5 + SET {2f1c5de3-c166-4f49-ae84-287d98a83ab6} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}<23.9 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}>1.7, !- Program Line 7 + SET {98d854e5-4ebf-4775-adbc-4f7b1f83369a} = 29.4, !- Program Line 8 + SET {2f1c5de3-c166-4f49-ae84-287d98a83ab6} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}<23.9 && {d89e6ee0-f1ef-4734-81b0-947d6c476bed}>1.7, !- Program Line 10 + SET {98d854e5-4ebf-4775-adbc-4f7b1f83369a} = 29.4, !- Program Line 11 + SET {2f1c5de3-c166-4f49-ae84-287d98a83ab6} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {981e1423-88ad-4a58-aa64-dc1e5e63ba66} = NULL, !- Program Line 14 - SET {6d206b82-bd88-4181-bc2d-20c6e624b779} = NULL, !- Program Line 15 + SET {98d854e5-4ebf-4775-adbc-4f7b1f83369a} = NULL, !- Program Line 14 + SET {2f1c5de3-c166-4f49-ae84-287d98a83ab6} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -11052,7 +11052,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11078,7 +11078,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11104,7 +11104,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11130,7 +11130,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11156,7 +11156,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14354,271 +14354,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000401}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000402}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000403}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000100}, !- Inlet Port {00000000-0000-0000-0017-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000404}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000818}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000405}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000823}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000406}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000407}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000094}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000408}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000819}, !- Inlet Port {00000000-0000-0000-0017-000000000820}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000409}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000821}, !- Inlet Port {00000000-0000-0000-0017-000000000822}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000410}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000534}, !- Inlet Port {00000000-0000-0000-0017-000000000536}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000411}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000537}, !- Inlet Port {00000000-0000-0000-0017-000000000535}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000412}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000540}, !- Inlet Port {00000000-0000-0000-0017-000000000541}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000413}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000830}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000414}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000835}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000415}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000532}, !- Inlet Port {00000000-0000-0000-0017-000000000539}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000416}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000538}, !- Inlet Port {00000000-0000-0000-0017-000000000533}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000417}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000518}, !- Inlet Port {00000000-0000-0000-0017-000000000520}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000418}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000521}, !- Inlet Port {00000000-0000-0000-0017-000000000519}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000419}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000524}, !- Inlet Port {00000000-0000-0000-0017-000000000525}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000420}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000824}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000421}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000829}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000422}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000516}, !- Inlet Port {00000000-0000-0000-0017-000000000523}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000423}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000522}, !- Inlet Port {00000000-0000-0000-0017-000000000517}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000424}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000831}, !- Inlet Port {00000000-0000-0000-0017-000000000832}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000425}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000833}, !- Inlet Port {00000000-0000-0000-0017-000000000834}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000426}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000825}, !- Inlet Port {00000000-0000-0000-0017-000000000826}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000427}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000827}, !- Inlet Port {00000000-0000-0000-0017-000000000828}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000428}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000444}, !- Inlet Port {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000429}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000447}, !- Inlet Port {00000000-0000-0000-0017-000000000445}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000430}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000450}, !- Inlet Port {00000000-0000-0000-0017-000000000451}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000431}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000842}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000432}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000847}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000433}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000442}, !- Inlet Port {00000000-0000-0000-0017-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000434}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000448}, !- Inlet Port {00000000-0000-0000-0017-000000000443}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000435}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000422}, !- Inlet Port {00000000-0000-0000-0017-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000436}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000425}, !- Inlet Port {00000000-0000-0000-0017-000000000423}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000437}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000428}, !- Inlet Port {00000000-0000-0000-0017-000000000429}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000438}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000836}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000439}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000841}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000440}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000420}, !- Inlet Port {00000000-0000-0000-0017-000000000427}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000441}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000426}, !- Inlet Port {00000000-0000-0000-0017-000000000421}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000442}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000843}, !- Inlet Port {00000000-0000-0000-0017-000000000844}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000443}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000845}, !- Inlet Port {00000000-0000-0000-0017-000000000846}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000444}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000837}, !- Inlet Port {00000000-0000-0000-0017-000000000838}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000445}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000839}, !- Inlet Port {00000000-0000-0000-0017-000000000840}; !- Outlet Port @@ -21235,7 +21235,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000181}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -21250,7 +21250,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000182}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21259,7 +21259,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000183}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21268,7 +21268,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21283,7 +21283,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21292,7 +21292,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21301,7 +21301,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21316,7 +21316,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21325,7 +21325,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21334,7 +21334,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000190}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -21349,7 +21349,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000191}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21358,7 +21358,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000192}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21367,7 +21367,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000193}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -21382,7 +21382,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000194}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21391,7 +21391,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000195}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24247,7 +24247,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000182}, !- Summer Design Day Schedule Name @@ -24255,7 +24255,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000185}, !- Summer Design Day Schedule Name @@ -24263,7 +24263,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000188}, !- Summer Design Day Schedule Name @@ -24271,7 +24271,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000191}, !- Summer Design Day Schedule Name @@ -24279,7 +24279,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000194}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGas-CAN_AB_Calgary.osm index 2a7dc3b8f2..891c3859f2 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGas-CAN_AB_Calgary.osm @@ -21397,41 +21397,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0042-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1188db4c-166e-45d7-81dc-13a80218df92}<23.9 && {1188db4c-166e-45d7-81dc-13a80218df92}>1.7, !- Program Line 1 - SET {8f912b8c-f6f7-4f2d-90c3-c57e26599436} = 29.4, !- Program Line 2 - SET {be49361d-1bab-4624-bc20-27175cd79e4e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1188db4c-166e-45d7-81dc-13a80218df92}<23.9 && {1188db4c-166e-45d7-81dc-13a80218df92}>1.7, !- Program Line 4 - SET {8f912b8c-f6f7-4f2d-90c3-c57e26599436} = 29.4, !- Program Line 5 - SET {be49361d-1bab-4624-bc20-27175cd79e4e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1188db4c-166e-45d7-81dc-13a80218df92}<23.9 && {1188db4c-166e-45d7-81dc-13a80218df92}>1.7, !- Program Line 7 - SET {8f912b8c-f6f7-4f2d-90c3-c57e26599436} = 29.4, !- Program Line 8 - SET {be49361d-1bab-4624-bc20-27175cd79e4e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1188db4c-166e-45d7-81dc-13a80218df92}<23.9 && {1188db4c-166e-45d7-81dc-13a80218df92}>1.7, !- Program Line 10 - SET {8f912b8c-f6f7-4f2d-90c3-c57e26599436} = 29.4, !- Program Line 11 - SET {be49361d-1bab-4624-bc20-27175cd79e4e} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e74ef7d0-7c51-4567-b387-dda205b2c402}<23.9 && {e74ef7d0-7c51-4567-b387-dda205b2c402}>1.7, !- Program Line 1 + SET {424a471b-c1d5-4609-8c04-67e0df8fd3aa} = 29.4, !- Program Line 2 + SET {d2ec51e6-1673-49b6-ba40-8b1983a3994f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e74ef7d0-7c51-4567-b387-dda205b2c402}<23.9 && {e74ef7d0-7c51-4567-b387-dda205b2c402}>1.7, !- Program Line 4 + SET {424a471b-c1d5-4609-8c04-67e0df8fd3aa} = 29.4, !- Program Line 5 + SET {d2ec51e6-1673-49b6-ba40-8b1983a3994f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e74ef7d0-7c51-4567-b387-dda205b2c402}<23.9 && {e74ef7d0-7c51-4567-b387-dda205b2c402}>1.7, !- Program Line 7 + SET {424a471b-c1d5-4609-8c04-67e0df8fd3aa} = 29.4, !- Program Line 8 + SET {d2ec51e6-1673-49b6-ba40-8b1983a3994f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e74ef7d0-7c51-4567-b387-dda205b2c402}<23.9 && {e74ef7d0-7c51-4567-b387-dda205b2c402}>1.7, !- Program Line 10 + SET {424a471b-c1d5-4609-8c04-67e0df8fd3aa} = 29.4, !- Program Line 11 + SET {d2ec51e6-1673-49b6-ba40-8b1983a3994f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8f912b8c-f6f7-4f2d-90c3-c57e26599436} = NULL, !- Program Line 14 - SET {be49361d-1bab-4624-bc20-27175cd79e4e} = NULL, !- Program Line 15 + SET {424a471b-c1d5-4609-8c04-67e0df8fd3aa} = NULL, !- Program Line 14 + SET {d2ec51e6-1673-49b6-ba40-8b1983a3994f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0042-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1188db4c-166e-45d7-81dc-13a80218df92}<23.9 && {1188db4c-166e-45d7-81dc-13a80218df92}>1.7, !- Program Line 1 - SET {07b4d78b-8370-4731-8d53-957cb7171167} = 29.4, !- Program Line 2 - SET {3ef34482-8dd5-4363-ac86-bf19d5f5766f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1188db4c-166e-45d7-81dc-13a80218df92}<23.9 && {1188db4c-166e-45d7-81dc-13a80218df92}>1.7, !- Program Line 4 - SET {07b4d78b-8370-4731-8d53-957cb7171167} = 29.4, !- Program Line 5 - SET {3ef34482-8dd5-4363-ac86-bf19d5f5766f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1188db4c-166e-45d7-81dc-13a80218df92}<23.9 && {1188db4c-166e-45d7-81dc-13a80218df92}>1.7, !- Program Line 7 - SET {07b4d78b-8370-4731-8d53-957cb7171167} = 29.4, !- Program Line 8 - SET {3ef34482-8dd5-4363-ac86-bf19d5f5766f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1188db4c-166e-45d7-81dc-13a80218df92}<23.9 && {1188db4c-166e-45d7-81dc-13a80218df92}>1.7, !- Program Line 10 - SET {07b4d78b-8370-4731-8d53-957cb7171167} = 29.4, !- Program Line 11 - SET {3ef34482-8dd5-4363-ac86-bf19d5f5766f} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e74ef7d0-7c51-4567-b387-dda205b2c402}<23.9 && {e74ef7d0-7c51-4567-b387-dda205b2c402}>1.7, !- Program Line 1 + SET {a410fbec-8a6e-4798-9198-5e45994f89fa} = 29.4, !- Program Line 2 + SET {03b58d21-fa9d-4b73-873d-c2dfec45e438} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e74ef7d0-7c51-4567-b387-dda205b2c402}<23.9 && {e74ef7d0-7c51-4567-b387-dda205b2c402}>1.7, !- Program Line 4 + SET {a410fbec-8a6e-4798-9198-5e45994f89fa} = 29.4, !- Program Line 5 + SET {03b58d21-fa9d-4b73-873d-c2dfec45e438} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e74ef7d0-7c51-4567-b387-dda205b2c402}<23.9 && {e74ef7d0-7c51-4567-b387-dda205b2c402}>1.7, !- Program Line 7 + SET {a410fbec-8a6e-4798-9198-5e45994f89fa} = 29.4, !- Program Line 8 + SET {03b58d21-fa9d-4b73-873d-c2dfec45e438} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e74ef7d0-7c51-4567-b387-dda205b2c402}<23.9 && {e74ef7d0-7c51-4567-b387-dda205b2c402}>1.7, !- Program Line 10 + SET {a410fbec-8a6e-4798-9198-5e45994f89fa} = 29.4, !- Program Line 11 + SET {03b58d21-fa9d-4b73-873d-c2dfec45e438} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {07b4d78b-8370-4731-8d53-957cb7171167} = NULL, !- Program Line 14 - SET {3ef34482-8dd5-4363-ac86-bf19d5f5766f} = NULL, !- Program Line 15 + SET {a410fbec-8a6e-4798-9198-5e45994f89fa} = NULL, !- Program Line 14 + SET {03b58d21-fa9d-4b73-873d-c2dfec45e438} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 61aa4380c5..123143f930 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -96,7 +96,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -118,7 +118,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -140,7 +140,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -162,7 +162,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -184,7 +184,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -13569,7 +13569,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0068-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13577,7 +13577,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0068-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13617,67 +13617,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0793131b-b200-47c5-b804-35b8160695cb}<23.9 && {0793131b-b200-47c5-b804-35b8160695cb}>1.7, !- Program Line 1 - SET {4af7e8f0-2dfd-4e15-88f8-abbdee98f73a} = 29.4, !- Program Line 2 - SET {e922e0ea-9f6c-4126-9d7c-83686efe893c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0793131b-b200-47c5-b804-35b8160695cb}<23.9 && {0793131b-b200-47c5-b804-35b8160695cb}>1.7, !- Program Line 4 - SET {4af7e8f0-2dfd-4e15-88f8-abbdee98f73a} = 29.4, !- Program Line 5 - SET {e922e0ea-9f6c-4126-9d7c-83686efe893c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0793131b-b200-47c5-b804-35b8160695cb}<23.9 && {0793131b-b200-47c5-b804-35b8160695cb}>1.7, !- Program Line 7 - SET {4af7e8f0-2dfd-4e15-88f8-abbdee98f73a} = 29.4, !- Program Line 8 - SET {e922e0ea-9f6c-4126-9d7c-83686efe893c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0793131b-b200-47c5-b804-35b8160695cb}<23.9 && {0793131b-b200-47c5-b804-35b8160695cb}>1.7, !- Program Line 10 - SET {4af7e8f0-2dfd-4e15-88f8-abbdee98f73a} = 29.4, !- Program Line 11 - SET {e922e0ea-9f6c-4126-9d7c-83686efe893c} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3bfeb7b9-735e-44e1-b8a7-1ef4bfa5302c}<23.9 && {3bfeb7b9-735e-44e1-b8a7-1ef4bfa5302c}>1.7, !- Program Line 1 + SET {c11c80fc-a78c-4308-abe8-08a4ba5539d8} = 29.4, !- Program Line 2 + SET {b00e65b5-92e5-4811-95d3-105511510206} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3bfeb7b9-735e-44e1-b8a7-1ef4bfa5302c}<23.9 && {3bfeb7b9-735e-44e1-b8a7-1ef4bfa5302c}>1.7, !- Program Line 4 + SET {c11c80fc-a78c-4308-abe8-08a4ba5539d8} = 29.4, !- Program Line 5 + SET {b00e65b5-92e5-4811-95d3-105511510206} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3bfeb7b9-735e-44e1-b8a7-1ef4bfa5302c}<23.9 && {3bfeb7b9-735e-44e1-b8a7-1ef4bfa5302c}>1.7, !- Program Line 7 + SET {c11c80fc-a78c-4308-abe8-08a4ba5539d8} = 29.4, !- Program Line 8 + SET {b00e65b5-92e5-4811-95d3-105511510206} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3bfeb7b9-735e-44e1-b8a7-1ef4bfa5302c}<23.9 && {3bfeb7b9-735e-44e1-b8a7-1ef4bfa5302c}>1.7, !- Program Line 10 + SET {c11c80fc-a78c-4308-abe8-08a4ba5539d8} = 29.4, !- Program Line 11 + SET {b00e65b5-92e5-4811-95d3-105511510206} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4af7e8f0-2dfd-4e15-88f8-abbdee98f73a} = NULL, !- Program Line 14 - SET {e922e0ea-9f6c-4126-9d7c-83686efe893c} = NULL, !- Program Line 15 + SET {c11c80fc-a78c-4308-abe8-08a4ba5539d8} = NULL, !- Program Line 14 + SET {b00e65b5-92e5-4811-95d3-105511510206} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}<23.9 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}>1.7, !- Program Line 1 - SET {93ac6896-4ab6-44d2-b915-565f8e624360} = 29.4, !- Program Line 2 - SET {0f39ec4d-44a7-4a3d-add8-391e50cddb3f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}<23.9 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}>1.7, !- Program Line 4 - SET {93ac6896-4ab6-44d2-b915-565f8e624360} = 29.4, !- Program Line 5 - SET {0f39ec4d-44a7-4a3d-add8-391e50cddb3f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}<23.9 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}>1.7, !- Program Line 7 - SET {93ac6896-4ab6-44d2-b915-565f8e624360} = 29.4, !- Program Line 8 - SET {0f39ec4d-44a7-4a3d-add8-391e50cddb3f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}<23.9 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}>1.7, !- Program Line 10 - SET {93ac6896-4ab6-44d2-b915-565f8e624360} = 29.4, !- Program Line 11 - SET {0f39ec4d-44a7-4a3d-add8-391e50cddb3f} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c503f870-5ba3-4719-b079-97a3ead4d68c}<23.9 && {c503f870-5ba3-4719-b079-97a3ead4d68c}>1.7, !- Program Line 1 + SET {8ef35f8a-e6d0-4f67-a166-3ac340fd573f} = 29.4, !- Program Line 2 + SET {84c715af-0bc4-46f8-9101-22ccc7b70bff} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c503f870-5ba3-4719-b079-97a3ead4d68c}<23.9 && {c503f870-5ba3-4719-b079-97a3ead4d68c}>1.7, !- Program Line 4 + SET {8ef35f8a-e6d0-4f67-a166-3ac340fd573f} = 29.4, !- Program Line 5 + SET {84c715af-0bc4-46f8-9101-22ccc7b70bff} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c503f870-5ba3-4719-b079-97a3ead4d68c}<23.9 && {c503f870-5ba3-4719-b079-97a3ead4d68c}>1.7, !- Program Line 7 + SET {8ef35f8a-e6d0-4f67-a166-3ac340fd573f} = 29.4, !- Program Line 8 + SET {84c715af-0bc4-46f8-9101-22ccc7b70bff} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c503f870-5ba3-4719-b079-97a3ead4d68c}<23.9 && {c503f870-5ba3-4719-b079-97a3ead4d68c}>1.7, !- Program Line 10 + SET {8ef35f8a-e6d0-4f67-a166-3ac340fd573f} = 29.4, !- Program Line 11 + SET {84c715af-0bc4-46f8-9101-22ccc7b70bff} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {93ac6896-4ab6-44d2-b915-565f8e624360} = NULL, !- Program Line 14 - SET {0f39ec4d-44a7-4a3d-add8-391e50cddb3f} = NULL, !- Program Line 15 + SET {8ef35f8a-e6d0-4f67-a166-3ac340fd573f} = NULL, !- Program Line 14 + SET {84c715af-0bc4-46f8-9101-22ccc7b70bff} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}<23.9 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}>1.7, !- Program Line 1 - SET {cc912a46-baee-46cf-8868-a636e6cd6092} = 29.4, !- Program Line 2 - SET {aea024e7-4c0e-4419-a0c6-4f2f1aa85ab7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}<23.9 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}>1.7, !- Program Line 4 - SET {cc912a46-baee-46cf-8868-a636e6cd6092} = 29.4, !- Program Line 5 - SET {aea024e7-4c0e-4419-a0c6-4f2f1aa85ab7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}<23.9 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}>1.7, !- Program Line 7 - SET {cc912a46-baee-46cf-8868-a636e6cd6092} = 29.4, !- Program Line 8 - SET {aea024e7-4c0e-4419-a0c6-4f2f1aa85ab7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}<23.9 && {6e6763bf-26a6-41fd-afb5-6c4a5be53cb6}>1.7, !- Program Line 10 - SET {cc912a46-baee-46cf-8868-a636e6cd6092} = 29.4, !- Program Line 11 - SET {aea024e7-4c0e-4419-a0c6-4f2f1aa85ab7} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c503f870-5ba3-4719-b079-97a3ead4d68c}<23.9 && {c503f870-5ba3-4719-b079-97a3ead4d68c}>1.7, !- Program Line 1 + SET {fe4d0a65-f624-4d05-bae4-c50b46511aa8} = 29.4, !- Program Line 2 + SET {440c2f78-244c-4840-bfeb-d06b5bb74fd6} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c503f870-5ba3-4719-b079-97a3ead4d68c}<23.9 && {c503f870-5ba3-4719-b079-97a3ead4d68c}>1.7, !- Program Line 4 + SET {fe4d0a65-f624-4d05-bae4-c50b46511aa8} = 29.4, !- Program Line 5 + SET {440c2f78-244c-4840-bfeb-d06b5bb74fd6} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c503f870-5ba3-4719-b079-97a3ead4d68c}<23.9 && {c503f870-5ba3-4719-b079-97a3ead4d68c}>1.7, !- Program Line 7 + SET {fe4d0a65-f624-4d05-bae4-c50b46511aa8} = 29.4, !- Program Line 8 + SET {440c2f78-244c-4840-bfeb-d06b5bb74fd6} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c503f870-5ba3-4719-b079-97a3ead4d68c}<23.9 && {c503f870-5ba3-4719-b079-97a3ead4d68c}>1.7, !- Program Line 10 + SET {fe4d0a65-f624-4d05-bae4-c50b46511aa8} = 29.4, !- Program Line 11 + SET {440c2f78-244c-4840-bfeb-d06b5bb74fd6} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {cc912a46-baee-46cf-8868-a636e6cd6092} = NULL, !- Program Line 14 - SET {aea024e7-4c0e-4419-a0c6-4f2f1aa85ab7} = NULL, !- Program Line 15 + SET {fe4d0a65-f624-4d05-bae4-c50b46511aa8} = NULL, !- Program Line 14 + SET {440c2f78-244c-4840-bfeb-d06b5bb74fd6} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -13849,7 +13849,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13875,7 +13875,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13901,7 +13901,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13927,7 +13927,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000004}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13953,7 +13953,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18003,271 +18003,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000543}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000115}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000544}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000116}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000545}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000125}, !- Inlet Port {00000000-0000-0000-0019-000000000126}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000546}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001102}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000547}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000548}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000113}, !- Inlet Port {00000000-0000-0000-0019-000000000124}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000549}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000119}, !- Inlet Port {00000000-0000-0000-0019-000000000114}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000550}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001103}, !- Inlet Port {00000000-0000-0000-0019-000000001104}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000551}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001105}, !- Inlet Port {00000000-0000-0000-0019-000000001106}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000552}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000814}, !- Inlet Port {00000000-0000-0000-0019-000000000816}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000553}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000817}, !- Inlet Port {00000000-0000-0000-0019-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000554}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000820}, !- Inlet Port {00000000-0000-0000-0019-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000555}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001114}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000556}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001119}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000557}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000812}, !- Inlet Port {00000000-0000-0000-0019-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000558}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000818}, !- Inlet Port {00000000-0000-0000-0019-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000559}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000794}, !- Inlet Port {00000000-0000-0000-0019-000000000796}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000560}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000797}, !- Inlet Port {00000000-0000-0000-0019-000000000795}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000561}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000800}, !- Inlet Port {00000000-0000-0000-0019-000000000801}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000562}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001108}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000563}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000564}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000792}, !- Inlet Port {00000000-0000-0000-0019-000000000799}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000565}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000798}, !- Inlet Port {00000000-0000-0000-0019-000000000793}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000566}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001115}, !- Inlet Port {00000000-0000-0000-0019-000000001116}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000567}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001117}, !- Inlet Port {00000000-0000-0000-0019-000000001118}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000568}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001109}, !- Inlet Port {00000000-0000-0000-0019-000000001110}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000569}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001111}, !- Inlet Port {00000000-0000-0000-0019-000000001112}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000570}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000688}, !- Inlet Port {00000000-0000-0000-0019-000000000690}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000571}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000691}, !- Inlet Port {00000000-0000-0000-0019-000000000689}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000572}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000694}, !- Inlet Port {00000000-0000-0000-0019-000000000695}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000573}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001126}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000574}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001131}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000575}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000686}, !- Inlet Port {00000000-0000-0000-0019-000000000693}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000576}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000692}, !- Inlet Port {00000000-0000-0000-0019-000000000687}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000577}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000658}, !- Inlet Port {00000000-0000-0000-0019-000000000660}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000578}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000661}, !- Inlet Port {00000000-0000-0000-0019-000000000659}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000579}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000664}, !- Inlet Port {00000000-0000-0000-0019-000000000665}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000580}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001120}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000581}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001125}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000582}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000656}, !- Inlet Port {00000000-0000-0000-0019-000000000663}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000583}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000662}, !- Inlet Port {00000000-0000-0000-0019-000000000657}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000584}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001127}, !- Inlet Port {00000000-0000-0000-0019-000000001128}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000585}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001129}, !- Inlet Port {00000000-0000-0000-0019-000000001130}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000586}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001121}, !- Inlet Port {00000000-0000-0000-0019-000000001122}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000587}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001123}, !- Inlet Port {00000000-0000-0000-0019-000000001124}; !- Outlet Port @@ -24965,7 +24965,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000181}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24980,7 +24980,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000182}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24989,7 +24989,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000183}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24998,7 +24998,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -25013,7 +25013,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25022,7 +25022,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25031,7 +25031,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -25046,7 +25046,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25055,7 +25055,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25064,7 +25064,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000190}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -25079,7 +25079,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000191}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25088,7 +25088,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000192}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25097,7 +25097,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000193}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -25112,7 +25112,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000194}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25121,7 +25121,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000195}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -27977,7 +27977,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000182}, !- Summer Design Day Schedule Name @@ -27985,7 +27985,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000185}, !- Summer Design Day Schedule Name @@ -27993,7 +27993,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000188}, !- Summer Design Day Schedule Name @@ -28001,7 +28001,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000191}, !- Summer Design Day Schedule Name @@ -28009,7 +28009,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000194}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 75011ee761..45fdb7214b 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -96,7 +96,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -118,7 +118,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -140,7 +140,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -162,7 +162,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -184,7 +184,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -13827,7 +13827,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0068-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13835,7 +13835,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0068-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13875,67 +13875,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {505c6ef0-13db-4164-baa1-fefa2646d947}<23.9 && {505c6ef0-13db-4164-baa1-fefa2646d947}>1.7, !- Program Line 1 - SET {83c4cb19-3760-4b66-9943-8dcfe77e5231} = 29.4, !- Program Line 2 - SET {bab8751d-b0ac-4129-bd59-a14f09b8b040} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {505c6ef0-13db-4164-baa1-fefa2646d947}<23.9 && {505c6ef0-13db-4164-baa1-fefa2646d947}>1.7, !- Program Line 4 - SET {83c4cb19-3760-4b66-9943-8dcfe77e5231} = 29.4, !- Program Line 5 - SET {bab8751d-b0ac-4129-bd59-a14f09b8b040} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {505c6ef0-13db-4164-baa1-fefa2646d947}<23.9 && {505c6ef0-13db-4164-baa1-fefa2646d947}>1.7, !- Program Line 7 - SET {83c4cb19-3760-4b66-9943-8dcfe77e5231} = 29.4, !- Program Line 8 - SET {bab8751d-b0ac-4129-bd59-a14f09b8b040} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {505c6ef0-13db-4164-baa1-fefa2646d947}<23.9 && {505c6ef0-13db-4164-baa1-fefa2646d947}>1.7, !- Program Line 10 - SET {83c4cb19-3760-4b66-9943-8dcfe77e5231} = 29.4, !- Program Line 11 - SET {bab8751d-b0ac-4129-bd59-a14f09b8b040} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4a46bdc7-70c7-48b7-a92c-2ad99e2782b5}<23.9 && {4a46bdc7-70c7-48b7-a92c-2ad99e2782b5}>1.7, !- Program Line 1 + SET {d4028abb-b56f-4e2a-8420-6cbd15847f5c} = 29.4, !- Program Line 2 + SET {eeb1e48f-ff3f-4546-9efd-9f800b7b45d4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4a46bdc7-70c7-48b7-a92c-2ad99e2782b5}<23.9 && {4a46bdc7-70c7-48b7-a92c-2ad99e2782b5}>1.7, !- Program Line 4 + SET {d4028abb-b56f-4e2a-8420-6cbd15847f5c} = 29.4, !- Program Line 5 + SET {eeb1e48f-ff3f-4546-9efd-9f800b7b45d4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4a46bdc7-70c7-48b7-a92c-2ad99e2782b5}<23.9 && {4a46bdc7-70c7-48b7-a92c-2ad99e2782b5}>1.7, !- Program Line 7 + SET {d4028abb-b56f-4e2a-8420-6cbd15847f5c} = 29.4, !- Program Line 8 + SET {eeb1e48f-ff3f-4546-9efd-9f800b7b45d4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4a46bdc7-70c7-48b7-a92c-2ad99e2782b5}<23.9 && {4a46bdc7-70c7-48b7-a92c-2ad99e2782b5}>1.7, !- Program Line 10 + SET {d4028abb-b56f-4e2a-8420-6cbd15847f5c} = 29.4, !- Program Line 11 + SET {eeb1e48f-ff3f-4546-9efd-9f800b7b45d4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {83c4cb19-3760-4b66-9943-8dcfe77e5231} = NULL, !- Program Line 14 - SET {bab8751d-b0ac-4129-bd59-a14f09b8b040} = NULL, !- Program Line 15 + SET {d4028abb-b56f-4e2a-8420-6cbd15847f5c} = NULL, !- Program Line 14 + SET {eeb1e48f-ff3f-4546-9efd-9f800b7b45d4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}<23.9 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}>1.7, !- Program Line 1 - SET {faa8d33a-fdcc-44d2-9bfc-4d0cb1d03727} = 29.4, !- Program Line 2 - SET {a6184c5d-cbe2-445d-a10d-2e38719f3819} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}<23.9 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}>1.7, !- Program Line 4 - SET {faa8d33a-fdcc-44d2-9bfc-4d0cb1d03727} = 29.4, !- Program Line 5 - SET {a6184c5d-cbe2-445d-a10d-2e38719f3819} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}<23.9 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}>1.7, !- Program Line 7 - SET {faa8d33a-fdcc-44d2-9bfc-4d0cb1d03727} = 29.4, !- Program Line 8 - SET {a6184c5d-cbe2-445d-a10d-2e38719f3819} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}<23.9 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}>1.7, !- Program Line 10 - SET {faa8d33a-fdcc-44d2-9bfc-4d0cb1d03727} = 29.4, !- Program Line 11 - SET {a6184c5d-cbe2-445d-a10d-2e38719f3819} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4d904a4e-45cc-495e-b043-c74e0b593775}<23.9 && {4d904a4e-45cc-495e-b043-c74e0b593775}>1.7, !- Program Line 1 + SET {c6626cee-f62a-40af-bb25-94446fcb4e54} = 29.4, !- Program Line 2 + SET {0aeb55bd-33ce-4d22-862d-941209c89caf} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4d904a4e-45cc-495e-b043-c74e0b593775}<23.9 && {4d904a4e-45cc-495e-b043-c74e0b593775}>1.7, !- Program Line 4 + SET {c6626cee-f62a-40af-bb25-94446fcb4e54} = 29.4, !- Program Line 5 + SET {0aeb55bd-33ce-4d22-862d-941209c89caf} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4d904a4e-45cc-495e-b043-c74e0b593775}<23.9 && {4d904a4e-45cc-495e-b043-c74e0b593775}>1.7, !- Program Line 7 + SET {c6626cee-f62a-40af-bb25-94446fcb4e54} = 29.4, !- Program Line 8 + SET {0aeb55bd-33ce-4d22-862d-941209c89caf} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4d904a4e-45cc-495e-b043-c74e0b593775}<23.9 && {4d904a4e-45cc-495e-b043-c74e0b593775}>1.7, !- Program Line 10 + SET {c6626cee-f62a-40af-bb25-94446fcb4e54} = 29.4, !- Program Line 11 + SET {0aeb55bd-33ce-4d22-862d-941209c89caf} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {faa8d33a-fdcc-44d2-9bfc-4d0cb1d03727} = NULL, !- Program Line 14 - SET {a6184c5d-cbe2-445d-a10d-2e38719f3819} = NULL, !- Program Line 15 + SET {c6626cee-f62a-40af-bb25-94446fcb4e54} = NULL, !- Program Line 14 + SET {0aeb55bd-33ce-4d22-862d-941209c89caf} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}<23.9 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}>1.7, !- Program Line 1 - SET {520039df-75a6-46a6-b9d9-2627f39f50d8} = 29.4, !- Program Line 2 - SET {cbdd9bec-1376-4337-aac4-cfeaee4773ad} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}<23.9 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}>1.7, !- Program Line 4 - SET {520039df-75a6-46a6-b9d9-2627f39f50d8} = 29.4, !- Program Line 5 - SET {cbdd9bec-1376-4337-aac4-cfeaee4773ad} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}<23.9 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}>1.7, !- Program Line 7 - SET {520039df-75a6-46a6-b9d9-2627f39f50d8} = 29.4, !- Program Line 8 - SET {cbdd9bec-1376-4337-aac4-cfeaee4773ad} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}<23.9 && {ddd894f4-cb90-4f1c-928d-14b99bd8e7c1}>1.7, !- Program Line 10 - SET {520039df-75a6-46a6-b9d9-2627f39f50d8} = 29.4, !- Program Line 11 - SET {cbdd9bec-1376-4337-aac4-cfeaee4773ad} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4d904a4e-45cc-495e-b043-c74e0b593775}<23.9 && {4d904a4e-45cc-495e-b043-c74e0b593775}>1.7, !- Program Line 1 + SET {7c81aa4e-6f45-47dc-b6d7-d0325e5e7f63} = 29.4, !- Program Line 2 + SET {b1ded765-7475-4bcf-be0c-2474e15953d0} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4d904a4e-45cc-495e-b043-c74e0b593775}<23.9 && {4d904a4e-45cc-495e-b043-c74e0b593775}>1.7, !- Program Line 4 + SET {7c81aa4e-6f45-47dc-b6d7-d0325e5e7f63} = 29.4, !- Program Line 5 + SET {b1ded765-7475-4bcf-be0c-2474e15953d0} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4d904a4e-45cc-495e-b043-c74e0b593775}<23.9 && {4d904a4e-45cc-495e-b043-c74e0b593775}>1.7, !- Program Line 7 + SET {7c81aa4e-6f45-47dc-b6d7-d0325e5e7f63} = 29.4, !- Program Line 8 + SET {b1ded765-7475-4bcf-be0c-2474e15953d0} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4d904a4e-45cc-495e-b043-c74e0b593775}<23.9 && {4d904a4e-45cc-495e-b043-c74e0b593775}>1.7, !- Program Line 10 + SET {7c81aa4e-6f45-47dc-b6d7-d0325e5e7f63} = 29.4, !- Program Line 11 + SET {b1ded765-7475-4bcf-be0c-2474e15953d0} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {520039df-75a6-46a6-b9d9-2627f39f50d8} = NULL, !- Program Line 14 - SET {cbdd9bec-1376-4337-aac4-cfeaee4773ad} = NULL, !- Program Line 15 + SET {7c81aa4e-6f45-47dc-b6d7-d0325e5e7f63} = NULL, !- Program Line 14 + SET {b1ded765-7475-4bcf-be0c-2474e15953d0} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -14107,7 +14107,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14133,7 +14133,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14159,7 +14159,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14185,7 +14185,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000004}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14211,7 +14211,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18261,271 +18261,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000543}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000115}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000544}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000116}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000545}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000125}, !- Inlet Port {00000000-0000-0000-0019-000000000126}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000546}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001102}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000547}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000548}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000113}, !- Inlet Port {00000000-0000-0000-0019-000000000124}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000549}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000119}, !- Inlet Port {00000000-0000-0000-0019-000000000114}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000550}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001103}, !- Inlet Port {00000000-0000-0000-0019-000000001104}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000551}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001105}, !- Inlet Port {00000000-0000-0000-0019-000000001106}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000552}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000814}, !- Inlet Port {00000000-0000-0000-0019-000000000816}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000553}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000817}, !- Inlet Port {00000000-0000-0000-0019-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000554}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000820}, !- Inlet Port {00000000-0000-0000-0019-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000555}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001114}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000556}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001119}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000557}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000812}, !- Inlet Port {00000000-0000-0000-0019-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000558}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000818}, !- Inlet Port {00000000-0000-0000-0019-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000559}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000794}, !- Inlet Port {00000000-0000-0000-0019-000000000796}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000560}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000797}, !- Inlet Port {00000000-0000-0000-0019-000000000795}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000561}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000800}, !- Inlet Port {00000000-0000-0000-0019-000000000801}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000562}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001108}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000563}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000564}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000792}, !- Inlet Port {00000000-0000-0000-0019-000000000799}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000565}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000798}, !- Inlet Port {00000000-0000-0000-0019-000000000793}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000566}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001115}, !- Inlet Port {00000000-0000-0000-0019-000000001116}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000567}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001117}, !- Inlet Port {00000000-0000-0000-0019-000000001118}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000568}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001109}, !- Inlet Port {00000000-0000-0000-0019-000000001110}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000569}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001111}, !- Inlet Port {00000000-0000-0000-0019-000000001112}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000570}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000688}, !- Inlet Port {00000000-0000-0000-0019-000000000690}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000571}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000691}, !- Inlet Port {00000000-0000-0000-0019-000000000689}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000572}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000694}, !- Inlet Port {00000000-0000-0000-0019-000000000695}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000573}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001126}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000574}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001131}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000575}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000686}, !- Inlet Port {00000000-0000-0000-0019-000000000693}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000576}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000692}, !- Inlet Port {00000000-0000-0000-0019-000000000687}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000577}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000658}, !- Inlet Port {00000000-0000-0000-0019-000000000660}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000578}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000661}, !- Inlet Port {00000000-0000-0000-0019-000000000659}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000579}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000664}, !- Inlet Port {00000000-0000-0000-0019-000000000665}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000580}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001120}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000581}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001125}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000582}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000656}, !- Inlet Port {00000000-0000-0000-0019-000000000663}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000583}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000662}, !- Inlet Port {00000000-0000-0000-0019-000000000657}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000584}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001127}, !- Inlet Port {00000000-0000-0000-0019-000000001128}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000585}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001129}, !- Inlet Port {00000000-0000-0000-0019-000000001130}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000586}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001121}, !- Inlet Port {00000000-0000-0000-0019-000000001122}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000587}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001123}, !- Inlet Port {00000000-0000-0000-0019-000000001124}; !- Outlet Port @@ -25223,7 +25223,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000181}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -25238,7 +25238,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000182}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25247,7 +25247,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000183}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25256,7 +25256,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -25271,7 +25271,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25280,7 +25280,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25289,7 +25289,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -25304,7 +25304,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25313,7 +25313,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25322,7 +25322,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000190}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -25337,7 +25337,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000191}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25346,7 +25346,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000192}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25355,7 +25355,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000193}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -25370,7 +25370,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000194}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25379,7 +25379,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000195}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -28235,7 +28235,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000182}, !- Summer Design Day Schedule Name @@ -28243,7 +28243,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000185}, !- Summer Design Day Schedule Name @@ -28251,7 +28251,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000188}, !- Summer Design Day Schedule Name @@ -28259,7 +28259,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000191}, !- Summer Design Day Schedule Name @@ -28267,7 +28267,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000194}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2020-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2020-Electricity-CAN_AB_Calgary.osm index bccf684975..a8597dff80 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2020-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2020-Electricity-CAN_AB_Calgary.osm @@ -17952,41 +17952,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e97296f1-6a9c-464a-9dea-2436aafd0000}<23.9 && {e97296f1-6a9c-464a-9dea-2436aafd0000}>1.7, !- Program Line 1 - SET {e9cca610-7da9-4220-933a-eb369f54df1f} = 29.4, !- Program Line 2 - SET {f33a11c7-b207-45e1-9053-c7c43399d16a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e97296f1-6a9c-464a-9dea-2436aafd0000}<23.9 && {e97296f1-6a9c-464a-9dea-2436aafd0000}>1.7, !- Program Line 4 - SET {e9cca610-7da9-4220-933a-eb369f54df1f} = 29.4, !- Program Line 5 - SET {f33a11c7-b207-45e1-9053-c7c43399d16a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e97296f1-6a9c-464a-9dea-2436aafd0000}<23.9 && {e97296f1-6a9c-464a-9dea-2436aafd0000}>1.7, !- Program Line 7 - SET {e9cca610-7da9-4220-933a-eb369f54df1f} = 29.4, !- Program Line 8 - SET {f33a11c7-b207-45e1-9053-c7c43399d16a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e97296f1-6a9c-464a-9dea-2436aafd0000}<23.9 && {e97296f1-6a9c-464a-9dea-2436aafd0000}>1.7, !- Program Line 10 - SET {e9cca610-7da9-4220-933a-eb369f54df1f} = 29.4, !- Program Line 11 - SET {f33a11c7-b207-45e1-9053-c7c43399d16a} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}<23.9 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}>1.7, !- Program Line 1 + SET {cc7cce4e-97e2-4a47-bbd1-7d4c2a88a468} = 29.4, !- Program Line 2 + SET {3396130a-ed91-4a25-baa5-5801c6863c9a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}<23.9 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}>1.7, !- Program Line 4 + SET {cc7cce4e-97e2-4a47-bbd1-7d4c2a88a468} = 29.4, !- Program Line 5 + SET {3396130a-ed91-4a25-baa5-5801c6863c9a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}<23.9 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}>1.7, !- Program Line 7 + SET {cc7cce4e-97e2-4a47-bbd1-7d4c2a88a468} = 29.4, !- Program Line 8 + SET {3396130a-ed91-4a25-baa5-5801c6863c9a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}<23.9 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}>1.7, !- Program Line 10 + SET {cc7cce4e-97e2-4a47-bbd1-7d4c2a88a468} = 29.4, !- Program Line 11 + SET {3396130a-ed91-4a25-baa5-5801c6863c9a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e9cca610-7da9-4220-933a-eb369f54df1f} = NULL, !- Program Line 14 - SET {f33a11c7-b207-45e1-9053-c7c43399d16a} = NULL, !- Program Line 15 + SET {cc7cce4e-97e2-4a47-bbd1-7d4c2a88a468} = NULL, !- Program Line 14 + SET {3396130a-ed91-4a25-baa5-5801c6863c9a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e97296f1-6a9c-464a-9dea-2436aafd0000}<23.9 && {e97296f1-6a9c-464a-9dea-2436aafd0000}>1.7, !- Program Line 1 - SET {54c5da3e-bfed-4ca2-a3e8-e6085088c6c3} = 29.4, !- Program Line 2 - SET {24d49fb1-2aa0-43dc-9d63-ae0c034bc2d0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e97296f1-6a9c-464a-9dea-2436aafd0000}<23.9 && {e97296f1-6a9c-464a-9dea-2436aafd0000}>1.7, !- Program Line 4 - SET {54c5da3e-bfed-4ca2-a3e8-e6085088c6c3} = 29.4, !- Program Line 5 - SET {24d49fb1-2aa0-43dc-9d63-ae0c034bc2d0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e97296f1-6a9c-464a-9dea-2436aafd0000}<23.9 && {e97296f1-6a9c-464a-9dea-2436aafd0000}>1.7, !- Program Line 7 - SET {54c5da3e-bfed-4ca2-a3e8-e6085088c6c3} = 29.4, !- Program Line 8 - SET {24d49fb1-2aa0-43dc-9d63-ae0c034bc2d0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e97296f1-6a9c-464a-9dea-2436aafd0000}<23.9 && {e97296f1-6a9c-464a-9dea-2436aafd0000}>1.7, !- Program Line 10 - SET {54c5da3e-bfed-4ca2-a3e8-e6085088c6c3} = 29.4, !- Program Line 11 - SET {24d49fb1-2aa0-43dc-9d63-ae0c034bc2d0} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}<23.9 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}>1.7, !- Program Line 1 + SET {4f05590c-4f2e-4623-b84c-4ef4cab7f0bf} = 29.4, !- Program Line 2 + SET {086917ce-350a-4b67-a44b-01185fcf9d9b} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}<23.9 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}>1.7, !- Program Line 4 + SET {4f05590c-4f2e-4623-b84c-4ef4cab7f0bf} = 29.4, !- Program Line 5 + SET {086917ce-350a-4b67-a44b-01185fcf9d9b} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}<23.9 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}>1.7, !- Program Line 7 + SET {4f05590c-4f2e-4623-b84c-4ef4cab7f0bf} = 29.4, !- Program Line 8 + SET {086917ce-350a-4b67-a44b-01185fcf9d9b} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}<23.9 && {b9c0c479-ab03-4e3f-93b1-8175a4f703bf}>1.7, !- Program Line 10 + SET {4f05590c-4f2e-4623-b84c-4ef4cab7f0bf} = 29.4, !- Program Line 11 + SET {086917ce-350a-4b67-a44b-01185fcf9d9b} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {54c5da3e-bfed-4ca2-a3e8-e6085088c6c3} = NULL, !- Program Line 14 - SET {24d49fb1-2aa0-43dc-9d63-ae0c034bc2d0} = NULL, !- Program Line 15 + SET {4f05590c-4f2e-4623-b84c-4ef4cab7f0bf} = NULL, !- Program Line 14 + SET {086917ce-350a-4b67-a44b-01185fcf9d9b} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index ebf14102da..994d8aaa78 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -96,7 +96,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -118,7 +118,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -140,7 +140,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -162,7 +162,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -184,7 +184,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10514,7 +10514,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0065-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10522,7 +10522,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0065-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10562,67 +10562,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f0fc35a0-f9c4-4731-bc56-ec24c89999ea}<23.9 && {f0fc35a0-f9c4-4731-bc56-ec24c89999ea}>1.7, !- Program Line 1 - SET {07fd5b19-1ffd-4bb0-93e6-56aeb84ca967} = 29.4, !- Program Line 2 - SET {1c2e6f73-893e-4124-87e5-e285492741f6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f0fc35a0-f9c4-4731-bc56-ec24c89999ea}<23.9 && {f0fc35a0-f9c4-4731-bc56-ec24c89999ea}>1.7, !- Program Line 4 - SET {07fd5b19-1ffd-4bb0-93e6-56aeb84ca967} = 29.4, !- Program Line 5 - SET {1c2e6f73-893e-4124-87e5-e285492741f6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f0fc35a0-f9c4-4731-bc56-ec24c89999ea}<23.9 && {f0fc35a0-f9c4-4731-bc56-ec24c89999ea}>1.7, !- Program Line 7 - SET {07fd5b19-1ffd-4bb0-93e6-56aeb84ca967} = 29.4, !- Program Line 8 - SET {1c2e6f73-893e-4124-87e5-e285492741f6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f0fc35a0-f9c4-4731-bc56-ec24c89999ea}<23.9 && {f0fc35a0-f9c4-4731-bc56-ec24c89999ea}>1.7, !- Program Line 10 - SET {07fd5b19-1ffd-4bb0-93e6-56aeb84ca967} = 29.4, !- Program Line 11 - SET {1c2e6f73-893e-4124-87e5-e285492741f6} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e0367af0-9842-4a04-8dfa-bf05d68f37e5}<23.9 && {e0367af0-9842-4a04-8dfa-bf05d68f37e5}>1.7, !- Program Line 1 + SET {38678133-3567-4737-aa71-2651ad6c693f} = 29.4, !- Program Line 2 + SET {9e073d1c-8b57-40b3-b4e7-81cdacaca5c8} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e0367af0-9842-4a04-8dfa-bf05d68f37e5}<23.9 && {e0367af0-9842-4a04-8dfa-bf05d68f37e5}>1.7, !- Program Line 4 + SET {38678133-3567-4737-aa71-2651ad6c693f} = 29.4, !- Program Line 5 + SET {9e073d1c-8b57-40b3-b4e7-81cdacaca5c8} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e0367af0-9842-4a04-8dfa-bf05d68f37e5}<23.9 && {e0367af0-9842-4a04-8dfa-bf05d68f37e5}>1.7, !- Program Line 7 + SET {38678133-3567-4737-aa71-2651ad6c693f} = 29.4, !- Program Line 8 + SET {9e073d1c-8b57-40b3-b4e7-81cdacaca5c8} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e0367af0-9842-4a04-8dfa-bf05d68f37e5}<23.9 && {e0367af0-9842-4a04-8dfa-bf05d68f37e5}>1.7, !- Program Line 10 + SET {38678133-3567-4737-aa71-2651ad6c693f} = 29.4, !- Program Line 11 + SET {9e073d1c-8b57-40b3-b4e7-81cdacaca5c8} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {07fd5b19-1ffd-4bb0-93e6-56aeb84ca967} = NULL, !- Program Line 14 - SET {1c2e6f73-893e-4124-87e5-e285492741f6} = NULL, !- Program Line 15 + SET {38678133-3567-4737-aa71-2651ad6c693f} = NULL, !- Program Line 14 + SET {9e073d1c-8b57-40b3-b4e7-81cdacaca5c8} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ab531e51-de5e-4814-ad95-69f35d9c9275}<23.9 && {ab531e51-de5e-4814-ad95-69f35d9c9275}>1.7, !- Program Line 1 - SET {7bcc51bd-0fce-4d1f-8793-714a2a92fd98} = 29.4, !- Program Line 2 - SET {5adb69f8-514d-4c3e-ba10-c7fd085361f5} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ab531e51-de5e-4814-ad95-69f35d9c9275}<23.9 && {ab531e51-de5e-4814-ad95-69f35d9c9275}>1.7, !- Program Line 4 - SET {7bcc51bd-0fce-4d1f-8793-714a2a92fd98} = 29.4, !- Program Line 5 - SET {5adb69f8-514d-4c3e-ba10-c7fd085361f5} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ab531e51-de5e-4814-ad95-69f35d9c9275}<23.9 && {ab531e51-de5e-4814-ad95-69f35d9c9275}>1.7, !- Program Line 7 - SET {7bcc51bd-0fce-4d1f-8793-714a2a92fd98} = 29.4, !- Program Line 8 - SET {5adb69f8-514d-4c3e-ba10-c7fd085361f5} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ab531e51-de5e-4814-ad95-69f35d9c9275}<23.9 && {ab531e51-de5e-4814-ad95-69f35d9c9275}>1.7, !- Program Line 10 - SET {7bcc51bd-0fce-4d1f-8793-714a2a92fd98} = 29.4, !- Program Line 11 - SET {5adb69f8-514d-4c3e-ba10-c7fd085361f5} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}<23.9 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}>1.7, !- Program Line 1 + SET {b207d1d3-057c-457e-b0ed-d7effc46d161} = 29.4, !- Program Line 2 + SET {2c5bdf4d-ccb8-439b-a6f4-584c56d2b185} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}<23.9 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}>1.7, !- Program Line 4 + SET {b207d1d3-057c-457e-b0ed-d7effc46d161} = 29.4, !- Program Line 5 + SET {2c5bdf4d-ccb8-439b-a6f4-584c56d2b185} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}<23.9 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}>1.7, !- Program Line 7 + SET {b207d1d3-057c-457e-b0ed-d7effc46d161} = 29.4, !- Program Line 8 + SET {2c5bdf4d-ccb8-439b-a6f4-584c56d2b185} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}<23.9 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}>1.7, !- Program Line 10 + SET {b207d1d3-057c-457e-b0ed-d7effc46d161} = 29.4, !- Program Line 11 + SET {2c5bdf4d-ccb8-439b-a6f4-584c56d2b185} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7bcc51bd-0fce-4d1f-8793-714a2a92fd98} = NULL, !- Program Line 14 - SET {5adb69f8-514d-4c3e-ba10-c7fd085361f5} = NULL, !- Program Line 15 + SET {b207d1d3-057c-457e-b0ed-d7effc46d161} = NULL, !- Program Line 14 + SET {2c5bdf4d-ccb8-439b-a6f4-584c56d2b185} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ab531e51-de5e-4814-ad95-69f35d9c9275}<23.9 && {ab531e51-de5e-4814-ad95-69f35d9c9275}>1.7, !- Program Line 1 - SET {0cb8c469-0376-44c6-a178-a0278c92898d} = 29.4, !- Program Line 2 - SET {412102bb-cd03-4e2b-88e1-44995749491f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ab531e51-de5e-4814-ad95-69f35d9c9275}<23.9 && {ab531e51-de5e-4814-ad95-69f35d9c9275}>1.7, !- Program Line 4 - SET {0cb8c469-0376-44c6-a178-a0278c92898d} = 29.4, !- Program Line 5 - SET {412102bb-cd03-4e2b-88e1-44995749491f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ab531e51-de5e-4814-ad95-69f35d9c9275}<23.9 && {ab531e51-de5e-4814-ad95-69f35d9c9275}>1.7, !- Program Line 7 - SET {0cb8c469-0376-44c6-a178-a0278c92898d} = 29.4, !- Program Line 8 - SET {412102bb-cd03-4e2b-88e1-44995749491f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ab531e51-de5e-4814-ad95-69f35d9c9275}<23.9 && {ab531e51-de5e-4814-ad95-69f35d9c9275}>1.7, !- Program Line 10 - SET {0cb8c469-0376-44c6-a178-a0278c92898d} = 29.4, !- Program Line 11 - SET {412102bb-cd03-4e2b-88e1-44995749491f} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}<23.9 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}>1.7, !- Program Line 1 + SET {32703121-1ee2-4efd-947d-e0d0f65a60d1} = 29.4, !- Program Line 2 + SET {41b10f62-9129-43be-9c14-b301ae1044aa} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}<23.9 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}>1.7, !- Program Line 4 + SET {32703121-1ee2-4efd-947d-e0d0f65a60d1} = 29.4, !- Program Line 5 + SET {41b10f62-9129-43be-9c14-b301ae1044aa} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}<23.9 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}>1.7, !- Program Line 7 + SET {32703121-1ee2-4efd-947d-e0d0f65a60d1} = 29.4, !- Program Line 8 + SET {41b10f62-9129-43be-9c14-b301ae1044aa} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}<23.9 && {40c02d68-e004-40f3-b37a-5e3e90b2d9cf}>1.7, !- Program Line 10 + SET {32703121-1ee2-4efd-947d-e0d0f65a60d1} = 29.4, !- Program Line 11 + SET {41b10f62-9129-43be-9c14-b301ae1044aa} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0cb8c469-0376-44c6-a178-a0278c92898d} = NULL, !- Program Line 14 - SET {412102bb-cd03-4e2b-88e1-44995749491f} = NULL, !- Program Line 15 + SET {32703121-1ee2-4efd-947d-e0d0f65a60d1} = NULL, !- Program Line 14 + SET {41b10f62-9129-43be-9c14-b301ae1044aa} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -10794,7 +10794,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10820,7 +10820,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10846,7 +10846,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10872,7 +10872,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10898,7 +10898,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14096,271 +14096,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000401}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000402}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000403}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000100}, !- Inlet Port {00000000-0000-0000-0017-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000404}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000818}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000405}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000823}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000406}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000407}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000094}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000408}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000819}, !- Inlet Port {00000000-0000-0000-0017-000000000820}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000409}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000821}, !- Inlet Port {00000000-0000-0000-0017-000000000822}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000410}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000534}, !- Inlet Port {00000000-0000-0000-0017-000000000536}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000411}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000537}, !- Inlet Port {00000000-0000-0000-0017-000000000535}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000412}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000540}, !- Inlet Port {00000000-0000-0000-0017-000000000541}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000413}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000830}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000414}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000835}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000415}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000532}, !- Inlet Port {00000000-0000-0000-0017-000000000539}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000416}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000538}, !- Inlet Port {00000000-0000-0000-0017-000000000533}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000417}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000518}, !- Inlet Port {00000000-0000-0000-0017-000000000520}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000418}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000521}, !- Inlet Port {00000000-0000-0000-0017-000000000519}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000419}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000524}, !- Inlet Port {00000000-0000-0000-0017-000000000525}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000420}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000824}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000421}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000829}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000422}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000516}, !- Inlet Port {00000000-0000-0000-0017-000000000523}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000423}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000522}, !- Inlet Port {00000000-0000-0000-0017-000000000517}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000424}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000831}, !- Inlet Port {00000000-0000-0000-0017-000000000832}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000425}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000833}, !- Inlet Port {00000000-0000-0000-0017-000000000834}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000426}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000825}, !- Inlet Port {00000000-0000-0000-0017-000000000826}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000427}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000827}, !- Inlet Port {00000000-0000-0000-0017-000000000828}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000428}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000444}, !- Inlet Port {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000429}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000447}, !- Inlet Port {00000000-0000-0000-0017-000000000445}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000430}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000450}, !- Inlet Port {00000000-0000-0000-0017-000000000451}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000431}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000842}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000432}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000847}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000433}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000442}, !- Inlet Port {00000000-0000-0000-0017-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000434}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000448}, !- Inlet Port {00000000-0000-0000-0017-000000000443}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000435}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000422}, !- Inlet Port {00000000-0000-0000-0017-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000436}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000425}, !- Inlet Port {00000000-0000-0000-0017-000000000423}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000437}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000428}, !- Inlet Port {00000000-0000-0000-0017-000000000429}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000438}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000836}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000439}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000841}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000440}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000420}, !- Inlet Port {00000000-0000-0000-0017-000000000427}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000441}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000426}, !- Inlet Port {00000000-0000-0000-0017-000000000421}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000442}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000843}, !- Inlet Port {00000000-0000-0000-0017-000000000844}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000443}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000845}, !- Inlet Port {00000000-0000-0000-0017-000000000846}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000444}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000837}, !- Inlet Port {00000000-0000-0000-0017-000000000838}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000445}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000839}, !- Inlet Port {00000000-0000-0000-0017-000000000840}; !- Outlet Port @@ -20965,7 +20965,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000181}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20980,7 +20980,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000182}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20989,7 +20989,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000183}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20998,7 +20998,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21013,7 +21013,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21022,7 +21022,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21031,7 +21031,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21046,7 +21046,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21055,7 +21055,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21064,7 +21064,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000190}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -21079,7 +21079,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000191}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21088,7 +21088,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000192}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21097,7 +21097,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000193}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -21112,7 +21112,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000194}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21121,7 +21121,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000195}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23977,7 +23977,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000182}, !- Summer Design Day Schedule Name @@ -23985,7 +23985,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000185}, !- Summer Design Day Schedule Name @@ -23993,7 +23993,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000188}, !- Summer Design Day Schedule Name @@ -24001,7 +24001,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000191}, !- Summer Design Day Schedule Name @@ -24009,7 +24009,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000194}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 1d655601ef..d0d9a02072 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -96,7 +96,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -118,7 +118,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -140,7 +140,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -162,7 +162,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -184,7 +184,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10772,7 +10772,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0065-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10780,7 +10780,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0065-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10820,67 +10820,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9c07bf40-7a34-4959-bc25-35cb706def4b}<23.9 && {9c07bf40-7a34-4959-bc25-35cb706def4b}>1.7, !- Program Line 1 - SET {af499968-327a-4c1d-8464-e8134b9d3b99} = 29.4, !- Program Line 2 - SET {0b813cef-3426-40e5-8237-752de78137ea} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9c07bf40-7a34-4959-bc25-35cb706def4b}<23.9 && {9c07bf40-7a34-4959-bc25-35cb706def4b}>1.7, !- Program Line 4 - SET {af499968-327a-4c1d-8464-e8134b9d3b99} = 29.4, !- Program Line 5 - SET {0b813cef-3426-40e5-8237-752de78137ea} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9c07bf40-7a34-4959-bc25-35cb706def4b}<23.9 && {9c07bf40-7a34-4959-bc25-35cb706def4b}>1.7, !- Program Line 7 - SET {af499968-327a-4c1d-8464-e8134b9d3b99} = 29.4, !- Program Line 8 - SET {0b813cef-3426-40e5-8237-752de78137ea} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9c07bf40-7a34-4959-bc25-35cb706def4b}<23.9 && {9c07bf40-7a34-4959-bc25-35cb706def4b}>1.7, !- Program Line 10 - SET {af499968-327a-4c1d-8464-e8134b9d3b99} = 29.4, !- Program Line 11 - SET {0b813cef-3426-40e5-8237-752de78137ea} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a1b870bc-5339-4f7f-b067-138853a5077c}<23.9 && {a1b870bc-5339-4f7f-b067-138853a5077c}>1.7, !- Program Line 1 + SET {858e25ec-d0e8-4173-a106-5450d3d9bb30} = 29.4, !- Program Line 2 + SET {7b337b8d-a902-4d63-af58-6aeb6f8a81ca} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a1b870bc-5339-4f7f-b067-138853a5077c}<23.9 && {a1b870bc-5339-4f7f-b067-138853a5077c}>1.7, !- Program Line 4 + SET {858e25ec-d0e8-4173-a106-5450d3d9bb30} = 29.4, !- Program Line 5 + SET {7b337b8d-a902-4d63-af58-6aeb6f8a81ca} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a1b870bc-5339-4f7f-b067-138853a5077c}<23.9 && {a1b870bc-5339-4f7f-b067-138853a5077c}>1.7, !- Program Line 7 + SET {858e25ec-d0e8-4173-a106-5450d3d9bb30} = 29.4, !- Program Line 8 + SET {7b337b8d-a902-4d63-af58-6aeb6f8a81ca} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a1b870bc-5339-4f7f-b067-138853a5077c}<23.9 && {a1b870bc-5339-4f7f-b067-138853a5077c}>1.7, !- Program Line 10 + SET {858e25ec-d0e8-4173-a106-5450d3d9bb30} = 29.4, !- Program Line 11 + SET {7b337b8d-a902-4d63-af58-6aeb6f8a81ca} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {af499968-327a-4c1d-8464-e8134b9d3b99} = NULL, !- Program Line 14 - SET {0b813cef-3426-40e5-8237-752de78137ea} = NULL, !- Program Line 15 + SET {858e25ec-d0e8-4173-a106-5450d3d9bb30} = NULL, !- Program Line 14 + SET {7b337b8d-a902-4d63-af58-6aeb6f8a81ca} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}<23.9 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}>1.7, !- Program Line 1 - SET {fa2cf677-027c-4119-b41e-37a51b63730c} = 29.4, !- Program Line 2 - SET {d071a821-e356-4b2d-87e9-0c907417bd27} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}<23.9 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}>1.7, !- Program Line 4 - SET {fa2cf677-027c-4119-b41e-37a51b63730c} = 29.4, !- Program Line 5 - SET {d071a821-e356-4b2d-87e9-0c907417bd27} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}<23.9 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}>1.7, !- Program Line 7 - SET {fa2cf677-027c-4119-b41e-37a51b63730c} = 29.4, !- Program Line 8 - SET {d071a821-e356-4b2d-87e9-0c907417bd27} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}<23.9 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}>1.7, !- Program Line 10 - SET {fa2cf677-027c-4119-b41e-37a51b63730c} = 29.4, !- Program Line 11 - SET {d071a821-e356-4b2d-87e9-0c907417bd27} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}<23.9 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}>1.7, !- Program Line 1 + SET {c957e0c6-818f-46f5-903f-72b797cb1642} = 29.4, !- Program Line 2 + SET {f2ab43fe-8718-45b1-b1df-199760704846} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}<23.9 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}>1.7, !- Program Line 4 + SET {c957e0c6-818f-46f5-903f-72b797cb1642} = 29.4, !- Program Line 5 + SET {f2ab43fe-8718-45b1-b1df-199760704846} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}<23.9 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}>1.7, !- Program Line 7 + SET {c957e0c6-818f-46f5-903f-72b797cb1642} = 29.4, !- Program Line 8 + SET {f2ab43fe-8718-45b1-b1df-199760704846} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}<23.9 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}>1.7, !- Program Line 10 + SET {c957e0c6-818f-46f5-903f-72b797cb1642} = 29.4, !- Program Line 11 + SET {f2ab43fe-8718-45b1-b1df-199760704846} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {fa2cf677-027c-4119-b41e-37a51b63730c} = NULL, !- Program Line 14 - SET {d071a821-e356-4b2d-87e9-0c907417bd27} = NULL, !- Program Line 15 + SET {c957e0c6-818f-46f5-903f-72b797cb1642} = NULL, !- Program Line 14 + SET {f2ab43fe-8718-45b1-b1df-199760704846} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}<23.9 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}>1.7, !- Program Line 1 - SET {a12b9214-70ec-4e19-9417-3598a38d4bf4} = 29.4, !- Program Line 2 - SET {64807163-10ee-4cd8-bb35-f8343c64454f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}<23.9 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}>1.7, !- Program Line 4 - SET {a12b9214-70ec-4e19-9417-3598a38d4bf4} = 29.4, !- Program Line 5 - SET {64807163-10ee-4cd8-bb35-f8343c64454f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}<23.9 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}>1.7, !- Program Line 7 - SET {a12b9214-70ec-4e19-9417-3598a38d4bf4} = 29.4, !- Program Line 8 - SET {64807163-10ee-4cd8-bb35-f8343c64454f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}<23.9 && {e3087b61-c2f5-4ba1-ba7b-bf34aa4f0ddc}>1.7, !- Program Line 10 - SET {a12b9214-70ec-4e19-9417-3598a38d4bf4} = 29.4, !- Program Line 11 - SET {64807163-10ee-4cd8-bb35-f8343c64454f} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}<23.9 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}>1.7, !- Program Line 1 + SET {3e72671a-cf94-4991-9077-c7e9aaff5a0d} = 29.4, !- Program Line 2 + SET {b548a1f1-c629-4a98-bafd-075a8a29f018} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}<23.9 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}>1.7, !- Program Line 4 + SET {3e72671a-cf94-4991-9077-c7e9aaff5a0d} = 29.4, !- Program Line 5 + SET {b548a1f1-c629-4a98-bafd-075a8a29f018} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}<23.9 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}>1.7, !- Program Line 7 + SET {3e72671a-cf94-4991-9077-c7e9aaff5a0d} = 29.4, !- Program Line 8 + SET {b548a1f1-c629-4a98-bafd-075a8a29f018} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}<23.9 && {711aa86f-27e3-450c-aebb-9284dd2f2cc1}>1.7, !- Program Line 10 + SET {3e72671a-cf94-4991-9077-c7e9aaff5a0d} = 29.4, !- Program Line 11 + SET {b548a1f1-c629-4a98-bafd-075a8a29f018} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a12b9214-70ec-4e19-9417-3598a38d4bf4} = NULL, !- Program Line 14 - SET {64807163-10ee-4cd8-bb35-f8343c64454f} = NULL, !- Program Line 15 + SET {3e72671a-cf94-4991-9077-c7e9aaff5a0d} = NULL, !- Program Line 14 + SET {b548a1f1-c629-4a98-bafd-075a8a29f018} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -11052,7 +11052,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11078,7 +11078,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11104,7 +11104,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11130,7 +11130,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11156,7 +11156,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14354,271 +14354,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000401}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000402}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000403}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000100}, !- Inlet Port {00000000-0000-0000-0017-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000404}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000818}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000405}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000823}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000406}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000407}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000094}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000408}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000819}, !- Inlet Port {00000000-0000-0000-0017-000000000820}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000409}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000821}, !- Inlet Port {00000000-0000-0000-0017-000000000822}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000410}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000534}, !- Inlet Port {00000000-0000-0000-0017-000000000536}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000411}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000537}, !- Inlet Port {00000000-0000-0000-0017-000000000535}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000412}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000540}, !- Inlet Port {00000000-0000-0000-0017-000000000541}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000413}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000830}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000414}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000835}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000415}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000532}, !- Inlet Port {00000000-0000-0000-0017-000000000539}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000416}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000538}, !- Inlet Port {00000000-0000-0000-0017-000000000533}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000417}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000518}, !- Inlet Port {00000000-0000-0000-0017-000000000520}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000418}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000521}, !- Inlet Port {00000000-0000-0000-0017-000000000519}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000419}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000524}, !- Inlet Port {00000000-0000-0000-0017-000000000525}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000420}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000824}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000421}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000829}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000422}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000516}, !- Inlet Port {00000000-0000-0000-0017-000000000523}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000423}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000522}, !- Inlet Port {00000000-0000-0000-0017-000000000517}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000424}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000831}, !- Inlet Port {00000000-0000-0000-0017-000000000832}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000425}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000833}, !- Inlet Port {00000000-0000-0000-0017-000000000834}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000426}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000825}, !- Inlet Port {00000000-0000-0000-0017-000000000826}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000427}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000827}, !- Inlet Port {00000000-0000-0000-0017-000000000828}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000428}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000444}, !- Inlet Port {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000429}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000447}, !- Inlet Port {00000000-0000-0000-0017-000000000445}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000430}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000450}, !- Inlet Port {00000000-0000-0000-0017-000000000451}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000431}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000842}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000432}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000847}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000433}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000442}, !- Inlet Port {00000000-0000-0000-0017-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000434}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000448}, !- Inlet Port {00000000-0000-0000-0017-000000000443}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000435}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000422}, !- Inlet Port {00000000-0000-0000-0017-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000436}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000425}, !- Inlet Port {00000000-0000-0000-0017-000000000423}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000437}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000428}, !- Inlet Port {00000000-0000-0000-0017-000000000429}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000438}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000836}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000439}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000841}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000440}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000420}, !- Inlet Port {00000000-0000-0000-0017-000000000427}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000441}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000426}, !- Inlet Port {00000000-0000-0000-0017-000000000421}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000442}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000843}, !- Inlet Port {00000000-0000-0000-0017-000000000844}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000443}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000845}, !- Inlet Port {00000000-0000-0000-0017-000000000846}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000444}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000837}, !- Inlet Port {00000000-0000-0000-0017-000000000838}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000445}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000839}, !- Inlet Port {00000000-0000-0000-0017-000000000840}; !- Outlet Port @@ -21223,7 +21223,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000181}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -21238,7 +21238,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000182}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21247,7 +21247,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000183}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21256,7 +21256,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21271,7 +21271,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21280,7 +21280,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21289,7 +21289,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21304,7 +21304,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21313,7 +21313,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21322,7 +21322,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000190}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -21337,7 +21337,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000191}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21346,7 +21346,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000192}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21355,7 +21355,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000193}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -21370,7 +21370,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000194}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21379,7 +21379,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000195}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24235,7 +24235,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000182}, !- Summer Design Day Schedule Name @@ -24243,7 +24243,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000185}, !- Summer Design Day Schedule Name @@ -24251,7 +24251,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000188}, !- Summer Design Day Schedule Name @@ -24259,7 +24259,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000191}, !- Summer Design Day Schedule Name @@ -24267,7 +24267,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000194}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGas-CAN_AB_Calgary.osm index fe304c97bc..d502363d48 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGas-CAN_AB_Calgary.osm @@ -21397,41 +21397,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0042-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}<23.9 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}>1.7, !- Program Line 1 - SET {c8af7e42-5bd2-42be-9d75-3dd9902af7f6} = 29.4, !- Program Line 2 - SET {3278e32a-9d6d-42d4-aacd-9f6ac639898f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}<23.9 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}>1.7, !- Program Line 4 - SET {c8af7e42-5bd2-42be-9d75-3dd9902af7f6} = 29.4, !- Program Line 5 - SET {3278e32a-9d6d-42d4-aacd-9f6ac639898f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}<23.9 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}>1.7, !- Program Line 7 - SET {c8af7e42-5bd2-42be-9d75-3dd9902af7f6} = 29.4, !- Program Line 8 - SET {3278e32a-9d6d-42d4-aacd-9f6ac639898f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}<23.9 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}>1.7, !- Program Line 10 - SET {c8af7e42-5bd2-42be-9d75-3dd9902af7f6} = 29.4, !- Program Line 11 - SET {3278e32a-9d6d-42d4-aacd-9f6ac639898f} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}<23.9 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}>1.7, !- Program Line 1 + SET {9d911efc-0046-4281-9d73-a79089301651} = 29.4, !- Program Line 2 + SET {dbe70298-f10b-4043-be47-ac72e9e20709} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}<23.9 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}>1.7, !- Program Line 4 + SET {9d911efc-0046-4281-9d73-a79089301651} = 29.4, !- Program Line 5 + SET {dbe70298-f10b-4043-be47-ac72e9e20709} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}<23.9 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}>1.7, !- Program Line 7 + SET {9d911efc-0046-4281-9d73-a79089301651} = 29.4, !- Program Line 8 + SET {dbe70298-f10b-4043-be47-ac72e9e20709} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}<23.9 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}>1.7, !- Program Line 10 + SET {9d911efc-0046-4281-9d73-a79089301651} = 29.4, !- Program Line 11 + SET {dbe70298-f10b-4043-be47-ac72e9e20709} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c8af7e42-5bd2-42be-9d75-3dd9902af7f6} = NULL, !- Program Line 14 - SET {3278e32a-9d6d-42d4-aacd-9f6ac639898f} = NULL, !- Program Line 15 + SET {9d911efc-0046-4281-9d73-a79089301651} = NULL, !- Program Line 14 + SET {dbe70298-f10b-4043-be47-ac72e9e20709} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0042-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}<23.9 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}>1.7, !- Program Line 1 - SET {5dc2ea75-7f9a-4dfa-bca5-14997cc8a0c0} = 29.4, !- Program Line 2 - SET {34fb9f08-75ab-4567-b8d1-3e430e7085d8} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}<23.9 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}>1.7, !- Program Line 4 - SET {5dc2ea75-7f9a-4dfa-bca5-14997cc8a0c0} = 29.4, !- Program Line 5 - SET {34fb9f08-75ab-4567-b8d1-3e430e7085d8} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}<23.9 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}>1.7, !- Program Line 7 - SET {5dc2ea75-7f9a-4dfa-bca5-14997cc8a0c0} = 29.4, !- Program Line 8 - SET {34fb9f08-75ab-4567-b8d1-3e430e7085d8} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}<23.9 && {cb556ce0-4521-4ad3-82b4-26b556bf58bb}>1.7, !- Program Line 10 - SET {5dc2ea75-7f9a-4dfa-bca5-14997cc8a0c0} = 29.4, !- Program Line 11 - SET {34fb9f08-75ab-4567-b8d1-3e430e7085d8} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}<23.9 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}>1.7, !- Program Line 1 + SET {fe4f73c3-f099-4a46-932c-bc0a3a5c9dca} = 29.4, !- Program Line 2 + SET {bdc2fed1-eef6-4149-b253-9f6ed77692fa} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}<23.9 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}>1.7, !- Program Line 4 + SET {fe4f73c3-f099-4a46-932c-bc0a3a5c9dca} = 29.4, !- Program Line 5 + SET {bdc2fed1-eef6-4149-b253-9f6ed77692fa} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}<23.9 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}>1.7, !- Program Line 7 + SET {fe4f73c3-f099-4a46-932c-bc0a3a5c9dca} = 29.4, !- Program Line 8 + SET {bdc2fed1-eef6-4149-b253-9f6ed77692fa} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}<23.9 && {25b1a779-c1aa-4d76-a549-e6657a8c9b43}>1.7, !- Program Line 10 + SET {fe4f73c3-f099-4a46-932c-bc0a3a5c9dca} = 29.4, !- Program Line 11 + SET {bdc2fed1-eef6-4149-b253-9f6ed77692fa} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5dc2ea75-7f9a-4dfa-bca5-14997cc8a0c0} = NULL, !- Program Line 14 - SET {34fb9f08-75ab-4567-b8d1-3e430e7085d8} = NULL, !- Program Line 15 + SET {fe4f73c3-f099-4a46-932c-bc0a3a5c9dca} = NULL, !- Program Line 14 + SET {bdc2fed1-eef6-4149-b253-9f6ed77692fa} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -34327,7 +34327,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0071-000000000170}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -34567,7 +34567,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0071-000000000180}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -35035,7 +35035,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0071-000000000186}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -35695,7 +35695,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0071-000000000210}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -38645,7 +38645,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0073-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0074-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0074-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0071-000000000170}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 3d88efc0c2..734541adb7 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -96,7 +96,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -118,7 +118,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -140,7 +140,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -162,7 +162,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -184,7 +184,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -13569,7 +13569,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0068-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13577,7 +13577,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0068-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13617,67 +13617,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {17205a5d-e84e-47f5-a35c-0a59c64144a8}<23.9 && {17205a5d-e84e-47f5-a35c-0a59c64144a8}>1.7, !- Program Line 1 - SET {8af70813-52b2-4d24-b9a9-aed0df6396b1} = 29.4, !- Program Line 2 - SET {3c908d3a-e253-45a6-a79f-33444242db2b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {17205a5d-e84e-47f5-a35c-0a59c64144a8}<23.9 && {17205a5d-e84e-47f5-a35c-0a59c64144a8}>1.7, !- Program Line 4 - SET {8af70813-52b2-4d24-b9a9-aed0df6396b1} = 29.4, !- Program Line 5 - SET {3c908d3a-e253-45a6-a79f-33444242db2b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {17205a5d-e84e-47f5-a35c-0a59c64144a8}<23.9 && {17205a5d-e84e-47f5-a35c-0a59c64144a8}>1.7, !- Program Line 7 - SET {8af70813-52b2-4d24-b9a9-aed0df6396b1} = 29.4, !- Program Line 8 - SET {3c908d3a-e253-45a6-a79f-33444242db2b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {17205a5d-e84e-47f5-a35c-0a59c64144a8}<23.9 && {17205a5d-e84e-47f5-a35c-0a59c64144a8}>1.7, !- Program Line 10 - SET {8af70813-52b2-4d24-b9a9-aed0df6396b1} = 29.4, !- Program Line 11 - SET {3c908d3a-e253-45a6-a79f-33444242db2b} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c2736590-bf35-48cf-bd00-d1bcab77a19e}<23.9 && {c2736590-bf35-48cf-bd00-d1bcab77a19e}>1.7, !- Program Line 1 + SET {db7e3a1f-e93f-4dcc-bf6b-c71dedc23c0b} = 29.4, !- Program Line 2 + SET {8ca12b6c-f343-407c-ab9a-f55fe1269125} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c2736590-bf35-48cf-bd00-d1bcab77a19e}<23.9 && {c2736590-bf35-48cf-bd00-d1bcab77a19e}>1.7, !- Program Line 4 + SET {db7e3a1f-e93f-4dcc-bf6b-c71dedc23c0b} = 29.4, !- Program Line 5 + SET {8ca12b6c-f343-407c-ab9a-f55fe1269125} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c2736590-bf35-48cf-bd00-d1bcab77a19e}<23.9 && {c2736590-bf35-48cf-bd00-d1bcab77a19e}>1.7, !- Program Line 7 + SET {db7e3a1f-e93f-4dcc-bf6b-c71dedc23c0b} = 29.4, !- Program Line 8 + SET {8ca12b6c-f343-407c-ab9a-f55fe1269125} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c2736590-bf35-48cf-bd00-d1bcab77a19e}<23.9 && {c2736590-bf35-48cf-bd00-d1bcab77a19e}>1.7, !- Program Line 10 + SET {db7e3a1f-e93f-4dcc-bf6b-c71dedc23c0b} = 29.4, !- Program Line 11 + SET {8ca12b6c-f343-407c-ab9a-f55fe1269125} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8af70813-52b2-4d24-b9a9-aed0df6396b1} = NULL, !- Program Line 14 - SET {3c908d3a-e253-45a6-a79f-33444242db2b} = NULL, !- Program Line 15 + SET {db7e3a1f-e93f-4dcc-bf6b-c71dedc23c0b} = NULL, !- Program Line 14 + SET {8ca12b6c-f343-407c-ab9a-f55fe1269125} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}<23.9 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}>1.7, !- Program Line 1 - SET {63103792-11ec-4958-9cb7-dfaf78abdb5c} = 29.4, !- Program Line 2 - SET {9f215fe6-621d-4a82-a03a-7fdb30412099} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}<23.9 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}>1.7, !- Program Line 4 - SET {63103792-11ec-4958-9cb7-dfaf78abdb5c} = 29.4, !- Program Line 5 - SET {9f215fe6-621d-4a82-a03a-7fdb30412099} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}<23.9 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}>1.7, !- Program Line 7 - SET {63103792-11ec-4958-9cb7-dfaf78abdb5c} = 29.4, !- Program Line 8 - SET {9f215fe6-621d-4a82-a03a-7fdb30412099} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}<23.9 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}>1.7, !- Program Line 10 - SET {63103792-11ec-4958-9cb7-dfaf78abdb5c} = 29.4, !- Program Line 11 - SET {9f215fe6-621d-4a82-a03a-7fdb30412099} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {12441ec2-7cb6-48d6-817c-1775dd458012}<23.9 && {12441ec2-7cb6-48d6-817c-1775dd458012}>1.7, !- Program Line 1 + SET {8f878871-e286-4854-a499-bbfbc89feeaa} = 29.4, !- Program Line 2 + SET {35a7779f-412b-481d-9db9-83d6e88f9aa8} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {12441ec2-7cb6-48d6-817c-1775dd458012}<23.9 && {12441ec2-7cb6-48d6-817c-1775dd458012}>1.7, !- Program Line 4 + SET {8f878871-e286-4854-a499-bbfbc89feeaa} = 29.4, !- Program Line 5 + SET {35a7779f-412b-481d-9db9-83d6e88f9aa8} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {12441ec2-7cb6-48d6-817c-1775dd458012}<23.9 && {12441ec2-7cb6-48d6-817c-1775dd458012}>1.7, !- Program Line 7 + SET {8f878871-e286-4854-a499-bbfbc89feeaa} = 29.4, !- Program Line 8 + SET {35a7779f-412b-481d-9db9-83d6e88f9aa8} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {12441ec2-7cb6-48d6-817c-1775dd458012}<23.9 && {12441ec2-7cb6-48d6-817c-1775dd458012}>1.7, !- Program Line 10 + SET {8f878871-e286-4854-a499-bbfbc89feeaa} = 29.4, !- Program Line 11 + SET {35a7779f-412b-481d-9db9-83d6e88f9aa8} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {63103792-11ec-4958-9cb7-dfaf78abdb5c} = NULL, !- Program Line 14 - SET {9f215fe6-621d-4a82-a03a-7fdb30412099} = NULL, !- Program Line 15 + SET {8f878871-e286-4854-a499-bbfbc89feeaa} = NULL, !- Program Line 14 + SET {35a7779f-412b-481d-9db9-83d6e88f9aa8} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}<23.9 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}>1.7, !- Program Line 1 - SET {100c293e-59c9-49ec-8724-a7fc6009037d} = 29.4, !- Program Line 2 - SET {efbb4f7a-f186-4b32-a096-17ad884d8f5a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}<23.9 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}>1.7, !- Program Line 4 - SET {100c293e-59c9-49ec-8724-a7fc6009037d} = 29.4, !- Program Line 5 - SET {efbb4f7a-f186-4b32-a096-17ad884d8f5a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}<23.9 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}>1.7, !- Program Line 7 - SET {100c293e-59c9-49ec-8724-a7fc6009037d} = 29.4, !- Program Line 8 - SET {efbb4f7a-f186-4b32-a096-17ad884d8f5a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}<23.9 && {40e1a6fc-2db1-4a43-bc7f-a6d424153d5e}>1.7, !- Program Line 10 - SET {100c293e-59c9-49ec-8724-a7fc6009037d} = 29.4, !- Program Line 11 - SET {efbb4f7a-f186-4b32-a096-17ad884d8f5a} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {12441ec2-7cb6-48d6-817c-1775dd458012}<23.9 && {12441ec2-7cb6-48d6-817c-1775dd458012}>1.7, !- Program Line 1 + SET {34776483-08cc-4812-baf7-e1c32ffb910b} = 29.4, !- Program Line 2 + SET {f35344d9-feb2-452a-baed-36da562a0d7d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {12441ec2-7cb6-48d6-817c-1775dd458012}<23.9 && {12441ec2-7cb6-48d6-817c-1775dd458012}>1.7, !- Program Line 4 + SET {34776483-08cc-4812-baf7-e1c32ffb910b} = 29.4, !- Program Line 5 + SET {f35344d9-feb2-452a-baed-36da562a0d7d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {12441ec2-7cb6-48d6-817c-1775dd458012}<23.9 && {12441ec2-7cb6-48d6-817c-1775dd458012}>1.7, !- Program Line 7 + SET {34776483-08cc-4812-baf7-e1c32ffb910b} = 29.4, !- Program Line 8 + SET {f35344d9-feb2-452a-baed-36da562a0d7d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {12441ec2-7cb6-48d6-817c-1775dd458012}<23.9 && {12441ec2-7cb6-48d6-817c-1775dd458012}>1.7, !- Program Line 10 + SET {34776483-08cc-4812-baf7-e1c32ffb910b} = 29.4, !- Program Line 11 + SET {f35344d9-feb2-452a-baed-36da562a0d7d} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {100c293e-59c9-49ec-8724-a7fc6009037d} = NULL, !- Program Line 14 - SET {efbb4f7a-f186-4b32-a096-17ad884d8f5a} = NULL, !- Program Line 15 + SET {34776483-08cc-4812-baf7-e1c32ffb910b} = NULL, !- Program Line 14 + SET {f35344d9-feb2-452a-baed-36da562a0d7d} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -13849,7 +13849,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13875,7 +13875,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13901,7 +13901,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13927,7 +13927,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000004}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13953,7 +13953,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18003,271 +18003,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000543}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000115}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000544}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000116}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000545}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000125}, !- Inlet Port {00000000-0000-0000-0019-000000000126}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000546}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001102}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000547}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000548}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000113}, !- Inlet Port {00000000-0000-0000-0019-000000000124}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000549}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000119}, !- Inlet Port {00000000-0000-0000-0019-000000000114}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000550}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001103}, !- Inlet Port {00000000-0000-0000-0019-000000001104}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000551}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001105}, !- Inlet Port {00000000-0000-0000-0019-000000001106}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000552}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000814}, !- Inlet Port {00000000-0000-0000-0019-000000000816}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000553}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000817}, !- Inlet Port {00000000-0000-0000-0019-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000554}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000820}, !- Inlet Port {00000000-0000-0000-0019-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000555}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001114}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000556}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001119}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000557}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000812}, !- Inlet Port {00000000-0000-0000-0019-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000558}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000818}, !- Inlet Port {00000000-0000-0000-0019-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000559}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000794}, !- Inlet Port {00000000-0000-0000-0019-000000000796}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000560}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000797}, !- Inlet Port {00000000-0000-0000-0019-000000000795}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000561}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000800}, !- Inlet Port {00000000-0000-0000-0019-000000000801}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000562}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001108}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000563}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000564}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000792}, !- Inlet Port {00000000-0000-0000-0019-000000000799}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000565}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000798}, !- Inlet Port {00000000-0000-0000-0019-000000000793}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000566}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001115}, !- Inlet Port {00000000-0000-0000-0019-000000001116}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000567}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001117}, !- Inlet Port {00000000-0000-0000-0019-000000001118}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000568}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001109}, !- Inlet Port {00000000-0000-0000-0019-000000001110}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000569}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001111}, !- Inlet Port {00000000-0000-0000-0019-000000001112}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000570}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000688}, !- Inlet Port {00000000-0000-0000-0019-000000000690}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000571}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000691}, !- Inlet Port {00000000-0000-0000-0019-000000000689}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000572}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000694}, !- Inlet Port {00000000-0000-0000-0019-000000000695}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000573}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001126}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000574}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001131}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000575}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000686}, !- Inlet Port {00000000-0000-0000-0019-000000000693}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000576}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000692}, !- Inlet Port {00000000-0000-0000-0019-000000000687}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000577}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000658}, !- Inlet Port {00000000-0000-0000-0019-000000000660}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000578}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000661}, !- Inlet Port {00000000-0000-0000-0019-000000000659}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000579}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000664}, !- Inlet Port {00000000-0000-0000-0019-000000000665}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000580}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001120}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000581}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001125}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000582}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000656}, !- Inlet Port {00000000-0000-0000-0019-000000000663}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000583}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000662}, !- Inlet Port {00000000-0000-0000-0019-000000000657}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000584}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001127}, !- Inlet Port {00000000-0000-0000-0019-000000001128}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000585}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001129}, !- Inlet Port {00000000-0000-0000-0019-000000001130}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000586}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001121}, !- Inlet Port {00000000-0000-0000-0019-000000001122}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000587}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001123}, !- Inlet Port {00000000-0000-0000-0019-000000001124}; !- Outlet Port @@ -24953,7 +24953,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000181}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24968,7 +24968,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000182}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24977,7 +24977,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000183}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24986,7 +24986,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -25001,7 +25001,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25010,7 +25010,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25019,7 +25019,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -25034,7 +25034,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25043,7 +25043,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25052,7 +25052,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000190}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -25067,7 +25067,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000191}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25076,7 +25076,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000192}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25085,7 +25085,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000193}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -25100,7 +25100,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000194}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25109,7 +25109,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000195}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -27965,7 +27965,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000182}, !- Summer Design Day Schedule Name @@ -27973,7 +27973,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000185}, !- Summer Design Day Schedule Name @@ -27981,7 +27981,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000188}, !- Summer Design Day Schedule Name @@ -27989,7 +27989,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000191}, !- Summer Design Day Schedule Name @@ -27997,7 +27997,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000194}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 8633eb628b..8c7d5edb34 100644 --- a/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeHotel-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -96,7 +96,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -118,7 +118,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -140,7 +140,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -162,7 +162,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -184,7 +184,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -13827,7 +13827,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0068-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13835,7 +13835,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0068-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13875,67 +13875,67 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {390237f3-50f3-43c3-a4cb-d57e0d119223}<23.9 && {390237f3-50f3-43c3-a4cb-d57e0d119223}>1.7, !- Program Line 1 - SET {ec09c186-5551-49e5-b2ba-830d2d919465} = 29.4, !- Program Line 2 - SET {b6c5884b-f30a-424a-8bac-a782b5642e3d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {390237f3-50f3-43c3-a4cb-d57e0d119223}<23.9 && {390237f3-50f3-43c3-a4cb-d57e0d119223}>1.7, !- Program Line 4 - SET {ec09c186-5551-49e5-b2ba-830d2d919465} = 29.4, !- Program Line 5 - SET {b6c5884b-f30a-424a-8bac-a782b5642e3d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {390237f3-50f3-43c3-a4cb-d57e0d119223}<23.9 && {390237f3-50f3-43c3-a4cb-d57e0d119223}>1.7, !- Program Line 7 - SET {ec09c186-5551-49e5-b2ba-830d2d919465} = 29.4, !- Program Line 8 - SET {b6c5884b-f30a-424a-8bac-a782b5642e3d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {390237f3-50f3-43c3-a4cb-d57e0d119223}<23.9 && {390237f3-50f3-43c3-a4cb-d57e0d119223}>1.7, !- Program Line 10 - SET {ec09c186-5551-49e5-b2ba-830d2d919465} = 29.4, !- Program Line 11 - SET {b6c5884b-f30a-424a-8bac-a782b5642e3d} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {149e2239-b91f-4578-b694-d1f62cfc9b86}<23.9 && {149e2239-b91f-4578-b694-d1f62cfc9b86}>1.7, !- Program Line 1 + SET {30038297-7cf3-4f9f-8bdc-35639b86fb2f} = 29.4, !- Program Line 2 + SET {72d969c4-0dce-4b5d-b83e-1a75059d55c5} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {149e2239-b91f-4578-b694-d1f62cfc9b86}<23.9 && {149e2239-b91f-4578-b694-d1f62cfc9b86}>1.7, !- Program Line 4 + SET {30038297-7cf3-4f9f-8bdc-35639b86fb2f} = 29.4, !- Program Line 5 + SET {72d969c4-0dce-4b5d-b83e-1a75059d55c5} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {149e2239-b91f-4578-b694-d1f62cfc9b86}<23.9 && {149e2239-b91f-4578-b694-d1f62cfc9b86}>1.7, !- Program Line 7 + SET {30038297-7cf3-4f9f-8bdc-35639b86fb2f} = 29.4, !- Program Line 8 + SET {72d969c4-0dce-4b5d-b83e-1a75059d55c5} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {149e2239-b91f-4578-b694-d1f62cfc9b86}<23.9 && {149e2239-b91f-4578-b694-d1f62cfc9b86}>1.7, !- Program Line 10 + SET {30038297-7cf3-4f9f-8bdc-35639b86fb2f} = 29.4, !- Program Line 11 + SET {72d969c4-0dce-4b5d-b83e-1a75059d55c5} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ec09c186-5551-49e5-b2ba-830d2d919465} = NULL, !- Program Line 14 - SET {b6c5884b-f30a-424a-8bac-a782b5642e3d} = NULL, !- Program Line 15 + SET {30038297-7cf3-4f9f-8bdc-35639b86fb2f} = NULL, !- Program Line 14 + SET {72d969c4-0dce-4b5d-b83e-1a75059d55c5} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e7ead33d-5ad6-421a-b97e-002753329112}<23.9 && {e7ead33d-5ad6-421a-b97e-002753329112}>1.7, !- Program Line 1 - SET {c87bd194-4e70-4608-811c-1d5ca9201779} = 29.4, !- Program Line 2 - SET {3991a8df-290e-4ad3-995d-4ace1347ac1a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e7ead33d-5ad6-421a-b97e-002753329112}<23.9 && {e7ead33d-5ad6-421a-b97e-002753329112}>1.7, !- Program Line 4 - SET {c87bd194-4e70-4608-811c-1d5ca9201779} = 29.4, !- Program Line 5 - SET {3991a8df-290e-4ad3-995d-4ace1347ac1a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e7ead33d-5ad6-421a-b97e-002753329112}<23.9 && {e7ead33d-5ad6-421a-b97e-002753329112}>1.7, !- Program Line 7 - SET {c87bd194-4e70-4608-811c-1d5ca9201779} = 29.4, !- Program Line 8 - SET {3991a8df-290e-4ad3-995d-4ace1347ac1a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e7ead33d-5ad6-421a-b97e-002753329112}<23.9 && {e7ead33d-5ad6-421a-b97e-002753329112}>1.7, !- Program Line 10 - SET {c87bd194-4e70-4608-811c-1d5ca9201779} = 29.4, !- Program Line 11 - SET {3991a8df-290e-4ad3-995d-4ace1347ac1a} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}<23.9 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}>1.7, !- Program Line 1 + SET {15d4b218-4df2-46f1-b017-f4963d5d4d99} = 29.4, !- Program Line 2 + SET {8c8194bb-a086-48b6-9d15-ba1c277b2733} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}<23.9 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}>1.7, !- Program Line 4 + SET {15d4b218-4df2-46f1-b017-f4963d5d4d99} = 29.4, !- Program Line 5 + SET {8c8194bb-a086-48b6-9d15-ba1c277b2733} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}<23.9 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}>1.7, !- Program Line 7 + SET {15d4b218-4df2-46f1-b017-f4963d5d4d99} = 29.4, !- Program Line 8 + SET {8c8194bb-a086-48b6-9d15-ba1c277b2733} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}<23.9 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}>1.7, !- Program Line 10 + SET {15d4b218-4df2-46f1-b017-f4963d5d4d99} = 29.4, !- Program Line 11 + SET {8c8194bb-a086-48b6-9d15-ba1c277b2733} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c87bd194-4e70-4608-811c-1d5ca9201779} = NULL, !- Program Line 14 - SET {3991a8df-290e-4ad3-995d-4ace1347ac1a} = NULL, !- Program Line 15 + SET {15d4b218-4df2-46f1-b017-f4963d5d4d99} = NULL, !- Program Line 14 + SET {8c8194bb-a086-48b6-9d15-ba1c277b2733} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__OptimumStartProg1, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e7ead33d-5ad6-421a-b97e-002753329112}<23.9 && {e7ead33d-5ad6-421a-b97e-002753329112}>1.7, !- Program Line 1 - SET {5744f17d-a8cb-4dd9-b28b-c5ad2141cba3} = 29.4, !- Program Line 2 - SET {6f50406f-d2e6-4589-89bb-d96cb2a8fc31} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e7ead33d-5ad6-421a-b97e-002753329112}<23.9 && {e7ead33d-5ad6-421a-b97e-002753329112}>1.7, !- Program Line 4 - SET {5744f17d-a8cb-4dd9-b28b-c5ad2141cba3} = 29.4, !- Program Line 5 - SET {6f50406f-d2e6-4589-89bb-d96cb2a8fc31} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e7ead33d-5ad6-421a-b97e-002753329112}<23.9 && {e7ead33d-5ad6-421a-b97e-002753329112}>1.7, !- Program Line 7 - SET {5744f17d-a8cb-4dd9-b28b-c5ad2141cba3} = 29.4, !- Program Line 8 - SET {6f50406f-d2e6-4589-89bb-d96cb2a8fc31} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e7ead33d-5ad6-421a-b97e-002753329112}<23.9 && {e7ead33d-5ad6-421a-b97e-002753329112}>1.7, !- Program Line 10 - SET {5744f17d-a8cb-4dd9-b28b-c5ad2141cba3} = 29.4, !- Program Line 11 - SET {6f50406f-d2e6-4589-89bb-d96cb2a8fc31} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}<23.9 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}>1.7, !- Program Line 1 + SET {3fda80a5-73cb-41ea-8165-4bdd3669dcb1} = 29.4, !- Program Line 2 + SET {0cae472e-606c-4406-941a-476b2c04cd11} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}<23.9 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}>1.7, !- Program Line 4 + SET {3fda80a5-73cb-41ea-8165-4bdd3669dcb1} = 29.4, !- Program Line 5 + SET {0cae472e-606c-4406-941a-476b2c04cd11} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}<23.9 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}>1.7, !- Program Line 7 + SET {3fda80a5-73cb-41ea-8165-4bdd3669dcb1} = 29.4, !- Program Line 8 + SET {0cae472e-606c-4406-941a-476b2c04cd11} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}<23.9 && {ab0978d8-9783-4d76-b7dc-7be4999b3594}>1.7, !- Program Line 10 + SET {3fda80a5-73cb-41ea-8165-4bdd3669dcb1} = 29.4, !- Program Line 11 + SET {0cae472e-606c-4406-941a-476b2c04cd11} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5744f17d-a8cb-4dd9-b28b-c5ad2141cba3} = NULL, !- Program Line 14 - SET {6f50406f-d2e6-4589-89bb-d96cb2a8fc31} = NULL, !- Program Line 15 + SET {3fda80a5-73cb-41ea-8165-4bdd3669dcb1} = NULL, !- Program Line 14 + SET {0cae472e-606c-4406-941a-476b2c04cd11} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -14107,7 +14107,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14133,7 +14133,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14159,7 +14159,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14185,7 +14185,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000004}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14211,7 +14211,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0047-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18261,271 +18261,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000543}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000115}, !- Inlet Port {00000000-0000-0000-0019-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000544}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000118}, !- Inlet Port {00000000-0000-0000-0019-000000000116}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000545}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000125}, !- Inlet Port {00000000-0000-0000-0019-000000000126}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000546}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001102}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000547}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000548}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000113}, !- Inlet Port {00000000-0000-0000-0019-000000000124}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000549}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000119}, !- Inlet Port {00000000-0000-0000-0019-000000000114}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000550}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001103}, !- Inlet Port {00000000-0000-0000-0019-000000001104}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000551}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001105}, !- Inlet Port {00000000-0000-0000-0019-000000001106}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000552}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000814}, !- Inlet Port {00000000-0000-0000-0019-000000000816}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000553}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000817}, !- Inlet Port {00000000-0000-0000-0019-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000554}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000820}, !- Inlet Port {00000000-0000-0000-0019-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000555}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001114}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000556}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001119}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000557}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000812}, !- Inlet Port {00000000-0000-0000-0019-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000558}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000818}, !- Inlet Port {00000000-0000-0000-0019-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000559}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000794}, !- Inlet Port {00000000-0000-0000-0019-000000000796}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000560}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000797}, !- Inlet Port {00000000-0000-0000-0019-000000000795}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000561}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000800}, !- Inlet Port {00000000-0000-0000-0019-000000000801}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000562}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001108}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000563}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000564}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000792}, !- Inlet Port {00000000-0000-0000-0019-000000000799}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000565}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000798}, !- Inlet Port {00000000-0000-0000-0019-000000000793}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000566}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001115}, !- Inlet Port {00000000-0000-0000-0019-000000001116}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000567}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001117}, !- Inlet Port {00000000-0000-0000-0019-000000001118}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000568}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001109}, !- Inlet Port {00000000-0000-0000-0019-000000001110}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000569}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001111}, !- Inlet Port {00000000-0000-0000-0019-000000001112}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000570}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000688}, !- Inlet Port {00000000-0000-0000-0019-000000000690}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000571}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000691}, !- Inlet Port {00000000-0000-0000-0019-000000000689}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000572}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000694}, !- Inlet Port {00000000-0000-0000-0019-000000000695}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000573}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001126}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000574}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001131}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000575}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000686}, !- Inlet Port {00000000-0000-0000-0019-000000000693}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000576}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000692}, !- Inlet Port {00000000-0000-0000-0019-000000000687}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000577}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000658}, !- Inlet Port {00000000-0000-0000-0019-000000000660}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000578}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000661}, !- Inlet Port {00000000-0000-0000-0019-000000000659}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000579}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000664}, !- Inlet Port {00000000-0000-0000-0019-000000000665}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000580}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001120}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000581}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001125}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000582}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000656}, !- Inlet Port {00000000-0000-0000-0019-000000000663}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000583}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000662}, !- Inlet Port {00000000-0000-0000-0019-000000000657}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000584}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001127}, !- Inlet Port {00000000-0000-0000-0019-000000001128}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000585}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001129}, !- Inlet Port {00000000-0000-0000-0019-000000001130}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000586}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001121}, !- Inlet Port {00000000-0000-0000-0019-000000001122}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000587}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001123}, !- Inlet Port {00000000-0000-0000-0019-000000001124}; !- Outlet Port @@ -25211,7 +25211,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000181}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -25226,7 +25226,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000182}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25235,7 +25235,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000183}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25244,7 +25244,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -25259,7 +25259,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25268,7 +25268,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25277,7 +25277,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -25292,7 +25292,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25301,7 +25301,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25310,7 +25310,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000190}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -25325,7 +25325,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000191}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25334,7 +25334,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000192}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25343,7 +25343,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000193}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -25358,7 +25358,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000194}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25367,7 +25367,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000195}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -28223,7 +28223,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000182}, !- Summer Design Day Schedule Name @@ -28231,7 +28231,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000185}, !- Summer Design Day Schedule Name @@ -28239,7 +28239,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000188}, !- Summer Design Day Schedule Name @@ -28247,7 +28247,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000191}, !- Summer Design Day Schedule Name @@ -28255,7 +28255,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000194}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm index 85933597e2..6d8e35b55f 100644 --- a/test/necb/regression_tests/expected/LargeOffice-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm @@ -5464,61 +5464,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {21450b39-b9b6-46a3-b363-f23cc73fdde1}<23.9 && {21450b39-b9b6-46a3-b363-f23cc73fdde1}>1.7, !- Program Line 1 - SET {a75184c8-b510-4683-81ae-ff298d61cc98} = 29.4, !- Program Line 2 - SET {256174f6-5b19-422f-94e0-12ac28fea9e2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {21450b39-b9b6-46a3-b363-f23cc73fdde1}<23.9 && {21450b39-b9b6-46a3-b363-f23cc73fdde1}>1.7, !- Program Line 4 - SET {a75184c8-b510-4683-81ae-ff298d61cc98} = 29.4, !- Program Line 5 - SET {256174f6-5b19-422f-94e0-12ac28fea9e2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {21450b39-b9b6-46a3-b363-f23cc73fdde1}<23.9 && {21450b39-b9b6-46a3-b363-f23cc73fdde1}>1.7, !- Program Line 7 - SET {a75184c8-b510-4683-81ae-ff298d61cc98} = 29.4, !- Program Line 8 - SET {256174f6-5b19-422f-94e0-12ac28fea9e2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {21450b39-b9b6-46a3-b363-f23cc73fdde1}<23.9 && {21450b39-b9b6-46a3-b363-f23cc73fdde1}>1.7, !- Program Line 10 - SET {a75184c8-b510-4683-81ae-ff298d61cc98} = 29.4, !- Program Line 11 - SET {256174f6-5b19-422f-94e0-12ac28fea9e2} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a7848b00-0868-45cb-9283-bd301229c307}<23.9 && {a7848b00-0868-45cb-9283-bd301229c307}>1.7, !- Program Line 1 + SET {b36b1a1a-3a2b-45ad-9d8b-0b35db66e8db} = 29.4, !- Program Line 2 + SET {c241a9b3-626a-49e6-88aa-b5960c5973ec} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a7848b00-0868-45cb-9283-bd301229c307}<23.9 && {a7848b00-0868-45cb-9283-bd301229c307}>1.7, !- Program Line 4 + SET {b36b1a1a-3a2b-45ad-9d8b-0b35db66e8db} = 29.4, !- Program Line 5 + SET {c241a9b3-626a-49e6-88aa-b5960c5973ec} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a7848b00-0868-45cb-9283-bd301229c307}<23.9 && {a7848b00-0868-45cb-9283-bd301229c307}>1.7, !- Program Line 7 + SET {b36b1a1a-3a2b-45ad-9d8b-0b35db66e8db} = 29.4, !- Program Line 8 + SET {c241a9b3-626a-49e6-88aa-b5960c5973ec} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a7848b00-0868-45cb-9283-bd301229c307}<23.9 && {a7848b00-0868-45cb-9283-bd301229c307}>1.7, !- Program Line 10 + SET {b36b1a1a-3a2b-45ad-9d8b-0b35db66e8db} = 29.4, !- Program Line 11 + SET {c241a9b3-626a-49e6-88aa-b5960c5973ec} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a75184c8-b510-4683-81ae-ff298d61cc98} = NULL, !- Program Line 14 - SET {256174f6-5b19-422f-94e0-12ac28fea9e2} = NULL, !- Program Line 15 + SET {b36b1a1a-3a2b-45ad-9d8b-0b35db66e8db} = NULL, !- Program Line 14 + SET {c241a9b3-626a-49e6-88aa-b5960c5973ec} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b883d169-a2ec-44fe-b485-3bc2ab9bab6b}<23.9 && {b883d169-a2ec-44fe-b485-3bc2ab9bab6b}>1.7, !- Program Line 1 - SET {3710cdd4-a02b-437d-99bd-f675ea7cf504} = 29.4, !- Program Line 2 - SET {181b97cf-8661-41a7-bf6a-4f8381e5f239} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b883d169-a2ec-44fe-b485-3bc2ab9bab6b}<23.9 && {b883d169-a2ec-44fe-b485-3bc2ab9bab6b}>1.7, !- Program Line 4 - SET {3710cdd4-a02b-437d-99bd-f675ea7cf504} = 29.4, !- Program Line 5 - SET {181b97cf-8661-41a7-bf6a-4f8381e5f239} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b883d169-a2ec-44fe-b485-3bc2ab9bab6b}<23.9 && {b883d169-a2ec-44fe-b485-3bc2ab9bab6b}>1.7, !- Program Line 7 - SET {3710cdd4-a02b-437d-99bd-f675ea7cf504} = 29.4, !- Program Line 8 - SET {181b97cf-8661-41a7-bf6a-4f8381e5f239} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b883d169-a2ec-44fe-b485-3bc2ab9bab6b}<23.9 && {b883d169-a2ec-44fe-b485-3bc2ab9bab6b}>1.7, !- Program Line 10 - SET {3710cdd4-a02b-437d-99bd-f675ea7cf504} = 29.4, !- Program Line 11 - SET {181b97cf-8661-41a7-bf6a-4f8381e5f239} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ea14eb68-3b2d-46ff-a6e6-3e86fcc672bc}<23.9 && {ea14eb68-3b2d-46ff-a6e6-3e86fcc672bc}>1.7, !- Program Line 1 + SET {6d11b7fe-b550-4120-a46e-09d22d24f538} = 29.4, !- Program Line 2 + SET {772325c7-9ccc-4ee8-beae-8954c89dbc70} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ea14eb68-3b2d-46ff-a6e6-3e86fcc672bc}<23.9 && {ea14eb68-3b2d-46ff-a6e6-3e86fcc672bc}>1.7, !- Program Line 4 + SET {6d11b7fe-b550-4120-a46e-09d22d24f538} = 29.4, !- Program Line 5 + SET {772325c7-9ccc-4ee8-beae-8954c89dbc70} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ea14eb68-3b2d-46ff-a6e6-3e86fcc672bc}<23.9 && {ea14eb68-3b2d-46ff-a6e6-3e86fcc672bc}>1.7, !- Program Line 7 + SET {6d11b7fe-b550-4120-a46e-09d22d24f538} = 29.4, !- Program Line 8 + SET {772325c7-9ccc-4ee8-beae-8954c89dbc70} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ea14eb68-3b2d-46ff-a6e6-3e86fcc672bc}<23.9 && {ea14eb68-3b2d-46ff-a6e6-3e86fcc672bc}>1.7, !- Program Line 10 + SET {6d11b7fe-b550-4120-a46e-09d22d24f538} = 29.4, !- Program Line 11 + SET {772325c7-9ccc-4ee8-beae-8954c89dbc70} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3710cdd4-a02b-437d-99bd-f675ea7cf504} = NULL, !- Program Line 14 - SET {181b97cf-8661-41a7-bf6a-4f8381e5f239} = NULL, !- Program Line 15 + SET {6d11b7fe-b550-4120-a46e-09d22d24f538} = NULL, !- Program Line 14 + SET {772325c7-9ccc-4ee8-beae-8954c89dbc70} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4284e151-1c5c-4fbb-89b1-3d05a4dfb0f5}<23.9 && {4284e151-1c5c-4fbb-89b1-3d05a4dfb0f5}>1.7, !- Program Line 1 - SET {9dd04fed-2b5b-4238-96eb-4715382bbb66} = 29.4, !- Program Line 2 - SET {7ace5b59-9e27-4db1-9d04-178b3e840a25} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4284e151-1c5c-4fbb-89b1-3d05a4dfb0f5}<23.9 && {4284e151-1c5c-4fbb-89b1-3d05a4dfb0f5}>1.7, !- Program Line 4 - SET {9dd04fed-2b5b-4238-96eb-4715382bbb66} = 29.4, !- Program Line 5 - SET {7ace5b59-9e27-4db1-9d04-178b3e840a25} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4284e151-1c5c-4fbb-89b1-3d05a4dfb0f5}<23.9 && {4284e151-1c5c-4fbb-89b1-3d05a4dfb0f5}>1.7, !- Program Line 7 - SET {9dd04fed-2b5b-4238-96eb-4715382bbb66} = 29.4, !- Program Line 8 - SET {7ace5b59-9e27-4db1-9d04-178b3e840a25} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4284e151-1c5c-4fbb-89b1-3d05a4dfb0f5}<23.9 && {4284e151-1c5c-4fbb-89b1-3d05a4dfb0f5}>1.7, !- Program Line 10 - SET {9dd04fed-2b5b-4238-96eb-4715382bbb66} = 29.4, !- Program Line 11 - SET {7ace5b59-9e27-4db1-9d04-178b3e840a25} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {225ab408-72f4-48d7-b8b4-ee69036f7fc3}<23.9 && {225ab408-72f4-48d7-b8b4-ee69036f7fc3}>1.7, !- Program Line 1 + SET {ab481a5b-2b1d-4819-8ce2-0d8b6ed6969d} = 29.4, !- Program Line 2 + SET {61807835-aada-4332-baa3-6e6ac7bea40e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {225ab408-72f4-48d7-b8b4-ee69036f7fc3}<23.9 && {225ab408-72f4-48d7-b8b4-ee69036f7fc3}>1.7, !- Program Line 4 + SET {ab481a5b-2b1d-4819-8ce2-0d8b6ed6969d} = 29.4, !- Program Line 5 + SET {61807835-aada-4332-baa3-6e6ac7bea40e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {225ab408-72f4-48d7-b8b4-ee69036f7fc3}<23.9 && {225ab408-72f4-48d7-b8b4-ee69036f7fc3}>1.7, !- Program Line 7 + SET {ab481a5b-2b1d-4819-8ce2-0d8b6ed6969d} = 29.4, !- Program Line 8 + SET {61807835-aada-4332-baa3-6e6ac7bea40e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {225ab408-72f4-48d7-b8b4-ee69036f7fc3}<23.9 && {225ab408-72f4-48d7-b8b4-ee69036f7fc3}>1.7, !- Program Line 10 + SET {ab481a5b-2b1d-4819-8ce2-0d8b6ed6969d} = 29.4, !- Program Line 11 + SET {61807835-aada-4332-baa3-6e6ac7bea40e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {9dd04fed-2b5b-4238-96eb-4715382bbb66} = NULL, !- Program Line 14 - SET {7ace5b59-9e27-4db1-9d04-178b3e840a25} = NULL, !- Program Line 15 + SET {ab481a5b-2b1d-4819-8ce2-0d8b6ed6969d} = NULL, !- Program Line 14 + SET {61807835-aada-4332-baa3-6e6ac7bea40e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -9195,7 +9195,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000046}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9273,7 +9273,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000047}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -9282,7 +9282,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000048}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -9501,7 +9501,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000057}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9813,7 +9813,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000061}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10290,7 +10290,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000080}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -11129,7 +11129,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -11209,13 +11209,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/LargeOffice-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm index c62a44e95e..f998cd3f9e 100644 --- a/test/necb/regression_tests/expected/LargeOffice-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm @@ -7794,61 +7794,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0039-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6338cdec-87da-4c14-8846-20640ae1f93b}<23.9 && {6338cdec-87da-4c14-8846-20640ae1f93b}>1.7, !- Program Line 1 - SET {835a1270-c693-47a5-8695-ccf135addfc3} = 29.4, !- Program Line 2 - SET {bb04c035-c361-42d9-9280-dd94e7345fef} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6338cdec-87da-4c14-8846-20640ae1f93b}<23.9 && {6338cdec-87da-4c14-8846-20640ae1f93b}>1.7, !- Program Line 4 - SET {835a1270-c693-47a5-8695-ccf135addfc3} = 29.4, !- Program Line 5 - SET {bb04c035-c361-42d9-9280-dd94e7345fef} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6338cdec-87da-4c14-8846-20640ae1f93b}<23.9 && {6338cdec-87da-4c14-8846-20640ae1f93b}>1.7, !- Program Line 7 - SET {835a1270-c693-47a5-8695-ccf135addfc3} = 29.4, !- Program Line 8 - SET {bb04c035-c361-42d9-9280-dd94e7345fef} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6338cdec-87da-4c14-8846-20640ae1f93b}<23.9 && {6338cdec-87da-4c14-8846-20640ae1f93b}>1.7, !- Program Line 10 - SET {835a1270-c693-47a5-8695-ccf135addfc3} = 29.4, !- Program Line 11 - SET {bb04c035-c361-42d9-9280-dd94e7345fef} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8f9173aa-df1c-4445-aa6e-40c96e81a4de}<23.9 && {8f9173aa-df1c-4445-aa6e-40c96e81a4de}>1.7, !- Program Line 1 + SET {a7d0e981-99a9-48cc-8137-e50b7106a564} = 29.4, !- Program Line 2 + SET {b32d8452-111c-4d58-b307-5a6869184ea3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8f9173aa-df1c-4445-aa6e-40c96e81a4de}<23.9 && {8f9173aa-df1c-4445-aa6e-40c96e81a4de}>1.7, !- Program Line 4 + SET {a7d0e981-99a9-48cc-8137-e50b7106a564} = 29.4, !- Program Line 5 + SET {b32d8452-111c-4d58-b307-5a6869184ea3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8f9173aa-df1c-4445-aa6e-40c96e81a4de}<23.9 && {8f9173aa-df1c-4445-aa6e-40c96e81a4de}>1.7, !- Program Line 7 + SET {a7d0e981-99a9-48cc-8137-e50b7106a564} = 29.4, !- Program Line 8 + SET {b32d8452-111c-4d58-b307-5a6869184ea3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8f9173aa-df1c-4445-aa6e-40c96e81a4de}<23.9 && {8f9173aa-df1c-4445-aa6e-40c96e81a4de}>1.7, !- Program Line 10 + SET {a7d0e981-99a9-48cc-8137-e50b7106a564} = 29.4, !- Program Line 11 + SET {b32d8452-111c-4d58-b307-5a6869184ea3} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {835a1270-c693-47a5-8695-ccf135addfc3} = NULL, !- Program Line 14 - SET {bb04c035-c361-42d9-9280-dd94e7345fef} = NULL, !- Program Line 15 + SET {a7d0e981-99a9-48cc-8137-e50b7106a564} = NULL, !- Program Line 14 + SET {b32d8452-111c-4d58-b307-5a6869184ea3} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0039-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {87fceaea-f14c-46f5-a8a6-dcd07c05be28}<23.9 && {87fceaea-f14c-46f5-a8a6-dcd07c05be28}>1.7, !- Program Line 1 - SET {2ae867d5-5aad-49cf-a433-3278deaea1bd} = 29.4, !- Program Line 2 - SET {2bc3177c-0a98-42ba-aa8e-f45e32cb242b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {87fceaea-f14c-46f5-a8a6-dcd07c05be28}<23.9 && {87fceaea-f14c-46f5-a8a6-dcd07c05be28}>1.7, !- Program Line 4 - SET {2ae867d5-5aad-49cf-a433-3278deaea1bd} = 29.4, !- Program Line 5 - SET {2bc3177c-0a98-42ba-aa8e-f45e32cb242b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {87fceaea-f14c-46f5-a8a6-dcd07c05be28}<23.9 && {87fceaea-f14c-46f5-a8a6-dcd07c05be28}>1.7, !- Program Line 7 - SET {2ae867d5-5aad-49cf-a433-3278deaea1bd} = 29.4, !- Program Line 8 - SET {2bc3177c-0a98-42ba-aa8e-f45e32cb242b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {87fceaea-f14c-46f5-a8a6-dcd07c05be28}<23.9 && {87fceaea-f14c-46f5-a8a6-dcd07c05be28}>1.7, !- Program Line 10 - SET {2ae867d5-5aad-49cf-a433-3278deaea1bd} = 29.4, !- Program Line 11 - SET {2bc3177c-0a98-42ba-aa8e-f45e32cb242b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e0d88360-a50f-40d8-a653-dd4070e7eb26}<23.9 && {e0d88360-a50f-40d8-a653-dd4070e7eb26}>1.7, !- Program Line 1 + SET {1a4eb1a1-931e-49fd-8829-ea1929c4d517} = 29.4, !- Program Line 2 + SET {b2989a2f-dfac-45b0-bd52-0c40d54183f2} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e0d88360-a50f-40d8-a653-dd4070e7eb26}<23.9 && {e0d88360-a50f-40d8-a653-dd4070e7eb26}>1.7, !- Program Line 4 + SET {1a4eb1a1-931e-49fd-8829-ea1929c4d517} = 29.4, !- Program Line 5 + SET {b2989a2f-dfac-45b0-bd52-0c40d54183f2} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e0d88360-a50f-40d8-a653-dd4070e7eb26}<23.9 && {e0d88360-a50f-40d8-a653-dd4070e7eb26}>1.7, !- Program Line 7 + SET {1a4eb1a1-931e-49fd-8829-ea1929c4d517} = 29.4, !- Program Line 8 + SET {b2989a2f-dfac-45b0-bd52-0c40d54183f2} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e0d88360-a50f-40d8-a653-dd4070e7eb26}<23.9 && {e0d88360-a50f-40d8-a653-dd4070e7eb26}>1.7, !- Program Line 10 + SET {1a4eb1a1-931e-49fd-8829-ea1929c4d517} = 29.4, !- Program Line 11 + SET {b2989a2f-dfac-45b0-bd52-0c40d54183f2} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {2ae867d5-5aad-49cf-a433-3278deaea1bd} = NULL, !- Program Line 14 - SET {2bc3177c-0a98-42ba-aa8e-f45e32cb242b} = NULL, !- Program Line 15 + SET {1a4eb1a1-931e-49fd-8829-ea1929c4d517} = NULL, !- Program Line 14 + SET {b2989a2f-dfac-45b0-bd52-0c40d54183f2} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0039-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {432267db-6c0e-419b-8f85-bfcd76cfefe2}<23.9 && {432267db-6c0e-419b-8f85-bfcd76cfefe2}>1.7, !- Program Line 1 - SET {3c6d0a90-3355-4928-84d9-13b6b7075f36} = 29.4, !- Program Line 2 - SET {9c21b674-c855-4194-b4a3-9ceaca1826b3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {432267db-6c0e-419b-8f85-bfcd76cfefe2}<23.9 && {432267db-6c0e-419b-8f85-bfcd76cfefe2}>1.7, !- Program Line 4 - SET {3c6d0a90-3355-4928-84d9-13b6b7075f36} = 29.4, !- Program Line 5 - SET {9c21b674-c855-4194-b4a3-9ceaca1826b3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {432267db-6c0e-419b-8f85-bfcd76cfefe2}<23.9 && {432267db-6c0e-419b-8f85-bfcd76cfefe2}>1.7, !- Program Line 7 - SET {3c6d0a90-3355-4928-84d9-13b6b7075f36} = 29.4, !- Program Line 8 - SET {9c21b674-c855-4194-b4a3-9ceaca1826b3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {432267db-6c0e-419b-8f85-bfcd76cfefe2}<23.9 && {432267db-6c0e-419b-8f85-bfcd76cfefe2}>1.7, !- Program Line 10 - SET {3c6d0a90-3355-4928-84d9-13b6b7075f36} = 29.4, !- Program Line 11 - SET {9c21b674-c855-4194-b4a3-9ceaca1826b3} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {68566d84-c74e-4f10-9b6d-16ba26dc2e31}<23.9 && {68566d84-c74e-4f10-9b6d-16ba26dc2e31}>1.7, !- Program Line 1 + SET {5694bcca-578a-4dfd-af18-5dec719e4ff3} = 29.4, !- Program Line 2 + SET {ba3f54af-2a7d-4be4-b6bf-1b4f2a139b44} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {68566d84-c74e-4f10-9b6d-16ba26dc2e31}<23.9 && {68566d84-c74e-4f10-9b6d-16ba26dc2e31}>1.7, !- Program Line 4 + SET {5694bcca-578a-4dfd-af18-5dec719e4ff3} = 29.4, !- Program Line 5 + SET {ba3f54af-2a7d-4be4-b6bf-1b4f2a139b44} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {68566d84-c74e-4f10-9b6d-16ba26dc2e31}<23.9 && {68566d84-c74e-4f10-9b6d-16ba26dc2e31}>1.7, !- Program Line 7 + SET {5694bcca-578a-4dfd-af18-5dec719e4ff3} = 29.4, !- Program Line 8 + SET {ba3f54af-2a7d-4be4-b6bf-1b4f2a139b44} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {68566d84-c74e-4f10-9b6d-16ba26dc2e31}<23.9 && {68566d84-c74e-4f10-9b6d-16ba26dc2e31}>1.7, !- Program Line 10 + SET {5694bcca-578a-4dfd-af18-5dec719e4ff3} = 29.4, !- Program Line 11 + SET {ba3f54af-2a7d-4be4-b6bf-1b4f2a139b44} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3c6d0a90-3355-4928-84d9-13b6b7075f36} = NULL, !- Program Line 14 - SET {9c21b674-c855-4194-b4a3-9ceaca1826b3} = NULL, !- Program Line 15 + SET {5694bcca-578a-4dfd-af18-5dec719e4ff3} = NULL, !- Program Line 14 + SET {ba3f54af-2a7d-4be4-b6bf-1b4f2a139b44} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -12116,7 +12116,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000045}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12194,7 +12194,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000046}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12272,7 +12272,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000047}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -12281,7 +12281,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000048}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -12344,7 +12344,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000055}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12500,7 +12500,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000057}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12656,7 +12656,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000059}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12812,7 +12812,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000061}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13133,7 +13133,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000078}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13289,7 +13289,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000080}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -14122,13 +14122,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -14208,13 +14208,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2011-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2011-Electricity-CAN_AB_Calgary.osm index aba627bfab..1fa7b942e9 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2011-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2011-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0062-000000000026}, !- Object Name + {00000000-0000-0000-0058-000000000023}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.762049603789063, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0062-000000000030}, !- Object Name + {00000000-0000-0000-0058-000000000024}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.224865342415058, !- Feature Value 1 @@ -32,66 +32,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0062-000000000027}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.34123633723931, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle - {00000000-0000-0000-0062-000000000028}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.34123633723931, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle - {00000000-0000-0000-0062-000000000029}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.34123633723931, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000006}, !- Handle {00000000-0000-0000-0012-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000007}, !- Handle + {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0062-000000000026}, !- Availability Schedule - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0058-000000000023}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -110,75 +62,9 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0062-000000000027}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000149}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000152}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000151}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000150}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0062-000000000028}, !- Availability Schedule - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000207}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000210}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000209}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000208}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000004}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3, !- Name - , !- Controller List Name - {00000000-0000-0000-0062-000000000029}, !- Availability Schedule - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000265}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000268}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000267}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000266}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0062-000000000030}, !- Availability Schedule + {00000000-0000-0000-0058-000000000024}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -218,39 +104,6 @@ OS:AirLoopHVAC:OutdoorAirSystem, {00000000-0000-0000-0017-000000000132}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000142}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0022-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000166}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000159}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000160}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000170}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000004}, !- Handle - Air Loop HVAC Outdoor Air System 4, !- Name - {00000000-0000-0000-0022-000000000004}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000224}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000217}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000218}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000228}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000005}, !- Handle - Air Loop HVAC Outdoor Air System 5, !- Name - {00000000-0000-0000-0022-000000000005}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000282}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000275}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000276}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000286}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -263,39 +116,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000127}, !- Outlet Node Name {00000000-0000-0000-0017-000000000145}; !- Inlet Node Name 1 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0017-000000000154}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000173}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000179}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000185}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000191}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000197}, !- Inlet Node Name 5 - {00000000-0000-0000-0017-000000000203}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000004}, !- Handle - Air Loop HVAC Zone Mixer 4, !- Name - {00000000-0000-0000-0017-000000000212}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000231}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000237}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000243}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000249}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000255}, !- Inlet Node Name 5 - {00000000-0000-0000-0017-000000000261}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000005}, !- Handle - Air Loop HVAC Zone Mixer 5, !- Name - {00000000-0000-0000-0017-000000000270}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000289}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000295}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000301}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000307}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000313}, !- Inlet Node Name 5 - {00000000-0000-0000-0017-000000000319}; !- Inlet Node Name 6 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -308,43 +128,10 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000126}, !- Inlet Node Name {00000000-0000-0000-0017-000000000146}; !- Outlet Node Name 1 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0017-000000000153}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000174}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000180}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000186}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000192}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000198}, !- Outlet Node Name 5 - {00000000-0000-0000-0017-000000000204}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000004}, !- Handle - Air Loop HVAC Zone Splitter 4, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000232}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000238}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000244}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000250}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000256}, !- Outlet Node Name 5 - {00000000-0000-0000-0017-000000000262}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000005}, !- Handle - Air Loop HVAC Zone Splitter 5, !- Name - {00000000-0000-0000-0017-000000000269}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000290}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000296}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000302}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000308}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000314}, !- Outlet Node Name 5 - {00000000-0000-0000-0017-000000000320}; !- Outlet Node Name 6 - OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000067}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000068}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -352,14 +139,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000147}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000018}, !- Reheat Coil Name + {00000000-0000-0000-0016-000000000003}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000148}, !- Air Outlet Node Name @@ -370,507 +157,72 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000245}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000246}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0055-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0044-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0044-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0044-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0044-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000251}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000252}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0055-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0044-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0044-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0044-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0044-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000257}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000258}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000263}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000009}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000264}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000291}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000011}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000292}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000297}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000013}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000298}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000008}, !- Handle - Air Terminal Single Duct VAV Reheat 16, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000303}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000014}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000304}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000009}, !- Handle - Air Terminal Single Duct VAV Reheat 17, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000309}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000015}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000310}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000010}, !- Handle - Air Terminal Single Duct VAV Reheat 18, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000315}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000016}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000316}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000011}, !- Handle - Air Terminal Single Duct VAV Reheat 19, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000321}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000017}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000322}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000175}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000020}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000176}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 3, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000181}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000021}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000182}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 4, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000187}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000022}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000188}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 5, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000193}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000023}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000194}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000016}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000199}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000024}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000200}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000017}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000205}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000002}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000206}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000018}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000233}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000234}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000019}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000239}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000005}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000240}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000004}, !- Handle - Availability Manager Night Cycle 4, !- Name - {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000013}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000014}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000015}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000005}, !- Handle - Availability Manager Night Cycle 5, !- Name - {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000017}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000018}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000019}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name - {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name - {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000006}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000007}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000008}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name - -OS:Building, - {00000000-0000-0000-0010-000000000001}, !- Handle - LargeOffice, !- Name - , !- Building Sector Type - 0, !- North Axis {deg} - , !- Nominal Floor to Floor Height {m} - , !- Space Type Name - {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name - , !- Default Schedule Set Name - 13, !- Standards Number of Stories - 12, !- Standards Number of Above Ground Stories - NECB2011, !- Standards Template - LargeOffice, !- Standards Building Type - , !- Standards Number of Living Units - , !- Relocatable - ; !- Nominal Floor to Ceiling Height {m} +OS:Building, + {00000000-0000-0000-0010-000000000001}, !- Handle + LargeOffice, !- Name + , !- Building Sector Type + 0, !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + , !- Space Type Name + {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name + , !- Default Schedule Set Name + 13, !- Standards Number of Stories + 12, !- Standards Number of Above Ground Stories + NECB2011, !- Standards Template + LargeOffice, !- Standards Building Type + , !- Standards Number of Living Units + , !- Relocatable + ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, {00000000-0000-0000-0011-000000000001}, !- Handle @@ -879,7 +231,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000023}, !- Group Rendering Name + {00000000-0000-0000-0054-000000000023}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -889,7 +241,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0054-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -899,7 +251,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0054-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -909,14 +261,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0054-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton, !- Name - 2078476.93007681, !- Reference Capacity {W} - 5.67258064516129, !- Reference COP {W/W} + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton, !- Name + 18839.7768690201, !- Reference Capacity {W} + 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -958,9 +310,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0025-000000000011}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0025-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0027-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0025-000000000009}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0025-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0027-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -995,8 +347,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0014-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 79kBtu/hr 9.7EER, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 170kBtu/hr 9.7EER, !- Name + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.36680611439836, !- Rated COP {W/W} @@ -1031,7 +383,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -1046,64 +398,10 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0015-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000156}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000157}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000167}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000164}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0015-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000214}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000215}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000225}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000222}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0015-000000000004}, !- Handle - Coil Cooling Water 4, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000272}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000273}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000283}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000280}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Electric, {00000000-0000-0000-0016-000000000001}, !- Handle Coil Heating Electric 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name , !- Efficiency , !- Nominal Capacity {W} {00000000-0000-0000-0017-000000000059}, !- Air Inlet Node Name @@ -1111,208 +409,19 @@ OS:Coil:Heating:Electric, OS:Coil:Heating:Electric, {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Electric 10, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 16455.8840274811, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Electric 11, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + Coil Heating Electric 2, !- Name + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name , !- Efficiency , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000223}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000220}; !- Air Outlet Node Name + {00000000-0000-0000-0017-000000000137}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000134}; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Heating Electric 12, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000003}, !- Handle + Coil Heating Electric 3, !- Name + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name , !- Efficiency - 521863.206481934, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000005}, !- Handle - Coil Heating Electric 13, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 28803.8040161133, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000006}, !- Handle - Coil Heating Electric 14, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 239518.954467773, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000007}, !- Handle - Coil Heating Electric 15, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 203699.336242676, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000008}, !- Handle - Coil Heating Electric 16, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 107736.966705322, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000009}, !- Handle - Coil Heating Electric 17, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 217597.975158691, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000010}, !- Handle - Coil Heating Electric 18, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000281}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000278}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000011}, !- Handle - Coil Heating Electric 19, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 53357.7684402466, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000012}, !- Handle - Coil Heating Electric 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000137}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000134}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000013}, !- Handle - Coil Heating Electric 20, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 2942.2459602356, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000014}, !- Handle - Coil Heating Electric 21, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 23778.5219192505, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000015}, !- Handle - Coil Heating Electric 22, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 19808.1024169922, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000016}, !- Handle - Coil Heating Electric 23, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11997.4925994873, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000017}, !- Handle - Coil Heating Electric 24, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 21937.6467704773, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000018}, !- Handle - Coil Heating Electric 3, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 7891.34902954102, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000019}, !- Handle - Coil Heating Electric 4, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000165}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000162}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000020}, !- Handle - Coil Heating Electric 5, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 35953.6145210266, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000021}, !- Handle - Coil Heating Electric 6, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 2269.37075257301, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000022}, !- Handle - Coil Heating Electric 7, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 17228.0280590057, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000023}, !- Handle - Coil Heating Electric 8, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 14666.8137073517, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000024}, !- Handle - Coil Heating Electric 9, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- Efficiency - 7806.96694850922, !- Nominal Capacity {W} + 13429.1124343872, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name @@ -1479,175 +588,175 @@ OS:Connection, OS:Connection, {00000000-0000-0000-0017-000000000024}, !- Handle - {00000000-0000-0000-0088-000000000010}, !- Source Object + {00000000-0000-0000-0084-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000019}, !- Target Object + {00000000-0000-0000-0045-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle - {00000000-0000-0000-0088-000000000001}, !- Source Object + {00000000-0000-0000-0084-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000003}, !- Target Object + {00000000-0000-0000-0045-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle - {00000000-0000-0000-0088-000000000022}, !- Source Object + {00000000-0000-0000-0084-000000000022}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000043}, !- Target Object + {00000000-0000-0000-0045-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000027}, !- Handle - {00000000-0000-0000-0088-000000000003}, !- Source Object + {00000000-0000-0000-0084-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000005}, !- Target Object + {00000000-0000-0000-0045-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle - {00000000-0000-0000-0088-000000000016}, !- Source Object + {00000000-0000-0000-0084-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000031}, !- Target Object + {00000000-0000-0000-0045-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000029}, !- Handle - {00000000-0000-0000-0088-000000000017}, !- Source Object + {00000000-0000-0000-0084-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000033}, !- Target Object + {00000000-0000-0000-0045-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000030}, !- Handle - {00000000-0000-0000-0088-000000000005}, !- Source Object + {00000000-0000-0000-0084-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000009}, !- Target Object + {00000000-0000-0000-0045-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle - {00000000-0000-0000-0088-000000000006}, !- Source Object + {00000000-0000-0000-0084-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000011}, !- Target Object + {00000000-0000-0000-0045-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000032}, !- Handle - {00000000-0000-0000-0088-000000000018}, !- Source Object + {00000000-0000-0000-0084-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000035}, !- Target Object + {00000000-0000-0000-0045-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000033}, !- Handle - {00000000-0000-0000-0088-000000000011}, !- Source Object + {00000000-0000-0000-0084-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000021}, !- Target Object + {00000000-0000-0000-0045-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle - {00000000-0000-0000-0088-000000000019}, !- Source Object + {00000000-0000-0000-0084-000000000019}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000037}, !- Target Object + {00000000-0000-0000-0045-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000035}, !- Handle - {00000000-0000-0000-0088-000000000012}, !- Source Object + {00000000-0000-0000-0084-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000023}, !- Target Object + {00000000-0000-0000-0045-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000036}, !- Handle - {00000000-0000-0000-0088-000000000004}, !- Source Object + {00000000-0000-0000-0084-000000000004}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000007}, !- Target Object + {00000000-0000-0000-0045-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle - {00000000-0000-0000-0088-000000000002}, !- Source Object + {00000000-0000-0000-0084-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000004}, !- Target Object + {00000000-0000-0000-0045-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle - {00000000-0000-0000-0088-000000000007}, !- Source Object + {00000000-0000-0000-0084-000000000007}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000013}, !- Target Object + {00000000-0000-0000-0045-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0088-000000000020}, !- Source Object + {00000000-0000-0000-0084-000000000020}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000039}, !- Target Object + {00000000-0000-0000-0045-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle - {00000000-0000-0000-0088-000000000013}, !- Source Object + {00000000-0000-0000-0084-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000025}, !- Target Object + {00000000-0000-0000-0045-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0088-000000000021}, !- Source Object + {00000000-0000-0000-0084-000000000021}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000041}, !- Target Object + {00000000-0000-0000-0045-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle - {00000000-0000-0000-0088-000000000014}, !- Source Object + {00000000-0000-0000-0084-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000027}, !- Target Object + {00000000-0000-0000-0045-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle - {00000000-0000-0000-0088-000000000008}, !- Source Object + {00000000-0000-0000-0084-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000015}, !- Target Object + {00000000-0000-0000-0045-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0088-000000000015}, !- Source Object + {00000000-0000-0000-0084-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000029}, !- Target Object + {00000000-0000-0000-0045-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0088-000000000009}, !- Source Object + {00000000-0000-0000-0084-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000017}, !- Target Object + {00000000-0000-0000-0045-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle - {00000000-0000-0000-0088-000000000023}, !- Source Object + {00000000-0000-0000-0084-000000000023}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000182}, !- Target Object + {00000000-0000-0000-0045-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000188}, !- Target Object + {00000000-0000-0000-0045-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0049-000000000189}, !- Source Object + {00000000-0000-0000-0045-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -1656,19 +765,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000183}, !- Target Object + {00000000-0000-0000-0045-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0049-000000000184}, !- Source Object + {00000000-0000-0000-0045-000000000115}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle - {00000000-0000-0000-0049-000000000183}, !- Source Object + {00000000-0000-0000-0045-000000000114}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -1677,12 +786,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000184}, !- Target Object + {00000000-0000-0000-0045-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle - {00000000-0000-0000-0049-000000000186}, !- Source Object + {00000000-0000-0000-0045-000000000117}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port @@ -1691,47 +800,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0049-000000000187}, !- Target Object + {00000000-0000-0000-0045-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle - {00000000-0000-0000-0040-000000000001}, !- Source Object + {00000000-0000-0000-0036-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000189}, !- Target Object + {00000000-0000-0000-0045-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000100}, !- Target Object + {00000000-0000-0000-0045-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle - {00000000-0000-0000-0049-000000000100}, !- Source Object + {00000000-0000-0000-0045-000000000037}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000001}, !- Target Object + {00000000-0000-0000-0036-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0049-000000000105}, !- Target Object + {00000000-0000-0000-0045-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle - {00000000-0000-0000-0049-000000000105}, !- Source Object + {00000000-0000-0000-0045-000000000039}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0049-000000000188}, !- Source Object + {00000000-0000-0000-0045-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -1740,33 +849,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000185}, !- Target Object + {00000000-0000-0000-0045-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle - {00000000-0000-0000-0049-000000000185}, !- Source Object + {00000000-0000-0000-0045-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle - {00000000-0000-0000-0049-000000000045}, !- Source Object + {00000000-0000-0000-0045-000000000027}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000067}, !- Target Object + {00000000-0000-0000-0051-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle - {00000000-0000-0000-0055-000000000069}, !- Source Object + {00000000-0000-0000-0051-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000181}, !- Target Object + {00000000-0000-0000-0045-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle - {00000000-0000-0000-0049-000000000181}, !- Source Object + {00000000-0000-0000-0045-000000000112}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -1775,12 +884,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000044}, !- Target Object + {00000000-0000-0000-0045-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle - {00000000-0000-0000-0049-000000000044}, !- Source Object + {00000000-0000-0000-0045-000000000026}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -1789,40 +898,40 @@ OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000045}, !- Target Object + {00000000-0000-0000-0045-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Source Object + {00000000-0000-0000-0050-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000086}, !- Target Object + {00000000-0000-0000-0045-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000169}, !- Target Object + {00000000-0000-0000-0045-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle - {00000000-0000-0000-0049-000000000087}, !- Source Object + {00000000-0000-0000-0045-000000000033}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000001}, !- Target Object + {00000000-0000-0000-0050-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Source Object + {00000000-0000-0000-0050-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000084}, !- Target Object + {00000000-0000-0000-0045-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle - {00000000-0000-0000-0049-000000000084}, !- Source Object + {00000000-0000-0000-0045-000000000030}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -1831,47 +940,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000088}, !- Target Object + {00000000-0000-0000-0045-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000085}, !- Target Object + {00000000-0000-0000-0045-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle - {00000000-0000-0000-0049-000000000085}, !- Source Object + {00000000-0000-0000-0045-000000000031}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000001}, !- Target Object + {00000000-0000-0000-0050-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0049-000000000086}, !- Source Object + {00000000-0000-0000-0045-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000001}, !- Target Object + {00000000-0000-0000-0053-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle - {00000000-0000-0000-0057-000000000001}, !- Source Object + {00000000-0000-0000-0053-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000171}, !- Target Object + {00000000-0000-0000-0045-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle - {00000000-0000-0000-0049-000000000171}, !- Source Object + {00000000-0000-0000-0045-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle - {00000000-0000-0000-0049-000000000169}, !- Source Object + {00000000-0000-0000-0045-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -1880,12 +989,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000170}, !- Target Object + {00000000-0000-0000-0045-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle - {00000000-0000-0000-0049-000000000170}, !- Source Object + {00000000-0000-0000-0045-000000000104}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -1894,12 +1003,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000175}, !- Target Object + {00000000-0000-0000-0045-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle - {00000000-0000-0000-0049-000000000175}, !- Source Object + {00000000-0000-0000-0045-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1908,12 +1017,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000176}, !- Target Object + {00000000-0000-0000-0045-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle - {00000000-0000-0000-0049-000000000176}, !- Source Object + {00000000-0000-0000-0045-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -1922,26 +1031,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000155}, !- Target Object + {00000000-0000-0000-0045-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle - {00000000-0000-0000-0049-000000000155}, !- Source Object + {00000000-0000-0000-0045-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000001}, !- Target Object + {00000000-0000-0000-0049-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Source Object + {00000000-0000-0000-0049-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000156}, !- Target Object + {00000000-0000-0000-0045-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle - {00000000-0000-0000-0049-000000000156}, !- Source Object + {00000000-0000-0000-0045-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1950,54 +1059,54 @@ OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000157}, !- Target Object + {00000000-0000-0000-0045-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle - {00000000-0000-0000-0049-000000000157}, !- Source Object + {00000000-0000-0000-0045-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000002}, !- Target Object + {00000000-0000-0000-0049-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle - {00000000-0000-0000-0053-000000000002}, !- Source Object + {00000000-0000-0000-0049-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000087}, !- Target Object + {00000000-0000-0000-0045-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Source Object + {00000000-0000-0000-0050-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000108}, !- Target Object + {00000000-0000-0000-0045-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000110}, !- Target Object + {00000000-0000-0000-0045-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle - {00000000-0000-0000-0049-000000000109}, !- Source Object + {00000000-0000-0000-0045-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000002}, !- Target Object + {00000000-0000-0000-0050-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Source Object + {00000000-0000-0000-0050-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000106}, !- Target Object + {00000000-0000-0000-0045-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle - {00000000-0000-0000-0049-000000000106}, !- Source Object + {00000000-0000-0000-0045-000000000040}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -2006,47 +1115,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000167}, !- Target Object + {00000000-0000-0000-0045-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000107}, !- Target Object + {00000000-0000-0000-0045-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle - {00000000-0000-0000-0049-000000000107}, !- Source Object + {00000000-0000-0000-0045-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000002}, !- Target Object + {00000000-0000-0000-0050-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0049-000000000108}, !- Source Object + {00000000-0000-0000-0045-000000000042}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000002}, !- Target Object + {00000000-0000-0000-0053-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle - {00000000-0000-0000-0057-000000000002}, !- Source Object + {00000000-0000-0000-0053-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000172}, !- Target Object + {00000000-0000-0000-0045-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle - {00000000-0000-0000-0049-000000000172}, !- Source Object + {00000000-0000-0000-0045-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle - {00000000-0000-0000-0049-000000000110}, !- Source Object + {00000000-0000-0000-0045-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0024-000000000001}, !- Target Object 2; !- Inlet Port @@ -2055,12 +1164,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle {00000000-0000-0000-0024-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000111}, !- Target Object + {00000000-0000-0000-0045-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle - {00000000-0000-0000-0049-000000000111}, !- Source Object + {00000000-0000-0000-0045-000000000045}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -2069,26 +1178,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000158}, !- Target Object + {00000000-0000-0000-0045-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle - {00000000-0000-0000-0049-000000000158}, !- Source Object + {00000000-0000-0000-0045-000000000092}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000003}, !- Target Object + {00000000-0000-0000-0049-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle - {00000000-0000-0000-0053-000000000003}, !- Source Object + {00000000-0000-0000-0049-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000159}, !- Target Object + {00000000-0000-0000-0045-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle - {00000000-0000-0000-0049-000000000159}, !- Source Object + {00000000-0000-0000-0045-000000000093}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -2097,26 +1206,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000160}, !- Target Object + {00000000-0000-0000-0045-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle - {00000000-0000-0000-0049-000000000160}, !- Source Object + {00000000-0000-0000-0045-000000000094}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000004}, !- Target Object + {00000000-0000-0000-0049-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle - {00000000-0000-0000-0053-000000000004}, !- Source Object + {00000000-0000-0000-0049-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000109}, !- Target Object + {00000000-0000-0000-0045-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0049-000000000167}, !- Source Object + {00000000-0000-0000-0045-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -2125,12 +1234,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0049-000000000168}, !- Target Object + {00000000-0000-0000-0045-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0049-000000000168}, !- Source Object + {00000000-0000-0000-0045-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 3; !- Inlet Port @@ -2139,12 +1248,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000173}, !- Target Object + {00000000-0000-0000-0045-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0049-000000000173}, !- Source Object + {00000000-0000-0000-0045-000000000107}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -2153,47 +1262,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0049-000000000174}, !- Target Object + {00000000-0000-0000-0045-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0049-000000000174}, !- Source Object + {00000000-0000-0000-0045-000000000108}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000122}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000216}, !- Target Object + {00000000-0000-0000-0045-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0049-000000000217}, !- Source Object + {00000000-0000-0000-0045-000000000127}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000211}, !- Target Object + {00000000-0000-0000-0045-000000000121}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000125}, !- Handle - {00000000-0000-0000-0049-000000000212}, !- Source Object + {00000000-0000-0000-0045-000000000122}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0049-000000000211}, !- Source Object + {00000000-0000-0000-0045-000000000121}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -2202,12 +1311,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000127}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000212}, !- Target Object + {00000000-0000-0000-0045-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000128}, !- Handle - {00000000-0000-0000-0049-000000000088}, !- Source Object + {00000000-0000-0000-0045-000000000034}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 10; !- Inlet Port @@ -2216,19 +1325,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000129}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000090}, !- Target Object + {00000000-0000-0000-0045-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000130}, !- Handle - {00000000-0000-0000-0049-000000000090}, !- Source Object + {00000000-0000-0000-0045-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0049-000000000214}, !- Source Object + {00000000-0000-0000-0045-000000000124}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 6; !- Inlet Port @@ -2237,96 +1346,96 @@ OS:Connection, {00000000-0000-0000-0017-000000000132}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0049-000000000215}, !- Target Object + {00000000-0000-0000-0045-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0041-000000000008}, !- Source Object + {00000000-0000-0000-0037-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000217}, !- Target Object + {00000000-0000-0000-0045-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000134}, !- Handle - {00000000-0000-0000-0016-000000000012}, !- Source Object + {00000000-0000-0000-0016-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000103}, !- Target Object + {00000000-0000-0000-0045-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0049-000000000103}, !- Source Object + {00000000-0000-0000-0045-000000000038}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000008}, !- Target Object + {00000000-0000-0000-0037-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000136}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0049-000000000089}, !- Target Object + {00000000-0000-0000-0045-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000137}, !- Handle - {00000000-0000-0000-0049-000000000089}, !- Source Object + {00000000-0000-0000-0045-000000000035}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000012}, !- Target Object + {00000000-0000-0000-0016-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000138}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000213}, !- Target Object + {00000000-0000-0000-0045-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000139}, !- Handle - {00000000-0000-0000-0049-000000000213}, !- Source Object + {00000000-0000-0000-0045-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0049-000000000216}, !- Source Object + {00000000-0000-0000-0045-000000000126}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000004}, !- Target Object + {00000000-0000-0000-0037-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000141}, !- Handle - {00000000-0000-0000-0041-000000000004}, !- Source Object + {00000000-0000-0000-0037-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000180}, !- Target Object + {00000000-0000-0000-0045-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000142}, !- Handle - {00000000-0000-0000-0049-000000000180}, !- Source Object + {00000000-0000-0000-0045-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000143}, !- Handle - {00000000-0000-0000-0049-000000000047}, !- Source Object + {00000000-0000-0000-0045-000000000029}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000037}, !- Target Object + {00000000-0000-0000-0051-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000144}, !- Handle - {00000000-0000-0000-0055-000000000039}, !- Source Object + {00000000-0000-0000-0051-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000006}, !- Target Object + {00000000-0000-0000-0045-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0049-000000000006}, !- Source Object + {00000000-0000-0000-0045-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -2335,12 +1444,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000146}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000046}, !- Target Object + {00000000-0000-0000-0045-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000147}, !- Handle - {00000000-0000-0000-0049-000000000046}, !- Source Object + {00000000-0000-0000-0045-000000000028}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -2349,2027 +1458,803 @@ OS:Connection, {00000000-0000-0000-0017-000000000148}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000047}, !- Target Object + {00000000-0000-0000-0045-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0049-000000000195}, !- Target Object + {00000000-0000-0000-0050-000000000003}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0045-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000150}, !- Handle - {00000000-0000-0000-0049-000000000196}, !- Source Object + {00000000-0000-0000-0019-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0045-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000151}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000190}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000003}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0049-000000000191}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0050-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0045-000000000061}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000153}, !- Handle - {00000000-0000-0000-0049-000000000190}, !- Source Object + {00000000-0000-0000-0045-000000000061}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000191}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000155}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000091}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000003}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0049-000000000091}, !- Source Object + {00000000-0000-0000-0045-000000000063}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0052-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000157}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000093}, !- Target Object + {00000000-0000-0000-0052-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0049-000000000093}, !- Source Object + {00000000-0000-0000-0045-000000000060}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0019-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0049-000000000193}, !- Source Object + {00000000-0000-0000-0045-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0088-000000000001}, !- Target Object + 31; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000160}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000194}, !- Target Object + {00000000-0000-0000-0088-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0045-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000161}, !- Handle - {00000000-0000-0000-0041-000000000005}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000196}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000162}, !- Handle - {00000000-0000-0000-0016-000000000019}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000104}, !- Target Object + {00000000-0000-0000-0019-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0045-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0049-000000000104}, !- Source Object + {00000000-0000-0000-0045-000000000095}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000005}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0049-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000092}, !- Target Object + {00000000-0000-0000-0049-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000165}, !- Handle - {00000000-0000-0000-0049-000000000092}, !- Source Object + {00000000-0000-0000-0045-000000000096}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000019}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000192}, !- Target Object + {00000000-0000-0000-0045-000000000097}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000167}, !- Handle - {00000000-0000-0000-0049-000000000192}, !- Source Object + {00000000-0000-0000-0049-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0045-000000000098}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0049-000000000195}, !- Source Object + {00000000-0000-0000-0045-000000000098}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000001}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000169}, !- Handle - {00000000-0000-0000-0041-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000177}, !- Target Object + {00000000-0000-0000-0018-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0045-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0049-000000000177}, !- Source Object + {00000000-0000-0000-0045-000000000099}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0049-000000000007}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000171}, !- Handle - {00000000-0000-0000-0049-000000000069}, !- Source Object + {00000000-0000-0000-0049-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000043}, !- Target Object + {00000000-0000-0000-0045-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0055-000000000045}, !- Source Object + {00000000-0000-0000-0018-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000012}, !- Target Object + {00000000-0000-0000-0045-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0049-000000000012}, !- Source Object + {00000000-0000-0000-0045-000000000100}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0049-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000174}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0049-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000068}, !- Target Object + {00000000-0000-0000-0045-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000175}, !- Handle - {00000000-0000-0000-0049-000000000068}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000012}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0045-000000000046}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000176}, !- Handle - {00000000-0000-0000-0007-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000069}, !- Target Object + {00000000-0000-0000-0045-000000000046}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0049-000000000071}, !- Source Object + {00000000-0000-0000-0090-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000019}, !- Target Object + {00000000-0000-0000-0045-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0055-000000000021}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000008}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000047}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000179}, !- Handle - {00000000-0000-0000-0049-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0045-000000000048}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000070}, !- Target Object + {00000000-0000-0000-0045-000000000048}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000181}, !- Handle - {00000000-0000-0000-0049-000000000070}, !- Source Object + {00000000-0000-0000-0090-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000013}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0045-000000000049}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0007-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000071}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000049}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000183}, !- Handle - {00000000-0000-0000-0049-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000064}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0045-000000000050}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0055-000000000066}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000016}, !- Target Object + {00000000-0000-0000-0045-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000185}, !- Handle - {00000000-0000-0000-0049-000000000016}, !- Source Object + {00000000-0000-0000-0090-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0045-000000000051}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000072}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0049-000000000072}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000014}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0045-000000000052}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000188}, !- Handle - {00000000-0000-0000-0007-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000073}, !- Target Object + {00000000-0000-0000-0045-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000189}, !- Handle - {00000000-0000-0000-0049-000000000075}, !- Source Object + {00000000-0000-0000-0090-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000022}, !- Target Object + {00000000-0000-0000-0045-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000190}, !- Handle - {00000000-0000-0000-0055-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000010}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0049-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0045-000000000054}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000074}, !- Target Object + {00000000-0000-0000-0045-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000193}, !- Handle - {00000000-0000-0000-0049-000000000074}, !- Source Object + {00000000-0000-0000-0090-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000015}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0045-000000000055}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0007-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000075}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000195}, !- Handle - {00000000-0000-0000-0049-000000000077}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000058}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0045-000000000056}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0055-000000000060}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000014}, !- Target Object + {00000000-0000-0000-0045-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000197}, !- Handle - {00000000-0000-0000-0049-000000000014}, !- Source Object + {00000000-0000-0000-0090-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0045-000000000057}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000076}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000199}, !- Handle - {00000000-0000-0000-0049-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000016}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0045-000000000058}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0007-000000000016}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000077}, !- Target Object + {00000000-0000-0000-0045-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0049-000000000079}, !- Source Object + {00000000-0000-0000-0090-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000001}, !- Target Object + {00000000-0000-0000-0045-000000000059}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000202}, !- Handle - {00000000-0000-0000-0055-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000018}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000203}, !- Handle - {00000000-0000-0000-0049-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0045-000000000065}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000204}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0049-000000000078}, !- Target Object + {00000000-0000-0000-0045-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0049-000000000078}, !- Source Object + {00000000-0000-0000-0090-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000017}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0045-000000000066}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0007-000000000017}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000079}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000066}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000207}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0049-000000000202}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0045-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000208}, !- Handle - {00000000-0000-0000-0049-000000000203}, !- Source Object + {00000000-0000-0000-0045-000000000067}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0090-000000000009}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000197}, !- Target Object + {00000000-0000-0000-0090-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000210}, !- Handle - {00000000-0000-0000-0049-000000000198}, !- Source Object + {00000000-0000-0000-0045-000000000068}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0049-000000000197}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000004}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0045-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000212}, !- Handle - {00000000-0000-0000-0004-000000000004}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000198}, !- Target Object + {00000000-0000-0000-0045-000000000069}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000094}, !- Target Object + {00000000-0000-0000-0090-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0049-000000000094}, !- Source Object + {00000000-0000-0000-0045-000000000070}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000215}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000096}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0045-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0049-000000000096}, !- Source Object + {00000000-0000-0000-0045-000000000071}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0090-000000000011}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000217}, !- Handle - {00000000-0000-0000-0049-000000000200}, !- Source Object + {00000000-0000-0000-0090-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0045-000000000072}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000218}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000201}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000072}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000219}, !- Handle - {00000000-0000-0000-0041-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000203}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0045-000000000073}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000220}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000101}, !- Target Object + {00000000-0000-0000-0045-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0049-000000000101}, !- Source Object + {00000000-0000-0000-0090-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000006}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0045-000000000074}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000222}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000095}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0049-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0045-000000000075}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000199}, !- Target Object + {00000000-0000-0000-0045-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000225}, !- Handle - {00000000-0000-0000-0049-000000000199}, !- Source Object + {00000000-0000-0000-0090-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0045-000000000076}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0049-000000000202}, !- Source Object + {00000000-0000-0000-0045-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000002}, !- Target Object + {00000000-0000-0000-0018-000000000006}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000227}, !- Handle - {00000000-0000-0000-0041-000000000002}, !- Source Object + {00000000-0000-0000-0019-000000000006}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000178}, !- Target Object + {00000000-0000-0000-0045-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0049-000000000178}, !- Source Object + {00000000-0000-0000-0045-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0090-000000000014}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000229}, !- Handle - {00000000-0000-0000-0049-000000000081}, !- Source Object + {00000000-0000-0000-0090-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000055}, !- Target Object + {00000000-0000-0000-0045-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000230}, !- Handle - {00000000-0000-0000-0055-000000000057}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000026}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000078}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 17; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0049-000000000026}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0045-000000000079}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000232}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object + {00000000-0000-0000-0045-000000000079}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000080}, !- Target Object + {00000000-0000-0000-0090-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000233}, !- Handle - {00000000-0000-0000-0049-000000000080}, !- Source Object + {00000000-0000-0000-0090-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000018}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0045-000000000080}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0007-000000000018}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000081}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000235}, !- Handle - {00000000-0000-0000-0049-000000000083}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000049}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0045-000000000081}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0055-000000000051}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000024}, !- Target Object + {00000000-0000-0000-0045-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000237}, !- Handle - {00000000-0000-0000-0049-000000000024}, !- Source Object + {00000000-0000-0000-0090-000000000016}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0045-000000000082}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000082}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 19; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000239}, !- Handle - {00000000-0000-0000-0049-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000019}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0045-000000000083}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0007-000000000019}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000083}, !- Target Object + {00000000-0000-0000-0045-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000241}, !- Handle - {00000000-0000-0000-0049-000000000049}, !- Source Object + {00000000-0000-0000-0090-000000000017}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000034}, !- Target Object + {00000000-0000-0000-0045-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0055-000000000036}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000022}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000084}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 20; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000243}, !- Handle - {00000000-0000-0000-0049-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0045-000000000085}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000048}, !- Target Object + {00000000-0000-0000-0045-000000000085}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000245}, !- Handle - {00000000-0000-0000-0049-000000000048}, !- Source Object + {00000000-0000-0000-0090-000000000018}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000002}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0045-000000000086}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0007-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000049}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0045-000000000086}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 21; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000247}, !- Handle - {00000000-0000-0000-0049-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000028}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0045-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0055-000000000030}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000020}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000249}, !- Handle - {00000000-0000-0000-0049-000000000020}, !- Source Object + {00000000-0000-0000-0045-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000050}, !- Target Object + {00000000-0000-0000-0090-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000251}, !- Handle - {00000000-0000-0000-0049-000000000050}, !- Source Object + {00000000-0000-0000-0017-000000000249}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000003}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0007-000000000003}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000051}, !- Target Object + {00000000-0000-0000-0045-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000253}, !- Handle - {00000000-0000-0000-0049-000000000053}, !- Source Object + {00000000-0000-0000-0017-000000000250}, !- Handle + {00000000-0000-0000-0045-000000000088}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000061}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 22; !- Inlet Port -OS:Connection, - {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0055-000000000063}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000028}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000001}, !- Handle + Connector Mixer 1, !- Name + {00000000-0000-0000-0017-000000000091}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000082}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000086}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000090}; !- Inlet Branch Name 3 -OS:Connection, - {00000000-0000-0000-0017-000000000255}, !- Handle - {00000000-0000-0000-0049-000000000028}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 7; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000002}, !- Handle + Connector Mixer 2, !- Name + {00000000-0000-0000-0017-000000000075}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000130}; !- Inlet Branch Name 1 -OS:Connection, - {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000052}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000003}, !- Handle + Connector Mixer 3, !- Name + {00000000-0000-0000-0017-000000000112}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000107}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000111}; !- Inlet Branch Name 2 -OS:Connection, - {00000000-0000-0000-0017-000000000257}, !- Handle - {00000000-0000-0000-0049-000000000052}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000004}, !- Target Object - 3; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000004}, !- Handle + Connector Mixer 4, !- Name + {00000000-0000-0000-0017-000000000100}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000117}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000121}; !- Inlet Branch Name 2 -OS:Connection, - {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0007-000000000004}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000053}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000005}, !- Handle + Connector Mixer 5, !- Name + {00000000-0000-0000-0017-000000000169}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000161}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000165}; !- Inlet Branch Name 2 -OS:Connection, - {00000000-0000-0000-0017-000000000259}, !- Handle - {00000000-0000-0000-0049-000000000055}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000013}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000006}, !- Handle + Connector Mixer 6, !- Name + {00000000-0000-0000-0017-000000000172}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000168}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000178}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000182}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000186}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000190}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000194}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000198}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000202}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000206}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000210}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000214}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000218}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000222}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000226}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000230}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000234}, !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 17 + {00000000-0000-0000-0017-000000000242}, !- Inlet Branch Name 18 + {00000000-0000-0000-0017-000000000246}, !- Inlet Branch Name 19 + {00000000-0000-0000-0017-000000000250}; !- Inlet Branch Name 20 -OS:Connection, - {00000000-0000-0000-0017-000000000260}, !- Handle - {00000000-0000-0000-0055-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000030}, !- Target Object - 2; !- Inlet Port +OS:Connector:Splitter, + {00000000-0000-0000-0019-000000000001}, !- Handle + Connector Splitter 1, !- Name + {00000000-0000-0000-0017-000000000079}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000070}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000083}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000087}; !- Outlet Branch Name 3 -OS:Connection, - {00000000-0000-0000-0017-000000000261}, !- Handle - {00000000-0000-0000-0049-000000000030}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 8; !- Inlet Port +OS:Connector:Splitter, + {00000000-0000-0000-0019-000000000002}, !- Handle + Connector Splitter 2, !- Name + {00000000-0000-0000-0017-000000000073}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000074}; !- Outlet Branch Name 1 -OS:Connection, - {00000000-0000-0000-0017-000000000262}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0049-000000000054}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000263}, !- Handle - {00000000-0000-0000-0049-000000000054}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000264}, !- Handle - {00000000-0000-0000-0007-000000000005}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000055}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000265}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0049-000000000209}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000266}, !- Handle - {00000000-0000-0000-0049-000000000210}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000267}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000204}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000268}, !- Handle - {00000000-0000-0000-0049-000000000205}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000269}, !- Handle - {00000000-0000-0000-0049-000000000204}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000270}, !- Handle - {00000000-0000-0000-0004-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000205}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000271}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000097}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000272}, !- Handle - {00000000-0000-0000-0049-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000273}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000099}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000274}, !- Handle - {00000000-0000-0000-0049-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000275}, !- Handle - {00000000-0000-0000-0049-000000000207}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000276}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000208}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000277}, !- Handle - {00000000-0000-0000-0041-000000000007}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000210}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000278}, !- Handle - {00000000-0000-0000-0016-000000000010}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000102}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000279}, !- Handle - {00000000-0000-0000-0049-000000000102}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000007}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000280}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000098}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000281}, !- Handle - {00000000-0000-0000-0049-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000010}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000282}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000206}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000283}, !- Handle - {00000000-0000-0000-0049-000000000206}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000284}, !- Handle - {00000000-0000-0000-0049-000000000209}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000003}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000285}, !- Handle - {00000000-0000-0000-0041-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000179}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000286}, !- Handle - {00000000-0000-0000-0049-000000000179}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000287}, !- Handle - {00000000-0000-0000-0049-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000288}, !- Handle - {00000000-0000-0000-0055-000000000054}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000289}, !- Handle - {00000000-0000-0000-0049-000000000040}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000290}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000056}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000291}, !- Handle - {00000000-0000-0000-0049-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000292}, !- Handle - {00000000-0000-0000-0007-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000057}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000293}, !- Handle - {00000000-0000-0000-0049-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000031}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000294}, !- Handle - {00000000-0000-0000-0055-000000000033}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000036}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000295}, !- Handle - {00000000-0000-0000-0049-000000000036}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000296}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000297}, !- Handle - {00000000-0000-0000-0049-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000298}, !- Handle - {00000000-0000-0000-0007-000000000007}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000059}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000299}, !- Handle - {00000000-0000-0000-0049-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000300}, !- Handle - {00000000-0000-0000-0055-000000000018}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000032}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000301}, !- Handle - {00000000-0000-0000-0049-000000000032}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000302}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000060}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000303}, !- Handle - {00000000-0000-0000-0049-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000304}, !- Handle - {00000000-0000-0000-0007-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000305}, !- Handle - {00000000-0000-0000-0049-000000000063}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000025}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000306}, !- Handle - {00000000-0000-0000-0055-000000000027}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000307}, !- Handle - {00000000-0000-0000-0049-000000000034}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000308}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000062}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000309}, !- Handle - {00000000-0000-0000-0049-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000009}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000310}, !- Handle - {00000000-0000-0000-0007-000000000009}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000063}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000311}, !- Handle - {00000000-0000-0000-0049-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000312}, !- Handle - {00000000-0000-0000-0055-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000313}, !- Handle - {00000000-0000-0000-0049-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000314}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000315}, !- Handle - {00000000-0000-0000-0049-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000010}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000316}, !- Handle - {00000000-0000-0000-0007-000000000010}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000317}, !- Handle - {00000000-0000-0000-0049-000000000067}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000318}, !- Handle - {00000000-0000-0000-0055-000000000009}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000042}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000319}, !- Handle - {00000000-0000-0000-0049-000000000042}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000320}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0049-000000000066}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000321}, !- Handle - {00000000-0000-0000-0049-000000000066}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000011}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000322}, !- Handle - {00000000-0000-0000-0007-000000000011}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000067}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000323}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0049-000000000129}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000324}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000325}, !- Handle - {00000000-0000-0000-0049-000000000130}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000003}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000326}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000127}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000327}, !- Handle - {00000000-0000-0000-0049-000000000127}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000328}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000163}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000329}, !- Handle - {00000000-0000-0000-0049-000000000128}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000003}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000330}, !- Handle - {00000000-0000-0000-0049-000000000129}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000331}, !- Handle - {00000000-0000-0000-0056-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000126}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000332}, !- Handle - {00000000-0000-0000-0049-000000000126}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000333}, !- Handle - {00000000-0000-0000-0049-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000001}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000334}, !- Handle - {00000000-0000-0000-0092-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0049-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000335}, !- Handle - {00000000-0000-0000-0049-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000336}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000161}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000337}, !- Handle - {00000000-0000-0000-0049-000000000161}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000338}, !- Handle - {00000000-0000-0000-0053-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000162}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000339}, !- Handle - {00000000-0000-0000-0049-000000000162}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000340}, !- Handle - {00000000-0000-0000-0049-000000000163}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000341}, !- Handle - {00000000-0000-0000-0053-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000342}, !- Handle - {00000000-0000-0000-0049-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000343}, !- Handle - {00000000-0000-0000-0018-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000165}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000344}, !- Handle - {00000000-0000-0000-0049-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000345}, !- Handle - {00000000-0000-0000-0053-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000130}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000346}, !- Handle - {00000000-0000-0000-0018-000000000006}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000347}, !- Handle - {00000000-0000-0000-0049-000000000166}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000348}, !- Handle - {00000000-0000-0000-0053-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000128}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000349}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000112}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000350}, !- Handle - {00000000-0000-0000-0049-000000000112}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000351}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000113}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000352}, !- Handle - {00000000-0000-0000-0049-000000000113}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000353}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000114}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000354}, !- Handle - {00000000-0000-0000-0049-000000000114}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000355}, !- Handle - {00000000-0000-0000-0094-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000115}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000356}, !- Handle - {00000000-0000-0000-0049-000000000115}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000357}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000116}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000358}, !- Handle - {00000000-0000-0000-0049-000000000116}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000359}, !- Handle - {00000000-0000-0000-0094-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000117}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000360}, !- Handle - {00000000-0000-0000-0049-000000000117}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000361}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000118}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000362}, !- Handle - {00000000-0000-0000-0049-000000000118}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000363}, !- Handle - {00000000-0000-0000-0094-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000119}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000364}, !- Handle - {00000000-0000-0000-0049-000000000119}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000365}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0049-000000000120}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000366}, !- Handle - {00000000-0000-0000-0049-000000000120}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000367}, !- Handle - {00000000-0000-0000-0094-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000121}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000368}, !- Handle - {00000000-0000-0000-0049-000000000121}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000369}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0049-000000000122}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000370}, !- Handle - {00000000-0000-0000-0049-000000000122}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000371}, !- Handle - {00000000-0000-0000-0094-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000123}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000372}, !- Handle - {00000000-0000-0000-0049-000000000123}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000373}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0049-000000000124}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000374}, !- Handle - {00000000-0000-0000-0049-000000000124}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000375}, !- Handle - {00000000-0000-0000-0094-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000125}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000376}, !- Handle - {00000000-0000-0000-0049-000000000125}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000377}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000131}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000378}, !- Handle - {00000000-0000-0000-0049-000000000131}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000379}, !- Handle - {00000000-0000-0000-0094-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000132}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000380}, !- Handle - {00000000-0000-0000-0049-000000000132}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 11; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000381}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000133}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000382}, !- Handle - {00000000-0000-0000-0049-000000000133}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000383}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000134}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000384}, !- Handle - {00000000-0000-0000-0049-000000000134}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000385}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000135}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000386}, !- Handle - {00000000-0000-0000-0049-000000000135}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000387}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000136}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000388}, !- Handle - {00000000-0000-0000-0049-000000000136}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 13; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000389}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0049-000000000137}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000390}, !- Handle - {00000000-0000-0000-0049-000000000137}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000011}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000391}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000138}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000392}, !- Handle - {00000000-0000-0000-0049-000000000138}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000393}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0049-000000000139}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000394}, !- Handle - {00000000-0000-0000-0049-000000000139}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000012}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000395}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000140}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000396}, !- Handle - {00000000-0000-0000-0049-000000000140}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000397}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0049-000000000141}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000398}, !- Handle - {00000000-0000-0000-0049-000000000141}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000399}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000142}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000400}, !- Handle - {00000000-0000-0000-0049-000000000142}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000401}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000143}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000402}, !- Handle - {00000000-0000-0000-0049-000000000143}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000403}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000144}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000404}, !- Handle - {00000000-0000-0000-0049-000000000144}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000405}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0049-000000000145}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000406}, !- Handle - {00000000-0000-0000-0049-000000000145}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000015}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000407}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000146}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000408}, !- Handle - {00000000-0000-0000-0049-000000000146}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000409}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0049-000000000147}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000410}, !- Handle - {00000000-0000-0000-0049-000000000147}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000411}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000148}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000412}, !- Handle - {00000000-0000-0000-0049-000000000148}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 19; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000413}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0049-000000000149}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000414}, !- Handle - {00000000-0000-0000-0049-000000000149}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000017}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000415}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000150}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000416}, !- Handle - {00000000-0000-0000-0049-000000000150}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 20; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000417}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0049-000000000151}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000418}, !- Handle - {00000000-0000-0000-0049-000000000151}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000419}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000152}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000420}, !- Handle - {00000000-0000-0000-0049-000000000152}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000421}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0049-000000000153}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000422}, !- Handle - {00000000-0000-0000-0049-000000000153}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000019}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000423}, !- Handle - {00000000-0000-0000-0094-000000000019}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000424}, !- Handle - {00000000-0000-0000-0049-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 22; !- Inlet Port - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000001}, !- Handle - Connector Mixer 1, !- Name - {00000000-0000-0000-0017-000000000091}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000082}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000086}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000090}; !- Inlet Branch Name 3 - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000002}, !- Handle - Connector Mixer 2, !- Name - {00000000-0000-0000-0017-000000000075}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000130}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000158}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000216}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000274}; !- Inlet Branch Name 4 - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000003}, !- Handle - Connector Mixer 3, !- Name - {00000000-0000-0000-0017-000000000112}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000107}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000111}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000004}, !- Handle - Connector Mixer 4, !- Name - {00000000-0000-0000-0017-000000000100}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000117}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000121}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000005}, !- Handle - Connector Mixer 5, !- Name - {00000000-0000-0000-0017-000000000343}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000335}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000339}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000006}, !- Handle - Connector Mixer 6, !- Name - {00000000-0000-0000-0017-000000000346}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000342}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000352}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000356}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000360}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000364}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000368}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000372}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000376}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000380}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000384}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000388}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000392}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000396}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000400}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000404}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000408}, !- Inlet Branch Name 16 - {00000000-0000-0000-0017-000000000412}, !- Inlet Branch Name 17 - {00000000-0000-0000-0017-000000000416}, !- Inlet Branch Name 18 - {00000000-0000-0000-0017-000000000420}, !- Inlet Branch Name 19 - {00000000-0000-0000-0017-000000000424}; !- Inlet Branch Name 20 - -OS:Connector:Splitter, - {00000000-0000-0000-0019-000000000001}, !- Handle - Connector Splitter 1, !- Name - {00000000-0000-0000-0017-000000000079}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000070}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000083}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000087}; !- Outlet Branch Name 3 - -OS:Connector:Splitter, - {00000000-0000-0000-0019-000000000002}, !- Handle - Connector Splitter 2, !- Name - {00000000-0000-0000-0017-000000000073}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000074}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000155}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000213}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000271}; !- Outlet Branch Name 4 - -OS:Connector:Splitter, - {00000000-0000-0000-0019-000000000003}, !- Handle - Connector Splitter 3, !- Name - {00000000-0000-0000-0017-000000000104}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000095}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000108}; !- Outlet Branch Name 2 +OS:Connector:Splitter, + {00000000-0000-0000-0019-000000000003}, !- Handle + Connector Splitter 3, !- Name + {00000000-0000-0000-0017-000000000104}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000095}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000108}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000004}, !- Handle @@ -4381,324 +2266,303 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0017-000000000332}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000324}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000336}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000158}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000150}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000162}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0017-000000000327}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000328}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000349}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000353}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000357}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000361}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000365}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000369}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000373}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000377}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000381}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000385}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000389}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000393}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000397}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000401}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000405}, !- Outlet Branch Name 16 - {00000000-0000-0000-0017-000000000409}, !- Outlet Branch Name 17 - {00000000-0000-0000-0017-000000000413}, !- Outlet Branch Name 18 - {00000000-0000-0000-0017-000000000417}, !- Outlet Branch Name 19 - {00000000-0000-0000-0017-000000000421}; !- Outlet Branch Name 20 + {00000000-0000-0000-0017-000000000153}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000154}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000175}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000179}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000183}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000187}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000191}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000195}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000199}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000203}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000207}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000211}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000215}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000219}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000223}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000227}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000231}, !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 17 + {00000000-0000-0000-0017-000000000239}, !- Outlet Branch Name 18 + {00000000-0000-0000-0017-000000000243}, !- Outlet Branch Name 19 + {00000000-0000-0000-0017-000000000247}; !- Outlet Branch Name 20 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle BTAP-Ext-DaylightDiffuser, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 + {00000000-0000-0000-0094-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000002}, !- Handle BTAP-Ext-DaylightDiffuser:U=0.220 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000002}; !- Layer 1 + {00000000-0000-0000-0094-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000003}, !- Handle BTAP-Ext-DaylightDomes, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 + {00000000-0000-0000-0094-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000004}, !- Handle BTAP-Ext-DaylightDomes:U=0.220 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000002}; !- Layer 1 + {00000000-0000-0000-0094-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000005}, !- Handle BTAP-Ext-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000018}, !- Layer 1 - {00000000-0000-0000-0047-000000000013}; !- Layer 2 + {00000000-0000-0000-0042-000000000018}, !- Layer 1 + {00000000-0000-0000-0043-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000006}, !- Handle BTAP-Ext-Door:U-2.2, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000017}, !- Layer 1 - {00000000-0000-0000-0047-000000000011}; !- Layer 2 + {00000000-0000-0000-0042-000000000017}, !- Layer 1 + {00000000-0000-0000-0043-000000000011}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000007}, !- Handle BTAP-Ext-FixedWindow, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 + {00000000-0000-0000-0094-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000008}, !- Handle BTAP-Ext-FixedWindow:U=0.220 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000002}; !- Layer 1 + {00000000-0000-0000-0094-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000009}, !- Handle BTAP-Ext-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000013}, !- Layer 1 - {00000000-0000-0000-0046-000000000008}, !- Layer 2 - {00000000-0000-0000-0047-000000000007}; !- Layer 3 + {00000000-0000-0000-0043-000000000013}, !- Layer 1 + {00000000-0000-0000-0042-000000000008}, !- Layer 2 + {00000000-0000-0000-0043-000000000007}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000010}, !- Handle BTAP-Ext-Floor-Mass:U-0.162, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000008}, !- Layer 1 - {00000000-0000-0000-0046-000000000007}, !- Layer 2 - {00000000-0000-0000-0047-000000000003}; !- Layer 3 + {00000000-0000-0000-0043-000000000008}, !- Layer 1 + {00000000-0000-0000-0042-000000000007}, !- Layer 2 + {00000000-0000-0000-0043-000000000003}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000011}, !- Handle BTAP-Ext-GlassDoors, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 + {00000000-0000-0000-0094-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000012}, !- Handle BTAP-Ext-GlassDoors:U=0.220 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000002}; !- Layer 1 + {00000000-0000-0000-0094-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000013}, !- Handle BTAP-Ext-OverHeadDoor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000013}; !- Layer 1 + {00000000-0000-0000-0043-000000000013}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000014}, !- Handle BTAP-Ext-OverHeadDoor:U-2.2, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000012}; !- Layer 1 + {00000000-0000-0000-0043-000000000012}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000015}, !- Handle BTAP-Ext-Roof-Metal, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000024}, !- Layer 1 - {00000000-0000-0000-0047-000000000013}; !- Layer 2 + {00000000-0000-0000-0042-000000000024}, !- Layer 1 + {00000000-0000-0000-0043-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000016}, !- Handle BTAP-Ext-Roof-Metal:U-0.162, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000023}, !- Layer 1 - {00000000-0000-0000-0047-000000000010}; !- Layer 2 + {00000000-0000-0000-0042-000000000023}, !- Layer 1 + {00000000-0000-0000-0043-000000000010}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000017}, !- Handle BTAP-Ext-Skylights, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 + {00000000-0000-0000-0094-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000018}, !- Handle BTAP-Ext-Skylights:U=0.220 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000002}; !- Layer 1 + {00000000-0000-0000-0094-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000019}, !- Handle BTAP-Ext-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000006}, !- Layer 1 - {00000000-0000-0000-0046-000000000014}, !- Layer 2 - {00000000-0000-0000-0047-000000000013}, !- Layer 3 - {00000000-0000-0000-0046-000000000002}; !- Layer 4 + {00000000-0000-0000-0042-000000000006}, !- Layer 1 + {00000000-0000-0000-0042-000000000014}, !- Layer 2 + {00000000-0000-0000-0043-000000000013}, !- Layer 3 + {00000000-0000-0000-0042-000000000002}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000020}, !- Handle BTAP-Ext-Wall-Mass:U-0.21, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000005}, !- Layer 1 - {00000000-0000-0000-0046-000000000013}, !- Layer 2 - {00000000-0000-0000-0047-000000000009}, !- Layer 3 - {00000000-0000-0000-0046-000000000001}; !- Layer 4 + {00000000-0000-0000-0042-000000000005}, !- Layer 1 + {00000000-0000-0000-0042-000000000013}, !- Layer 2 + {00000000-0000-0000-0043-000000000009}, !- Layer 3 + {00000000-0000-0000-0042-000000000001}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000021}, !- Handle BTAP-Grnd-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000012}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 + {00000000-0000-0000-0042-000000000012}, !- Layer 1 + {00000000-0000-0000-0043-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000022}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000009}, !- Layer 1 - {00000000-0000-0000-0047-000000000004}; !- Layer 2 + {00000000-0000-0000-0042-000000000009}, !- Layer 1 + {00000000-0000-0000-0043-000000000004}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000023}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000009}, !- Layer 1 - {00000000-0000-0000-0046-000000000016}; !- Layer 2 + {00000000-0000-0000-0042-000000000009}, !- Layer 1 + {00000000-0000-0000-0042-000000000016}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000024}, !- Handle BTAP-Grnd-Roof-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000012}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 + {00000000-0000-0000-0042-000000000012}, !- Layer 1 + {00000000-0000-0000-0043-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000025}, !- Handle BTAP-Grnd-Roof-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000011}, !- Layer 1 - {00000000-0000-0000-0047-000000000006}; !- Layer 2 + {00000000-0000-0000-0042-000000000011}, !- Layer 1 + {00000000-0000-0000-0043-000000000006}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000026}, !- Handle BTAP-Grnd-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000012}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 + {00000000-0000-0000-0042-000000000012}, !- Layer 1 + {00000000-0000-0000-0043-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000027}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000010}, !- Layer 1 - {00000000-0000-0000-0047-000000000005}; !- Layer 2 + {00000000-0000-0000-0042-000000000010}, !- Layer 1 + {00000000-0000-0000-0043-000000000005}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000028}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000010}, !- Layer 1 - {00000000-0000-0000-0046-000000000015}; !- Layer 2 + {00000000-0000-0000-0042-000000000010}, !- Layer 1 + {00000000-0000-0000-0042-000000000015}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000029}, !- Handle BTAP-Int-Ceiling, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000007}, !- Layer 1 - {00000000-0000-0000-0046-000000000003}; !- Layer 2 + {00000000-0000-0000-0043-000000000007}, !- Layer 1 + {00000000-0000-0000-0042-000000000003}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000030}, !- Handle BTAP-Int-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000021}; !- Layer 1 + {00000000-0000-0000-0042-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000031}, !- Handle BTAP-Int-Floor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000003}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 + {00000000-0000-0000-0042-000000000003}, !- Layer 1 + {00000000-0000-0000-0043-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000032}, !- Handle BTAP-Int-Partition, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000021}; !- Layer 1 + {00000000-0000-0000-0042-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000033}, !- Handle BTAP-Int-Wall, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000019}, !- Layer 1 - {00000000-0000-0000-0046-000000000019}; !- Layer 2 + {00000000-0000-0000-0042-000000000019}, !- Layer 1 + {00000000-0000-0000-0042-000000000019}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000034}, !- Handle BTAP-Int-Window, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 + {00000000-0000-0000-0094-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000035}, !- Handle Basement Floor construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000022}, !- Layer 1 - {00000000-0000-0000-0047-000000000001}; !- Layer 2 + {00000000-0000-0000-0042-000000000022}, !- Layer 1 + {00000000-0000-0000-0043-000000000001}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000036}, !- Handle Basement Wall construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000022}; !- Layer 1 + {00000000-0000-0000-0042-000000000022}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000037}, !- Handle Floor Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000001}, !- Layer 1 - {00000000-0000-0000-0046-000000000004}, !- Layer 2 - {00000000-0000-0000-0047-000000000002}; !- Layer 3 + {00000000-0000-0000-0043-000000000001}, !- Layer 1 + {00000000-0000-0000-0042-000000000004}, !- Layer 2 + {00000000-0000-0000-0043-000000000002}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000038}, !- Handle Wall Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000020}, !- Layer 1 - {00000000-0000-0000-0046-000000000020}; !- Layer 2 + {00000000-0000-0000-0042-000000000020}, !- Layer 1 + {00000000-0000-0000-0042-000000000020}; !- Layer 2 OS:Controller:MechanicalVentilation, {00000000-0000-0000-0021-000000000001}, !- Handle Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method OS:Controller:MechanicalVentilation, {00000000-0000-0000-0021-000000000002}, !- Handle Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000004}, !- Handle - Controller Mechanical Ventilation 4, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000005}, !- Handle - Controller Mechanical Ventilation 5, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method @@ -4720,7 +2584,7 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0062-000000000026}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0058-000000000023}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation @@ -4750,7 +2614,7 @@ OS:Controller:OutdoorAir, -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0062-000000000030}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0058-000000000024}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation @@ -4762,96 +2626,6 @@ OS:Controller:OutdoorAir, BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0062-000000000027}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000004}, !- Handle - Controller Outdoor Air 4, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0062-000000000028}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000004}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000005}, !- Handle - Controller Outdoor Air 5, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0062-000000000029}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000005}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - OS:Controller:WaterCoil, {00000000-0000-0000-0023-000000000001}, !- Handle Controller Water Coil 1, !- Name @@ -4865,45 +2639,6 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000002}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0015-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000003}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0015-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000004}, !- Handle - Controller Water Coil 4, !- Name - {00000000-0000-0000-0015-000000000004}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0024-000000000001}, !- Handle Cooling Tower Single Speed 1, !- Name @@ -4911,7 +2646,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000106}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 36673.2686653161, !- Fan Power at Design Air Flow Rate {W} + 345.351269475612, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -4929,7 +2664,7 @@ OS:CoolingTower:SingleSpeed, , !- Blowdown Makeup Water Usage Schedule Name , !- Outdoor Air Inlet Node Name FanCycling, !- Capacity Control - 2, !- Number of Cells + 1, !- Number of Cells MinimalCell, !- Cell Control 0.33, !- Cell Minimum Water Flow Rate Fraction 2.5, !- Cell Maximum Water Flow Rate Fraction @@ -5058,34 +2793,6 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0025-000000000009}, !- Handle - WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name - 0.707908, !- Coefficient1 Constant - -0.00200657, !- Coefficient2 x - -0.00259605, !- Coefficient3 x**2 - 0.0300588, !- Coefficient4 y - -0.00105643, !- Coefficient5 y**2 - 0.0020457, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000010}, !- Handle - WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name - 0.560523, !- Coefficient1 Constant - -0.0137816, !- Coefficient2 x - 6.56424e-05, !- Coefficient3 x**2 - 0.0132194, !- Coefficient4 y - 0.000268596, !- Coefficient5 y**2 - -0.000501131, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000011}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -5099,7 +2806,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000012}, !- Handle + {00000000-0000-0000-0025-000000000010}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -5142,26 +2849,6 @@ OS:Curve:Cubic, 0.68, !- Minimum Value of x 1; !- Maximum Value of x -OS:Curve:Cubic, - {00000000-0000-0000-0026-000000000004}, !- Handle - VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name - -4.1457, !- Coefficient1 Constant - 16.803, !- Coefficient2 x - -19.471, !- Coefficient3 x**2 - 7.8488, !- Coefficient4 x**3 - 0.5, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0026-000000000005}, !- Handle - VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name - -0.3477, !- Coefficient1 Constant - 4.0976, !- Coefficient2 x - -5.0024, !- Coefficient3 x**2 - 2.268, !- Coefficient4 x**3 - 0.22, !- Minimum Value of x - 1; !- Maximum Value of x - OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000001}, !- Handle Curve Quadratic 1, !- Name @@ -5218,15 +2905,6 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000007}, !- Handle - WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name - 0.171493, !- Coefficient1 Constant - 0.588202, !- Coefficient2 x - 0.237373, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0027-000000000008}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -5258,7 +2936,7 @@ OS:DefaultScheduleSet, , !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0058-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -5266,13 +2944,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000002}, !- Handle Space Function Electrical/Mechanical-sch-A Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0062-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0062-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0058-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0058-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0058-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0058-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0058-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -5280,13 +2958,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000003}, !- Handle Space Function Office - open plan Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0062-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0062-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0058-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0058-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0058-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0058-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0058-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -5395,7 +3073,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A Elec Equip, !- Name {00000000-0000-0000-0034-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0076-000000000002}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -5404,7 +3082,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000002}, !- Handle Space Function Office - open plan Elec Equip, !- Name {00000000-0000-0000-0034-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0076-000000000003}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -5420,242 +3098,35 @@ OS:ElectricEquipment:Definition, 0.5; !- Fraction Radiant OS:ElectricEquipment:Definition, - {00000000-0000-0000-0034-000000000002}, !- Handle - Space Function Office - open plan Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.49993758008349, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name - {00000000-0000-0000-0062-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0062-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0062-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name - {00000000-0000-0000-0062-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000005}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_ClgSch0, !- Name - {00000000-0000-0000-0062-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000006}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_HtgSch0, !- Name - {00000000-0000-0000-0062-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0595ea3d-e9c1-4693-819e-28eba44344ca}<23.9 && {0595ea3d-e9c1-4693-819e-28eba44344ca}>1.7, !- Program Line 1 - SET {b2c53f32-6dd5-4888-8e3f-08febaf5fe26} = 29.4, !- Program Line 2 - SET {4e591300-b66b-4809-92fd-66d4d83c6404} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0595ea3d-e9c1-4693-819e-28eba44344ca}<23.9 && {0595ea3d-e9c1-4693-819e-28eba44344ca}>1.7, !- Program Line 4 - SET {b2c53f32-6dd5-4888-8e3f-08febaf5fe26} = 29.4, !- Program Line 5 - SET {4e591300-b66b-4809-92fd-66d4d83c6404} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0595ea3d-e9c1-4693-819e-28eba44344ca}<23.9 && {0595ea3d-e9c1-4693-819e-28eba44344ca}>1.7, !- Program Line 7 - SET {b2c53f32-6dd5-4888-8e3f-08febaf5fe26} = 29.4, !- Program Line 8 - SET {4e591300-b66b-4809-92fd-66d4d83c6404} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0595ea3d-e9c1-4693-819e-28eba44344ca}<23.9 && {0595ea3d-e9c1-4693-819e-28eba44344ca}>1.7, !- Program Line 10 - SET {b2c53f32-6dd5-4888-8e3f-08febaf5fe26} = 29.4, !- Program Line 11 - SET {4e591300-b66b-4809-92fd-66d4d83c6404} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {b2c53f32-6dd5-4888-8e3f-08febaf5fe26} = NULL, !- Program Line 14 - SET {4e591300-b66b-4809-92fd-66d4d83c6404} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5282d836-a214-4b02-94b4-b9bf3f241b8c}<23.9 && {5282d836-a214-4b02-94b4-b9bf3f241b8c}>1.7, !- Program Line 1 - SET {72add0cd-f423-48bf-90c0-6dd0e6222e35} = 29.4, !- Program Line 2 - SET {bf143485-9708-4f7f-bb92-ff4f0a5d8823} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5282d836-a214-4b02-94b4-b9bf3f241b8c}<23.9 && {5282d836-a214-4b02-94b4-b9bf3f241b8c}>1.7, !- Program Line 4 - SET {72add0cd-f423-48bf-90c0-6dd0e6222e35} = 29.4, !- Program Line 5 - SET {bf143485-9708-4f7f-bb92-ff4f0a5d8823} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5282d836-a214-4b02-94b4-b9bf3f241b8c}<23.9 && {5282d836-a214-4b02-94b4-b9bf3f241b8c}>1.7, !- Program Line 7 - SET {72add0cd-f423-48bf-90c0-6dd0e6222e35} = 29.4, !- Program Line 8 - SET {bf143485-9708-4f7f-bb92-ff4f0a5d8823} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5282d836-a214-4b02-94b4-b9bf3f241b8c}<23.9 && {5282d836-a214-4b02-94b4-b9bf3f241b8c}>1.7, !- Program Line 10 - SET {72add0cd-f423-48bf-90c0-6dd0e6222e35} = 29.4, !- Program Line 11 - SET {bf143485-9708-4f7f-bb92-ff4f0a5d8823} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {72add0cd-f423-48bf-90c0-6dd0e6222e35} = NULL, !- Program Line 14 - SET {bf143485-9708-4f7f-bb92-ff4f0a5d8823} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {77556407-9f11-410a-a134-e8be1f6d42a6}<23.9 && {77556407-9f11-410a-a134-e8be1f6d42a6}>1.7, !- Program Line 1 - SET {02b38456-abb6-4d39-9c31-ad5e5d5eb93a} = 29.4, !- Program Line 2 - SET {9338650c-d838-4359-8bfd-f20728fe894b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {77556407-9f11-410a-a134-e8be1f6d42a6}<23.9 && {77556407-9f11-410a-a134-e8be1f6d42a6}>1.7, !- Program Line 4 - SET {02b38456-abb6-4d39-9c31-ad5e5d5eb93a} = 29.4, !- Program Line 5 - SET {9338650c-d838-4359-8bfd-f20728fe894b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {77556407-9f11-410a-a134-e8be1f6d42a6}<23.9 && {77556407-9f11-410a-a134-e8be1f6d42a6}>1.7, !- Program Line 7 - SET {02b38456-abb6-4d39-9c31-ad5e5d5eb93a} = 29.4, !- Program Line 8 - SET {9338650c-d838-4359-8bfd-f20728fe894b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {77556407-9f11-410a-a134-e8be1f6d42a6}<23.9 && {77556407-9f11-410a-a134-e8be1f6d42a6}>1.7, !- Program Line 10 - SET {02b38456-abb6-4d39-9c31-ad5e5d5eb93a} = 29.4, !- Program Line 11 - SET {9338650c-d838-4359-8bfd-f20728fe894b} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {02b38456-abb6-4d39-9c31-ad5e5d5eb93a} = NULL, !- Program Line 14 - SET {9338650c-d838-4359-8bfd-f20728fe894b} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0036-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0036-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0036-000000000003}; !- Program Name 1 - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0038-000000000001}, !- Handle - OAT, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0038-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0038-000000000003}, !- Handle - OAT_2, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:Facility, - {00000000-0000-0000-0039-000000000001}; !- Handle - -OS:Fan:ConstantVolume, - {00000000-0000-0000-0040-000000000001}, !- Handle - Fan Constant Volume 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.39975, !- Fan Total Efficiency - 640, !- Pressure Rise {Pa} - AutoSize, !- Maximum Flow Rate {m3/s} - 0.615, !- Motor Efficiency - , !- Motor In Airstream Fraction - {00000000-0000-0000-0017-000000000057}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000055}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000168}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000169}, !- Air Outlet Node Name - ; !- End-Use Subcategory + {00000000-0000-0000-0034-000000000002}, !- Handle + Space Function Office - open plan Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.49993758008349, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000226}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000227}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:Facility, + {00000000-0000-0000-0035-000000000001}; !- Handle -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000003}, !- Handle - Sys6 Return Fan 3, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000284}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000285}, !- Air Outlet Node Name +OS:Fan:ConstantVolume, + {00000000-0000-0000-0036-000000000001}, !- Handle + Fan Constant Volume 1, !- Name + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name + 0.39975, !- Fan Total Efficiency + 640, !- Pressure Rise {Pa} + AutoSize, !- Maximum Flow Rate {m3/s} + 0.615, !- Motor Efficiency + , !- Motor In Airstream Fraction + {00000000-0000-0000-0017-000000000057}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000055}, !- Air Outlet Node Name ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000004}, !- Handle + {00000000-0000-0000-0037-000000000001}, !- Handle Sys6 Return Fan, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency 250, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -5674,72 +3145,9 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000005}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000163}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000161}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000006}, !- Handle - Sys6 Supply Fan 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000221}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000219}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000007}, !- Handle - Sys6 Supply Fan 3, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000279}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000277}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000008}, !- Handle + {00000000-0000-0000-0037-000000000002}, !- Handle Sys6 Supply Fan, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -5758,7 +3166,7 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Foundation:Kiva, - {00000000-0000-0000-0042-000000000001}, !- Handle + {00000000-0000-0000-0038-000000000001}, !- Handle Bldg Kiva Foundation, !- Name , !- Initial Indoor Air Temperature {C} , !- Interior Horizontal Insulation Material Name @@ -5778,7 +3186,7 @@ OS:Foundation:Kiva, ; !- Footing Depth {m} OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0043-000000000001}, !- Handle + {00000000-0000-0000-0039-000000000001}, !- Handle , !- Soil Conductivity {W/m-K} , !- Soil Density {kg/m3} , !- Soil Specific Heat {J/kg-K} @@ -5793,27 +3201,27 @@ OS:Foundation:Kiva:Settings, ; !- Simulation Timestep OS:Lights, - {00000000-0000-0000-0044-000000000001}, !- Handle + {00000000-0000-0000-0040-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A Lights, !- Name - {00000000-0000-0000-0045-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0041-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0076-000000000002}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights, - {00000000-0000-0000-0044-000000000002}, !- Handle + {00000000-0000-0000-0040-000000000002}, !- Handle Space Function Office - open plan Lights, !- Name - {00000000-0000-0000-0045-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0041-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0076-000000000003}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights:Definition, - {00000000-0000-0000-0045-000000000001}, !- Handle + {00000000-0000-0000-0041-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -5823,7 +3231,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Lights:Definition, - {00000000-0000-0000-0045-000000000002}, !- Handle + {00000000-0000-0000-0041-000000000002}, !- Handle Space Function Office - open plan Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -5833,7 +3241,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Material, - {00000000-0000-0000-0046-000000000001}, !- Handle + {00000000-0000-0000-0042-000000000001}, !- Handle 1/2IN Gypsum 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -5845,7 +3253,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000002}, !- Handle + {00000000-0000-0000-0042-000000000002}, !- Handle 1/2IN Gypsum, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -5857,7 +3265,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000003}, !- Handle + {00000000-0000-0000-0042-000000000003}, !- Handle 100mm Normalweight concrete floor 1, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -5866,7 +3274,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0046-000000000004}, !- Handle + {00000000-0000-0000-0042-000000000004}, !- Handle 100mm Normalweight concrete floor, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -5875,7 +3283,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0046-000000000005}, !- Handle + {00000000-0000-0000-0042-000000000005}, !- Handle 1IN Stucco 1, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -5887,7 +3295,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000006}, !- Handle + {00000000-0000-0000-0042-000000000006}, !- Handle 1IN Stucco, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -5899,7 +3307,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000007}, !- Handle + {00000000-0000-0000-0042-000000000007}, !- Handle 4 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -5911,7 +3319,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000008}, !- Handle + {00000000-0000-0000-0042-000000000008}, !- Handle 4 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -5923,7 +3331,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000009}, !- Handle + {00000000-0000-0000-0042-000000000009}, !- Handle 6 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -5935,7 +3343,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000010}, !- Handle + {00000000-0000-0000-0042-000000000010}, !- Handle 6 in. Normalweight Concrete Floor 2, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -5947,7 +3355,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000011}, !- Handle + {00000000-0000-0000-0042-000000000011}, !- Handle 6 in. Normalweight Concrete Floor 3, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -5959,7 +3367,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000012}, !- Handle + {00000000-0000-0000-0042-000000000012}, !- Handle 6 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -5971,7 +3379,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000013}, !- Handle + {00000000-0000-0000-0042-000000000013}, !- Handle 8IN CONCRETE HW RefBldg 1, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -5983,7 +3391,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000014}, !- Handle + {00000000-0000-0000-0042-000000000014}, !- Handle 8IN CONCRETE HW RefBldg, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -5995,7 +3403,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000015}, !- Handle + {00000000-0000-0000-0042-000000000015}, !- Handle Expanded Polystyrene 1, !- Name MediumSmooth, !- Roughness 0.100199429303091, !- Thickness {m} @@ -6004,7 +3412,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0046-000000000016}, !- Handle + {00000000-0000-0000-0042-000000000016}, !- Handle Expanded Polystyrene, !- Name MediumSmooth, !- Roughness 0.0363958681740979, !- Thickness {m} @@ -6013,7 +3421,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0046-000000000017}, !- Handle + {00000000-0000-0000-0042-000000000017}, !- Handle F08 Metal surface 1, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -6025,7 +3433,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000018}, !- Handle + {00000000-0000-0000-0042-000000000018}, !- Handle F08 Metal surface, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -6037,7 +3445,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000019}, !- Handle + {00000000-0000-0000-0042-000000000019}, !- Handle G01 13mm gypsum board 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -6049,7 +3457,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000020}, !- Handle + {00000000-0000-0000-0042-000000000020}, !- Handle G01 13mm gypsum board, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -6061,7 +3469,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000021}, !- Handle + {00000000-0000-0000-0042-000000000021}, !- Handle G05 25mm wood, !- Name MediumSmooth, !- Roughness 0.0254, !- Thickness {m} @@ -6073,7 +3481,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000022}, !- Handle + {00000000-0000-0000-0042-000000000022}, !- Handle M10 200mm concrete block basement wall, !- Name MediumRough, !- Roughness 0.2032, !- Thickness {m} @@ -6082,7 +3490,7 @@ OS:Material, 912; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0046-000000000023}, !- Handle + {00000000-0000-0000-0042-000000000023}, !- Handle Metal Roof Surface 1, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -6094,7 +3502,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0046-000000000024}, !- Handle + {00000000-0000-0000-0042-000000000024}, !- Handle Metal Roof Surface, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -6106,7 +3514,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000001}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Handle CP02 CARPET PAD, !- Name VeryRough, !- Roughness 0.21648, !- Thermal Resistance {m2-K/W} @@ -6115,7 +3523,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000002}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Handle Nonres_Floor_Insulation, !- Name MediumSmooth, !- Roughness 2.88291975297193, !- Thermal Resistance {m2-K/W} @@ -6124,7 +3532,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000003}, !- Handle + {00000000-0000-0000-0043-000000000003}, !- Handle Typical Carpet Pad 1, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -6133,7 +3541,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000004}, !- Handle + {00000000-0000-0000-0043-000000000004}, !- Handle Typical Carpet Pad 2, !- Name Smooth, !- Roughness 1.25502993703786, !- Thermal Resistance {m2-K/W} @@ -6142,7 +3550,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000005}, !- Handle + {00000000-0000-0000-0043-000000000005}, !- Handle Typical Carpet Pad 3, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -6151,7 +3559,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000006}, !- Handle + {00000000-0000-0000-0043-000000000006}, !- Handle Typical Carpet Pad 4, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -6160,7 +3568,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000007}, !- Handle + {00000000-0000-0000-0043-000000000007}, !- Handle Typical Carpet Pad, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -6169,7 +3577,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000008}, !- Handle + {00000000-0000-0000-0043-000000000008}, !- Handle Typical Insulation 1, !- Name Smooth, !- Roughness 5.91237683519488, !- Thermal Resistance {m2-K/W} @@ -6178,7 +3586,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000009}, !- Handle + {00000000-0000-0000-0043-000000000009}, !- Handle Typical Insulation 2, !- Name Smooth, !- Roughness 4.49096231241638, !- Thermal Resistance {m2-K/W} @@ -6187,7 +3595,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000010}, !- Handle + {00000000-0000-0000-0043-000000000010}, !- Handle Typical Insulation 3, !- Name Smooth, !- Roughness 6.17282183832832, !- Thermal Resistance {m2-K/W} @@ -6196,7 +3604,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000011}, !- Handle + {00000000-0000-0000-0043-000000000011}, !- Handle Typical Insulation 4, !- Name Smooth, !- Roughness 0.454527786700932, !- Thermal Resistance {m2-K/W} @@ -6205,7 +3613,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000012}, !- Handle + {00000000-0000-0000-0043-000000000012}, !- Handle Typical Insulation 5, !- Name Smooth, !- Roughness 0.454545454545455, !- Thermal Resistance {m2-K/W} @@ -6214,7 +3622,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0047-000000000013}, !- Handle + {00000000-0000-0000-0043-000000000013}, !- Handle Typical Insulation, !- Name Smooth, !- Roughness 0.101874652714525, !- Thermal Resistance {m2-K/W} @@ -6223,1420 +3631,832 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:ModelObjectList, - {00000000-0000-0000-0048-000000000001}, !- Handle + {00000000-0000-0000-0044-000000000001}, !- Handle Availability Manager Night Cycle 1 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0048-000000000002}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Handle Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0048-000000000003}, !- Handle + {00000000-0000-0000-0044-000000000003}, !- Handle Availability Manager Night Cycle 1 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0048-000000000004}, !- Handle + {00000000-0000-0000-0044-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0048-000000000005}, !- Handle + {00000000-0000-0000-0044-000000000005}, !- Handle Availability Manager Night Cycle 2 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0048-000000000006}, !- Handle + {00000000-0000-0000-0044-000000000006}, !- Handle Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0048-000000000007}, !- Handle + {00000000-0000-0000-0044-000000000007}, !- Handle Availability Manager Night Cycle 2 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0048-000000000008}, !- Handle + {00000000-0000-0000-0044-000000000008}, !- Handle Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000013}, !- Handle - Availability Manager Night Cycle 4 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000014}, !- Handle - Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000015}, !- Handle - Availability Manager Night Cycle 4 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000016}, !- Handle - Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000017}, !- Handle - Availability Manager Night Cycle 5 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000018}, !- Handle - Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000019}, !- Handle - Availability Manager Night Cycle 5 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000020}, !- Handle - Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name - OS:Node, - {00000000-0000-0000-0049-000000000001}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Handle 1103gal Electricity Water Heater - 744kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000324}, !- Inlet Port - {00000000-0000-0000-0017-000000000333}; !- Outlet Port + {00000000-0000-0000-0017-000000000150}, !- Inlet Port + {00000000-0000-0000-0017-000000000159}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000002}, !- Handle + {00000000-0000-0000-0045-000000000002}, !- Handle 1103gal Electricity Water Heater - 744kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000334}, !- Inlet Port - {00000000-0000-0000-0017-000000000335}; !- Outlet Port + {00000000-0000-0000-0017-000000000160}, !- Inlet Port + {00000000-0000-0000-0017-000000000161}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000003}, !- Handle + {00000000-0000-0000-0045-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000004}, !- Handle + {00000000-0000-0000-0045-000000000004}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000005}, !- Handle + {00000000-0000-0000-0045-000000000005}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000027}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000006}, !- Handle + {00000000-0000-0000-0045-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000144}, !- Inlet Port {00000000-0000-0000-0017-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000007}, !- Handle + {00000000-0000-0000-0045-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000036}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000008}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000178}, !- Inlet Port - {00000000-0000-0000-0017-000000000179}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000009}, !- Handle + {00000000-0000-0000-0045-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000010}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000190}, !- Inlet Port - {00000000-0000-0000-0017-000000000191}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000011}, !- Handle + {00000000-0000-0000-0045-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000012}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000172}, !- Inlet Port - {00000000-0000-0000-0017-000000000173}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000013}, !- Handle + {00000000-0000-0000-0045-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000014}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000196}, !- Inlet Port - {00000000-0000-0000-0017-000000000197}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000015}, !- Handle + {00000000-0000-0000-0045-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000016}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000184}, !- Inlet Port - {00000000-0000-0000-0017-000000000185}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000017}, !- Handle + {00000000-0000-0000-0045-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000045}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000018}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000202}, !- Inlet Port - {00000000-0000-0000-0017-000000000203}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000019}, !- Handle + {00000000-0000-0000-0045-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000024}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000020}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000248}, !- Inlet Port - {00000000-0000-0000-0017-000000000249}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000021}, !- Handle + {00000000-0000-0000-0045-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000022}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000242}, !- Inlet Port - {00000000-0000-0000-0017-000000000243}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000023}, !- Handle + {00000000-0000-0000-0045-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000035}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000024}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000236}, !- Inlet Port - {00000000-0000-0000-0017-000000000237}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000025}, !- Handle + {00000000-0000-0000-0045-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000026}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000230}, !- Inlet Port - {00000000-0000-0000-0017-000000000231}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000027}, !- Handle + {00000000-0000-0000-0045-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000042}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000028}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000254}, !- Inlet Port - {00000000-0000-0000-0017-000000000255}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000029}, !- Handle + {00000000-0000-0000-0045-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000044}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000030}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000260}, !- Inlet Port - {00000000-0000-0000-0017-000000000261}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000031}, !- Handle + {00000000-0000-0000-0045-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000032}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000300}, !- Inlet Port - {00000000-0000-0000-0017-000000000301}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000033}, !- Handle + {00000000-0000-0000-0045-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000029}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000034}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000306}, !- Inlet Port - {00000000-0000-0000-0017-000000000307}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000035}, !- Handle + {00000000-0000-0000-0045-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000032}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000036}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000294}, !- Inlet Port - {00000000-0000-0000-0017-000000000295}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000037}, !- Handle + {00000000-0000-0000-0045-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000038}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000312}, !- Inlet Port - {00000000-0000-0000-0017-000000000313}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000039}, !- Handle + {00000000-0000-0000-0045-000000000023}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000039}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000040}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000288}, !- Inlet Port - {00000000-0000-0000-0017-000000000289}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000041}, !- Handle + {00000000-0000-0000-0045-000000000024}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000041}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000042}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000318}, !- Inlet Port - {00000000-0000-0000-0017-000000000319}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000043}, !- Handle + {00000000-0000-0000-0045-000000000025}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000044}, !- Handle + {00000000-0000-0000-0045-000000000026}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000066}, !- Inlet Port - {00000000-0000-0000-0017-000000000067}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000045}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000068}, !- Inlet Port - {00000000-0000-0000-0017-000000000063}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000146}, !- Inlet Port - {00000000-0000-0000-0017-000000000147}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000148}, !- Inlet Port - {00000000-0000-0000-0017-000000000143}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000244}, !- Inlet Port - {00000000-0000-0000-0017-000000000245}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000246}, !- Inlet Port - {00000000-0000-0000-0017-000000000241}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000050}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000250}, !- Inlet Port - {00000000-0000-0000-0017-000000000251}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000051}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000252}, !- Inlet Port - {00000000-0000-0000-0017-000000000247}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000052}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000256}, !- Inlet Port - {00000000-0000-0000-0017-000000000257}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000053}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000258}, !- Inlet Port - {00000000-0000-0000-0017-000000000253}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000054}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000262}, !- Inlet Port - {00000000-0000-0000-0017-000000000263}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000055}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000264}, !- Inlet Port - {00000000-0000-0000-0017-000000000259}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000056}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000290}, !- Inlet Port - {00000000-0000-0000-0017-000000000291}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000057}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000292}, !- Inlet Port - {00000000-0000-0000-0017-000000000287}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000296}, !- Inlet Port - {00000000-0000-0000-0017-000000000297}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000298}, !- Inlet Port - {00000000-0000-0000-0017-000000000293}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000302}, !- Inlet Port - {00000000-0000-0000-0017-000000000303}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000304}, !- Inlet Port - {00000000-0000-0000-0017-000000000299}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000308}, !- Inlet Port - {00000000-0000-0000-0017-000000000309}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000310}, !- Inlet Port - {00000000-0000-0000-0017-000000000305}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000314}, !- Inlet Port - {00000000-0000-0000-0017-000000000315}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000316}, !- Inlet Port - {00000000-0000-0000-0017-000000000311}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000066}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000320}, !- Inlet Port - {00000000-0000-0000-0017-000000000321}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000067}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000322}, !- Inlet Port - {00000000-0000-0000-0017-000000000317}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000068}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000174}, !- Inlet Port - {00000000-0000-0000-0017-000000000175}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000069}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000176}, !- Inlet Port - {00000000-0000-0000-0017-000000000171}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000070}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000180}, !- Inlet Port - {00000000-0000-0000-0017-000000000181}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000071}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000182}, !- Inlet Port - {00000000-0000-0000-0017-000000000177}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000072}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000186}, !- Inlet Port - {00000000-0000-0000-0017-000000000187}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000073}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000188}, !- Inlet Port - {00000000-0000-0000-0017-000000000183}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000074}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000192}, !- Inlet Port - {00000000-0000-0000-0017-000000000193}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000075}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000194}, !- Inlet Port - {00000000-0000-0000-0017-000000000189}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000076}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000198}, !- Inlet Port - {00000000-0000-0000-0017-000000000199}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000077}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000200}, !- Inlet Port - {00000000-0000-0000-0017-000000000195}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000078}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000204}, !- Inlet Port - {00000000-0000-0000-0017-000000000205}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000079}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000206}, !- Inlet Port - {00000000-0000-0000-0017-000000000201}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000080}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000232}, !- Inlet Port - {00000000-0000-0000-0017-000000000233}; !- Outlet Port + {00000000-0000-0000-0017-000000000066}, !- Inlet Port + {00000000-0000-0000-0017-000000000067}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000081}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000234}, !- Inlet Port - {00000000-0000-0000-0017-000000000229}; !- Outlet Port + {00000000-0000-0000-0045-000000000027}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000068}, !- Inlet Port + {00000000-0000-0000-0017-000000000063}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000082}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000238}, !- Inlet Port - {00000000-0000-0000-0017-000000000239}; !- Outlet Port + {00000000-0000-0000-0045-000000000028}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000146}, !- Inlet Port + {00000000-0000-0000-0017-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000083}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000240}, !- Inlet Port - {00000000-0000-0000-0017-000000000235}; !- Outlet Port + {00000000-0000-0000-0045-000000000029}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000148}, !- Inlet Port + {00000000-0000-0000-0017-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000084}, !- Handle + {00000000-0000-0000-0045-000000000030}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000072}, !- Inlet Port {00000000-0000-0000-0017-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000085}, !- Handle + {00000000-0000-0000-0045-000000000031}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000075}, !- Inlet Port {00000000-0000-0000-0017-000000000076}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000086}, !- Handle + {00000000-0000-0000-0045-000000000032}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000069}, !- Inlet Port {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000087}, !- Handle + {00000000-0000-0000-0045-000000000033}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000071}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000088}, !- Handle + {00000000-0000-0000-0045-000000000034}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000074}, !- Inlet Port {00000000-0000-0000-0017-000000000128}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000089}, !- Handle + {00000000-0000-0000-0045-000000000035}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000136}, !- Inlet Port {00000000-0000-0000-0017-000000000137}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000090}, !- Handle + {00000000-0000-0000-0045-000000000036}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000129}, !- Inlet Port {00000000-0000-0000-0017-000000000130}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000091}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000155}, !- Inlet Port - {00000000-0000-0000-0017-000000000156}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000092}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000164}, !- Inlet Port - {00000000-0000-0000-0017-000000000165}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000093}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000157}, !- Inlet Port - {00000000-0000-0000-0017-000000000158}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000094}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000213}, !- Inlet Port - {00000000-0000-0000-0017-000000000214}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000095}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000222}, !- Inlet Port - {00000000-0000-0000-0017-000000000223}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000096}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000215}, !- Inlet Port - {00000000-0000-0000-0017-000000000216}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000097}, !- Handle - Coil Cooling Water 4 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000271}, !- Inlet Port - {00000000-0000-0000-0017-000000000272}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000098}, !- Handle - Coil Cooling Water 4 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000280}, !- Inlet Port - {00000000-0000-0000-0017-000000000281}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000099}, !- Handle - Coil Cooling Water 4 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000273}, !- Inlet Port - {00000000-0000-0000-0017-000000000274}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000100}, !- Handle + {00000000-0000-0000-0045-000000000037}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000056}, !- Inlet Port {00000000-0000-0000-0017-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000101}, !- Handle - Coil Heating Electric 11 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000220}, !- Inlet Port - {00000000-0000-0000-0017-000000000221}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000102}, !- Handle - Coil Heating Electric 18 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000278}, !- Inlet Port - {00000000-0000-0000-0017-000000000279}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000103}, !- Handle + {00000000-0000-0000-0045-000000000038}, !- Handle Coil Heating Electric 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000134}, !- Inlet Port {00000000-0000-0000-0017-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000104}, !- Handle - Coil Heating Electric 4 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000162}, !- Inlet Port - {00000000-0000-0000-0017-000000000163}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000105}, !- Handle - CoilCoolingDXSingleSpeed_dx 79kBtu/hr 9.7EER Outlet Air Node, !- Name + {00000000-0000-0000-0045-000000000039}, !- Handle + CoilCoolingDXSingleSpeed_dx 170kBtu/hr 9.7EER Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000058}, !- Inlet Port {00000000-0000-0000-0017-000000000059}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000106}, !- Handle + {00000000-0000-0000-0045-000000000040}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000097}, !- Inlet Port {00000000-0000-0000-0017-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000107}, !- Handle + {00000000-0000-0000-0045-000000000041}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000100}, !- Inlet Port {00000000-0000-0000-0017-000000000101}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000108}, !- Handle + {00000000-0000-0000-0045-000000000042}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000094}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000109}, !- Handle + {00000000-0000-0000-0045-000000000043}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000114}, !- Inlet Port {00000000-0000-0000-0017-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000110}, !- Handle + {00000000-0000-0000-0045-000000000044}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000095}, !- Inlet Port {00000000-0000-0000-0017-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000111}, !- Handle + {00000000-0000-0000-0045-000000000045}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000106}, !- Inlet Port {00000000-0000-0000-0017-000000000107}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000112}, !- Handle + {00000000-0000-0000-0045-000000000046}, !- Handle Core_bottom WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000349}, !- Inlet Port - {00000000-0000-0000-0017-000000000350}; !- Outlet Port + {00000000-0000-0000-0017-000000000175}, !- Inlet Port + {00000000-0000-0000-0017-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000113}, !- Handle + {00000000-0000-0000-0045-000000000047}, !- Handle Core_bottom WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000351}, !- Inlet Port - {00000000-0000-0000-0017-000000000352}; !- Outlet Port + {00000000-0000-0000-0017-000000000177}, !- Inlet Port + {00000000-0000-0000-0017-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000114}, !- Handle + {00000000-0000-0000-0045-000000000048}, !- Handle Core_mid WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000353}, !- Inlet Port - {00000000-0000-0000-0017-000000000354}; !- Outlet Port + {00000000-0000-0000-0017-000000000179}, !- Inlet Port + {00000000-0000-0000-0017-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000115}, !- Handle + {00000000-0000-0000-0045-000000000049}, !- Handle Core_mid WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000355}, !- Inlet Port - {00000000-0000-0000-0017-000000000356}; !- Outlet Port + {00000000-0000-0000-0017-000000000181}, !- Inlet Port + {00000000-0000-0000-0017-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000116}, !- Handle + {00000000-0000-0000-0045-000000000050}, !- Handle Core_top WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000357}, !- Inlet Port - {00000000-0000-0000-0017-000000000358}; !- Outlet Port + {00000000-0000-0000-0017-000000000183}, !- Inlet Port + {00000000-0000-0000-0017-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000117}, !- Handle + {00000000-0000-0000-0045-000000000051}, !- Handle Core_top WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000359}, !- Inlet Port - {00000000-0000-0000-0017-000000000360}; !- Outlet Port + {00000000-0000-0000-0017-000000000185}, !- Inlet Port + {00000000-0000-0000-0017-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000118}, !- Handle + {00000000-0000-0000-0045-000000000052}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000361}, !- Inlet Port - {00000000-0000-0000-0017-000000000362}; !- Outlet Port + {00000000-0000-0000-0017-000000000187}, !- Inlet Port + {00000000-0000-0000-0017-000000000188}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000119}, !- Handle + {00000000-0000-0000-0045-000000000053}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000363}, !- Inlet Port - {00000000-0000-0000-0017-000000000364}; !- Outlet Port + {00000000-0000-0000-0017-000000000189}, !- Inlet Port + {00000000-0000-0000-0017-000000000190}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000120}, !- Handle + {00000000-0000-0000-0045-000000000054}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000365}, !- Inlet Port - {00000000-0000-0000-0017-000000000366}; !- Outlet Port + {00000000-0000-0000-0017-000000000191}, !- Inlet Port + {00000000-0000-0000-0017-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000121}, !- Handle + {00000000-0000-0000-0045-000000000055}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000367}, !- Inlet Port - {00000000-0000-0000-0017-000000000368}; !- Outlet Port + {00000000-0000-0000-0017-000000000193}, !- Inlet Port + {00000000-0000-0000-0017-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000122}, !- Handle + {00000000-0000-0000-0045-000000000056}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000369}, !- Inlet Port - {00000000-0000-0000-0017-000000000370}; !- Outlet Port + {00000000-0000-0000-0017-000000000195}, !- Inlet Port + {00000000-0000-0000-0017-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000123}, !- Handle + {00000000-0000-0000-0045-000000000057}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000371}, !- Inlet Port - {00000000-0000-0000-0017-000000000372}; !- Outlet Port + {00000000-0000-0000-0017-000000000197}, !- Inlet Port + {00000000-0000-0000-0017-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000124}, !- Handle + {00000000-0000-0000-0045-000000000058}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000373}, !- Inlet Port - {00000000-0000-0000-0017-000000000374}; !- Outlet Port + {00000000-0000-0000-0017-000000000199}, !- Inlet Port + {00000000-0000-0000-0017-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000125}, !- Handle + {00000000-0000-0000-0045-000000000059}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000375}, !- Inlet Port - {00000000-0000-0000-0017-000000000376}; !- Outlet Port + {00000000-0000-0000-0017-000000000201}, !- Inlet Port + {00000000-0000-0000-0017-000000000202}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000126}, !- Handle + {00000000-0000-0000-0045-000000000060}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000331}, !- Inlet Port - {00000000-0000-0000-0017-000000000332}; !- Outlet Port + {00000000-0000-0000-0017-000000000157}, !- Inlet Port + {00000000-0000-0000-0017-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000127}, !- Handle + {00000000-0000-0000-0045-000000000061}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000326}, !- Inlet Port - {00000000-0000-0000-0017-000000000327}; !- Outlet Port + {00000000-0000-0000-0017-000000000152}, !- Inlet Port + {00000000-0000-0000-0017-000000000153}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000128}, !- Handle + {00000000-0000-0000-0045-000000000062}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000348}, !- Inlet Port - {00000000-0000-0000-0017-000000000329}; !- Outlet Port + {00000000-0000-0000-0017-000000000174}, !- Inlet Port + {00000000-0000-0000-0017-000000000155}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000129}, !- Handle + {00000000-0000-0000-0045-000000000063}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000323}, !- Inlet Port - {00000000-0000-0000-0017-000000000330}; !- Outlet Port + {00000000-0000-0000-0017-000000000149}, !- Inlet Port + {00000000-0000-0000-0017-000000000156}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000130}, !- Handle + {00000000-0000-0000-0045-000000000064}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000345}, !- Inlet Port - {00000000-0000-0000-0017-000000000325}; !- Outlet Port + {00000000-0000-0000-0017-000000000171}, !- Inlet Port + {00000000-0000-0000-0017-000000000151}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000131}, !- Handle + {00000000-0000-0000-0045-000000000065}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000377}, !- Inlet Port - {00000000-0000-0000-0017-000000000378}; !- Outlet Port + {00000000-0000-0000-0017-000000000203}, !- Inlet Port + {00000000-0000-0000-0017-000000000204}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000132}, !- Handle + {00000000-0000-0000-0045-000000000066}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000379}, !- Inlet Port - {00000000-0000-0000-0017-000000000380}; !- Outlet Port + {00000000-0000-0000-0017-000000000205}, !- Inlet Port + {00000000-0000-0000-0017-000000000206}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000133}, !- Handle + {00000000-0000-0000-0045-000000000067}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000381}, !- Inlet Port - {00000000-0000-0000-0017-000000000382}; !- Outlet Port + {00000000-0000-0000-0017-000000000207}, !- Inlet Port + {00000000-0000-0000-0017-000000000208}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000134}, !- Handle + {00000000-0000-0000-0045-000000000068}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000383}, !- Inlet Port - {00000000-0000-0000-0017-000000000384}; !- Outlet Port + {00000000-0000-0000-0017-000000000209}, !- Inlet Port + {00000000-0000-0000-0017-000000000210}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000135}, !- Handle + {00000000-0000-0000-0045-000000000069}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000385}, !- Inlet Port - {00000000-0000-0000-0017-000000000386}; !- Outlet Port + {00000000-0000-0000-0017-000000000211}, !- Inlet Port + {00000000-0000-0000-0017-000000000212}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000136}, !- Handle + {00000000-0000-0000-0045-000000000070}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000387}, !- Inlet Port - {00000000-0000-0000-0017-000000000388}; !- Outlet Port + {00000000-0000-0000-0017-000000000213}, !- Inlet Port + {00000000-0000-0000-0017-000000000214}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000137}, !- Handle + {00000000-0000-0000-0045-000000000071}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000389}, !- Inlet Port - {00000000-0000-0000-0017-000000000390}; !- Outlet Port + {00000000-0000-0000-0017-000000000215}, !- Inlet Port + {00000000-0000-0000-0017-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000138}, !- Handle + {00000000-0000-0000-0045-000000000072}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000391}, !- Inlet Port - {00000000-0000-0000-0017-000000000392}; !- Outlet Port + {00000000-0000-0000-0017-000000000217}, !- Inlet Port + {00000000-0000-0000-0017-000000000218}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000139}, !- Handle + {00000000-0000-0000-0045-000000000073}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000393}, !- Inlet Port - {00000000-0000-0000-0017-000000000394}; !- Outlet Port + {00000000-0000-0000-0017-000000000219}, !- Inlet Port + {00000000-0000-0000-0017-000000000220}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000140}, !- Handle + {00000000-0000-0000-0045-000000000074}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000395}, !- Inlet Port - {00000000-0000-0000-0017-000000000396}; !- Outlet Port + {00000000-0000-0000-0017-000000000221}, !- Inlet Port + {00000000-0000-0000-0017-000000000222}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000141}, !- Handle + {00000000-0000-0000-0045-000000000075}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000397}, !- Inlet Port - {00000000-0000-0000-0017-000000000398}; !- Outlet Port + {00000000-0000-0000-0017-000000000223}, !- Inlet Port + {00000000-0000-0000-0017-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000142}, !- Handle + {00000000-0000-0000-0045-000000000076}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000399}, !- Inlet Port - {00000000-0000-0000-0017-000000000400}; !- Outlet Port + {00000000-0000-0000-0017-000000000225}, !- Inlet Port + {00000000-0000-0000-0017-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000143}, !- Handle + {00000000-0000-0000-0045-000000000077}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000401}, !- Inlet Port - {00000000-0000-0000-0017-000000000402}; !- Outlet Port + {00000000-0000-0000-0017-000000000227}, !- Inlet Port + {00000000-0000-0000-0017-000000000228}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000144}, !- Handle + {00000000-0000-0000-0045-000000000078}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000403}, !- Inlet Port - {00000000-0000-0000-0017-000000000404}; !- Outlet Port + {00000000-0000-0000-0017-000000000229}, !- Inlet Port + {00000000-0000-0000-0017-000000000230}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000145}, !- Handle + {00000000-0000-0000-0045-000000000079}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000405}, !- Inlet Port - {00000000-0000-0000-0017-000000000406}; !- Outlet Port + {00000000-0000-0000-0017-000000000231}, !- Inlet Port + {00000000-0000-0000-0017-000000000232}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000146}, !- Handle + {00000000-0000-0000-0045-000000000080}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000407}, !- Inlet Port - {00000000-0000-0000-0017-000000000408}; !- Outlet Port + {00000000-0000-0000-0017-000000000233}, !- Inlet Port + {00000000-0000-0000-0017-000000000234}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000147}, !- Handle + {00000000-0000-0000-0045-000000000081}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000409}, !- Inlet Port - {00000000-0000-0000-0017-000000000410}; !- Outlet Port + {00000000-0000-0000-0017-000000000235}, !- Inlet Port + {00000000-0000-0000-0017-000000000236}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000148}, !- Handle + {00000000-0000-0000-0045-000000000082}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000411}, !- Inlet Port - {00000000-0000-0000-0017-000000000412}; !- Outlet Port + {00000000-0000-0000-0017-000000000237}, !- Inlet Port + {00000000-0000-0000-0017-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000149}, !- Handle + {00000000-0000-0000-0045-000000000083}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000413}, !- Inlet Port - {00000000-0000-0000-0017-000000000414}; !- Outlet Port + {00000000-0000-0000-0017-000000000239}, !- Inlet Port + {00000000-0000-0000-0017-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000150}, !- Handle + {00000000-0000-0000-0045-000000000084}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000415}, !- Inlet Port - {00000000-0000-0000-0017-000000000416}; !- Outlet Port + {00000000-0000-0000-0017-000000000241}, !- Inlet Port + {00000000-0000-0000-0017-000000000242}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000151}, !- Handle + {00000000-0000-0000-0045-000000000085}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000417}, !- Inlet Port - {00000000-0000-0000-0017-000000000418}; !- Outlet Port + {00000000-0000-0000-0017-000000000243}, !- Inlet Port + {00000000-0000-0000-0017-000000000244}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000152}, !- Handle + {00000000-0000-0000-0045-000000000086}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000419}, !- Inlet Port - {00000000-0000-0000-0017-000000000420}; !- Outlet Port + {00000000-0000-0000-0017-000000000245}, !- Inlet Port + {00000000-0000-0000-0017-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000153}, !- Handle + {00000000-0000-0000-0045-000000000087}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000421}, !- Inlet Port - {00000000-0000-0000-0017-000000000422}; !- Outlet Port + {00000000-0000-0000-0017-000000000247}, !- Inlet Port + {00000000-0000-0000-0017-000000000248}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000154}, !- Handle + {00000000-0000-0000-0045-000000000088}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000423}, !- Inlet Port - {00000000-0000-0000-0017-000000000424}; !- Outlet Port + {00000000-0000-0000-0017-000000000249}, !- Inlet Port + {00000000-0000-0000-0017-000000000250}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000155}, !- Handle + {00000000-0000-0000-0045-000000000089}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000156}, !- Handle + {00000000-0000-0000-0045-000000000090}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000089}, !- Inlet Port {00000000-0000-0000-0017-000000000090}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000157}, !- Handle + {00000000-0000-0000-0045-000000000091}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000158}, !- Handle + {00000000-0000-0000-0045-000000000092}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000108}, !- Inlet Port {00000000-0000-0000-0017-000000000109}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000159}, !- Handle + {00000000-0000-0000-0045-000000000093}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000110}, !- Inlet Port {00000000-0000-0000-0017-000000000111}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000160}, !- Handle + {00000000-0000-0000-0045-000000000094}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000112}, !- Inlet Port {00000000-0000-0000-0017-000000000113}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000161}, !- Handle + {00000000-0000-0000-0045-000000000095}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000336}, !- Inlet Port - {00000000-0000-0000-0017-000000000337}; !- Outlet Port + {00000000-0000-0000-0017-000000000162}, !- Inlet Port + {00000000-0000-0000-0017-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000162}, !- Handle + {00000000-0000-0000-0045-000000000096}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000338}, !- Inlet Port - {00000000-0000-0000-0017-000000000339}; !- Outlet Port + {00000000-0000-0000-0017-000000000164}, !- Inlet Port + {00000000-0000-0000-0017-000000000165}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000163}, !- Handle + {00000000-0000-0000-0045-000000000097}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000328}, !- Inlet Port - {00000000-0000-0000-0017-000000000340}; !- Outlet Port + {00000000-0000-0000-0017-000000000154}, !- Inlet Port + {00000000-0000-0000-0017-000000000166}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000164}, !- Handle + {00000000-0000-0000-0045-000000000098}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000341}, !- Inlet Port - {00000000-0000-0000-0017-000000000342}; !- Outlet Port + {00000000-0000-0000-0017-000000000167}, !- Inlet Port + {00000000-0000-0000-0017-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000165}, !- Handle + {00000000-0000-0000-0045-000000000099}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000343}, !- Inlet Port - {00000000-0000-0000-0017-000000000344}; !- Outlet Port + {00000000-0000-0000-0017-000000000169}, !- Inlet Port + {00000000-0000-0000-0017-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000166}, !- Handle + {00000000-0000-0000-0045-000000000100}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000346}, !- Inlet Port - {00000000-0000-0000-0017-000000000347}; !- Outlet Port + {00000000-0000-0000-0017-000000000172}, !- Inlet Port + {00000000-0000-0000-0017-000000000173}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000167}, !- Handle - Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0045-000000000101}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000099}, !- Inlet Port {00000000-0000-0000-0017-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000168}, !- Handle - Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0045-000000000102}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000116}, !- Inlet Port {00000000-0000-0000-0017-000000000117}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000169}, !- Handle - Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0045-000000000103}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000070}, !- Inlet Port {00000000-0000-0000-0017-000000000080}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000170}, !- Handle - Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0045-000000000104}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000081}, !- Inlet Port {00000000-0000-0000-0017-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000171}, !- Handle + {00000000-0000-0000-0045-000000000105}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000078}, !- Inlet Port {00000000-0000-0000-0017-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000172}, !- Handle + {00000000-0000-0000-0045-000000000106}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000173}, !- Handle + {00000000-0000-0000-0045-000000000107}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000118}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000174}, !- Handle + {00000000-0000-0000-0045-000000000108}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000175}, !- Handle + {00000000-0000-0000-0045-000000000109}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000083}, !- Inlet Port {00000000-0000-0000-0017-000000000084}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000176}, !- Handle + {00000000-0000-0000-0045-000000000110}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000085}, !- Inlet Port {00000000-0000-0000-0017-000000000086}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000177}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000169}, !- Inlet Port - {00000000-0000-0000-0017-000000000170}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000178}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000227}, !- Inlet Port - {00000000-0000-0000-0017-000000000228}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000179}, !- Handle - Sys6 Return Fan 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000285}, !- Inlet Port - {00000000-0000-0000-0017-000000000286}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000180}, !- Handle + {00000000-0000-0000-0045-000000000111}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000141}, !- Inlet Port {00000000-0000-0000-0017-000000000142}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000181}, !- Handle + {00000000-0000-0000-0045-000000000112}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000064}, !- Inlet Port {00000000-0000-0000-0017-000000000065}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000182}, !- Handle + {00000000-0000-0000-0045-000000000113}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000183}, !- Handle + {00000000-0000-0000-0045-000000000114}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000184}, !- Handle + {00000000-0000-0000-0045-000000000115}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000185}, !- Handle + {00000000-0000-0000-0045-000000000116}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000061}, !- Inlet Port {00000000-0000-0000-0017-000000000062}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000186}, !- Handle + {00000000-0000-0000-0045-000000000117}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000053}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000187}, !- Handle + {00000000-0000-0000-0045-000000000118}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000054}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000188}, !- Handle + {00000000-0000-0000-0045-000000000119}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000189}, !- Handle + {00000000-0000-0000-0045-000000000120}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000190}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000151}, !- Inlet Port - {00000000-0000-0000-0017-000000000153}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000191}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000154}, !- Inlet Port - {00000000-0000-0000-0017-000000000152}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000192}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000166}, !- Inlet Port - {00000000-0000-0000-0017-000000000167}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000193}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000159}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000194}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000160}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000195}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000149}, !- Inlet Port - {00000000-0000-0000-0017-000000000168}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000196}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000161}, !- Inlet Port - {00000000-0000-0000-0017-000000000150}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000197}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000209}, !- Inlet Port - {00000000-0000-0000-0017-000000000211}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000198}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Port - {00000000-0000-0000-0017-000000000210}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000199}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Port - {00000000-0000-0000-0017-000000000225}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000200}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000217}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000201}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000218}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000202}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000207}, !- Inlet Port - {00000000-0000-0000-0017-000000000226}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000203}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Port - {00000000-0000-0000-0017-000000000208}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000204}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000267}, !- Inlet Port - {00000000-0000-0000-0017-000000000269}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000205}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000270}, !- Inlet Port - {00000000-0000-0000-0017-000000000268}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000206}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000282}, !- Inlet Port - {00000000-0000-0000-0017-000000000283}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000207}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000275}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000208}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000276}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000209}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000265}, !- Inlet Port - {00000000-0000-0000-0017-000000000284}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000210}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000277}, !- Inlet Port - {00000000-0000-0000-0017-000000000266}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000211}, !- Handle + {00000000-0000-0000-0045-000000000121}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000124}, !- Inlet Port {00000000-0000-0000-0017-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000212}, !- Handle + {00000000-0000-0000-0045-000000000122}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000127}, !- Inlet Port {00000000-0000-0000-0017-000000000125}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000213}, !- Handle + {00000000-0000-0000-0045-000000000123}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000138}, !- Inlet Port {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000214}, !- Handle + {00000000-0000-0000-0045-000000000124}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000215}, !- Handle + {00000000-0000-0000-0045-000000000125}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000216}, !- Handle + {00000000-0000-0000-0045-000000000126}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000122}, !- Inlet Port {00000000-0000-0000-0017-000000000140}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000217}, !- Handle + {00000000-0000-0000-0045-000000000127}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000133}, !- Inlet Port {00000000-0000-0000-0017-000000000123}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0050-000000000001}, !- Handle + {00000000-0000-0000-0046-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0051-000000000001}, !- Handle + {00000000-0000-0000-0047-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A People, !- Name - {00000000-0000-0000-0052-000000000001}, !- People Definition Name - {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0048-000000000001}, !- People Definition Name + {00000000-0000-0000-0076-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0062-000000000025}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0058-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0058-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0058-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0051-000000000002}, !- Handle + {00000000-0000-0000-0047-000000000002}, !- Handle Space Function Office - open plan People, !- Name - {00000000-0000-0000-0052-000000000002}, !- People Definition Name - {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0048-000000000002}, !- People Definition Name + {00000000-0000-0000-0076-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0062-000000000025}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0058-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0058-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0058-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0052-000000000001}, !- Handle + {00000000-0000-0000-0048-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -7645,7 +4465,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0052-000000000002}, !- Handle + {00000000-0000-0000-0048-000000000002}, !- Handle Space Function Office - open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -7654,55 +4474,55 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000001}, !- Handle + {00000000-0000-0000-0049-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Node Name {00000000-0000-0000-0017-000000000089}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000002}, !- Handle + {00000000-0000-0000-0049-000000000002}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Node Name {00000000-0000-0000-0017-000000000093}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000003}, !- Handle + {00000000-0000-0000-0049-000000000003}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0017-000000000109}, !- Inlet Node Name {00000000-0000-0000-0017-000000000110}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000004}, !- Handle + {00000000-0000-0000-0049-000000000004}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0017-000000000113}, !- Inlet Node Name {00000000-0000-0000-0017-000000000114}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000005}, !- Handle + {00000000-0000-0000-0049-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0017-000000000337}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000338}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000163}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000164}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000006}, !- Handle + {00000000-0000-0000-0049-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0017-000000000340}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000341}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000166}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000167}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000007}, !- Handle + {00000000-0000-0000-0049-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000344}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000345}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000170}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000171}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000008}, !- Handle + {00000000-0000-0000-0049-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000347}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000348}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000173}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000174}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -7710,7 +4530,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000087}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0045-000000000033}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -7724,7 +4544,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -7738,7 +4558,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000002}, !- Handle + {00000000-0000-0000-0050-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -7746,7 +4566,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000109}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0045-000000000043}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -7760,7 +4580,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -7774,7 +4594,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000003}, !- Handle + {00000000-0000-0000-0050-000000000003}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -7782,21 +4602,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000130}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0045-000000000064}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000323}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000325}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000149}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000151}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000326}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000329}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000152}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000155}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -7810,326 +4630,290 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000005}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0055-000000000001}, !- Handle - {00000000-0000-0000-0088-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000201}; !- Port 1 + {00000000-0000-0000-0051-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000002}, !- Handle - {00000000-0000-0000-0088-000000000010}; !- HVAC Component + {00000000-0000-0000-0051-000000000002}, !- Handle + {00000000-0000-0000-0084-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000003}, !- Handle - {00000000-0000-0000-0088-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000202}; !- Port 1 + {00000000-0000-0000-0051-000000000003}, !- Handle + {00000000-0000-0000-0084-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000004}, !- Handle - {00000000-0000-0000-0088-000000000001}; !- HVAC Component + {00000000-0000-0000-0051-000000000004}, !- Handle + {00000000-0000-0000-0084-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000005}, !- Handle - {00000000-0000-0000-0088-000000000001}; !- HVAC Component + {00000000-0000-0000-0051-000000000005}, !- Handle + {00000000-0000-0000-0084-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000006}, !- Handle - {00000000-0000-0000-0088-000000000001}; !- HVAC Component + {00000000-0000-0000-0051-000000000006}, !- Handle + {00000000-0000-0000-0084-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000007}, !- Handle - {00000000-0000-0000-0088-000000000022}, !- HVAC Component - {00000000-0000-0000-0017-000000000317}; !- Port 1 + {00000000-0000-0000-0051-000000000007}, !- Handle + {00000000-0000-0000-0084-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000008}, !- Handle - {00000000-0000-0000-0088-000000000022}; !- HVAC Component + {00000000-0000-0000-0051-000000000008}, !- Handle + {00000000-0000-0000-0084-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000009}, !- Handle - {00000000-0000-0000-0088-000000000022}, !- HVAC Component - {00000000-0000-0000-0017-000000000318}; !- Port 1 + {00000000-0000-0000-0051-000000000009}, !- Handle + {00000000-0000-0000-0084-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000010}, !- Handle - {00000000-0000-0000-0088-000000000003}; !- HVAC Component + {00000000-0000-0000-0051-000000000010}, !- Handle + {00000000-0000-0000-0084-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000011}, !- Handle - {00000000-0000-0000-0088-000000000003}; !- HVAC Component + {00000000-0000-0000-0051-000000000011}, !- Handle + {00000000-0000-0000-0084-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000012}, !- Handle - {00000000-0000-0000-0088-000000000003}; !- HVAC Component + {00000000-0000-0000-0051-000000000012}, !- Handle + {00000000-0000-0000-0084-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000013}, !- Handle - {00000000-0000-0000-0088-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000259}; !- Port 1 + {00000000-0000-0000-0051-000000000013}, !- Handle + {00000000-0000-0000-0084-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000014}, !- Handle - {00000000-0000-0000-0088-000000000016}; !- HVAC Component + {00000000-0000-0000-0051-000000000014}, !- Handle + {00000000-0000-0000-0084-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000015}, !- Handle - {00000000-0000-0000-0088-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000260}; !- Port 1 + {00000000-0000-0000-0051-000000000015}, !- Handle + {00000000-0000-0000-0084-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000016}, !- Handle - {00000000-0000-0000-0088-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000299}; !- Port 1 + {00000000-0000-0000-0051-000000000016}, !- Handle + {00000000-0000-0000-0084-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000017}, !- Handle - {00000000-0000-0000-0088-000000000017}; !- HVAC Component + {00000000-0000-0000-0051-000000000017}, !- Handle + {00000000-0000-0000-0084-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000018}, !- Handle - {00000000-0000-0000-0088-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000300}; !- Port 1 + {00000000-0000-0000-0051-000000000018}, !- Handle + {00000000-0000-0000-0084-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000019}, !- Handle - {00000000-0000-0000-0088-000000000005}, !- HVAC Component - {00000000-0000-0000-0017-000000000177}; !- Port 1 + {00000000-0000-0000-0051-000000000019}, !- Handle + {00000000-0000-0000-0084-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000020}, !- Handle - {00000000-0000-0000-0088-000000000005}; !- HVAC Component + {00000000-0000-0000-0051-000000000020}, !- Handle + {00000000-0000-0000-0084-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000021}, !- Handle - {00000000-0000-0000-0088-000000000005}, !- HVAC Component - {00000000-0000-0000-0017-000000000178}; !- Port 1 + {00000000-0000-0000-0051-000000000021}, !- Handle + {00000000-0000-0000-0084-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000022}, !- Handle - {00000000-0000-0000-0088-000000000006}, !- HVAC Component - {00000000-0000-0000-0017-000000000189}; !- Port 1 + {00000000-0000-0000-0051-000000000022}, !- Handle + {00000000-0000-0000-0084-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000023}, !- Handle - {00000000-0000-0000-0088-000000000006}; !- HVAC Component + {00000000-0000-0000-0051-000000000023}, !- Handle + {00000000-0000-0000-0084-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000024}, !- Handle - {00000000-0000-0000-0088-000000000006}, !- HVAC Component - {00000000-0000-0000-0017-000000000190}; !- Port 1 + {00000000-0000-0000-0051-000000000024}, !- Handle + {00000000-0000-0000-0084-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000025}, !- Handle - {00000000-0000-0000-0088-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000305}; !- Port 1 + {00000000-0000-0000-0051-000000000025}, !- Handle + {00000000-0000-0000-0084-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000026}, !- Handle - {00000000-0000-0000-0088-000000000018}; !- HVAC Component + {00000000-0000-0000-0051-000000000026}, !- Handle + {00000000-0000-0000-0084-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000027}, !- Handle - {00000000-0000-0000-0088-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000306}; !- Port 1 + {00000000-0000-0000-0051-000000000027}, !- Handle + {00000000-0000-0000-0084-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000028}, !- Handle - {00000000-0000-0000-0088-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000247}; !- Port 1 + {00000000-0000-0000-0051-000000000028}, !- Handle + {00000000-0000-0000-0084-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000029}, !- Handle - {00000000-0000-0000-0088-000000000011}; !- HVAC Component + {00000000-0000-0000-0051-000000000029}, !- Handle + {00000000-0000-0000-0084-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000030}, !- Handle - {00000000-0000-0000-0088-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000248}; !- Port 1 + {00000000-0000-0000-0051-000000000030}, !- Handle + {00000000-0000-0000-0084-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000031}, !- Handle - {00000000-0000-0000-0088-000000000019}, !- HVAC Component - {00000000-0000-0000-0017-000000000293}; !- Port 1 + {00000000-0000-0000-0051-000000000031}, !- Handle + {00000000-0000-0000-0084-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000032}, !- Handle - {00000000-0000-0000-0088-000000000019}; !- HVAC Component + {00000000-0000-0000-0051-000000000032}, !- Handle + {00000000-0000-0000-0084-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000033}, !- Handle - {00000000-0000-0000-0088-000000000019}, !- HVAC Component - {00000000-0000-0000-0017-000000000294}; !- Port 1 + {00000000-0000-0000-0051-000000000033}, !- Handle + {00000000-0000-0000-0084-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000034}, !- Handle - {00000000-0000-0000-0088-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000241}; !- Port 1 + {00000000-0000-0000-0051-000000000034}, !- Handle + {00000000-0000-0000-0084-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000035}, !- Handle - {00000000-0000-0000-0088-000000000012}; !- HVAC Component + {00000000-0000-0000-0051-000000000035}, !- Handle + {00000000-0000-0000-0084-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000036}, !- Handle - {00000000-0000-0000-0088-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000242}; !- Port 1 + {00000000-0000-0000-0051-000000000036}, !- Handle + {00000000-0000-0000-0084-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000037}, !- Handle - {00000000-0000-0000-0088-000000000004}, !- HVAC Component + {00000000-0000-0000-0051-000000000037}, !- Handle + {00000000-0000-0000-0084-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000143}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000038}, !- Handle - {00000000-0000-0000-0088-000000000004}; !- HVAC Component + {00000000-0000-0000-0051-000000000038}, !- Handle + {00000000-0000-0000-0084-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000039}, !- Handle - {00000000-0000-0000-0088-000000000004}, !- HVAC Component + {00000000-0000-0000-0051-000000000039}, !- Handle + {00000000-0000-0000-0084-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000144}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000040}, !- Handle - {00000000-0000-0000-0088-000000000002}; !- HVAC Component + {00000000-0000-0000-0051-000000000040}, !- Handle + {00000000-0000-0000-0084-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000041}, !- Handle - {00000000-0000-0000-0088-000000000002}; !- HVAC Component + {00000000-0000-0000-0051-000000000041}, !- Handle + {00000000-0000-0000-0084-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000042}, !- Handle - {00000000-0000-0000-0088-000000000002}; !- HVAC Component + {00000000-0000-0000-0051-000000000042}, !- Handle + {00000000-0000-0000-0084-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000043}, !- Handle - {00000000-0000-0000-0088-000000000007}, !- HVAC Component - {00000000-0000-0000-0017-000000000171}; !- Port 1 + {00000000-0000-0000-0051-000000000043}, !- Handle + {00000000-0000-0000-0084-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000044}, !- Handle - {00000000-0000-0000-0088-000000000007}; !- HVAC Component + {00000000-0000-0000-0051-000000000044}, !- Handle + {00000000-0000-0000-0084-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000045}, !- Handle - {00000000-0000-0000-0088-000000000007}, !- HVAC Component - {00000000-0000-0000-0017-000000000172}; !- Port 1 + {00000000-0000-0000-0051-000000000045}, !- Handle + {00000000-0000-0000-0084-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000046}, !- Handle - {00000000-0000-0000-0088-000000000020}, !- HVAC Component - {00000000-0000-0000-0017-000000000311}; !- Port 1 + {00000000-0000-0000-0051-000000000046}, !- Handle + {00000000-0000-0000-0084-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000047}, !- Handle - {00000000-0000-0000-0088-000000000020}; !- HVAC Component + {00000000-0000-0000-0051-000000000047}, !- Handle + {00000000-0000-0000-0084-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000048}, !- Handle - {00000000-0000-0000-0088-000000000020}, !- HVAC Component - {00000000-0000-0000-0017-000000000312}; !- Port 1 + {00000000-0000-0000-0051-000000000048}, !- Handle + {00000000-0000-0000-0084-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000049}, !- Handle - {00000000-0000-0000-0088-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000235}; !- Port 1 + {00000000-0000-0000-0051-000000000049}, !- Handle + {00000000-0000-0000-0084-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000050}, !- Handle - {00000000-0000-0000-0088-000000000013}; !- HVAC Component + {00000000-0000-0000-0051-000000000050}, !- Handle + {00000000-0000-0000-0084-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000051}, !- Handle - {00000000-0000-0000-0088-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000236}; !- Port 1 + {00000000-0000-0000-0051-000000000051}, !- Handle + {00000000-0000-0000-0084-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000052}, !- Handle - {00000000-0000-0000-0088-000000000021}, !- HVAC Component - {00000000-0000-0000-0017-000000000287}; !- Port 1 + {00000000-0000-0000-0051-000000000052}, !- Handle + {00000000-0000-0000-0084-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000053}, !- Handle - {00000000-0000-0000-0088-000000000021}; !- HVAC Component + {00000000-0000-0000-0051-000000000053}, !- Handle + {00000000-0000-0000-0084-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000054}, !- Handle - {00000000-0000-0000-0088-000000000021}, !- HVAC Component - {00000000-0000-0000-0017-000000000288}; !- Port 1 + {00000000-0000-0000-0051-000000000054}, !- Handle + {00000000-0000-0000-0084-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000055}, !- Handle - {00000000-0000-0000-0088-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000229}; !- Port 1 + {00000000-0000-0000-0051-000000000055}, !- Handle + {00000000-0000-0000-0084-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000056}, !- Handle - {00000000-0000-0000-0088-000000000014}; !- HVAC Component + {00000000-0000-0000-0051-000000000056}, !- Handle + {00000000-0000-0000-0084-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000057}, !- Handle - {00000000-0000-0000-0088-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000230}; !- Port 1 + {00000000-0000-0000-0051-000000000057}, !- Handle + {00000000-0000-0000-0084-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000058}, !- Handle - {00000000-0000-0000-0088-000000000008}, !- HVAC Component - {00000000-0000-0000-0017-000000000195}; !- Port 1 + {00000000-0000-0000-0051-000000000058}, !- Handle + {00000000-0000-0000-0084-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000059}, !- Handle - {00000000-0000-0000-0088-000000000008}; !- HVAC Component + {00000000-0000-0000-0051-000000000059}, !- Handle + {00000000-0000-0000-0084-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000060}, !- Handle - {00000000-0000-0000-0088-000000000008}, !- HVAC Component - {00000000-0000-0000-0017-000000000196}; !- Port 1 + {00000000-0000-0000-0051-000000000060}, !- Handle + {00000000-0000-0000-0084-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000061}, !- Handle - {00000000-0000-0000-0088-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000253}; !- Port 1 + {00000000-0000-0000-0051-000000000061}, !- Handle + {00000000-0000-0000-0084-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000062}, !- Handle - {00000000-0000-0000-0088-000000000015}; !- HVAC Component + {00000000-0000-0000-0051-000000000062}, !- Handle + {00000000-0000-0000-0084-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000063}, !- Handle - {00000000-0000-0000-0088-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000254}; !- Port 1 + {00000000-0000-0000-0051-000000000063}, !- Handle + {00000000-0000-0000-0084-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000064}, !- Handle - {00000000-0000-0000-0088-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000183}; !- Port 1 + {00000000-0000-0000-0051-000000000064}, !- Handle + {00000000-0000-0000-0084-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000065}, !- Handle - {00000000-0000-0000-0088-000000000009}; !- HVAC Component + {00000000-0000-0000-0051-000000000065}, !- Handle + {00000000-0000-0000-0084-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000066}, !- Handle - {00000000-0000-0000-0088-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000184}; !- Port 1 + {00000000-0000-0000-0051-000000000066}, !- Handle + {00000000-0000-0000-0084-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000067}, !- Handle - {00000000-0000-0000-0088-000000000023}, !- HVAC Component + {00000000-0000-0000-0051-000000000067}, !- Handle + {00000000-0000-0000-0084-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000063}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000068}, !- Handle - {00000000-0000-0000-0088-000000000023}; !- HVAC Component + {00000000-0000-0000-0051-000000000068}, !- Handle + {00000000-0000-0000-0084-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000069}, !- Handle - {00000000-0000-0000-0088-000000000023}, !- HVAC Component + {00000000-0000-0000-0051-000000000069}, !- Handle + {00000000-0000-0000-0084-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000064}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0052-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000330}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000331}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000156}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000157}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 739784.190131565, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -8148,14 +4932,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0017-000000000077}, !- Inlet Node Name {00000000-0000-0000-0017-000000000078}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.936, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8181,14 +4965,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0057-000000000002}, !- Handle + {00000000-0000-0000-0053-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0017-000000000102}, !- Inlet Node Name {00000000-0000-0000-0017-000000000103}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.954, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8214,322 +4998,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000003}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000004}, !- Handle + {00000000-0000-0000-0054-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000005}, !- Handle + {00000000-0000-0000-0054-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000006}, !- Handle + {00000000-0000-0000-0054-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000007}, !- Handle + {00000000-0000-0000-0054-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000008}, !- Handle + {00000000-0000-0000-0054-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000009}, !- Handle + {00000000-0000-0000-0054-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000010}, !- Handle + {00000000-0000-0000-0054-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000011}, !- Handle + {00000000-0000-0000-0054-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000012}, !- Handle + {00000000-0000-0000-0054-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000013}, !- Handle + {00000000-0000-0000-0054-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000014}, !- Handle + {00000000-0000-0000-0054-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000015}, !- Handle + {00000000-0000-0000-0054-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000016}, !- Handle + {00000000-0000-0000-0054-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000017}, !- Handle + {00000000-0000-0000-0054-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000018}, !- Handle + {00000000-0000-0000-0054-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000019}, !- Handle + {00000000-0000-0000-0054-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000020}, !- Handle + {00000000-0000-0000-0054-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000021}, !- Handle + {00000000-0000-0000-0054-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000022}, !- Handle + {00000000-0000-0000-0054-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000023}, !- Handle + {00000000-0000-0000-0054-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000024}, !- Handle + {00000000-0000-0000-0054-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000025}, !- Handle + {00000000-0000-0000-0054-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000026}, !- Handle + {00000000-0000-0000-0054-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000027}, !- Handle + {00000000-0000-0000-0054-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000028}, !- Handle + {00000000-0000-0000-0054-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000029}, !- Handle + {00000000-0000-0000-0054-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000030}, !- Handle + {00000000-0000-0000-0054-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000031}, !- Handle + {00000000-0000-0000-0054-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000032}, !- Handle + {00000000-0000-0000-0054-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000033}, !- Handle + {00000000-0000-0000-0054-000000000033}, !- Handle Space Function Electrical/Mechanical-sch-A 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000034}, !- Handle + {00000000-0000-0000-0054-000000000034}, !- Handle Space Function Electrical/Mechanical-sch-A 2, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000035}, !- Handle + {00000000-0000-0000-0054-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000036}, !- Handle + {00000000-0000-0000-0054-000000000036}, !- Handle Space Function Office - open plan 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000037}, !- Handle + {00000000-0000-0000-0054-000000000037}, !- Handle Space Function Office - open plan 2, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000038}, !- Handle + {00000000-0000-0000-0054-000000000038}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000039}, !- Handle + {00000000-0000-0000-0054-000000000039}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0063-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000002}, !- Handle + {00000000-0000-0000-0056-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000003}, !- Handle + {00000000-0000-0000-0056-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000004}, !- Handle + {00000000-0000-0000-0056-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000005}, !- Handle + {00000000-0000-0000-0056-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8538,36 +5322,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000006}, !- Handle + {00000000-0000-0000-0056-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000007}, !- Handle + {00000000-0000-0000-0056-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000008}, !- Handle + {00000000-0000-0000-0056-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000009}, !- Handle + {00000000-0000-0000-0056-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8592,9 +5376,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000010}, !- Handle + {00000000-0000-0000-0056-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8619,27 +5403,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000011}, !- Handle + {00000000-0000-0000-0056-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000012}, !- Handle + {00000000-0000-0000-0056-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000013}, !- Handle + {00000000-0000-0000-0056-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8670,9 +5454,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000014}, !- Handle + {00000000-0000-0000-0056-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8703,27 +5487,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000015}, !- Handle + {00000000-0000-0000-0056-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000016}, !- Handle + {00000000-0000-0000-0056-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000017}, !- Handle + {00000000-0000-0000-0056-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8757,9 +5541,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000018}, !- Handle + {00000000-0000-0000-0056-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8793,27 +5577,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000019}, !- Handle + {00000000-0000-0000-0056-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000020}, !- Handle + {00000000-0000-0000-0056-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000021}, !- Handle + {00000000-0000-0000-0056-000000000021}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8844,9 +5628,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000022}, !- Handle + {00000000-0000-0000-0056-000000000022}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8877,27 +5661,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000023}, !- Handle + {00000000-0000-0000-0056-000000000023}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000024}, !- Handle + {00000000-0000-0000-0056-000000000024}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000025}, !- Handle + {00000000-0000-0000-0056-000000000025}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -8910,9 +5694,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000026}, !- Handle + {00000000-0000-0000-0056-000000000026}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -8925,27 +5709,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000027}, !- Handle + {00000000-0000-0000-0056-000000000027}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000028}, !- Handle + {00000000-0000-0000-0056-000000000028}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000029}, !- Handle + {00000000-0000-0000-0056-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -8961,9 +5745,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000030}, !- Handle + {00000000-0000-0000-0056-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -8979,124 +5763,70 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000031}, !- Handle - NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 18; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000032}, !- Handle - NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 18; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000033}, !- Handle - NECB-Activity Default, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 130; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000034}, !- Handle - NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 130; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000035}, !- Handle - NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 130; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000036}, !- Handle - Schedule Day 1, !- Name - , !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000037}, !- Handle - Schedule Day 10, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep + {00000000-0000-0000-0056-000000000031}, !- Handle + NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000038}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep + {00000000-0000-0000-0056-000000000032}, !- Handle + NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000039}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep + {00000000-0000-0000-0056-000000000033}, !- Handle + NECB-Activity Default, !- Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000040}, !- Handle - Schedule Day 13, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep + {00000000-0000-0000-0056-000000000034}, !- Handle + NECB-Activity Summer Design Day, !- Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000041}, !- Handle - Schedule Day 14, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep + {00000000-0000-0000-0056-000000000035}, !- Handle + NECB-Activity Winter Design Day, !- Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000042}, !- Handle - Schedule Day 15, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000036}, !- Handle + Schedule Day 1, !- Name + , !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000043}, !- Handle - Schedule Day 16, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000037}, !- Handle + Schedule Day 10, !- Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000044}, !- Handle + {00000000-0000-0000-0056-000000000038}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9105,9 +5835,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000045}, !- Handle + {00000000-0000-0000-0056-000000000039}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9183,9 +5913,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000046}, !- Handle + {00000000-0000-0000-0056-000000000040}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9261,117 +5991,90 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000047}, !- Handle + {00000000-0000-0000-0056-000000000041}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000048}, !- Handle + {00000000-0000-0000-0056-000000000042}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000049}, !- Handle + {00000000-0000-0000-0056-000000000043}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000050}, !- Handle + {00000000-0000-0000-0056-000000000044}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000051}, !- Handle + {00000000-0000-0000-0056-000000000045}, !- Handle Schedule Day 9, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000052}, !- Handle + {00000000-0000-0000-0056-000000000046}, !- Handle Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000053}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000054}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000055}, !- Handle - Supply Air Temp Default 3, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000056}, !- Handle + {00000000-0000-0000-0056-000000000047}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000057}, !- Handle + {00000000-0000-0000-0056-000000000048}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000058}, !- Handle + {00000000-0000-0000-0056-000000000049}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000059}, !- Handle + {00000000-0000-0000-0056-000000000050}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9447,9 +6150,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000060}, !- Handle + {00000000-0000-0000-0056-000000000051}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9525,9 +6228,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000061}, !- Handle + {00000000-0000-0000-0056-000000000052}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9603,9 +6306,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000062}, !- Handle + {00000000-0000-0000-0056-000000000053}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9681,9 +6384,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000063}, !- Handle + {00000000-0000-0000-0056-000000000054}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9759,9 +6462,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000064}, !- Handle + {00000000-0000-0000-0056-000000000055}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9837,9 +6540,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000065}, !- Handle + {00000000-0000-0000-0056-000000000056}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9915,9 +6618,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000066}, !- Handle + {00000000-0000-0000-0056-000000000057}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9993,9 +6696,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000067}, !- Handle + {00000000-0000-0000-0056-000000000058}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -10008,126 +6711,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000068}, !- Handle + {00000000-0000-0000-0056-000000000059}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000069}, !- Handle + {00000000-0000-0000-0056-000000000060}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000070}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000071}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000072}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000073}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000074}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000075}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000076}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000077}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0060-000000000078}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000079}, !- Handle + {00000000-0000-0000-0056-000000000061}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -10140,27 +6744,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000080}, !- Handle + {00000000-0000-0000-0056-000000000062}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000081}, !- Handle + {00000000-0000-0000-0056-000000000063}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000082}, !- Handle + {00000000-0000-0000-0056-000000000064}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10236,9 +6840,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000083}, !- Handle + {00000000-0000-0000-0056-000000000065}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10314,9 +6918,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000084}, !- Handle + {00000000-0000-0000-0056-000000000066}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10392,9 +6996,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000085}, !- Handle + {00000000-0000-0000-0056-000000000067}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10470,11 +7074,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0062-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10489,11 +7093,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10508,11 +7112,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000003}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -10527,11 +7131,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000004}, !- Handle + {00000000-0000-0000-0057-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10546,11 +7150,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000005}, !- Handle + {00000000-0000-0000-0057-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10565,169 +7169,17 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000006}, !- Handle + {00000000-0000-0000-0057-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name - 2, !- Rule Order - {00000000-0000-0000-0060-000000000026}, !- Day Schedule Name - , !- Apply Sunday - Yes, !- Apply Monday - Yes, !- Apply Tuesday - Yes, !- Apply Wednesday - Yes, !- Apply Thursday - Yes, !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000007}, !- Handle - Schedule Rule 15, !- Name - {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0060-000000000027}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000008}, !- Handle - Schedule Rule 16, !- Name - {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0060-000000000028}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000009}, !- Handle - Schedule Rule 17, !- Name - {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name - 2, !- Rule Order - {00000000-0000-0000-0060-000000000022}, !- Day Schedule Name - , !- Apply Sunday - Yes, !- Apply Monday - Yes, !- Apply Tuesday - Yes, !- Apply Wednesday - Yes, !- Apply Thursday - Yes, !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000010}, !- Handle - Schedule Rule 18, !- Name - {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0060-000000000023}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000011}, !- Handle - Schedule Rule 19, !- Name - {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0060-000000000024}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000012}, !- Handle - Schedule Rule 2, !- Name - {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000018}, !- Day Schedule Name - , !- Apply Sunday - Yes, !- Apply Monday - Yes, !- Apply Tuesday - Yes, !- Apply Wednesday - Yes, !- Apply Thursday - Yes, !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000013}, !- Handle - Schedule Rule 20, !- Name - {00000000-0000-0000-0062-000000000026}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0060-000000000049}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000014}, !- Handle - Schedule Rule 21, !- Name - {00000000-0000-0000-0062-000000000026}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0060-000000000050}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday + {00000000-0000-0000-0056-000000000026}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday , !- Apply Saturday DateRange, !- Date Specification Type 1, !- Start Month @@ -10736,11 +7188,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000015}, !- Handle - Schedule Rule 22, !- Name - {00000000-0000-0000-0062-000000000030}, !- Schedule Ruleset Name + {00000000-0000-0000-0057-000000000007}, !- Handle + Schedule Rule 15, !- Name + {00000000-0000-0000-0058-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000051}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10750,16 +7202,16 @@ OS:Schedule:Rule, Yes, !- Apply Saturday DateRange, !- Date Specification Type 1, !- Start Month - 7, !- Start Day + 1, !- Start Day 12, !- End Month - 30; !- End Day + 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000016}, !- Handle - Schedule Rule 23, !- Name - {00000000-0000-0000-0062-000000000030}, !- Schedule Ruleset Name + {00000000-0000-0000-0057-000000000008}, !- Handle + Schedule Rule 16, !- Name + {00000000-0000-0000-0058-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000037}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10774,11 +7226,30 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0062-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0057-000000000009}, !- Handle + Schedule Rule 17, !- Name + {00000000-0000-0000-0058-000000000013}, !- Schedule Ruleset Name + 2, !- Rule Order + {00000000-0000-0000-0056-000000000022}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0057-000000000010}, !- Handle + Schedule Rule 18, !- Name + {00000000-0000-0000-0058-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000038}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10788,16 +7259,16 @@ OS:Schedule:Rule, Yes, !- Apply Saturday DateRange, !- Date Specification Type 1, !- Start Month - 7, !- Start Day + 1, !- Start Day 12, !- End Month - 30; !- End Day + 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0062-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0057-000000000011}, !- Handle + Schedule Rule 19, !- Name + {00000000-0000-0000-0058-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000039}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10812,11 +7283,30 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000019}, !- Handle - Schedule Rule 26, !- Name - {00000000-0000-0000-0062-000000000028}, !- Schedule Ruleset Name + {00000000-0000-0000-0057-000000000012}, !- Handle + Schedule Rule 2, !- Name + {00000000-0000-0000-0058-000000000012}, !- Schedule Ruleset Name + 2, !- Rule Order + {00000000-0000-0000-0056-000000000018}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0057-000000000013}, !- Handle + Schedule Rule 20, !- Name + {00000000-0000-0000-0058-000000000023}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000040}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000043}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10831,11 +7321,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000020}, !- Handle - Schedule Rule 27, !- Name - {00000000-0000-0000-0062-000000000028}, !- Schedule Ruleset Name + {00000000-0000-0000-0057-000000000014}, !- Handle + Schedule Rule 21, !- Name + {00000000-0000-0000-0058-000000000023}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000041}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000044}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10850,11 +7340,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000021}, !- Handle - Schedule Rule 28, !- Name - {00000000-0000-0000-0062-000000000029}, !- Schedule Ruleset Name + {00000000-0000-0000-0057-000000000015}, !- Handle + Schedule Rule 22, !- Name + {00000000-0000-0000-0058-000000000024}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000042}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000045}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10869,11 +7359,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000022}, !- Handle - Schedule Rule 29, !- Name - {00000000-0000-0000-0062-000000000029}, !- Schedule Ruleset Name + {00000000-0000-0000-0057-000000000016}, !- Handle + Schedule Rule 23, !- Name + {00000000-0000-0000-0058-000000000024}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000037}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10888,11 +7378,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000023}, !- Handle + {00000000-0000-0000-0057-000000000017}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000019}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10907,11 +7397,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000024}, !- Handle + {00000000-0000-0000-0057-000000000018}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10926,11 +7416,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000025}, !- Handle + {00000000-0000-0000-0057-000000000019}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -10945,11 +7435,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000026}, !- Handle + {00000000-0000-0000-0057-000000000020}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10964,11 +7454,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000027}, !- Handle + {00000000-0000-0000-0057-000000000021}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10983,11 +7473,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000028}, !- Handle + {00000000-0000-0000-0057-000000000022}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11002,11 +7492,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000029}, !- Handle + {00000000-0000-0000-0057-000000000023}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11021,11 +7511,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000030}, !- Handle + {00000000-0000-0000-0057-000000000024}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000059}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000050}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11040,11 +7530,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000031}, !- Handle + {00000000-0000-0000-0057-000000000025}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000061}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000052}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11059,11 +7549,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000032}, !- Handle + {00000000-0000-0000-0057-000000000026}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000063}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11078,11 +7568,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000033}, !- Handle + {00000000-0000-0000-0057-000000000027}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000065}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000056}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11097,11 +7587,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000034}, !- Handle + {00000000-0000-0000-0057-000000000028}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000082}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000064}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11116,11 +7606,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000035}, !- Handle + {00000000-0000-0000-0057-000000000029}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000084}, !- Day Schedule Name + {00000000-0000-0000-0056-000000000066}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11135,199 +7625,157 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000003}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000045}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000039}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000004}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000040}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000005}, !- Handle + {00000000-0000-0000-0058-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000006}, !- Handle + {00000000-0000-0000-0058-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0056-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000007}, !- Handle + {00000000-0000-0000-0058-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000008}, !- Handle + {00000000-0000-0000-0058-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000009}, !- Handle + {00000000-0000-0000-0058-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000010}, !- Handle + {00000000-0000-0000-0058-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000011}, !- Handle + {00000000-0000-0000-0058-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000012}, !- Handle + {00000000-0000-0000-0058-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000013}, !- Handle + {00000000-0000-0000-0058-000000000013}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000021}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000021}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000014}, !- Handle + {00000000-0000-0000-0058-000000000014}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000015}, !- Handle + {00000000-0000-0000-0058-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000016}, !- Handle + {00000000-0000-0000-0058-000000000016}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000033}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000034}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000035}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000033}, !- Default Day Schedule Name + {00000000-0000-0000-0056-000000000034}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0056-000000000035}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000017}, !- Handle + {00000000-0000-0000-0058-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000018}, !- Handle + {00000000-0000-0000-0058-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000019}, !- Handle + {00000000-0000-0000-0058-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000052}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000020}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000053}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000021}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000054}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000022}, !- Handle - Supply Air Temp 3, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000055}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000023}, !- Handle + {00000000-0000-0000-0058-000000000020}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000056}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000024}, !- Handle + {00000000-0000-0000-0058-000000000021}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000057}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000025}, !- Handle + {00000000-0000-0000-0058-000000000022}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000058}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000026}, !- Handle + {00000000-0000-0000-0058-000000000023}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000067}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000068}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000069}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000027}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000070}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000071}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000072}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000058}, !- Default Day Schedule Name + {00000000-0000-0000-0056-000000000059}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0056-000000000060}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000028}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000073}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000074}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000075}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000029}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000076}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000077}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000078}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000030}, !- Handle + {00000000-0000-0000-0058-000000000024}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000079}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000080}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000081}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0056-000000000061}, !- Default Day Schedule Name + {00000000-0000-0000-0056-000000000062}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0056-000000000063}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -11335,7 +7783,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000002}, !- Handle + {00000000-0000-0000-0059-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -11343,7 +7791,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000003}, !- Handle + {00000000-0000-0000-0059-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -11351,14 +7799,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000004}, !- Handle + {00000000-0000-0000-0059-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000005}, !- Handle + {00000000-0000-0000-0059-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -11366,7 +7814,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000006}, !- Handle + {00000000-0000-0000-0059-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -11374,7 +7822,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000007}, !- Handle + {00000000-0000-0000-0059-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -11382,7 +7830,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000008}, !- Handle + {00000000-0000-0000-0059-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -11390,7 +7838,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000009}, !- Handle + {00000000-0000-0000-0059-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -11398,64 +7846,43 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000019}, !- Schedule Name - {00000000-0000-0000-0049-000000000130}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0058-000000000019}, !- Schedule Name + {00000000-0000-0000-0045-000000000064}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000002}, !- Handle + {00000000-0000-0000-0060-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000003}, !- Schedule Name - {00000000-0000-0000-0049-000000000087}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0058-000000000003}, !- Schedule Name + {00000000-0000-0000-0045-000000000033}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000003}, !- Handle + {00000000-0000-0000-0060-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000004}, !- Schedule Name - {00000000-0000-0000-0049-000000000109}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0058-000000000004}, !- Schedule Name + {00000000-0000-0000-0045-000000000043}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000004}, !- Handle + {00000000-0000-0000-0060-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000023}, !- Schedule Name - {00000000-0000-0000-0049-000000000217}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000020}, !- Schedule Name - {00000000-0000-0000-0049-000000000196}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000021}, !- Schedule Name - {00000000-0000-0000-0049-000000000203}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000007}, !- Handle - Setpoint Manager Scheduled 6, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000022}, !- Schedule Name - {00000000-0000-0000-0049-000000000210}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0058-000000000020}, !- Schedule Name + {00000000-0000-0000-0045-000000000127}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0088-000000000023}, !- Control Zone Name - {00000000-0000-0000-0049-000000000189}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0084-000000000023}, !- Control Zone Name + {00000000-0000-0000-0045-000000000120}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -11470,7 +7897,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -11479,7 +7906,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -11494,7 +7921,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -11509,7 +7936,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -11523,208 +7950,85 @@ OS:Site:GroundTemperature:FCfactorMethod, 16.6, !- November Ground Temperature {C} 11.1; !- December Ground Temperature {C} -OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0071-000000000001}, !- Handle - -1.6, !- January Surface Ground Temperature {C} - -5.4, !- February Surface Ground Temperature {C} - -6.4, !- March Surface Ground Temperature {C} - -5.5, !- April Surface Ground Temperature {C} - -0.4, !- May Surface Ground Temperature {C} - 5.3, !- June Surface Ground Temperature {C} - 10.8, !- July Surface Ground Temperature {C} - 14.7, !- August Surface Ground Temperature {C} - 15.8, !- September Surface Ground Temperature {C} - 14, !- October Surface Ground Temperature {C} - 9.5, !- November Surface Ground Temperature {C} - 4; !- December Surface Ground Temperature {C} - -OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0072-000000000001}, !- Handle - Correlation, !- Calculation Method - , !- Temperature Schedule Name - 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} - 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} - -OS:Sizing:Parameters, - {00000000-0000-0000-0073-000000000001}, !- Handle - 1.3, !- Heating Sizing Factor - 1.1; !- Cooling Sizing Factor - -OS:Sizing:Plant, - {00000000-0000-0000-0074-000000000001}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Plant or Condenser Loop Name - Cooling, !- Loop Type - 7, !- Design Loop Exit Temperature {C} - 6, !- Loop Design Temperature Difference {deltaC} - NonCoincident, !- Sizing Option - 1, !- Zone Timesteps in Averaging Window - None; !- Coincident Sizing Factor Mode - -OS:Sizing:Plant, - {00000000-0000-0000-0074-000000000002}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Plant or Condenser Loop Name - Condenser, !- Loop Type - 29, !- Design Loop Exit Temperature {C} - 6, !- Loop Design Temperature Difference {deltaC} - NonCoincident, !- Sizing Option - 1, !- Zone Timesteps in Averaging Window - None; !- Coincident Sizing Factor Mode - -OS:Sizing:Plant, - {00000000-0000-0000-0074-000000000003}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Plant or Condenser Loop Name - Heating, !- Loop Type - 60, !- Design Loop Exit Temperature {C} - 5, !- Loop Design Temperature Difference {deltaC} - NonCoincident, !- Sizing Option - 1, !- Zone Timesteps in Averaging Window - None; !- Coincident Sizing Factor Mode - -OS:Sizing:System, - {00000000-0000-0000-0075-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- AirLoop Name - Sensible, !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 1, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 43, !- Central Heating Design Supply Air Temperature {C} - NonCoincident, !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - DesignDay, !- Cooling Design Air Flow Method - 0, !- Cooling Design Air Flow Rate {m3/s} - DesignDay, !- Heating Design Air Flow Method - 0, !- Heating Design Air Flow Rate {m3/s} - ZoneSum, !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0075-000000000002}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0075-000000000003}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity +OS:Site:GroundTemperature:Shallow, + {00000000-0000-0000-0067-000000000001}, !- Handle + -1.6, !- January Surface Ground Temperature {C} + -5.4, !- February Surface Ground Temperature {C} + -6.4, !- March Surface Ground Temperature {C} + -5.5, !- April Surface Ground Temperature {C} + -0.4, !- May Surface Ground Temperature {C} + 5.3, !- June Surface Ground Temperature {C} + 10.8, !- July Surface Ground Temperature {C} + 14.7, !- August Surface Ground Temperature {C} + 15.8, !- September Surface Ground Temperature {C} + 14, !- October Surface Ground Temperature {C} + 9.5, !- November Surface Ground Temperature {C} + 4; !- December Surface Ground Temperature {C} + +OS:Site:WaterMainsTemperature, + {00000000-0000-0000-0068-000000000001}, !- Handle + Correlation, !- Calculation Method + , !- Temperature Schedule Name + 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} + 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + +OS:Sizing:Parameters, + {00000000-0000-0000-0069-000000000001}, !- Handle + 1.3, !- Heating Sizing Factor + 1.1; !- Cooling Sizing Factor + +OS:Sizing:Plant, + {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 7, !- Design Loop Exit Temperature {C} + 6, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:Sizing:Plant, + {00000000-0000-0000-0070-000000000002}, !- Handle + {00000000-0000-0000-0050-000000000002}, !- Plant or Condenser Loop Name + Condenser, !- Loop Type + 29, !- Design Loop Exit Temperature {C} + 6, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:Sizing:Plant, + {00000000-0000-0000-0070-000000000003}, !- Handle + {00000000-0000-0000-0050-000000000003}, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60, !- Design Loop Exit Temperature {C} + 5, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0075-000000000004}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On + {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- AirLoop Name + Sensible, !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio + 1, !- Central Heating Maximum System Air Flow Ratio 7, !- Preheat Design Temperature {C} 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} + 13, !- Precool Design Temperature {C} 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option + 43, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Sizing Option No, !- 100% Outdoor Air in Cooling No, !- 100% Outdoor Air in Heating 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate @@ -11745,8 +8049,8 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0075-000000000005}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- AirLoop Name + {00000000-0000-0000-0071-000000000002}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} 0.3, !- Central Heating Maximum System Air Flow Ratio @@ -11786,18 +8090,18 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000001}, !- Handle - {00000000-0000-0000-0088-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000010}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -11821,8 +8125,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000002}, !- Handle - {00000000-0000-0000-0088-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0072-000000000002}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -11856,18 +8160,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000003}, !- Handle - {00000000-0000-0000-0088-000000000022}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000003}, !- Handle + {00000000-0000-0000-0084-000000000022}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -11891,8 +8195,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000004}, !- Handle - {00000000-0000-0000-0088-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0072-000000000004}, !- Handle + {00000000-0000-0000-0084-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -11926,18 +8230,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000005}, !- Handle - {00000000-0000-0000-0088-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000005}, !- Handle + {00000000-0000-0000-0084-000000000016}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -11961,18 +8265,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000006}, !- Handle - {00000000-0000-0000-0088-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000006}, !- Handle + {00000000-0000-0000-0084-000000000017}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -11996,18 +8300,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000007}, !- Handle - {00000000-0000-0000-0088-000000000005}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000007}, !- Handle + {00000000-0000-0000-0084-000000000005}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12031,18 +8335,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000008}, !- Handle - {00000000-0000-0000-0088-000000000006}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000008}, !- Handle + {00000000-0000-0000-0084-000000000006}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12066,18 +8370,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000009}, !- Handle - {00000000-0000-0000-0088-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000009}, !- Handle + {00000000-0000-0000-0084-000000000018}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12101,18 +8405,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000010}, !- Handle - {00000000-0000-0000-0088-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000010}, !- Handle + {00000000-0000-0000-0084-000000000011}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12136,18 +8440,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000011}, !- Handle - {00000000-0000-0000-0088-000000000019}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000011}, !- Handle + {00000000-0000-0000-0084-000000000019}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12171,18 +8475,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000012}, !- Handle - {00000000-0000-0000-0088-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000012}, !- Handle + {00000000-0000-0000-0084-000000000012}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12206,8 +8510,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000013}, !- Handle - {00000000-0000-0000-0088-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0072-000000000013}, !- Handle + {00000000-0000-0000-0084-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12241,8 +8545,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000014}, !- Handle - {00000000-0000-0000-0088-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0072-000000000014}, !- Handle + {00000000-0000-0000-0084-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12276,18 +8580,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000015}, !- Handle - {00000000-0000-0000-0088-000000000007}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000015}, !- Handle + {00000000-0000-0000-0084-000000000007}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12311,18 +8615,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000016}, !- Handle - {00000000-0000-0000-0088-000000000020}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000016}, !- Handle + {00000000-0000-0000-0084-000000000020}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12346,18 +8650,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000017}, !- Handle - {00000000-0000-0000-0088-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000017}, !- Handle + {00000000-0000-0000-0084-000000000013}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12381,18 +8685,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000018}, !- Handle - {00000000-0000-0000-0088-000000000021}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000018}, !- Handle + {00000000-0000-0000-0084-000000000021}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12416,18 +8720,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000019}, !- Handle - {00000000-0000-0000-0088-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000019}, !- Handle + {00000000-0000-0000-0084-000000000014}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12451,18 +8755,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000020}, !- Handle - {00000000-0000-0000-0088-000000000008}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000020}, !- Handle + {00000000-0000-0000-0084-000000000008}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12486,18 +8790,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000021}, !- Handle - {00000000-0000-0000-0088-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000021}, !- Handle + {00000000-0000-0000-0084-000000000015}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12521,18 +8825,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000022}, !- Handle - {00000000-0000-0000-0088-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0072-000000000022}, !- Handle + {00000000-0000-0000-0084-000000000009}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12556,8 +8860,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000023}, !- Handle - {00000000-0000-0000-0088-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0072-000000000023}, !- Handle + {00000000-0000-0000-0084-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12591,7 +8895,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0073-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -12619,7 +8923,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0077-000000000002}, !- Handle + {00000000-0000-0000-0073-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -12647,7 +8951,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0077-000000000003}, !- Handle + {00000000-0000-0000-0073-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -12671,9 +8975,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0074-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0080-000000000002}, !- Space Type Name + {00000000-0000-0000-0076-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12681,16 +8985,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0088-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000002}, !- Handle + {00000000-0000-0000-0074-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12698,16 +9002,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0074-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12715,16 +9019,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000004}, !- Handle + {00000000-0000-0000-0074-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12732,16 +9036,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000005}, !- Handle + {00000000-0000-0000-0074-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12749,16 +9053,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0088-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000006}, !- Handle + {00000000-0000-0000-0074-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12766,16 +9070,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000007}, !- Handle + {00000000-0000-0000-0074-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12783,16 +9087,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000008}, !- Handle + {00000000-0000-0000-0074-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12800,16 +9104,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000009}, !- Handle + {00000000-0000-0000-0074-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0080-000000000001}, !- Space Type Name + {00000000-0000-0000-0076-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12817,16 +9121,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000010}, !- Handle + {00000000-0000-0000-0074-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0080-000000000001}, !- Space Type Name + {00000000-0000-0000-0076-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12834,16 +9138,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000011}, !- Handle + {00000000-0000-0000-0074-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12851,16 +9155,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000012}, !- Handle + {00000000-0000-0000-0074-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12868,16 +9172,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000013}, !- Handle + {00000000-0000-0000-0074-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12885,16 +9189,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000014}, !- Handle + {00000000-0000-0000-0074-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12902,16 +9206,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000015}, !- Handle + {00000000-0000-0000-0074-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12919,16 +9223,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000016}, !- Handle + {00000000-0000-0000-0074-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12936,16 +9240,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000017}, !- Handle + {00000000-0000-0000-0074-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12953,16 +9257,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000018}, !- Handle + {00000000-0000-0000-0074-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12970,16 +9274,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000019}, !- Handle + {00000000-0000-0000-0074-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -12987,16 +9291,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000020}, !- Handle + {00000000-0000-0000-0074-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13004,16 +9308,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000021}, !- Handle + {00000000-0000-0000-0074-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13021,16 +9325,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000022}, !- Handle + {00000000-0000-0000-0074-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0076-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13038,16 +9342,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000023}, !- Handle + {00000000-0000-0000-0074-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0080-000000000001}, !- Space Type Name + {00000000-0000-0000-0076-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13055,17 +9359,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0084-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0078-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13077,10 +9381,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000002}, !- Handle + {00000000-0000-0000-0075-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0078-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13092,10 +9396,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0075-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0078-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13107,10 +9411,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000004}, !- Handle + {00000000-0000-0000-0075-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0078-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13122,10 +9426,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000005}, !- Handle + {00000000-0000-0000-0075-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0078-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13137,10 +9441,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000006}, !- Handle + {00000000-0000-0000-0075-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0078-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13152,10 +9456,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000007}, !- Handle + {00000000-0000-0000-0075-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0078-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13167,10 +9471,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000008}, !- Handle + {00000000-0000-0000-0075-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0078-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13182,10 +9486,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000009}, !- Handle + {00000000-0000-0000-0075-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0078-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13197,10 +9501,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000010}, !- Handle + {00000000-0000-0000-0075-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0078-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13212,10 +9516,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000011}, !- Handle + {00000000-0000-0000-0075-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0078-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13227,10 +9531,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000012}, !- Handle + {00000000-0000-0000-0075-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0078-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13242,10 +9546,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000013}, !- Handle + {00000000-0000-0000-0075-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0078-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13257,10 +9561,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000014}, !- Handle + {00000000-0000-0000-0075-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0078-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13272,10 +9576,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000015}, !- Handle + {00000000-0000-0000-0075-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0078-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0074-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13287,46 +9591,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0076-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0054-000000000031}, !- Group Rendering Name {00000000-0000-0000-0032-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0076-000000000002}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000034}, !- Group Rendering Name + {00000000-0000-0000-0054-000000000034}, !- Group Rendering Name {00000000-0000-0000-0032-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0076-000000000003}, !- Handle Space Function Office - open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0054-000000000037}, !- Group Rendering Name {00000000-0000-0000-0032-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office - open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0077-000000000001}, !- Handle {00000000-0000-0000-0020-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0077-000000000002}, !- Handle {00000000-0000-0000-0020-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13335,7 +9639,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0077-000000000003}, !- Handle {00000000-0000-0000-0020-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13344,7 +9648,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000004}, !- Handle + {00000000-0000-0000-0077-000000000004}, !- Handle {00000000-0000-0000-0020-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -13353,25 +9657,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000005}, !- Handle + {00000000-0000-0000-0077-000000000005}, !- Handle {00000000-0000-0000-0020-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000006}, !- Handle + {00000000-0000-0000-0077-000000000006}, !- Handle {00000000-0000-0000-0020-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000007}, !- Handle + {00000000-0000-0000-0077-000000000007}, !- Handle {00000000-0000-0000-0020-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000008}, !- Handle + {00000000-0000-0000-0077-000000000008}, !- Handle {00000000-0000-0000-0020-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13380,7 +9684,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000009}, !- Handle + {00000000-0000-0000-0077-000000000009}, !- Handle {00000000-0000-0000-0020-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13389,7 +9693,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000010}, !- Handle + {00000000-0000-0000-0077-000000000010}, !- Handle {00000000-0000-0000-0020-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13398,12 +9702,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000011}, !- Handle + {00000000-0000-0000-0077-000000000011}, !- Handle {00000000-0000-0000-0020-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000012}, !- Handle + {00000000-0000-0000-0077-000000000012}, !- Handle {00000000-0000-0000-0020-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -13412,12 +9716,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000013}, !- Handle + {00000000-0000-0000-0077-000000000013}, !- Handle {00000000-0000-0000-0020-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000014}, !- Handle + {00000000-0000-0000-0077-000000000014}, !- Handle {00000000-0000-0000-0020-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -13426,34 +9730,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000015}, !- Handle + {00000000-0000-0000-0077-000000000015}, !- Handle {00000000-0000-0000-0020-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000016}, !- Handle + {00000000-0000-0000-0077-000000000016}, !- Handle {00000000-0000-0000-0020-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000017}, !- Handle + {00000000-0000-0000-0077-000000000017}, !- Handle {00000000-0000-0000-0020-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000018}, !- Handle + {00000000-0000-0000-0077-000000000018}, !- Handle {00000000-0000-0000-0020-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000019}, !- Handle + {00000000-0000-0000-0077-000000000019}, !- Handle {00000000-0000-0000-0020-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000020}, !- Handle + {00000000-0000-0000-0077-000000000020}, !- Handle {00000000-0000-0000-0020-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13462,7 +9766,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000021}, !- Handle + {00000000-0000-0000-0077-000000000021}, !- Handle {00000000-0000-0000-0020-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13471,7 +9775,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000022}, !- Handle + {00000000-0000-0000-0077-000000000022}, !- Handle {00000000-0000-0000-0020-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -13480,7 +9784,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000023}, !- Handle + {00000000-0000-0000-0077-000000000023}, !- Handle {00000000-0000-0000-0020-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13489,7 +9793,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000024}, !- Handle + {00000000-0000-0000-0077-000000000024}, !- Handle {00000000-0000-0000-0020-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13498,7 +9802,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000025}, !- Handle + {00000000-0000-0000-0077-000000000025}, !- Handle {00000000-0000-0000-0020-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13507,7 +9811,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000026}, !- Handle + {00000000-0000-0000-0077-000000000026}, !- Handle {00000000-0000-0000-0020-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -13516,7 +9820,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000027}, !- Handle + {00000000-0000-0000-0077-000000000027}, !- Handle {00000000-0000-0000-0020-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -13525,135 +9829,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000001}, !- Handle - {00000000-0000-0000-0046-000000000021}; !- Material Name + {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0042-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000002}, !- Handle - {00000000-0000-0000-0047-000000000013}; !- Material Name + {00000000-0000-0000-0078-000000000002}, !- Handle + {00000000-0000-0000-0043-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000003}, !- Handle - {00000000-0000-0000-0046-000000000008}; !- Material Name + {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0042-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000004}, !- Handle - {00000000-0000-0000-0047-000000000007}; !- Material Name + {00000000-0000-0000-0078-000000000004}, !- Handle + {00000000-0000-0000-0043-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000005}, !- Handle - {00000000-0000-0000-0046-000000000006}; !- Material Name + {00000000-0000-0000-0078-000000000005}, !- Handle + {00000000-0000-0000-0042-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000006}, !- Handle - {00000000-0000-0000-0046-000000000014}; !- Material Name + {00000000-0000-0000-0078-000000000006}, !- Handle + {00000000-0000-0000-0042-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000007}, !- Handle - {00000000-0000-0000-0046-000000000002}; !- Material Name + {00000000-0000-0000-0078-000000000007}, !- Handle + {00000000-0000-0000-0042-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000008}, !- Handle - {00000000-0000-0000-0046-000000000024}; !- Material Name + {00000000-0000-0000-0078-000000000008}, !- Handle + {00000000-0000-0000-0042-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000009}, !- Handle - {00000000-0000-0000-0046-000000000003}; !- Material Name + {00000000-0000-0000-0078-000000000009}, !- Handle + {00000000-0000-0000-0042-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000010}, !- Handle - {00000000-0000-0000-0046-000000000019}; !- Material Name + {00000000-0000-0000-0078-000000000010}, !- Handle + {00000000-0000-0000-0042-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000011}, !- Handle - {00000000-0000-0000-0046-000000000012}; !- Material Name + {00000000-0000-0000-0078-000000000011}, !- Handle + {00000000-0000-0000-0042-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000012}, !- Handle - {00000000-0000-0000-0098-000000000001}; !- Material Name + {00000000-0000-0000-0078-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000013}, !- Handle - {00000000-0000-0000-0046-000000000018}; !- Material Name + {00000000-0000-0000-0078-000000000013}, !- Handle + {00000000-0000-0000-0042-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000014}, !- Handle - {00000000-0000-0000-0047-000000000008}; !- Material Name + {00000000-0000-0000-0078-000000000014}, !- Handle + {00000000-0000-0000-0043-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000015}, !- Handle - {00000000-0000-0000-0046-000000000007}; !- Material Name + {00000000-0000-0000-0078-000000000015}, !- Handle + {00000000-0000-0000-0042-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000016}, !- Handle - {00000000-0000-0000-0047-000000000003}; !- Material Name + {00000000-0000-0000-0078-000000000016}, !- Handle + {00000000-0000-0000-0043-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000017}, !- Handle - {00000000-0000-0000-0046-000000000005}; !- Material Name + {00000000-0000-0000-0078-000000000017}, !- Handle + {00000000-0000-0000-0042-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000018}, !- Handle - {00000000-0000-0000-0046-000000000013}; !- Material Name + {00000000-0000-0000-0078-000000000018}, !- Handle + {00000000-0000-0000-0042-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000019}, !- Handle - {00000000-0000-0000-0047-000000000009}; !- Material Name + {00000000-0000-0000-0078-000000000019}, !- Handle + {00000000-0000-0000-0043-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000020}, !- Handle - {00000000-0000-0000-0046-000000000001}; !- Material Name + {00000000-0000-0000-0078-000000000020}, !- Handle + {00000000-0000-0000-0042-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000021}, !- Handle - {00000000-0000-0000-0046-000000000023}; !- Material Name + {00000000-0000-0000-0078-000000000021}, !- Handle + {00000000-0000-0000-0042-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000022}, !- Handle - {00000000-0000-0000-0047-000000000010}; !- Material Name + {00000000-0000-0000-0078-000000000022}, !- Handle + {00000000-0000-0000-0043-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000023}, !- Handle - {00000000-0000-0000-0046-000000000009}; !- Material Name + {00000000-0000-0000-0078-000000000023}, !- Handle + {00000000-0000-0000-0042-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000024}, !- Handle - {00000000-0000-0000-0047-000000000004}; !- Material Name + {00000000-0000-0000-0078-000000000024}, !- Handle + {00000000-0000-0000-0043-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000025}, !- Handle - {00000000-0000-0000-0046-000000000010}; !- Material Name + {00000000-0000-0000-0078-000000000025}, !- Handle + {00000000-0000-0000-0042-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000026}, !- Handle - {00000000-0000-0000-0047-000000000005}; !- Material Name + {00000000-0000-0000-0078-000000000026}, !- Handle + {00000000-0000-0000-0043-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000027}, !- Handle - {00000000-0000-0000-0046-000000000011}; !- Material Name + {00000000-0000-0000-0078-000000000027}, !- Handle + {00000000-0000-0000-0042-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000028}, !- Handle - {00000000-0000-0000-0047-000000000006}; !- Material Name + {00000000-0000-0000-0078-000000000028}, !- Handle + {00000000-0000-0000-0043-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000029}, !- Handle - {00000000-0000-0000-0046-000000000017}; !- Material Name + {00000000-0000-0000-0078-000000000029}, !- Handle + {00000000-0000-0000-0042-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000030}, !- Handle - {00000000-0000-0000-0047-000000000011}; !- Material Name + {00000000-0000-0000-0078-000000000030}, !- Handle + {00000000-0000-0000-0043-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000031}, !- Handle - {00000000-0000-0000-0047-000000000012}; !- Material Name + {00000000-0000-0000-0078-000000000031}, !- Handle + {00000000-0000-0000-0043-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000098}, !- Surface Name + {00000000-0000-0000-0080-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13665,11 +9969,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000002}, !- Handle + {00000000-0000-0000-0079-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000103}, !- Surface Name + {00000000-0000-0000-0080-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13681,11 +9985,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000003}, !- Handle + {00000000-0000-0000-0079-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000110}, !- Surface Name + {00000000-0000-0000-0080-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13697,11 +10001,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000004}, !- Handle + {00000000-0000-0000-0079-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000119}, !- Surface Name + {00000000-0000-0000-0080-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13713,11 +10017,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000005}, !- Handle + {00000000-0000-0000-0079-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000125}, !- Surface Name + {00000000-0000-0000-0080-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13729,11 +10033,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000006}, !- Handle + {00000000-0000-0000-0079-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000129}, !- Surface Name + {00000000-0000-0000-0080-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13745,11 +10049,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000007}, !- Handle + {00000000-0000-0000-0079-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000135}, !- Surface Name + {00000000-0000-0000-0080-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13761,11 +10065,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000008}, !- Handle + {00000000-0000-0000-0079-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000143}, !- Surface Name + {00000000-0000-0000-0080-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13777,11 +10081,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000009}, !- Handle + {00000000-0000-0000-0079-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000147}, !- Surface Name + {00000000-0000-0000-0080-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13793,11 +10097,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000010}, !- Handle + {00000000-0000-0000-0079-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000151}, !- Surface Name + {00000000-0000-0000-0080-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13809,11 +10113,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000011}, !- Handle + {00000000-0000-0000-0079-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000157}, !- Surface Name + {00000000-0000-0000-0080-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13825,11 +10129,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000012}, !- Handle + {00000000-0000-0000-0079-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000165}, !- Surface Name + {00000000-0000-0000-0080-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -13841,13 +10145,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0080-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0074-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -13858,13 +10162,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000002}, !- Handle + {00000000-0000-0000-0080-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0074-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13875,13 +10179,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000003}, !- Handle + {00000000-0000-0000-0080-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0074-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -13892,13 +10196,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000004}, !- Handle + {00000000-0000-0000-0080-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0074-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -13909,13 +10213,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000005}, !- Handle + {00000000-0000-0000-0080-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0074-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -13926,11 +10230,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000006}, !- Handle + {00000000-0000-0000-0080-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13943,13 +10247,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000007}, !- Handle + {00000000-0000-0000-0080-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13960,13 +10264,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000008}, !- Handle + {00000000-0000-0000-0080-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0074-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13977,13 +10281,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000009}, !- Handle + {00000000-0000-0000-0080-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0074-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -13994,13 +10298,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000010}, !- Handle + {00000000-0000-0000-0080-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0074-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14011,13 +10315,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000011}, !- Handle + {00000000-0000-0000-0080-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0074-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14028,13 +10332,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000012}, !- Handle + {00000000-0000-0000-0080-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0074-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14045,13 +10349,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000013}, !- Handle + {00000000-0000-0000-0080-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0074-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14062,13 +10366,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000014}, !- Handle + {00000000-0000-0000-0080-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0074-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14079,13 +10383,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000015}, !- Handle + {00000000-0000-0000-0080-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0074-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14096,13 +10400,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000016}, !- Handle + {00000000-0000-0000-0080-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0074-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14113,13 +10417,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000017}, !- Handle + {00000000-0000-0000-0080-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0074-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14130,13 +10434,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000018}, !- Handle + {00000000-0000-0000-0080-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14147,13 +10451,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000019}, !- Handle + {00000000-0000-0000-0080-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0074-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14164,11 +10468,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000020}, !- Handle + {00000000-0000-0000-0080-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0074-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14181,13 +10485,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000021}, !- Handle + {00000000-0000-0000-0080-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0074-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14198,13 +10502,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000022}, !- Handle + {00000000-0000-0000-0080-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0074-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14215,13 +10519,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000023}, !- Handle + {00000000-0000-0000-0080-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0074-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14232,13 +10536,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000024}, !- Handle + {00000000-0000-0000-0080-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0074-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14249,13 +10553,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000025}, !- Handle + {00000000-0000-0000-0080-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0074-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14266,13 +10570,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000026}, !- Handle + {00000000-0000-0000-0080-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0074-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14283,13 +10587,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000027}, !- Handle + {00000000-0000-0000-0080-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0074-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14300,13 +10604,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000028}, !- Handle + {00000000-0000-0000-0080-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14317,13 +10621,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000029}, !- Handle + {00000000-0000-0000-0080-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0074-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14334,11 +10638,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000030}, !- Handle + {00000000-0000-0000-0080-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0074-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14351,13 +10655,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000031}, !- Handle + {00000000-0000-0000-0080-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0074-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14368,13 +10672,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000032}, !- Handle + {00000000-0000-0000-0080-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0074-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14385,13 +10689,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000033}, !- Handle + {00000000-0000-0000-0080-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0074-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14402,13 +10706,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000034}, !- Handle + {00000000-0000-0000-0080-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0074-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14419,13 +10723,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000035}, !- Handle + {00000000-0000-0000-0080-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0074-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14436,13 +10740,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000036}, !- Handle + {00000000-0000-0000-0080-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0074-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14453,13 +10757,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000037}, !- Handle + {00000000-0000-0000-0080-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0074-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14470,13 +10774,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000038}, !- Handle + {00000000-0000-0000-0080-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0074-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14487,13 +10791,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000039}, !- Handle + {00000000-0000-0000-0080-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0074-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14504,13 +10808,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000040}, !- Handle + {00000000-0000-0000-0080-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0074-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14521,13 +10825,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000041}, !- Handle + {00000000-0000-0000-0080-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0074-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14538,13 +10842,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000042}, !- Handle + {00000000-0000-0000-0080-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0074-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14555,13 +10859,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000043}, !- Handle + {00000000-0000-0000-0080-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0074-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14572,13 +10876,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000044}, !- Handle + {00000000-0000-0000-0080-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0074-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14589,13 +10893,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000045}, !- Handle + {00000000-0000-0000-0080-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0074-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14606,13 +10910,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000046}, !- Handle + {00000000-0000-0000-0080-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0074-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14623,13 +10927,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000047}, !- Handle + {00000000-0000-0000-0080-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0074-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14640,13 +10944,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000048}, !- Handle + {00000000-0000-0000-0080-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0074-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14657,13 +10961,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000049}, !- Handle + {00000000-0000-0000-0080-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14674,13 +10978,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000050}, !- Handle + {00000000-0000-0000-0080-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0074-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14691,13 +10995,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000051}, !- Handle + {00000000-0000-0000-0080-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0074-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14708,13 +11012,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000052}, !- Handle + {00000000-0000-0000-0080-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0074-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14725,13 +11029,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000053}, !- Handle + {00000000-0000-0000-0080-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0074-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14742,13 +11046,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000054}, !- Handle + {00000000-0000-0000-0080-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0074-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14759,13 +11063,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000055}, !- Handle + {00000000-0000-0000-0080-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0074-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14776,13 +11080,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000056}, !- Handle + {00000000-0000-0000-0080-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0074-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14793,13 +11097,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000057}, !- Handle + {00000000-0000-0000-0080-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0074-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14810,13 +11114,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000058}, !- Handle + {00000000-0000-0000-0080-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0074-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14827,13 +11131,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000059}, !- Handle + {00000000-0000-0000-0080-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0074-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14844,11 +11148,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000060}, !- Handle + {00000000-0000-0000-0080-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0074-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14861,13 +11165,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000061}, !- Handle + {00000000-0000-0000-0080-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0074-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14878,13 +11182,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000062}, !- Handle + {00000000-0000-0000-0080-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0074-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14895,13 +11199,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000063}, !- Handle + {00000000-0000-0000-0080-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0074-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14912,13 +11216,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000064}, !- Handle + {00000000-0000-0000-0080-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0074-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14929,13 +11233,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000065}, !- Handle + {00000000-0000-0000-0080-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0074-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14946,13 +11250,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000066}, !- Handle + {00000000-0000-0000-0080-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0074-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14963,13 +11267,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000067}, !- Handle + {00000000-0000-0000-0080-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0074-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14980,13 +11284,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000068}, !- Handle + {00000000-0000-0000-0080-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14997,13 +11301,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000069}, !- Handle + {00000000-0000-0000-0080-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0074-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15014,11 +11318,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000070}, !- Handle + {00000000-0000-0000-0080-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0074-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15031,13 +11335,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000071}, !- Handle + {00000000-0000-0000-0080-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0074-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15048,13 +11352,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000072}, !- Handle + {00000000-0000-0000-0080-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0074-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15065,13 +11369,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000073}, !- Handle + {00000000-0000-0000-0080-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0074-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15082,13 +11386,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000074}, !- Handle + {00000000-0000-0000-0080-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0074-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15099,13 +11403,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000075}, !- Handle + {00000000-0000-0000-0080-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0074-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15116,13 +11420,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000076}, !- Handle + {00000000-0000-0000-0080-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0074-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15133,13 +11437,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000077}, !- Handle + {00000000-0000-0000-0080-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0074-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15150,13 +11454,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000078}, !- Handle + {00000000-0000-0000-0080-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15167,13 +11471,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000079}, !- Handle + {00000000-0000-0000-0080-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0074-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15184,11 +11488,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000080}, !- Handle + {00000000-0000-0000-0080-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15201,11 +11505,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000081}, !- Handle + {00000000-0000-0000-0080-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15218,11 +11522,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000082}, !- Handle + {00000000-0000-0000-0080-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15235,11 +11539,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000083}, !- Handle + {00000000-0000-0000-0080-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15252,11 +11556,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000084}, !- Handle + {00000000-0000-0000-0080-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15269,13 +11573,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000085}, !- Handle + {00000000-0000-0000-0080-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0074-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15286,13 +11590,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000086}, !- Handle + {00000000-0000-0000-0080-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0074-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15303,11 +11607,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000087}, !- Handle + {00000000-0000-0000-0080-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15320,11 +11624,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000088}, !- Handle + {00000000-0000-0000-0080-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15337,11 +11641,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000089}, !- Handle + {00000000-0000-0000-0080-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15354,11 +11658,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000090}, !- Handle + {00000000-0000-0000-0080-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15371,11 +11675,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000091}, !- Handle + {00000000-0000-0000-0080-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15388,13 +11692,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000092}, !- Handle + {00000000-0000-0000-0080-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15405,13 +11709,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000093}, !- Handle + {00000000-0000-0000-0080-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0074-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15422,13 +11726,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000094}, !- Handle + {00000000-0000-0000-0080-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0074-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15439,13 +11743,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000095}, !- Handle + {00000000-0000-0000-0080-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0074-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15456,13 +11760,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000096}, !- Handle + {00000000-0000-0000-0080-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0074-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15473,13 +11777,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000097}, !- Handle + {00000000-0000-0000-0080-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0074-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15490,11 +11794,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000098}, !- Handle + {00000000-0000-0000-0080-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0074-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15507,13 +11811,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000099}, !- Handle + {00000000-0000-0000-0080-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15524,13 +11828,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000100}, !- Handle + {00000000-0000-0000-0080-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0074-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15541,13 +11845,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000101}, !- Handle + {00000000-0000-0000-0080-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0074-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15558,13 +11862,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000102}, !- Handle + {00000000-0000-0000-0080-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0074-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15575,11 +11879,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000103}, !- Handle + {00000000-0000-0000-0080-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0074-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15592,13 +11896,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000104}, !- Handle + {00000000-0000-0000-0080-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0074-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15609,13 +11913,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000105}, !- Handle + {00000000-0000-0000-0080-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0074-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15626,13 +11930,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000106}, !- Handle + {00000000-0000-0000-0080-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15643,13 +11947,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000107}, !- Handle + {00000000-0000-0000-0080-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0074-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15660,13 +11964,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000108}, !- Handle + {00000000-0000-0000-0080-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0074-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15677,13 +11981,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000109}, !- Handle + {00000000-0000-0000-0080-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0074-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15694,11 +11998,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000110}, !- Handle + {00000000-0000-0000-0080-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0074-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15711,13 +12015,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000111}, !- Handle + {00000000-0000-0000-0080-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0074-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15728,13 +12032,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000112}, !- Handle + {00000000-0000-0000-0080-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0074-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15745,13 +12049,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000113}, !- Handle + {00000000-0000-0000-0080-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0074-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15762,13 +12066,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000114}, !- Handle + {00000000-0000-0000-0080-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0074-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15779,13 +12083,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000115}, !- Handle + {00000000-0000-0000-0080-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0074-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15796,13 +12100,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000116}, !- Handle + {00000000-0000-0000-0080-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0074-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15813,13 +12117,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000117}, !- Handle + {00000000-0000-0000-0080-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0074-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15830,13 +12134,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000118}, !- Handle + {00000000-0000-0000-0080-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0074-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15847,11 +12151,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000119}, !- Handle + {00000000-0000-0000-0080-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0074-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15864,13 +12168,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000120}, !- Handle + {00000000-0000-0000-0080-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15881,13 +12185,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000121}, !- Handle + {00000000-0000-0000-0080-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0074-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15898,11 +12202,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000122}, !- Handle + {00000000-0000-0000-0080-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0074-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15915,13 +12219,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000123}, !- Handle + {00000000-0000-0000-0080-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0074-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15932,13 +12236,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000124}, !- Handle + {00000000-0000-0000-0080-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0074-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15949,11 +12253,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000125}, !- Handle + {00000000-0000-0000-0080-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0074-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15966,13 +12270,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000126}, !- Handle + {00000000-0000-0000-0080-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15983,13 +12287,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000127}, !- Handle + {00000000-0000-0000-0080-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0074-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16000,11 +12304,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000128}, !- Handle + {00000000-0000-0000-0080-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0074-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16017,11 +12321,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000129}, !- Handle + {00000000-0000-0000-0080-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0074-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16034,13 +12338,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000130}, !- Handle + {00000000-0000-0000-0080-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0074-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16051,13 +12355,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000131}, !- Handle + {00000000-0000-0000-0080-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0074-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16068,13 +12372,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000132}, !- Handle + {00000000-0000-0000-0080-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16085,13 +12389,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000133}, !- Handle + {00000000-0000-0000-0080-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0074-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16102,11 +12406,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000134}, !- Handle + {00000000-0000-0000-0080-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0074-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16119,11 +12423,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000135}, !- Handle + {00000000-0000-0000-0080-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0074-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16136,13 +12440,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000136}, !- Handle + {00000000-0000-0000-0080-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0074-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16153,13 +12457,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000137}, !- Handle + {00000000-0000-0000-0080-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0074-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16170,13 +12474,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000138}, !- Handle + {00000000-0000-0000-0080-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0074-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16187,13 +12491,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000139}, !- Handle + {00000000-0000-0000-0080-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0074-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16204,11 +12508,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000140}, !- Handle + {00000000-0000-0000-0080-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0074-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16221,13 +12525,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000141}, !- Handle + {00000000-0000-0000-0080-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0074-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16238,13 +12542,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000142}, !- Handle + {00000000-0000-0000-0080-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0074-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16255,11 +12559,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000143}, !- Handle + {00000000-0000-0000-0080-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0074-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16272,13 +12576,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000144}, !- Handle + {00000000-0000-0000-0080-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16289,13 +12593,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000145}, !- Handle + {00000000-0000-0000-0080-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0074-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16306,11 +12610,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000146}, !- Handle + {00000000-0000-0000-0080-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0074-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16323,11 +12627,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000147}, !- Handle + {00000000-0000-0000-0080-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0074-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16340,13 +12644,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000148}, !- Handle + {00000000-0000-0000-0080-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16357,13 +12661,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000149}, !- Handle + {00000000-0000-0000-0080-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0074-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16374,11 +12678,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000150}, !- Handle + {00000000-0000-0000-0080-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0074-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16391,11 +12695,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000151}, !- Handle + {00000000-0000-0000-0080-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0074-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16408,13 +12712,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000152}, !- Handle + {00000000-0000-0000-0080-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0074-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16425,13 +12729,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000153}, !- Handle + {00000000-0000-0000-0080-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0074-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16442,13 +12746,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000154}, !- Handle + {00000000-0000-0000-0080-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16459,13 +12763,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000155}, !- Handle + {00000000-0000-0000-0080-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0074-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16476,11 +12780,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000156}, !- Handle + {00000000-0000-0000-0080-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0074-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16493,11 +12797,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000157}, !- Handle + {00000000-0000-0000-0080-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0074-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16510,13 +12814,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000158}, !- Handle + {00000000-0000-0000-0080-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0074-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16527,13 +12831,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000159}, !- Handle + {00000000-0000-0000-0080-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0074-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16544,13 +12848,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000160}, !- Handle + {00000000-0000-0000-0080-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16561,13 +12865,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000161}, !- Handle + {00000000-0000-0000-0080-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0074-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16578,11 +12882,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000162}, !- Handle + {00000000-0000-0000-0080-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0074-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16595,13 +12899,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000163}, !- Handle + {00000000-0000-0000-0080-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0074-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16612,13 +12916,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000164}, !- Handle + {00000000-0000-0000-0080-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0074-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0080-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16629,11 +12933,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000165}, !- Handle + {00000000-0000-0000-0080-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0074-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16646,11 +12950,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000166}, !- Handle + {00000000-0000-0000-0080-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16663,11 +12967,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000167}, !- Handle + {00000000-0000-0000-0080-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16680,11 +12984,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000168}, !- Handle + {00000000-0000-0000-0080-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16697,11 +13001,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000169}, !- Handle + {00000000-0000-0000-0080-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0074-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16714,27 +13018,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0082-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0087-000000000001}, !- Handle - {00000000-0000-0000-0084-000000000044}, !- Surface Name + {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0080-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0087-000000000002}, !- Handle - {00000000-0000-0000-0084-000000000001}, !- Surface Name + {00000000-0000-0000-0083-000000000002}, !- Handle + {00000000-0000-0000-0080-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -16743,21 +13047,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000007}, !- Thermostat Name + {00000000-0000-0000-0054-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000002}, !- Handle + {00000000-0000-0000-0084-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -16766,21 +13070,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000009}, !- Thermostat Name + {00000000-0000-0000-0054-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000003}, !- Handle + {00000000-0000-0000-0084-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -16789,21 +13093,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000008}, !- Thermostat Name + {00000000-0000-0000-0054-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000004}, !- Handle + {00000000-0000-0000-0084-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -16812,21 +13116,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000058}, !- Thermostat Name + {00000000-0000-0000-0054-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000005}, !- Handle + {00000000-0000-0000-0084-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -16835,21 +13139,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000052}, !- Thermostat Name + {00000000-0000-0000-0054-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000006}, !- Handle + {00000000-0000-0000-0084-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -16858,21 +13162,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000053}, !- Thermostat Name + {00000000-0000-0000-0054-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000007}, !- Handle + {00000000-0000-0000-0084-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -16881,21 +13185,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000060}, !- Thermostat Name + {00000000-0000-0000-0054-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000008}, !- Handle + {00000000-0000-0000-0084-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -16904,21 +13208,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000065}, !- Thermostat Name + {00000000-0000-0000-0054-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000009}, !- Handle + {00000000-0000-0000-0084-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -16927,21 +13231,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000067}, !- Thermostat Name + {00000000-0000-0000-0054-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000010}, !- Handle + {00000000-0000-0000-0084-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -16950,21 +13254,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000047}, !- Thermostat Name + {00000000-0000-0000-0054-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000011}, !- Handle + {00000000-0000-0000-0084-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -16973,21 +13277,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000055}, !- Thermostat Name + {00000000-0000-0000-0054-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000012}, !- Handle + {00000000-0000-0000-0084-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -16996,21 +13300,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000057}, !- Thermostat Name + {00000000-0000-0000-0054-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000013}, !- Handle + {00000000-0000-0000-0084-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17019,21 +13323,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000062}, !- Thermostat Name + {00000000-0000-0000-0054-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000014}, !- Handle + {00000000-0000-0000-0084-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17042,21 +13346,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000064}, !- Thermostat Name + {00000000-0000-0000-0054-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000015}, !- Handle + {00000000-0000-0000-0084-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17065,21 +13369,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000066}, !- Thermostat Name + {00000000-0000-0000-0054-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000016}, !- Handle + {00000000-0000-0000-0084-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17088,21 +13392,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000050}, !- Thermostat Name + {00000000-0000-0000-0054-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000017}, !- Handle + {00000000-0000-0000-0084-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17111,21 +13415,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000051}, !- Thermostat Name + {00000000-0000-0000-0054-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000018}, !- Handle + {00000000-0000-0000-0084-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17134,21 +13438,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000054}, !- Thermostat Name + {00000000-0000-0000-0054-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000019}, !- Handle + {00000000-0000-0000-0084-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17157,21 +13461,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000056}, !- Thermostat Name + {00000000-0000-0000-0054-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000020}, !- Handle + {00000000-0000-0000-0084-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17180,21 +13484,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000061}, !- Thermostat Name + {00000000-0000-0000-0054-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000021}, !- Handle + {00000000-0000-0000-0084-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17203,21 +13507,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000063}, !- Thermostat Name + {00000000-0000-0000-0054-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000022}, !- Handle + {00000000-0000-0000-0084-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17226,21 +13530,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000049}, !- Thermostat Name + {00000000-0000-0000-0054-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000023}, !- Handle + {00000000-0000-0000-0084-000000000023}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17249,444 +13553,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0051-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0051-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0051-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000013}, !- Thermostat Name + {00000000-0000-0000-0054-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0085-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0085-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000002}, !- Handle + {00000000-0000-0000-0085-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000003}, !- Handle + {00000000-0000-0000-0085-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000004}, !- Handle + {00000000-0000-0000-0085-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000005}, !- Handle + {00000000-0000-0000-0085-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000006}, !- Handle + {00000000-0000-0000-0085-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000007}, !- Handle + {00000000-0000-0000-0085-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000008}, !- Handle + {00000000-0000-0000-0085-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000009}, !- Handle + {00000000-0000-0000-0085-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000010}, !- Handle + {00000000-0000-0000-0085-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000011}, !- Handle + {00000000-0000-0000-0085-000000000011}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000012}, !- Handle + {00000000-0000-0000-0085-000000000012}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000013}, !- Handle + {00000000-0000-0000-0085-000000000013}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000014}, !- Handle + {00000000-0000-0000-0085-000000000014}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000015}, !- Handle + {00000000-0000-0000-0085-000000000015}, !- Handle Space Function Office - open plan Thermostat 1, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000016}, !- Handle + {00000000-0000-0000-0085-000000000016}, !- Handle Space Function Office - open plan Thermostat 10, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000017}, !- Handle + {00000000-0000-0000-0085-000000000017}, !- Handle Space Function Office - open plan Thermostat 11, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000018}, !- Handle + {00000000-0000-0000-0085-000000000018}, !- Handle Space Function Office - open plan Thermostat 12, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000019}, !- Handle + {00000000-0000-0000-0085-000000000019}, !- Handle Space Function Office - open plan Thermostat 13, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000020}, !- Handle + {00000000-0000-0000-0085-000000000020}, !- Handle Space Function Office - open plan Thermostat 14, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000021}, !- Handle + {00000000-0000-0000-0085-000000000021}, !- Handle Space Function Office - open plan Thermostat 15, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000022}, !- Handle + {00000000-0000-0000-0085-000000000022}, !- Handle Space Function Office - open plan Thermostat 16, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000023}, !- Handle + {00000000-0000-0000-0085-000000000023}, !- Handle Space Function Office - open plan Thermostat 17, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000024}, !- Handle + {00000000-0000-0000-0085-000000000024}, !- Handle Space Function Office - open plan Thermostat 18, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000025}, !- Handle + {00000000-0000-0000-0085-000000000025}, !- Handle Space Function Office - open plan Thermostat 19, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000026}, !- Handle + {00000000-0000-0000-0085-000000000026}, !- Handle Space Function Office - open plan Thermostat 2, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000027}, !- Handle + {00000000-0000-0000-0085-000000000027}, !- Handle Space Function Office - open plan Thermostat 20, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000028}, !- Handle + {00000000-0000-0000-0085-000000000028}, !- Handle Space Function Office - open plan Thermostat 21, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000029}, !- Handle + {00000000-0000-0000-0085-000000000029}, !- Handle Space Function Office - open plan Thermostat 22, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000030}, !- Handle + {00000000-0000-0000-0085-000000000030}, !- Handle Space Function Office - open plan Thermostat 23, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000031}, !- Handle + {00000000-0000-0000-0085-000000000031}, !- Handle Space Function Office - open plan Thermostat 24, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000032}, !- Handle + {00000000-0000-0000-0085-000000000032}, !- Handle Space Function Office - open plan Thermostat 25, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000033}, !- Handle + {00000000-0000-0000-0085-000000000033}, !- Handle Space Function Office - open plan Thermostat 26, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000034}, !- Handle + {00000000-0000-0000-0085-000000000034}, !- Handle Space Function Office - open plan Thermostat 27, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000035}, !- Handle + {00000000-0000-0000-0085-000000000035}, !- Handle Space Function Office - open plan Thermostat 28, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000036}, !- Handle + {00000000-0000-0000-0085-000000000036}, !- Handle Space Function Office - open plan Thermostat 29, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000037}, !- Handle + {00000000-0000-0000-0085-000000000037}, !- Handle Space Function Office - open plan Thermostat 3, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000038}, !- Handle + {00000000-0000-0000-0085-000000000038}, !- Handle Space Function Office - open plan Thermostat 30, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000039}, !- Handle + {00000000-0000-0000-0085-000000000039}, !- Handle Space Function Office - open plan Thermostat 31, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000040}, !- Handle + {00000000-0000-0000-0085-000000000040}, !- Handle Space Function Office - open plan Thermostat 32, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000041}, !- Handle + {00000000-0000-0000-0085-000000000041}, !- Handle Space Function Office - open plan Thermostat 33, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000042}, !- Handle + {00000000-0000-0000-0085-000000000042}, !- Handle Space Function Office - open plan Thermostat 34, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000043}, !- Handle + {00000000-0000-0000-0085-000000000043}, !- Handle Space Function Office - open plan Thermostat 35, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000044}, !- Handle + {00000000-0000-0000-0085-000000000044}, !- Handle Space Function Office - open plan Thermostat 36, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000045}, !- Handle + {00000000-0000-0000-0085-000000000045}, !- Handle Space Function Office - open plan Thermostat 37, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000046}, !- Handle + {00000000-0000-0000-0085-000000000046}, !- Handle Space Function Office - open plan Thermostat 38, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000047}, !- Handle + {00000000-0000-0000-0085-000000000047}, !- Handle Space Function Office - open plan Thermostat 39, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000048}, !- Handle + {00000000-0000-0000-0085-000000000048}, !- Handle Space Function Office - open plan Thermostat 4, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000049}, !- Handle + {00000000-0000-0000-0085-000000000049}, !- Handle Space Function Office - open plan Thermostat 40, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000050}, !- Handle + {00000000-0000-0000-0085-000000000050}, !- Handle Space Function Office - open plan Thermostat 41, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000051}, !- Handle + {00000000-0000-0000-0085-000000000051}, !- Handle Space Function Office - open plan Thermostat 42, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000052}, !- Handle + {00000000-0000-0000-0085-000000000052}, !- Handle Space Function Office - open plan Thermostat 43, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000053}, !- Handle + {00000000-0000-0000-0085-000000000053}, !- Handle Space Function Office - open plan Thermostat 44, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000054}, !- Handle + {00000000-0000-0000-0085-000000000054}, !- Handle Space Function Office - open plan Thermostat 45, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000055}, !- Handle + {00000000-0000-0000-0085-000000000055}, !- Handle Space Function Office - open plan Thermostat 46, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000056}, !- Handle + {00000000-0000-0000-0085-000000000056}, !- Handle Space Function Office - open plan Thermostat 47, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000057}, !- Handle + {00000000-0000-0000-0085-000000000057}, !- Handle Space Function Office - open plan Thermostat 48, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000058}, !- Handle + {00000000-0000-0000-0085-000000000058}, !- Handle Space Function Office - open plan Thermostat 49, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000059}, !- Handle + {00000000-0000-0000-0085-000000000059}, !- Handle Space Function Office - open plan Thermostat 5, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000060}, !- Handle + {00000000-0000-0000-0085-000000000060}, !- Handle Space Function Office - open plan Thermostat 50, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000061}, !- Handle + {00000000-0000-0000-0085-000000000061}, !- Handle Space Function Office - open plan Thermostat 51, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000062}, !- Handle + {00000000-0000-0000-0085-000000000062}, !- Handle Space Function Office - open plan Thermostat 52, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000063}, !- Handle + {00000000-0000-0000-0085-000000000063}, !- Handle Space Function Office - open plan Thermostat 53, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000064}, !- Handle + {00000000-0000-0000-0085-000000000064}, !- Handle Space Function Office - open plan Thermostat 54, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000065}, !- Handle + {00000000-0000-0000-0085-000000000065}, !- Handle Space Function Office - open plan Thermostat 55, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000066}, !- Handle + {00000000-0000-0000-0085-000000000066}, !- Handle Space Function Office - open plan Thermostat 56, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000067}, !- Handle + {00000000-0000-0000-0085-000000000067}, !- Handle Space Function Office - open plan Thermostat 57, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000068}, !- Handle + {00000000-0000-0000-0085-000000000068}, !- Handle Space Function Office - open plan Thermostat 6, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000069}, !- Handle + {00000000-0000-0000-0085-000000000069}, !- Handle Space Function Office - open plan Thermostat 7, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000070}, !- Handle + {00000000-0000-0000-0085-000000000070}, !- Handle Space Function Office - open plan Thermostat 8, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000071}, !- Handle + {00000000-0000-0000-0085-000000000071}, !- Handle Space Function Office - open plan Thermostat 9, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000072}, !- Handle + {00000000-0000-0000-0085-000000000072}, !- Handle Space Function Office - open plan Thermostat, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0087-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Handle 1103gal Electricity Water Heater - 744kBtu/hr 1 Therm Eff, !- Name 4.17378596588637, !- Tank Volume {m3} - {00000000-0000-0000-0062-000000000019}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0058-000000000019}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -17704,7 +14008,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0062-000000000024}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0058-000000000021}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 8.90910625690548, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -17714,8 +14018,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000333}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000334}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000159}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000160}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -17728,18 +14032,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0093-000000000001}, !- Handle - {00000000-0000-0000-0092-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle Core_bottom WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0017-000000000350}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000351}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000176}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000177}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17747,13 +14051,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Handle Core_mid WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0017-000000000354}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000355}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000180}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000181}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17761,13 +14065,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Handle Core_top WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0017-000000000358}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000359}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000184}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000185}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17775,13 +14079,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0017-000000000362}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000363}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000188}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000189}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17789,13 +14093,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000366}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000367}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000192}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000193}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17803,13 +14107,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000370}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000371}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000196}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000197}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17817,13 +14121,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000374}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000375}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000200}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000201}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17831,13 +14135,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000378}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000379}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000204}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000205}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17845,13 +14149,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000382}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000383}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000208}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17859,13 +14163,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000386}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000387}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000212}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000213}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17873,13 +14177,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000390}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000391}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000216}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000217}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17887,13 +14191,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000394}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000395}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000220}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000221}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17901,13 +14205,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000398}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000399}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000225}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17915,13 +14219,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000402}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000403}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000228}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000229}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17929,13 +14233,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000406}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000407}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000232}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000233}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17943,13 +14247,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000410}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000411}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000236}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000237}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17957,13 +14261,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000414}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000415}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000240}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000241}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17971,13 +14275,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000418}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000419}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000244}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000245}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17985,13 +14289,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000422}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000423}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000248}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000249}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17999,314 +14303,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0091-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0091-000000000001}, !- Handle Core_bottom Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0096-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000002}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000002}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000002}, !- Handle + {00000000-0000-0000-0091-000000000002}, !- Handle Core_mid Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0096-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000003}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000003}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000003}, !- Handle + {00000000-0000-0000-0091-000000000003}, !- Handle Core_top Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0096-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000004}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000004}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000004}, !- Handle + {00000000-0000-0000-0091-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0096-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000005}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000005}, !- Handle + {00000000-0000-0000-0091-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0096-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000006}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000006}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000006}, !- Handle + {00000000-0000-0000-0091-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0096-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000007}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000007}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000007}, !- Handle + {00000000-0000-0000-0091-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0096-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000008}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000008}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000008}, !- Handle + {00000000-0000-0000-0091-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000011}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000011}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000009}, !- Handle + {00000000-0000-0000-0091-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000012}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000012}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000010}, !- Handle + {00000000-0000-0000-0091-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000013}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000013}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000011}, !- Handle + {00000000-0000-0000-0091-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000014}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000014}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000012}, !- Handle + {00000000-0000-0000-0091-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000015}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000015}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000013}, !- Handle + {00000000-0000-0000-0091-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000016}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000016}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000014}, !- Handle + {00000000-0000-0000-0091-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000017}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000017}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000015}, !- Handle + {00000000-0000-0000-0091-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000018}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000018}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000016}, !- Handle + {00000000-0000-0000-0091-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000019}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000019}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000017}, !- Handle + {00000000-0000-0000-0091-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000020}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000020}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000018}, !- Handle + {00000000-0000-0000-0091-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000021}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000021}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000019}, !- Handle + {00000000-0000-0000-0091-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000022}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0092-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0074-000000000022}, !- Space Name + {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle Core_bottom 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000002}, !- Handle + {00000000-0000-0000-0092-000000000002}, !- Handle Core_mid 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000003}, !- Handle + {00000000-0000-0000-0092-000000000003}, !- Handle Core_top 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000004}, !- Handle + {00000000-0000-0000-0092-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.89703570440437e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000005}, !- Handle + {00000000-0000-0000-0092-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755489e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000006}, !- Handle + {00000000-0000-0000-0092-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755488e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000007}, !- Handle + {00000000-0000-0000-0092-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755488e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000008}, !- Handle + {00000000-0000-0000-0092-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000009}, !- Handle + {00000000-0000-0000-0092-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000010}, !- Handle + {00000000-0000-0000-0092-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000011}, !- Handle + {00000000-0000-0000-0092-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000012}, !- Handle + {00000000-0000-0000-0092-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000013}, !- Handle + {00000000-0000-0000-0092-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000014}, !- Handle + {00000000-0000-0000-0092-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000015}, !- Handle + {00000000-0000-0000-0092-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000016}, !- Handle + {00000000-0000-0000-0092-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000017}, !- Handle + {00000000-0000-0000-0092-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000018}, !- Handle + {00000000-0000-0000-0092-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000019}, !- Handle + {00000000-0000-0000-0092-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0093-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -18322,188 +14626,62 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0098-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Handle SimpleGlazing:U=0.220 SHGC=0.600, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0095-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle Zone HVAC Baseboard Convective Electric 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000002}, !- Handle - Zone HVAC Baseboard Convective Electric 10, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000003}, !- Handle - Zone HVAC Baseboard Convective Electric 11, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000004}, !- Handle - Zone HVAC Baseboard Convective Electric 12, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000005}, !- Handle - Zone HVAC Baseboard Convective Electric 13, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000006}, !- Handle - Zone HVAC Baseboard Convective Electric 14, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000007}, !- Handle - Zone HVAC Baseboard Convective Electric 15, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000008}, !- Handle - Zone HVAC Baseboard Convective Electric 16, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000009}, !- Handle - Zone HVAC Baseboard Convective Electric 17, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000010}, !- Handle - Zone HVAC Baseboard Convective Electric 18, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000011}, !- Handle - Zone HVAC Baseboard Convective Electric 19, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000012}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Handle Zone HVAC Baseboard Convective Electric 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000013}, !- Handle - Zone HVAC Baseboard Convective Electric 20, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000014}, !- Handle - Zone HVAC Baseboard Convective Electric 3, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000015}, !- Handle - Zone HVAC Baseboard Convective Electric 4, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000016}, !- Handle - Zone HVAC Baseboard Convective Electric 5, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000017}, !- Handle - Zone HVAC Baseboard Convective Electric 6, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000018}, !- Handle - Zone HVAC Baseboard Convective Electric 7, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000019}, !- Handle - Zone HVAC Baseboard Convective Electric 8, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0100-000000000020}, !- Handle - Zone HVAC Baseboard Convective Electric 9, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + {00000000-0000-0000-0055-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000001}, !- Thermal Zone + {00000000-0000-0000-0084-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000002}, !- Handle + {00000000-0000-0000-0097-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000002}, !- Thermal Zone + {00000000-0000-0000-0084-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000003}, !- Handle + {00000000-0000-0000-0097-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000003}, !- Thermal Zone + {00000000-0000-0000-0084-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000004}, !- Handle + {00000000-0000-0000-0097-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000004}, !- Thermal Zone + {00000000-0000-0000-0084-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000012}, !- Zone Equipment 1 + {00000000-0000-0000-0096-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -18515,299 +14693,119 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000005}, !- Handle + {00000000-0000-0000-0097-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000005}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000005}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000006}, !- Handle + {00000000-0000-0000-0097-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000006}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000017}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000006}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000007}, !- Handle + {00000000-0000-0000-0097-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000007}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000007}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000008}, !- Handle + {00000000-0000-0000-0097-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000008}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000018}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000008}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000009}, !- Handle + {00000000-0000-0000-0097-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000016}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000009}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000010}, !- Handle + {00000000-0000-0000-0097-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000019}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000010}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000011}, !- Handle + {00000000-0000-0000-0097-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000011}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000012}, !- Handle + {00000000-0000-0000-0097-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000012}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000013}, !- Handle + {00000000-0000-0000-0097-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000013}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000014}, !- Handle + {00000000-0000-0000-0097-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000020}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000014}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000015}, !- Handle + {00000000-0000-0000-0097-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000015}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000016}, !- Handle + {00000000-0000-0000-0097-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000016}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000017}, !- Handle + {00000000-0000-0000-0097-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000009}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000017}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000018}, !- Handle + {00000000-0000-0000-0097-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000010}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000018}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000019}, !- Handle + {00000000-0000-0000-0097-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000019}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000008}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000019}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000020}, !- Handle + {00000000-0000-0000-0097-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000020}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000011}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000020}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000021}, !- Handle + {00000000-0000-0000-0097-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000021}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000021}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000022}, !- Handle + {00000000-0000-0000-0097-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000022}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0084-000000000022}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000023}, !- Handle + {00000000-0000-0000-0097-000000000023}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000023}, !- Thermal Zone + {00000000-0000-0000-0084-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0096-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 707c43c12b..8e0a6bc6c8 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000024}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -5129,61 +5129,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {258f88d8-afc1-4dc7-9726-0f654a65f09c}<23.9 && {258f88d8-afc1-4dc7-9726-0f654a65f09c}>1.7, !- Program Line 1 - SET {10795809-f4bb-417e-8ec6-d503ec82f1b2} = 29.4, !- Program Line 2 - SET {6baee93a-7595-4722-a488-5a2883cb7d8f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {258f88d8-afc1-4dc7-9726-0f654a65f09c}<23.9 && {258f88d8-afc1-4dc7-9726-0f654a65f09c}>1.7, !- Program Line 4 - SET {10795809-f4bb-417e-8ec6-d503ec82f1b2} = 29.4, !- Program Line 5 - SET {6baee93a-7595-4722-a488-5a2883cb7d8f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {258f88d8-afc1-4dc7-9726-0f654a65f09c}<23.9 && {258f88d8-afc1-4dc7-9726-0f654a65f09c}>1.7, !- Program Line 7 - SET {10795809-f4bb-417e-8ec6-d503ec82f1b2} = 29.4, !- Program Line 8 - SET {6baee93a-7595-4722-a488-5a2883cb7d8f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {258f88d8-afc1-4dc7-9726-0f654a65f09c}<23.9 && {258f88d8-afc1-4dc7-9726-0f654a65f09c}>1.7, !- Program Line 10 - SET {10795809-f4bb-417e-8ec6-d503ec82f1b2} = 29.4, !- Program Line 11 - SET {6baee93a-7595-4722-a488-5a2883cb7d8f} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6d7a5e09-93e8-4e68-9693-0775a6c1eeaf}<23.9 && {6d7a5e09-93e8-4e68-9693-0775a6c1eeaf}>1.7, !- Program Line 1 + SET {d9ab3803-c30f-48ab-9278-3663297ea7d2} = 29.4, !- Program Line 2 + SET {b2809735-f2a9-4aae-a3e8-187035645875} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6d7a5e09-93e8-4e68-9693-0775a6c1eeaf}<23.9 && {6d7a5e09-93e8-4e68-9693-0775a6c1eeaf}>1.7, !- Program Line 4 + SET {d9ab3803-c30f-48ab-9278-3663297ea7d2} = 29.4, !- Program Line 5 + SET {b2809735-f2a9-4aae-a3e8-187035645875} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6d7a5e09-93e8-4e68-9693-0775a6c1eeaf}<23.9 && {6d7a5e09-93e8-4e68-9693-0775a6c1eeaf}>1.7, !- Program Line 7 + SET {d9ab3803-c30f-48ab-9278-3663297ea7d2} = 29.4, !- Program Line 8 + SET {b2809735-f2a9-4aae-a3e8-187035645875} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6d7a5e09-93e8-4e68-9693-0775a6c1eeaf}<23.9 && {6d7a5e09-93e8-4e68-9693-0775a6c1eeaf}>1.7, !- Program Line 10 + SET {d9ab3803-c30f-48ab-9278-3663297ea7d2} = 29.4, !- Program Line 11 + SET {b2809735-f2a9-4aae-a3e8-187035645875} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {10795809-f4bb-417e-8ec6-d503ec82f1b2} = NULL, !- Program Line 14 - SET {6baee93a-7595-4722-a488-5a2883cb7d8f} = NULL, !- Program Line 15 + SET {d9ab3803-c30f-48ab-9278-3663297ea7d2} = NULL, !- Program Line 14 + SET {b2809735-f2a9-4aae-a3e8-187035645875} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {113b1757-ff33-4628-88a1-71f148ff5b2c}<23.9 && {113b1757-ff33-4628-88a1-71f148ff5b2c}>1.7, !- Program Line 1 - SET {05ea870d-f3fb-483b-8faf-c8fdeee47d99} = 29.4, !- Program Line 2 - SET {4469092d-7c40-41db-a008-7aee7012e7ef} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {113b1757-ff33-4628-88a1-71f148ff5b2c}<23.9 && {113b1757-ff33-4628-88a1-71f148ff5b2c}>1.7, !- Program Line 4 - SET {05ea870d-f3fb-483b-8faf-c8fdeee47d99} = 29.4, !- Program Line 5 - SET {4469092d-7c40-41db-a008-7aee7012e7ef} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {113b1757-ff33-4628-88a1-71f148ff5b2c}<23.9 && {113b1757-ff33-4628-88a1-71f148ff5b2c}>1.7, !- Program Line 7 - SET {05ea870d-f3fb-483b-8faf-c8fdeee47d99} = 29.4, !- Program Line 8 - SET {4469092d-7c40-41db-a008-7aee7012e7ef} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {113b1757-ff33-4628-88a1-71f148ff5b2c}<23.9 && {113b1757-ff33-4628-88a1-71f148ff5b2c}>1.7, !- Program Line 10 - SET {05ea870d-f3fb-483b-8faf-c8fdeee47d99} = 29.4, !- Program Line 11 - SET {4469092d-7c40-41db-a008-7aee7012e7ef} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {13c21f2a-214e-424a-936b-74f34f8d6063}<23.9 && {13c21f2a-214e-424a-936b-74f34f8d6063}>1.7, !- Program Line 1 + SET {20d7ece7-a623-4582-a091-b77753f88013} = 29.4, !- Program Line 2 + SET {177885d8-7aca-4780-9c4b-8ce1133669a7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {13c21f2a-214e-424a-936b-74f34f8d6063}<23.9 && {13c21f2a-214e-424a-936b-74f34f8d6063}>1.7, !- Program Line 4 + SET {20d7ece7-a623-4582-a091-b77753f88013} = 29.4, !- Program Line 5 + SET {177885d8-7aca-4780-9c4b-8ce1133669a7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {13c21f2a-214e-424a-936b-74f34f8d6063}<23.9 && {13c21f2a-214e-424a-936b-74f34f8d6063}>1.7, !- Program Line 7 + SET {20d7ece7-a623-4582-a091-b77753f88013} = 29.4, !- Program Line 8 + SET {177885d8-7aca-4780-9c4b-8ce1133669a7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {13c21f2a-214e-424a-936b-74f34f8d6063}<23.9 && {13c21f2a-214e-424a-936b-74f34f8d6063}>1.7, !- Program Line 10 + SET {20d7ece7-a623-4582-a091-b77753f88013} = 29.4, !- Program Line 11 + SET {177885d8-7aca-4780-9c4b-8ce1133669a7} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {05ea870d-f3fb-483b-8faf-c8fdeee47d99} = NULL, !- Program Line 14 - SET {4469092d-7c40-41db-a008-7aee7012e7ef} = NULL, !- Program Line 15 + SET {20d7ece7-a623-4582-a091-b77753f88013} = NULL, !- Program Line 14 + SET {177885d8-7aca-4780-9c4b-8ce1133669a7} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {43431a92-5add-4f22-ab5f-f2b61a02a50c}<23.9 && {43431a92-5add-4f22-ab5f-f2b61a02a50c}>1.7, !- Program Line 1 - SET {2925c6fa-b738-4db6-9688-b31674f06d70} = 29.4, !- Program Line 2 - SET {925dcb71-c3b8-43e5-80e1-c7a8b8dbb168} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {43431a92-5add-4f22-ab5f-f2b61a02a50c}<23.9 && {43431a92-5add-4f22-ab5f-f2b61a02a50c}>1.7, !- Program Line 4 - SET {2925c6fa-b738-4db6-9688-b31674f06d70} = 29.4, !- Program Line 5 - SET {925dcb71-c3b8-43e5-80e1-c7a8b8dbb168} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {43431a92-5add-4f22-ab5f-f2b61a02a50c}<23.9 && {43431a92-5add-4f22-ab5f-f2b61a02a50c}>1.7, !- Program Line 7 - SET {2925c6fa-b738-4db6-9688-b31674f06d70} = 29.4, !- Program Line 8 - SET {925dcb71-c3b8-43e5-80e1-c7a8b8dbb168} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {43431a92-5add-4f22-ab5f-f2b61a02a50c}<23.9 && {43431a92-5add-4f22-ab5f-f2b61a02a50c}>1.7, !- Program Line 10 - SET {2925c6fa-b738-4db6-9688-b31674f06d70} = 29.4, !- Program Line 11 - SET {925dcb71-c3b8-43e5-80e1-c7a8b8dbb168} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3f6256e4-7b70-4646-a318-0bae3afab62e}<23.9 && {3f6256e4-7b70-4646-a318-0bae3afab62e}>1.7, !- Program Line 1 + SET {7edf15fc-42be-4709-be50-bbe5bbefc97a} = 29.4, !- Program Line 2 + SET {e95bdcc5-b761-442d-8123-98ace2ca7de6} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3f6256e4-7b70-4646-a318-0bae3afab62e}<23.9 && {3f6256e4-7b70-4646-a318-0bae3afab62e}>1.7, !- Program Line 4 + SET {7edf15fc-42be-4709-be50-bbe5bbefc97a} = 29.4, !- Program Line 5 + SET {e95bdcc5-b761-442d-8123-98ace2ca7de6} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3f6256e4-7b70-4646-a318-0bae3afab62e}<23.9 && {3f6256e4-7b70-4646-a318-0bae3afab62e}>1.7, !- Program Line 7 + SET {7edf15fc-42be-4709-be50-bbe5bbefc97a} = 29.4, !- Program Line 8 + SET {e95bdcc5-b761-442d-8123-98ace2ca7de6} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3f6256e4-7b70-4646-a318-0bae3afab62e}<23.9 && {3f6256e4-7b70-4646-a318-0bae3afab62e}>1.7, !- Program Line 10 + SET {7edf15fc-42be-4709-be50-bbe5bbefc97a} = 29.4, !- Program Line 11 + SET {e95bdcc5-b761-442d-8123-98ace2ca7de6} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {2925c6fa-b738-4db6-9688-b31674f06d70} = NULL, !- Program Line 14 - SET {925dcb71-c3b8-43e5-80e1-c7a8b8dbb168} = NULL, !- Program Line 15 + SET {7edf15fc-42be-4709-be50-bbe5bbefc97a} = NULL, !- Program Line 14 + SET {e95bdcc5-b761-442d-8123-98ace2ca7de6} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -6767,43 +6767,43 @@ OS:Node, OS:Node, {00000000-0000-0000-0048-000000000147}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000148}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000149}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000057}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000150}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000151}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000054}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000152}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000153}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port @@ -8423,7 +8423,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -8438,7 +8438,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8447,7 +8447,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9279,7 +9279,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000024}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000057}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000058}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 9265dd502f..334fd2d724 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000024}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -5219,61 +5219,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f324f311-557b-47f9-bc24-1109a37d4e49}<23.9 && {f324f311-557b-47f9-bc24-1109a37d4e49}>1.7, !- Program Line 1 - SET {ced4334c-cb07-4fba-809e-f7c08163b10c} = 29.4, !- Program Line 2 - SET {eb1d8f76-ef85-4b68-923a-17c0f7a4d9fd} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f324f311-557b-47f9-bc24-1109a37d4e49}<23.9 && {f324f311-557b-47f9-bc24-1109a37d4e49}>1.7, !- Program Line 4 - SET {ced4334c-cb07-4fba-809e-f7c08163b10c} = 29.4, !- Program Line 5 - SET {eb1d8f76-ef85-4b68-923a-17c0f7a4d9fd} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f324f311-557b-47f9-bc24-1109a37d4e49}<23.9 && {f324f311-557b-47f9-bc24-1109a37d4e49}>1.7, !- Program Line 7 - SET {ced4334c-cb07-4fba-809e-f7c08163b10c} = 29.4, !- Program Line 8 - SET {eb1d8f76-ef85-4b68-923a-17c0f7a4d9fd} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f324f311-557b-47f9-bc24-1109a37d4e49}<23.9 && {f324f311-557b-47f9-bc24-1109a37d4e49}>1.7, !- Program Line 10 - SET {ced4334c-cb07-4fba-809e-f7c08163b10c} = 29.4, !- Program Line 11 - SET {eb1d8f76-ef85-4b68-923a-17c0f7a4d9fd} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bec3235b-9b2b-4cd5-a2d4-a64b8a7117b8}<23.9 && {bec3235b-9b2b-4cd5-a2d4-a64b8a7117b8}>1.7, !- Program Line 1 + SET {2365dc9b-f63f-420f-956a-b238dcf59e40} = 29.4, !- Program Line 2 + SET {3027b193-2e63-4667-b822-d003a3baff50} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bec3235b-9b2b-4cd5-a2d4-a64b8a7117b8}<23.9 && {bec3235b-9b2b-4cd5-a2d4-a64b8a7117b8}>1.7, !- Program Line 4 + SET {2365dc9b-f63f-420f-956a-b238dcf59e40} = 29.4, !- Program Line 5 + SET {3027b193-2e63-4667-b822-d003a3baff50} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bec3235b-9b2b-4cd5-a2d4-a64b8a7117b8}<23.9 && {bec3235b-9b2b-4cd5-a2d4-a64b8a7117b8}>1.7, !- Program Line 7 + SET {2365dc9b-f63f-420f-956a-b238dcf59e40} = 29.4, !- Program Line 8 + SET {3027b193-2e63-4667-b822-d003a3baff50} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bec3235b-9b2b-4cd5-a2d4-a64b8a7117b8}<23.9 && {bec3235b-9b2b-4cd5-a2d4-a64b8a7117b8}>1.7, !- Program Line 10 + SET {2365dc9b-f63f-420f-956a-b238dcf59e40} = 29.4, !- Program Line 11 + SET {3027b193-2e63-4667-b822-d003a3baff50} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ced4334c-cb07-4fba-809e-f7c08163b10c} = NULL, !- Program Line 14 - SET {eb1d8f76-ef85-4b68-923a-17c0f7a4d9fd} = NULL, !- Program Line 15 + SET {2365dc9b-f63f-420f-956a-b238dcf59e40} = NULL, !- Program Line 14 + SET {3027b193-2e63-4667-b822-d003a3baff50} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d360ab18-bbd8-4c06-a05f-82b55ee8865f}<23.9 && {d360ab18-bbd8-4c06-a05f-82b55ee8865f}>1.7, !- Program Line 1 - SET {f191c90c-3397-458c-984a-dacd0b4e830c} = 29.4, !- Program Line 2 - SET {3dd03a3a-248b-4cd8-9006-82eac7502232} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d360ab18-bbd8-4c06-a05f-82b55ee8865f}<23.9 && {d360ab18-bbd8-4c06-a05f-82b55ee8865f}>1.7, !- Program Line 4 - SET {f191c90c-3397-458c-984a-dacd0b4e830c} = 29.4, !- Program Line 5 - SET {3dd03a3a-248b-4cd8-9006-82eac7502232} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d360ab18-bbd8-4c06-a05f-82b55ee8865f}<23.9 && {d360ab18-bbd8-4c06-a05f-82b55ee8865f}>1.7, !- Program Line 7 - SET {f191c90c-3397-458c-984a-dacd0b4e830c} = 29.4, !- Program Line 8 - SET {3dd03a3a-248b-4cd8-9006-82eac7502232} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d360ab18-bbd8-4c06-a05f-82b55ee8865f}<23.9 && {d360ab18-bbd8-4c06-a05f-82b55ee8865f}>1.7, !- Program Line 10 - SET {f191c90c-3397-458c-984a-dacd0b4e830c} = 29.4, !- Program Line 11 - SET {3dd03a3a-248b-4cd8-9006-82eac7502232} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {21e053f1-4956-4004-a744-26545410b01b}<23.9 && {21e053f1-4956-4004-a744-26545410b01b}>1.7, !- Program Line 1 + SET {21116c29-c89a-4cae-b272-cfc7cca3f2a3} = 29.4, !- Program Line 2 + SET {838ba5fd-584c-409d-b8b1-f97a4e6938dd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {21e053f1-4956-4004-a744-26545410b01b}<23.9 && {21e053f1-4956-4004-a744-26545410b01b}>1.7, !- Program Line 4 + SET {21116c29-c89a-4cae-b272-cfc7cca3f2a3} = 29.4, !- Program Line 5 + SET {838ba5fd-584c-409d-b8b1-f97a4e6938dd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {21e053f1-4956-4004-a744-26545410b01b}<23.9 && {21e053f1-4956-4004-a744-26545410b01b}>1.7, !- Program Line 7 + SET {21116c29-c89a-4cae-b272-cfc7cca3f2a3} = 29.4, !- Program Line 8 + SET {838ba5fd-584c-409d-b8b1-f97a4e6938dd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {21e053f1-4956-4004-a744-26545410b01b}<23.9 && {21e053f1-4956-4004-a744-26545410b01b}>1.7, !- Program Line 10 + SET {21116c29-c89a-4cae-b272-cfc7cca3f2a3} = 29.4, !- Program Line 11 + SET {838ba5fd-584c-409d-b8b1-f97a4e6938dd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f191c90c-3397-458c-984a-dacd0b4e830c} = NULL, !- Program Line 14 - SET {3dd03a3a-248b-4cd8-9006-82eac7502232} = NULL, !- Program Line 15 + SET {21116c29-c89a-4cae-b272-cfc7cca3f2a3} = NULL, !- Program Line 14 + SET {838ba5fd-584c-409d-b8b1-f97a4e6938dd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b3ebc591-da6b-4582-a277-ea209b01111b}<23.9 && {b3ebc591-da6b-4582-a277-ea209b01111b}>1.7, !- Program Line 1 - SET {c70e65b3-5ab6-4d31-9778-4de5a0cb433e} = 29.4, !- Program Line 2 - SET {db28ec19-836e-4563-9be5-82ec40d9f0df} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b3ebc591-da6b-4582-a277-ea209b01111b}<23.9 && {b3ebc591-da6b-4582-a277-ea209b01111b}>1.7, !- Program Line 4 - SET {c70e65b3-5ab6-4d31-9778-4de5a0cb433e} = 29.4, !- Program Line 5 - SET {db28ec19-836e-4563-9be5-82ec40d9f0df} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b3ebc591-da6b-4582-a277-ea209b01111b}<23.9 && {b3ebc591-da6b-4582-a277-ea209b01111b}>1.7, !- Program Line 7 - SET {c70e65b3-5ab6-4d31-9778-4de5a0cb433e} = 29.4, !- Program Line 8 - SET {db28ec19-836e-4563-9be5-82ec40d9f0df} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b3ebc591-da6b-4582-a277-ea209b01111b}<23.9 && {b3ebc591-da6b-4582-a277-ea209b01111b}>1.7, !- Program Line 10 - SET {c70e65b3-5ab6-4d31-9778-4de5a0cb433e} = 29.4, !- Program Line 11 - SET {db28ec19-836e-4563-9be5-82ec40d9f0df} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5e5d9a48-eea0-43fa-a7d6-abaf09a7564d}<23.9 && {5e5d9a48-eea0-43fa-a7d6-abaf09a7564d}>1.7, !- Program Line 1 + SET {ddb8f115-8c59-40c9-9a80-9a1f76ae90a2} = 29.4, !- Program Line 2 + SET {b99ad149-2437-487f-92fb-7d38e052b2eb} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5e5d9a48-eea0-43fa-a7d6-abaf09a7564d}<23.9 && {5e5d9a48-eea0-43fa-a7d6-abaf09a7564d}>1.7, !- Program Line 4 + SET {ddb8f115-8c59-40c9-9a80-9a1f76ae90a2} = 29.4, !- Program Line 5 + SET {b99ad149-2437-487f-92fb-7d38e052b2eb} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5e5d9a48-eea0-43fa-a7d6-abaf09a7564d}<23.9 && {5e5d9a48-eea0-43fa-a7d6-abaf09a7564d}>1.7, !- Program Line 7 + SET {ddb8f115-8c59-40c9-9a80-9a1f76ae90a2} = 29.4, !- Program Line 8 + SET {b99ad149-2437-487f-92fb-7d38e052b2eb} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5e5d9a48-eea0-43fa-a7d6-abaf09a7564d}<23.9 && {5e5d9a48-eea0-43fa-a7d6-abaf09a7564d}>1.7, !- Program Line 10 + SET {ddb8f115-8c59-40c9-9a80-9a1f76ae90a2} = 29.4, !- Program Line 11 + SET {b99ad149-2437-487f-92fb-7d38e052b2eb} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c70e65b3-5ab6-4d31-9778-4de5a0cb433e} = NULL, !- Program Line 14 - SET {db28ec19-836e-4563-9be5-82ec40d9f0df} = NULL, !- Program Line 15 + SET {ddb8f115-8c59-40c9-9a80-9a1f76ae90a2} = NULL, !- Program Line 14 + SET {b99ad149-2437-487f-92fb-7d38e052b2eb} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -6857,43 +6857,43 @@ OS:Node, OS:Node, {00000000-0000-0000-0048-000000000147}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000148}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000149}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000057}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000150}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000151}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000054}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000152}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000153}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port @@ -8513,7 +8513,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -8528,7 +8528,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8537,7 +8537,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9369,7 +9369,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000024}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000057}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000058}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm index 51616c5a94..97bdd03e28 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0065-000000000026}, !- Object Name + {00000000-0000-0000-0061-000000000023}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.762049603789063, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0065-000000000030}, !- Object Name + {00000000-0000-0000-0061-000000000024}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.224865342415058, !- Feature Value 1 @@ -32,66 +32,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0065-000000000027}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.34123633723931, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle - {00000000-0000-0000-0065-000000000028}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.34123633723931, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle - {00000000-0000-0000-0065-000000000029}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.34123633723931, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000006}, !- Handle {00000000-0000-0000-0013-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000007}, !- Handle + {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0013-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0065-000000000026}, !- Availability Schedule - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0061-000000000023}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -110,75 +62,9 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0065-000000000027}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0020-000000000189}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0020-000000000192}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0020-000000000191}, !- Demand Side Inlet Node A - {00000000-0000-0000-0020-000000000190}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0065-000000000028}, !- Availability Schedule - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0020-000000000299}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0020-000000000302}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0020-000000000301}, !- Demand Side Inlet Node A - {00000000-0000-0000-0020-000000000300}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000004}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3, !- Name - , !- Controller List Name - {00000000-0000-0000-0065-000000000029}, !- Availability Schedule - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0020-000000000409}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0020-000000000412}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0020-000000000411}, !- Demand Side Inlet Node A - {00000000-0000-0000-0020-000000000410}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0065-000000000030}, !- Availability Schedule + {00000000-0000-0000-0061-000000000024}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -218,39 +104,6 @@ OS:AirLoopHVAC:OutdoorAirSystem, {00000000-0000-0000-0020-000000000164}, !- Relief Air Stream Node Name {00000000-0000-0000-0020-000000000174}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0025-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0020-000000000210}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000203}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000204}, !- Relief Air Stream Node Name - {00000000-0000-0000-0020-000000000214}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000004}, !- Handle - Air Loop HVAC Outdoor Air System 4, !- Name - {00000000-0000-0000-0025-000000000004}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0020-000000000320}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000313}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000314}, !- Relief Air Stream Node Name - {00000000-0000-0000-0020-000000000324}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000005}, !- Handle - Air Loop HVAC Outdoor Air System 5, !- Name - {00000000-0000-0000-0025-000000000005}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0020-000000000430}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000423}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000424}, !- Relief Air Stream Node Name - {00000000-0000-0000-0020-000000000434}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -263,39 +116,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0020-000000000155}, !- Outlet Node Name {00000000-0000-0000-0020-000000000185}; !- Inlet Node Name 1 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0020-000000000194}, !- Outlet Node Name - {00000000-0000-0000-0020-000000000225}, !- Inlet Node Name 1 - {00000000-0000-0000-0020-000000000239}, !- Inlet Node Name 2 - {00000000-0000-0000-0020-000000000253}, !- Inlet Node Name 3 - {00000000-0000-0000-0020-000000000267}, !- Inlet Node Name 4 - {00000000-0000-0000-0020-000000000281}, !- Inlet Node Name 5 - {00000000-0000-0000-0020-000000000295}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000004}, !- Handle - Air Loop HVAC Zone Mixer 4, !- Name - {00000000-0000-0000-0020-000000000304}, !- Outlet Node Name - {00000000-0000-0000-0020-000000000335}, !- Inlet Node Name 1 - {00000000-0000-0000-0020-000000000349}, !- Inlet Node Name 2 - {00000000-0000-0000-0020-000000000363}, !- Inlet Node Name 3 - {00000000-0000-0000-0020-000000000377}, !- Inlet Node Name 4 - {00000000-0000-0000-0020-000000000391}, !- Inlet Node Name 5 - {00000000-0000-0000-0020-000000000405}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000005}, !- Handle - Air Loop HVAC Zone Mixer 5, !- Name - {00000000-0000-0000-0020-000000000414}, !- Outlet Node Name - {00000000-0000-0000-0020-000000000445}, !- Inlet Node Name 1 - {00000000-0000-0000-0020-000000000459}, !- Inlet Node Name 2 - {00000000-0000-0000-0020-000000000473}, !- Inlet Node Name 3 - {00000000-0000-0000-0020-000000000487}, !- Inlet Node Name 4 - {00000000-0000-0000-0020-000000000501}, !- Inlet Node Name 5 - {00000000-0000-0000-0020-000000000515}; !- Inlet Node Name 6 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -308,43 +128,10 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0020-000000000154}, !- Inlet Node Name {00000000-0000-0000-0020-000000000186}; !- Outlet Node Name 1 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0020-000000000193}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000226}, !- Outlet Node Name 1 - {00000000-0000-0000-0020-000000000240}, !- Outlet Node Name 2 - {00000000-0000-0000-0020-000000000254}, !- Outlet Node Name 3 - {00000000-0000-0000-0020-000000000268}, !- Outlet Node Name 4 - {00000000-0000-0000-0020-000000000282}, !- Outlet Node Name 5 - {00000000-0000-0000-0020-000000000296}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000004}, !- Handle - Air Loop HVAC Zone Splitter 4, !- Name - {00000000-0000-0000-0020-000000000303}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000336}, !- Outlet Node Name 1 - {00000000-0000-0000-0020-000000000350}, !- Outlet Node Name 2 - {00000000-0000-0000-0020-000000000364}, !- Outlet Node Name 3 - {00000000-0000-0000-0020-000000000378}, !- Outlet Node Name 4 - {00000000-0000-0000-0020-000000000392}, !- Outlet Node Name 5 - {00000000-0000-0000-0020-000000000406}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000005}, !- Handle - Air Loop HVAC Zone Splitter 5, !- Name - {00000000-0000-0000-0020-000000000413}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000446}, !- Outlet Node Name 1 - {00000000-0000-0000-0020-000000000460}, !- Outlet Node Name 2 - {00000000-0000-0000-0020-000000000474}, !- Outlet Node Name 3 - {00000000-0000-0000-0020-000000000488}, !- Outlet Node Name 4 - {00000000-0000-0000-0020-000000000502}, !- Outlet Node Name 5 - {00000000-0000-0000-0020-000000000516}; !- Outlet Node Name 6 - OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000095}, !- Air Inlet Node Name {00000000-0000-0000-0020-000000000096}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -352,14 +139,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000187}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000012}, !- Reheat Coil Name + {00000000-0000-0000-0018-000000000002}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0020-000000000188}, !- Air Outlet Node Name @@ -370,511 +157,76 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000365}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000005}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000366}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000379}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000380}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0058-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0047-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0047-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0047-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0047-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000393}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000394}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0058-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0047-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0047-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0047-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0047-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000407}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000408}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000447}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000010}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000448}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000461}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000011}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000462}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000008}, !- Handle - Air Terminal Single Duct VAV Reheat 16, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000475}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000013}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000476}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000009}, !- Handle - Air Terminal Single Duct VAV Reheat 17, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000489}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000014}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000490}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000010}, !- Handle - Air Terminal Single Duct VAV Reheat 18, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000503}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000015}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000504}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000011}, !- Handle - Air Terminal Single Duct VAV Reheat 19, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000517}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000016}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000518}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000227}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000018}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000228}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000241}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000019}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000242}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 4, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000255}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000020}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000256}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 5, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000269}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000021}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000270}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000016}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000283}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000022}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000284}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000017}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000297}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000023}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000298}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000018}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000337}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000003}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000338}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000019}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000351}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000352}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0051-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0051-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0051-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000004}, !- Handle - Availability Manager Night Cycle 4, !- Name - {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0051-000000000013}, !- Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000014}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000015}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000005}, !- Handle - Availability Manager Night Cycle 5, !- Name - {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0051-000000000017}, !- Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000018}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000019}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name - {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name - {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000006}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000007}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000008}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000009}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Boiler:HotWater, {00000000-0000-0000-0010-000000000001}, !- Handle - Primary Boiler 10574kBtu/hr 0.833 Combustion Eff, !- Name + Primary Boiler 287kBtu/hr 0.85 AFUE, !- Name NaturalGas, !- Fuel Type - 3098995.03531853, !- Nominal Capacity {W} - 0.826, !- Nominal Thermal Efficiency + 84089.2379605649, !- Nominal Capacity {W} + 0.85, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0029-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} - 0.25, !- Minimum Part Load Ratio + , !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio {00000000-0000-0000-0020-000000000058}, !- Boiler Water Inlet Node Name {00000000-0000-0000-0020-000000000059}, !- Boiler Water Outlet Node Name 99, !- Water Outlet Upper Temperature Limit {C} - LeavingSetpointModulated, !- Boiler Flow Mode + ConstantFlow, !- Boiler Flow Mode 0, !- On Cycle Parasitic Electric Load {W} 0, !- Off Cycle Parasitic Fuel Load {W} 1, !- Sizing Factor @@ -925,7 +277,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0061-000000000023}, !- Group Rendering Name + {00000000-0000-0000-0057-000000000023}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -935,7 +287,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0061-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0057-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -945,7 +297,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0061-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0057-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -955,14 +307,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0061-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0057-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0013-000000000001}, !- Handle - Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton, !- Name - 2078476.93007681, !- Reference Capacity {W} - 5.67258064516129, !- Reference COP {W/W} + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton, !- Name + 18839.7768690201, !- Reference Capacity {W} + 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -1004,9 +356,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0028-000000000011}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0030-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0028-000000000009}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0030-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -1041,8 +393,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0015-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 79kBtu/hr 9.7EER, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 170kBtu/hr 9.7EER, !- Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.36680611439836, !- Rated COP {W/W} @@ -1077,7 +429,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0016-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -1092,64 +444,10 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0020-000000000200}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000201}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000211}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000208}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0020-000000000310}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000311}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000321}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000318}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Cooling Water 4, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0020-000000000420}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000421}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000431}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000428}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Gas, {00000000-0000-0000-0017-000000000001}, !- Handle Coil Heating Gas 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name 0.924, !- Gas Burner Efficiency AutoSize, !- Nominal Capacity {W} {00000000-0000-0000-0020-000000000084}, !- Air Inlet Node Name @@ -1162,7 +460,7 @@ OS:Coil:Heating:Gas, OS:Coil:Heating:Water, {00000000-0000-0000-0018-000000000001}, !- Handle Coil Heating Water 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} {00000000-0000-0000-0020-000000000157}, !- Water Inlet Node Name @@ -1179,1013 +477,401 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0018-000000000002}, !- Handle - Coil Heating Water 10, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000306}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000307}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000319}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000316}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000003}, !- Handle - Coil Heating Water 11, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + Coil Heating Water 2, !- Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000326}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000327}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000177}, !- Water Outlet Node Name , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 521863.206481934, !- Rated Capacity {W} + 13429.1124343872, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} , !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000004}, !- Handle - Coil Heating Water 12, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000001}, !- Handle + Coil Heating Water Baseboard 1, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000340}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000341}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 28803.8040161133, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000088}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000089}; !- Water Outlet Node Name -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000005}, !- Handle - Coil Heating Water 13, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000354}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000355}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 239518.954467773, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000006}, !- Handle - Coil Heating Water 14, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000002}, !- Handle + Coil Heating Water Baseboard 2, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000368}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000369}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 203699.336242676, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000180}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000181}; !- Water Outlet Node Name -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000007}, !- Handle - Coil Heating Water 15, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000382}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000383}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 107736.966705322, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000001}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000008}, !- Handle - Coil Heating Water 16, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000396}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000397}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 217597.975158691, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000002}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000009}, !- Handle - Coil Heating Water 17, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000416}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000417}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000429}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000426}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000003}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000010}, !- Handle - Coil Heating Water 18, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000436}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000437}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 53357.7684402466, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000004}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000011}, !- Handle - Coil Heating Water 19, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000450}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000451}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 2942.2459602356, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000005}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000012}, !- Handle - Coil Heating Water 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000177}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 7891.34902954102, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000006}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000013}, !- Handle - Coil Heating Water 20, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000464}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000465}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 23778.5219192505, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000007}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000014}, !- Handle - Coil Heating Water 21, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000478}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000479}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 19808.1024169922, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000008}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000015}, !- Handle - Coil Heating Water 22, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000492}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000493}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 11997.4925994873, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000009}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000016}, !- Handle - Coil Heating Water 23, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000506}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000507}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 21937.6467704773, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000010}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000017}, !- Handle - Coil Heating Water 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000196}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000197}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000209}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000206}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000011}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000018}, !- Handle - Coil Heating Water 4, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000216}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000217}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 35953.6145210266, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000012}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000019}, !- Handle - Coil Heating Water 5, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000230}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000231}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 2269.37075257301, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000020}, !- Handle - Coil Heating Water 6, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000244}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000245}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 17228.0280590057, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000021}, !- Handle - Coil Heating Water 7, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000258}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000259}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 14666.8137073517, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000022}, !- Handle - Coil Heating Water 8, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000272}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000273}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 7806.96694850922, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000023}, !- Handle - Coil Heating Water 9, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000286}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000287}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 16455.8840274811, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000001}, !- Handle - Coil Heating Water Baseboard 1, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000088}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000089}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000002}, !- Handle - Coil Heating Water Baseboard 10, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000344}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000345}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000003}, !- Handle - Coil Heating Water Baseboard 11, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000358}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000359}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000004}, !- Handle - Coil Heating Water Baseboard 12, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000372}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000373}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000005}, !- Handle - Coil Heating Water Baseboard 13, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000386}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000387}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000006}, !- Handle - Coil Heating Water Baseboard 14, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000400}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000401}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000007}, !- Handle - Coil Heating Water Baseboard 15, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000440}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000441}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000008}, !- Handle - Coil Heating Water Baseboard 16, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000454}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000455}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000009}, !- Handle - Coil Heating Water Baseboard 17, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000468}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000469}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000010}, !- Handle - Coil Heating Water Baseboard 18, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000482}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000483}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000011}, !- Handle - Coil Heating Water Baseboard 19, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000496}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000497}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000012}, !- Handle - Coil Heating Water Baseboard 2, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000180}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000181}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000013}, !- Handle - Coil Heating Water Baseboard 20, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000510}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000511}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000014}, !- Handle - Coil Heating Water Baseboard 3, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000220}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000221}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000015}, !- Handle - Coil Heating Water Baseboard 4, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000234}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000235}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000016}, !- Handle - Coil Heating Water Baseboard 5, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000248}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000249}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000017}, !- Handle - Coil Heating Water Baseboard 6, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000262}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000263}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000018}, !- Handle - Coil Heating Water Baseboard 7, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000276}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000277}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000019}, !- Handle - Coil Heating Water Baseboard 8, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000290}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000291}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000020}, !- Handle - Coil Heating Water Baseboard 9, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000330}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000331}; !- Water Outlet Node Name +OS:Connection, + {00000000-0000-0000-0020-000000000013}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000001}, !- Handle + {00000000-0000-0000-0020-000000000014}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000002}, !- Handle + {00000000-0000-0000-0020-000000000015}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000003}, !- Handle + {00000000-0000-0000-0020-000000000016}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000004}, !- Handle + {00000000-0000-0000-0020-000000000017}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000005}, !- Handle + {00000000-0000-0000-0020-000000000018}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000006}, !- Handle + {00000000-0000-0000-0020-000000000019}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000007}, !- Handle + {00000000-0000-0000-0020-000000000020}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000008}, !- Handle + {00000000-0000-0000-0020-000000000021}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000009}, !- Handle + {00000000-0000-0000-0020-000000000022}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000010}, !- Handle + {00000000-0000-0000-0020-000000000023}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000011}, !- Handle - , !- Source Object + {00000000-0000-0000-0020-000000000024}, !- Handle + {00000000-0000-0000-0088-000000000010}, !- Source Object 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000012}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000013}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000014}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000015}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000016}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000017}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000018}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000019}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000020}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000021}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000022}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000023}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000024}, !- Handle - {00000000-0000-0000-0092-000000000010}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000019}, !- Target Object + {00000000-0000-0000-0048-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000025}, !- Handle - {00000000-0000-0000-0092-000000000001}, !- Source Object + {00000000-0000-0000-0088-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000003}, !- Target Object + {00000000-0000-0000-0048-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000026}, !- Handle - {00000000-0000-0000-0092-000000000022}, !- Source Object + {00000000-0000-0000-0088-000000000022}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000043}, !- Target Object + {00000000-0000-0000-0048-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000027}, !- Handle - {00000000-0000-0000-0092-000000000003}, !- Source Object + {00000000-0000-0000-0088-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000005}, !- Target Object + {00000000-0000-0000-0048-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000028}, !- Handle - {00000000-0000-0000-0092-000000000016}, !- Source Object + {00000000-0000-0000-0088-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000031}, !- Target Object + {00000000-0000-0000-0048-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000029}, !- Handle - {00000000-0000-0000-0092-000000000017}, !- Source Object + {00000000-0000-0000-0088-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000033}, !- Target Object + {00000000-0000-0000-0048-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000030}, !- Handle - {00000000-0000-0000-0092-000000000005}, !- Source Object + {00000000-0000-0000-0088-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000009}, !- Target Object + {00000000-0000-0000-0048-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000031}, !- Handle - {00000000-0000-0000-0092-000000000006}, !- Source Object + {00000000-0000-0000-0088-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000011}, !- Target Object + {00000000-0000-0000-0048-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000032}, !- Handle - {00000000-0000-0000-0092-000000000018}, !- Source Object + {00000000-0000-0000-0088-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000035}, !- Target Object + {00000000-0000-0000-0048-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000033}, !- Handle - {00000000-0000-0000-0092-000000000011}, !- Source Object + {00000000-0000-0000-0088-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000021}, !- Target Object + {00000000-0000-0000-0048-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000034}, !- Handle - {00000000-0000-0000-0092-000000000019}, !- Source Object + {00000000-0000-0000-0088-000000000019}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000037}, !- Target Object + {00000000-0000-0000-0048-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000035}, !- Handle - {00000000-0000-0000-0092-000000000012}, !- Source Object + {00000000-0000-0000-0088-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000023}, !- Target Object + {00000000-0000-0000-0048-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000036}, !- Handle - {00000000-0000-0000-0092-000000000004}, !- Source Object + {00000000-0000-0000-0088-000000000004}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000007}, !- Target Object + {00000000-0000-0000-0048-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000037}, !- Handle - {00000000-0000-0000-0092-000000000002}, !- Source Object + {00000000-0000-0000-0088-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000004}, !- Target Object + {00000000-0000-0000-0048-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000038}, !- Handle - {00000000-0000-0000-0092-000000000007}, !- Source Object + {00000000-0000-0000-0088-000000000007}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000013}, !- Target Object + {00000000-0000-0000-0048-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000039}, !- Handle - {00000000-0000-0000-0092-000000000020}, !- Source Object + {00000000-0000-0000-0088-000000000020}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000039}, !- Target Object + {00000000-0000-0000-0048-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000040}, !- Handle - {00000000-0000-0000-0092-000000000013}, !- Source Object + {00000000-0000-0000-0088-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000025}, !- Target Object + {00000000-0000-0000-0048-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000041}, !- Handle - {00000000-0000-0000-0092-000000000021}, !- Source Object + {00000000-0000-0000-0088-000000000021}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000041}, !- Target Object + {00000000-0000-0000-0048-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000042}, !- Handle - {00000000-0000-0000-0092-000000000014}, !- Source Object + {00000000-0000-0000-0088-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000027}, !- Target Object + {00000000-0000-0000-0048-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000043}, !- Handle - {00000000-0000-0000-0092-000000000008}, !- Source Object + {00000000-0000-0000-0088-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000015}, !- Target Object + {00000000-0000-0000-0048-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000044}, !- Handle - {00000000-0000-0000-0092-000000000015}, !- Source Object + {00000000-0000-0000-0088-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000029}, !- Target Object + {00000000-0000-0000-0048-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000045}, !- Handle - {00000000-0000-0000-0092-000000000009}, !- Source Object + {00000000-0000-0000-0088-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000017}, !- Target Object + {00000000-0000-0000-0048-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000046}, !- Handle - {00000000-0000-0000-0092-000000000023}, !- Source Object + {00000000-0000-0000-0088-000000000023}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000280}, !- Target Object + {00000000-0000-0000-0048-000000000133}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000047}, !- Handle - {00000000-0000-0000-0057-000000000003}, !- Source Object + {00000000-0000-0000-0053-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000214}, !- Target Object + {00000000-0000-0000-0048-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000048}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000260}, !- Target Object + {00000000-0000-0000-0048-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000049}, !- Handle - {00000000-0000-0000-0052-000000000215}, !- Source Object + {00000000-0000-0000-0048-000000000071}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000003}, !- Target Object + {00000000-0000-0000-0053-000000000003}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000050}, !- Handle - {00000000-0000-0000-0057-000000000003}, !- Source Object + {00000000-0000-0000-0053-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000212}, !- Target Object + {00000000-0000-0000-0048-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000051}, !- Handle - {00000000-0000-0000-0052-000000000212}, !- Source Object + {00000000-0000-0000-0048-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000002}, !- Target Object 2; !- Inlet Port @@ -2194,47 +880,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000052}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000151}, !- Target Object + {00000000-0000-0000-0048-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000053}, !- Handle {00000000-0000-0000-0021-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000213}, !- Target Object + {00000000-0000-0000-0048-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000054}, !- Handle - {00000000-0000-0000-0052-000000000213}, !- Source Object + {00000000-0000-0000-0048-000000000069}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000003}, !- Target Object + {00000000-0000-0000-0053-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000055}, !- Handle - {00000000-0000-0000-0052-000000000214}, !- Source Object + {00000000-0000-0000-0048-000000000070}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0060-000000000001}, !- Target Object + {00000000-0000-0000-0056-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000056}, !- Handle - {00000000-0000-0000-0060-000000000001}, !- Source Object + {00000000-0000-0000-0056-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000266}, !- Target Object + {00000000-0000-0000-0048-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000057}, !- Handle - {00000000-0000-0000-0052-000000000266}, !- Source Object + {00000000-0000-0000-0048-000000000122}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000058}, !- Handle - {00000000-0000-0000-0052-000000000260}, !- Source Object + {00000000-0000-0000-0048-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000001}, !- Target Object 11; !- Inlet Port @@ -2243,12 +929,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000059}, !- Handle {00000000-0000-0000-0010-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000261}, !- Target Object + {00000000-0000-0000-0048-000000000117}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000060}, !- Handle - {00000000-0000-0000-0052-000000000261}, !- Source Object + {00000000-0000-0000-0048-000000000117}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 3; !- Inlet Port @@ -2257,12 +943,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000061}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000269}, !- Target Object + {00000000-0000-0000-0048-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000062}, !- Handle - {00000000-0000-0000-0052-000000000269}, !- Source Object + {00000000-0000-0000-0048-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000002}, !- Target Object 11; !- Inlet Port @@ -2271,12 +957,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000063}, !- Handle {00000000-0000-0000-0010-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000270}, !- Target Object + {00000000-0000-0000-0048-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000064}, !- Handle - {00000000-0000-0000-0052-000000000270}, !- Source Object + {00000000-0000-0000-0048-000000000126}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 4; !- Inlet Port @@ -2285,26 +971,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000065}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000245}, !- Target Object + {00000000-0000-0000-0048-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000066}, !- Handle - {00000000-0000-0000-0052-000000000245}, !- Source Object + {00000000-0000-0000-0048-000000000101}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000001}, !- Target Object + {00000000-0000-0000-0052-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000067}, !- Handle - {00000000-0000-0000-0056-000000000001}, !- Source Object + {00000000-0000-0000-0052-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000246}, !- Target Object + {00000000-0000-0000-0048-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000068}, !- Handle - {00000000-0000-0000-0052-000000000246}, !- Source Object + {00000000-0000-0000-0048-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 5; !- Inlet Port @@ -2313,33 +999,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000069}, !- Handle {00000000-0000-0000-0021-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000248}, !- Target Object + {00000000-0000-0000-0048-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000070}, !- Handle - {00000000-0000-0000-0052-000000000248}, !- Source Object + {00000000-0000-0000-0048-000000000104}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000003}, !- Target Object + {00000000-0000-0000-0052-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000071}, !- Handle - {00000000-0000-0000-0056-000000000003}, !- Source Object + {00000000-0000-0000-0052-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000215}, !- Target Object + {00000000-0000-0000-0048-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000072}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000286}, !- Target Object + {00000000-0000-0000-0048-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000073}, !- Handle - {00000000-0000-0000-0052-000000000287}, !- Source Object + {00000000-0000-0000-0048-000000000140}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -2348,19 +1034,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000074}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000281}, !- Target Object + {00000000-0000-0000-0048-000000000134}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000075}, !- Handle - {00000000-0000-0000-0052-000000000282}, !- Source Object + {00000000-0000-0000-0048-000000000135}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000076}, !- Handle - {00000000-0000-0000-0052-000000000281}, !- Source Object + {00000000-0000-0000-0048-000000000134}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -2369,12 +1055,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000077}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000282}, !- Target Object + {00000000-0000-0000-0048-000000000135}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000078}, !- Handle - {00000000-0000-0000-0052-000000000284}, !- Source Object + {00000000-0000-0000-0048-000000000137}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port @@ -2383,47 +1069,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000079}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000285}, !- Target Object + {00000000-0000-0000-0048-000000000138}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000080}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object + {00000000-0000-0000-0039-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000287}, !- Target Object + {00000000-0000-0000-0048-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000081}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000100}, !- Target Object + {00000000-0000-0000-0048-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000082}, !- Handle - {00000000-0000-0000-0052-000000000100}, !- Source Object + {00000000-0000-0000-0048-000000000037}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object + {00000000-0000-0000-0039-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000083}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000191}, !- Target Object + {00000000-0000-0000-0048-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000084}, !- Handle - {00000000-0000-0000-0052-000000000191}, !- Source Object + {00000000-0000-0000-0048-000000000047}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000085}, !- Handle - {00000000-0000-0000-0052-000000000286}, !- Source Object + {00000000-0000-0000-0048-000000000139}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -2432,19 +1118,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000086}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000283}, !- Target Object + {00000000-0000-0000-0048-000000000136}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000087}, !- Handle - {00000000-0000-0000-0052-000000000283}, !- Source Object + {00000000-0000-0000-0048-000000000136}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000088}, !- Handle - {00000000-0000-0000-0052-000000000151}, !- Source Object + {00000000-0000-0000-0048-000000000043}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 9; !- Inlet Port @@ -2453,33 +1139,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000089}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000152}, !- Target Object + {00000000-0000-0000-0048-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000090}, !- Handle - {00000000-0000-0000-0052-000000000152}, !- Source Object + {00000000-0000-0000-0048-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000091}, !- Handle - {00000000-0000-0000-0052-000000000045}, !- Source Object + {00000000-0000-0000-0048-000000000027}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000067}, !- Target Object + {00000000-0000-0000-0054-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000092}, !- Handle - {00000000-0000-0000-0058-000000000069}, !- Source Object + {00000000-0000-0000-0054-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000279}, !- Target Object + {00000000-0000-0000-0048-000000000132}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000093}, !- Handle - {00000000-0000-0000-0052-000000000279}, !- Source Object + {00000000-0000-0000-0048-000000000132}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -2488,12 +1174,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000094}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000044}, !- Target Object + {00000000-0000-0000-0048-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000095}, !- Handle - {00000000-0000-0000-0052-000000000044}, !- Source Object + {00000000-0000-0000-0048-000000000026}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -2502,40 +1188,40 @@ OS:Connection, {00000000-0000-0000-0020-000000000096}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000045}, !- Target Object + {00000000-0000-0000-0048-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000097}, !- Handle - {00000000-0000-0000-0057-000000000001}, !- Source Object + {00000000-0000-0000-0053-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000086}, !- Target Object + {00000000-0000-0000-0048-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000098}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000264}, !- Target Object + {00000000-0000-0000-0048-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000099}, !- Handle - {00000000-0000-0000-0052-000000000087}, !- Source Object + {00000000-0000-0000-0048-000000000033}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000001}, !- Target Object + {00000000-0000-0000-0053-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000100}, !- Handle - {00000000-0000-0000-0057-000000000001}, !- Source Object + {00000000-0000-0000-0053-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000084}, !- Target Object + {00000000-0000-0000-0048-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000101}, !- Handle - {00000000-0000-0000-0052-000000000084}, !- Source Object + {00000000-0000-0000-0048-000000000030}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000004}, !- Target Object 2; !- Inlet Port @@ -2544,47 +1230,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000102}, !- Handle {00000000-0000-0000-0022-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000088}, !- Target Object + {00000000-0000-0000-0048-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000103}, !- Handle {00000000-0000-0000-0021-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000085}, !- Target Object + {00000000-0000-0000-0048-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000104}, !- Handle - {00000000-0000-0000-0052-000000000085}, !- Source Object + {00000000-0000-0000-0048-000000000031}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000001}, !- Target Object + {00000000-0000-0000-0053-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000105}, !- Handle - {00000000-0000-0000-0052-000000000086}, !- Source Object + {00000000-0000-0000-0048-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0060-000000000002}, !- Target Object + {00000000-0000-0000-0056-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000106}, !- Handle - {00000000-0000-0000-0060-000000000002}, !- Source Object + {00000000-0000-0000-0056-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000267}, !- Target Object + {00000000-0000-0000-0048-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000107}, !- Handle - {00000000-0000-0000-0052-000000000267}, !- Source Object + {00000000-0000-0000-0048-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000108}, !- Handle - {00000000-0000-0000-0052-000000000264}, !- Source Object + {00000000-0000-0000-0048-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 15; !- Inlet Port @@ -2593,12 +1279,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000109}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000265}, !- Target Object + {00000000-0000-0000-0048-000000000121}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000110}, !- Handle - {00000000-0000-0000-0052-000000000265}, !- Source Object + {00000000-0000-0000-0048-000000000121}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 3; !- Inlet Port @@ -2607,12 +1293,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000111}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000273}, !- Target Object + {00000000-0000-0000-0048-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000112}, !- Handle - {00000000-0000-0000-0052-000000000273}, !- Source Object + {00000000-0000-0000-0048-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 15; !- Inlet Port @@ -2621,12 +1307,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000113}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000274}, !- Target Object + {00000000-0000-0000-0048-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000114}, !- Handle - {00000000-0000-0000-0052-000000000274}, !- Source Object + {00000000-0000-0000-0048-000000000130}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 4; !- Inlet Port @@ -2635,26 +1321,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000115}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000249}, !- Target Object + {00000000-0000-0000-0048-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000116}, !- Handle - {00000000-0000-0000-0052-000000000249}, !- Source Object + {00000000-0000-0000-0048-000000000105}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000004}, !- Target Object + {00000000-0000-0000-0052-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000117}, !- Handle - {00000000-0000-0000-0056-000000000004}, !- Source Object + {00000000-0000-0000-0052-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000250}, !- Target Object + {00000000-0000-0000-0048-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000118}, !- Handle - {00000000-0000-0000-0052-000000000250}, !- Source Object + {00000000-0000-0000-0048-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 5; !- Inlet Port @@ -2663,54 +1349,54 @@ OS:Connection, {00000000-0000-0000-0020-000000000119}, !- Handle {00000000-0000-0000-0021-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000251}, !- Target Object + {00000000-0000-0000-0048-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000120}, !- Handle - {00000000-0000-0000-0052-000000000251}, !- Source Object + {00000000-0000-0000-0048-000000000107}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000005}, !- Target Object + {00000000-0000-0000-0052-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000121}, !- Handle - {00000000-0000-0000-0056-000000000005}, !- Source Object + {00000000-0000-0000-0052-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000087}, !- Target Object + {00000000-0000-0000-0048-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000122}, !- Handle - {00000000-0000-0000-0057-000000000002}, !- Source Object + {00000000-0000-0000-0053-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000194}, !- Target Object + {00000000-0000-0000-0048-000000000050}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000123}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000196}, !- Target Object + {00000000-0000-0000-0048-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000124}, !- Handle - {00000000-0000-0000-0052-000000000195}, !- Source Object + {00000000-0000-0000-0048-000000000051}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000002}, !- Target Object + {00000000-0000-0000-0053-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000125}, !- Handle - {00000000-0000-0000-0057-000000000002}, !- Source Object + {00000000-0000-0000-0053-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000192}, !- Target Object + {00000000-0000-0000-0048-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000126}, !- Handle - {00000000-0000-0000-0052-000000000192}, !- Source Object + {00000000-0000-0000-0048-000000000048}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000006}, !- Target Object 2; !- Inlet Port @@ -2719,47 +1405,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000127}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000262}, !- Target Object + {00000000-0000-0000-0048-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000128}, !- Handle {00000000-0000-0000-0021-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000193}, !- Target Object + {00000000-0000-0000-0048-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000129}, !- Handle - {00000000-0000-0000-0052-000000000193}, !- Source Object + {00000000-0000-0000-0048-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000002}, !- Target Object + {00000000-0000-0000-0053-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000130}, !- Handle - {00000000-0000-0000-0052-000000000194}, !- Source Object + {00000000-0000-0000-0048-000000000050}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0060-000000000003}, !- Target Object + {00000000-0000-0000-0056-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000131}, !- Handle - {00000000-0000-0000-0060-000000000003}, !- Source Object + {00000000-0000-0000-0056-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000268}, !- Target Object + {00000000-0000-0000-0048-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000132}, !- Handle - {00000000-0000-0000-0052-000000000268}, !- Source Object + {00000000-0000-0000-0048-000000000124}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000133}, !- Handle - {00000000-0000-0000-0052-000000000196}, !- Source Object + {00000000-0000-0000-0048-000000000052}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0027-000000000001}, !- Target Object 2; !- Inlet Port @@ -2768,12 +1454,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000134}, !- Handle {00000000-0000-0000-0027-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000197}, !- Target Object + {00000000-0000-0000-0048-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000135}, !- Handle - {00000000-0000-0000-0052-000000000197}, !- Source Object + {00000000-0000-0000-0048-000000000053}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 3; !- Inlet Port @@ -2782,26 +1468,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000136}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000252}, !- Target Object + {00000000-0000-0000-0048-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000137}, !- Handle - {00000000-0000-0000-0052-000000000252}, !- Source Object + {00000000-0000-0000-0048-000000000108}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000006}, !- Target Object + {00000000-0000-0000-0052-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000138}, !- Handle - {00000000-0000-0000-0056-000000000006}, !- Source Object + {00000000-0000-0000-0052-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000253}, !- Target Object + {00000000-0000-0000-0048-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000139}, !- Handle - {00000000-0000-0000-0052-000000000253}, !- Source Object + {00000000-0000-0000-0048-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 4; !- Inlet Port @@ -2810,26 +1496,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000140}, !- Handle {00000000-0000-0000-0021-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000254}, !- Target Object + {00000000-0000-0000-0048-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000141}, !- Handle - {00000000-0000-0000-0052-000000000254}, !- Source Object + {00000000-0000-0000-0048-000000000110}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000007}, !- Target Object + {00000000-0000-0000-0052-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000142}, !- Handle - {00000000-0000-0000-0056-000000000007}, !- Source Object + {00000000-0000-0000-0052-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000195}, !- Target Object + {00000000-0000-0000-0048-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000143}, !- Handle - {00000000-0000-0000-0052-000000000262}, !- Source Object + {00000000-0000-0000-0048-000000000118}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 17; !- Inlet Port @@ -2838,12 +1524,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000144}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000263}, !- Target Object + {00000000-0000-0000-0048-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000145}, !- Handle - {00000000-0000-0000-0052-000000000263}, !- Source Object + {00000000-0000-0000-0048-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 3; !- Inlet Port @@ -2852,12 +1538,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000146}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000271}, !- Target Object + {00000000-0000-0000-0048-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000147}, !- Handle - {00000000-0000-0000-0052-000000000271}, !- Source Object + {00000000-0000-0000-0048-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 17; !- Inlet Port @@ -2866,47 +1552,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000148}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000272}, !- Target Object + {00000000-0000-0000-0048-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000149}, !- Handle - {00000000-0000-0000-0052-000000000272}, !- Source Object + {00000000-0000-0000-0048-000000000128}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000150}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000314}, !- Target Object + {00000000-0000-0000-0048-000000000146}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000151}, !- Handle - {00000000-0000-0000-0052-000000000315}, !- Source Object + {00000000-0000-0000-0048-000000000147}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000152}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000309}, !- Target Object + {00000000-0000-0000-0048-000000000141}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000153}, !- Handle - {00000000-0000-0000-0052-000000000310}, !- Source Object + {00000000-0000-0000-0048-000000000142}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000154}, !- Handle - {00000000-0000-0000-0052-000000000309}, !- Source Object + {00000000-0000-0000-0048-000000000141}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -2915,19 +1601,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000155}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000310}, !- Target Object + {00000000-0000-0000-0048-000000000142}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000156}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000101}, !- Target Object + {00000000-0000-0000-0048-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000157}, !- Handle - {00000000-0000-0000-0052-000000000101}, !- Source Object + {00000000-0000-0000-0048-000000000038}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -2936,19 +1622,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000158}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000103}, !- Target Object + {00000000-0000-0000-0048-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000159}, !- Handle - {00000000-0000-0000-0052-000000000103}, !- Source Object + {00000000-0000-0000-0048-000000000040}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000160}, !- Handle - {00000000-0000-0000-0052-000000000088}, !- Source Object + {00000000-0000-0000-0048-000000000034}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 10; !- Inlet Port @@ -2957,19 +1643,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000161}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000090}, !- Target Object + {00000000-0000-0000-0048-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000162}, !- Handle - {00000000-0000-0000-0052-000000000090}, !- Source Object + {00000000-0000-0000-0048-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000163}, !- Handle - {00000000-0000-0000-0052-000000000312}, !- Source Object + {00000000-0000-0000-0048-000000000144}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 6; !- Inlet Port @@ -2978,40 +1664,40 @@ OS:Connection, {00000000-0000-0000-0020-000000000164}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000313}, !- Target Object + {00000000-0000-0000-0048-000000000145}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000165}, !- Handle - {00000000-0000-0000-0044-000000000008}, !- Source Object + {00000000-0000-0000-0040-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000315}, !- Target Object + {00000000-0000-0000-0048-000000000147}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000166}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0052-000000000102}, !- Target Object + {00000000-0000-0000-0048-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000167}, !- Handle - {00000000-0000-0000-0052-000000000102}, !- Source Object + {00000000-0000-0000-0048-000000000039}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000008}, !- Target Object + {00000000-0000-0000-0040-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000168}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000089}, !- Target Object + {00000000-0000-0000-0048-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000169}, !- Handle - {00000000-0000-0000-0052-000000000089}, !- Source Object + {00000000-0000-0000-0048-000000000035}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 7; !- Inlet Port @@ -3020,33 +1706,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000170}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000311}, !- Target Object + {00000000-0000-0000-0048-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000171}, !- Handle - {00000000-0000-0000-0052-000000000311}, !- Source Object + {00000000-0000-0000-0048-000000000143}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000172}, !- Handle - {00000000-0000-0000-0052-000000000314}, !- Source Object + {00000000-0000-0000-0048-000000000146}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000004}, !- Target Object + {00000000-0000-0000-0040-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000173}, !- Handle - {00000000-0000-0000-0044-000000000004}, !- Source Object + {00000000-0000-0000-0040-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000278}, !- Target Object + {00000000-0000-0000-0048-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000174}, !- Handle - {00000000-0000-0000-0052-000000000278}, !- Source Object + {00000000-0000-0000-0048-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port @@ -3055,26 +1741,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000175}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000126}, !- Target Object + {00000000-0000-0000-0048-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000176}, !- Handle - {00000000-0000-0000-0052-000000000126}, !- Source Object + {00000000-0000-0000-0048-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000012}, !- Target Object + {00000000-0000-0000-0018-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000177}, !- Handle - {00000000-0000-0000-0018-000000000012}, !- Source Object + {00000000-0000-0000-0018-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000127}, !- Target Object + {00000000-0000-0000-0048-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000178}, !- Handle - {00000000-0000-0000-0052-000000000127}, !- Source Object + {00000000-0000-0000-0048-000000000042}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 5; !- Inlet Port @@ -3083,47 +1769,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000179}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000173}, !- Target Object + {00000000-0000-0000-0048-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000180}, !- Handle - {00000000-0000-0000-0052-000000000173}, !- Source Object + {00000000-0000-0000-0048-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000012}, !- Target Object + {00000000-0000-0000-0019-000000000002}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000181}, !- Handle - {00000000-0000-0000-0019-000000000012}, !- Source Object + {00000000-0000-0000-0019-000000000002}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000174}, !- Target Object + {00000000-0000-0000-0048-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000182}, !- Handle - {00000000-0000-0000-0052-000000000174}, !- Source Object + {00000000-0000-0000-0048-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000183}, !- Handle - {00000000-0000-0000-0052-000000000047}, !- Source Object + {00000000-0000-0000-0048-000000000029}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000037}, !- Target Object + {00000000-0000-0000-0054-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000184}, !- Handle - {00000000-0000-0000-0058-000000000039}, !- Source Object + {00000000-0000-0000-0054-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000006}, !- Target Object + {00000000-0000-0000-0048-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000185}, !- Handle - {00000000-0000-0000-0052-000000000006}, !- Source Object + {00000000-0000-0000-0048-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -3132,12 +1818,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000186}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000046}, !- Target Object + {00000000-0000-0000-0048-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000187}, !- Handle - {00000000-0000-0000-0052-000000000046}, !- Source Object + {00000000-0000-0000-0048-000000000028}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -3146,7415 +1832,3215 @@ OS:Connection, {00000000-0000-0000-0020-000000000188}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000047}, !- Target Object + {00000000-0000-0000-0048-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000189}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000293}, !- Target Object + {00000000-0000-0000-0053-000000000004}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0048-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000190}, !- Handle - {00000000-0000-0000-0052-000000000294}, !- Source Object + {00000000-0000-0000-0022-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0048-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000191}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000288}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000076}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000004}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000192}, !- Handle - {00000000-0000-0000-0052-000000000289}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0053-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0048-000000000073}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000193}, !- Handle - {00000000-0000-0000-0052-000000000288}, !- Source Object + {00000000-0000-0000-0048-000000000073}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000194}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000289}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000195}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000136}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000004}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000196}, !- Handle - {00000000-0000-0000-0052-000000000136}, !- Source Object + {00000000-0000-0000-0048-000000000075}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000017}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0055-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000197}, !- Handle - {00000000-0000-0000-0018-000000000017}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000138}, !- Target Object + {00000000-0000-0000-0055-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000198}, !- Handle - {00000000-0000-0000-0052-000000000138}, !- Source Object + {00000000-0000-0000-0048-000000000072}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0022-000000000007}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000199}, !- Handle - {00000000-0000-0000-0022-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000091}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000001}, !- Target Object + 31; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000200}, !- Handle - {00000000-0000-0000-0052-000000000091}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0092-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0048-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000201}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000093}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000202}, !- Handle - {00000000-0000-0000-0052-000000000093}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000004}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0022-000000000007}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0048-000000000111}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000203}, !- Handle - {00000000-0000-0000-0052-000000000291}, !- Source Object + {00000000-0000-0000-0048-000000000111}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0052-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000204}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000292}, !- Target Object + {00000000-0000-0000-0052-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000205}, !- Handle - {00000000-0000-0000-0044-000000000005}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000294}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000112}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000206}, !- Handle - {00000000-0000-0000-0018-000000000017}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000137}, !- Target Object + {00000000-0000-0000-0048-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000207}, !- Handle - {00000000-0000-0000-0052-000000000137}, !- Source Object + {00000000-0000-0000-0052-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000005}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0048-000000000114}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000208}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000092}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000209}, !- Handle - {00000000-0000-0000-0052-000000000092}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000017}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0021-000000000007}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0048-000000000115}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000210}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000290}, !- Target Object + {00000000-0000-0000-0048-000000000115}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000211}, !- Handle - {00000000-0000-0000-0052-000000000290}, !- Source Object + {00000000-0000-0000-0052-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0048-000000000076}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000212}, !- Handle - {00000000-0000-0000-0052-000000000293}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000001}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0048-000000000103}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000213}, !- Handle - {00000000-0000-0000-0044-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000275}, !- Target Object + {00000000-0000-0000-0048-000000000103}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000214}, !- Handle - {00000000-0000-0000-0052-000000000275}, !- Source Object + {00000000-0000-0000-0052-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0048-000000000074}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000215}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000139}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0048-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000216}, !- Handle - {00000000-0000-0000-0052-000000000139}, !- Source Object + {00000000-0000-0000-0048-000000000054}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000018}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0094-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000217}, !- Handle - {00000000-0000-0000-0018-000000000018}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000140}, !- Target Object + {00000000-0000-0000-0094-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000218}, !- Handle - {00000000-0000-0000-0052-000000000140}, !- Source Object + {00000000-0000-0000-0048-000000000055}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000219}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000177}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0048-000000000056}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000220}, !- Handle - {00000000-0000-0000-0052-000000000177}, !- Source Object + {00000000-0000-0000-0048-000000000056}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000014}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0094-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000221}, !- Handle - {00000000-0000-0000-0019-000000000014}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000178}, !- Target Object + {00000000-0000-0000-0094-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000057}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000222}, !- Handle - {00000000-0000-0000-0052-000000000178}, !- Source Object + {00000000-0000-0000-0048-000000000057}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000223}, !- Handle - {00000000-0000-0000-0052-000000000069}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000043}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0048-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000224}, !- Handle - {00000000-0000-0000-0058-000000000045}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000012}, !- Target Object + {00000000-0000-0000-0048-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000225}, !- Handle - {00000000-0000-0000-0052-000000000012}, !- Source Object + {00000000-0000-0000-0094-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0048-000000000059}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000226}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0048-000000000059}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000068}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000227}, !- Handle - {00000000-0000-0000-0052-000000000068}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000012}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0048-000000000060}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000228}, !- Handle - {00000000-0000-0000-0007-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000069}, !- Target Object + {00000000-0000-0000-0048-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000229}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000141}, !- Target Object + {00000000-0000-0000-0094-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000230}, !- Handle - {00000000-0000-0000-0052-000000000141}, !- Source Object + {00000000-0000-0000-0048-000000000061}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000019}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000231}, !- Handle - {00000000-0000-0000-0018-000000000019}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000142}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0048-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000232}, !- Handle - {00000000-0000-0000-0052-000000000142}, !- Source Object + {00000000-0000-0000-0048-000000000062}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0094-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000233}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000179}, !- Target Object + {00000000-0000-0000-0094-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000234}, !- Handle - {00000000-0000-0000-0052-000000000179}, !- Source Object + {00000000-0000-0000-0048-000000000063}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000015}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000235}, !- Handle - {00000000-0000-0000-0019-000000000015}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000180}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0048-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000236}, !- Handle - {00000000-0000-0000-0052-000000000180}, !- Source Object + {00000000-0000-0000-0048-000000000064}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 11; !- Inlet Port + {00000000-0000-0000-0094-000000000006}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000237}, !- Handle - {00000000-0000-0000-0052-000000000071}, !- Source Object + {00000000-0000-0000-0094-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000019}, !- Target Object + {00000000-0000-0000-0048-000000000065}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000238}, !- Handle - {00000000-0000-0000-0058-000000000021}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000008}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000239}, !- Handle - {00000000-0000-0000-0052-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0048-000000000066}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000240}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000070}, !- Target Object + {00000000-0000-0000-0048-000000000066}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000241}, !- Handle - {00000000-0000-0000-0052-000000000070}, !- Source Object + {00000000-0000-0000-0094-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000013}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0048-000000000067}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000242}, !- Handle - {00000000-0000-0000-0007-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000071}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000067}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000243}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000143}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0048-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000244}, !- Handle - {00000000-0000-0000-0052-000000000143}, !- Source Object + {00000000-0000-0000-0048-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000020}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0094-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000245}, !- Handle - {00000000-0000-0000-0018-000000000020}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000144}, !- Target Object + {00000000-0000-0000-0094-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000246}, !- Handle - {00000000-0000-0000-0052-000000000144}, !- Source Object + {00000000-0000-0000-0048-000000000078}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000247}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000181}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0048-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000248}, !- Handle - {00000000-0000-0000-0052-000000000181}, !- Source Object + {00000000-0000-0000-0048-000000000079}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000016}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0094-000000000009}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000249}, !- Handle - {00000000-0000-0000-0019-000000000016}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000182}, !- Target Object + {00000000-0000-0000-0094-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000250}, !- Handle - {00000000-0000-0000-0052-000000000182}, !- Source Object + {00000000-0000-0000-0048-000000000080}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 13; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000251}, !- Handle - {00000000-0000-0000-0052-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000064}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0048-000000000081}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000252}, !- Handle - {00000000-0000-0000-0058-000000000066}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000016}, !- Target Object + {00000000-0000-0000-0048-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000253}, !- Handle - {00000000-0000-0000-0052-000000000016}, !- Source Object + {00000000-0000-0000-0094-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0048-000000000082}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000254}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000072}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000255}, !- Handle - {00000000-0000-0000-0052-000000000072}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000014}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0048-000000000083}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000256}, !- Handle - {00000000-0000-0000-0007-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000073}, !- Target Object + {00000000-0000-0000-0048-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000257}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0052-000000000145}, !- Target Object + {00000000-0000-0000-0094-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000258}, !- Handle - {00000000-0000-0000-0052-000000000145}, !- Source Object + {00000000-0000-0000-0048-000000000084}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000021}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000259}, !- Handle - {00000000-0000-0000-0018-000000000021}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000146}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0048-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000260}, !- Handle - {00000000-0000-0000-0052-000000000146}, !- Source Object + {00000000-0000-0000-0048-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0094-000000000012}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000261}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0052-000000000183}, !- Target Object + {00000000-0000-0000-0094-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000262}, !- Handle - {00000000-0000-0000-0052-000000000183}, !- Source Object + {00000000-0000-0000-0048-000000000086}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000017}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000263}, !- Handle - {00000000-0000-0000-0019-000000000017}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000184}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0048-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000264}, !- Handle - {00000000-0000-0000-0052-000000000184}, !- Source Object + {00000000-0000-0000-0048-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0094-000000000013}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000265}, !- Handle - {00000000-0000-0000-0052-000000000075}, !- Source Object + {00000000-0000-0000-0094-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000022}, !- Target Object + {00000000-0000-0000-0048-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000266}, !- Handle - {00000000-0000-0000-0058-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000010}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000088}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000267}, !- Handle - {00000000-0000-0000-0052-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0048-000000000089}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000268}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000074}, !- Target Object + {00000000-0000-0000-0048-000000000089}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000269}, !- Handle - {00000000-0000-0000-0052-000000000074}, !- Source Object + {00000000-0000-0000-0094-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000015}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0048-000000000090}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000270}, !- Handle - {00000000-0000-0000-0007-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000075}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000090}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 17; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000271}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0052-000000000147}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0048-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000272}, !- Handle - {00000000-0000-0000-0052-000000000147}, !- Source Object + {00000000-0000-0000-0048-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000022}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0094-000000000015}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000273}, !- Handle - {00000000-0000-0000-0018-000000000022}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000148}, !- Target Object + {00000000-0000-0000-0094-000000000015}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000274}, !- Handle - {00000000-0000-0000-0052-000000000148}, !- Source Object + {00000000-0000-0000-0048-000000000092}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000275}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000185}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0048-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000276}, !- Handle - {00000000-0000-0000-0052-000000000185}, !- Source Object + {00000000-0000-0000-0048-000000000093}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000018}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0094-000000000016}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000277}, !- Handle - {00000000-0000-0000-0019-000000000018}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000186}, !- Target Object + {00000000-0000-0000-0094-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000278}, !- Handle - {00000000-0000-0000-0052-000000000186}, !- Source Object + {00000000-0000-0000-0048-000000000094}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 19; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000279}, !- Handle - {00000000-0000-0000-0052-000000000077}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000058}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0048-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000280}, !- Handle - {00000000-0000-0000-0058-000000000060}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000014}, !- Target Object + {00000000-0000-0000-0048-000000000095}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000281}, !- Handle - {00000000-0000-0000-0052-000000000014}, !- Source Object + {00000000-0000-0000-0094-000000000017}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0048-000000000096}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000282}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000076}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0048-000000000096}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 20; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000283}, !- Handle - {00000000-0000-0000-0052-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000016}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0048-000000000097}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000284}, !- Handle - {00000000-0000-0000-0007-000000000016}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000077}, !- Target Object + {00000000-0000-0000-0048-000000000097}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000285}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0052-000000000149}, !- Target Object + {00000000-0000-0000-0094-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000286}, !- Handle - {00000000-0000-0000-0052-000000000149}, !- Source Object + {00000000-0000-0000-0048-000000000098}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000023}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 21; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000287}, !- Handle - {00000000-0000-0000-0018-000000000023}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000150}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0048-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000288}, !- Handle - {00000000-0000-0000-0052-000000000150}, !- Source Object + {00000000-0000-0000-0048-000000000099}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0094-000000000019}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000289}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0052-000000000187}, !- Target Object + {00000000-0000-0000-0094-000000000019}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0048-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000290}, !- Handle - {00000000-0000-0000-0052-000000000187}, !- Source Object + {00000000-0000-0000-0048-000000000100}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000019}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 22; !- Inlet Port -OS:Connection, - {00000000-0000-0000-0020-000000000291}, !- Handle - {00000000-0000-0000-0019-000000000019}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000188}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000001}, !- Handle + Connector Mixer 1, !- Name + {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 -OS:Connection, - {00000000-0000-0000-0020-000000000292}, !- Handle - {00000000-0000-0000-0052-000000000188}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 19; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000002}, !- Handle + Connector Mixer 2, !- Name + {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000090}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000159}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000178}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000182}; !- Inlet Branch Name 4 -OS:Connection, - {00000000-0000-0000-0020-000000000293}, !- Handle - {00000000-0000-0000-0052-000000000079}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000001}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000003}, !- Handle + Connector Mixer 3, !- Name + {00000000-0000-0000-0020-000000000119}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000110}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000114}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000118}; !- Inlet Branch Name 3 -OS:Connection, - {00000000-0000-0000-0020-000000000294}, !- Handle - {00000000-0000-0000-0058-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000018}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000004}, !- Handle + Connector Mixer 4, !- Name + {00000000-0000-0000-0020-000000000103}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000162}; !- Inlet Branch Name 1 -OS:Connection, - {00000000-0000-0000-0020-000000000295}, !- Handle - {00000000-0000-0000-0052-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 8; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000005}, !- Handle + Connector Mixer 5, !- Name + {00000000-0000-0000-0020-000000000140}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000135}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000139}; !- Inlet Branch Name 2 -OS:Connection, - {00000000-0000-0000-0020-000000000296}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000078}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000006}, !- Handle + Connector Mixer 6, !- Name + {00000000-0000-0000-0020-000000000128}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000145}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000149}; !- Inlet Branch Name 2 -OS:Connection, - {00000000-0000-0000-0020-000000000297}, !- Handle - {00000000-0000-0000-0052-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000017}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000298}, !- Handle - {00000000-0000-0000-0007-000000000017}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000079}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000007}, !- Handle + Connector Mixer 7, !- Name + {00000000-0000-0000-0020-000000000209}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000201}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000205}; !- Inlet Branch Name 2 -OS:Connection, - {00000000-0000-0000-0020-000000000299}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000300}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000008}, !- Handle + Connector Mixer 8, !- Name + {00000000-0000-0000-0020-000000000212}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000208}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000218}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000222}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000226}, !- Inlet Branch Name 4 + {00000000-0000-0000-0020-000000000230}, !- Inlet Branch Name 5 + {00000000-0000-0000-0020-000000000234}, !- Inlet Branch Name 6 + {00000000-0000-0000-0020-000000000238}, !- Inlet Branch Name 7 + {00000000-0000-0000-0020-000000000242}, !- Inlet Branch Name 8 + {00000000-0000-0000-0020-000000000246}, !- Inlet Branch Name 9 + {00000000-0000-0000-0020-000000000250}, !- Inlet Branch Name 10 + {00000000-0000-0000-0020-000000000254}, !- Inlet Branch Name 11 + {00000000-0000-0000-0020-000000000258}, !- Inlet Branch Name 12 + {00000000-0000-0000-0020-000000000262}, !- Inlet Branch Name 13 + {00000000-0000-0000-0020-000000000266}, !- Inlet Branch Name 14 + {00000000-0000-0000-0020-000000000270}, !- Inlet Branch Name 15 + {00000000-0000-0000-0020-000000000274}, !- Inlet Branch Name 16 + {00000000-0000-0000-0020-000000000278}, !- Inlet Branch Name 17 + {00000000-0000-0000-0020-000000000282}, !- Inlet Branch Name 18 + {00000000-0000-0000-0020-000000000286}, !- Inlet Branch Name 19 + {00000000-0000-0000-0020-000000000290}; !- Inlet Branch Name 20 -OS:Connection, - {00000000-0000-0000-0020-000000000300}, !- Handle - {00000000-0000-0000-0052-000000000301}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 12; !- Inlet Port +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000001}, !- Handle + Connector Splitter 1, !- Name + {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 -OS:Connection, - {00000000-0000-0000-0020-000000000301}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000295}, !- Target Object - 2; !- Inlet Port +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000002}, !- Handle + Connector Splitter 2, !- Name + {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000156}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000175}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000179}; !- Outlet Branch Name 4 -OS:Connection, - {00000000-0000-0000-0020-000000000302}, !- Handle - {00000000-0000-0000-0052-000000000296}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 10; !- Inlet Port +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000003}, !- Handle + Connector Splitter 3, !- Name + {00000000-0000-0000-0020-000000000107}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000098}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000111}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000115}; !- Outlet Branch Name 3 -OS:Connection, - {00000000-0000-0000-0020-000000000303}, !- Handle - {00000000-0000-0000-0052-000000000295}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000004}, !- Target Object - 2; !- Inlet Port +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000004}, !- Handle + Connector Splitter 4, !- Name + {00000000-0000-0000-0020-000000000101}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000102}; !- Outlet Branch Name 1 -OS:Connection, - {00000000-0000-0000-0020-000000000304}, !- Handle - {00000000-0000-0000-0004-000000000004}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000296}, !- Target Object - 2; !- Inlet Port +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000005}, !- Handle + Connector Splitter 5, !- Name + {00000000-0000-0000-0020-000000000132}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000123}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000136}; !- Outlet Branch Name 2 -OS:Connection, - {00000000-0000-0000-0020-000000000305}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0052-000000000104}, !- Target Object - 2; !- Inlet Port +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000006}, !- Handle + Connector Splitter 6, !- Name + {00000000-0000-0000-0020-000000000126}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000127}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000146}; !- Outlet Branch Name 2 -OS:Connection, - {00000000-0000-0000-0020-000000000306}, !- Handle - {00000000-0000-0000-0052-000000000104}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 5; !- Inlet Port +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000007}, !- Handle + Connector Splitter 7, !- Name + {00000000-0000-0000-0020-000000000198}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000190}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000202}; !- Outlet Branch Name 2 -OS:Connection, - {00000000-0000-0000-0020-000000000307}, !- Handle - {00000000-0000-0000-0018-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000106}, !- Target Object - 2; !- Inlet Port +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000008}, !- Handle + Connector Splitter 8, !- Name + {00000000-0000-0000-0020-000000000193}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000194}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000215}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000219}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000223}, !- Outlet Branch Name 4 + {00000000-0000-0000-0020-000000000227}, !- Outlet Branch Name 5 + {00000000-0000-0000-0020-000000000231}, !- Outlet Branch Name 6 + {00000000-0000-0000-0020-000000000235}, !- Outlet Branch Name 7 + {00000000-0000-0000-0020-000000000239}, !- Outlet Branch Name 8 + {00000000-0000-0000-0020-000000000243}, !- Outlet Branch Name 9 + {00000000-0000-0000-0020-000000000247}, !- Outlet Branch Name 10 + {00000000-0000-0000-0020-000000000251}, !- Outlet Branch Name 11 + {00000000-0000-0000-0020-000000000255}, !- Outlet Branch Name 12 + {00000000-0000-0000-0020-000000000259}, !- Outlet Branch Name 13 + {00000000-0000-0000-0020-000000000263}, !- Outlet Branch Name 14 + {00000000-0000-0000-0020-000000000267}, !- Outlet Branch Name 15 + {00000000-0000-0000-0020-000000000271}, !- Outlet Branch Name 16 + {00000000-0000-0000-0020-000000000275}, !- Outlet Branch Name 17 + {00000000-0000-0000-0020-000000000279}, !- Outlet Branch Name 18 + {00000000-0000-0000-0020-000000000283}, !- Outlet Branch Name 19 + {00000000-0000-0000-0020-000000000287}; !- Outlet Branch Name 20 -OS:Connection, - {00000000-0000-0000-0020-000000000308}, !- Handle - {00000000-0000-0000-0052-000000000106}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 20; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000001}, !- Handle + BTAP-Ext-DaylightDiffuser, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000001}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000309}, !- Handle - {00000000-0000-0000-0022-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000094}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000002}, !- Handle + BTAP-Ext-DaylightDiffuser:U=0.220 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000002}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000310}, !- Handle - {00000000-0000-0000-0052-000000000094}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 10; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000003}, !- Handle + BTAP-Ext-DaylightDomes, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000001}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000311}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000096}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000004}, !- Handle + BTAP-Ext-DaylightDomes:U=0.220 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000002}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000312}, !- Handle - {00000000-0000-0000-0052-000000000096}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000004}, !- Target Object - 5; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000005}, !- Handle + BTAP-Ext-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000018}, !- Layer 1 + {00000000-0000-0000-0046-000000000013}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000313}, !- Handle - {00000000-0000-0000-0052-000000000298}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 6; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000006}, !- Handle + BTAP-Ext-Door:U-2.2, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000017}, !- Layer 1 + {00000000-0000-0000-0046-000000000011}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000314}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000299}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000007}, !- Handle + BTAP-Ext-FixedWindow, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000001}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000315}, !- Handle - {00000000-0000-0000-0044-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000301}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000008}, !- Handle + BTAP-Ext-FixedWindow:U=0.220 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000002}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000316}, !- Handle - {00000000-0000-0000-0018-000000000002}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000105}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000009}, !- Handle + BTAP-Ext-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000013}, !- Layer 1 + {00000000-0000-0000-0045-000000000008}, !- Layer 2 + {00000000-0000-0000-0046-000000000007}; !- Layer 3 -OS:Connection, - {00000000-0000-0000-0020-000000000317}, !- Handle - {00000000-0000-0000-0052-000000000105}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000006}, !- Target Object - 16; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000010}, !- Handle + BTAP-Ext-Floor-Mass:U-0.162, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000008}, !- Layer 1 + {00000000-0000-0000-0045-000000000007}, !- Layer 2 + {00000000-0000-0000-0046-000000000003}; !- Layer 3 -OS:Connection, - {00000000-0000-0000-0020-000000000318}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000095}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000011}, !- Handle + BTAP-Ext-GlassDoors, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000001}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000319}, !- Handle - {00000000-0000-0000-0052-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 7; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000012}, !- Handle + BTAP-Ext-GlassDoors:U=0.220 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000002}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000320}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000297}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000013}, !- Handle + BTAP-Ext-OverHeadDoor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000013}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000321}, !- Handle - {00000000-0000-0000-0052-000000000297}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 12; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000014}, !- Handle + BTAP-Ext-OverHeadDoor:U-2.2, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000012}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000322}, !- Handle - {00000000-0000-0000-0052-000000000300}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000002}, !- Target Object - 16; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000015}, !- Handle + BTAP-Ext-Roof-Metal, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000024}, !- Layer 1 + {00000000-0000-0000-0046-000000000013}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000323}, !- Handle - {00000000-0000-0000-0044-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000276}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000016}, !- Handle + BTAP-Ext-Roof-Metal:U-0.162, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000023}, !- Layer 1 + {00000000-0000-0000-0046-000000000010}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000324}, !- Handle - {00000000-0000-0000-0052-000000000276}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 8; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000017}, !- Handle + BTAP-Ext-Skylights, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000001}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000325}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0052-000000000107}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000018}, !- Handle + BTAP-Ext-Skylights:U=0.220 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000002}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000326}, !- Handle - {00000000-0000-0000-0052-000000000107}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000003}, !- Target Object - 5; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000019}, !- Handle + BTAP-Ext-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000006}, !- Layer 1 + {00000000-0000-0000-0045-000000000014}, !- Layer 2 + {00000000-0000-0000-0046-000000000013}, !- Layer 3 + {00000000-0000-0000-0045-000000000002}; !- Layer 4 -OS:Connection, - {00000000-0000-0000-0020-000000000327}, !- Handle - {00000000-0000-0000-0018-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000108}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000020}, !- Handle + BTAP-Ext-Wall-Mass:U-0.21, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000005}, !- Layer 1 + {00000000-0000-0000-0045-000000000013}, !- Layer 2 + {00000000-0000-0000-0046-000000000009}, !- Layer 3 + {00000000-0000-0000-0045-000000000001}; !- Layer 4 -OS:Connection, - {00000000-0000-0000-0020-000000000328}, !- Handle - {00000000-0000-0000-0052-000000000108}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 21; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000021}, !- Handle + BTAP-Grnd-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000012}, !- Layer 1 + {00000000-0000-0000-0046-000000000007}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000329}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0052-000000000189}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000022}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000009}, !- Layer 1 + {00000000-0000-0000-0046-000000000004}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000330}, !- Handle - {00000000-0000-0000-0052-000000000189}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000020}, !- Target Object - 9; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000023}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000009}, !- Layer 1 + {00000000-0000-0000-0045-000000000016}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000331}, !- Handle - {00000000-0000-0000-0019-000000000020}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000190}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000332}, !- Handle - {00000000-0000-0000-0052-000000000190}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 22; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000333}, !- Handle - {00000000-0000-0000-0052-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000055}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000334}, !- Handle - {00000000-0000-0000-0058-000000000057}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000026}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000335}, !- Handle - {00000000-0000-0000-0052-000000000026}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000336}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000080}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000337}, !- Handle - {00000000-0000-0000-0052-000000000080}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000018}, !- Target Object - 3; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000024}, !- Handle + BTAP-Grnd-Roof-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000012}, !- Layer 1 + {00000000-0000-0000-0046-000000000007}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000338}, !- Handle - {00000000-0000-0000-0007-000000000018}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000081}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000025}, !- Handle + BTAP-Grnd-Roof-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000011}, !- Layer 1 + {00000000-0000-0000-0046-000000000006}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000339}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 23, !- Outlet Port - {00000000-0000-0000-0052-000000000109}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000026}, !- Handle + BTAP-Grnd-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000012}, !- Layer 1 + {00000000-0000-0000-0046-000000000007}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000340}, !- Handle - {00000000-0000-0000-0052-000000000109}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000004}, !- Target Object - 5; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000027}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000010}, !- Layer 1 + {00000000-0000-0000-0046-000000000005}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000341}, !- Handle - {00000000-0000-0000-0018-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000110}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000028}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000010}, !- Layer 1 + {00000000-0000-0000-0045-000000000015}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000342}, !- Handle - {00000000-0000-0000-0052-000000000110}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 23; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000029}, !- Handle + BTAP-Int-Ceiling, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000007}, !- Layer 1 + {00000000-0000-0000-0045-000000000003}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000343}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 24, !- Outlet Port - {00000000-0000-0000-0052-000000000153}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000030}, !- Handle + BTAP-Int-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000021}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000344}, !- Handle - {00000000-0000-0000-0052-000000000153}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000002}, !- Target Object - 9; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000031}, !- Handle + BTAP-Int-Floor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000003}, !- Layer 1 + {00000000-0000-0000-0046-000000000007}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000345}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000154}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000032}, !- Handle + BTAP-Int-Partition, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000021}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000346}, !- Handle - {00000000-0000-0000-0052-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 24; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000033}, !- Handle + BTAP-Int-Wall, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000019}, !- Layer 1 + {00000000-0000-0000-0045-000000000019}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000347}, !- Handle - {00000000-0000-0000-0052-000000000083}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000049}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000034}, !- Handle + BTAP-Int-Window, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0098-000000000001}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000348}, !- Handle - {00000000-0000-0000-0058-000000000051}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000024}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000035}, !- Handle + Basement Floor construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000022}, !- Layer 1 + {00000000-0000-0000-0046-000000000001}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000349}, !- Handle - {00000000-0000-0000-0052-000000000024}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 4; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000036}, !- Handle + Basement Wall construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000022}; !- Layer 1 -OS:Connection, - {00000000-0000-0000-0020-000000000350}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000082}, !- Target Object - 2; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000037}, !- Handle + Floor Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000001}, !- Layer 1 + {00000000-0000-0000-0045-000000000004}, !- Layer 2 + {00000000-0000-0000-0046-000000000002}; !- Layer 3 -OS:Connection, - {00000000-0000-0000-0020-000000000351}, !- Handle - {00000000-0000-0000-0052-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000019}, !- Target Object - 3; !- Inlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000038}, !- Handle + Wall Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0045-000000000020}, !- Layer 1 + {00000000-0000-0000-0045-000000000020}; !- Layer 2 -OS:Connection, - {00000000-0000-0000-0020-000000000352}, !- Handle - {00000000-0000-0000-0007-000000000019}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000083}, !- Target Object - 2; !- Inlet Port +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method -OS:Connection, - {00000000-0000-0000-0020-000000000353}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 25, !- Outlet Port - {00000000-0000-0000-0052-000000000111}, !- Target Object - 2; !- Inlet Port +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method -OS:Connection, - {00000000-0000-0000-0020-000000000354}, !- Handle - {00000000-0000-0000-0052-000000000111}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 5; !- Inlet Port +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0061-000000000023}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Connection, - {00000000-0000-0000-0020-000000000355}, !- Handle - {00000000-0000-0000-0018-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000112}, !- Target Object - 2; !- Inlet Port +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0061-000000000024}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Connection, - {00000000-0000-0000-0020-000000000356}, !- Handle - {00000000-0000-0000-0052-000000000112}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 25; !- Inlet Port +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000001}, !- Handle + Controller Water Coil 1, !- Name + {00000000-0000-0000-0018-000000000001}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Connection, - {00000000-0000-0000-0020-000000000357}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 26, !- Outlet Port - {00000000-0000-0000-0052-000000000155}, !- Target Object - 2; !- Inlet Port +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000002}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0016-000000000001}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Connection, - {00000000-0000-0000-0020-000000000358}, !- Handle - {00000000-0000-0000-0052-000000000155}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000003}, !- Target Object - 9; !- Inlet Port +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000003}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0018-000000000002}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Connection, - {00000000-0000-0000-0020-000000000359}, !- Handle - {00000000-0000-0000-0019-000000000003}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000156}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000360}, !- Handle - {00000000-0000-0000-0052-000000000156}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 26; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000361}, !- Handle - {00000000-0000-0000-0052-000000000049}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000362}, !- Handle - {00000000-0000-0000-0058-000000000036}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000363}, !- Handle - {00000000-0000-0000-0052-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000364}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000048}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000365}, !- Handle - {00000000-0000-0000-0052-000000000048}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000366}, !- Handle - {00000000-0000-0000-0007-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000367}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 27, !- Outlet Port - {00000000-0000-0000-0052-000000000113}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000368}, !- Handle - {00000000-0000-0000-0052-000000000113}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000369}, !- Handle - {00000000-0000-0000-0018-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000114}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000370}, !- Handle - {00000000-0000-0000-0052-000000000114}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 27; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000371}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 28, !- Outlet Port - {00000000-0000-0000-0052-000000000157}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000372}, !- Handle - {00000000-0000-0000-0052-000000000157}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000004}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000373}, !- Handle - {00000000-0000-0000-0019-000000000004}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000158}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000374}, !- Handle - {00000000-0000-0000-0052-000000000158}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 28; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000375}, !- Handle - {00000000-0000-0000-0052-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000376}, !- Handle - {00000000-0000-0000-0058-000000000030}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000020}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000377}, !- Handle - {00000000-0000-0000-0052-000000000020}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000378}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000050}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000379}, !- Handle - {00000000-0000-0000-0052-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000003}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000380}, !- Handle - {00000000-0000-0000-0007-000000000003}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000051}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000381}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 29, !- Outlet Port - {00000000-0000-0000-0052-000000000115}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000382}, !- Handle - {00000000-0000-0000-0052-000000000115}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000007}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000383}, !- Handle - {00000000-0000-0000-0018-000000000007}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000116}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000384}, !- Handle - {00000000-0000-0000-0052-000000000116}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 29; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000385}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 30, !- Outlet Port - {00000000-0000-0000-0052-000000000159}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000386}, !- Handle - {00000000-0000-0000-0052-000000000159}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000005}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000387}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000160}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000388}, !- Handle - {00000000-0000-0000-0052-000000000160}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 30; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000389}, !- Handle - {00000000-0000-0000-0052-000000000053}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000390}, !- Handle - {00000000-0000-0000-0058-000000000063}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000391}, !- Handle - {00000000-0000-0000-0052-000000000028}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000392}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000393}, !- Handle - {00000000-0000-0000-0052-000000000052}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000004}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000394}, !- Handle - {00000000-0000-0000-0007-000000000004}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000053}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000395}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 31, !- Outlet Port - {00000000-0000-0000-0052-000000000117}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000396}, !- Handle - {00000000-0000-0000-0052-000000000117}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000397}, !- Handle - {00000000-0000-0000-0018-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000118}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000398}, !- Handle - {00000000-0000-0000-0052-000000000118}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000399}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0052-000000000161}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000400}, !- Handle - {00000000-0000-0000-0052-000000000161}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000006}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000401}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000162}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000402}, !- Handle - {00000000-0000-0000-0052-000000000162}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 32; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000403}, !- Handle - {00000000-0000-0000-0052-000000000055}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000404}, !- Handle - {00000000-0000-0000-0058-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000030}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000405}, !- Handle - {00000000-0000-0000-0052-000000000030}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000406}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000054}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000407}, !- Handle - {00000000-0000-0000-0052-000000000054}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000408}, !- Handle - {00000000-0000-0000-0007-000000000005}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000055}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000409}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000307}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000410}, !- Handle - {00000000-0000-0000-0052-000000000308}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000411}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000302}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000412}, !- Handle - {00000000-0000-0000-0052-000000000303}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000413}, !- Handle - {00000000-0000-0000-0052-000000000302}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000414}, !- Handle - {00000000-0000-0000-0004-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000303}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000415}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 33, !- Outlet Port - {00000000-0000-0000-0052-000000000119}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000416}, !- Handle - {00000000-0000-0000-0052-000000000119}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000009}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000417}, !- Handle - {00000000-0000-0000-0018-000000000009}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000121}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000418}, !- Handle - {00000000-0000-0000-0052-000000000121}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 33; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000419}, !- Handle - {00000000-0000-0000-0022-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000097}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000420}, !- Handle - {00000000-0000-0000-0052-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000421}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000099}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000422}, !- Handle - {00000000-0000-0000-0052-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000423}, !- Handle - {00000000-0000-0000-0052-000000000305}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000424}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000306}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000425}, !- Handle - {00000000-0000-0000-0044-000000000007}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000308}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000426}, !- Handle - {00000000-0000-0000-0018-000000000009}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000120}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000427}, !- Handle - {00000000-0000-0000-0052-000000000120}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000007}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000428}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000098}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000429}, !- Handle - {00000000-0000-0000-0052-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000009}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000430}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000304}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000431}, !- Handle - {00000000-0000-0000-0052-000000000304}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000432}, !- Handle - {00000000-0000-0000-0052-000000000307}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000003}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000433}, !- Handle - {00000000-0000-0000-0044-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000277}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000434}, !- Handle - {00000000-0000-0000-0052-000000000277}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000435}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 34, !- Outlet Port - {00000000-0000-0000-0052-000000000122}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000436}, !- Handle - {00000000-0000-0000-0052-000000000122}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000010}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000437}, !- Handle - {00000000-0000-0000-0018-000000000010}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000123}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000438}, !- Handle - {00000000-0000-0000-0052-000000000123}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 34; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000439}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 35, !- Outlet Port - {00000000-0000-0000-0052-000000000163}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000440}, !- Handle - {00000000-0000-0000-0052-000000000163}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000007}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000441}, !- Handle - {00000000-0000-0000-0019-000000000007}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000442}, !- Handle - {00000000-0000-0000-0052-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 35; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000443}, !- Handle - {00000000-0000-0000-0052-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000444}, !- Handle - {00000000-0000-0000-0058-000000000054}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000445}, !- Handle - {00000000-0000-0000-0052-000000000040}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000446}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000056}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000447}, !- Handle - {00000000-0000-0000-0052-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000448}, !- Handle - {00000000-0000-0000-0007-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000057}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000449}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 36, !- Outlet Port - {00000000-0000-0000-0052-000000000124}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000450}, !- Handle - {00000000-0000-0000-0052-000000000124}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000011}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000451}, !- Handle - {00000000-0000-0000-0018-000000000011}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000125}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000452}, !- Handle - {00000000-0000-0000-0052-000000000125}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 36; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000453}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 37, !- Outlet Port - {00000000-0000-0000-0052-000000000165}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000454}, !- Handle - {00000000-0000-0000-0052-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000008}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000455}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000456}, !- Handle - {00000000-0000-0000-0052-000000000166}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 37; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000457}, !- Handle - {00000000-0000-0000-0052-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000031}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000458}, !- Handle - {00000000-0000-0000-0058-000000000033}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000036}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000459}, !- Handle - {00000000-0000-0000-0052-000000000036}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000460}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000461}, !- Handle - {00000000-0000-0000-0052-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000462}, !- Handle - {00000000-0000-0000-0007-000000000007}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000059}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000463}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 38, !- Outlet Port - {00000000-0000-0000-0052-000000000128}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000464}, !- Handle - {00000000-0000-0000-0052-000000000128}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000013}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000465}, !- Handle - {00000000-0000-0000-0018-000000000013}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000129}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000466}, !- Handle - {00000000-0000-0000-0052-000000000129}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 38; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000467}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 39, !- Outlet Port - {00000000-0000-0000-0052-000000000167}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000468}, !- Handle - {00000000-0000-0000-0052-000000000167}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000009}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000469}, !- Handle - {00000000-0000-0000-0019-000000000009}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000168}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000470}, !- Handle - {00000000-0000-0000-0052-000000000168}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 39; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000471}, !- Handle - {00000000-0000-0000-0052-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000472}, !- Handle - {00000000-0000-0000-0058-000000000018}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000032}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000473}, !- Handle - {00000000-0000-0000-0052-000000000032}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000474}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000060}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000475}, !- Handle - {00000000-0000-0000-0052-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000476}, !- Handle - {00000000-0000-0000-0007-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000477}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 40, !- Outlet Port - {00000000-0000-0000-0052-000000000130}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000478}, !- Handle - {00000000-0000-0000-0052-000000000130}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000014}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000479}, !- Handle - {00000000-0000-0000-0018-000000000014}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000131}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000480}, !- Handle - {00000000-0000-0000-0052-000000000131}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 40; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000481}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 41, !- Outlet Port - {00000000-0000-0000-0052-000000000169}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000482}, !- Handle - {00000000-0000-0000-0052-000000000169}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000010}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000483}, !- Handle - {00000000-0000-0000-0019-000000000010}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000170}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000484}, !- Handle - {00000000-0000-0000-0052-000000000170}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 41; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000485}, !- Handle - {00000000-0000-0000-0052-000000000063}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000025}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000486}, !- Handle - {00000000-0000-0000-0058-000000000027}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000487}, !- Handle - {00000000-0000-0000-0052-000000000034}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000488}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000062}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000489}, !- Handle - {00000000-0000-0000-0052-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000009}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000490}, !- Handle - {00000000-0000-0000-0007-000000000009}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000063}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000491}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 42, !- Outlet Port - {00000000-0000-0000-0052-000000000132}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000492}, !- Handle - {00000000-0000-0000-0052-000000000132}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000015}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000493}, !- Handle - {00000000-0000-0000-0018-000000000015}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000133}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000494}, !- Handle - {00000000-0000-0000-0052-000000000133}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 42; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000495}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 43, !- Outlet Port - {00000000-0000-0000-0052-000000000171}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000496}, !- Handle - {00000000-0000-0000-0052-000000000171}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000011}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000497}, !- Handle - {00000000-0000-0000-0019-000000000011}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000172}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000498}, !- Handle - {00000000-0000-0000-0052-000000000172}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 43; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000499}, !- Handle - {00000000-0000-0000-0052-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000500}, !- Handle - {00000000-0000-0000-0058-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000501}, !- Handle - {00000000-0000-0000-0052-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000502}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000503}, !- Handle - {00000000-0000-0000-0052-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000010}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000504}, !- Handle - {00000000-0000-0000-0007-000000000010}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000505}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 44, !- Outlet Port - {00000000-0000-0000-0052-000000000134}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000506}, !- Handle - {00000000-0000-0000-0052-000000000134}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000016}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000507}, !- Handle - {00000000-0000-0000-0018-000000000016}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000135}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000508}, !- Handle - {00000000-0000-0000-0052-000000000135}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 44; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000509}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 45, !- Outlet Port - {00000000-0000-0000-0052-000000000175}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000510}, !- Handle - {00000000-0000-0000-0052-000000000175}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000013}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000511}, !- Handle - {00000000-0000-0000-0019-000000000013}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000176}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000512}, !- Handle - {00000000-0000-0000-0052-000000000176}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 45; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000513}, !- Handle - {00000000-0000-0000-0052-000000000067}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000514}, !- Handle - {00000000-0000-0000-0058-000000000009}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000042}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000515}, !- Handle - {00000000-0000-0000-0052-000000000042}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000516}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000066}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000517}, !- Handle - {00000000-0000-0000-0052-000000000066}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000011}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000518}, !- Handle - {00000000-0000-0000-0007-000000000011}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000067}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000519}, !- Handle - {00000000-0000-0000-0057-000000000004}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0052-000000000219}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000520}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000521}, !- Handle - {00000000-0000-0000-0052-000000000220}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000004}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000522}, !- Handle - {00000000-0000-0000-0057-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000217}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000523}, !- Handle - {00000000-0000-0000-0052-000000000217}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0022-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000524}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000257}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000525}, !- Handle - {00000000-0000-0000-0052-000000000218}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000004}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000526}, !- Handle - {00000000-0000-0000-0052-000000000219}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000527}, !- Handle - {00000000-0000-0000-0059-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000216}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000528}, !- Handle - {00000000-0000-0000-0052-000000000216}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0022-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000529}, !- Handle - {00000000-0000-0000-0052-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000001}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000530}, !- Handle - {00000000-0000-0000-0096-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0052-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000531}, !- Handle - {00000000-0000-0000-0052-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000532}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000255}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000533}, !- Handle - {00000000-0000-0000-0052-000000000255}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000534}, !- Handle - {00000000-0000-0000-0056-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000256}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000535}, !- Handle - {00000000-0000-0000-0052-000000000256}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000536}, !- Handle - {00000000-0000-0000-0052-000000000257}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000537}, !- Handle - {00000000-0000-0000-0056-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000258}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000538}, !- Handle - {00000000-0000-0000-0052-000000000258}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000539}, !- Handle - {00000000-0000-0000-0021-000000000007}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000259}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000540}, !- Handle - {00000000-0000-0000-0052-000000000259}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000541}, !- Handle - {00000000-0000-0000-0056-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000220}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000542}, !- Handle - {00000000-0000-0000-0021-000000000008}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000247}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000543}, !- Handle - {00000000-0000-0000-0052-000000000247}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000544}, !- Handle - {00000000-0000-0000-0056-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000218}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000545}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000198}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000546}, !- Handle - {00000000-0000-0000-0052-000000000198}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000547}, !- Handle - {00000000-0000-0000-0098-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000199}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000548}, !- Handle - {00000000-0000-0000-0052-000000000199}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000549}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000200}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000550}, !- Handle - {00000000-0000-0000-0052-000000000200}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000551}, !- Handle - {00000000-0000-0000-0098-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000201}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000552}, !- Handle - {00000000-0000-0000-0052-000000000201}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000553}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000202}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000554}, !- Handle - {00000000-0000-0000-0052-000000000202}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000555}, !- Handle - {00000000-0000-0000-0098-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000203}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000556}, !- Handle - {00000000-0000-0000-0052-000000000203}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000557}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000204}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000558}, !- Handle - {00000000-0000-0000-0052-000000000204}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000559}, !- Handle - {00000000-0000-0000-0098-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000205}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000560}, !- Handle - {00000000-0000-0000-0052-000000000205}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000561}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000206}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000562}, !- Handle - {00000000-0000-0000-0052-000000000206}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000563}, !- Handle - {00000000-0000-0000-0098-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000207}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000564}, !- Handle - {00000000-0000-0000-0052-000000000207}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000565}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000208}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000566}, !- Handle - {00000000-0000-0000-0052-000000000208}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000567}, !- Handle - {00000000-0000-0000-0098-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000209}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000568}, !- Handle - {00000000-0000-0000-0052-000000000209}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000569}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000210}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000570}, !- Handle - {00000000-0000-0000-0052-000000000210}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000571}, !- Handle - {00000000-0000-0000-0098-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000211}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000572}, !- Handle - {00000000-0000-0000-0052-000000000211}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000573}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000221}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000574}, !- Handle - {00000000-0000-0000-0052-000000000221}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000575}, !- Handle - {00000000-0000-0000-0098-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000222}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000576}, !- Handle - {00000000-0000-0000-0052-000000000222}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 11; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000577}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000223}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000578}, !- Handle - {00000000-0000-0000-0052-000000000223}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000579}, !- Handle - {00000000-0000-0000-0098-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000224}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000580}, !- Handle - {00000000-0000-0000-0052-000000000224}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000581}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000225}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000582}, !- Handle - {00000000-0000-0000-0052-000000000225}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000583}, !- Handle - {00000000-0000-0000-0098-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000226}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000584}, !- Handle - {00000000-0000-0000-0052-000000000226}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 13; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000585}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0052-000000000227}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000586}, !- Handle - {00000000-0000-0000-0052-000000000227}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000011}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000587}, !- Handle - {00000000-0000-0000-0098-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000228}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000588}, !- Handle - {00000000-0000-0000-0052-000000000228}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000589}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0052-000000000229}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000590}, !- Handle - {00000000-0000-0000-0052-000000000229}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000012}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000591}, !- Handle - {00000000-0000-0000-0098-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000230}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000592}, !- Handle - {00000000-0000-0000-0052-000000000230}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000593}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0052-000000000231}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000594}, !- Handle - {00000000-0000-0000-0052-000000000231}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000595}, !- Handle - {00000000-0000-0000-0098-000000000013}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000232}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000596}, !- Handle - {00000000-0000-0000-0052-000000000232}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000597}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000233}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000598}, !- Handle - {00000000-0000-0000-0052-000000000233}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000599}, !- Handle - {00000000-0000-0000-0098-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000234}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000600}, !- Handle - {00000000-0000-0000-0052-000000000234}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000601}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0052-000000000235}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000602}, !- Handle - {00000000-0000-0000-0052-000000000235}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000015}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000603}, !- Handle - {00000000-0000-0000-0098-000000000015}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000236}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000604}, !- Handle - {00000000-0000-0000-0052-000000000236}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000605}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0052-000000000237}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000606}, !- Handle - {00000000-0000-0000-0052-000000000237}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000607}, !- Handle - {00000000-0000-0000-0098-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000238}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000608}, !- Handle - {00000000-0000-0000-0052-000000000238}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 19; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000609}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0052-000000000239}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000610}, !- Handle - {00000000-0000-0000-0052-000000000239}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000017}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000611}, !- Handle - {00000000-0000-0000-0098-000000000017}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000240}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000612}, !- Handle - {00000000-0000-0000-0052-000000000240}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 20; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000613}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0052-000000000241}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000614}, !- Handle - {00000000-0000-0000-0052-000000000241}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000615}, !- Handle - {00000000-0000-0000-0098-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000242}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000616}, !- Handle - {00000000-0000-0000-0052-000000000242}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000617}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0052-000000000243}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000618}, !- Handle - {00000000-0000-0000-0052-000000000243}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000019}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000619}, !- Handle - {00000000-0000-0000-0098-000000000019}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000244}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000620}, !- Handle - {00000000-0000-0000-0052-000000000244}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 22; !- Inlet Port - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000001}, !- Handle - Connector Mixer 1, !- Name - {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000002}, !- Handle - Connector Mixer 2, !- Name - {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000090}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000159}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000178}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000182}, !- Inlet Branch Name 4 - {00000000-0000-0000-0020-000000000198}, !- Inlet Branch Name 5 - {00000000-0000-0000-0020-000000000218}, !- Inlet Branch Name 6 - {00000000-0000-0000-0020-000000000222}, !- Inlet Branch Name 7 - {00000000-0000-0000-0020-000000000232}, !- Inlet Branch Name 8 - {00000000-0000-0000-0020-000000000236}, !- Inlet Branch Name 9 - {00000000-0000-0000-0020-000000000246}, !- Inlet Branch Name 10 - {00000000-0000-0000-0020-000000000250}, !- Inlet Branch Name 11 - {00000000-0000-0000-0020-000000000260}, !- Inlet Branch Name 12 - {00000000-0000-0000-0020-000000000264}, !- Inlet Branch Name 13 - {00000000-0000-0000-0020-000000000274}, !- Inlet Branch Name 14 - {00000000-0000-0000-0020-000000000278}, !- Inlet Branch Name 15 - {00000000-0000-0000-0020-000000000288}, !- Inlet Branch Name 16 - {00000000-0000-0000-0020-000000000292}, !- Inlet Branch Name 17 - {00000000-0000-0000-0020-000000000308}, !- Inlet Branch Name 18 - {00000000-0000-0000-0020-000000000328}, !- Inlet Branch Name 19 - {00000000-0000-0000-0020-000000000332}, !- Inlet Branch Name 20 - {00000000-0000-0000-0020-000000000342}, !- Inlet Branch Name 21 - {00000000-0000-0000-0020-000000000346}, !- Inlet Branch Name 22 - {00000000-0000-0000-0020-000000000356}, !- Inlet Branch Name 23 - {00000000-0000-0000-0020-000000000360}, !- Inlet Branch Name 24 - {00000000-0000-0000-0020-000000000370}, !- Inlet Branch Name 25 - {00000000-0000-0000-0020-000000000374}, !- Inlet Branch Name 26 - {00000000-0000-0000-0020-000000000384}, !- Inlet Branch Name 27 - {00000000-0000-0000-0020-000000000388}, !- Inlet Branch Name 28 - {00000000-0000-0000-0020-000000000398}, !- Inlet Branch Name 29 - {00000000-0000-0000-0020-000000000402}, !- Inlet Branch Name 30 - {00000000-0000-0000-0020-000000000418}, !- Inlet Branch Name 31 - {00000000-0000-0000-0020-000000000438}, !- Inlet Branch Name 32 - {00000000-0000-0000-0020-000000000442}, !- Inlet Branch Name 33 - {00000000-0000-0000-0020-000000000452}, !- Inlet Branch Name 34 - {00000000-0000-0000-0020-000000000456}, !- Inlet Branch Name 35 - {00000000-0000-0000-0020-000000000466}, !- Inlet Branch Name 36 - {00000000-0000-0000-0020-000000000470}, !- Inlet Branch Name 37 - {00000000-0000-0000-0020-000000000480}, !- Inlet Branch Name 38 - {00000000-0000-0000-0020-000000000484}, !- Inlet Branch Name 39 - {00000000-0000-0000-0020-000000000494}, !- Inlet Branch Name 40 - {00000000-0000-0000-0020-000000000498}, !- Inlet Branch Name 41 - {00000000-0000-0000-0020-000000000508}, !- Inlet Branch Name 42 - {00000000-0000-0000-0020-000000000512}; !- Inlet Branch Name 43 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000003}, !- Handle - Connector Mixer 3, !- Name - {00000000-0000-0000-0020-000000000119}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000110}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000114}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000118}; !- Inlet Branch Name 3 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000004}, !- Handle - Connector Mixer 4, !- Name - {00000000-0000-0000-0020-000000000103}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000162}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000202}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000312}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000422}; !- Inlet Branch Name 4 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000005}, !- Handle - Connector Mixer 5, !- Name - {00000000-0000-0000-0020-000000000140}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000135}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000139}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000006}, !- Handle - Connector Mixer 6, !- Name - {00000000-0000-0000-0020-000000000128}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000145}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000149}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000007}, !- Handle - Connector Mixer 7, !- Name - {00000000-0000-0000-0020-000000000539}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000531}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000535}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000008}, !- Handle - Connector Mixer 8, !- Name - {00000000-0000-0000-0020-000000000542}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000538}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000548}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000552}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000556}, !- Inlet Branch Name 4 - {00000000-0000-0000-0020-000000000560}, !- Inlet Branch Name 5 - {00000000-0000-0000-0020-000000000564}, !- Inlet Branch Name 6 - {00000000-0000-0000-0020-000000000568}, !- Inlet Branch Name 7 - {00000000-0000-0000-0020-000000000572}, !- Inlet Branch Name 8 - {00000000-0000-0000-0020-000000000576}, !- Inlet Branch Name 9 - {00000000-0000-0000-0020-000000000580}, !- Inlet Branch Name 10 - {00000000-0000-0000-0020-000000000584}, !- Inlet Branch Name 11 - {00000000-0000-0000-0020-000000000588}, !- Inlet Branch Name 12 - {00000000-0000-0000-0020-000000000592}, !- Inlet Branch Name 13 - {00000000-0000-0000-0020-000000000596}, !- Inlet Branch Name 14 - {00000000-0000-0000-0020-000000000600}, !- Inlet Branch Name 15 - {00000000-0000-0000-0020-000000000604}, !- Inlet Branch Name 16 - {00000000-0000-0000-0020-000000000608}, !- Inlet Branch Name 17 - {00000000-0000-0000-0020-000000000612}, !- Inlet Branch Name 18 - {00000000-0000-0000-0020-000000000616}, !- Inlet Branch Name 19 - {00000000-0000-0000-0020-000000000620}; !- Inlet Branch Name 20 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000001}, !- Handle - Connector Splitter 1, !- Name - {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000002}, !- Handle - Connector Splitter 2, !- Name - {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000156}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000175}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000179}, !- Outlet Branch Name 4 - {00000000-0000-0000-0020-000000000195}, !- Outlet Branch Name 5 - {00000000-0000-0000-0020-000000000215}, !- Outlet Branch Name 6 - {00000000-0000-0000-0020-000000000219}, !- Outlet Branch Name 7 - {00000000-0000-0000-0020-000000000229}, !- Outlet Branch Name 8 - {00000000-0000-0000-0020-000000000233}, !- Outlet Branch Name 9 - {00000000-0000-0000-0020-000000000243}, !- Outlet Branch Name 10 - {00000000-0000-0000-0020-000000000247}, !- Outlet Branch Name 11 - {00000000-0000-0000-0020-000000000257}, !- Outlet Branch Name 12 - {00000000-0000-0000-0020-000000000261}, !- Outlet Branch Name 13 - {00000000-0000-0000-0020-000000000271}, !- Outlet Branch Name 14 - {00000000-0000-0000-0020-000000000275}, !- Outlet Branch Name 15 - {00000000-0000-0000-0020-000000000285}, !- Outlet Branch Name 16 - {00000000-0000-0000-0020-000000000289}, !- Outlet Branch Name 17 - {00000000-0000-0000-0020-000000000305}, !- Outlet Branch Name 18 - {00000000-0000-0000-0020-000000000325}, !- Outlet Branch Name 19 - {00000000-0000-0000-0020-000000000329}, !- Outlet Branch Name 20 - {00000000-0000-0000-0020-000000000339}, !- Outlet Branch Name 21 - {00000000-0000-0000-0020-000000000343}, !- Outlet Branch Name 22 - {00000000-0000-0000-0020-000000000353}, !- Outlet Branch Name 23 - {00000000-0000-0000-0020-000000000357}, !- Outlet Branch Name 24 - {00000000-0000-0000-0020-000000000367}, !- Outlet Branch Name 25 - {00000000-0000-0000-0020-000000000371}, !- Outlet Branch Name 26 - {00000000-0000-0000-0020-000000000381}, !- Outlet Branch Name 27 - {00000000-0000-0000-0020-000000000385}, !- Outlet Branch Name 28 - {00000000-0000-0000-0020-000000000395}, !- Outlet Branch Name 29 - {00000000-0000-0000-0020-000000000399}, !- Outlet Branch Name 30 - {00000000-0000-0000-0020-000000000415}, !- Outlet Branch Name 31 - {00000000-0000-0000-0020-000000000435}, !- Outlet Branch Name 32 - {00000000-0000-0000-0020-000000000439}, !- Outlet Branch Name 33 - {00000000-0000-0000-0020-000000000449}, !- Outlet Branch Name 34 - {00000000-0000-0000-0020-000000000453}, !- Outlet Branch Name 35 - {00000000-0000-0000-0020-000000000463}, !- Outlet Branch Name 36 - {00000000-0000-0000-0020-000000000467}, !- Outlet Branch Name 37 - {00000000-0000-0000-0020-000000000477}, !- Outlet Branch Name 38 - {00000000-0000-0000-0020-000000000481}, !- Outlet Branch Name 39 - {00000000-0000-0000-0020-000000000491}, !- Outlet Branch Name 40 - {00000000-0000-0000-0020-000000000495}, !- Outlet Branch Name 41 - {00000000-0000-0000-0020-000000000505}, !- Outlet Branch Name 42 - {00000000-0000-0000-0020-000000000509}; !- Outlet Branch Name 43 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000003}, !- Handle - Connector Splitter 3, !- Name - {00000000-0000-0000-0020-000000000107}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000098}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000111}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000115}; !- Outlet Branch Name 3 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000004}, !- Handle - Connector Splitter 4, !- Name - {00000000-0000-0000-0020-000000000101}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000102}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000199}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000309}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000419}; !- Outlet Branch Name 4 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000005}, !- Handle - Connector Splitter 5, !- Name - {00000000-0000-0000-0020-000000000132}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000123}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000136}; !- Outlet Branch Name 2 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000006}, !- Handle - Connector Splitter 6, !- Name - {00000000-0000-0000-0020-000000000126}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000127}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000146}; !- Outlet Branch Name 2 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000007}, !- Handle - Connector Splitter 7, !- Name - {00000000-0000-0000-0020-000000000528}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000520}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000532}; !- Outlet Branch Name 2 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000008}, !- Handle - Connector Splitter 8, !- Name - {00000000-0000-0000-0020-000000000523}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000524}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000545}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000549}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000553}, !- Outlet Branch Name 4 - {00000000-0000-0000-0020-000000000557}, !- Outlet Branch Name 5 - {00000000-0000-0000-0020-000000000561}, !- Outlet Branch Name 6 - {00000000-0000-0000-0020-000000000565}, !- Outlet Branch Name 7 - {00000000-0000-0000-0020-000000000569}, !- Outlet Branch Name 8 - {00000000-0000-0000-0020-000000000573}, !- Outlet Branch Name 9 - {00000000-0000-0000-0020-000000000577}, !- Outlet Branch Name 10 - {00000000-0000-0000-0020-000000000581}, !- Outlet Branch Name 11 - {00000000-0000-0000-0020-000000000585}, !- Outlet Branch Name 12 - {00000000-0000-0000-0020-000000000589}, !- Outlet Branch Name 13 - {00000000-0000-0000-0020-000000000593}, !- Outlet Branch Name 14 - {00000000-0000-0000-0020-000000000597}, !- Outlet Branch Name 15 - {00000000-0000-0000-0020-000000000601}, !- Outlet Branch Name 16 - {00000000-0000-0000-0020-000000000605}, !- Outlet Branch Name 17 - {00000000-0000-0000-0020-000000000609}, !- Outlet Branch Name 18 - {00000000-0000-0000-0020-000000000613}, !- Outlet Branch Name 19 - {00000000-0000-0000-0020-000000000617}; !- Outlet Branch Name 20 - -OS:Construction, - {00000000-0000-0000-0023-000000000001}, !- Handle - BTAP-Ext-DaylightDiffuser, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000002}, !- Handle - BTAP-Ext-DaylightDiffuser:U=0.220 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000003}, !- Handle - BTAP-Ext-DaylightDomes, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000004}, !- Handle - BTAP-Ext-DaylightDomes:U=0.220 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000005}, !- Handle - BTAP-Ext-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000018}, !- Layer 1 - {00000000-0000-0000-0050-000000000013}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000006}, !- Handle - BTAP-Ext-Door:U-2.2, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000017}, !- Layer 1 - {00000000-0000-0000-0050-000000000011}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000007}, !- Handle - BTAP-Ext-FixedWindow, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000008}, !- Handle - BTAP-Ext-FixedWindow:U=0.220 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000009}, !- Handle - BTAP-Ext-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000013}, !- Layer 1 - {00000000-0000-0000-0049-000000000008}, !- Layer 2 - {00000000-0000-0000-0050-000000000007}; !- Layer 3 - -OS:Construction, - {00000000-0000-0000-0023-000000000010}, !- Handle - BTAP-Ext-Floor-Mass:U-0.162, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000008}, !- Layer 1 - {00000000-0000-0000-0049-000000000007}, !- Layer 2 - {00000000-0000-0000-0050-000000000003}; !- Layer 3 - -OS:Construction, - {00000000-0000-0000-0023-000000000011}, !- Handle - BTAP-Ext-GlassDoors, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000012}, !- Handle - BTAP-Ext-GlassDoors:U=0.220 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000013}, !- Handle - BTAP-Ext-OverHeadDoor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000013}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000014}, !- Handle - BTAP-Ext-OverHeadDoor:U-2.2, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000012}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000015}, !- Handle - BTAP-Ext-Roof-Metal, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000024}, !- Layer 1 - {00000000-0000-0000-0050-000000000013}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000016}, !- Handle - BTAP-Ext-Roof-Metal:U-0.162, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000023}, !- Layer 1 - {00000000-0000-0000-0050-000000000010}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000017}, !- Handle - BTAP-Ext-Skylights, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000018}, !- Handle - BTAP-Ext-Skylights:U=0.220 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000019}, !- Handle - BTAP-Ext-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000006}, !- Layer 1 - {00000000-0000-0000-0049-000000000014}, !- Layer 2 - {00000000-0000-0000-0050-000000000013}, !- Layer 3 - {00000000-0000-0000-0049-000000000002}; !- Layer 4 - -OS:Construction, - {00000000-0000-0000-0023-000000000020}, !- Handle - BTAP-Ext-Wall-Mass:U-0.21, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000005}, !- Layer 1 - {00000000-0000-0000-0049-000000000013}, !- Layer 2 - {00000000-0000-0000-0050-000000000009}, !- Layer 3 - {00000000-0000-0000-0049-000000000001}; !- Layer 4 - -OS:Construction, - {00000000-0000-0000-0023-000000000021}, !- Handle - BTAP-Grnd-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000012}, !- Layer 1 - {00000000-0000-0000-0050-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000022}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000009}, !- Layer 1 - {00000000-0000-0000-0050-000000000004}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000023}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000009}, !- Layer 1 - {00000000-0000-0000-0049-000000000016}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000024}, !- Handle - BTAP-Grnd-Roof-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000012}, !- Layer 1 - {00000000-0000-0000-0050-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000025}, !- Handle - BTAP-Grnd-Roof-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000011}, !- Layer 1 - {00000000-0000-0000-0050-000000000006}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000026}, !- Handle - BTAP-Grnd-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000012}, !- Layer 1 - {00000000-0000-0000-0050-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000027}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000010}, !- Layer 1 - {00000000-0000-0000-0050-000000000005}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000028}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000010}, !- Layer 1 - {00000000-0000-0000-0049-000000000015}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000029}, !- Handle - BTAP-Int-Ceiling, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000007}, !- Layer 1 - {00000000-0000-0000-0049-000000000003}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000030}, !- Handle - BTAP-Int-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000021}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000031}, !- Handle - BTAP-Int-Floor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000003}, !- Layer 1 - {00000000-0000-0000-0050-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000032}, !- Handle - BTAP-Int-Partition, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000021}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000033}, !- Handle - BTAP-Int-Wall, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000019}, !- Layer 1 - {00000000-0000-0000-0049-000000000019}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000034}, !- Handle - BTAP-Int-Window, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0102-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000035}, !- Handle - Basement Floor construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000022}, !- Layer 1 - {00000000-0000-0000-0050-000000000001}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000036}, !- Handle - Basement Wall construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000022}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000037}, !- Handle - Floor Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000001}, !- Layer 1 - {00000000-0000-0000-0049-000000000004}, !- Layer 2 - {00000000-0000-0000-0050-000000000002}; !- Layer 3 - -OS:Construction, - {00000000-0000-0000-0023-000000000038}, !- Handle - Wall Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000020}, !- Layer 1 - {00000000-0000-0000-0049-000000000020}; !- Layer 2 - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000004}, !- Handle - Controller Mechanical Ventilation 4, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000005}, !- Handle - Controller Mechanical Ventilation 5, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0065-000000000026}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - NoEconomizer, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} - 64000, !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0065-000000000030}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0065-000000000027}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000003}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000004}, !- Handle - Controller Outdoor Air 4, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0065-000000000028}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000004}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000005}, !- Handle - Controller Outdoor Air 5, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0065-000000000029}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000005}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000001}, !- Handle - Controller Water Coil 1, !- Name - {00000000-0000-0000-0018-000000000001}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000002}, !- Handle - Controller Water Coil 10, !- Name - {00000000-0000-0000-0018-000000000022}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000003}, !- Handle - Controller Water Coil 11, !- Name - {00000000-0000-0000-0018-000000000023}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000004}, !- Handle - Controller Water Coil 12, !- Name - {00000000-0000-0000-0018-000000000002}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000005}, !- Handle - Controller Water Coil 13, !- Name - {00000000-0000-0000-0016-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000006}, !- Handle - Controller Water Coil 14, !- Name - {00000000-0000-0000-0018-000000000003}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000007}, !- Handle - Controller Water Coil 15, !- Name - {00000000-0000-0000-0018-000000000004}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000008}, !- Handle - Controller Water Coil 16, !- Name - {00000000-0000-0000-0018-000000000005}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000009}, !- Handle - Controller Water Coil 17, !- Name - {00000000-0000-0000-0018-000000000006}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000010}, !- Handle - Controller Water Coil 18, !- Name - {00000000-0000-0000-0018-000000000007}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000011}, !- Handle - Controller Water Coil 19, !- Name - {00000000-0000-0000-0018-000000000008}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000012}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0016-000000000001}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000013}, !- Handle - Controller Water Coil 20, !- Name - {00000000-0000-0000-0018-000000000009}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000014}, !- Handle - Controller Water Coil 21, !- Name - {00000000-0000-0000-0016-000000000004}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000015}, !- Handle - Controller Water Coil 22, !- Name - {00000000-0000-0000-0018-000000000010}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000016}, !- Handle - Controller Water Coil 23, !- Name - {00000000-0000-0000-0018-000000000011}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000017}, !- Handle - Controller Water Coil 24, !- Name - {00000000-0000-0000-0018-000000000013}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000018}, !- Handle - Controller Water Coil 25, !- Name - {00000000-0000-0000-0018-000000000014}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000019}, !- Handle - Controller Water Coil 26, !- Name - {00000000-0000-0000-0018-000000000015}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000020}, !- Handle - Controller Water Coil 27, !- Name - {00000000-0000-0000-0018-000000000016}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000021}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0018-000000000012}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000022}, !- Handle - Controller Water Coil 4, !- Name - {00000000-0000-0000-0018-000000000017}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000023}, !- Handle - Controller Water Coil 5, !- Name - {00000000-0000-0000-0016-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000024}, !- Handle - Controller Water Coil 6, !- Name - {00000000-0000-0000-0018-000000000018}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000025}, !- Handle - Controller Water Coil 7, !- Name - {00000000-0000-0000-0018-000000000019}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000026}, !- Handle - Controller Water Coil 8, !- Name - {00000000-0000-0000-0018-000000000020}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000027}, !- Handle - Controller Water Coil 9, !- Name - {00000000-0000-0000-0018-000000000021}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:CoolingTower:SingleSpeed, - {00000000-0000-0000-0027-000000000001}, !- Handle - Cooling Tower Single Speed 1, !- Name - {00000000-0000-0000-0020-000000000133}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000134}, !- Water Outlet Node Name - autosize, !- Design Water Flow Rate {m3/s} - autosize, !- Design Air Flow Rate {m3/s} - 36673.2686653161, !- Fan Power at Design Air Flow Rate {W} - autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} - autosize, !- Air Flow Rate in Free Convection Regime {m3/s} - autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} - UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method - , !- Nominal Capacity {W} - 0, !- Free Convection Capacity {W} - 0, !- Basin Heater Capacity {W/K} - 2, !- Basin Heater Setpoint Temperature {C} - , !- Basin Heater Operating Schedule Name - LossFactor, !- Evaporation Loss Mode - 0.2, !- Evaporation Loss Factor {percent/K} - 0.008, !- Drift Loss Percent {percent} - ConcentrationRatio, !- Blowdown Calculation Mode - 3, !- Blowdown Concentration Ratio - , !- Blowdown Makeup Water Usage Schedule Name - , !- Outdoor Air Inlet Node Name - FanCycling, !- Capacity Control - 2, !- Number of Cells - MinimalCell, !- Cell Control - 0.33, !- Cell Minimum Water Flow Rate Fraction - 2.5, !- Cell Maximum Water Flow Rate Fraction - 1, !- Sizing Factor - 0.1, !- Free Convection Air Flow Rate Sizing Factor - 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor - 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio - 0.1, !- Free Convection Nominal Capacity Sizing Factor - 35, !- Design Inlet Air Dry-Bulb Temperature {C} - 24, !- Design Inlet Air Wet-Bulb Temperature {C} - 5, !- Design Approach Temperature {deltaC} - 6, !- Design Range Temperature {deltaC} - General; !- End-Use Subcategory - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000001}, !- Handle - Curve Biquadratic 1, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.000554364, !- Coefficient3 x**2 - -0.00755748, !- Coefficient4 y - 3.3048e-05, !- Coefficient5 y**2 - -0.000191808, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000002}, !- Handle - Curve Biquadratic 2, !- Name - 0.116936, !- Coefficient1 Constant - 0.0284933, !- Coefficient2 x - -0.000411156, !- Coefficient3 x**2 - 0.0214108, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000003}, !- Handle - Curve Biquadratic 3, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000004}, !- Handle - Curve Biquadratic 4, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000005}, !- Handle - Curve Biquadratic 5, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000006}, !- Handle - Curve Biquadratic 6, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000007}, !- Handle - DXCOOL-NECB2011-REF-CAPFT, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.00055436, !- Coefficient3 x**2 - -0.0075575, !- Coefficient4 y - 3.3e-05, !- Coefficient5 y**2 - -0.0001918, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000008}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFT, !- Name - 0.1141714, !- Coefficient1 Constant - 0.02818224, !- Coefficient2 x - -0.0004199, !- Coefficient3 x**2 - 0.02141082, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000009}, !- Handle - WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name - 0.707908, !- Coefficient1 Constant - -0.00200657, !- Coefficient2 x - -0.00259605, !- Coefficient3 x**2 - 0.0300588, !- Coefficient4 y - -0.00105643, !- Coefficient5 y**2 - 0.0020457, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000010}, !- Handle - WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name - 0.560523, !- Coefficient1 Constant - -0.0137816, !- Coefficient2 x - 6.56424e-05, !- Coefficient3 x**2 - 0.0132194, !- Coefficient4 y - 0.000268596, !- Coefficient5 y**2 - -0.000501131, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000011}, !- Handle - WaterCooled_Scroll_CAPFT_NECB2011, !- Name - 0.94418, !- Coefficient1 Constant - 0.0337102, !- Coefficient2 x - 9.75564e-05, !- Coefficient3 x**2 - -0.00322114, !- Coefficient4 y - -4.91832e-05, !- Coefficient5 y**2 - -0.000177584, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000012}, !- Handle - WaterCooled_Scroll_EIRFT_NECB2011, !- Name - 0.727393, !- Coefficient1 Constant - -0.0118922, !- Coefficient2 x - 0.000541177, !- Coefficient3 x**2 - 0.00187934, !- Coefficient4 y - 0.000473461, !- Coefficient5 y**2 - -0.000711472, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000001}, !- Handle - BOILER-EFFFPLR-NECB2011, !- Name - 0.3831, !- Coefficient1 Constant - 2.0567, !- Coefficient2 x - -2.6469, !- Coefficient3 x**2 - 1.2148, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000002}, !- Handle - Curve Cubic 1, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000003}, !- Handle - DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000004}, !- Handle - FURNACE-EFFPLR-NECB2011, !- Name - 0.722, !- Coefficient1 Constant - 0.8211, !- Coefficient2 x - -1.0396, !- Coefficient3 x**2 - 0.5, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000005}, !- Handle - SWH-EFFFPLR-NECB2011, !- Name - 0.7576, !- Coefficient1 Constant - 1.0071, !- Coefficient2 x - -1.4443, !- Coefficient3 x**2 - 0.6844, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000006}, !- Handle - VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name - -2.4176, !- Coefficient1 Constant - 9.5874, !- Coefficient2 x - -11.559, !- Coefficient3 x**2 - 5.4009, !- Coefficient4 x**3 - 0.68, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000007}, !- Handle - VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name - -4.1457, !- Coefficient1 Constant - 16.803, !- Coefficient2 x - -19.471, !- Coefficient3 x**2 - 7.8488, !- Coefficient4 x**3 - 0.5, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000008}, !- Handle - VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name - -0.3477, !- Coefficient1 Constant - 4.0976, !- Coefficient2 x - -5.0024, !- Coefficient3 x**2 - 2.268, !- Coefficient4 x**3 - 0.22, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000001}, !- Handle - Curve Quadratic 1, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000002}, !- Handle - Curve Quadratic 2, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000003}, !- Handle - Curve Quadratic 3, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000004}, !- Handle - Curve Quadratic 4, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000005}, !- Handle - DXCOOL-NECB2011-REF-CAPFFLOW, !- Name - 0.8, !- Coefficient1 Constant - 0.2, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000006}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name - 1.1552, !- Coefficient1 Constant - -0.1808, !- Coefficient2 x - 0.0256, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000007}, !- Handle - WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name - 0.171493, !- Coefficient1 Constant - 0.588202, !- Coefficient2 x - 0.237373, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000008}, !- Handle - WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name - 0.04412, !- Coefficient1 Constant - 0.640367, !- Coefficient2 x - 0.319555, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:DefaultConstructionSet, - {00000000-0000-0000-0031-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name - {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name - {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name - {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name - {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name - {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - , !- Site Shading Construction Name - ; !- Adiabatic Surface Construction Name - -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000001}, !- Handle - Space Function - undefined - Schedule Set, !- 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 - {00000000-0000-0000-0065-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000002}, !- Handle - Space Function Electrical/Mechanical-sch-A Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0065-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0065-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0065-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0065-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0065-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000003}, !- Handle - Space Function Office - open plan Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0065-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0065-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0065-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0065-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0065-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000006}, !- Door Construction Name - {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000002}, !- Handle - Default Sub Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000030}, !- 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:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000003}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000005}, !- Door Construction Name - {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000002}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000003}, !- Handle - Default Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000004}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000005}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name - -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000001}, !- Handle - Space Function - undefined - Ventilation, !- Name - , !- Outdoor Air Method - 0, !- Outdoor Air Flow per Person {m3/s-person} - 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000002}, !- Handle - Space Function Electrical/Mechanical-sch-A 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:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000003}, !- Handle - Space Function Office - open plan Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.0142091703329032, !- 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:ElectricEquipment, - {00000000-0000-0000-0036-000000000001}, !- Handle - Space Function Electrical/Mechanical-sch-A Elec Equip, !- Name - {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0084-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory - -OS:ElectricEquipment, - {00000000-0000-0000-0036-000000000002}, !- Handle - Space Function Office - open plan Elec Equip, !- Name - {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0084-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory - -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000001}, !- Handle - Space Function Electrical/Mechanical-sch-A Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 0.999991679497248, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant - -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000002}, !- Handle - Space Function Office - open plan Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.49993758008349, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name - {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name - {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000005}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_ClgSch0, !- Name - {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000006}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_HtgSch0, !- Name - {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b3ce077a-2280-4efe-aa21-2f3c722efb5c}<23.9 && {b3ce077a-2280-4efe-aa21-2f3c722efb5c}>1.7, !- Program Line 1 - SET {49f21518-6fe1-4c4e-8e6e-215d09ebd443} = 29.4, !- Program Line 2 - SET {23b81d5f-2e26-4f4d-83b7-3130476d7215} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b3ce077a-2280-4efe-aa21-2f3c722efb5c}<23.9 && {b3ce077a-2280-4efe-aa21-2f3c722efb5c}>1.7, !- Program Line 4 - SET {49f21518-6fe1-4c4e-8e6e-215d09ebd443} = 29.4, !- Program Line 5 - SET {23b81d5f-2e26-4f4d-83b7-3130476d7215} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b3ce077a-2280-4efe-aa21-2f3c722efb5c}<23.9 && {b3ce077a-2280-4efe-aa21-2f3c722efb5c}>1.7, !- Program Line 7 - SET {49f21518-6fe1-4c4e-8e6e-215d09ebd443} = 29.4, !- Program Line 8 - SET {23b81d5f-2e26-4f4d-83b7-3130476d7215} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b3ce077a-2280-4efe-aa21-2f3c722efb5c}<23.9 && {b3ce077a-2280-4efe-aa21-2f3c722efb5c}>1.7, !- Program Line 10 - SET {49f21518-6fe1-4c4e-8e6e-215d09ebd443} = 29.4, !- Program Line 11 - SET {23b81d5f-2e26-4f4d-83b7-3130476d7215} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {49f21518-6fe1-4c4e-8e6e-215d09ebd443} = NULL, !- Program Line 14 - SET {23b81d5f-2e26-4f4d-83b7-3130476d7215} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0039-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bc252c52-ca1c-40f2-8c80-efc7606cfae8}<23.9 && {bc252c52-ca1c-40f2-8c80-efc7606cfae8}>1.7, !- Program Line 1 - SET {7dcb6520-4c8b-49c7-bbac-345cf7193c94} = 29.4, !- Program Line 2 - SET {6a70c4c2-51e2-4732-9977-2e3d9535e1f4} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bc252c52-ca1c-40f2-8c80-efc7606cfae8}<23.9 && {bc252c52-ca1c-40f2-8c80-efc7606cfae8}>1.7, !- Program Line 4 - SET {7dcb6520-4c8b-49c7-bbac-345cf7193c94} = 29.4, !- Program Line 5 - SET {6a70c4c2-51e2-4732-9977-2e3d9535e1f4} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bc252c52-ca1c-40f2-8c80-efc7606cfae8}<23.9 && {bc252c52-ca1c-40f2-8c80-efc7606cfae8}>1.7, !- Program Line 7 - SET {7dcb6520-4c8b-49c7-bbac-345cf7193c94} = 29.4, !- Program Line 8 - SET {6a70c4c2-51e2-4732-9977-2e3d9535e1f4} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bc252c52-ca1c-40f2-8c80-efc7606cfae8}<23.9 && {bc252c52-ca1c-40f2-8c80-efc7606cfae8}>1.7, !- Program Line 10 - SET {7dcb6520-4c8b-49c7-bbac-345cf7193c94} = 29.4, !- Program Line 11 - SET {6a70c4c2-51e2-4732-9977-2e3d9535e1f4} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {7dcb6520-4c8b-49c7-bbac-345cf7193c94} = NULL, !- Program Line 14 - SET {6a70c4c2-51e2-4732-9977-2e3d9535e1f4} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0039-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d635fc0f-8582-4cce-bc53-cbfd7bd7b4b6}<23.9 && {d635fc0f-8582-4cce-bc53-cbfd7bd7b4b6}>1.7, !- Program Line 1 - SET {c980e114-25a5-4e9f-9530-add2f9269b55} = 29.4, !- Program Line 2 - SET {4ceb225a-7b52-4731-8b9f-732ca00b0812} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d635fc0f-8582-4cce-bc53-cbfd7bd7b4b6}<23.9 && {d635fc0f-8582-4cce-bc53-cbfd7bd7b4b6}>1.7, !- Program Line 4 - SET {c980e114-25a5-4e9f-9530-add2f9269b55} = 29.4, !- Program Line 5 - SET {4ceb225a-7b52-4731-8b9f-732ca00b0812} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d635fc0f-8582-4cce-bc53-cbfd7bd7b4b6}<23.9 && {d635fc0f-8582-4cce-bc53-cbfd7bd7b4b6}>1.7, !- Program Line 7 - SET {c980e114-25a5-4e9f-9530-add2f9269b55} = 29.4, !- Program Line 8 - SET {4ceb225a-7b52-4731-8b9f-732ca00b0812} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d635fc0f-8582-4cce-bc53-cbfd7bd7b4b6}<23.9 && {d635fc0f-8582-4cce-bc53-cbfd7bd7b4b6}>1.7, !- Program Line 10 - SET {c980e114-25a5-4e9f-9530-add2f9269b55} = 29.4, !- Program Line 11 - SET {4ceb225a-7b52-4731-8b9f-732ca00b0812} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {c980e114-25a5-4e9f-9530-add2f9269b55} = NULL, !- Program Line 14 - SET {4ceb225a-7b52-4731-8b9f-732ca00b0812} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0040-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0039-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0040-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0039-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0040-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0039-000000000003}; !- Program Name 1 - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0041-000000000001}, !- Handle - OAT, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0041-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0041-000000000003}, !- Handle - OAT_2, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:Facility, - {00000000-0000-0000-0042-000000000001}; !- Handle - -OS:Fan:ConstantVolume, - {00000000-0000-0000-0043-000000000001}, !- Handle - Fan Constant Volume 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.39975, !- Fan Total Efficiency - 640, !- Pressure Rise {Pa} - AutoSize, !- Maximum Flow Rate {m3/s} - 0.615, !- Motor Efficiency - , !- Motor In Airstream Fraction - {00000000-0000-0000-0020-000000000082}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000080}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000212}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000213}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000322}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000323}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000003}, !- Handle - Sys6 Return Fan 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000432}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000433}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000004}, !- Handle - Sys6 Return Fan, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000172}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000173}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000005}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000207}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000205}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000006}, !- Handle - Sys6 Supply Fan 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000317}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000315}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000007}, !- Handle - Sys6 Supply Fan 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000427}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000425}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000008}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000167}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000165}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Foundation:Kiva, - {00000000-0000-0000-0045-000000000001}, !- Handle - Bldg Kiva Foundation, !- Name - , !- Initial Indoor Air Temperature {C} - , !- Interior Horizontal Insulation Material Name - , !- Interior Horizontal Insulation Depth {m} - , !- Interior Horizontal Insulation Width {m} - , !- Interior Vertical Insulation Material Name - , !- Interior Vertical Insulation Depth {m} - , !- Exterior Horizontal Insulation Material Name - , !- Exterior Horizontal Insulation Depth {m} - , !- Exterior Horizontal Insulation Width {m} - , !- Exterior Vertical Insulation Material Name - , !- Exterior Vertical Insulation Depth {m} - 0, !- Wall Height Above Grade {m} - 0, !- Wall Depth Below Slab {m} - , !- Footing Wall Construction Name - , !- Footing Material Name - ; !- Footing Depth {m} - -OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0046-000000000001}, !- Handle - , !- Soil Conductivity {W/m-K} - , !- Soil Density {kg/m3} - , !- Soil Specific Heat {J/kg-K} - , !- Ground Solar Absorptivity {dimensionless} - , !- Ground Thermal Absorptivity {dimensionless} - , !- Ground Surface Roughness {m} - , !- Far-Field Width {m} - , !- Deep-Ground Boundary Condition - , !- Deep-Ground Depth {m} - , !- Minimum Cell Dimension {m} - , !- Maximum Cell Growth Coefficient {dimensionless} - ; !- Simulation Timestep - -OS:Lights, - {00000000-0000-0000-0047-000000000001}, !- Handle - Space Function Electrical/Mechanical-sch-A Lights, !- Name - {00000000-0000-0000-0048-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0084-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory - -OS:Lights, - {00000000-0000-0000-0047-000000000002}, !- Handle - Space Function Office - open plan Lights, !- Name - {00000000-0000-0000-0048-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0084-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory - -OS:Lights:Definition, - {00000000-0000-0000-0048-000000000001}, !- Handle - Space Function Electrical/Mechanical-sch-A Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 13.2998893147092, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible - -OS:Lights:Definition, - {00000000-0000-0000-0048-000000000002}, !- Handle - Space Function Office - open plan Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.9999084529419, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible - -OS:Material, - {00000000-0000-0000-0049-000000000001}, !- Handle - 1/2IN Gypsum 1, !- 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:Material, - {00000000-0000-0000-0049-000000000002}, !- 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:Material, - {00000000-0000-0000-0049-000000000003}, !- Handle - 100mm Normalweight concrete floor 1, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} - -OS:Material, - {00000000-0000-0000-0049-000000000004}, !- Handle - 100mm Normalweight concrete floor, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} - -OS:Material, - {00000000-0000-0000-0049-000000000005}, !- Handle - 1IN Stucco 1, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000006}, !- Handle - 1IN Stucco, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000007}, !- Handle - 4 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000008}, !- Handle - 4 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000009}, !- Handle - 6 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000010}, !- Handle - 6 in. Normalweight Concrete Floor 2, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000011}, !- Handle - 6 in. Normalweight Concrete Floor 3, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000012}, !- Handle - 6 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000013}, !- Handle - 8IN CONCRETE HW RefBldg 1, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000014}, !- Handle - 8IN CONCRETE HW RefBldg, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000015}, !- Handle - Expanded Polystyrene 1, !- Name - MediumSmooth, !- Roughness - 0.100199429303091, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} - -OS:Material, - {00000000-0000-0000-0049-000000000016}, !- Handle - Expanded Polystyrene, !- Name - MediumSmooth, !- Roughness - 0.0363958681740979, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} - -OS:Material, - {00000000-0000-0000-0049-000000000017}, !- Handle - F08 Metal surface 1, !- 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, - {00000000-0000-0000-0049-000000000018}, !- 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, - {00000000-0000-0000-0049-000000000019}, !- Handle - G01 13mm gypsum board 1, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000020}, !- Handle - G01 13mm gypsum board, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000021}, !- 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:Material, - {00000000-0000-0000-0049-000000000022}, !- Handle - M10 200mm concrete block basement wall, !- Name - MediumRough, !- Roughness - 0.2032, !- Thickness {m} - 1.326, !- Conductivity {W/m-K} - 1842, !- Density {kg/m3} - 912; !- Specific Heat {J/kg-K} - -OS:Material, - {00000000-0000-0000-0049-000000000023}, !- Handle - Metal Roof Surface 1, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {00000000-0000-0000-0049-000000000024}, !- Handle - Metal Roof Surface, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000001}, !- Handle - CP02 CARPET PAD, !- Name - VeryRough, !- Roughness - 0.21648, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000002}, !- Handle - Nonres_Floor_Insulation, !- Name - MediumSmooth, !- Roughness - 2.88291975297193, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000003}, !- Handle - Typical Carpet Pad 1, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000004}, !- Handle - Typical Carpet Pad 2, !- Name - Smooth, !- Roughness - 1.25502993703786, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000005}, !- Handle - Typical Carpet Pad 3, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000006}, !- Handle - Typical Carpet Pad 4, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000007}, !- Handle - Typical Carpet Pad, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000008}, !- Handle - Typical Insulation 1, !- Name - Smooth, !- Roughness - 5.91237683519488, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000009}, !- Handle - Typical Insulation 2, !- Name - Smooth, !- Roughness - 4.49096231241638, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000010}, !- Handle - Typical Insulation 3, !- Name - Smooth, !- Roughness - 6.17282183832832, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000011}, !- Handle - Typical Insulation 4, !- Name - Smooth, !- Roughness - 0.454527786700932, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000012}, !- Handle - Typical Insulation 5, !- Name - Smooth, !- Roughness - 0.454545454545455, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material:NoMass, - {00000000-0000-0000-0050-000000000013}, !- Handle - Typical Insulation, !- Name - Smooth, !- Roughness - 0.101874652714525, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000001}, !- Handle - Availability Manager Night Cycle 1 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000002}, !- Handle - Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000003}, !- Handle - Availability Manager Night Cycle 1 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000004}, !- Handle - Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000013}, !- Handle - Availability Manager Night Cycle 4 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000014}, !- Handle - Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000015}, !- Handle - Availability Manager Night Cycle 4 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000016}, !- Handle - Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000017}, !- Handle - Availability Manager Night Cycle 5 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000018}, !- Handle - Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000019}, !- Handle - Availability Manager Night Cycle 5 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000020}, !- Handle - Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name - -OS:Node, - {00000000-0000-0000-0052-000000000001}, !- Handle - 1103gal NaturalGas Water Heater - 744kBtu/hr 0.805 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000520}, !- Inlet Port - {00000000-0000-0000-0020-000000000529}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000002}, !- Handle - 1103gal NaturalGas Water Heater - 744kBtu/hr 0.805 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000530}, !- Inlet Port - {00000000-0000-0000-0020-000000000531}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000003}, !- Handle - ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000025}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000004}, !- Handle - ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000037}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000005}, !- Handle - ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000027}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000006}, !- Handle - ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000184}, !- Inlet Port - {00000000-0000-0000-0020-000000000185}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000007}, !- Handle - ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000036}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000008}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000238}, !- Inlet Port - {00000000-0000-0000-0020-000000000239}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000009}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000030}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000010}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000266}, !- Inlet Port - {00000000-0000-0000-0020-000000000267}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000011}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000031}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000012}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000224}, !- Inlet Port - {00000000-0000-0000-0020-000000000225}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000013}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000038}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000014}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000280}, !- Inlet Port - {00000000-0000-0000-0020-000000000281}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000015}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000043}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000016}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000252}, !- Inlet Port - {00000000-0000-0000-0020-000000000253}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000017}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000045}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000018}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000294}, !- Inlet Port - {00000000-0000-0000-0020-000000000295}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000019}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000024}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000020}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000376}, !- Inlet Port - {00000000-0000-0000-0020-000000000377}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000021}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000033}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000022}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000362}, !- Inlet Port - {00000000-0000-0000-0020-000000000363}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000023}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000035}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000024}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000348}, !- Inlet Port - {00000000-0000-0000-0020-000000000349}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000025}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000040}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000026}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000334}, !- Inlet Port - {00000000-0000-0000-0020-000000000335}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000027}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000042}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000028}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000390}, !- Inlet Port - {00000000-0000-0000-0020-000000000391}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000029}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000044}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000030}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000404}, !- Inlet Port - {00000000-0000-0000-0020-000000000405}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000031}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000028}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000032}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000472}, !- Inlet Port - {00000000-0000-0000-0020-000000000473}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000033}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000029}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000034}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000486}, !- Inlet Port - {00000000-0000-0000-0020-000000000487}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000035}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000032}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000036}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000458}, !- Inlet Port - {00000000-0000-0000-0020-000000000459}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000037}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000034}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000038}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000500}, !- Inlet Port - {00000000-0000-0000-0020-000000000501}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000039}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000039}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000040}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000444}, !- Inlet Port - {00000000-0000-0000-0020-000000000445}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000041}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000041}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000042}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000514}, !- Inlet Port - {00000000-0000-0000-0020-000000000515}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000043}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000026}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000044}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000094}, !- Inlet Port - {00000000-0000-0000-0020-000000000095}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000045}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000096}, !- Inlet Port - {00000000-0000-0000-0020-000000000091}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000186}, !- Inlet Port - {00000000-0000-0000-0020-000000000187}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000188}, !- Inlet Port - {00000000-0000-0000-0020-000000000183}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000364}, !- Inlet Port - {00000000-0000-0000-0020-000000000365}; !- Outlet Port +OS:CoolingTower:SingleSpeed, + {00000000-0000-0000-0027-000000000001}, !- Handle + Cooling Tower Single Speed 1, !- Name + {00000000-0000-0000-0020-000000000133}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000134}, !- Water Outlet Node Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + 345.351269475612, !- Fan Power at Design Air Flow Rate {W} + autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} + autosize, !- Air Flow Rate in Free Convection Regime {m3/s} + autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + , !- Nominal Capacity {W} + 0, !- Free Convection Capacity {W} + 0, !- Basin Heater Capacity {W/K} + 2, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + LossFactor, !- Evaporation Loss Mode + 0.2, !- Evaporation Loss Factor {percent/K} + 0.008, !- Drift Loss Percent {percent} + ConcentrationRatio, !- Blowdown Calculation Mode + 3, !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Outdoor Air Inlet Node Name + FanCycling, !- Capacity Control + 1, !- Number of Cells + MinimalCell, !- Cell Control + 0.33, !- Cell Minimum Water Flow Rate Fraction + 2.5, !- Cell Maximum Water Flow Rate Fraction + 1, !- Sizing Factor + 0.1, !- Free Convection Air Flow Rate Sizing Factor + 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor + 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + 0.1, !- Free Convection Nominal Capacity Sizing Factor + 35, !- Design Inlet Air Dry-Bulb Temperature {C} + 24, !- Design Inlet Air Wet-Bulb Temperature {C} + 5, !- Design Approach Temperature {deltaC} + 6, !- Design Range Temperature {deltaC} + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0052-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000366}, !- Inlet Port - {00000000-0000-0000-0020-000000000361}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000001}, !- Handle + Curve Biquadratic 1, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.000554364, !- Coefficient3 x**2 + -0.00755748, !- Coefficient4 y + 3.3048e-05, !- Coefficient5 y**2 + -0.000191808, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0052-000000000050}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000378}, !- Inlet Port - {00000000-0000-0000-0020-000000000379}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000002}, !- Handle + Curve Biquadratic 2, !- Name + 0.116936, !- Coefficient1 Constant + 0.0284933, !- Coefficient2 x + -0.000411156, !- Coefficient3 x**2 + 0.0214108, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0052-000000000051}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000380}, !- Inlet Port - {00000000-0000-0000-0020-000000000375}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000003}, !- Handle + Curve Biquadratic 3, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0052-000000000052}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000392}, !- Inlet Port - {00000000-0000-0000-0020-000000000393}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000004}, !- Handle + Curve Biquadratic 4, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0052-000000000053}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000394}, !- Inlet Port - {00000000-0000-0000-0020-000000000389}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000005}, !- Handle + Curve Biquadratic 5, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0052-000000000054}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000406}, !- Inlet Port - {00000000-0000-0000-0020-000000000407}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000006}, !- Handle + Curve Biquadratic 6, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0052-000000000055}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000408}, !- Inlet Port - {00000000-0000-0000-0020-000000000403}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000007}, !- Handle + DXCOOL-NECB2011-REF-CAPFT, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.00055436, !- Coefficient3 x**2 + -0.0075575, !- Coefficient4 y + 3.3e-05, !- Coefficient5 y**2 + -0.0001918, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0052-000000000056}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000446}, !- Inlet Port - {00000000-0000-0000-0020-000000000447}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000008}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFT, !- Name + 0.1141714, !- Coefficient1 Constant + 0.02818224, !- Coefficient2 x + -0.0004199, !- Coefficient3 x**2 + 0.02141082, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0052-000000000057}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000448}, !- Inlet Port - {00000000-0000-0000-0020-000000000443}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000009}, !- Handle + WaterCooled_Scroll_CAPFT_NECB2011, !- Name + 0.94418, !- Coefficient1 Constant + 0.0337102, !- Coefficient2 x + 9.75564e-05, !- Coefficient3 x**2 + -0.00322114, !- Coefficient4 y + -4.91832e-05, !- Coefficient5 y**2 + -0.000177584, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0052-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000460}, !- Inlet Port - {00000000-0000-0000-0020-000000000461}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000010}, !- Handle + WaterCooled_Scroll_EIRFT_NECB2011, !- Name + 0.727393, !- Coefficient1 Constant + -0.0118922, !- Coefficient2 x + 0.000541177, !- Coefficient3 x**2 + 0.00187934, !- Coefficient4 y + 0.000473461, !- Coefficient5 y**2 + -0.000711472, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0052-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000462}, !- Inlet Port - {00000000-0000-0000-0020-000000000457}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000001}, !- Handle + BOILER-EFFFPLR-NECB2011, !- Name + 0.3831, !- Coefficient1 Constant + 2.0567, !- Coefficient2 x + -2.6469, !- Coefficient3 x**2 + 1.2148, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000474}, !- Inlet Port - {00000000-0000-0000-0020-000000000475}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000002}, !- Handle + Curve Cubic 1, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000476}, !- Inlet Port - {00000000-0000-0000-0020-000000000471}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000003}, !- Handle + DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000488}, !- Inlet Port - {00000000-0000-0000-0020-000000000489}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000004}, !- Handle + FURNACE-EFFPLR-NECB2011, !- Name + 0.722, !- Coefficient1 Constant + 0.8211, !- Coefficient2 x + -1.0396, !- Coefficient3 x**2 + 0.5, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000490}, !- Inlet Port - {00000000-0000-0000-0020-000000000485}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000005}, !- Handle + SWH-EFFFPLR-NECB2011, !- Name + 0.7576, !- Coefficient1 Constant + 1.0071, !- Coefficient2 x + -1.4443, !- Coefficient3 x**2 + 0.6844, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000502}, !- Inlet Port - {00000000-0000-0000-0020-000000000503}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000006}, !- Handle + VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name + -2.4176, !- Coefficient1 Constant + 9.5874, !- Coefficient2 x + -11.559, !- Coefficient3 x**2 + 5.4009, !- Coefficient4 x**3 + 0.68, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000504}, !- Inlet Port - {00000000-0000-0000-0020-000000000499}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000001}, !- Handle + Curve Quadratic 1, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000066}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000516}, !- Inlet Port - {00000000-0000-0000-0020-000000000517}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000002}, !- Handle + Curve Quadratic 2, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000067}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000518}, !- Inlet Port - {00000000-0000-0000-0020-000000000513}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000003}, !- Handle + Curve Quadratic 3, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000068}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000226}, !- Inlet Port - {00000000-0000-0000-0020-000000000227}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000004}, !- Handle + Curve Quadratic 4, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000069}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000228}, !- Inlet Port - {00000000-0000-0000-0020-000000000223}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000005}, !- Handle + DXCOOL-NECB2011-REF-CAPFFLOW, !- Name + 0.8, !- Coefficient1 Constant + 0.2, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000070}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000240}, !- Inlet Port - {00000000-0000-0000-0020-000000000241}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000006}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name + 1.1552, !- Coefficient1 Constant + -0.1808, !- Coefficient2 x + 0.0256, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000071}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000242}, !- Inlet Port - {00000000-0000-0000-0020-000000000237}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000007}, !- Handle + WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name + 0.04412, !- Coefficient1 Constant + 0.640367, !- Coefficient2 x + 0.319555, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0052-000000000072}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000254}, !- Inlet Port - {00000000-0000-0000-0020-000000000255}; !- Outlet Port +OS:DefaultConstructionSet, + {00000000-0000-0000-0031-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name + {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name + {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name + {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name + {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name + {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name -OS:Node, - {00000000-0000-0000-0052-000000000073}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000256}, !- Inlet Port - {00000000-0000-0000-0020-000000000251}; !- Outlet Port +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000001}, !- Handle + Space Function - undefined - Schedule Set, !- 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 + {00000000-0000-0000-0061-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name -OS:Node, - {00000000-0000-0000-0052-000000000074}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000268}, !- Inlet Port - {00000000-0000-0000-0020-000000000269}; !- Outlet Port +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000002}, !- Handle + Space Function Electrical/Mechanical-sch-A Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0061-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0061-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0061-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0061-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0061-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name -OS:Node, - {00000000-0000-0000-0052-000000000075}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000270}, !- Inlet Port - {00000000-0000-0000-0020-000000000265}; !- Outlet Port +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000003}, !- Handle + Space Function Office - open plan Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0061-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0061-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0061-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0061-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0061-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name -OS:Node, - {00000000-0000-0000-0052-000000000076}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000282}, !- Inlet Port - {00000000-0000-0000-0020-000000000283}; !- Outlet Port +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000006}, !- Door Construction Name + {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name -OS:Node, - {00000000-0000-0000-0052-000000000077}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000284}, !- Inlet Port - {00000000-0000-0000-0020-000000000279}; !- Outlet Port +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000002}, !- Handle + Default Sub Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000030}, !- 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:Node, - {00000000-0000-0000-0052-000000000078}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000296}, !- Inlet Port - {00000000-0000-0000-0020-000000000297}; !- Outlet Port +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000003}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000005}, !- Door Construction Name + {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name -OS:Node, - {00000000-0000-0000-0052-000000000079}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000298}, !- Inlet Port - {00000000-0000-0000-0020-000000000293}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0052-000000000080}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000336}, !- Inlet Port - {00000000-0000-0000-0020-000000000337}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000002}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0052-000000000081}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000338}, !- Inlet Port - {00000000-0000-0000-0020-000000000333}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000003}, !- Handle + Default Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0052-000000000082}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000350}, !- Inlet Port - {00000000-0000-0000-0020-000000000351}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000004}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0052-000000000083}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000352}, !- Inlet Port - {00000000-0000-0000-0020-000000000347}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000005}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0052-000000000084}, !- Handle - Chilled Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000100}, !- Inlet Port - {00000000-0000-0000-0020-000000000101}; !- Outlet Port +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000001}, !- Handle + Space Function - undefined - Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name -OS:Node, - {00000000-0000-0000-0052-000000000085}, !- Handle - Chilled Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000103}, !- Inlet Port - {00000000-0000-0000-0020-000000000104}; !- Outlet Port +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000002}, !- Handle + Space Function Electrical/Mechanical-sch-A 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:Node, - {00000000-0000-0000-0052-000000000086}, !- Handle - Chilled Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000097}, !- Inlet Port - {00000000-0000-0000-0020-000000000105}; !- Outlet Port +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000003}, !- Handle + Space Function Office - open plan Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.0142091703329032, !- 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:Node, - {00000000-0000-0000-0052-000000000087}, !- Handle - Chilled Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000121}, !- Inlet Port - {00000000-0000-0000-0020-000000000099}; !- Outlet Port +OS:ElectricEquipment, + {00000000-0000-0000-0036-000000000001}, !- Handle + Space Function Electrical/Mechanical-sch-A Elec Equip, !- Name + {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name + {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0052-000000000088}, !- Handle - Coil Cooling Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000102}, !- Inlet Port - {00000000-0000-0000-0020-000000000160}; !- Outlet Port +OS:ElectricEquipment, + {00000000-0000-0000-0036-000000000002}, !- Handle + Space Function Office - open plan Elec Equip, !- Name + {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name + {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0052-000000000089}, !- Handle - Coil Cooling Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000168}, !- Inlet Port - {00000000-0000-0000-0020-000000000169}; !- Outlet Port +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000001}, !- Handle + Space Function Electrical/Mechanical-sch-A Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 0.999991679497248, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant -OS:Node, - {00000000-0000-0000-0052-000000000090}, !- Handle - Coil Cooling Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000161}, !- Inlet Port - {00000000-0000-0000-0020-000000000162}; !- Outlet Port +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000002}, !- Handle + Space Function Office - open plan Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.49993758008349, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant -OS:Node, - {00000000-0000-0000-0052-000000000091}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000199}, !- Inlet Port - {00000000-0000-0000-0020-000000000200}; !- Outlet Port +OS:Facility, + {00000000-0000-0000-0038-000000000001}; !- Handle -OS:Node, - {00000000-0000-0000-0052-000000000092}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000208}, !- Inlet Port - {00000000-0000-0000-0020-000000000209}; !- Outlet Port +OS:Fan:ConstantVolume, + {00000000-0000-0000-0039-000000000001}, !- Handle + Fan Constant Volume 1, !- Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + 0.39975, !- Fan Total Efficiency + 640, !- Pressure Rise {Pa} + AutoSize, !- Maximum Flow Rate {m3/s} + 0.615, !- Motor Efficiency + , !- Motor In Airstream Fraction + {00000000-0000-0000-0020-000000000082}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000080}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0052-000000000093}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000201}, !- Inlet Port - {00000000-0000-0000-0020-000000000202}; !- Outlet Port +OS:Fan:VariableVolume, + {00000000-0000-0000-0040-000000000001}, !- Handle + Sys6 Return Fan, !- Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000172}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000173}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0052-000000000094}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000309}, !- Inlet Port - {00000000-0000-0000-0020-000000000310}; !- Outlet Port +OS:Fan:VariableVolume, + {00000000-0000-0000-0040-000000000002}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000167}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000165}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0052-000000000095}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000318}, !- Inlet Port - {00000000-0000-0000-0020-000000000319}; !- Outlet Port +OS:Foundation:Kiva, + {00000000-0000-0000-0041-000000000001}, !- Handle + Bldg Kiva Foundation, !- Name + , !- Initial Indoor Air Temperature {C} + , !- Interior Horizontal Insulation Material Name + , !- Interior Horizontal Insulation Depth {m} + , !- Interior Horizontal Insulation Width {m} + , !- Interior Vertical Insulation Material Name + , !- Interior Vertical Insulation Depth {m} + , !- Exterior Horizontal Insulation Material Name + , !- Exterior Horizontal Insulation Depth {m} + , !- Exterior Horizontal Insulation Width {m} + , !- Exterior Vertical Insulation Material Name + , !- Exterior Vertical Insulation Depth {m} + 0, !- Wall Height Above Grade {m} + 0, !- Wall Depth Below Slab {m} + , !- Footing Wall Construction Name + , !- Footing Material Name + ; !- Footing Depth {m} -OS:Node, - {00000000-0000-0000-0052-000000000096}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000311}, !- Inlet Port - {00000000-0000-0000-0020-000000000312}; !- Outlet Port +OS:Foundation:Kiva:Settings, + {00000000-0000-0000-0042-000000000001}, !- Handle + , !- Soil Conductivity {W/m-K} + , !- Soil Density {kg/m3} + , !- Soil Specific Heat {J/kg-K} + , !- Ground Solar Absorptivity {dimensionless} + , !- Ground Thermal Absorptivity {dimensionless} + , !- Ground Surface Roughness {m} + , !- Far-Field Width {m} + , !- Deep-Ground Boundary Condition + , !- Deep-Ground Depth {m} + , !- Minimum Cell Dimension {m} + , !- Maximum Cell Growth Coefficient {dimensionless} + ; !- Simulation Timestep -OS:Node, - {00000000-0000-0000-0052-000000000097}, !- Handle - Coil Cooling Water 4 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000419}, !- Inlet Port - {00000000-0000-0000-0020-000000000420}; !- Outlet Port +OS:Lights, + {00000000-0000-0000-0043-000000000001}, !- Handle + Space Function Electrical/Mechanical-sch-A Lights, !- Name + {00000000-0000-0000-0044-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0052-000000000098}, !- Handle - Coil Cooling Water 4 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000428}, !- Inlet Port - {00000000-0000-0000-0020-000000000429}; !- Outlet Port +OS:Lights, + {00000000-0000-0000-0043-000000000002}, !- Handle + Space Function Office - open plan Lights, !- Name + {00000000-0000-0000-0044-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0052-000000000099}, !- Handle - Coil Cooling Water 4 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000421}, !- Inlet Port - {00000000-0000-0000-0020-000000000422}; !- Outlet Port +OS:Lights:Definition, + {00000000-0000-0000-0044-000000000001}, !- Handle + Space Function Electrical/Mechanical-sch-A Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 13.2998893147092, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible -OS:Node, - {00000000-0000-0000-0052-000000000100}, !- Handle - Coil Heating Gas 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000081}, !- Inlet Port - {00000000-0000-0000-0020-000000000082}; !- Outlet Port +OS:Lights:Definition, + {00000000-0000-0000-0044-000000000002}, !- Handle + Space Function Office - open plan Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.9999084529419, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible -OS:Node, - {00000000-0000-0000-0052-000000000101}, !- Handle - Coil Heating Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000156}, !- Inlet Port - {00000000-0000-0000-0020-000000000157}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000001}, !- Handle + 1/2IN Gypsum 1, !- 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:Node, - {00000000-0000-0000-0052-000000000102}, !- Handle - Coil Heating Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000166}, !- Inlet Port - {00000000-0000-0000-0020-000000000167}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000002}, !- 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:Node, - {00000000-0000-0000-0052-000000000103}, !- Handle - Coil Heating Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000158}, !- Inlet Port - {00000000-0000-0000-0020-000000000159}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000003}, !- Handle + 100mm Normalweight concrete floor 1, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0052-000000000104}, !- Handle - Coil Heating Water 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000305}, !- Inlet Port - {00000000-0000-0000-0020-000000000306}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000004}, !- Handle + 100mm Normalweight concrete floor, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + +OS:Material, + {00000000-0000-0000-0045-000000000005}, !- Handle + 1IN Stucco 1, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000105}, !- Handle - Coil Heating Water 10 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000316}, !- Inlet Port - {00000000-0000-0000-0020-000000000317}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000006}, !- Handle + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000106}, !- Handle - Coil Heating Water 10 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000307}, !- Inlet Port - {00000000-0000-0000-0020-000000000308}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000007}, !- Handle + 4 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000107}, !- Handle - Coil Heating Water 11 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000325}, !- Inlet Port - {00000000-0000-0000-0020-000000000326}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000008}, !- Handle + 4 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000108}, !- Handle - Coil Heating Water 11 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000327}, !- Inlet Port - {00000000-0000-0000-0020-000000000328}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000009}, !- Handle + 6 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000109}, !- Handle - Coil Heating Water 12 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000339}, !- Inlet Port - {00000000-0000-0000-0020-000000000340}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000010}, !- Handle + 6 in. Normalweight Concrete Floor 2, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000110}, !- Handle - Coil Heating Water 12 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000341}, !- Inlet Port - {00000000-0000-0000-0020-000000000342}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000011}, !- Handle + 6 in. Normalweight Concrete Floor 3, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000111}, !- Handle - Coil Heating Water 13 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000353}, !- Inlet Port - {00000000-0000-0000-0020-000000000354}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000012}, !- Handle + 6 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000112}, !- Handle - Coil Heating Water 13 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000355}, !- Inlet Port - {00000000-0000-0000-0020-000000000356}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000013}, !- Handle + 8IN CONCRETE HW RefBldg 1, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000113}, !- Handle - Coil Heating Water 14 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000367}, !- Inlet Port - {00000000-0000-0000-0020-000000000368}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000014}, !- Handle + 8IN CONCRETE HW RefBldg, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000114}, !- Handle - Coil Heating Water 14 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000369}, !- Inlet Port - {00000000-0000-0000-0020-000000000370}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000015}, !- Handle + Expanded Polystyrene 1, !- Name + MediumSmooth, !- Roughness + 0.100199429303091, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0052-000000000115}, !- Handle - Coil Heating Water 15 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000381}, !- Inlet Port - {00000000-0000-0000-0020-000000000382}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000016}, !- Handle + Expanded Polystyrene, !- Name + MediumSmooth, !- Roughness + 0.0363958681740979, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0052-000000000116}, !- Handle - Coil Heating Water 15 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000383}, !- Inlet Port - {00000000-0000-0000-0020-000000000384}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000017}, !- Handle + F08 Metal surface 1, !- 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:Node, - {00000000-0000-0000-0052-000000000117}, !- Handle - Coil Heating Water 16 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000395}, !- Inlet Port - {00000000-0000-0000-0020-000000000396}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000018}, !- 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:Node, - {00000000-0000-0000-0052-000000000118}, !- Handle - Coil Heating Water 16 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000397}, !- Inlet Port - {00000000-0000-0000-0020-000000000398}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000019}, !- Handle + G01 13mm gypsum board 1, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000119}, !- Handle - Coil Heating Water 17 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000415}, !- Inlet Port - {00000000-0000-0000-0020-000000000416}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000020}, !- Handle + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000120}, !- Handle - Coil Heating Water 17 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000426}, !- Inlet Port - {00000000-0000-0000-0020-000000000427}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000021}, !- 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:Node, - {00000000-0000-0000-0052-000000000121}, !- Handle - Coil Heating Water 17 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000417}, !- Inlet Port - {00000000-0000-0000-0020-000000000418}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000022}, !- Handle + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1842, !- Density {kg/m3} + 912; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0052-000000000122}, !- Handle - Coil Heating Water 18 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000435}, !- Inlet Port - {00000000-0000-0000-0020-000000000436}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000023}, !- Handle + Metal Roof Surface 1, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000123}, !- Handle - Coil Heating Water 18 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000437}, !- Inlet Port - {00000000-0000-0000-0020-000000000438}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0045-000000000024}, !- Handle + Metal Roof Surface, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000124}, !- Handle - Coil Heating Water 19 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000449}, !- Inlet Port - {00000000-0000-0000-0020-000000000450}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000001}, !- Handle + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000125}, !- Handle - Coil Heating Water 19 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000451}, !- Inlet Port - {00000000-0000-0000-0020-000000000452}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000002}, !- Handle + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 2.88291975297193, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000126}, !- Handle - Coil Heating Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000175}, !- Inlet Port - {00000000-0000-0000-0020-000000000176}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000003}, !- Handle + Typical Carpet Pad 1, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000127}, !- Handle - Coil Heating Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000177}, !- Inlet Port - {00000000-0000-0000-0020-000000000178}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000004}, !- Handle + Typical Carpet Pad 2, !- Name + Smooth, !- Roughness + 1.25502993703786, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000128}, !- Handle - Coil Heating Water 20 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000463}, !- Inlet Port - {00000000-0000-0000-0020-000000000464}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000005}, !- Handle + Typical Carpet Pad 3, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000129}, !- Handle - Coil Heating Water 20 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000465}, !- Inlet Port - {00000000-0000-0000-0020-000000000466}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000006}, !- Handle + Typical Carpet Pad 4, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000130}, !- Handle - Coil Heating Water 21 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000477}, !- Inlet Port - {00000000-0000-0000-0020-000000000478}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000007}, !- Handle + Typical Carpet Pad, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000131}, !- Handle - Coil Heating Water 21 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000479}, !- Inlet Port - {00000000-0000-0000-0020-000000000480}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000008}, !- Handle + Typical Insulation 1, !- Name + Smooth, !- Roughness + 5.91237683519488, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000132}, !- Handle - Coil Heating Water 22 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000491}, !- Inlet Port - {00000000-0000-0000-0020-000000000492}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000009}, !- Handle + Typical Insulation 2, !- Name + Smooth, !- Roughness + 4.49096231241638, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000133}, !- Handle - Coil Heating Water 22 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000493}, !- Inlet Port - {00000000-0000-0000-0020-000000000494}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000010}, !- Handle + Typical Insulation 3, !- Name + Smooth, !- Roughness + 6.17282183832832, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000134}, !- Handle - Coil Heating Water 23 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000505}, !- Inlet Port - {00000000-0000-0000-0020-000000000506}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000011}, !- Handle + Typical Insulation 4, !- Name + Smooth, !- Roughness + 0.454527786700932, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000135}, !- Handle - Coil Heating Water 23 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000507}, !- Inlet Port - {00000000-0000-0000-0020-000000000508}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000012}, !- Handle + Typical Insulation 5, !- Name + Smooth, !- Roughness + 0.454545454545455, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000136}, !- Handle - Coil Heating Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000195}, !- Inlet Port - {00000000-0000-0000-0020-000000000196}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0046-000000000013}, !- Handle + Typical Insulation, !- Name + Smooth, !- Roughness + 0.101874652714525, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0052-000000000137}, !- Handle - Coil Heating Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000206}, !- Inlet Port - {00000000-0000-0000-0020-000000000207}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0047-000000000001}, !- Handle + Availability Manager Night Cycle 1 Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0052-000000000138}, !- Handle - Coil Heating Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000197}, !- Inlet Port - {00000000-0000-0000-0020-000000000198}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0047-000000000002}, !- Handle + Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0052-000000000139}, !- Handle - Coil Heating Water 4 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000215}, !- Inlet Port - {00000000-0000-0000-0020-000000000216}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0047-000000000003}, !- Handle + Availability Manager Night Cycle 1 Heating Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0052-000000000140}, !- Handle - Coil Heating Water 4 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000217}, !- Inlet Port - {00000000-0000-0000-0020-000000000218}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0047-000000000004}, !- Handle + Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:Node, - {00000000-0000-0000-0052-000000000141}, !- Handle - Coil Heating Water 5 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000229}, !- Inlet Port - {00000000-0000-0000-0020-000000000230}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0047-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0052-000000000142}, !- Handle - Coil Heating Water 5 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000231}, !- Inlet Port - {00000000-0000-0000-0020-000000000232}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0047-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0052-000000000143}, !- Handle - Coil Heating Water 6 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000243}, !- Inlet Port - {00000000-0000-0000-0020-000000000244}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0047-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0052-000000000144}, !- Handle - Coil Heating Water 6 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000245}, !- Inlet Port - {00000000-0000-0000-0020-000000000246}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0047-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name OS:Node, - {00000000-0000-0000-0052-000000000145}, !- Handle - Coil Heating Water 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000257}, !- Inlet Port - {00000000-0000-0000-0020-000000000258}; !- Outlet Port + {00000000-0000-0000-0048-000000000001}, !- Handle + 1103gal NaturalGas Water Heater - 744kBtu/hr 0.805 Therm Eff Supply Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000190}, !- Inlet Port + {00000000-0000-0000-0020-000000000199}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000146}, !- Handle - Coil Heating Water 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000259}, !- Inlet Port - {00000000-0000-0000-0020-000000000260}; !- Outlet Port + {00000000-0000-0000-0048-000000000002}, !- Handle + 1103gal NaturalGas Water Heater - 744kBtu/hr 0.805 Therm Eff Supply Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000200}, !- Inlet Port + {00000000-0000-0000-0020-000000000201}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000147}, !- Handle - Coil Heating Water 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000271}, !- Inlet Port - {00000000-0000-0000-0020-000000000272}; !- Outlet Port + {00000000-0000-0000-0048-000000000003}, !- Handle + ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000025}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000148}, !- Handle - Coil Heating Water 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000273}, !- Inlet Port - {00000000-0000-0000-0020-000000000274}; !- Outlet Port + {00000000-0000-0000-0048-000000000004}, !- Handle + ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000037}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000149}, !- Handle - Coil Heating Water 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000285}, !- Inlet Port - {00000000-0000-0000-0020-000000000286}; !- Outlet Port + {00000000-0000-0000-0048-000000000005}, !- Handle + ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000027}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000150}, !- Handle - Coil Heating Water 9 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000287}, !- Inlet Port - {00000000-0000-0000-0020-000000000288}; !- Outlet Port + {00000000-0000-0000-0048-000000000006}, !- Handle + ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000184}, !- Inlet Port + {00000000-0000-0000-0020-000000000185}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000151}, !- Handle - Coil Heating Water Baseboard 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000052}, !- Inlet Port - {00000000-0000-0000-0020-000000000088}; !- Outlet Port + {00000000-0000-0000-0048-000000000007}, !- Handle + ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000036}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000152}, !- Handle - Coil Heating Water Baseboard 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000089}, !- Inlet Port - {00000000-0000-0000-0020-000000000090}; !- Outlet Port + {00000000-0000-0000-0048-000000000008}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000030}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000153}, !- Handle - Coil Heating Water Baseboard 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000343}, !- Inlet Port - {00000000-0000-0000-0020-000000000344}; !- Outlet Port + {00000000-0000-0000-0048-000000000009}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000031}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000154}, !- Handle - Coil Heating Water Baseboard 10 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000345}, !- Inlet Port - {00000000-0000-0000-0020-000000000346}; !- Outlet Port + {00000000-0000-0000-0048-000000000010}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000038}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000155}, !- Handle - Coil Heating Water Baseboard 11 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000357}, !- Inlet Port - {00000000-0000-0000-0020-000000000358}; !- Outlet Port + {00000000-0000-0000-0048-000000000011}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000043}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000156}, !- Handle - Coil Heating Water Baseboard 11 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000359}, !- Inlet Port - {00000000-0000-0000-0020-000000000360}; !- Outlet Port + {00000000-0000-0000-0048-000000000012}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000045}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000157}, !- Handle - Coil Heating Water Baseboard 12 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000371}, !- Inlet Port - {00000000-0000-0000-0020-000000000372}; !- Outlet Port + {00000000-0000-0000-0048-000000000013}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000024}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000158}, !- Handle - Coil Heating Water Baseboard 12 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000373}, !- Inlet Port - {00000000-0000-0000-0020-000000000374}; !- Outlet Port + {00000000-0000-0000-0048-000000000014}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000033}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000159}, !- Handle - Coil Heating Water Baseboard 13 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000385}, !- Inlet Port - {00000000-0000-0000-0020-000000000386}; !- Outlet Port + {00000000-0000-0000-0048-000000000015}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000035}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000160}, !- Handle - Coil Heating Water Baseboard 13 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000387}, !- Inlet Port - {00000000-0000-0000-0020-000000000388}; !- Outlet Port + {00000000-0000-0000-0048-000000000016}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000040}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000161}, !- Handle - Coil Heating Water Baseboard 14 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000399}, !- Inlet Port - {00000000-0000-0000-0020-000000000400}; !- Outlet Port + {00000000-0000-0000-0048-000000000017}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000042}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000162}, !- Handle - Coil Heating Water Baseboard 14 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000401}, !- Inlet Port - {00000000-0000-0000-0020-000000000402}; !- Outlet Port + {00000000-0000-0000-0048-000000000018}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000044}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000163}, !- Handle - Coil Heating Water Baseboard 15 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000439}, !- Inlet Port - {00000000-0000-0000-0020-000000000440}; !- Outlet Port + {00000000-0000-0000-0048-000000000019}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000028}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000164}, !- Handle - Coil Heating Water Baseboard 15 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000441}, !- Inlet Port - {00000000-0000-0000-0020-000000000442}; !- Outlet Port + {00000000-0000-0000-0048-000000000020}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000029}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000165}, !- Handle - Coil Heating Water Baseboard 16 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000453}, !- Inlet Port - {00000000-0000-0000-0020-000000000454}; !- Outlet Port + {00000000-0000-0000-0048-000000000021}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000032}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000166}, !- Handle - Coil Heating Water Baseboard 16 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000455}, !- Inlet Port - {00000000-0000-0000-0020-000000000456}; !- Outlet Port + {00000000-0000-0000-0048-000000000022}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000034}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000167}, !- Handle - Coil Heating Water Baseboard 17 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000467}, !- Inlet Port - {00000000-0000-0000-0020-000000000468}; !- Outlet Port + {00000000-0000-0000-0048-000000000023}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000039}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000168}, !- Handle - Coil Heating Water Baseboard 17 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000469}, !- Inlet Port - {00000000-0000-0000-0020-000000000470}; !- Outlet Port + {00000000-0000-0000-0048-000000000024}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000041}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000169}, !- Handle - Coil Heating Water Baseboard 18 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000481}, !- Inlet Port - {00000000-0000-0000-0020-000000000482}; !- Outlet Port + {00000000-0000-0000-0048-000000000025}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000026}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000170}, !- Handle - Coil Heating Water Baseboard 18 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000483}, !- Inlet Port - {00000000-0000-0000-0020-000000000484}; !- Outlet Port + {00000000-0000-0000-0048-000000000026}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000094}, !- Inlet Port + {00000000-0000-0000-0020-000000000095}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000171}, !- Handle - Coil Heating Water Baseboard 19 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000495}, !- Inlet Port - {00000000-0000-0000-0020-000000000496}; !- Outlet Port + {00000000-0000-0000-0048-000000000027}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000096}, !- Inlet Port + {00000000-0000-0000-0020-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000172}, !- Handle - Coil Heating Water Baseboard 19 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000497}, !- Inlet Port - {00000000-0000-0000-0020-000000000498}; !- Outlet Port + {00000000-0000-0000-0048-000000000028}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000186}, !- Inlet Port + {00000000-0000-0000-0020-000000000187}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000173}, !- Handle - Coil Heating Water Baseboard 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000179}, !- Inlet Port - {00000000-0000-0000-0020-000000000180}; !- Outlet Port + {00000000-0000-0000-0048-000000000029}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000188}, !- Inlet Port + {00000000-0000-0000-0020-000000000183}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000174}, !- Handle - Coil Heating Water Baseboard 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000181}, !- Inlet Port - {00000000-0000-0000-0020-000000000182}; !- Outlet Port + {00000000-0000-0000-0048-000000000030}, !- Handle + Chilled Water Loop Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000100}, !- Inlet Port + {00000000-0000-0000-0020-000000000101}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000175}, !- Handle - Coil Heating Water Baseboard 20 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000509}, !- Inlet Port - {00000000-0000-0000-0020-000000000510}; !- Outlet Port + {00000000-0000-0000-0048-000000000031}, !- Handle + Chilled Water Loop Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000103}, !- Inlet Port + {00000000-0000-0000-0020-000000000104}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000176}, !- Handle - Coil Heating Water Baseboard 20 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000511}, !- Inlet Port - {00000000-0000-0000-0020-000000000512}; !- Outlet Port + {00000000-0000-0000-0048-000000000032}, !- Handle + Chilled Water Loop Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000097}, !- Inlet Port + {00000000-0000-0000-0020-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000177}, !- Handle - Coil Heating Water Baseboard 3 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000219}, !- Inlet Port - {00000000-0000-0000-0020-000000000220}; !- Outlet Port + {00000000-0000-0000-0048-000000000033}, !- Handle + Chilled Water Loop Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000121}, !- Inlet Port + {00000000-0000-0000-0020-000000000099}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000178}, !- Handle - Coil Heating Water Baseboard 3 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000221}, !- Inlet Port - {00000000-0000-0000-0020-000000000222}; !- Outlet Port + {00000000-0000-0000-0048-000000000034}, !- Handle + Coil Cooling Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000102}, !- Inlet Port + {00000000-0000-0000-0020-000000000160}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000179}, !- Handle - Coil Heating Water Baseboard 4 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000233}, !- Inlet Port - {00000000-0000-0000-0020-000000000234}; !- Outlet Port + {00000000-0000-0000-0048-000000000035}, !- Handle + Coil Cooling Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000168}, !- Inlet Port + {00000000-0000-0000-0020-000000000169}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000180}, !- Handle - Coil Heating Water Baseboard 4 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000235}, !- Inlet Port - {00000000-0000-0000-0020-000000000236}; !- Outlet Port + {00000000-0000-0000-0048-000000000036}, !- Handle + Coil Cooling Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000161}, !- Inlet Port + {00000000-0000-0000-0020-000000000162}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000181}, !- Handle - Coil Heating Water Baseboard 5 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000247}, !- Inlet Port - {00000000-0000-0000-0020-000000000248}; !- Outlet Port + {00000000-0000-0000-0048-000000000037}, !- Handle + Coil Heating Gas 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000081}, !- Inlet Port + {00000000-0000-0000-0020-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000182}, !- Handle - Coil Heating Water Baseboard 5 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000249}, !- Inlet Port - {00000000-0000-0000-0020-000000000250}; !- Outlet Port + {00000000-0000-0000-0048-000000000038}, !- Handle + Coil Heating Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000156}, !- Inlet Port + {00000000-0000-0000-0020-000000000157}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000183}, !- Handle - Coil Heating Water Baseboard 6 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000261}, !- Inlet Port - {00000000-0000-0000-0020-000000000262}; !- Outlet Port + {00000000-0000-0000-0048-000000000039}, !- Handle + Coil Heating Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000166}, !- Inlet Port + {00000000-0000-0000-0020-000000000167}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000184}, !- Handle - Coil Heating Water Baseboard 6 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000263}, !- Inlet Port - {00000000-0000-0000-0020-000000000264}; !- Outlet Port + {00000000-0000-0000-0048-000000000040}, !- Handle + Coil Heating Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000158}, !- Inlet Port + {00000000-0000-0000-0020-000000000159}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000185}, !- Handle - Coil Heating Water Baseboard 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000275}, !- Inlet Port - {00000000-0000-0000-0020-000000000276}; !- Outlet Port + {00000000-0000-0000-0048-000000000041}, !- Handle + Coil Heating Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000175}, !- Inlet Port + {00000000-0000-0000-0020-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000186}, !- Handle - Coil Heating Water Baseboard 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000277}, !- Inlet Port - {00000000-0000-0000-0020-000000000278}; !- Outlet Port + {00000000-0000-0000-0048-000000000042}, !- Handle + Coil Heating Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000177}, !- Inlet Port + {00000000-0000-0000-0020-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000187}, !- Handle - Coil Heating Water Baseboard 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000289}, !- Inlet Port - {00000000-0000-0000-0020-000000000290}; !- Outlet Port + {00000000-0000-0000-0048-000000000043}, !- Handle + Coil Heating Water Baseboard 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000052}, !- Inlet Port + {00000000-0000-0000-0020-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000188}, !- Handle - Coil Heating Water Baseboard 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000291}, !- Inlet Port - {00000000-0000-0000-0020-000000000292}; !- Outlet Port + {00000000-0000-0000-0048-000000000044}, !- Handle + Coil Heating Water Baseboard 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000089}, !- Inlet Port + {00000000-0000-0000-0020-000000000090}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000189}, !- Handle - Coil Heating Water Baseboard 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000329}, !- Inlet Port - {00000000-0000-0000-0020-000000000330}; !- Outlet Port + {00000000-0000-0000-0048-000000000045}, !- Handle + Coil Heating Water Baseboard 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000179}, !- Inlet Port + {00000000-0000-0000-0020-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000190}, !- Handle - Coil Heating Water Baseboard 9 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000331}, !- Inlet Port - {00000000-0000-0000-0020-000000000332}; !- Outlet Port + {00000000-0000-0000-0048-000000000046}, !- Handle + Coil Heating Water Baseboard 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000181}, !- Inlet Port + {00000000-0000-0000-0020-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000191}, !- Handle - CoilCoolingDXSingleSpeed_dx 79kBtu/hr 9.7EER Outlet Air Node, !- Name + {00000000-0000-0000-0048-000000000047}, !- Handle + CoilCoolingDXSingleSpeed_dx 170kBtu/hr 9.7EER Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000083}, !- Inlet Port {00000000-0000-0000-0020-000000000084}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000192}, !- Handle + {00000000-0000-0000-0048-000000000048}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000125}, !- Inlet Port {00000000-0000-0000-0020-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000193}, !- Handle + {00000000-0000-0000-0048-000000000049}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000128}, !- Inlet Port {00000000-0000-0000-0020-000000000129}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000194}, !- Handle + {00000000-0000-0000-0048-000000000050}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000122}, !- Inlet Port {00000000-0000-0000-0020-000000000130}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000195}, !- Handle + {00000000-0000-0000-0048-000000000051}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000142}, !- Inlet Port {00000000-0000-0000-0020-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000196}, !- Handle + {00000000-0000-0000-0048-000000000052}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000123}, !- Inlet Port {00000000-0000-0000-0020-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000197}, !- Handle + {00000000-0000-0000-0048-000000000053}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000134}, !- Inlet Port {00000000-0000-0000-0020-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000198}, !- Handle + {00000000-0000-0000-0048-000000000054}, !- Handle Core_bottom WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000545}, !- Inlet Port - {00000000-0000-0000-0020-000000000546}; !- Outlet Port + {00000000-0000-0000-0020-000000000215}, !- Inlet Port + {00000000-0000-0000-0020-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000199}, !- Handle + {00000000-0000-0000-0048-000000000055}, !- Handle Core_bottom WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000547}, !- Inlet Port - {00000000-0000-0000-0020-000000000548}; !- Outlet Port + {00000000-0000-0000-0020-000000000217}, !- Inlet Port + {00000000-0000-0000-0020-000000000218}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000200}, !- Handle + {00000000-0000-0000-0048-000000000056}, !- Handle Core_mid WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000549}, !- Inlet Port - {00000000-0000-0000-0020-000000000550}; !- Outlet Port + {00000000-0000-0000-0020-000000000219}, !- Inlet Port + {00000000-0000-0000-0020-000000000220}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000201}, !- Handle + {00000000-0000-0000-0048-000000000057}, !- Handle Core_mid WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000551}, !- Inlet Port - {00000000-0000-0000-0020-000000000552}; !- Outlet Port + {00000000-0000-0000-0020-000000000221}, !- Inlet Port + {00000000-0000-0000-0020-000000000222}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000202}, !- Handle + {00000000-0000-0000-0048-000000000058}, !- Handle Core_top WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000553}, !- Inlet Port - {00000000-0000-0000-0020-000000000554}; !- Outlet Port + {00000000-0000-0000-0020-000000000223}, !- Inlet Port + {00000000-0000-0000-0020-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000203}, !- Handle + {00000000-0000-0000-0048-000000000059}, !- Handle Core_top WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000555}, !- Inlet Port - {00000000-0000-0000-0020-000000000556}; !- Outlet Port + {00000000-0000-0000-0020-000000000225}, !- Inlet Port + {00000000-0000-0000-0020-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000204}, !- Handle + {00000000-0000-0000-0048-000000000060}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000557}, !- Inlet Port - {00000000-0000-0000-0020-000000000558}; !- Outlet Port + {00000000-0000-0000-0020-000000000227}, !- Inlet Port + {00000000-0000-0000-0020-000000000228}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000205}, !- Handle + {00000000-0000-0000-0048-000000000061}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000559}, !- Inlet Port - {00000000-0000-0000-0020-000000000560}; !- Outlet Port + {00000000-0000-0000-0020-000000000229}, !- Inlet Port + {00000000-0000-0000-0020-000000000230}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000206}, !- Handle + {00000000-0000-0000-0048-000000000062}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000561}, !- Inlet Port - {00000000-0000-0000-0020-000000000562}; !- Outlet Port + {00000000-0000-0000-0020-000000000231}, !- Inlet Port + {00000000-0000-0000-0020-000000000232}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000207}, !- Handle + {00000000-0000-0000-0048-000000000063}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000563}, !- Inlet Port - {00000000-0000-0000-0020-000000000564}; !- Outlet Port + {00000000-0000-0000-0020-000000000233}, !- Inlet Port + {00000000-0000-0000-0020-000000000234}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000208}, !- Handle + {00000000-0000-0000-0048-000000000064}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000565}, !- Inlet Port - {00000000-0000-0000-0020-000000000566}; !- Outlet Port + {00000000-0000-0000-0020-000000000235}, !- Inlet Port + {00000000-0000-0000-0020-000000000236}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000209}, !- Handle + {00000000-0000-0000-0048-000000000065}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000567}, !- Inlet Port - {00000000-0000-0000-0020-000000000568}; !- Outlet Port + {00000000-0000-0000-0020-000000000237}, !- Inlet Port + {00000000-0000-0000-0020-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000210}, !- Handle + {00000000-0000-0000-0048-000000000066}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000569}, !- Inlet Port - {00000000-0000-0000-0020-000000000570}; !- Outlet Port + {00000000-0000-0000-0020-000000000239}, !- Inlet Port + {00000000-0000-0000-0020-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000211}, !- Handle + {00000000-0000-0000-0048-000000000067}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000571}, !- Inlet Port - {00000000-0000-0000-0020-000000000572}; !- Outlet Port + {00000000-0000-0000-0020-000000000241}, !- Inlet Port + {00000000-0000-0000-0020-000000000242}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000212}, !- Handle + {00000000-0000-0000-0048-000000000068}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000050}, !- Inlet Port {00000000-0000-0000-0020-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000213}, !- Handle + {00000000-0000-0000-0048-000000000069}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000053}, !- Inlet Port {00000000-0000-0000-0020-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000214}, !- Handle + {00000000-0000-0000-0048-000000000070}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000047}, !- Inlet Port {00000000-0000-0000-0020-000000000055}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000215}, !- Handle + {00000000-0000-0000-0048-000000000071}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000071}, !- Inlet Port {00000000-0000-0000-0020-000000000049}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000216}, !- Handle + {00000000-0000-0000-0048-000000000072}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000527}, !- Inlet Port - {00000000-0000-0000-0020-000000000528}; !- Outlet Port + {00000000-0000-0000-0020-000000000197}, !- Inlet Port + {00000000-0000-0000-0020-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000217}, !- Handle + {00000000-0000-0000-0048-000000000073}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000522}, !- Inlet Port - {00000000-0000-0000-0020-000000000523}; !- Outlet Port + {00000000-0000-0000-0020-000000000192}, !- Inlet Port + {00000000-0000-0000-0020-000000000193}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000218}, !- Handle + {00000000-0000-0000-0048-000000000074}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000544}, !- Inlet Port - {00000000-0000-0000-0020-000000000525}; !- Outlet Port + {00000000-0000-0000-0020-000000000214}, !- Inlet Port + {00000000-0000-0000-0020-000000000195}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000219}, !- Handle + {00000000-0000-0000-0048-000000000075}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000519}, !- Inlet Port - {00000000-0000-0000-0020-000000000526}; !- Outlet Port + {00000000-0000-0000-0020-000000000189}, !- Inlet Port + {00000000-0000-0000-0020-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000220}, !- Handle + {00000000-0000-0000-0048-000000000076}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000541}, !- Inlet Port - {00000000-0000-0000-0020-000000000521}; !- Outlet Port + {00000000-0000-0000-0020-000000000211}, !- Inlet Port + {00000000-0000-0000-0020-000000000191}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000221}, !- Handle + {00000000-0000-0000-0048-000000000077}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000573}, !- Inlet Port - {00000000-0000-0000-0020-000000000574}; !- Outlet Port + {00000000-0000-0000-0020-000000000243}, !- Inlet Port + {00000000-0000-0000-0020-000000000244}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000222}, !- Handle + {00000000-0000-0000-0048-000000000078}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000575}, !- Inlet Port - {00000000-0000-0000-0020-000000000576}; !- Outlet Port + {00000000-0000-0000-0020-000000000245}, !- Inlet Port + {00000000-0000-0000-0020-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000223}, !- Handle + {00000000-0000-0000-0048-000000000079}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000577}, !- Inlet Port - {00000000-0000-0000-0020-000000000578}; !- Outlet Port + {00000000-0000-0000-0020-000000000247}, !- Inlet Port + {00000000-0000-0000-0020-000000000248}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000224}, !- Handle + {00000000-0000-0000-0048-000000000080}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000579}, !- Inlet Port - {00000000-0000-0000-0020-000000000580}; !- Outlet Port + {00000000-0000-0000-0020-000000000249}, !- Inlet Port + {00000000-0000-0000-0020-000000000250}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000225}, !- Handle + {00000000-0000-0000-0048-000000000081}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000581}, !- Inlet Port - {00000000-0000-0000-0020-000000000582}; !- Outlet Port + {00000000-0000-0000-0020-000000000251}, !- Inlet Port + {00000000-0000-0000-0020-000000000252}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000226}, !- Handle + {00000000-0000-0000-0048-000000000082}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000583}, !- Inlet Port - {00000000-0000-0000-0020-000000000584}; !- Outlet Port + {00000000-0000-0000-0020-000000000253}, !- Inlet Port + {00000000-0000-0000-0020-000000000254}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000227}, !- Handle + {00000000-0000-0000-0048-000000000083}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000585}, !- Inlet Port - {00000000-0000-0000-0020-000000000586}; !- Outlet Port + {00000000-0000-0000-0020-000000000255}, !- Inlet Port + {00000000-0000-0000-0020-000000000256}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000228}, !- Handle + {00000000-0000-0000-0048-000000000084}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000587}, !- Inlet Port - {00000000-0000-0000-0020-000000000588}; !- Outlet Port + {00000000-0000-0000-0020-000000000257}, !- Inlet Port + {00000000-0000-0000-0020-000000000258}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000229}, !- Handle + {00000000-0000-0000-0048-000000000085}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000589}, !- Inlet Port - {00000000-0000-0000-0020-000000000590}; !- Outlet Port + {00000000-0000-0000-0020-000000000259}, !- Inlet Port + {00000000-0000-0000-0020-000000000260}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000230}, !- Handle + {00000000-0000-0000-0048-000000000086}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000591}, !- Inlet Port - {00000000-0000-0000-0020-000000000592}; !- Outlet Port + {00000000-0000-0000-0020-000000000261}, !- Inlet Port + {00000000-0000-0000-0020-000000000262}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000231}, !- Handle + {00000000-0000-0000-0048-000000000087}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000593}, !- Inlet Port - {00000000-0000-0000-0020-000000000594}; !- Outlet Port + {00000000-0000-0000-0020-000000000263}, !- Inlet Port + {00000000-0000-0000-0020-000000000264}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000232}, !- Handle + {00000000-0000-0000-0048-000000000088}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000595}, !- Inlet Port - {00000000-0000-0000-0020-000000000596}; !- Outlet Port + {00000000-0000-0000-0020-000000000265}, !- Inlet Port + {00000000-0000-0000-0020-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000233}, !- Handle + {00000000-0000-0000-0048-000000000089}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000597}, !- Inlet Port - {00000000-0000-0000-0020-000000000598}; !- Outlet Port + {00000000-0000-0000-0020-000000000267}, !- Inlet Port + {00000000-0000-0000-0020-000000000268}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000234}, !- Handle + {00000000-0000-0000-0048-000000000090}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000599}, !- Inlet Port - {00000000-0000-0000-0020-000000000600}; !- Outlet Port + {00000000-0000-0000-0020-000000000269}, !- Inlet Port + {00000000-0000-0000-0020-000000000270}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000235}, !- Handle + {00000000-0000-0000-0048-000000000091}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000601}, !- Inlet Port - {00000000-0000-0000-0020-000000000602}; !- Outlet Port + {00000000-0000-0000-0020-000000000271}, !- Inlet Port + {00000000-0000-0000-0020-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000236}, !- Handle + {00000000-0000-0000-0048-000000000092}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000603}, !- Inlet Port - {00000000-0000-0000-0020-000000000604}; !- Outlet Port + {00000000-0000-0000-0020-000000000273}, !- Inlet Port + {00000000-0000-0000-0020-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000237}, !- Handle + {00000000-0000-0000-0048-000000000093}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000605}, !- Inlet Port - {00000000-0000-0000-0020-000000000606}; !- Outlet Port + {00000000-0000-0000-0020-000000000275}, !- Inlet Port + {00000000-0000-0000-0020-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000238}, !- Handle + {00000000-0000-0000-0048-000000000094}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000607}, !- Inlet Port - {00000000-0000-0000-0020-000000000608}; !- Outlet Port + {00000000-0000-0000-0020-000000000277}, !- Inlet Port + {00000000-0000-0000-0020-000000000278}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000239}, !- Handle + {00000000-0000-0000-0048-000000000095}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000609}, !- Inlet Port - {00000000-0000-0000-0020-000000000610}; !- Outlet Port + {00000000-0000-0000-0020-000000000279}, !- Inlet Port + {00000000-0000-0000-0020-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000240}, !- Handle + {00000000-0000-0000-0048-000000000096}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000611}, !- Inlet Port - {00000000-0000-0000-0020-000000000612}; !- Outlet Port + {00000000-0000-0000-0020-000000000281}, !- Inlet Port + {00000000-0000-0000-0020-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000241}, !- Handle + {00000000-0000-0000-0048-000000000097}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000613}, !- Inlet Port - {00000000-0000-0000-0020-000000000614}; !- Outlet Port + {00000000-0000-0000-0020-000000000283}, !- Inlet Port + {00000000-0000-0000-0020-000000000284}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000242}, !- Handle + {00000000-0000-0000-0048-000000000098}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000615}, !- Inlet Port - {00000000-0000-0000-0020-000000000616}; !- Outlet Port + {00000000-0000-0000-0020-000000000285}, !- Inlet Port + {00000000-0000-0000-0020-000000000286}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000243}, !- Handle + {00000000-0000-0000-0048-000000000099}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000617}, !- Inlet Port - {00000000-0000-0000-0020-000000000618}; !- Outlet Port + {00000000-0000-0000-0020-000000000287}, !- Inlet Port + {00000000-0000-0000-0020-000000000288}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000244}, !- Handle + {00000000-0000-0000-0048-000000000100}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000619}, !- Inlet Port - {00000000-0000-0000-0020-000000000620}; !- Outlet Port + {00000000-0000-0000-0020-000000000289}, !- Inlet Port + {00000000-0000-0000-0020-000000000290}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000245}, !- Handle + {00000000-0000-0000-0048-000000000101}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000065}, !- Inlet Port {00000000-0000-0000-0020-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000246}, !- Handle + {00000000-0000-0000-0048-000000000102}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000067}, !- Inlet Port {00000000-0000-0000-0020-000000000068}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000247}, !- Handle + {00000000-0000-0000-0048-000000000103}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000542}, !- Inlet Port - {00000000-0000-0000-0020-000000000543}; !- Outlet Port + {00000000-0000-0000-0020-000000000212}, !- Inlet Port + {00000000-0000-0000-0020-000000000213}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000248}, !- Handle + {00000000-0000-0000-0048-000000000104}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000069}, !- Inlet Port {00000000-0000-0000-0020-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000249}, !- Handle + {00000000-0000-0000-0048-000000000105}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000115}, !- Inlet Port {00000000-0000-0000-0020-000000000116}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000250}, !- Handle + {00000000-0000-0000-0048-000000000106}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000117}, !- Inlet Port {00000000-0000-0000-0020-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000251}, !- Handle + {00000000-0000-0000-0048-000000000107}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000119}, !- Inlet Port {00000000-0000-0000-0020-000000000120}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000252}, !- Handle + {00000000-0000-0000-0048-000000000108}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000136}, !- Inlet Port {00000000-0000-0000-0020-000000000137}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000253}, !- Handle + {00000000-0000-0000-0048-000000000109}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000138}, !- Inlet Port {00000000-0000-0000-0020-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000254}, !- Handle + {00000000-0000-0000-0048-000000000110}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000140}, !- Inlet Port {00000000-0000-0000-0020-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000255}, !- Handle + {00000000-0000-0000-0048-000000000111}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000532}, !- Inlet Port - {00000000-0000-0000-0020-000000000533}; !- Outlet Port + {00000000-0000-0000-0020-000000000202}, !- Inlet Port + {00000000-0000-0000-0020-000000000203}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000256}, !- Handle + {00000000-0000-0000-0048-000000000112}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000534}, !- Inlet Port - {00000000-0000-0000-0020-000000000535}; !- Outlet Port + {00000000-0000-0000-0020-000000000204}, !- Inlet Port + {00000000-0000-0000-0020-000000000205}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000257}, !- Handle + {00000000-0000-0000-0048-000000000113}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000524}, !- Inlet Port - {00000000-0000-0000-0020-000000000536}; !- Outlet Port + {00000000-0000-0000-0020-000000000194}, !- Inlet Port + {00000000-0000-0000-0020-000000000206}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000258}, !- Handle + {00000000-0000-0000-0048-000000000114}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000537}, !- Inlet Port - {00000000-0000-0000-0020-000000000538}; !- Outlet Port + {00000000-0000-0000-0020-000000000207}, !- Inlet Port + {00000000-0000-0000-0020-000000000208}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000259}, !- Handle + {00000000-0000-0000-0048-000000000115}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000539}, !- Inlet Port - {00000000-0000-0000-0020-000000000540}; !- Outlet Port + {00000000-0000-0000-0020-000000000209}, !- Inlet Port + {00000000-0000-0000-0020-000000000210}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000260}, !- Handle - Primary Boiler 10574kBtu/hr 0.833 Combustion Eff Inlet Water Node, !- Name + {00000000-0000-0000-0048-000000000116}, !- Handle + Primary Boiler 287kBtu/hr 0.85 AFUE Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000048}, !- Inlet Port {00000000-0000-0000-0020-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000261}, !- Handle - Primary Boiler 10574kBtu/hr 0.833 Combustion Eff Outlet Water Node, !- Name + {00000000-0000-0000-0048-000000000117}, !- Handle + Primary Boiler 287kBtu/hr 0.85 AFUE Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000059}, !- Inlet Port {00000000-0000-0000-0020-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000262}, !- Handle - Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0048-000000000118}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000127}, !- Inlet Port {00000000-0000-0000-0020-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000263}, !- Handle - Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0048-000000000119}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000144}, !- Inlet Port {00000000-0000-0000-0020-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000264}, !- Handle - Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0048-000000000120}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000098}, !- Inlet Port {00000000-0000-0000-0020-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000265}, !- Handle - Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0048-000000000121}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000109}, !- Inlet Port {00000000-0000-0000-0020-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000266}, !- Handle + {00000000-0000-0000-0048-000000000122}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000056}, !- Inlet Port {00000000-0000-0000-0020-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000267}, !- Handle + {00000000-0000-0000-0048-000000000123}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000106}, !- Inlet Port {00000000-0000-0000-0020-000000000107}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000268}, !- Handle + {00000000-0000-0000-0048-000000000124}, !- Handle Pump Variable Speed 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000131}, !- Inlet Port {00000000-0000-0000-0020-000000000132}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000269}, !- Handle + {00000000-0000-0000-0048-000000000125}, !- Handle Secondary Boiler 0kBtu/hr 0.85 AFUE Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000061}, !- Inlet Port {00000000-0000-0000-0020-000000000062}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000270}, !- Handle + {00000000-0000-0000-0048-000000000126}, !- Handle Secondary Boiler 0kBtu/hr 0.85 AFUE Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000063}, !- Inlet Port {00000000-0000-0000-0020-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000271}, !- Handle + {00000000-0000-0000-0048-000000000127}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000146}, !- Inlet Port {00000000-0000-0000-0020-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000272}, !- Handle + {00000000-0000-0000-0048-000000000128}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000148}, !- Inlet Port {00000000-0000-0000-0020-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000273}, !- Handle + {00000000-0000-0000-0048-000000000129}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000111}, !- Inlet Port {00000000-0000-0000-0020-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000274}, !- Handle + {00000000-0000-0000-0048-000000000130}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000113}, !- Inlet Port {00000000-0000-0000-0020-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000275}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000213}, !- Inlet Port - {00000000-0000-0000-0020-000000000214}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000276}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000323}, !- Inlet Port - {00000000-0000-0000-0020-000000000324}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000277}, !- Handle - Sys6 Return Fan 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000433}, !- Inlet Port - {00000000-0000-0000-0020-000000000434}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000278}, !- Handle + {00000000-0000-0000-0048-000000000131}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000173}, !- Inlet Port {00000000-0000-0000-0020-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000279}, !- Handle + {00000000-0000-0000-0048-000000000132}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0020-000000000092}, !- Inlet Port {00000000-0000-0000-0020-000000000093}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000280}, !- Handle + {00000000-0000-0000-0048-000000000133}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0020-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000281}, !- Handle + {00000000-0000-0000-0048-000000000134}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000074}, !- Inlet Port {00000000-0000-0000-0020-000000000076}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000282}, !- Handle + {00000000-0000-0000-0048-000000000135}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000077}, !- Inlet Port {00000000-0000-0000-0020-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000283}, !- Handle + {00000000-0000-0000-0048-000000000136}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000086}, !- Inlet Port {00000000-0000-0000-0020-000000000087}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000284}, !- Handle + {00000000-0000-0000-0048-000000000137}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0020-000000000078}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000285}, !- Handle + {00000000-0000-0000-0048-000000000138}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0020-000000000079}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000286}, !- Handle + {00000000-0000-0000-0048-000000000139}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000072}, !- Inlet Port {00000000-0000-0000-0020-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000287}, !- Handle + {00000000-0000-0000-0048-000000000140}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000080}, !- Inlet Port {00000000-0000-0000-0020-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000288}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000191}, !- Inlet Port - {00000000-0000-0000-0020-000000000193}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000289}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000194}, !- Inlet Port - {00000000-0000-0000-0020-000000000192}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000290}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0020-000000000210}, !- Inlet Port - {00000000-0000-0000-0020-000000000211}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000291}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0020-000000000203}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000292}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000204}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000293}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000189}, !- Inlet Port - {00000000-0000-0000-0020-000000000212}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000294}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000205}, !- Inlet Port - {00000000-0000-0000-0020-000000000190}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000295}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000301}, !- Inlet Port - {00000000-0000-0000-0020-000000000303}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000296}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000304}, !- Inlet Port - {00000000-0000-0000-0020-000000000302}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000297}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0020-000000000320}, !- Inlet Port - {00000000-0000-0000-0020-000000000321}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000298}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0020-000000000313}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000299}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000314}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000300}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000299}, !- Inlet Port - {00000000-0000-0000-0020-000000000322}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000301}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000315}, !- Inlet Port - {00000000-0000-0000-0020-000000000300}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000302}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000411}, !- Inlet Port - {00000000-0000-0000-0020-000000000413}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000303}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000414}, !- Inlet Port - {00000000-0000-0000-0020-000000000412}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000304}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Mixed Air Node, !- Name - {00000000-0000-0000-0020-000000000430}, !- Inlet Port - {00000000-0000-0000-0020-000000000431}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000305}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0020-000000000423}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000306}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000424}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000307}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000409}, !- Inlet Port - {00000000-0000-0000-0020-000000000432}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000308}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000425}, !- Inlet Port - {00000000-0000-0000-0020-000000000410}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000309}, !- Handle + {00000000-0000-0000-0048-000000000141}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000152}, !- Inlet Port {00000000-0000-0000-0020-000000000154}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000310}, !- Handle + {00000000-0000-0000-0048-000000000142}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000155}, !- Inlet Port {00000000-0000-0000-0020-000000000153}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000311}, !- Handle + {00000000-0000-0000-0048-000000000143}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000170}, !- Inlet Port {00000000-0000-0000-0020-000000000171}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000312}, !- Handle + {00000000-0000-0000-0048-000000000144}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0020-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000313}, !- Handle + {00000000-0000-0000-0048-000000000145}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name {00000000-0000-0000-0020-000000000164}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000314}, !- Handle + {00000000-0000-0000-0048-000000000146}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000150}, !- Inlet Port {00000000-0000-0000-0020-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000315}, !- Handle + {00000000-0000-0000-0048-000000000147}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000165}, !- Inlet Port {00000000-0000-0000-0020-000000000151}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0053-000000000001}, !- Handle + {00000000-0000-0000-0049-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A People, !- Name - {00000000-0000-0000-0055-000000000001}, !- People Definition Name - {00000000-0000-0000-0084-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0051-000000000001}, !- People Definition Name + {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0065-000000000025}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0065-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0065-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0061-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0061-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0061-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0054-000000000002}, !- Handle + {00000000-0000-0000-0050-000000000002}, !- Handle Space Function Office - open plan People, !- Name - {00000000-0000-0000-0055-000000000002}, !- People Definition Name - {00000000-0000-0000-0084-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0051-000000000002}, !- People Definition Name + {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0065-000000000025}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0065-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0065-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0061-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0061-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0061-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0051-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -10563,7 +5049,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0055-000000000002}, !- Handle + {00000000-0000-0000-0051-000000000002}, !- Handle Space Function Office - open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -10572,67 +5058,67 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0052-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0020-000000000066}, !- Inlet Node Name {00000000-0000-0000-0020-000000000067}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0056-000000000002}, !- Handle + {00000000-0000-0000-0052-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0020-000000000543}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000544}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000213}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000214}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0056-000000000003}, !- Handle + {00000000-0000-0000-0052-000000000003}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0020-000000000070}, !- Inlet Node Name {00000000-0000-0000-0020-000000000071}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0056-000000000004}, !- Handle + {00000000-0000-0000-0052-000000000004}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0020-000000000116}, !- Inlet Node Name {00000000-0000-0000-0020-000000000117}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0056-000000000005}, !- Handle + {00000000-0000-0000-0052-000000000005}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0020-000000000120}, !- Inlet Node Name {00000000-0000-0000-0020-000000000121}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0056-000000000006}, !- Handle + {00000000-0000-0000-0052-000000000006}, !- Handle Pipe Adiabatic 5, !- Name {00000000-0000-0000-0020-000000000137}, !- Inlet Node Name {00000000-0000-0000-0020-000000000138}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0056-000000000007}, !- Handle + {00000000-0000-0000-0052-000000000007}, !- Handle Pipe Adiabatic 6, !- Name {00000000-0000-0000-0020-000000000141}, !- Inlet Node Name {00000000-0000-0000-0020-000000000142}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0056-000000000008}, !- Handle + {00000000-0000-0000-0052-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0020-000000000533}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000534}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000203}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000204}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0056-000000000009}, !- Handle + {00000000-0000-0000-0052-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0020-000000000536}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000537}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000206}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000207}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0056-000000000010}, !- Handle + {00000000-0000-0000-0052-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0020-000000000540}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000541}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000210}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000211}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -10640,7 +5126,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000087}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0048-000000000033}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -10654,7 +5140,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -10668,7 +5154,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0057-000000000002}, !- Handle + {00000000-0000-0000-0053-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -10676,7 +5162,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000195}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0048-000000000051}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -10690,7 +5176,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -10704,7 +5190,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000005}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0057-000000000003}, !- Handle + {00000000-0000-0000-0053-000000000003}, !- Handle Hot Water Loop, !- Name Water, !- Fluid Type 0, !- Glycol Concentration @@ -10712,7 +5198,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000215}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0048-000000000071}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -10726,7 +5212,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -10740,7 +5226,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0057-000000000004}, !- Handle + {00000000-0000-0000-0053-000000000004}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -10748,21 +5234,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000220}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0048-000000000076}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0020-000000000519}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0020-000000000521}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0020-000000000189}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0020-000000000191}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0020-000000000522}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0020-000000000525}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000192}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0020-000000000195}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -10776,326 +5262,290 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000007}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0058-000000000001}, !- Handle - {00000000-0000-0000-0092-000000000010}, !- HVAC Component - {00000000-0000-0000-0020-000000000293}; !- Port 1 + {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000002}, !- Handle - {00000000-0000-0000-0092-000000000010}; !- HVAC Component + {00000000-0000-0000-0054-000000000002}, !- Handle + {00000000-0000-0000-0088-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000003}, !- Handle - {00000000-0000-0000-0092-000000000010}, !- HVAC Component - {00000000-0000-0000-0020-000000000294}; !- Port 1 + {00000000-0000-0000-0054-000000000003}, !- Handle + {00000000-0000-0000-0088-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000004}, !- Handle - {00000000-0000-0000-0092-000000000001}; !- HVAC Component + {00000000-0000-0000-0054-000000000004}, !- Handle + {00000000-0000-0000-0088-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000005}, !- Handle - {00000000-0000-0000-0092-000000000001}; !- HVAC Component + {00000000-0000-0000-0054-000000000005}, !- Handle + {00000000-0000-0000-0088-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000006}, !- Handle - {00000000-0000-0000-0092-000000000001}; !- HVAC Component + {00000000-0000-0000-0054-000000000006}, !- Handle + {00000000-0000-0000-0088-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000007}, !- Handle - {00000000-0000-0000-0092-000000000022}, !- HVAC Component - {00000000-0000-0000-0020-000000000513}; !- Port 1 + {00000000-0000-0000-0054-000000000007}, !- Handle + {00000000-0000-0000-0088-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000008}, !- Handle - {00000000-0000-0000-0092-000000000022}; !- HVAC Component + {00000000-0000-0000-0054-000000000008}, !- Handle + {00000000-0000-0000-0088-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000009}, !- Handle - {00000000-0000-0000-0092-000000000022}, !- HVAC Component - {00000000-0000-0000-0020-000000000514}; !- Port 1 + {00000000-0000-0000-0054-000000000009}, !- Handle + {00000000-0000-0000-0088-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000010}, !- Handle - {00000000-0000-0000-0092-000000000003}; !- HVAC Component + {00000000-0000-0000-0054-000000000010}, !- Handle + {00000000-0000-0000-0088-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000011}, !- Handle - {00000000-0000-0000-0092-000000000003}; !- HVAC Component + {00000000-0000-0000-0054-000000000011}, !- Handle + {00000000-0000-0000-0088-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000012}, !- Handle - {00000000-0000-0000-0092-000000000003}; !- HVAC Component + {00000000-0000-0000-0054-000000000012}, !- Handle + {00000000-0000-0000-0088-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000013}, !- Handle - {00000000-0000-0000-0092-000000000016}, !- HVAC Component - {00000000-0000-0000-0020-000000000403}; !- Port 1 + {00000000-0000-0000-0054-000000000013}, !- Handle + {00000000-0000-0000-0088-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000014}, !- Handle - {00000000-0000-0000-0092-000000000016}; !- HVAC Component + {00000000-0000-0000-0054-000000000014}, !- Handle + {00000000-0000-0000-0088-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000015}, !- Handle - {00000000-0000-0000-0092-000000000016}, !- HVAC Component - {00000000-0000-0000-0020-000000000404}; !- Port 1 + {00000000-0000-0000-0054-000000000015}, !- Handle + {00000000-0000-0000-0088-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000016}, !- Handle - {00000000-0000-0000-0092-000000000017}, !- HVAC Component - {00000000-0000-0000-0020-000000000471}; !- Port 1 + {00000000-0000-0000-0054-000000000016}, !- Handle + {00000000-0000-0000-0088-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000017}, !- Handle - {00000000-0000-0000-0092-000000000017}; !- HVAC Component + {00000000-0000-0000-0054-000000000017}, !- Handle + {00000000-0000-0000-0088-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000018}, !- Handle - {00000000-0000-0000-0092-000000000017}, !- HVAC Component - {00000000-0000-0000-0020-000000000472}; !- Port 1 + {00000000-0000-0000-0054-000000000018}, !- Handle + {00000000-0000-0000-0088-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000019}, !- Handle - {00000000-0000-0000-0092-000000000005}, !- HVAC Component - {00000000-0000-0000-0020-000000000237}; !- Port 1 + {00000000-0000-0000-0054-000000000019}, !- Handle + {00000000-0000-0000-0088-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000020}, !- Handle - {00000000-0000-0000-0092-000000000005}; !- HVAC Component + {00000000-0000-0000-0054-000000000020}, !- Handle + {00000000-0000-0000-0088-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000021}, !- Handle - {00000000-0000-0000-0092-000000000005}, !- HVAC Component - {00000000-0000-0000-0020-000000000238}; !- Port 1 + {00000000-0000-0000-0054-000000000021}, !- Handle + {00000000-0000-0000-0088-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000022}, !- Handle - {00000000-0000-0000-0092-000000000006}, !- HVAC Component - {00000000-0000-0000-0020-000000000265}; !- Port 1 + {00000000-0000-0000-0054-000000000022}, !- Handle + {00000000-0000-0000-0088-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000023}, !- Handle - {00000000-0000-0000-0092-000000000006}; !- HVAC Component + {00000000-0000-0000-0054-000000000023}, !- Handle + {00000000-0000-0000-0088-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000024}, !- Handle - {00000000-0000-0000-0092-000000000006}, !- HVAC Component - {00000000-0000-0000-0020-000000000266}; !- Port 1 + {00000000-0000-0000-0054-000000000024}, !- Handle + {00000000-0000-0000-0088-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000025}, !- Handle - {00000000-0000-0000-0092-000000000018}, !- HVAC Component - {00000000-0000-0000-0020-000000000485}; !- Port 1 + {00000000-0000-0000-0054-000000000025}, !- Handle + {00000000-0000-0000-0088-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000026}, !- Handle - {00000000-0000-0000-0092-000000000018}; !- HVAC Component + {00000000-0000-0000-0054-000000000026}, !- Handle + {00000000-0000-0000-0088-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000027}, !- Handle - {00000000-0000-0000-0092-000000000018}, !- HVAC Component - {00000000-0000-0000-0020-000000000486}; !- Port 1 + {00000000-0000-0000-0054-000000000027}, !- Handle + {00000000-0000-0000-0088-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000028}, !- Handle - {00000000-0000-0000-0092-000000000011}, !- HVAC Component - {00000000-0000-0000-0020-000000000375}; !- Port 1 + {00000000-0000-0000-0054-000000000028}, !- Handle + {00000000-0000-0000-0088-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000029}, !- Handle - {00000000-0000-0000-0092-000000000011}; !- HVAC Component + {00000000-0000-0000-0054-000000000029}, !- Handle + {00000000-0000-0000-0088-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000030}, !- Handle - {00000000-0000-0000-0092-000000000011}, !- HVAC Component - {00000000-0000-0000-0020-000000000376}; !- Port 1 + {00000000-0000-0000-0054-000000000030}, !- Handle + {00000000-0000-0000-0088-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000031}, !- Handle - {00000000-0000-0000-0092-000000000019}, !- HVAC Component - {00000000-0000-0000-0020-000000000457}; !- Port 1 + {00000000-0000-0000-0054-000000000031}, !- Handle + {00000000-0000-0000-0088-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000032}, !- Handle - {00000000-0000-0000-0092-000000000019}; !- HVAC Component + {00000000-0000-0000-0054-000000000032}, !- Handle + {00000000-0000-0000-0088-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000033}, !- Handle - {00000000-0000-0000-0092-000000000019}, !- HVAC Component - {00000000-0000-0000-0020-000000000458}; !- Port 1 + {00000000-0000-0000-0054-000000000033}, !- Handle + {00000000-0000-0000-0088-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000034}, !- Handle - {00000000-0000-0000-0092-000000000012}, !- HVAC Component - {00000000-0000-0000-0020-000000000361}; !- Port 1 + {00000000-0000-0000-0054-000000000034}, !- Handle + {00000000-0000-0000-0088-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000035}, !- Handle - {00000000-0000-0000-0092-000000000012}; !- HVAC Component + {00000000-0000-0000-0054-000000000035}, !- Handle + {00000000-0000-0000-0088-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000036}, !- Handle - {00000000-0000-0000-0092-000000000012}, !- HVAC Component - {00000000-0000-0000-0020-000000000362}; !- Port 1 + {00000000-0000-0000-0054-000000000036}, !- Handle + {00000000-0000-0000-0088-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000037}, !- Handle - {00000000-0000-0000-0092-000000000004}, !- HVAC Component + {00000000-0000-0000-0054-000000000037}, !- Handle + {00000000-0000-0000-0088-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000183}; !- Port 1 OS:PortList, - {00000000-0000-0000-0058-000000000038}, !- Handle - {00000000-0000-0000-0092-000000000004}; !- HVAC Component + {00000000-0000-0000-0054-000000000038}, !- Handle + {00000000-0000-0000-0088-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000039}, !- Handle - {00000000-0000-0000-0092-000000000004}, !- HVAC Component + {00000000-0000-0000-0054-000000000039}, !- Handle + {00000000-0000-0000-0088-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000184}; !- Port 1 OS:PortList, - {00000000-0000-0000-0058-000000000040}, !- Handle - {00000000-0000-0000-0092-000000000002}; !- HVAC Component + {00000000-0000-0000-0054-000000000040}, !- Handle + {00000000-0000-0000-0088-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000041}, !- Handle - {00000000-0000-0000-0092-000000000002}; !- HVAC Component + {00000000-0000-0000-0054-000000000041}, !- Handle + {00000000-0000-0000-0088-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000042}, !- Handle - {00000000-0000-0000-0092-000000000002}; !- HVAC Component + {00000000-0000-0000-0054-000000000042}, !- Handle + {00000000-0000-0000-0088-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000043}, !- Handle - {00000000-0000-0000-0092-000000000007}, !- HVAC Component - {00000000-0000-0000-0020-000000000223}; !- Port 1 + {00000000-0000-0000-0054-000000000043}, !- Handle + {00000000-0000-0000-0088-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000044}, !- Handle - {00000000-0000-0000-0092-000000000007}; !- HVAC Component + {00000000-0000-0000-0054-000000000044}, !- Handle + {00000000-0000-0000-0088-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000045}, !- Handle - {00000000-0000-0000-0092-000000000007}, !- HVAC Component - {00000000-0000-0000-0020-000000000224}; !- Port 1 + {00000000-0000-0000-0054-000000000045}, !- Handle + {00000000-0000-0000-0088-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000046}, !- Handle - {00000000-0000-0000-0092-000000000020}, !- HVAC Component - {00000000-0000-0000-0020-000000000499}; !- Port 1 + {00000000-0000-0000-0054-000000000046}, !- Handle + {00000000-0000-0000-0088-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000047}, !- Handle - {00000000-0000-0000-0092-000000000020}; !- HVAC Component + {00000000-0000-0000-0054-000000000047}, !- Handle + {00000000-0000-0000-0088-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000048}, !- Handle - {00000000-0000-0000-0092-000000000020}, !- HVAC Component - {00000000-0000-0000-0020-000000000500}; !- Port 1 + {00000000-0000-0000-0054-000000000048}, !- Handle + {00000000-0000-0000-0088-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000049}, !- Handle - {00000000-0000-0000-0092-000000000013}, !- HVAC Component - {00000000-0000-0000-0020-000000000347}; !- Port 1 + {00000000-0000-0000-0054-000000000049}, !- Handle + {00000000-0000-0000-0088-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000050}, !- Handle - {00000000-0000-0000-0092-000000000013}; !- HVAC Component + {00000000-0000-0000-0054-000000000050}, !- Handle + {00000000-0000-0000-0088-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000051}, !- Handle - {00000000-0000-0000-0092-000000000013}, !- HVAC Component - {00000000-0000-0000-0020-000000000348}; !- Port 1 + {00000000-0000-0000-0054-000000000051}, !- Handle + {00000000-0000-0000-0088-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000052}, !- Handle - {00000000-0000-0000-0092-000000000021}, !- HVAC Component - {00000000-0000-0000-0020-000000000443}; !- Port 1 + {00000000-0000-0000-0054-000000000052}, !- Handle + {00000000-0000-0000-0088-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000053}, !- Handle - {00000000-0000-0000-0092-000000000021}; !- HVAC Component + {00000000-0000-0000-0054-000000000053}, !- Handle + {00000000-0000-0000-0088-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000054}, !- Handle - {00000000-0000-0000-0092-000000000021}, !- HVAC Component - {00000000-0000-0000-0020-000000000444}; !- Port 1 + {00000000-0000-0000-0054-000000000054}, !- Handle + {00000000-0000-0000-0088-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000055}, !- Handle - {00000000-0000-0000-0092-000000000014}, !- HVAC Component - {00000000-0000-0000-0020-000000000333}; !- Port 1 + {00000000-0000-0000-0054-000000000055}, !- Handle + {00000000-0000-0000-0088-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000056}, !- Handle - {00000000-0000-0000-0092-000000000014}; !- HVAC Component + {00000000-0000-0000-0054-000000000056}, !- Handle + {00000000-0000-0000-0088-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000057}, !- Handle - {00000000-0000-0000-0092-000000000014}, !- HVAC Component - {00000000-0000-0000-0020-000000000334}; !- Port 1 + {00000000-0000-0000-0054-000000000057}, !- Handle + {00000000-0000-0000-0088-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000058}, !- Handle - {00000000-0000-0000-0092-000000000008}, !- HVAC Component - {00000000-0000-0000-0020-000000000279}; !- Port 1 + {00000000-0000-0000-0054-000000000058}, !- Handle + {00000000-0000-0000-0088-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000059}, !- Handle - {00000000-0000-0000-0092-000000000008}; !- HVAC Component + {00000000-0000-0000-0054-000000000059}, !- Handle + {00000000-0000-0000-0088-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000060}, !- Handle - {00000000-0000-0000-0092-000000000008}, !- HVAC Component - {00000000-0000-0000-0020-000000000280}; !- Port 1 + {00000000-0000-0000-0054-000000000060}, !- Handle + {00000000-0000-0000-0088-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000061}, !- Handle - {00000000-0000-0000-0092-000000000015}, !- HVAC Component - {00000000-0000-0000-0020-000000000389}; !- Port 1 + {00000000-0000-0000-0054-000000000061}, !- Handle + {00000000-0000-0000-0088-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000062}, !- Handle - {00000000-0000-0000-0092-000000000015}; !- HVAC Component + {00000000-0000-0000-0054-000000000062}, !- Handle + {00000000-0000-0000-0088-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000063}, !- Handle - {00000000-0000-0000-0092-000000000015}, !- HVAC Component - {00000000-0000-0000-0020-000000000390}; !- Port 1 + {00000000-0000-0000-0054-000000000063}, !- Handle + {00000000-0000-0000-0088-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000064}, !- Handle - {00000000-0000-0000-0092-000000000009}, !- HVAC Component - {00000000-0000-0000-0020-000000000251}; !- Port 1 + {00000000-0000-0000-0054-000000000064}, !- Handle + {00000000-0000-0000-0088-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000065}, !- Handle - {00000000-0000-0000-0092-000000000009}; !- HVAC Component + {00000000-0000-0000-0054-000000000065}, !- Handle + {00000000-0000-0000-0088-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000066}, !- Handle - {00000000-0000-0000-0092-000000000009}, !- HVAC Component - {00000000-0000-0000-0020-000000000252}; !- Port 1 + {00000000-0000-0000-0054-000000000066}, !- Handle + {00000000-0000-0000-0088-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000067}, !- Handle - {00000000-0000-0000-0092-000000000023}, !- HVAC Component + {00000000-0000-0000-0054-000000000067}, !- Handle + {00000000-0000-0000-0088-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000091}; !- Port 1 OS:PortList, - {00000000-0000-0000-0058-000000000068}, !- Handle - {00000000-0000-0000-0092-000000000023}; !- HVAC Component + {00000000-0000-0000-0054-000000000068}, !- Handle + {00000000-0000-0000-0088-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0058-000000000069}, !- Handle - {00000000-0000-0000-0092-000000000023}, !- HVAC Component + {00000000-0000-0000-0054-000000000069}, !- Handle + {00000000-0000-0000-0088-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000092}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0020-000000000526}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000527}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000196}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000197}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 739784.190131565, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -11114,14 +5564,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0020-000000000055}, !- Inlet Node Name {00000000-0000-0000-0020-000000000056}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.924, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -11147,14 +5597,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0060-000000000002}, !- Handle + {00000000-0000-0000-0056-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0020-000000000105}, !- Inlet Node Name {00000000-0000-0000-0020-000000000106}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.936, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -11180,14 +5630,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0060-000000000003}, !- Handle + {00000000-0000-0000-0056-000000000003}, !- Handle Pump Variable Speed 3, !- Name {00000000-0000-0000-0020-000000000130}, !- Inlet Node Name {00000000-0000-0000-0020-000000000131}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.954, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -11213,322 +5663,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000003}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000004}, !- Handle + {00000000-0000-0000-0057-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000005}, !- Handle + {00000000-0000-0000-0057-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000006}, !- Handle + {00000000-0000-0000-0057-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000007}, !- Handle + {00000000-0000-0000-0057-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000008}, !- Handle + {00000000-0000-0000-0057-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000009}, !- Handle + {00000000-0000-0000-0057-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000010}, !- Handle + {00000000-0000-0000-0057-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000011}, !- Handle + {00000000-0000-0000-0057-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000012}, !- Handle + {00000000-0000-0000-0057-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000013}, !- Handle + {00000000-0000-0000-0057-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000014}, !- Handle + {00000000-0000-0000-0057-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000015}, !- Handle + {00000000-0000-0000-0057-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000016}, !- Handle + {00000000-0000-0000-0057-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000017}, !- Handle + {00000000-0000-0000-0057-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000018}, !- Handle + {00000000-0000-0000-0057-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000019}, !- Handle + {00000000-0000-0000-0057-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000020}, !- Handle + {00000000-0000-0000-0057-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000021}, !- Handle + {00000000-0000-0000-0057-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000022}, !- Handle + {00000000-0000-0000-0057-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000023}, !- Handle + {00000000-0000-0000-0057-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000024}, !- Handle + {00000000-0000-0000-0057-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000025}, !- Handle + {00000000-0000-0000-0057-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000026}, !- Handle + {00000000-0000-0000-0057-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000027}, !- Handle + {00000000-0000-0000-0057-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000028}, !- Handle + {00000000-0000-0000-0057-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000029}, !- Handle + {00000000-0000-0000-0057-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000030}, !- Handle + {00000000-0000-0000-0057-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000031}, !- Handle + {00000000-0000-0000-0057-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000032}, !- Handle + {00000000-0000-0000-0057-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000033}, !- Handle + {00000000-0000-0000-0057-000000000033}, !- Handle Space Function Electrical/Mechanical-sch-A 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000034}, !- Handle + {00000000-0000-0000-0057-000000000034}, !- Handle Space Function Electrical/Mechanical-sch-A 2, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000035}, !- Handle + {00000000-0000-0000-0057-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000036}, !- Handle + {00000000-0000-0000-0057-000000000036}, !- Handle Space Function Office - open plan 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000037}, !- Handle + {00000000-0000-0000-0057-000000000037}, !- Handle Space Function Office - open plan 2, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000038}, !- Handle + {00000000-0000-0000-0057-000000000038}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0061-000000000039}, !- Handle + {00000000-0000-0000-0057-000000000039}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000002}, !- Handle + {00000000-0000-0000-0059-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000003}, !- Handle + {00000000-0000-0000-0059-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0066-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000004}, !- Handle + {00000000-0000-0000-0059-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0066-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000005}, !- Handle + {00000000-0000-0000-0059-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -11537,36 +5987,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000006}, !- Handle + {00000000-0000-0000-0059-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000007}, !- Handle + {00000000-0000-0000-0059-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000008}, !- Handle + {00000000-0000-0000-0059-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000009}, !- Handle + {00000000-0000-0000-0059-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11591,9 +6041,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000010}, !- Handle + {00000000-0000-0000-0059-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11618,27 +6068,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000011}, !- Handle + {00000000-0000-0000-0059-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000012}, !- Handle + {00000000-0000-0000-0059-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000013}, !- Handle + {00000000-0000-0000-0059-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11669,9 +6119,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000014}, !- Handle + {00000000-0000-0000-0059-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11702,27 +6152,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000015}, !- Handle + {00000000-0000-0000-0059-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000016}, !- Handle + {00000000-0000-0000-0059-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000017}, !- Handle + {00000000-0000-0000-0059-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11756,9 +6206,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000018}, !- Handle + {00000000-0000-0000-0059-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11792,27 +6242,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000019}, !- Handle + {00000000-0000-0000-0059-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000020}, !- Handle + {00000000-0000-0000-0059-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000021}, !- Handle + {00000000-0000-0000-0059-000000000021}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11843,9 +6293,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000022}, !- Handle + {00000000-0000-0000-0059-000000000022}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11876,27 +6326,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000023}, !- Handle + {00000000-0000-0000-0059-000000000023}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000024}, !- Handle + {00000000-0000-0000-0059-000000000024}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000025}, !- Handle + {00000000-0000-0000-0059-000000000025}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -11909,9 +6359,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000026}, !- Handle + {00000000-0000-0000-0059-000000000026}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -11924,27 +6374,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000027}, !- Handle + {00000000-0000-0000-0059-000000000027}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000028}, !- Handle + {00000000-0000-0000-0059-000000000028}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000029}, !- Handle + {00000000-0000-0000-0059-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -11960,9 +6410,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000030}, !- Handle + {00000000-0000-0000-0059-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -11978,124 +6428,70 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000031}, !- Handle + {00000000-0000-0000-0059-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000032}, !- Handle + {00000000-0000-0000-0059-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000033}, !- Handle + {00000000-0000-0000-0059-000000000033}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0066-000000000001}, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 130; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000034}, !- Handle - NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0066-000000000001}, !- Schedule Type Limits Name - No, !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 130; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000035}, !- Handle - NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0066-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000036}, !- Handle - Schedule Day 1, !- Name - , !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000037}, !- Handle - Schedule Day 10, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000038}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000039}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000040}, !- Handle - Schedule Day 13, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep + {00000000-0000-0000-0059-000000000034}, !- Handle + NECB-Activity Summer Design Day, !- Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000041}, !- Handle - Schedule Day 14, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep + {00000000-0000-0000-0059-000000000035}, !- Handle + NECB-Activity Winter Design Day, !- Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000042}, !- Handle - Schedule Day 15, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000036}, !- Handle + Schedule Day 1, !- Name + , !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000043}, !- Handle - Schedule Day 16, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000037}, !- Handle + Schedule Day 10, !- Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000044}, !- Handle + {00000000-0000-0000-0059-000000000038}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -12104,9 +6500,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000045}, !- Handle + {00000000-0000-0000-0059-000000000039}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12182,9 +6578,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000046}, !- Handle + {00000000-0000-0000-0059-000000000040}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12260,117 +6656,90 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000047}, !- Handle + {00000000-0000-0000-0059-000000000041}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000048}, !- Handle + {00000000-0000-0000-0059-000000000042}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000049}, !- Handle + {00000000-0000-0000-0059-000000000043}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000050}, !- Handle + {00000000-0000-0000-0059-000000000044}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000051}, !- Handle + {00000000-0000-0000-0059-000000000045}, !- Handle Schedule Day 9, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000052}, !- Handle + {00000000-0000-0000-0059-000000000046}, !- Handle Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000053}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000054}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000055}, !- Handle - Supply Air Temp Default 3, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000056}, !- Handle + {00000000-0000-0000-0059-000000000047}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000057}, !- Handle + {00000000-0000-0000-0059-000000000048}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000058}, !- Handle + {00000000-0000-0000-0059-000000000049}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000059}, !- Handle + {00000000-0000-0000-0059-000000000050}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12446,9 +6815,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000060}, !- Handle + {00000000-0000-0000-0059-000000000051}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12524,9 +6893,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000061}, !- Handle + {00000000-0000-0000-0059-000000000052}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12602,9 +6971,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000062}, !- Handle + {00000000-0000-0000-0059-000000000053}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12680,9 +7049,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000063}, !- Handle + {00000000-0000-0000-0059-000000000054}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12758,9 +7127,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000064}, !- Handle + {00000000-0000-0000-0059-000000000055}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12836,9 +7205,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000065}, !- Handle + {00000000-0000-0000-0059-000000000056}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12914,9 +7283,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000066}, !- Handle + {00000000-0000-0000-0059-000000000057}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12992,9 +7361,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000067}, !- Handle + {00000000-0000-0000-0059-000000000058}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -13007,126 +7376,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000068}, !- Handle + {00000000-0000-0000-0059-000000000059}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000069}, !- Handle + {00000000-0000-0000-0059-000000000060}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000070}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000071}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000072}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000073}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000074}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000075}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000076}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000077}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000078}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000079}, !- Handle + {00000000-0000-0000-0059-000000000061}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -13139,27 +7409,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000080}, !- Handle + {00000000-0000-0000-0059-000000000062}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000081}, !- Handle + {00000000-0000-0000-0059-000000000063}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000082}, !- Handle + {00000000-0000-0000-0059-000000000064}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13235,9 +7505,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000083}, !- Handle + {00000000-0000-0000-0059-000000000065}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13313,9 +7583,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000084}, !- Handle + {00000000-0000-0000-0059-000000000066}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13391,9 +7661,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000085}, !- Handle + {00000000-0000-0000-0059-000000000067}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13469,11 +7739,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0065-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13488,11 +7758,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000002}, !- Handle + {00000000-0000-0000-0060-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13507,11 +7777,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000003}, !- Handle + {00000000-0000-0000-0060-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0065-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -13526,11 +7796,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000004}, !- Handle + {00000000-0000-0000-0060-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0065-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13545,11 +7815,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000005}, !- Handle + {00000000-0000-0000-0060-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0065-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13564,11 +7834,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000006}, !- Handle + {00000000-0000-0000-0060-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0065-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -13583,11 +7853,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000007}, !- Handle + {00000000-0000-0000-0060-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0065-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13602,11 +7872,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000008}, !- Handle + {00000000-0000-0000-0060-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0065-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000028}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13621,11 +7891,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000009}, !- Handle + {00000000-0000-0000-0060-000000000009}, !- Handle Schedule Rule 17, !- Name - {00000000-0000-0000-0065-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000013}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000022}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000022}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -13640,11 +7910,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000010}, !- Handle + {00000000-0000-0000-0060-000000000010}, !- Handle Schedule Rule 18, !- Name - {00000000-0000-0000-0065-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000023}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13659,11 +7929,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000011}, !- Handle + {00000000-0000-0000-0060-000000000011}, !- Handle Schedule Rule 19, !- Name - {00000000-0000-0000-0065-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000024}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13678,11 +7948,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000012}, !- Handle + {00000000-0000-0000-0060-000000000012}, !- Handle Schedule Rule 2, !- Name - {00000000-0000-0000-0065-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000018}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000018}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -13697,11 +7967,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000013}, !- Handle + {00000000-0000-0000-0060-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0065-000000000026}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000023}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000049}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000043}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13716,11 +7986,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000014}, !- Handle + {00000000-0000-0000-0060-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0065-000000000026}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000023}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000044}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13735,11 +8005,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000015}, !- Handle + {00000000-0000-0000-0060-000000000015}, !- Handle Schedule Rule 22, !- Name - {00000000-0000-0000-0065-000000000030}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000024}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000051}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000045}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13754,125 +8024,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000016}, !- Handle + {00000000-0000-0000-0060-000000000016}, !- Handle Schedule Rule 23, !- Name - {00000000-0000-0000-0065-000000000030}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0063-000000000037}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0065-000000000027}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0063-000000000038}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0065-000000000027}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0063-000000000039}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000019}, !- Handle - Schedule Rule 26, !- Name - {00000000-0000-0000-0065-000000000028}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0063-000000000040}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000020}, !- Handle - Schedule Rule 27, !- Name - {00000000-0000-0000-0065-000000000028}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0063-000000000041}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000021}, !- Handle - Schedule Rule 28, !- Name - {00000000-0000-0000-0065-000000000029}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0063-000000000042}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000022}, !- Handle - Schedule Rule 29, !- Name - {00000000-0000-0000-0065-000000000029}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000024}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000037}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13887,11 +8043,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000023}, !- Handle + {00000000-0000-0000-0060-000000000017}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0065-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000019}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13906,11 +8062,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000024}, !- Handle + {00000000-0000-0000-0060-000000000018}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0065-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13925,11 +8081,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000025}, !- Handle + {00000000-0000-0000-0060-000000000019}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -13944,11 +8100,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000026}, !- Handle + {00000000-0000-0000-0060-000000000020}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13963,11 +8119,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000027}, !- Handle + {00000000-0000-0000-0060-000000000021}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13982,11 +8138,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000028}, !- Handle + {00000000-0000-0000-0060-000000000022}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14001,11 +8157,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000029}, !- Handle + {00000000-0000-0000-0060-000000000023}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14020,11 +8176,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000030}, !- Handle + {00000000-0000-0000-0060-000000000024}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000059}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000050}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14039,11 +8195,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000031}, !- Handle + {00000000-0000-0000-0060-000000000025}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000061}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000052}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14058,11 +8214,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000032}, !- Handle + {00000000-0000-0000-0060-000000000026}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000063}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14077,11 +8233,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000033}, !- Handle + {00000000-0000-0000-0060-000000000027}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000065}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000056}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14096,11 +8252,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000034}, !- Handle + {00000000-0000-0000-0060-000000000028}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000082}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000064}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14115,11 +8271,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000035}, !- Handle + {00000000-0000-0000-0060-000000000029}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0061-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000084}, !- Day Schedule Name + {00000000-0000-0000-0059-000000000066}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14134,199 +8290,157 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000003}, !- Handle + {00000000-0000-0000-0061-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000045}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000039}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000004}, !- Handle + {00000000-0000-0000-0061-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000040}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000005}, !- Handle + {00000000-0000-0000-0061-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0066-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000006}, !- Handle + {00000000-0000-0000-0061-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000007}, !- Handle + {00000000-0000-0000-0061-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000008}, !- Handle + {00000000-0000-0000-0061-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000009}, !- Handle + {00000000-0000-0000-0061-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000010}, !- Handle + {00000000-0000-0000-0061-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000011}, !- Handle + {00000000-0000-0000-0061-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000012}, !- Handle + {00000000-0000-0000-0061-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000013}, !- Handle + {00000000-0000-0000-0061-000000000013}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000021}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000021}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000014}, !- Handle + {00000000-0000-0000-0061-000000000014}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000015}, !- Handle + {00000000-0000-0000-0061-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000016}, !- Handle + {00000000-0000-0000-0061-000000000016}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0066-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000033}, !- Default Day Schedule Name - {00000000-0000-0000-0063-000000000034}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0063-000000000035}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000033}, !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000034}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0059-000000000035}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000017}, !- Handle + {00000000-0000-0000-0061-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000018}, !- Handle + {00000000-0000-0000-0061-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000019}, !- Handle + {00000000-0000-0000-0061-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000052}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000020}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000053}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000021}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000054}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000022}, !- Handle - Supply Air Temp 3, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000055}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000023}, !- Handle + {00000000-0000-0000-0061-000000000020}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000056}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000024}, !- Handle + {00000000-0000-0000-0061-000000000021}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000057}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000025}, !- Handle + {00000000-0000-0000-0061-000000000022}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000058}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000026}, !- Handle + {00000000-0000-0000-0061-000000000023}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000067}, !- Default Day Schedule Name - {00000000-0000-0000-0063-000000000068}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0063-000000000069}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000027}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000070}, !- Default Day Schedule Name - {00000000-0000-0000-0063-000000000071}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0063-000000000072}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000058}, !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000059}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0059-000000000060}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000028}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000073}, !- Default Day Schedule Name - {00000000-0000-0000-0063-000000000074}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0063-000000000075}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000029}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000076}, !- Default Day Schedule Name - {00000000-0000-0000-0063-000000000077}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0063-000000000078}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000030}, !- Handle + {00000000-0000-0000-0061-000000000024}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000079}, !- Default Day Schedule Name - {00000000-0000-0000-0063-000000000080}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0063-000000000081}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0059-000000000061}, !- Default Day Schedule Name + {00000000-0000-0000-0059-000000000062}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0059-000000000063}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -14334,7 +8448,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0066-000000000002}, !- Handle + {00000000-0000-0000-0062-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -14342,7 +8456,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0066-000000000003}, !- Handle + {00000000-0000-0000-0062-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -14350,14 +8464,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0066-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0066-000000000005}, !- Handle + {00000000-0000-0000-0062-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -14365,7 +8479,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0066-000000000006}, !- Handle + {00000000-0000-0000-0062-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -14373,7 +8487,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0066-000000000007}, !- Handle + {00000000-0000-0000-0062-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -14381,7 +8495,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0066-000000000008}, !- Handle + {00000000-0000-0000-0062-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -14389,7 +8503,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0066-000000000009}, !- Handle + {00000000-0000-0000-0062-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -14397,14 +8511,14 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:OutdoorAirReset, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle Setpoint Manager Outdoor Air Reset 1, !- Name Temperature, !- Control Variable 82, !- Setpoint at Outdoor Low Temperature {C} -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0052-000000000215}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0048-000000000071}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -14412,64 +8526,43 @@ OS:SetpointManager:OutdoorAirReset, ; !- Outdoor High Temperature 2 {C} OS:SetpointManager:Scheduled, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0065-000000000019}, !- Schedule Name - {00000000-0000-0000-0052-000000000220}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0068-000000000002}, !- Handle - Setpoint Manager Scheduled 1, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0065-000000000003}, !- Schedule Name - {00000000-0000-0000-0052-000000000087}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0068-000000000003}, !- Handle - Setpoint Manager Scheduled 2, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0065-000000000004}, !- Schedule Name - {00000000-0000-0000-0052-000000000195}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0068-000000000004}, !- Handle - Setpoint Manager Scheduled 3, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0065-000000000023}, !- Schedule Name - {00000000-0000-0000-0052-000000000315}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0061-000000000019}, !- Schedule Name + {00000000-0000-0000-0048-000000000076}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0068-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name + {00000000-0000-0000-0064-000000000002}, !- Handle + Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0065-000000000020}, !- Schedule Name - {00000000-0000-0000-0052-000000000294}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0061-000000000003}, !- Schedule Name + {00000000-0000-0000-0048-000000000033}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0068-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name + {00000000-0000-0000-0064-000000000003}, !- Handle + Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0065-000000000021}, !- Schedule Name - {00000000-0000-0000-0052-000000000301}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0061-000000000004}, !- Schedule Name + {00000000-0000-0000-0048-000000000051}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0068-000000000007}, !- Handle - Setpoint Manager Scheduled 6, !- Name + {00000000-0000-0000-0064-000000000004}, !- Handle + Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0065-000000000022}, !- Schedule Name - {00000000-0000-0000-0052-000000000308}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0061-000000000020}, !- Schedule Name + {00000000-0000-0000-0048-000000000147}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0092-000000000023}, !- Control Zone Name - {00000000-0000-0000-0052-000000000287}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0088-000000000023}, !- Control Zone Name + {00000000-0000-0000-0048-000000000140}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -14484,7 +8577,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -14493,7 +8586,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -14508,7 +8601,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0073-000000000001}, !- Handle + {00000000-0000-0000-0069-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -14523,7 +8616,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0074-000000000001}, !- Handle + {00000000-0000-0000-0070-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -14538,7 +8631,7 @@ OS:Site:GroundTemperature:FCfactorMethod, 11.1; !- December Ground Temperature {C} OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0075-000000000001}, !- Handle + {00000000-0000-0000-0071-000000000001}, !- Handle -1.6, !- January Surface Ground Temperature {C} -5.4, !- February Surface Ground Temperature {C} -6.4, !- March Surface Ground Temperature {C} @@ -14553,20 +8646,20 @@ OS:Site:GroundTemperature:Shallow, 4; !- December Surface Ground Temperature {C} OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0072-000000000001}, !- Handle Correlation, !- Calculation Method , !- Temperature Schedule Name 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} OS:Sizing:Parameters, - {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0073-000000000001}, !- Handle 1.3, !- Heating Sizing Factor 1.1; !- Cooling Sizing Factor OS:Sizing:Plant, - {00000000-0000-0000-0078-000000000001}, !- Handle - {00000000-0000-0000-0057-000000000003}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0074-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000003}, !- Plant or Condenser Loop Name Heating, !- Loop Type 82, !- Design Loop Exit Temperature {C} 16, !- Loop Design Temperature Difference {deltaC} @@ -14575,8 +8668,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0078-000000000002}, !- Handle - {00000000-0000-0000-0057-000000000001}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0074-000000000002}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Plant or Condenser Loop Name Cooling, !- Loop Type 7, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -14585,8 +8678,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0078-000000000003}, !- Handle - {00000000-0000-0000-0057-000000000002}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0074-000000000003}, !- Handle + {00000000-0000-0000-0053-000000000002}, !- Plant or Condenser Loop Name Condenser, !- Loop Type 29, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -14595,8 +8688,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0078-000000000004}, !- Handle - {00000000-0000-0000-0057-000000000004}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0074-000000000004}, !- Handle + {00000000-0000-0000-0053-000000000004}, !- Plant or Condenser Loop Name Heating, !- Loop Type 60, !- Design Loop Exit Temperature {C} 5, !- Loop Design Temperature Difference {deltaC} @@ -14605,7 +8698,7 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name Sensible, !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -14646,48 +8739,7 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0079-000000000002}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0075-000000000002}, !- Handle {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -14727,101 +8779,19 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity -OS:Sizing:System, - {00000000-0000-0000-0079-000000000004}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0079-000000000005}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000001}, !- Handle - {00000000-0000-0000-0092-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000010}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -14845,8 +8815,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000002}, !- Handle - {00000000-0000-0000-0092-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0076-000000000002}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -14880,18 +8850,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000003}, !- Handle - {00000000-0000-0000-0092-000000000022}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000003}, !- Handle + {00000000-0000-0000-0088-000000000022}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -14915,8 +8885,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000004}, !- Handle - {00000000-0000-0000-0092-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0076-000000000004}, !- Handle + {00000000-0000-0000-0088-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -14950,18 +8920,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000005}, !- Handle - {00000000-0000-0000-0092-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000005}, !- Handle + {00000000-0000-0000-0088-000000000016}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -14985,18 +8955,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000006}, !- Handle - {00000000-0000-0000-0092-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000006}, !- Handle + {00000000-0000-0000-0088-000000000017}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15020,18 +8990,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000007}, !- Handle - {00000000-0000-0000-0092-000000000005}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000007}, !- Handle + {00000000-0000-0000-0088-000000000005}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15055,18 +9025,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000008}, !- Handle - {00000000-0000-0000-0092-000000000006}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000008}, !- Handle + {00000000-0000-0000-0088-000000000006}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15090,18 +9060,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000009}, !- Handle - {00000000-0000-0000-0092-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000009}, !- Handle + {00000000-0000-0000-0088-000000000018}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15125,18 +9095,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000010}, !- Handle - {00000000-0000-0000-0092-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000010}, !- Handle + {00000000-0000-0000-0088-000000000011}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15160,18 +9130,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000011}, !- Handle - {00000000-0000-0000-0092-000000000019}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000011}, !- Handle + {00000000-0000-0000-0088-000000000019}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15195,18 +9165,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000012}, !- Handle - {00000000-0000-0000-0092-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000012}, !- Handle + {00000000-0000-0000-0088-000000000012}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15230,8 +9200,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000013}, !- Handle - {00000000-0000-0000-0092-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0076-000000000013}, !- Handle + {00000000-0000-0000-0088-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15265,8 +9235,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000014}, !- Handle - {00000000-0000-0000-0092-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0076-000000000014}, !- Handle + {00000000-0000-0000-0088-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15300,18 +9270,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000015}, !- Handle - {00000000-0000-0000-0092-000000000007}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000015}, !- Handle + {00000000-0000-0000-0088-000000000007}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15335,18 +9305,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000016}, !- Handle - {00000000-0000-0000-0092-000000000020}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000016}, !- Handle + {00000000-0000-0000-0088-000000000020}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15370,18 +9340,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000017}, !- Handle - {00000000-0000-0000-0092-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000017}, !- Handle + {00000000-0000-0000-0088-000000000013}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15405,18 +9375,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000018}, !- Handle - {00000000-0000-0000-0092-000000000021}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000018}, !- Handle + {00000000-0000-0000-0088-000000000021}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15440,18 +9410,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000019}, !- Handle - {00000000-0000-0000-0092-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000019}, !- Handle + {00000000-0000-0000-0088-000000000014}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15475,18 +9445,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000020}, !- Handle - {00000000-0000-0000-0092-000000000008}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000020}, !- Handle + {00000000-0000-0000-0088-000000000008}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15510,18 +9480,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000021}, !- Handle - {00000000-0000-0000-0092-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000021}, !- Handle + {00000000-0000-0000-0088-000000000015}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15545,18 +9515,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000022}, !- Handle - {00000000-0000-0000-0092-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000022}, !- Handle + {00000000-0000-0000-0088-000000000009}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15580,8 +9550,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0080-000000000023}, !- Handle - {00000000-0000-0000-0092-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0076-000000000023}, !- Handle + {00000000-0000-0000-0088-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15615,7 +9585,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0077-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -15643,7 +9613,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0077-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -15671,7 +9641,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0077-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -15695,9 +9665,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0078-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0084-000000000002}, !- Space Type Name + {00000000-0000-0000-0080-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15705,16 +9675,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0092-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0078-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15722,16 +9692,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0092-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0078-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15739,16 +9709,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0092-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000004}, !- Handle + {00000000-0000-0000-0078-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15756,16 +9726,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0092-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000005}, !- Handle + {00000000-0000-0000-0078-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15773,16 +9743,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0092-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000006}, !- Handle + {00000000-0000-0000-0078-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15790,16 +9760,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0092-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000007}, !- Handle + {00000000-0000-0000-0078-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15807,16 +9777,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0092-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000008}, !- Handle + {00000000-0000-0000-0078-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15824,16 +9794,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0092-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000009}, !- Handle + {00000000-0000-0000-0078-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0084-000000000001}, !- Space Type Name + {00000000-0000-0000-0080-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15841,16 +9811,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0092-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000010}, !- Handle + {00000000-0000-0000-0078-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0084-000000000001}, !- Space Type Name + {00000000-0000-0000-0080-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15858,16 +9828,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0092-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000011}, !- Handle + {00000000-0000-0000-0078-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15875,16 +9845,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0092-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000012}, !- Handle + {00000000-0000-0000-0078-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15892,16 +9862,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0092-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000013}, !- Handle + {00000000-0000-0000-0078-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15909,16 +9879,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0092-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000014}, !- Handle + {00000000-0000-0000-0078-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15926,16 +9896,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0092-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000015}, !- Handle + {00000000-0000-0000-0078-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15943,16 +9913,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0092-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000016}, !- Handle + {00000000-0000-0000-0078-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15960,16 +9930,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0092-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000017}, !- Handle + {00000000-0000-0000-0078-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15977,16 +9947,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0092-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000018}, !- Handle + {00000000-0000-0000-0078-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -15994,16 +9964,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0092-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000019}, !- Handle + {00000000-0000-0000-0078-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16011,16 +9981,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0092-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000020}, !- Handle + {00000000-0000-0000-0078-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16028,16 +9998,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0092-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000021}, !- Handle + {00000000-0000-0000-0078-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16045,16 +10015,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0092-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000022}, !- Handle + {00000000-0000-0000-0078-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0084-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16062,16 +10032,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0092-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0082-000000000023}, !- Handle + {00000000-0000-0000-0078-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0084-000000000001}, !- Space Type Name + {00000000-0000-0000-0080-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16079,17 +10049,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0092-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0082-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16101,10 +10071,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000002}, !- Handle + {00000000-0000-0000-0079-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0082-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16116,10 +10086,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000003}, !- Handle + {00000000-0000-0000-0079-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0082-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16131,10 +10101,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000004}, !- Handle + {00000000-0000-0000-0079-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0082-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16146,10 +10116,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000005}, !- Handle + {00000000-0000-0000-0079-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0082-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16161,10 +10131,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000006}, !- Handle + {00000000-0000-0000-0079-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0082-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16176,10 +10146,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000007}, !- Handle + {00000000-0000-0000-0079-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0082-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16191,10 +10161,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000008}, !- Handle + {00000000-0000-0000-0079-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0082-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16206,10 +10176,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000009}, !- Handle + {00000000-0000-0000-0079-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0082-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16221,10 +10191,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000010}, !- Handle + {00000000-0000-0000-0079-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0082-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16236,10 +10206,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000011}, !- Handle + {00000000-0000-0000-0079-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0082-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16251,10 +10221,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000012}, !- Handle + {00000000-0000-0000-0079-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0082-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16266,10 +10236,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000013}, !- Handle + {00000000-0000-0000-0079-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0082-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16281,10 +10251,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000014}, !- Handle + {00000000-0000-0000-0079-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0082-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16296,10 +10266,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0083-000000000015}, !- Handle + {00000000-0000-0000-0079-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0082-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0058-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16311,46 +10281,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0080-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0061-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0057-000000000031}, !- Group Rendering Name {00000000-0000-0000-0035-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0084-000000000002}, !- Handle + {00000000-0000-0000-0080-000000000002}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0061-000000000034}, !- Group Rendering Name + {00000000-0000-0000-0057-000000000034}, !- Group Rendering Name {00000000-0000-0000-0035-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0084-000000000003}, !- Handle + {00000000-0000-0000-0080-000000000003}, !- Handle Space Function Office - open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0061-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0057-000000000037}, !- Group Rendering Name {00000000-0000-0000-0035-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office - open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle {00000000-0000-0000-0023-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle {00000000-0000-0000-0023-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16359,7 +10329,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000003}, !- Handle + {00000000-0000-0000-0081-000000000003}, !- Handle {00000000-0000-0000-0023-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16368,7 +10338,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000004}, !- Handle + {00000000-0000-0000-0081-000000000004}, !- Handle {00000000-0000-0000-0023-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -16377,25 +10347,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000005}, !- Handle + {00000000-0000-0000-0081-000000000005}, !- Handle {00000000-0000-0000-0023-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000006}, !- Handle + {00000000-0000-0000-0081-000000000006}, !- Handle {00000000-0000-0000-0023-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000007}, !- Handle + {00000000-0000-0000-0081-000000000007}, !- Handle {00000000-0000-0000-0023-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000008}, !- Handle + {00000000-0000-0000-0081-000000000008}, !- Handle {00000000-0000-0000-0023-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16404,7 +10374,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000009}, !- Handle + {00000000-0000-0000-0081-000000000009}, !- Handle {00000000-0000-0000-0023-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16413,7 +10383,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000010}, !- Handle + {00000000-0000-0000-0081-000000000010}, !- Handle {00000000-0000-0000-0023-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16422,12 +10392,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000011}, !- Handle + {00000000-0000-0000-0081-000000000011}, !- Handle {00000000-0000-0000-0023-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000012}, !- Handle + {00000000-0000-0000-0081-000000000012}, !- Handle {00000000-0000-0000-0023-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -16436,12 +10406,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000013}, !- Handle + {00000000-0000-0000-0081-000000000013}, !- Handle {00000000-0000-0000-0023-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000014}, !- Handle + {00000000-0000-0000-0081-000000000014}, !- Handle {00000000-0000-0000-0023-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -16450,34 +10420,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000015}, !- Handle + {00000000-0000-0000-0081-000000000015}, !- Handle {00000000-0000-0000-0023-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000016}, !- Handle + {00000000-0000-0000-0081-000000000016}, !- Handle {00000000-0000-0000-0023-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000017}, !- Handle + {00000000-0000-0000-0081-000000000017}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000018}, !- Handle + {00000000-0000-0000-0081-000000000018}, !- Handle {00000000-0000-0000-0023-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000019}, !- Handle + {00000000-0000-0000-0081-000000000019}, !- Handle {00000000-0000-0000-0023-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000020}, !- Handle + {00000000-0000-0000-0081-000000000020}, !- Handle {00000000-0000-0000-0023-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16486,7 +10456,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000021}, !- Handle + {00000000-0000-0000-0081-000000000021}, !- Handle {00000000-0000-0000-0023-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16495,7 +10465,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000022}, !- Handle + {00000000-0000-0000-0081-000000000022}, !- Handle {00000000-0000-0000-0023-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -16504,7 +10474,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000023}, !- Handle + {00000000-0000-0000-0081-000000000023}, !- Handle {00000000-0000-0000-0023-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16513,7 +10483,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000024}, !- Handle + {00000000-0000-0000-0081-000000000024}, !- Handle {00000000-0000-0000-0023-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16522,7 +10492,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000025}, !- Handle + {00000000-0000-0000-0081-000000000025}, !- Handle {00000000-0000-0000-0023-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16531,7 +10501,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000026}, !- Handle + {00000000-0000-0000-0081-000000000026}, !- Handle {00000000-0000-0000-0023-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -16540,7 +10510,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0085-000000000027}, !- Handle + {00000000-0000-0000-0081-000000000027}, !- Handle {00000000-0000-0000-0023-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -16549,135 +10519,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000001}, !- Handle - {00000000-0000-0000-0049-000000000021}; !- Material Name + {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0045-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000002}, !- Handle - {00000000-0000-0000-0050-000000000013}; !- Material Name + {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0046-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000003}, !- Handle - {00000000-0000-0000-0049-000000000008}; !- Material Name + {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0045-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000004}, !- Handle - {00000000-0000-0000-0050-000000000007}; !- Material Name + {00000000-0000-0000-0082-000000000004}, !- Handle + {00000000-0000-0000-0046-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000005}, !- Handle - {00000000-0000-0000-0049-000000000006}; !- Material Name + {00000000-0000-0000-0082-000000000005}, !- Handle + {00000000-0000-0000-0045-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000006}, !- Handle - {00000000-0000-0000-0049-000000000014}; !- Material Name + {00000000-0000-0000-0082-000000000006}, !- Handle + {00000000-0000-0000-0045-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000007}, !- Handle - {00000000-0000-0000-0049-000000000002}; !- Material Name + {00000000-0000-0000-0082-000000000007}, !- Handle + {00000000-0000-0000-0045-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000008}, !- Handle - {00000000-0000-0000-0049-000000000024}; !- Material Name + {00000000-0000-0000-0082-000000000008}, !- Handle + {00000000-0000-0000-0045-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000009}, !- Handle - {00000000-0000-0000-0049-000000000003}; !- Material Name + {00000000-0000-0000-0082-000000000009}, !- Handle + {00000000-0000-0000-0045-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000010}, !- Handle - {00000000-0000-0000-0049-000000000019}; !- Material Name + {00000000-0000-0000-0082-000000000010}, !- Handle + {00000000-0000-0000-0045-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000011}, !- Handle - {00000000-0000-0000-0049-000000000012}; !- Material Name + {00000000-0000-0000-0082-000000000011}, !- Handle + {00000000-0000-0000-0045-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000012}, !- Handle - {00000000-0000-0000-0102-000000000001}; !- Material Name + {00000000-0000-0000-0082-000000000012}, !- Handle + {00000000-0000-0000-0098-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000013}, !- Handle - {00000000-0000-0000-0049-000000000018}; !- Material Name + {00000000-0000-0000-0082-000000000013}, !- Handle + {00000000-0000-0000-0045-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000014}, !- Handle - {00000000-0000-0000-0050-000000000008}; !- Material Name + {00000000-0000-0000-0082-000000000014}, !- Handle + {00000000-0000-0000-0046-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000015}, !- Handle - {00000000-0000-0000-0049-000000000007}; !- Material Name + {00000000-0000-0000-0082-000000000015}, !- Handle + {00000000-0000-0000-0045-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000016}, !- Handle - {00000000-0000-0000-0050-000000000003}; !- Material Name + {00000000-0000-0000-0082-000000000016}, !- Handle + {00000000-0000-0000-0046-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000017}, !- Handle - {00000000-0000-0000-0049-000000000005}; !- Material Name + {00000000-0000-0000-0082-000000000017}, !- Handle + {00000000-0000-0000-0045-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000018}, !- Handle - {00000000-0000-0000-0049-000000000013}; !- Material Name + {00000000-0000-0000-0082-000000000018}, !- Handle + {00000000-0000-0000-0045-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000019}, !- Handle - {00000000-0000-0000-0050-000000000009}; !- Material Name + {00000000-0000-0000-0082-000000000019}, !- Handle + {00000000-0000-0000-0046-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000020}, !- Handle - {00000000-0000-0000-0049-000000000001}; !- Material Name + {00000000-0000-0000-0082-000000000020}, !- Handle + {00000000-0000-0000-0045-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000021}, !- Handle - {00000000-0000-0000-0049-000000000023}; !- Material Name + {00000000-0000-0000-0082-000000000021}, !- Handle + {00000000-0000-0000-0045-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000022}, !- Handle - {00000000-0000-0000-0050-000000000010}; !- Material Name + {00000000-0000-0000-0082-000000000022}, !- Handle + {00000000-0000-0000-0046-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000023}, !- Handle - {00000000-0000-0000-0049-000000000009}; !- Material Name + {00000000-0000-0000-0082-000000000023}, !- Handle + {00000000-0000-0000-0045-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000024}, !- Handle - {00000000-0000-0000-0050-000000000004}; !- Material Name + {00000000-0000-0000-0082-000000000024}, !- Handle + {00000000-0000-0000-0046-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000025}, !- Handle - {00000000-0000-0000-0049-000000000010}; !- Material Name + {00000000-0000-0000-0082-000000000025}, !- Handle + {00000000-0000-0000-0045-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000026}, !- Handle - {00000000-0000-0000-0050-000000000005}; !- Material Name + {00000000-0000-0000-0082-000000000026}, !- Handle + {00000000-0000-0000-0046-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000027}, !- Handle - {00000000-0000-0000-0049-000000000011}; !- Material Name + {00000000-0000-0000-0082-000000000027}, !- Handle + {00000000-0000-0000-0045-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000028}, !- Handle - {00000000-0000-0000-0050-000000000006}; !- Material Name + {00000000-0000-0000-0082-000000000028}, !- Handle + {00000000-0000-0000-0046-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000029}, !- Handle - {00000000-0000-0000-0049-000000000017}; !- Material Name + {00000000-0000-0000-0082-000000000029}, !- Handle + {00000000-0000-0000-0045-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000030}, !- Handle - {00000000-0000-0000-0050-000000000011}; !- Material Name + {00000000-0000-0000-0082-000000000030}, !- Handle + {00000000-0000-0000-0046-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0086-000000000031}, !- Handle - {00000000-0000-0000-0050-000000000012}; !- Material Name + {00000000-0000-0000-0082-000000000031}, !- Handle + {00000000-0000-0000-0046-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000098}, !- Surface Name + {00000000-0000-0000-0084-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16689,11 +10659,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000002}, !- Handle + {00000000-0000-0000-0083-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000103}, !- Surface Name + {00000000-0000-0000-0084-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16705,11 +10675,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000003}, !- Handle + {00000000-0000-0000-0083-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000110}, !- Surface Name + {00000000-0000-0000-0084-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16721,11 +10691,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000004}, !- Handle + {00000000-0000-0000-0083-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000119}, !- Surface Name + {00000000-0000-0000-0084-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16737,11 +10707,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000005}, !- Handle + {00000000-0000-0000-0083-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000125}, !- Surface Name + {00000000-0000-0000-0084-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16753,11 +10723,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000006}, !- Handle + {00000000-0000-0000-0083-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000129}, !- Surface Name + {00000000-0000-0000-0084-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16769,11 +10739,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000007}, !- Handle + {00000000-0000-0000-0083-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000135}, !- Surface Name + {00000000-0000-0000-0084-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16785,11 +10755,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000008}, !- Handle + {00000000-0000-0000-0083-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000143}, !- Surface Name + {00000000-0000-0000-0084-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16801,11 +10771,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000009}, !- Handle + {00000000-0000-0000-0083-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000147}, !- Surface Name + {00000000-0000-0000-0084-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16817,11 +10787,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000010}, !- Handle + {00000000-0000-0000-0083-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000151}, !- Surface Name + {00000000-0000-0000-0084-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16833,11 +10803,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000011}, !- Handle + {00000000-0000-0000-0083-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000157}, !- Surface Name + {00000000-0000-0000-0084-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16849,11 +10819,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0087-000000000012}, !- Handle + {00000000-0000-0000-0083-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0088-000000000165}, !- Surface Name + {00000000-0000-0000-0084-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -16865,13 +10835,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0082-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16882,13 +10852,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000002}, !- Handle + {00000000-0000-0000-0084-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0082-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16899,13 +10869,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000003}, !- Handle + {00000000-0000-0000-0084-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0082-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16916,13 +10886,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000004}, !- Handle + {00000000-0000-0000-0084-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0082-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16933,13 +10903,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000005}, !- Handle + {00000000-0000-0000-0084-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16950,11 +10920,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000006}, !- Handle + {00000000-0000-0000-0084-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16967,13 +10937,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000007}, !- Handle + {00000000-0000-0000-0084-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16984,13 +10954,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000008}, !- Handle + {00000000-0000-0000-0084-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17001,13 +10971,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000009}, !- Handle + {00000000-0000-0000-0084-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17018,13 +10988,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000010}, !- Handle + {00000000-0000-0000-0084-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17035,13 +11005,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000011}, !- Handle + {00000000-0000-0000-0084-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17052,13 +11022,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000012}, !- Handle + {00000000-0000-0000-0084-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17069,13 +11039,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000013}, !- Handle + {00000000-0000-0000-0084-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17086,13 +11056,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000014}, !- Handle + {00000000-0000-0000-0084-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17103,13 +11073,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000015}, !- Handle + {00000000-0000-0000-0084-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17120,13 +11090,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000016}, !- Handle + {00000000-0000-0000-0084-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17137,13 +11107,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000017}, !- Handle + {00000000-0000-0000-0084-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17154,13 +11124,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000018}, !- Handle + {00000000-0000-0000-0084-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17171,13 +11141,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000019}, !- Handle + {00000000-0000-0000-0084-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17188,11 +11158,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000020}, !- Handle + {00000000-0000-0000-0084-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17205,13 +11175,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000021}, !- Handle + {00000000-0000-0000-0084-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17222,13 +11192,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000022}, !- Handle + {00000000-0000-0000-0084-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17239,13 +11209,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000023}, !- Handle + {00000000-0000-0000-0084-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17256,13 +11226,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000024}, !- Handle + {00000000-0000-0000-0084-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17273,13 +11243,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000025}, !- Handle + {00000000-0000-0000-0084-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17290,13 +11260,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000026}, !- Handle + {00000000-0000-0000-0084-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17307,13 +11277,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000027}, !- Handle + {00000000-0000-0000-0084-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17324,13 +11294,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000028}, !- Handle + {00000000-0000-0000-0084-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17341,13 +11311,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000029}, !- Handle + {00000000-0000-0000-0084-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17358,11 +11328,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000030}, !- Handle + {00000000-0000-0000-0084-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17375,13 +11345,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000031}, !- Handle + {00000000-0000-0000-0084-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17392,13 +11362,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000032}, !- Handle + {00000000-0000-0000-0084-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17409,13 +11379,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000033}, !- Handle + {00000000-0000-0000-0084-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17426,13 +11396,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000034}, !- Handle + {00000000-0000-0000-0084-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17443,13 +11413,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000035}, !- Handle + {00000000-0000-0000-0084-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17460,13 +11430,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000036}, !- Handle + {00000000-0000-0000-0084-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17477,13 +11447,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000037}, !- Handle + {00000000-0000-0000-0084-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17494,13 +11464,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000038}, !- Handle + {00000000-0000-0000-0084-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17511,13 +11481,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000039}, !- Handle + {00000000-0000-0000-0084-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17528,13 +11498,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000040}, !- Handle + {00000000-0000-0000-0084-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17545,13 +11515,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000041}, !- Handle + {00000000-0000-0000-0084-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17562,13 +11532,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000042}, !- Handle + {00000000-0000-0000-0084-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17579,13 +11549,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000043}, !- Handle + {00000000-0000-0000-0084-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17596,13 +11566,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000044}, !- Handle + {00000000-0000-0000-0084-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17613,13 +11583,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000045}, !- Handle + {00000000-0000-0000-0084-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17630,13 +11600,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000046}, !- Handle + {00000000-0000-0000-0084-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17647,13 +11617,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000047}, !- Handle + {00000000-0000-0000-0084-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17664,13 +11634,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000048}, !- Handle + {00000000-0000-0000-0084-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17681,13 +11651,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000049}, !- Handle + {00000000-0000-0000-0084-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17698,13 +11668,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000050}, !- Handle + {00000000-0000-0000-0084-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17715,13 +11685,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000051}, !- Handle + {00000000-0000-0000-0084-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17732,13 +11702,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000052}, !- Handle + {00000000-0000-0000-0084-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17749,13 +11719,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000053}, !- Handle + {00000000-0000-0000-0084-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17766,13 +11736,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000054}, !- Handle + {00000000-0000-0000-0084-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17783,13 +11753,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000055}, !- Handle + {00000000-0000-0000-0084-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17800,13 +11770,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000056}, !- Handle + {00000000-0000-0000-0084-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17817,13 +11787,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000057}, !- Handle + {00000000-0000-0000-0084-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17834,13 +11804,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000058}, !- Handle + {00000000-0000-0000-0084-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17851,13 +11821,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000059}, !- Handle + {00000000-0000-0000-0084-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17868,11 +11838,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000060}, !- Handle + {00000000-0000-0000-0084-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17885,13 +11855,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000061}, !- Handle + {00000000-0000-0000-0084-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17902,13 +11872,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000062}, !- Handle + {00000000-0000-0000-0084-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17919,13 +11889,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000063}, !- Handle + {00000000-0000-0000-0084-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17936,13 +11906,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000064}, !- Handle + {00000000-0000-0000-0084-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17953,13 +11923,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000065}, !- Handle + {00000000-0000-0000-0084-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17970,13 +11940,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000066}, !- Handle + {00000000-0000-0000-0084-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17987,13 +11957,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000067}, !- Handle + {00000000-0000-0000-0084-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18004,13 +11974,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000068}, !- Handle + {00000000-0000-0000-0084-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18021,13 +11991,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000069}, !- Handle + {00000000-0000-0000-0084-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18038,11 +12008,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000070}, !- Handle + {00000000-0000-0000-0084-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18055,13 +12025,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000071}, !- Handle + {00000000-0000-0000-0084-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18072,13 +12042,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000072}, !- Handle + {00000000-0000-0000-0084-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18089,13 +12059,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000073}, !- Handle + {00000000-0000-0000-0084-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18106,13 +12076,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000074}, !- Handle + {00000000-0000-0000-0084-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18123,13 +12093,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000075}, !- Handle + {00000000-0000-0000-0084-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18140,13 +12110,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000076}, !- Handle + {00000000-0000-0000-0084-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18157,13 +12127,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000077}, !- Handle + {00000000-0000-0000-0084-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18174,13 +12144,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000078}, !- Handle + {00000000-0000-0000-0084-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18191,13 +12161,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000079}, !- Handle + {00000000-0000-0000-0084-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18208,11 +12178,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000080}, !- Handle + {00000000-0000-0000-0084-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18225,11 +12195,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000081}, !- Handle + {00000000-0000-0000-0084-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18242,11 +12212,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000082}, !- Handle + {00000000-0000-0000-0084-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18259,11 +12229,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000083}, !- Handle + {00000000-0000-0000-0084-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18276,11 +12246,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000084}, !- Handle + {00000000-0000-0000-0084-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18293,13 +12263,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000085}, !- Handle + {00000000-0000-0000-0084-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18310,13 +12280,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000086}, !- Handle + {00000000-0000-0000-0084-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18327,11 +12297,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000087}, !- Handle + {00000000-0000-0000-0084-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18344,11 +12314,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000088}, !- Handle + {00000000-0000-0000-0084-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18361,11 +12331,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000089}, !- Handle + {00000000-0000-0000-0084-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18378,11 +12348,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000090}, !- Handle + {00000000-0000-0000-0084-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18395,11 +12365,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000091}, !- Handle + {00000000-0000-0000-0084-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18412,13 +12382,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000092}, !- Handle + {00000000-0000-0000-0084-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18429,13 +12399,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000093}, !- Handle + {00000000-0000-0000-0084-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18446,13 +12416,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000094}, !- Handle + {00000000-0000-0000-0084-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18463,13 +12433,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000095}, !- Handle + {00000000-0000-0000-0084-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18480,13 +12450,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000096}, !- Handle + {00000000-0000-0000-0084-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18497,13 +12467,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000097}, !- Handle + {00000000-0000-0000-0084-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18514,11 +12484,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000098}, !- Handle + {00000000-0000-0000-0084-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18531,13 +12501,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000099}, !- Handle + {00000000-0000-0000-0084-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18548,13 +12518,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000100}, !- Handle + {00000000-0000-0000-0084-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18565,13 +12535,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000101}, !- Handle + {00000000-0000-0000-0084-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18582,13 +12552,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000102}, !- Handle + {00000000-0000-0000-0084-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18599,11 +12569,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000103}, !- Handle + {00000000-0000-0000-0084-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18616,13 +12586,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000104}, !- Handle + {00000000-0000-0000-0084-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18633,13 +12603,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000105}, !- Handle + {00000000-0000-0000-0084-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18650,13 +12620,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000106}, !- Handle + {00000000-0000-0000-0084-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18667,13 +12637,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000107}, !- Handle + {00000000-0000-0000-0084-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18684,13 +12654,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000108}, !- Handle + {00000000-0000-0000-0084-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18701,13 +12671,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000109}, !- Handle + {00000000-0000-0000-0084-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18718,11 +12688,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000110}, !- Handle + {00000000-0000-0000-0084-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18735,13 +12705,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000111}, !- Handle + {00000000-0000-0000-0084-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18752,13 +12722,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000112}, !- Handle + {00000000-0000-0000-0084-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18769,13 +12739,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000113}, !- Handle + {00000000-0000-0000-0084-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18786,13 +12756,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000114}, !- Handle + {00000000-0000-0000-0084-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18803,13 +12773,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000115}, !- Handle + {00000000-0000-0000-0084-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18820,13 +12790,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000116}, !- Handle + {00000000-0000-0000-0084-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18837,13 +12807,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000117}, !- Handle + {00000000-0000-0000-0084-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18854,13 +12824,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000118}, !- Handle + {00000000-0000-0000-0084-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18871,11 +12841,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000119}, !- Handle + {00000000-0000-0000-0084-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18888,13 +12858,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000120}, !- Handle + {00000000-0000-0000-0084-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18905,13 +12875,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000121}, !- Handle + {00000000-0000-0000-0084-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18922,11 +12892,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000122}, !- Handle + {00000000-0000-0000-0084-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18939,13 +12909,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000123}, !- Handle + {00000000-0000-0000-0084-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18956,13 +12926,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000124}, !- Handle + {00000000-0000-0000-0084-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18973,11 +12943,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000125}, !- Handle + {00000000-0000-0000-0084-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18990,13 +12960,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000126}, !- Handle + {00000000-0000-0000-0084-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19007,13 +12977,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000127}, !- Handle + {00000000-0000-0000-0084-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19024,11 +12994,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000128}, !- Handle + {00000000-0000-0000-0084-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19041,11 +13011,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000129}, !- Handle + {00000000-0000-0000-0084-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19058,13 +13028,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000130}, !- Handle + {00000000-0000-0000-0084-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19075,13 +13045,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000131}, !- Handle + {00000000-0000-0000-0084-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19092,13 +13062,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000132}, !- Handle + {00000000-0000-0000-0084-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19109,13 +13079,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000133}, !- Handle + {00000000-0000-0000-0084-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19126,11 +13096,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000134}, !- Handle + {00000000-0000-0000-0084-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19143,11 +13113,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000135}, !- Handle + {00000000-0000-0000-0084-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19160,13 +13130,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000136}, !- Handle + {00000000-0000-0000-0084-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19177,13 +13147,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000137}, !- Handle + {00000000-0000-0000-0084-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19194,13 +13164,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000138}, !- Handle + {00000000-0000-0000-0084-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19211,13 +13181,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000139}, !- Handle + {00000000-0000-0000-0084-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19228,11 +13198,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000140}, !- Handle + {00000000-0000-0000-0084-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19245,13 +13215,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000141}, !- Handle + {00000000-0000-0000-0084-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19262,13 +13232,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000142}, !- Handle + {00000000-0000-0000-0084-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19279,11 +13249,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000143}, !- Handle + {00000000-0000-0000-0084-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19296,13 +13266,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000144}, !- Handle + {00000000-0000-0000-0084-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19313,13 +13283,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000145}, !- Handle + {00000000-0000-0000-0084-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19330,11 +13300,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000146}, !- Handle + {00000000-0000-0000-0084-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19347,11 +13317,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000147}, !- Handle + {00000000-0000-0000-0084-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19364,13 +13334,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000148}, !- Handle + {00000000-0000-0000-0084-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19381,13 +13351,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000149}, !- Handle + {00000000-0000-0000-0084-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19398,11 +13368,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000150}, !- Handle + {00000000-0000-0000-0084-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19415,11 +13385,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000151}, !- Handle + {00000000-0000-0000-0084-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19432,13 +13402,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000152}, !- Handle + {00000000-0000-0000-0084-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19449,13 +13419,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000153}, !- Handle + {00000000-0000-0000-0084-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19466,13 +13436,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000154}, !- Handle + {00000000-0000-0000-0084-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19483,13 +13453,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000155}, !- Handle + {00000000-0000-0000-0084-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19500,11 +13470,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000156}, !- Handle + {00000000-0000-0000-0084-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19517,11 +13487,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000157}, !- Handle + {00000000-0000-0000-0084-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19534,13 +13504,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000158}, !- Handle + {00000000-0000-0000-0084-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19551,13 +13521,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000159}, !- Handle + {00000000-0000-0000-0084-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19568,13 +13538,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000160}, !- Handle + {00000000-0000-0000-0084-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19585,13 +13555,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000161}, !- Handle + {00000000-0000-0000-0084-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19602,11 +13572,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000162}, !- Handle + {00000000-0000-0000-0084-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0082-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19619,13 +13589,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000163}, !- Handle + {00000000-0000-0000-0084-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19636,13 +13606,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000164}, !- Handle + {00000000-0000-0000-0084-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0088-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19653,11 +13623,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000165}, !- Handle + {00000000-0000-0000-0084-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19670,11 +13640,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000166}, !- Handle + {00000000-0000-0000-0084-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19687,11 +13657,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000167}, !- Handle + {00000000-0000-0000-0084-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19704,11 +13674,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000168}, !- Handle + {00000000-0000-0000-0084-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19721,11 +13691,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0088-000000000169}, !- Handle + {00000000-0000-0000-0084-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0082-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19738,27 +13708,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0085-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0091-000000000001}, !- Handle - {00000000-0000-0000-0088-000000000044}, !- Surface Name + {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0091-000000000002}, !- Handle - {00000000-0000-0000-0088-000000000001}, !- Surface Name + {00000000-0000-0000-0087-000000000002}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -19767,21 +13737,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000007}, !- Thermostat Name + {00000000-0000-0000-0057-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000002}, !- Handle + {00000000-0000-0000-0088-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -19790,21 +13760,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000009}, !- Thermostat Name + {00000000-0000-0000-0057-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000003}, !- Handle + {00000000-0000-0000-0088-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -19813,21 +13783,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000008}, !- Thermostat Name + {00000000-0000-0000-0057-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000004}, !- Handle + {00000000-0000-0000-0088-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -19836,21 +13806,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000058}, !- Thermostat Name + {00000000-0000-0000-0057-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000005}, !- Handle + {00000000-0000-0000-0088-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -19859,21 +13829,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000052}, !- Thermostat Name + {00000000-0000-0000-0057-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000006}, !- Handle + {00000000-0000-0000-0088-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -19882,21 +13852,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000053}, !- Thermostat Name + {00000000-0000-0000-0057-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000007}, !- Handle + {00000000-0000-0000-0088-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -19905,21 +13875,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000060}, !- Thermostat Name + {00000000-0000-0000-0057-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000008}, !- Handle + {00000000-0000-0000-0088-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -19928,21 +13898,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000065}, !- Thermostat Name + {00000000-0000-0000-0057-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000009}, !- Handle + {00000000-0000-0000-0088-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -19951,21 +13921,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000067}, !- Thermostat Name + {00000000-0000-0000-0057-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000010}, !- Handle + {00000000-0000-0000-0088-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -19974,21 +13944,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000047}, !- Thermostat Name + {00000000-0000-0000-0057-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000011}, !- Handle + {00000000-0000-0000-0088-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -19997,21 +13967,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000055}, !- Thermostat Name + {00000000-0000-0000-0057-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000012}, !- Handle + {00000000-0000-0000-0088-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20020,21 +13990,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000057}, !- Thermostat Name + {00000000-0000-0000-0057-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000013}, !- Handle + {00000000-0000-0000-0088-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20043,21 +14013,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000062}, !- Thermostat Name + {00000000-0000-0000-0057-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000014}, !- Handle + {00000000-0000-0000-0088-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20066,21 +14036,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000064}, !- Thermostat Name + {00000000-0000-0000-0057-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000015}, !- Handle + {00000000-0000-0000-0088-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20089,21 +14059,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000066}, !- Thermostat Name + {00000000-0000-0000-0057-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000016}, !- Handle + {00000000-0000-0000-0088-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20112,21 +14082,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000050}, !- Thermostat Name + {00000000-0000-0000-0057-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000017}, !- Handle + {00000000-0000-0000-0088-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20135,21 +14105,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000051}, !- Thermostat Name + {00000000-0000-0000-0057-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000018}, !- Handle + {00000000-0000-0000-0088-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20158,21 +14128,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000054}, !- Thermostat Name + {00000000-0000-0000-0057-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000019}, !- Handle + {00000000-0000-0000-0088-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20181,21 +14151,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000056}, !- Thermostat Name + {00000000-0000-0000-0057-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000020}, !- Handle + {00000000-0000-0000-0088-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20204,21 +14174,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000061}, !- Thermostat Name + {00000000-0000-0000-0057-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000021}, !- Handle + {00000000-0000-0000-0088-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20227,21 +14197,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000063}, !- Thermostat Name + {00000000-0000-0000-0057-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000022}, !- Handle + {00000000-0000-0000-0088-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20250,21 +14220,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000049}, !- Thermostat Name + {00000000-0000-0000-0057-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0092-000000000023}, !- Handle + {00000000-0000-0000-0088-000000000023}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20273,444 +14243,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0058-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0058-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0054-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0054-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0058-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0054-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0061-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0093-000000000013}, !- Thermostat Name + {00000000-0000-0000-0057-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0089-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000002}, !- Handle + {00000000-0000-0000-0089-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000003}, !- Handle + {00000000-0000-0000-0089-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000004}, !- Handle + {00000000-0000-0000-0089-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000005}, !- Handle + {00000000-0000-0000-0089-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000006}, !- Handle + {00000000-0000-0000-0089-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000007}, !- Handle + {00000000-0000-0000-0089-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000008}, !- Handle + {00000000-0000-0000-0089-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000009}, !- Handle + {00000000-0000-0000-0089-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000010}, !- Handle + {00000000-0000-0000-0089-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000011}, !- Handle + {00000000-0000-0000-0089-000000000011}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000012}, !- Handle + {00000000-0000-0000-0089-000000000012}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000013}, !- Handle + {00000000-0000-0000-0089-000000000013}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000014}, !- Handle + {00000000-0000-0000-0089-000000000014}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000015}, !- Handle + {00000000-0000-0000-0089-000000000015}, !- Handle Space Function Office - open plan Thermostat 1, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000016}, !- Handle + {00000000-0000-0000-0089-000000000016}, !- Handle Space Function Office - open plan Thermostat 10, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000017}, !- Handle + {00000000-0000-0000-0089-000000000017}, !- Handle Space Function Office - open plan Thermostat 11, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000018}, !- Handle + {00000000-0000-0000-0089-000000000018}, !- Handle Space Function Office - open plan Thermostat 12, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000019}, !- Handle + {00000000-0000-0000-0089-000000000019}, !- Handle Space Function Office - open plan Thermostat 13, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000020}, !- Handle + {00000000-0000-0000-0089-000000000020}, !- Handle Space Function Office - open plan Thermostat 14, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000021}, !- Handle + {00000000-0000-0000-0089-000000000021}, !- Handle Space Function Office - open plan Thermostat 15, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000022}, !- Handle + {00000000-0000-0000-0089-000000000022}, !- Handle Space Function Office - open plan Thermostat 16, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000023}, !- Handle + {00000000-0000-0000-0089-000000000023}, !- Handle Space Function Office - open plan Thermostat 17, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000024}, !- Handle + {00000000-0000-0000-0089-000000000024}, !- Handle Space Function Office - open plan Thermostat 18, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000025}, !- Handle + {00000000-0000-0000-0089-000000000025}, !- Handle Space Function Office - open plan Thermostat 19, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000026}, !- Handle + {00000000-0000-0000-0089-000000000026}, !- Handle Space Function Office - open plan Thermostat 2, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000027}, !- Handle + {00000000-0000-0000-0089-000000000027}, !- Handle Space Function Office - open plan Thermostat 20, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000028}, !- Handle + {00000000-0000-0000-0089-000000000028}, !- Handle Space Function Office - open plan Thermostat 21, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000029}, !- Handle + {00000000-0000-0000-0089-000000000029}, !- Handle Space Function Office - open plan Thermostat 22, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000030}, !- Handle + {00000000-0000-0000-0089-000000000030}, !- Handle Space Function Office - open plan Thermostat 23, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000031}, !- Handle + {00000000-0000-0000-0089-000000000031}, !- Handle Space Function Office - open plan Thermostat 24, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000032}, !- Handle + {00000000-0000-0000-0089-000000000032}, !- Handle Space Function Office - open plan Thermostat 25, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000033}, !- Handle + {00000000-0000-0000-0089-000000000033}, !- Handle Space Function Office - open plan Thermostat 26, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000034}, !- Handle + {00000000-0000-0000-0089-000000000034}, !- Handle Space Function Office - open plan Thermostat 27, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000035}, !- Handle + {00000000-0000-0000-0089-000000000035}, !- Handle Space Function Office - open plan Thermostat 28, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000036}, !- Handle + {00000000-0000-0000-0089-000000000036}, !- Handle Space Function Office - open plan Thermostat 29, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000037}, !- Handle + {00000000-0000-0000-0089-000000000037}, !- Handle Space Function Office - open plan Thermostat 3, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000038}, !- Handle + {00000000-0000-0000-0089-000000000038}, !- Handle Space Function Office - open plan Thermostat 30, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000039}, !- Handle + {00000000-0000-0000-0089-000000000039}, !- Handle Space Function Office - open plan Thermostat 31, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000040}, !- Handle + {00000000-0000-0000-0089-000000000040}, !- Handle Space Function Office - open plan Thermostat 32, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000041}, !- Handle + {00000000-0000-0000-0089-000000000041}, !- Handle Space Function Office - open plan Thermostat 33, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000042}, !- Handle + {00000000-0000-0000-0089-000000000042}, !- Handle Space Function Office - open plan Thermostat 34, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000043}, !- Handle + {00000000-0000-0000-0089-000000000043}, !- Handle Space Function Office - open plan Thermostat 35, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000044}, !- Handle + {00000000-0000-0000-0089-000000000044}, !- Handle Space Function Office - open plan Thermostat 36, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000045}, !- Handle + {00000000-0000-0000-0089-000000000045}, !- Handle Space Function Office - open plan Thermostat 37, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000046}, !- Handle + {00000000-0000-0000-0089-000000000046}, !- Handle Space Function Office - open plan Thermostat 38, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000047}, !- Handle + {00000000-0000-0000-0089-000000000047}, !- Handle Space Function Office - open plan Thermostat 39, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000048}, !- Handle + {00000000-0000-0000-0089-000000000048}, !- Handle Space Function Office - open plan Thermostat 4, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000049}, !- Handle + {00000000-0000-0000-0089-000000000049}, !- Handle Space Function Office - open plan Thermostat 40, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000050}, !- Handle + {00000000-0000-0000-0089-000000000050}, !- Handle Space Function Office - open plan Thermostat 41, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000051}, !- Handle + {00000000-0000-0000-0089-000000000051}, !- Handle Space Function Office - open plan Thermostat 42, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000052}, !- Handle + {00000000-0000-0000-0089-000000000052}, !- Handle Space Function Office - open plan Thermostat 43, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000053}, !- Handle + {00000000-0000-0000-0089-000000000053}, !- Handle Space Function Office - open plan Thermostat 44, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000054}, !- Handle + {00000000-0000-0000-0089-000000000054}, !- Handle Space Function Office - open plan Thermostat 45, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000055}, !- Handle + {00000000-0000-0000-0089-000000000055}, !- Handle Space Function Office - open plan Thermostat 46, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000056}, !- Handle + {00000000-0000-0000-0089-000000000056}, !- Handle Space Function Office - open plan Thermostat 47, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000057}, !- Handle + {00000000-0000-0000-0089-000000000057}, !- Handle Space Function Office - open plan Thermostat 48, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000058}, !- Handle + {00000000-0000-0000-0089-000000000058}, !- Handle Space Function Office - open plan Thermostat 49, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000059}, !- Handle + {00000000-0000-0000-0089-000000000059}, !- Handle Space Function Office - open plan Thermostat 5, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000060}, !- Handle + {00000000-0000-0000-0089-000000000060}, !- Handle Space Function Office - open plan Thermostat 50, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000061}, !- Handle + {00000000-0000-0000-0089-000000000061}, !- Handle Space Function Office - open plan Thermostat 51, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000062}, !- Handle + {00000000-0000-0000-0089-000000000062}, !- Handle Space Function Office - open plan Thermostat 52, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000063}, !- Handle + {00000000-0000-0000-0089-000000000063}, !- Handle Space Function Office - open plan Thermostat 53, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000064}, !- Handle + {00000000-0000-0000-0089-000000000064}, !- Handle Space Function Office - open plan Thermostat 54, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000065}, !- Handle + {00000000-0000-0000-0089-000000000065}, !- Handle Space Function Office - open plan Thermostat 55, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000066}, !- Handle + {00000000-0000-0000-0089-000000000066}, !- Handle Space Function Office - open plan Thermostat 56, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000067}, !- Handle + {00000000-0000-0000-0089-000000000067}, !- Handle Space Function Office - open plan Thermostat 57, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000068}, !- Handle + {00000000-0000-0000-0089-000000000068}, !- Handle Space Function Office - open plan Thermostat 6, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000069}, !- Handle + {00000000-0000-0000-0089-000000000069}, !- Handle Space Function Office - open plan Thermostat 7, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000070}, !- Handle + {00000000-0000-0000-0089-000000000070}, !- Handle Space Function Office - open plan Thermostat 8, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000071}, !- Handle + {00000000-0000-0000-0089-000000000071}, !- Handle Space Function Office - open plan Thermostat 9, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0093-000000000072}, !- Handle + {00000000-0000-0000-0089-000000000072}, !- Handle Space Function Office - open plan Thermostat, !- Name - {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0091-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle 1103gal NaturalGas Water Heater - 744kBtu/hr 0.805 Therm Eff, !- Name 4.17378596588637, !- Tank Volume {m3} - {00000000-0000-0000-0065-000000000019}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0061-000000000019}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -20728,7 +14698,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0065-000000000024}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0061-000000000021}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 27.6288593246688, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -20738,8 +14708,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0020-000000000529}, !- Use Side Inlet Node Name - {00000000-0000-0000-0020-000000000530}, !- Use Side Outlet Node Name + {00000000-0000-0000-0020-000000000199}, !- Use Side Inlet Node Name + {00000000-0000-0000-0020-000000000200}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -20752,18 +14722,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0097-000000000001}, !- Handle - {00000000-0000-0000-0096-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle Core_bottom WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0020-000000000546}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000547}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000216}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000217}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20771,13 +14741,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Handle Core_mid WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0020-000000000550}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000551}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000220}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000221}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20785,13 +14755,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000003}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Handle Core_top WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0020-000000000554}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000555}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000224}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000225}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20799,13 +14769,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000004}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0020-000000000558}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000559}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000228}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000229}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20813,13 +14783,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000005}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000562}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000563}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000232}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000233}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20827,13 +14797,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000006}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000566}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000567}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000236}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000237}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20841,13 +14811,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000007}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000570}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000571}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000240}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000241}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20855,13 +14825,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000008}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000574}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000575}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000244}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000245}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20869,13 +14839,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000009}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000578}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000579}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000248}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000249}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20883,13 +14853,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000010}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000582}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000583}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000252}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000253}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20897,13 +14867,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000011}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000586}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000587}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000256}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000257}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20911,13 +14881,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000590}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000591}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000260}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000261}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20925,13 +14895,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000013}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000594}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000595}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000264}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000265}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20939,13 +14909,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000014}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000598}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000599}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000268}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000269}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20953,13 +14923,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000015}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000602}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000603}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000272}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000273}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20967,13 +14937,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000016}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000606}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000607}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000276}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000277}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20981,13 +14951,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000017}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000610}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000611}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000280}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000281}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -20995,13 +14965,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000018}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000614}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000615}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000284}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000285}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21009,13 +14979,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0098-000000000019}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000618}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000619}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000288}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000289}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21023,314 +14993,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0099-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0095-000000000001}, !- Handle Core_bottom Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0100-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000002}, !- Handle + {00000000-0000-0000-0095-000000000002}, !- Handle Core_mid Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0100-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000003}, !- Handle + {00000000-0000-0000-0095-000000000003}, !- Handle Core_top Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0100-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000004}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000004}, !- Handle + {00000000-0000-0000-0095-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0100-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000005}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000005}, !- Handle + {00000000-0000-0000-0095-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0100-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000006}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000006}, !- Handle + {00000000-0000-0000-0095-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0100-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000007}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000007}, !- Handle + {00000000-0000-0000-0095-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0100-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000008}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000008}, !- Handle + {00000000-0000-0000-0095-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0100-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000011}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000009}, !- Handle + {00000000-0000-0000-0095-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0100-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000012}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000010}, !- Handle + {00000000-0000-0000-0095-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0100-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000013}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000011}, !- Handle + {00000000-0000-0000-0095-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0100-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000014}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000012}, !- Handle + {00000000-0000-0000-0095-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0100-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000015}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000013}, !- Handle + {00000000-0000-0000-0095-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0100-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000016}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000014}, !- Handle + {00000000-0000-0000-0095-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0100-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000017}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000015}, !- Handle + {00000000-0000-0000-0095-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0100-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000018}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000016}, !- Handle + {00000000-0000-0000-0095-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0100-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000019}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000017}, !- Handle + {00000000-0000-0000-0095-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0100-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000020}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000018}, !- Handle + {00000000-0000-0000-0095-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0100-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000021}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0099-000000000019}, !- Handle + {00000000-0000-0000-0095-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0100-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0082-000000000022}, !- Space Name - {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle Core_bottom 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000002}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Handle Core_mid 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000003}, !- Handle + {00000000-0000-0000-0096-000000000003}, !- Handle Core_top 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000004}, !- Handle + {00000000-0000-0000-0096-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.89703570440437e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000005}, !- Handle + {00000000-0000-0000-0096-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755489e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000006}, !- Handle + {00000000-0000-0000-0096-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755488e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000007}, !- Handle + {00000000-0000-0000-0096-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755488e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000008}, !- Handle + {00000000-0000-0000-0096-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000009}, !- Handle + {00000000-0000-0000-0096-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000010}, !- Handle + {00000000-0000-0000-0096-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000011}, !- Handle + {00000000-0000-0000-0096-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000012}, !- Handle + {00000000-0000-0000-0096-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000013}, !- Handle + {00000000-0000-0000-0096-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000014}, !- Handle + {00000000-0000-0000-0096-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000015}, !- Handle + {00000000-0000-0000-0096-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000016}, !- Handle + {00000000-0000-0000-0096-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000017}, !- Handle + {00000000-0000-0000-0096-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000018}, !- Handle + {00000000-0000-0000-0096-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0100-000000000019}, !- Handle + {00000000-0000-0000-0096-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0101-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -21346,168 +15316,60 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0102-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0102-000000000002}, !- Handle + {00000000-0000-0000-0098-000000000002}, !- Handle SimpleGlazing:U=0.220 SHGC=0.600, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0103-000000000001}, !- Handle + {00000000-0000-0000-0099-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000001}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Handle Zone HVAC Baseboard Convective Water 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0019-000000000001}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 10, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000002}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000003}, !- Handle - Zone HVAC Baseboard Convective Water 11, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000003}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000004}, !- Handle - Zone HVAC Baseboard Convective Water 12, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000004}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000005}, !- Handle - Zone HVAC Baseboard Convective Water 13, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000005}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000006}, !- Handle - Zone HVAC Baseboard Convective Water 14, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000006}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000007}, !- Handle - Zone HVAC Baseboard Convective Water 15, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000007}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000008}, !- Handle - Zone HVAC Baseboard Convective Water 16, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000008}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000009}, !- Handle - Zone HVAC Baseboard Convective Water 17, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000009}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000010}, !- Handle - Zone HVAC Baseboard Convective Water 18, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000010}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000011}, !- Handle - Zone HVAC Baseboard Convective Water 19, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000011}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000012}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Handle Zone HVAC Baseboard Convective Water 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000012}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000013}, !- Handle - Zone HVAC Baseboard Convective Water 20, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000013}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000014}, !- Handle - Zone HVAC Baseboard Convective Water 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000014}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000015}, !- Handle - Zone HVAC Baseboard Convective Water 4, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000015}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000016}, !- Handle - Zone HVAC Baseboard Convective Water 5, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000016}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000017}, !- Handle - Zone HVAC Baseboard Convective Water 6, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000017}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000018}, !- Handle - Zone HVAC Baseboard Convective Water 7, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000018}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000019}, !- Handle - Zone HVAC Baseboard Convective Water 8, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000019}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000020}, !- Handle - Zone HVAC Baseboard Convective Water 9, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000020}; !- Heating Coil Name + {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000002}; !- Heating Coil Name OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000001}, !- Handle + {00000000-0000-0000-0101-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000001}, !- Thermal Zone + {00000000-0000-0000-0088-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000002}, !- Handle + {00000000-0000-0000-0101-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000002}, !- Thermal Zone + {00000000-0000-0000-0088-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000003}, !- Handle + {00000000-0000-0000-0101-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000003}, !- Thermal Zone + {00000000-0000-0000-0088-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000004}, !- Handle + {00000000-0000-0000-0101-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000004}, !- Thermal Zone + {00000000-0000-0000-0088-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000012}, !- Zone Equipment 1 + {00000000-0000-0000-0100-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -21519,299 +15381,119 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000005}, !- Handle + {00000000-0000-0000-0101-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000005}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000005}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000006}, !- Handle + {00000000-0000-0000-0101-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000006}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000017}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000006}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000007}, !- Handle + {00000000-0000-0000-0101-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000007}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000007}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000008}, !- Handle + {00000000-0000-0000-0101-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000008}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000018}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000008}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000009}, !- Handle + {00000000-0000-0000-0101-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000016}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000009}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000010}, !- Handle + {00000000-0000-0000-0101-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000019}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000010}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000011}, !- Handle + {00000000-0000-0000-0101-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000011}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000012}, !- Handle + {00000000-0000-0000-0101-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000012}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000013}, !- Handle + {00000000-0000-0000-0101-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000013}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000014}, !- Handle + {00000000-0000-0000-0101-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000020}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000014}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000015}, !- Handle + {00000000-0000-0000-0101-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000015}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000016}, !- Handle + {00000000-0000-0000-0101-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000016}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000017}, !- Handle + {00000000-0000-0000-0101-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000009}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000017}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000018}, !- Handle + {00000000-0000-0000-0101-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000010}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000018}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000019}, !- Handle + {00000000-0000-0000-0101-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000019}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000008}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000019}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000020}, !- Handle + {00000000-0000-0000-0101-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000020}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000011}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000020}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000021}, !- Handle + {00000000-0000-0000-0101-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000021}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000021}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000022}, !- Handle + {00000000-0000-0000-0101-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000022}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0088-000000000022}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0105-000000000023}, !- Handle + {00000000-0000-0000-0101-000000000023}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0092-000000000023}, !- Thermal Zone + {00000000-0000-0000-0088-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0100-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 7137b7e46d..1c65c3fec4 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000024}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -6249,61 +6249,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d729928d-2a22-4169-8676-92e01e856e86}<23.9 && {d729928d-2a22-4169-8676-92e01e856e86}>1.7, !- Program Line 1 - SET {804f7651-899c-4047-aa55-f207f8b12898} = 29.4, !- Program Line 2 - SET {f397a241-76cc-4c72-9a22-78d061d1df27} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d729928d-2a22-4169-8676-92e01e856e86}<23.9 && {d729928d-2a22-4169-8676-92e01e856e86}>1.7, !- Program Line 4 - SET {804f7651-899c-4047-aa55-f207f8b12898} = 29.4, !- Program Line 5 - SET {f397a241-76cc-4c72-9a22-78d061d1df27} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d729928d-2a22-4169-8676-92e01e856e86}<23.9 && {d729928d-2a22-4169-8676-92e01e856e86}>1.7, !- Program Line 7 - SET {804f7651-899c-4047-aa55-f207f8b12898} = 29.4, !- Program Line 8 - SET {f397a241-76cc-4c72-9a22-78d061d1df27} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d729928d-2a22-4169-8676-92e01e856e86}<23.9 && {d729928d-2a22-4169-8676-92e01e856e86}>1.7, !- Program Line 10 - SET {804f7651-899c-4047-aa55-f207f8b12898} = 29.4, !- Program Line 11 - SET {f397a241-76cc-4c72-9a22-78d061d1df27} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {081f8ded-40d8-4b16-b007-89423a05efbe}<23.9 && {081f8ded-40d8-4b16-b007-89423a05efbe}>1.7, !- Program Line 1 + SET {2b065834-61e3-4f3d-9a9c-56f27efbd121} = 29.4, !- Program Line 2 + SET {1f9a86bc-b11a-4a5f-91ba-aa1a1445199e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {081f8ded-40d8-4b16-b007-89423a05efbe}<23.9 && {081f8ded-40d8-4b16-b007-89423a05efbe}>1.7, !- Program Line 4 + SET {2b065834-61e3-4f3d-9a9c-56f27efbd121} = 29.4, !- Program Line 5 + SET {1f9a86bc-b11a-4a5f-91ba-aa1a1445199e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {081f8ded-40d8-4b16-b007-89423a05efbe}<23.9 && {081f8ded-40d8-4b16-b007-89423a05efbe}>1.7, !- Program Line 7 + SET {2b065834-61e3-4f3d-9a9c-56f27efbd121} = 29.4, !- Program Line 8 + SET {1f9a86bc-b11a-4a5f-91ba-aa1a1445199e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {081f8ded-40d8-4b16-b007-89423a05efbe}<23.9 && {081f8ded-40d8-4b16-b007-89423a05efbe}>1.7, !- Program Line 10 + SET {2b065834-61e3-4f3d-9a9c-56f27efbd121} = 29.4, !- Program Line 11 + SET {1f9a86bc-b11a-4a5f-91ba-aa1a1445199e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {804f7651-899c-4047-aa55-f207f8b12898} = NULL, !- Program Line 14 - SET {f397a241-76cc-4c72-9a22-78d061d1df27} = NULL, !- Program Line 15 + SET {2b065834-61e3-4f3d-9a9c-56f27efbd121} = NULL, !- Program Line 14 + SET {1f9a86bc-b11a-4a5f-91ba-aa1a1445199e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6f034765-0681-43b5-9024-ea5f86756506}<23.9 && {6f034765-0681-43b5-9024-ea5f86756506}>1.7, !- Program Line 1 - SET {27abad07-113e-4ddb-bdcd-9d4eb2bb8ff2} = 29.4, !- Program Line 2 - SET {ab4f9efe-682a-4486-b511-636719cb8581} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6f034765-0681-43b5-9024-ea5f86756506}<23.9 && {6f034765-0681-43b5-9024-ea5f86756506}>1.7, !- Program Line 4 - SET {27abad07-113e-4ddb-bdcd-9d4eb2bb8ff2} = 29.4, !- Program Line 5 - SET {ab4f9efe-682a-4486-b511-636719cb8581} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6f034765-0681-43b5-9024-ea5f86756506}<23.9 && {6f034765-0681-43b5-9024-ea5f86756506}>1.7, !- Program Line 7 - SET {27abad07-113e-4ddb-bdcd-9d4eb2bb8ff2} = 29.4, !- Program Line 8 - SET {ab4f9efe-682a-4486-b511-636719cb8581} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6f034765-0681-43b5-9024-ea5f86756506}<23.9 && {6f034765-0681-43b5-9024-ea5f86756506}>1.7, !- Program Line 10 - SET {27abad07-113e-4ddb-bdcd-9d4eb2bb8ff2} = 29.4, !- Program Line 11 - SET {ab4f9efe-682a-4486-b511-636719cb8581} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {51ed126c-cac9-4b44-b013-a8c8dd15e40d}<23.9 && {51ed126c-cac9-4b44-b013-a8c8dd15e40d}>1.7, !- Program Line 1 + SET {91be5adc-f546-4724-8b0a-b39d6a5cb80a} = 29.4, !- Program Line 2 + SET {43618543-4ee4-48d8-993c-d09cb2f41041} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {51ed126c-cac9-4b44-b013-a8c8dd15e40d}<23.9 && {51ed126c-cac9-4b44-b013-a8c8dd15e40d}>1.7, !- Program Line 4 + SET {91be5adc-f546-4724-8b0a-b39d6a5cb80a} = 29.4, !- Program Line 5 + SET {43618543-4ee4-48d8-993c-d09cb2f41041} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {51ed126c-cac9-4b44-b013-a8c8dd15e40d}<23.9 && {51ed126c-cac9-4b44-b013-a8c8dd15e40d}>1.7, !- Program Line 7 + SET {91be5adc-f546-4724-8b0a-b39d6a5cb80a} = 29.4, !- Program Line 8 + SET {43618543-4ee4-48d8-993c-d09cb2f41041} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {51ed126c-cac9-4b44-b013-a8c8dd15e40d}<23.9 && {51ed126c-cac9-4b44-b013-a8c8dd15e40d}>1.7, !- Program Line 10 + SET {91be5adc-f546-4724-8b0a-b39d6a5cb80a} = 29.4, !- Program Line 11 + SET {43618543-4ee4-48d8-993c-d09cb2f41041} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {27abad07-113e-4ddb-bdcd-9d4eb2bb8ff2} = NULL, !- Program Line 14 - SET {ab4f9efe-682a-4486-b511-636719cb8581} = NULL, !- Program Line 15 + SET {91be5adc-f546-4724-8b0a-b39d6a5cb80a} = NULL, !- Program Line 14 + SET {43618543-4ee4-48d8-993c-d09cb2f41041} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d81d40d7-8616-4fd7-9faf-17c05a3b5fab}<23.9 && {d81d40d7-8616-4fd7-9faf-17c05a3b5fab}>1.7, !- Program Line 1 - SET {5658956b-944f-48e2-9897-d50e0ea8891f} = 29.4, !- Program Line 2 - SET {c75adb54-0819-44ea-b269-883e662c563e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d81d40d7-8616-4fd7-9faf-17c05a3b5fab}<23.9 && {d81d40d7-8616-4fd7-9faf-17c05a3b5fab}>1.7, !- Program Line 4 - SET {5658956b-944f-48e2-9897-d50e0ea8891f} = 29.4, !- Program Line 5 - SET {c75adb54-0819-44ea-b269-883e662c563e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d81d40d7-8616-4fd7-9faf-17c05a3b5fab}<23.9 && {d81d40d7-8616-4fd7-9faf-17c05a3b5fab}>1.7, !- Program Line 7 - SET {5658956b-944f-48e2-9897-d50e0ea8891f} = 29.4, !- Program Line 8 - SET {c75adb54-0819-44ea-b269-883e662c563e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d81d40d7-8616-4fd7-9faf-17c05a3b5fab}<23.9 && {d81d40d7-8616-4fd7-9faf-17c05a3b5fab}>1.7, !- Program Line 10 - SET {5658956b-944f-48e2-9897-d50e0ea8891f} = 29.4, !- Program Line 11 - SET {c75adb54-0819-44ea-b269-883e662c563e} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b40f43c8-5f3f-4840-9347-4cb355726f03}<23.9 && {b40f43c8-5f3f-4840-9347-4cb355726f03}>1.7, !- Program Line 1 + SET {4165e360-a006-4788-8570-6af13f52e8b0} = 29.4, !- Program Line 2 + SET {eca3ca57-7e47-4600-bbe7-908c9f2a3e2e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b40f43c8-5f3f-4840-9347-4cb355726f03}<23.9 && {b40f43c8-5f3f-4840-9347-4cb355726f03}>1.7, !- Program Line 4 + SET {4165e360-a006-4788-8570-6af13f52e8b0} = 29.4, !- Program Line 5 + SET {eca3ca57-7e47-4600-bbe7-908c9f2a3e2e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b40f43c8-5f3f-4840-9347-4cb355726f03}<23.9 && {b40f43c8-5f3f-4840-9347-4cb355726f03}>1.7, !- Program Line 7 + SET {4165e360-a006-4788-8570-6af13f52e8b0} = 29.4, !- Program Line 8 + SET {eca3ca57-7e47-4600-bbe7-908c9f2a3e2e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b40f43c8-5f3f-4840-9347-4cb355726f03}<23.9 && {b40f43c8-5f3f-4840-9347-4cb355726f03}>1.7, !- Program Line 10 + SET {4165e360-a006-4788-8570-6af13f52e8b0} = 29.4, !- Program Line 11 + SET {eca3ca57-7e47-4600-bbe7-908c9f2a3e2e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5658956b-944f-48e2-9897-d50e0ea8891f} = NULL, !- Program Line 14 - SET {c75adb54-0819-44ea-b269-883e662c563e} = NULL, !- Program Line 15 + SET {4165e360-a006-4788-8570-6af13f52e8b0} = NULL, !- Program Line 14 + SET {eca3ca57-7e47-4600-bbe7-908c9f2a3e2e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -8199,43 +8199,43 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000199}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000074}, !- Inlet Port {00000000-0000-0000-0019-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000200}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000077}, !- Inlet Port {00000000-0000-0000-0019-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000201}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000082}, !- Inlet Port {00000000-0000-0000-0019-000000000083}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000202}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000203}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000079}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000204}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000072}, !- Inlet Port {00000000-0000-0000-0019-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000205}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000080}, !- Inlet Port {00000000-0000-0000-0019-000000000073}; !- Outlet Port @@ -9936,7 +9936,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -9951,7 +9951,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9960,7 +9960,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10792,7 +10792,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000024}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000057}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000058}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 85ca060213..0dacd37b04 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000024}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -6339,61 +6339,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {31de0e88-5948-43e5-8f70-8a7a9f86e708}<23.9 && {31de0e88-5948-43e5-8f70-8a7a9f86e708}>1.7, !- Program Line 1 - SET {fc542a35-36cc-4119-814f-e43e4daa020d} = 29.4, !- Program Line 2 - SET {037eb4b6-62e1-4939-ae34-d553c8d00602} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {31de0e88-5948-43e5-8f70-8a7a9f86e708}<23.9 && {31de0e88-5948-43e5-8f70-8a7a9f86e708}>1.7, !- Program Line 4 - SET {fc542a35-36cc-4119-814f-e43e4daa020d} = 29.4, !- Program Line 5 - SET {037eb4b6-62e1-4939-ae34-d553c8d00602} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {31de0e88-5948-43e5-8f70-8a7a9f86e708}<23.9 && {31de0e88-5948-43e5-8f70-8a7a9f86e708}>1.7, !- Program Line 7 - SET {fc542a35-36cc-4119-814f-e43e4daa020d} = 29.4, !- Program Line 8 - SET {037eb4b6-62e1-4939-ae34-d553c8d00602} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {31de0e88-5948-43e5-8f70-8a7a9f86e708}<23.9 && {31de0e88-5948-43e5-8f70-8a7a9f86e708}>1.7, !- Program Line 10 - SET {fc542a35-36cc-4119-814f-e43e4daa020d} = 29.4, !- Program Line 11 - SET {037eb4b6-62e1-4939-ae34-d553c8d00602} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7f370e4d-3d88-40c5-b53d-d67ada40d361}<23.9 && {7f370e4d-3d88-40c5-b53d-d67ada40d361}>1.7, !- Program Line 1 + SET {6e6136e7-3cc4-41fd-a1b2-75bcaba06bb1} = 29.4, !- Program Line 2 + SET {b41b776f-1aa3-4d75-b175-a0585bc8419a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7f370e4d-3d88-40c5-b53d-d67ada40d361}<23.9 && {7f370e4d-3d88-40c5-b53d-d67ada40d361}>1.7, !- Program Line 4 + SET {6e6136e7-3cc4-41fd-a1b2-75bcaba06bb1} = 29.4, !- Program Line 5 + SET {b41b776f-1aa3-4d75-b175-a0585bc8419a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7f370e4d-3d88-40c5-b53d-d67ada40d361}<23.9 && {7f370e4d-3d88-40c5-b53d-d67ada40d361}>1.7, !- Program Line 7 + SET {6e6136e7-3cc4-41fd-a1b2-75bcaba06bb1} = 29.4, !- Program Line 8 + SET {b41b776f-1aa3-4d75-b175-a0585bc8419a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7f370e4d-3d88-40c5-b53d-d67ada40d361}<23.9 && {7f370e4d-3d88-40c5-b53d-d67ada40d361}>1.7, !- Program Line 10 + SET {6e6136e7-3cc4-41fd-a1b2-75bcaba06bb1} = 29.4, !- Program Line 11 + SET {b41b776f-1aa3-4d75-b175-a0585bc8419a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {fc542a35-36cc-4119-814f-e43e4daa020d} = NULL, !- Program Line 14 - SET {037eb4b6-62e1-4939-ae34-d553c8d00602} = NULL, !- Program Line 15 + SET {6e6136e7-3cc4-41fd-a1b2-75bcaba06bb1} = NULL, !- Program Line 14 + SET {b41b776f-1aa3-4d75-b175-a0585bc8419a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {919be1bb-9917-42ac-a4e7-7078f5f50df8}<23.9 && {919be1bb-9917-42ac-a4e7-7078f5f50df8}>1.7, !- Program Line 1 - SET {fa983a2f-0e99-4e91-bdf6-2658ba7cf925} = 29.4, !- Program Line 2 - SET {e0d463b1-c776-448e-a227-8f171293c647} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {919be1bb-9917-42ac-a4e7-7078f5f50df8}<23.9 && {919be1bb-9917-42ac-a4e7-7078f5f50df8}>1.7, !- Program Line 4 - SET {fa983a2f-0e99-4e91-bdf6-2658ba7cf925} = 29.4, !- Program Line 5 - SET {e0d463b1-c776-448e-a227-8f171293c647} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {919be1bb-9917-42ac-a4e7-7078f5f50df8}<23.9 && {919be1bb-9917-42ac-a4e7-7078f5f50df8}>1.7, !- Program Line 7 - SET {fa983a2f-0e99-4e91-bdf6-2658ba7cf925} = 29.4, !- Program Line 8 - SET {e0d463b1-c776-448e-a227-8f171293c647} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {919be1bb-9917-42ac-a4e7-7078f5f50df8}<23.9 && {919be1bb-9917-42ac-a4e7-7078f5f50df8}>1.7, !- Program Line 10 - SET {fa983a2f-0e99-4e91-bdf6-2658ba7cf925} = 29.4, !- Program Line 11 - SET {e0d463b1-c776-448e-a227-8f171293c647} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {64ba5231-a8d2-491e-96e3-5add935c4550}<23.9 && {64ba5231-a8d2-491e-96e3-5add935c4550}>1.7, !- Program Line 1 + SET {747b80bb-d60d-44c8-abff-0a79ce7d4f5d} = 29.4, !- Program Line 2 + SET {c28a203e-d723-484c-bf44-c475ce4093b6} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {64ba5231-a8d2-491e-96e3-5add935c4550}<23.9 && {64ba5231-a8d2-491e-96e3-5add935c4550}>1.7, !- Program Line 4 + SET {747b80bb-d60d-44c8-abff-0a79ce7d4f5d} = 29.4, !- Program Line 5 + SET {c28a203e-d723-484c-bf44-c475ce4093b6} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {64ba5231-a8d2-491e-96e3-5add935c4550}<23.9 && {64ba5231-a8d2-491e-96e3-5add935c4550}>1.7, !- Program Line 7 + SET {747b80bb-d60d-44c8-abff-0a79ce7d4f5d} = 29.4, !- Program Line 8 + SET {c28a203e-d723-484c-bf44-c475ce4093b6} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {64ba5231-a8d2-491e-96e3-5add935c4550}<23.9 && {64ba5231-a8d2-491e-96e3-5add935c4550}>1.7, !- Program Line 10 + SET {747b80bb-d60d-44c8-abff-0a79ce7d4f5d} = 29.4, !- Program Line 11 + SET {c28a203e-d723-484c-bf44-c475ce4093b6} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {fa983a2f-0e99-4e91-bdf6-2658ba7cf925} = NULL, !- Program Line 14 - SET {e0d463b1-c776-448e-a227-8f171293c647} = NULL, !- Program Line 15 + SET {747b80bb-d60d-44c8-abff-0a79ce7d4f5d} = NULL, !- Program Line 14 + SET {c28a203e-d723-484c-bf44-c475ce4093b6} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {88ea216a-c78b-4353-82fb-b338ad830333}<23.9 && {88ea216a-c78b-4353-82fb-b338ad830333}>1.7, !- Program Line 1 - SET {d72d0f16-c440-4254-85a1-858b9a89dbd4} = 29.4, !- Program Line 2 - SET {2e92ec51-8882-4a44-b48d-62e01b56e461} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {88ea216a-c78b-4353-82fb-b338ad830333}<23.9 && {88ea216a-c78b-4353-82fb-b338ad830333}>1.7, !- Program Line 4 - SET {d72d0f16-c440-4254-85a1-858b9a89dbd4} = 29.4, !- Program Line 5 - SET {2e92ec51-8882-4a44-b48d-62e01b56e461} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {88ea216a-c78b-4353-82fb-b338ad830333}<23.9 && {88ea216a-c78b-4353-82fb-b338ad830333}>1.7, !- Program Line 7 - SET {d72d0f16-c440-4254-85a1-858b9a89dbd4} = 29.4, !- Program Line 8 - SET {2e92ec51-8882-4a44-b48d-62e01b56e461} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {88ea216a-c78b-4353-82fb-b338ad830333}<23.9 && {88ea216a-c78b-4353-82fb-b338ad830333}>1.7, !- Program Line 10 - SET {d72d0f16-c440-4254-85a1-858b9a89dbd4} = 29.4, !- Program Line 11 - SET {2e92ec51-8882-4a44-b48d-62e01b56e461} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {dc1a4045-8d32-4b29-8744-8c135e27d071}<23.9 && {dc1a4045-8d32-4b29-8744-8c135e27d071}>1.7, !- Program Line 1 + SET {0e89ad1e-2f01-4915-b6e1-7c1632df9502} = 29.4, !- Program Line 2 + SET {1b521b4c-ffff-4601-b185-9b6b909f562d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {dc1a4045-8d32-4b29-8744-8c135e27d071}<23.9 && {dc1a4045-8d32-4b29-8744-8c135e27d071}>1.7, !- Program Line 4 + SET {0e89ad1e-2f01-4915-b6e1-7c1632df9502} = 29.4, !- Program Line 5 + SET {1b521b4c-ffff-4601-b185-9b6b909f562d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {dc1a4045-8d32-4b29-8744-8c135e27d071}<23.9 && {dc1a4045-8d32-4b29-8744-8c135e27d071}>1.7, !- Program Line 7 + SET {0e89ad1e-2f01-4915-b6e1-7c1632df9502} = 29.4, !- Program Line 8 + SET {1b521b4c-ffff-4601-b185-9b6b909f562d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {dc1a4045-8d32-4b29-8744-8c135e27d071}<23.9 && {dc1a4045-8d32-4b29-8744-8c135e27d071}>1.7, !- Program Line 10 + SET {0e89ad1e-2f01-4915-b6e1-7c1632df9502} = 29.4, !- Program Line 11 + SET {1b521b4c-ffff-4601-b185-9b6b909f562d} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {d72d0f16-c440-4254-85a1-858b9a89dbd4} = NULL, !- Program Line 14 - SET {2e92ec51-8882-4a44-b48d-62e01b56e461} = NULL, !- Program Line 15 + SET {0e89ad1e-2f01-4915-b6e1-7c1632df9502} = NULL, !- Program Line 14 + SET {1b521b4c-ffff-4601-b185-9b6b909f562d} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -8289,43 +8289,43 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000199}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000074}, !- Inlet Port {00000000-0000-0000-0019-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000200}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000077}, !- Inlet Port {00000000-0000-0000-0019-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000201}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000082}, !- Inlet Port {00000000-0000-0000-0019-000000000083}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000202}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000203}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000079}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000204}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000072}, !- Inlet Port {00000000-0000-0000-0019-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000205}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000080}, !- Inlet Port {00000000-0000-0000-0019-000000000073}; !- Outlet Port @@ -10026,7 +10026,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -10041,7 +10041,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10050,7 +10050,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10882,7 +10882,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000024}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000057}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000058}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2017-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2017-Electricity-CAN_AB_Calgary.osm index fb6621b6b7..008e0e745b 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2017-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2017-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0063-000000000027}, !- Object Name + {00000000-0000-0000-0059-000000000024}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.902183614624489, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0063-000000000031}, !- Object Name + {00000000-0000-0000-0059-000000000025}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.198210559234802, !- Feature Value 1 @@ -32,66 +32,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0063-000000000028}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle - {00000000-0000-0000-0063-000000000029}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle - {00000000-0000-0000-0063-000000000030}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000006}, !- Handle {00000000-0000-0000-0012-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000007}, !- Handle + {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0063-000000000027}, !- Availability Schedule - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0059-000000000024}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -110,75 +62,9 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0063-000000000028}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000145}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000148}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000147}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000146}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0063-000000000029}, !- Availability Schedule - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000201}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000204}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000203}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000202}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000004}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3, !- Name - , !- Controller List Name - {00000000-0000-0000-0063-000000000030}, !- Availability Schedule - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000257}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000260}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000259}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000258}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0063-000000000031}, !- Availability Schedule + {00000000-0000-0000-0059-000000000025}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -203,8 +89,8 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000059}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000417}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000418}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000249}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000250}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000058}; !- Return Air Stream Node Name OS:AirLoopHVAC:OutdoorAirSystem, @@ -214,43 +100,10 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000134}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000423}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000424}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000255}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000256}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000138}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0022-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000160}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000429}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000430}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000164}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000004}, !- Handle - Air Loop HVAC Outdoor Air System 4, !- Name - {00000000-0000-0000-0022-000000000004}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000216}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000435}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000436}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000220}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000005}, !- Handle - Air Loop HVAC Outdoor Air System 5, !- Name - {00000000-0000-0000-0022-000000000005}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000272}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000441}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000442}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000276}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -263,39 +116,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000125}, !- Outlet Node Name {00000000-0000-0000-0017-000000000141}; !- Inlet Node Name 1 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0017-000000000150}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000167}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000173}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000179}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000185}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000191}, !- Inlet Node Name 5 - {00000000-0000-0000-0017-000000000197}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000004}, !- Handle - Air Loop HVAC Zone Mixer 4, !- Name - {00000000-0000-0000-0017-000000000206}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000223}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000229}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000235}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000241}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000247}, !- Inlet Node Name 5 - {00000000-0000-0000-0017-000000000253}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000005}, !- Handle - Air Loop HVAC Zone Mixer 5, !- Name - {00000000-0000-0000-0017-000000000262}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000279}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000285}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000291}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000297}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000303}, !- Inlet Node Name 5 - {00000000-0000-0000-0017-000000000309}; !- Inlet Node Name 6 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -308,43 +128,10 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000124}, !- Inlet Node Name {00000000-0000-0000-0017-000000000142}; !- Outlet Node Name 1 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0017-000000000149}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000168}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000174}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000180}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000186}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000192}, !- Outlet Node Name 5 - {00000000-0000-0000-0017-000000000198}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000004}, !- Handle - Air Loop HVAC Zone Splitter 4, !- Name - {00000000-0000-0000-0017-000000000205}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000224}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000230}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000236}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000242}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000248}, !- Outlet Node Name 5 - {00000000-0000-0000-0017-000000000254}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000005}, !- Handle - Air Loop HVAC Zone Splitter 5, !- Name - {00000000-0000-0000-0017-000000000261}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000280}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000286}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000292}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000298}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000304}, !- Outlet Node Name 5 - {00000000-0000-0000-0017-000000000310}; !- Outlet Node Name 6 - OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000065}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000066}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -352,14 +139,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000143}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000018}, !- Reheat Coil Name + {00000000-0000-0000-0016-000000000003}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000144}, !- Air Outlet Node Name @@ -370,507 +157,72 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000237}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000238}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0056-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0045-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000243}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000244}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0056-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0045-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000249}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000250}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000255}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000009}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000256}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000281}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000011}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000282}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000287}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000013}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000288}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000008}, !- Handle - Air Terminal Single Duct VAV Reheat 16, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000293}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000014}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000294}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000009}, !- Handle - Air Terminal Single Duct VAV Reheat 17, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000299}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000015}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000300}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000010}, !- Handle - Air Terminal Single Duct VAV Reheat 18, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000305}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000016}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000306}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000011}, !- Handle - Air Terminal Single Duct VAV Reheat 19, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000311}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000017}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000312}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000169}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000020}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000170}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000175}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000021}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000176}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000181}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000022}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000182}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 5, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000187}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000023}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000188}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000016}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000193}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000024}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000194}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000017}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000199}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000002}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000200}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000018}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000225}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000226}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000019}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000231}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000005}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000232}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000004}, !- Handle - Availability Manager Night Cycle 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000013}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000014}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000015}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000005}, !- Handle - Availability Manager Night Cycle 5, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000017}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000018}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000019}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name - {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name - {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000006}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000007}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000008}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name - -OS:Building, - {00000000-0000-0000-0010-000000000001}, !- Handle - LargeOffice, !- Name - , !- Building Sector Type - 0, !- North Axis {deg} - , !- Nominal Floor to Floor Height {m} - , !- Space Type Name - {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name - , !- Default Schedule Set Name - 13, !- Standards Number of Stories - 12, !- Standards Number of Above Ground Stories - NECB2017, !- Standards Template - LargeOffice, !- Standards Building Type - , !- Standards Number of Living Units - , !- Relocatable - ; !- Nominal Floor to Ceiling Height {m} +OS:Building, + {00000000-0000-0000-0010-000000000001}, !- Handle + LargeOffice, !- Name + , !- Building Sector Type + 0, !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + , !- Space Type Name + {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name + , !- Default Schedule Set Name + 13, !- Standards Number of Stories + 12, !- Standards Number of Above Ground Stories + NECB2017, !- Standards Template + LargeOffice, !- Standards Building Type + , !- Standards Number of Living Units + , !- Relocatable + ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, {00000000-0000-0000-0011-000000000001}, !- Handle @@ -879,7 +231,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000023}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000023}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -889,7 +241,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -899,7 +251,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -909,14 +261,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton, !- Name - 1976208.45618191, !- Reference Capacity {W} - 5.67258064516129, !- Reference COP {W/W} + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton, !- Name + 16349.4011529819, !- Reference Capacity {W} + 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -958,9 +310,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0025-000000000011}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0025-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0027-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0025-000000000009}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0025-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0027-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -995,8 +347,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0014-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 110kBtu/hr 9.44EER, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 111kBtu/hr 9.44EER, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.28021693457475, !- Rated COP {W/W} @@ -1031,7 +383,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -1046,64 +398,10 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0015-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000152}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000153}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000161}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000158}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0015-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000208}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000209}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000217}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000214}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0015-000000000004}, !- Handle - Coil Cooling Water 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000264}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000265}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000273}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000270}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Electric, {00000000-0000-0000-0016-000000000001}, !- Handle Coil Heating Electric 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name , !- Efficiency , !- Nominal Capacity {W} {00000000-0000-0000-0017-000000000057}, !- Air Inlet Node Name @@ -1111,208 +409,19 @@ OS:Coil:Heating:Electric, OS:Coil:Heating:Electric, {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Electric 10, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 15987.6720428467, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Electric 11, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + Coil Heating Electric 2, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name , !- Efficiency , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000215}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000212}; !- Air Outlet Node Name + {00000000-0000-0000-0017-000000000133}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000130}; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Heating Electric 12, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000003}, !- Handle + Coil Heating Electric 3, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name , !- Efficiency - 476993.916320801, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000005}, !- Handle - Coil Heating Electric 13, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 27858.6330413818, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000006}, !- Handle - Coil Heating Electric 14, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 233619.543457031, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000007}, !- Handle - Coil Heating Electric 15, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 200906.330108643, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000008}, !- Handle - Coil Heating Electric 16, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 101947.906494141, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000009}, !- Handle - Coil Heating Electric 17, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 214018.382263184, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000010}, !- Handle - Coil Heating Electric 18, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000271}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000268}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000011}, !- Handle - Coil Heating Electric 19, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 48369.4622039795, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000012}, !- Handle - Coil Heating Electric 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000133}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000130}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000013}, !- Handle - Coil Heating Electric 20, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 2832.54597187042, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000014}, !- Handle - Coil Heating Electric 21, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 23149.9091148376, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000015}, !- Handle - Coil Heating Electric 22, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 19546.7582702637, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000016}, !- Handle - Coil Heating Electric 23, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11441.4848327637, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000017}, !- Handle - Coil Heating Electric 24, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 21530.0471305847, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000018}, !- Handle - Coil Heating Electric 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 6760.44130325317, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000019}, !- Handle - Coil Heating Electric 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000159}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000156}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000020}, !- Handle - Coil Heating Electric 5, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 30445.2567100525, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000021}, !- Handle - Coil Heating Electric 6, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 2136.74865961075, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000022}, !- Handle - Coil Heating Electric 7, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 16368.2993888855, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000023}, !- Handle - Coil Heating Electric 8, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 14229.7093391418, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000024}, !- Handle - Coil Heating Electric 9, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 6995.25539875031, !- Nominal Capacity {W} + 11552.5978088379, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name @@ -1479,175 +588,175 @@ OS:Connection, OS:Connection, {00000000-0000-0000-0017-000000000024}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- Source Object + {00000000-0000-0000-0086-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000019}, !- Target Object + {00000000-0000-0000-0046-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Source Object + {00000000-0000-0000-0086-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000003}, !- Target Object + {00000000-0000-0000-0046-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- Source Object + {00000000-0000-0000-0086-000000000022}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000043}, !- Target Object + {00000000-0000-0000-0046-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000027}, !- Handle - {00000000-0000-0000-0090-000000000003}, !- Source Object + {00000000-0000-0000-0086-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000005}, !- Target Object + {00000000-0000-0000-0046-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- Source Object + {00000000-0000-0000-0086-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000031}, !- Target Object + {00000000-0000-0000-0046-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000029}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- Source Object + {00000000-0000-0000-0086-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000033}, !- Target Object + {00000000-0000-0000-0046-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000030}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- Source Object + {00000000-0000-0000-0086-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000009}, !- Target Object + {00000000-0000-0000-0046-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- Source Object + {00000000-0000-0000-0086-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000011}, !- Target Object + {00000000-0000-0000-0046-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000032}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- Source Object + {00000000-0000-0000-0086-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000035}, !- Target Object + {00000000-0000-0000-0046-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000033}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- Source Object + {00000000-0000-0000-0086-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000021}, !- Target Object + {00000000-0000-0000-0046-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- Source Object + {00000000-0000-0000-0086-000000000019}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000037}, !- Target Object + {00000000-0000-0000-0046-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000035}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- Source Object + {00000000-0000-0000-0086-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000023}, !- Target Object + {00000000-0000-0000-0046-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000036}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- Source Object + {00000000-0000-0000-0086-000000000004}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000007}, !- Target Object + {00000000-0000-0000-0046-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle - {00000000-0000-0000-0090-000000000002}, !- Source Object + {00000000-0000-0000-0086-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000004}, !- Target Object + {00000000-0000-0000-0046-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- Source Object + {00000000-0000-0000-0086-000000000007}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000013}, !- Target Object + {00000000-0000-0000-0046-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- Source Object + {00000000-0000-0000-0086-000000000020}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000039}, !- Target Object + {00000000-0000-0000-0046-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- Source Object + {00000000-0000-0000-0086-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000025}, !- Target Object + {00000000-0000-0000-0046-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- Source Object + {00000000-0000-0000-0086-000000000021}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000041}, !- Target Object + {00000000-0000-0000-0046-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- Source Object + {00000000-0000-0000-0086-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000027}, !- Target Object + {00000000-0000-0000-0046-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- Source Object + {00000000-0000-0000-0086-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000015}, !- Target Object + {00000000-0000-0000-0046-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- Source Object + {00000000-0000-0000-0086-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000029}, !- Target Object + {00000000-0000-0000-0046-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- Source Object + {00000000-0000-0000-0086-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000017}, !- Target Object + {00000000-0000-0000-0046-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- Source Object + {00000000-0000-0000-0086-000000000023}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000182}, !- Target Object + {00000000-0000-0000-0046-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000188}, !- Target Object + {00000000-0000-0000-0046-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0050-000000000189}, !- Source Object + {00000000-0000-0000-0046-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -1656,19 +765,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000183}, !- Target Object + {00000000-0000-0000-0046-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0050-000000000184}, !- Source Object + {00000000-0000-0000-0046-000000000115}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle - {00000000-0000-0000-0050-000000000183}, !- Source Object + {00000000-0000-0000-0046-000000000114}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -1677,47 +786,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000184}, !- Target Object + {00000000-0000-0000-0046-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle - {00000000-0000-0000-0040-000000000001}, !- Source Object + {00000000-0000-0000-0036-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000189}, !- Target Object + {00000000-0000-0000-0046-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000100}, !- Target Object + {00000000-0000-0000-0046-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle - {00000000-0000-0000-0050-000000000100}, !- Source Object + {00000000-0000-0000-0046-000000000037}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000001}, !- Target Object + {00000000-0000-0000-0036-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0050-000000000105}, !- Target Object + {00000000-0000-0000-0046-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle - {00000000-0000-0000-0050-000000000105}, !- Source Object + {00000000-0000-0000-0046-000000000039}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle - {00000000-0000-0000-0050-000000000188}, !- Source Object + {00000000-0000-0000-0046-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -1726,33 +835,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000185}, !- Target Object + {00000000-0000-0000-0046-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0050-000000000185}, !- Source Object + {00000000-0000-0000-0046-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle - {00000000-0000-0000-0050-000000000045}, !- Source Object + {00000000-0000-0000-0046-000000000027}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000067}, !- Target Object + {00000000-0000-0000-0052-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle - {00000000-0000-0000-0056-000000000069}, !- Source Object + {00000000-0000-0000-0052-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000181}, !- Target Object + {00000000-0000-0000-0046-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle - {00000000-0000-0000-0050-000000000181}, !- Source Object + {00000000-0000-0000-0046-000000000112}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -1761,12 +870,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000044}, !- Target Object + {00000000-0000-0000-0046-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle - {00000000-0000-0000-0050-000000000044}, !- Source Object + {00000000-0000-0000-0046-000000000026}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -1775,40 +884,40 @@ OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000045}, !- Target Object + {00000000-0000-0000-0046-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle - {00000000-0000-0000-0055-000000000001}, !- Source Object + {00000000-0000-0000-0051-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000086}, !- Target Object + {00000000-0000-0000-0046-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000169}, !- Target Object + {00000000-0000-0000-0046-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0050-000000000087}, !- Source Object + {00000000-0000-0000-0046-000000000033}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000001}, !- Target Object + {00000000-0000-0000-0051-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle - {00000000-0000-0000-0055-000000000001}, !- Source Object + {00000000-0000-0000-0051-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000084}, !- Target Object + {00000000-0000-0000-0046-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle - {00000000-0000-0000-0050-000000000084}, !- Source Object + {00000000-0000-0000-0046-000000000030}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -1817,47 +926,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000088}, !- Target Object + {00000000-0000-0000-0046-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000085}, !- Target Object + {00000000-0000-0000-0046-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle - {00000000-0000-0000-0050-000000000085}, !- Source Object + {00000000-0000-0000-0046-000000000031}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000001}, !- Target Object + {00000000-0000-0000-0051-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle - {00000000-0000-0000-0050-000000000086}, !- Source Object + {00000000-0000-0000-0046-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000001}, !- Target Object + {00000000-0000-0000-0054-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle - {00000000-0000-0000-0058-000000000001}, !- Source Object + {00000000-0000-0000-0054-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000171}, !- Target Object + {00000000-0000-0000-0046-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0050-000000000171}, !- Source Object + {00000000-0000-0000-0046-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle - {00000000-0000-0000-0050-000000000169}, !- Source Object + {00000000-0000-0000-0046-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -1866,12 +975,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000170}, !- Target Object + {00000000-0000-0000-0046-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle - {00000000-0000-0000-0050-000000000170}, !- Source Object + {00000000-0000-0000-0046-000000000104}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -1880,12 +989,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000175}, !- Target Object + {00000000-0000-0000-0046-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle - {00000000-0000-0000-0050-000000000175}, !- Source Object + {00000000-0000-0000-0046-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1894,12 +1003,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000176}, !- Target Object + {00000000-0000-0000-0046-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle - {00000000-0000-0000-0050-000000000176}, !- Source Object + {00000000-0000-0000-0046-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -1908,26 +1017,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000155}, !- Target Object + {00000000-0000-0000-0046-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle - {00000000-0000-0000-0050-000000000155}, !- Source Object + {00000000-0000-0000-0046-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000001}, !- Target Object + {00000000-0000-0000-0050-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Source Object + {00000000-0000-0000-0050-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000156}, !- Target Object + {00000000-0000-0000-0046-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle - {00000000-0000-0000-0050-000000000156}, !- Source Object + {00000000-0000-0000-0046-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1936,54 +1045,54 @@ OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000157}, !- Target Object + {00000000-0000-0000-0046-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle - {00000000-0000-0000-0050-000000000157}, !- Source Object + {00000000-0000-0000-0046-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000002}, !- Target Object + {00000000-0000-0000-0050-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Source Object + {00000000-0000-0000-0050-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000087}, !- Target Object + {00000000-0000-0000-0046-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle - {00000000-0000-0000-0055-000000000002}, !- Source Object + {00000000-0000-0000-0051-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000108}, !- Target Object + {00000000-0000-0000-0046-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000110}, !- Target Object + {00000000-0000-0000-0046-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0050-000000000109}, !- Source Object + {00000000-0000-0000-0046-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000002}, !- Target Object + {00000000-0000-0000-0051-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle - {00000000-0000-0000-0055-000000000002}, !- Source Object + {00000000-0000-0000-0051-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000106}, !- Target Object + {00000000-0000-0000-0046-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle - {00000000-0000-0000-0050-000000000106}, !- Source Object + {00000000-0000-0000-0046-000000000040}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1992,47 +1101,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000167}, !- Target Object + {00000000-0000-0000-0046-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000107}, !- Target Object + {00000000-0000-0000-0046-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle - {00000000-0000-0000-0050-000000000107}, !- Source Object + {00000000-0000-0000-0046-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000002}, !- Target Object + {00000000-0000-0000-0051-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle - {00000000-0000-0000-0050-000000000108}, !- Source Object + {00000000-0000-0000-0046-000000000042}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000002}, !- Target Object + {00000000-0000-0000-0054-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle - {00000000-0000-0000-0058-000000000002}, !- Source Object + {00000000-0000-0000-0054-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000172}, !- Target Object + {00000000-0000-0000-0046-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0050-000000000172}, !- Source Object + {00000000-0000-0000-0046-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle - {00000000-0000-0000-0050-000000000110}, !- Source Object + {00000000-0000-0000-0046-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0024-000000000001}, !- Target Object 2; !- Inlet Port @@ -2041,12 +1150,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle {00000000-0000-0000-0024-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000111}, !- Target Object + {00000000-0000-0000-0046-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle - {00000000-0000-0000-0050-000000000111}, !- Source Object + {00000000-0000-0000-0046-000000000045}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -2055,26 +1164,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000158}, !- Target Object + {00000000-0000-0000-0046-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle - {00000000-0000-0000-0050-000000000158}, !- Source Object + {00000000-0000-0000-0046-000000000092}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000003}, !- Target Object + {00000000-0000-0000-0050-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Source Object + {00000000-0000-0000-0050-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000159}, !- Target Object + {00000000-0000-0000-0046-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle - {00000000-0000-0000-0050-000000000159}, !- Source Object + {00000000-0000-0000-0046-000000000093}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -2083,26 +1192,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000160}, !- Target Object + {00000000-0000-0000-0046-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle - {00000000-0000-0000-0050-000000000160}, !- Source Object + {00000000-0000-0000-0046-000000000094}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000004}, !- Target Object + {00000000-0000-0000-0050-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle - {00000000-0000-0000-0054-000000000004}, !- Source Object + {00000000-0000-0000-0050-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000109}, !- Target Object + {00000000-0000-0000-0046-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle - {00000000-0000-0000-0050-000000000167}, !- Source Object + {00000000-0000-0000-0046-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -2111,12 +1220,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000168}, !- Target Object + {00000000-0000-0000-0046-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0050-000000000168}, !- Source Object + {00000000-0000-0000-0046-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 3; !- Inlet Port @@ -2125,12 +1234,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000173}, !- Target Object + {00000000-0000-0000-0046-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0050-000000000173}, !- Source Object + {00000000-0000-0000-0046-000000000107}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -2139,47 +1248,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000174}, !- Target Object + {00000000-0000-0000-0046-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0050-000000000174}, !- Source Object + {00000000-0000-0000-0046-000000000108}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000218}, !- Target Object + {00000000-0000-0000-0046-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0050-000000000219}, !- Source Object + {00000000-0000-0000-0046-000000000129}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000122}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000213}, !- Target Object + {00000000-0000-0000-0046-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0050-000000000214}, !- Source Object + {00000000-0000-0000-0046-000000000124}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0050-000000000213}, !- Source Object + {00000000-0000-0000-0046-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -2188,12 +1297,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000125}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000214}, !- Target Object + {00000000-0000-0000-0046-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0050-000000000088}, !- Source Object + {00000000-0000-0000-0046-000000000034}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 10; !- Inlet Port @@ -2202,103 +1311,103 @@ OS:Connection, {00000000-0000-0000-0017-000000000127}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000090}, !- Target Object + {00000000-0000-0000-0046-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000128}, !- Handle - {00000000-0000-0000-0050-000000000090}, !- Source Object + {00000000-0000-0000-0046-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000129}, !- Handle - {00000000-0000-0000-0041-000000000008}, !- Source Object + {00000000-0000-0000-0037-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000219}, !- Target Object + {00000000-0000-0000-0046-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000130}, !- Handle - {00000000-0000-0000-0016-000000000012}, !- Source Object + {00000000-0000-0000-0016-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000103}, !- Target Object + {00000000-0000-0000-0046-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0050-000000000103}, !- Source Object + {00000000-0000-0000-0046-000000000038}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000008}, !- Target Object + {00000000-0000-0000-0037-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000132}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000089}, !- Target Object + {00000000-0000-0000-0046-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0050-000000000089}, !- Source Object + {00000000-0000-0000-0046-000000000035}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000012}, !- Target Object + {00000000-0000-0000-0016-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000134}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000215}, !- Target Object + {00000000-0000-0000-0046-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0050-000000000215}, !- Source Object + {00000000-0000-0000-0046-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000136}, !- Handle - {00000000-0000-0000-0050-000000000218}, !- Source Object + {00000000-0000-0000-0046-000000000128}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000004}, !- Target Object + {00000000-0000-0000-0037-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000137}, !- Handle - {00000000-0000-0000-0041-000000000004}, !- Source Object + {00000000-0000-0000-0037-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000180}, !- Target Object + {00000000-0000-0000-0046-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000138}, !- Handle - {00000000-0000-0000-0050-000000000180}, !- Source Object + {00000000-0000-0000-0046-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000139}, !- Handle - {00000000-0000-0000-0050-000000000047}, !- Source Object + {00000000-0000-0000-0046-000000000029}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000037}, !- Target Object + {00000000-0000-0000-0052-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0056-000000000039}, !- Source Object + {00000000-0000-0000-0052-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000006}, !- Target Object + {00000000-0000-0000-0046-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000141}, !- Handle - {00000000-0000-0000-0050-000000000006}, !- Source Object + {00000000-0000-0000-0046-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -2307,12 +1416,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000142}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000046}, !- Target Object + {00000000-0000-0000-0046-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000143}, !- Handle - {00000000-0000-0000-0050-000000000046}, !- Source Object + {00000000-0000-0000-0046-000000000028}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -2321,2132 +1430,827 @@ OS:Connection, {00000000-0000-0000-0017-000000000144}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000047}, !- Target Object + {00000000-0000-0000-0046-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000197}, !- Target Object + {00000000-0000-0000-0051-000000000003}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0046-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000146}, !- Handle - {00000000-0000-0000-0050-000000000198}, !- Source Object + {00000000-0000-0000-0019-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0046-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000147}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000192}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000003}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000148}, !- Handle - {00000000-0000-0000-0050-000000000193}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0051-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0046-000000000061}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0050-000000000192}, !- Source Object + {00000000-0000-0000-0046-000000000061}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000150}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000193}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000151}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000091}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000003}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0050-000000000091}, !- Source Object + {00000000-0000-0000-0046-000000000063}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0053-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000153}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000093}, !- Target Object + {00000000-0000-0000-0053-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0050-000000000093}, !- Source Object + {00000000-0000-0000-0046-000000000060}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0019-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000155}, !- Handle - {00000000-0000-0000-0041-000000000005}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000198}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000001}, !- Target Object + 31; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0016-000000000019}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000104}, !- Target Object + {00000000-0000-0000-0090-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0046-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000157}, !- Handle - {00000000-0000-0000-0050-000000000104}, !- Source Object + {00000000-0000-0000-0046-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000005}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000092}, !- Target Object + {00000000-0000-0000-0019-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0046-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0050-000000000092}, !- Source Object + {00000000-0000-0000-0046-000000000095}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000019}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0050-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000160}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000194}, !- Target Object + {00000000-0000-0000-0050-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000161}, !- Handle - {00000000-0000-0000-0050-000000000194}, !- Source Object + {00000000-0000-0000-0046-000000000096}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000162}, !- Handle - {00000000-0000-0000-0050-000000000197}, !- Source Object + {00000000-0000-0000-0046-000000000097}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000001}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0050-000000000006}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0041-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000177}, !- Target Object + {00000000-0000-0000-0050-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0050-000000000177}, !- Source Object + {00000000-0000-0000-0046-000000000098}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000165}, !- Handle - {00000000-0000-0000-0050-000000000069}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000043}, !- Target Object + {00000000-0000-0000-0018-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0046-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0056-000000000045}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000012}, !- Target Object + {00000000-0000-0000-0046-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000167}, !- Handle - {00000000-0000-0000-0050-000000000012}, !- Source Object + {00000000-0000-0000-0050-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0046-000000000064}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000068}, !- Target Object + {00000000-0000-0000-0018-000000000006}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0046-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000169}, !- Handle - {00000000-0000-0000-0050-000000000068}, !- Source Object + {00000000-0000-0000-0046-000000000100}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000012}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0050-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0007-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000069}, !- Target Object + {00000000-0000-0000-0050-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000171}, !- Handle - {00000000-0000-0000-0050-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000019}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0046-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0056-000000000021}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000008}, !- Target Object + {00000000-0000-0000-0046-000000000046}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0050-000000000008}, !- Source Object + {00000000-0000-0000-0092-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0046-000000000047}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000174}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000070}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000047}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000175}, !- Handle - {00000000-0000-0000-0050-000000000070}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000013}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0046-000000000048}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000176}, !- Handle - {00000000-0000-0000-0007-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000071}, !- Target Object + {00000000-0000-0000-0046-000000000048}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0050-000000000073}, !- Source Object + {00000000-0000-0000-0092-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000064}, !- Target Object + {00000000-0000-0000-0046-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0056-000000000066}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000016}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000049}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000179}, !- Handle - {00000000-0000-0000-0050-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0046-000000000050}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000072}, !- Target Object + {00000000-0000-0000-0046-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000181}, !- Handle - {00000000-0000-0000-0050-000000000072}, !- Source Object + {00000000-0000-0000-0092-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000014}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0046-000000000051}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0007-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000183}, !- Handle - {00000000-0000-0000-0050-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000022}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0046-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0056-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000010}, !- Target Object + {00000000-0000-0000-0046-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000185}, !- Handle - {00000000-0000-0000-0050-000000000010}, !- Source Object + {00000000-0000-0000-0092-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0046-000000000053}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000074}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0050-000000000074}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000015}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0046-000000000054}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000188}, !- Handle - {00000000-0000-0000-0007-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000075}, !- Target Object + {00000000-0000-0000-0046-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000189}, !- Handle - {00000000-0000-0000-0050-000000000077}, !- Source Object + {00000000-0000-0000-0092-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000058}, !- Target Object + {00000000-0000-0000-0046-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000190}, !- Handle - {00000000-0000-0000-0056-000000000060}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000014}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0050-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0046-000000000056}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000076}, !- Target Object + {00000000-0000-0000-0046-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000193}, !- Handle - {00000000-0000-0000-0050-000000000076}, !- Source Object + {00000000-0000-0000-0092-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000016}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0046-000000000057}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0007-000000000016}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000077}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000195}, !- Handle - {00000000-0000-0000-0050-000000000079}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000001}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0046-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0056-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000018}, !- Target Object + {00000000-0000-0000-0046-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000197}, !- Handle - {00000000-0000-0000-0050-000000000018}, !- Source Object + {00000000-0000-0000-0092-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0046-000000000059}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0050-000000000078}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000199}, !- Handle - {00000000-0000-0000-0050-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000017}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0046-000000000065}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0007-000000000017}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000079}, !- Target Object + {00000000-0000-0000-0046-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000204}, !- Target Object + {00000000-0000-0000-0092-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000202}, !- Handle - {00000000-0000-0000-0050-000000000205}, !- Source Object + {00000000-0000-0000-0046-000000000066}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000203}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000199}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0046-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000204}, !- Handle - {00000000-0000-0000-0050-000000000200}, !- Source Object + {00000000-0000-0000-0046-000000000067}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0092-000000000009}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0050-000000000199}, !- Source Object + {00000000-0000-0000-0092-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000004}, !- Target Object + {00000000-0000-0000-0046-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0004-000000000004}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000200}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000068}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000207}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000094}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0046-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000208}, !- Handle - {00000000-0000-0000-0050-000000000094}, !- Source Object + {00000000-0000-0000-0046-000000000069}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0092-000000000010}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000096}, !- Target Object + {00000000-0000-0000-0092-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000210}, !- Handle - {00000000-0000-0000-0050-000000000096}, !- Source Object + {00000000-0000-0000-0046-000000000070}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0041-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000205}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0046-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000212}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000101}, !- Target Object + {00000000-0000-0000-0046-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0050-000000000101}, !- Source Object + {00000000-0000-0000-0092-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000006}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0046-000000000072}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000095}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000072}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000215}, !- Handle - {00000000-0000-0000-0050-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0046-000000000073}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000201}, !- Target Object + {00000000-0000-0000-0046-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000217}, !- Handle - {00000000-0000-0000-0050-000000000201}, !- Source Object + {00000000-0000-0000-0092-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0046-000000000074}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000218}, !- Handle - {00000000-0000-0000-0050-000000000204}, !- Source Object + {00000000-0000-0000-0046-000000000074}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000002}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000219}, !- Handle - {00000000-0000-0000-0041-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000178}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0046-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000220}, !- Handle - {00000000-0000-0000-0050-000000000178}, !- Source Object + {00000000-0000-0000-0046-000000000075}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0092-000000000013}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0050-000000000081}, !- Source Object + {00000000-0000-0000-0092-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000055}, !- Target Object + {00000000-0000-0000-0046-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000222}, !- Handle - {00000000-0000-0000-0056-000000000057}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000026}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000076}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0050-000000000026}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0046-000000000077}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object + {00000000-0000-0000-0046-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000080}, !- Target Object + {00000000-0000-0000-0092-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000225}, !- Handle - {00000000-0000-0000-0050-000000000080}, !- Source Object + {00000000-0000-0000-0092-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000018}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0046-000000000078}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0007-000000000018}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000081}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000078}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 17; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000227}, !- Handle - {00000000-0000-0000-0050-000000000083}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000049}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0046-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0056-000000000051}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000024}, !- Target Object + {00000000-0000-0000-0046-000000000079}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000229}, !- Handle - {00000000-0000-0000-0050-000000000024}, !- Source Object + {00000000-0000-0000-0092-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0046-000000000080}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000230}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000082}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0050-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000019}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0046-000000000081}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000232}, !- Handle - {00000000-0000-0000-0007-000000000019}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000083}, !- Target Object + {00000000-0000-0000-0046-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000233}, !- Handle - {00000000-0000-0000-0050-000000000049}, !- Source Object + {00000000-0000-0000-0092-000000000016}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000034}, !- Target Object + {00000000-0000-0000-0046-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0056-000000000036}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000022}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 19; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000235}, !- Handle - {00000000-0000-0000-0050-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0046-000000000083}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000048}, !- Target Object + {00000000-0000-0000-0046-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000237}, !- Handle - {00000000-0000-0000-0050-000000000048}, !- Source Object + {00000000-0000-0000-0092-000000000017}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000002}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0046-000000000084}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0007-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000049}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000084}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 20; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000239}, !- Handle - {00000000-0000-0000-0050-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000028}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0046-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0056-000000000030}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000020}, !- Target Object + {00000000-0000-0000-0046-000000000085}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000241}, !- Handle - {00000000-0000-0000-0050-000000000020}, !- Source Object + {00000000-0000-0000-0092-000000000018}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0046-000000000086}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000050}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000086}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 21; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000243}, !- Handle - {00000000-0000-0000-0050-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000003}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0046-000000000087}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0007-000000000003}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000051}, !- Target Object + {00000000-0000-0000-0046-000000000087}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000245}, !- Handle - {00000000-0000-0000-0050-000000000053}, !- Source Object + {00000000-0000-0000-0092-000000000019}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000061}, !- Target Object + {00000000-0000-0000-0046-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0056-000000000063}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000028}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000088}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 22; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000247}, !- Handle - {00000000-0000-0000-0050-000000000028}, !- Source Object + {00000000-0000-0000-0046-000000000117}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0040-000000000001}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000052}, !- Target Object + {00000000-0000-0000-0040-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0046-000000000121}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000249}, !- Handle - {00000000-0000-0000-0050-000000000052}, !- Source Object + {00000000-0000-0000-0046-000000000121}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000004}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0007-000000000004}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000053}, !- Target Object + {00000000-0000-0000-0003-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0046-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000251}, !- Handle - {00000000-0000-0000-0050-000000000055}, !- Source Object + {00000000-0000-0000-0046-000000000122}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000013}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0040-000000000001}, !- Target Object + 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0056-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000030}, !- Target Object + {00000000-0000-0000-0040-000000000001}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0046-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000253}, !- Handle - {00000000-0000-0000-0050-000000000030}, !- Source Object + {00000000-0000-0000-0046-000000000126}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0040-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0050-000000000054}, !- Target Object + {00000000-0000-0000-0040-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0046-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000255}, !- Handle - {00000000-0000-0000-0050-000000000054}, !- Source Object + {00000000-0000-0000-0046-000000000130}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000005}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0007-000000000005}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000055}, !- Target Object + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0046-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000257}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000211}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0050-000000000212}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000259}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000206}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000260}, !- Handle - {00000000-0000-0000-0050-000000000207}, !- Source Object + {00000000-0000-0000-0046-000000000131}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0040-000000000002}, !- Target Object + 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000261}, !- Handle - {00000000-0000-0000-0050-000000000206}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000005}, !- Target Object + {00000000-0000-0000-0017-000000000258}, !- Handle + {00000000-0000-0000-0040-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0046-000000000127}, !- Target Object 2; !- Inlet Port -OS:Connection, - {00000000-0000-0000-0017-000000000262}, !- Handle - {00000000-0000-0000-0004-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000207}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000001}, !- Handle + Connector Mixer 1, !- Name + {00000000-0000-0000-0017-000000000089}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000080}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000084}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000088}; !- Inlet Branch Name 3 -OS:Connection, - {00000000-0000-0000-0017-000000000263}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000097}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000002}, !- Handle + Connector Mixer 2, !- Name + {00000000-0000-0000-0017-000000000073}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000128}; !- Inlet Branch Name 1 -OS:Connection, - {00000000-0000-0000-0017-000000000264}, !- Handle - {00000000-0000-0000-0050-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000265}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000099}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000266}, !- Handle - {00000000-0000-0000-0050-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000267}, !- Handle - {00000000-0000-0000-0041-000000000007}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000212}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000268}, !- Handle - {00000000-0000-0000-0016-000000000010}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000102}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000269}, !- Handle - {00000000-0000-0000-0050-000000000102}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000007}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000270}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000098}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000271}, !- Handle - {00000000-0000-0000-0050-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000010}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000272}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000208}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000273}, !- Handle - {00000000-0000-0000-0050-000000000208}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000274}, !- Handle - {00000000-0000-0000-0050-000000000211}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000003}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000275}, !- Handle - {00000000-0000-0000-0041-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000179}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000276}, !- Handle - {00000000-0000-0000-0050-000000000179}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000277}, !- Handle - {00000000-0000-0000-0050-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000278}, !- Handle - {00000000-0000-0000-0056-000000000054}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000279}, !- Handle - {00000000-0000-0000-0050-000000000040}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000280}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000056}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000281}, !- Handle - {00000000-0000-0000-0050-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000282}, !- Handle - {00000000-0000-0000-0007-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000057}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000283}, !- Handle - {00000000-0000-0000-0050-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000031}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000284}, !- Handle - {00000000-0000-0000-0056-000000000033}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000036}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000285}, !- Handle - {00000000-0000-0000-0050-000000000036}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000286}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000287}, !- Handle - {00000000-0000-0000-0050-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000288}, !- Handle - {00000000-0000-0000-0007-000000000007}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000059}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000289}, !- Handle - {00000000-0000-0000-0050-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000290}, !- Handle - {00000000-0000-0000-0056-000000000018}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000032}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000291}, !- Handle - {00000000-0000-0000-0050-000000000032}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000292}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000060}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000293}, !- Handle - {00000000-0000-0000-0050-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000294}, !- Handle - {00000000-0000-0000-0007-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000295}, !- Handle - {00000000-0000-0000-0050-000000000063}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000025}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000296}, !- Handle - {00000000-0000-0000-0056-000000000027}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000297}, !- Handle - {00000000-0000-0000-0050-000000000034}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000298}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000062}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000299}, !- Handle - {00000000-0000-0000-0050-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000009}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000300}, !- Handle - {00000000-0000-0000-0007-000000000009}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000063}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000301}, !- Handle - {00000000-0000-0000-0050-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000302}, !- Handle - {00000000-0000-0000-0056-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000303}, !- Handle - {00000000-0000-0000-0050-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000304}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000305}, !- Handle - {00000000-0000-0000-0050-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000010}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000306}, !- Handle - {00000000-0000-0000-0007-000000000010}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000307}, !- Handle - {00000000-0000-0000-0050-000000000067}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000308}, !- Handle - {00000000-0000-0000-0056-000000000009}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000042}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000309}, !- Handle - {00000000-0000-0000-0050-000000000042}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000310}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0050-000000000066}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000311}, !- Handle - {00000000-0000-0000-0050-000000000066}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000011}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000312}, !- Handle - {00000000-0000-0000-0007-000000000011}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000067}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000313}, !- Handle - {00000000-0000-0000-0055-000000000003}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0050-000000000129}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000314}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000315}, !- Handle - {00000000-0000-0000-0050-000000000130}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000003}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000316}, !- Handle - {00000000-0000-0000-0055-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000127}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000317}, !- Handle - {00000000-0000-0000-0050-000000000127}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000318}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000163}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000319}, !- Handle - {00000000-0000-0000-0050-000000000128}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000003}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000320}, !- Handle - {00000000-0000-0000-0050-000000000129}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000321}, !- Handle - {00000000-0000-0000-0057-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000126}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000322}, !- Handle - {00000000-0000-0000-0050-000000000126}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000323}, !- Handle - {00000000-0000-0000-0050-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000001}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000324}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0050-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000325}, !- Handle - {00000000-0000-0000-0050-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000326}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000161}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000327}, !- Handle - {00000000-0000-0000-0050-000000000161}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000328}, !- Handle - {00000000-0000-0000-0054-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000162}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000329}, !- Handle - {00000000-0000-0000-0050-000000000162}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000330}, !- Handle - {00000000-0000-0000-0050-000000000163}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000331}, !- Handle - {00000000-0000-0000-0054-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000332}, !- Handle - {00000000-0000-0000-0050-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000333}, !- Handle - {00000000-0000-0000-0018-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000165}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000334}, !- Handle - {00000000-0000-0000-0050-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000335}, !- Handle - {00000000-0000-0000-0054-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000130}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000336}, !- Handle - {00000000-0000-0000-0018-000000000006}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000337}, !- Handle - {00000000-0000-0000-0050-000000000166}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000338}, !- Handle - {00000000-0000-0000-0054-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000128}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000339}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000112}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000340}, !- Handle - {00000000-0000-0000-0050-000000000112}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000341}, !- Handle - {00000000-0000-0000-0096-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000113}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000342}, !- Handle - {00000000-0000-0000-0050-000000000113}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000343}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000114}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000344}, !- Handle - {00000000-0000-0000-0050-000000000114}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000345}, !- Handle - {00000000-0000-0000-0096-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000115}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000346}, !- Handle - {00000000-0000-0000-0050-000000000115}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000347}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000116}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000348}, !- Handle - {00000000-0000-0000-0050-000000000116}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000349}, !- Handle - {00000000-0000-0000-0096-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000117}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000350}, !- Handle - {00000000-0000-0000-0050-000000000117}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000351}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000118}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000352}, !- Handle - {00000000-0000-0000-0050-000000000118}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000353}, !- Handle - {00000000-0000-0000-0096-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000119}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000354}, !- Handle - {00000000-0000-0000-0050-000000000119}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000355}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0050-000000000120}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000356}, !- Handle - {00000000-0000-0000-0050-000000000120}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000357}, !- Handle - {00000000-0000-0000-0096-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000121}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000358}, !- Handle - {00000000-0000-0000-0050-000000000121}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000359}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000122}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000360}, !- Handle - {00000000-0000-0000-0050-000000000122}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000361}, !- Handle - {00000000-0000-0000-0096-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000123}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000362}, !- Handle - {00000000-0000-0000-0050-000000000123}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000363}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0050-000000000124}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000364}, !- Handle - {00000000-0000-0000-0050-000000000124}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000365}, !- Handle - {00000000-0000-0000-0096-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000125}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000366}, !- Handle - {00000000-0000-0000-0050-000000000125}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000367}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000131}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000368}, !- Handle - {00000000-0000-0000-0050-000000000131}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000369}, !- Handle - {00000000-0000-0000-0096-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000132}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000370}, !- Handle - {00000000-0000-0000-0050-000000000132}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 11; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000371}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000133}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000372}, !- Handle - {00000000-0000-0000-0050-000000000133}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000373}, !- Handle - {00000000-0000-0000-0096-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000134}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000374}, !- Handle - {00000000-0000-0000-0050-000000000134}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000375}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000135}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000376}, !- Handle - {00000000-0000-0000-0050-000000000135}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000377}, !- Handle - {00000000-0000-0000-0096-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000136}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000378}, !- Handle - {00000000-0000-0000-0050-000000000136}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 13; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000379}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0050-000000000137}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000380}, !- Handle - {00000000-0000-0000-0050-000000000137}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000011}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000381}, !- Handle - {00000000-0000-0000-0096-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000138}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000382}, !- Handle - {00000000-0000-0000-0050-000000000138}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000383}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000139}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000384}, !- Handle - {00000000-0000-0000-0050-000000000139}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000012}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000385}, !- Handle - {00000000-0000-0000-0096-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000140}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000386}, !- Handle - {00000000-0000-0000-0050-000000000140}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000387}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0050-000000000141}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000388}, !- Handle - {00000000-0000-0000-0050-000000000141}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000389}, !- Handle - {00000000-0000-0000-0096-000000000013}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000142}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000390}, !- Handle - {00000000-0000-0000-0050-000000000142}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000391}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000143}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000392}, !- Handle - {00000000-0000-0000-0050-000000000143}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000393}, !- Handle - {00000000-0000-0000-0096-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000144}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000394}, !- Handle - {00000000-0000-0000-0050-000000000144}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000395}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0050-000000000145}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000396}, !- Handle - {00000000-0000-0000-0050-000000000145}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000015}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000397}, !- Handle - {00000000-0000-0000-0096-000000000015}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000146}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000398}, !- Handle - {00000000-0000-0000-0050-000000000146}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000399}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0050-000000000147}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000400}, !- Handle - {00000000-0000-0000-0050-000000000147}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000401}, !- Handle - {00000000-0000-0000-0096-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000148}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000402}, !- Handle - {00000000-0000-0000-0050-000000000148}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 19; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000403}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0050-000000000149}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000404}, !- Handle - {00000000-0000-0000-0050-000000000149}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000017}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000405}, !- Handle - {00000000-0000-0000-0096-000000000017}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000150}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000406}, !- Handle - {00000000-0000-0000-0050-000000000150}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 20; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000407}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0050-000000000151}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000408}, !- Handle - {00000000-0000-0000-0050-000000000151}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000409}, !- Handle - {00000000-0000-0000-0096-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000152}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000410}, !- Handle - {00000000-0000-0000-0050-000000000152}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000411}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0050-000000000153}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000412}, !- Handle - {00000000-0000-0000-0050-000000000153}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000019}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000413}, !- Handle - {00000000-0000-0000-0096-000000000019}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000414}, !- Handle - {00000000-0000-0000-0050-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 22; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000415}, !- Handle - {00000000-0000-0000-0050-000000000186}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000416}, !- Handle - {00000000-0000-0000-0044-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000190}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000417}, !- Handle - {00000000-0000-0000-0050-000000000190}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000418}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000191}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000419}, !- Handle - {00000000-0000-0000-0050-000000000191}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000001}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000420}, !- Handle - {00000000-0000-0000-0044-000000000001}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000187}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000421}, !- Handle - {00000000-0000-0000-0050-000000000216}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000005}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000422}, !- Handle - {00000000-0000-0000-0044-000000000005}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000226}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000423}, !- Handle - {00000000-0000-0000-0050-000000000226}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000424}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000227}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000425}, !- Handle - {00000000-0000-0000-0050-000000000227}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000005}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000426}, !- Handle - {00000000-0000-0000-0044-000000000005}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000217}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000427}, !- Handle - {00000000-0000-0000-0050-000000000195}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000428}, !- Handle - {00000000-0000-0000-0044-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000220}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000429}, !- Handle - {00000000-0000-0000-0050-000000000220}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000430}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000221}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000431}, !- Handle - {00000000-0000-0000-0050-000000000221}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000002}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000432}, !- Handle - {00000000-0000-0000-0044-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000196}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000433}, !- Handle - {00000000-0000-0000-0050-000000000202}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000434}, !- Handle - {00000000-0000-0000-0044-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000222}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000435}, !- Handle - {00000000-0000-0000-0050-000000000222}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000436}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000223}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000437}, !- Handle - {00000000-0000-0000-0050-000000000223}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000003}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000438}, !- Handle - {00000000-0000-0000-0044-000000000003}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000203}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000439}, !- Handle - {00000000-0000-0000-0050-000000000209}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000440}, !- Handle - {00000000-0000-0000-0044-000000000004}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000224}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000441}, !- Handle - {00000000-0000-0000-0050-000000000224}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000442}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000225}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000443}, !- Handle - {00000000-0000-0000-0050-000000000225}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000004}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000444}, !- Handle - {00000000-0000-0000-0044-000000000004}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000210}, !- Target Object - 2; !- Inlet Port - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000001}, !- Handle - Connector Mixer 1, !- Name - {00000000-0000-0000-0017-000000000089}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000080}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000084}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000088}; !- Inlet Branch Name 3 - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000002}, !- Handle - Connector Mixer 2, !- Name - {00000000-0000-0000-0017-000000000073}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000128}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000154}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000210}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000266}; !- Inlet Branch Name 4 - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000003}, !- Handle - Connector Mixer 3, !- Name - {00000000-0000-0000-0017-000000000110}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000105}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000109}; !- Inlet Branch Name 2 +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000003}, !- Handle + Connector Mixer 3, !- Name + {00000000-0000-0000-0017-000000000110}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000105}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000109}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000004}, !- Handle @@ -4458,34 +2262,34 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0017-000000000333}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000325}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000329}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000165}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000157}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000161}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0017-000000000336}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000332}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000342}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000346}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000350}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000354}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000358}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000362}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000366}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000370}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000374}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000378}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000382}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000386}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000390}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000394}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000398}, !- Inlet Branch Name 16 - {00000000-0000-0000-0017-000000000402}, !- Inlet Branch Name 17 - {00000000-0000-0000-0017-000000000406}, !- Inlet Branch Name 18 - {00000000-0000-0000-0017-000000000410}, !- Inlet Branch Name 19 - {00000000-0000-0000-0017-000000000414}; !- Inlet Branch Name 20 + {00000000-0000-0000-0017-000000000168}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000164}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000174}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000178}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000182}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000186}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000190}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000194}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000198}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000202}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000206}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000210}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000214}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000218}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000222}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000226}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000230}, !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000234}, !- Inlet Branch Name 17 + {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 18 + {00000000-0000-0000-0017-000000000242}, !- Inlet Branch Name 19 + {00000000-0000-0000-0017-000000000246}; !- Inlet Branch Name 20 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -4499,10 +2303,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0017-000000000071}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000072}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000151}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000207}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000263}; !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000072}; !- Outlet Branch Name 1 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -4521,420 +2322,309 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0017-000000000322}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000314}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000326}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000154}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000146}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000158}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0017-000000000317}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000318}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000339}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000343}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000347}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000351}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000355}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000359}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000363}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000367}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000371}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000375}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000379}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000383}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000387}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000391}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000395}, !- Outlet Branch Name 16 - {00000000-0000-0000-0017-000000000399}, !- Outlet Branch Name 17 - {00000000-0000-0000-0017-000000000403}, !- Outlet Branch Name 18 - {00000000-0000-0000-0017-000000000407}, !- Outlet Branch Name 19 - {00000000-0000-0000-0017-000000000411}; !- Outlet Branch Name 20 + {00000000-0000-0000-0017-000000000149}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000150}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000171}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000175}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000179}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000183}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000187}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000191}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000195}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000199}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000203}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000207}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000211}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000215}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000219}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000223}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000227}, !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000231}, !- Outlet Branch Name 17 + {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 18 + {00000000-0000-0000-0017-000000000239}, !- Outlet Branch Name 19 + {00000000-0000-0000-0017-000000000243}; !- Outlet Branch Name 20 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle BTAP-Ext-DaylightDiffuser, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000002}, !- Handle BTAP-Ext-DaylightDiffuser:U=0.190 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 + {00000000-0000-0000-0096-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000003}, !- Handle BTAP-Ext-DaylightDomes, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000004}, !- Handle BTAP-Ext-DaylightDomes:U=0.190 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 + {00000000-0000-0000-0096-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000005}, !- Handle BTAP-Ext-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000018}, !- Layer 1 - {00000000-0000-0000-0048-000000000013}; !- Layer 2 + {00000000-0000-0000-0043-000000000018}, !- Layer 1 + {00000000-0000-0000-0044-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000006}, !- Handle BTAP-Ext-Door:U-1.9, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000017}, !- Layer 1 - {00000000-0000-0000-0048-000000000011}; !- Layer 2 + {00000000-0000-0000-0043-000000000017}, !- Layer 1 + {00000000-0000-0000-0044-000000000011}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000007}, !- Handle BTAP-Ext-FixedWindow, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000008}, !- Handle BTAP-Ext-FixedWindow:U=0.190 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 + {00000000-0000-0000-0096-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000009}, !- Handle BTAP-Ext-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000013}, !- Layer 1 - {00000000-0000-0000-0047-000000000008}, !- Layer 2 - {00000000-0000-0000-0048-000000000007}; !- Layer 3 + {00000000-0000-0000-0044-000000000013}, !- Layer 1 + {00000000-0000-0000-0043-000000000008}, !- Layer 2 + {00000000-0000-0000-0044-000000000007}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000010}, !- Handle BTAP-Ext-Floor-Mass:U-0.162, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000008}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}, !- Layer 2 - {00000000-0000-0000-0048-000000000003}; !- Layer 3 + {00000000-0000-0000-0044-000000000008}, !- Layer 1 + {00000000-0000-0000-0043-000000000007}, !- Layer 2 + {00000000-0000-0000-0044-000000000003}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000011}, !- Handle BTAP-Ext-GlassDoors, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000012}, !- Handle BTAP-Ext-GlassDoors:U=0.190 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 + {00000000-0000-0000-0096-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000013}, !- Handle BTAP-Ext-OverHeadDoor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000013}; !- Layer 1 + {00000000-0000-0000-0044-000000000013}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000014}, !- Handle BTAP-Ext-OverHeadDoor:U-1.9, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000012}; !- Layer 1 + {00000000-0000-0000-0044-000000000012}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000015}, !- Handle BTAP-Ext-Roof-Metal, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000024}, !- Layer 1 - {00000000-0000-0000-0048-000000000013}; !- Layer 2 + {00000000-0000-0000-0043-000000000024}, !- Layer 1 + {00000000-0000-0000-0044-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000016}, !- Handle BTAP-Ext-Roof-Metal:U-0.138, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000023}, !- Layer 1 - {00000000-0000-0000-0048-000000000010}; !- Layer 2 + {00000000-0000-0000-0043-000000000023}, !- Layer 1 + {00000000-0000-0000-0044-000000000010}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000017}, !- Handle BTAP-Ext-Skylights, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000018}, !- Handle BTAP-Ext-Skylights:U=0.190 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 + {00000000-0000-0000-0096-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000019}, !- Handle BTAP-Ext-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000006}, !- Layer 1 - {00000000-0000-0000-0047-000000000014}, !- Layer 2 - {00000000-0000-0000-0048-000000000013}, !- Layer 3 - {00000000-0000-0000-0047-000000000002}; !- Layer 4 + {00000000-0000-0000-0043-000000000006}, !- Layer 1 + {00000000-0000-0000-0043-000000000014}, !- Layer 2 + {00000000-0000-0000-0044-000000000013}, !- Layer 3 + {00000000-0000-0000-0043-000000000002}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000020}, !- Handle BTAP-Ext-Wall-Mass:U-0.21, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000005}, !- Layer 1 - {00000000-0000-0000-0047-000000000013}, !- Layer 2 - {00000000-0000-0000-0048-000000000009}, !- Layer 3 - {00000000-0000-0000-0047-000000000001}; !- Layer 4 + {00000000-0000-0000-0043-000000000005}, !- Layer 1 + {00000000-0000-0000-0043-000000000013}, !- Layer 2 + {00000000-0000-0000-0044-000000000009}, !- Layer 3 + {00000000-0000-0000-0043-000000000001}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000021}, !- Handle BTAP-Grnd-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000012}, !- Layer 1 - {00000000-0000-0000-0048-000000000007}; !- Layer 2 + {00000000-0000-0000-0043-000000000012}, !- Layer 1 + {00000000-0000-0000-0044-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000022}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000009}, !- Layer 1 - {00000000-0000-0000-0048-000000000004}; !- Layer 2 + {00000000-0000-0000-0043-000000000009}, !- Layer 1 + {00000000-0000-0000-0044-000000000004}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000023}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000009}, !- Layer 1 - {00000000-0000-0000-0047-000000000016}; !- Layer 2 + {00000000-0000-0000-0043-000000000009}, !- Layer 1 + {00000000-0000-0000-0043-000000000016}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000024}, !- Handle BTAP-Grnd-Roof-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000012}, !- Layer 1 - {00000000-0000-0000-0048-000000000007}; !- Layer 2 + {00000000-0000-0000-0043-000000000012}, !- Layer 1 + {00000000-0000-0000-0044-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000025}, !- Handle BTAP-Grnd-Roof-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000011}, !- Layer 1 - {00000000-0000-0000-0048-000000000006}; !- Layer 2 + {00000000-0000-0000-0043-000000000011}, !- Layer 1 + {00000000-0000-0000-0044-000000000006}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000026}, !- Handle BTAP-Grnd-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000012}, !- Layer 1 - {00000000-0000-0000-0048-000000000007}; !- Layer 2 + {00000000-0000-0000-0043-000000000012}, !- Layer 1 + {00000000-0000-0000-0044-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000027}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000010}, !- Layer 1 - {00000000-0000-0000-0048-000000000005}; !- Layer 2 + {00000000-0000-0000-0043-000000000010}, !- Layer 1 + {00000000-0000-0000-0044-000000000005}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000028}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000010}, !- Layer 1 - {00000000-0000-0000-0047-000000000015}; !- Layer 2 + {00000000-0000-0000-0043-000000000010}, !- Layer 1 + {00000000-0000-0000-0043-000000000015}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000029}, !- Handle BTAP-Int-Ceiling, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000007}, !- Layer 1 - {00000000-0000-0000-0047-000000000003}; !- Layer 2 + {00000000-0000-0000-0044-000000000007}, !- Layer 1 + {00000000-0000-0000-0043-000000000003}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000030}, !- Handle BTAP-Int-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000021}; !- Layer 1 + {00000000-0000-0000-0043-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000031}, !- Handle BTAP-Int-Floor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000003}, !- Layer 1 - {00000000-0000-0000-0048-000000000007}; !- Layer 2 + {00000000-0000-0000-0043-000000000003}, !- Layer 1 + {00000000-0000-0000-0044-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000032}, !- Handle BTAP-Int-Partition, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000021}; !- Layer 1 + {00000000-0000-0000-0043-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000033}, !- Handle BTAP-Int-Wall, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000019}, !- Layer 1 - {00000000-0000-0000-0047-000000000019}; !- Layer 2 + {00000000-0000-0000-0043-000000000019}, !- Layer 1 + {00000000-0000-0000-0043-000000000019}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000034}, !- Handle BTAP-Int-Window, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000035}, !- Handle Basement Floor construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000022}, !- Layer 1 - {00000000-0000-0000-0048-000000000001}; !- Layer 2 + {00000000-0000-0000-0043-000000000022}, !- Layer 1 + {00000000-0000-0000-0044-000000000001}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000036}, !- Handle Basement Wall construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000022}; !- Layer 1 + {00000000-0000-0000-0043-000000000022}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000037}, !- Handle Floor Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000001}, !- Layer 1 - {00000000-0000-0000-0047-000000000004}, !- Layer 2 - {00000000-0000-0000-0048-000000000002}; !- Layer 3 + {00000000-0000-0000-0044-000000000001}, !- Layer 1 + {00000000-0000-0000-0043-000000000004}, !- Layer 2 + {00000000-0000-0000-0044-000000000002}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000038}, !- Handle Wall Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000020}, !- Layer 1 - {00000000-0000-0000-0047-000000000020}; !- Layer 2 + {00000000-0000-0000-0043-000000000020}, !- Layer 1 + {00000000-0000-0000-0043-000000000020}; !- Layer 2 OS:Controller:MechanicalVentilation, {00000000-0000-0000-0021-000000000001}, !- Handle Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000004}, !- Handle - Controller Mechanical Ventilation 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000005}, !- Handle - Controller Mechanical Ventilation 5, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000027}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - NoEconomizer, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} - 64000, !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000031}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000028}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000004}, !- Handle - Controller Outdoor Air 4, !- Name + {00000000-0000-0000-0022-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name @@ -4950,10 +2640,10 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000029}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0059-000000000024}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000004}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -4963,27 +2653,27 @@ OS:Controller:OutdoorAir, InterlockedWithMechanicalCooling; !- Economizer Operation Staging OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000005}, !- Handle - Controller Outdoor Air 5, !- Name + {00000000-0000-0000-0022-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name , !- Actuator Node Name autosize, !- Minimum Outdoor Air Flow Rate {m3/s} Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type + NoEconomizer, !- Economizer Control Type ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} , !- Economizer Maximum Limit Dewpoint Temperature {C} , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000030}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0059-000000000025}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000005}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -5005,45 +2695,6 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000002}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0015-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000003}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0015-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000004}, !- Handle - Controller Water Coil 4, !- Name - {00000000-0000-0000-0015-000000000004}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0024-000000000001}, !- Handle Cooling Tower Single Speed 1, !- Name @@ -5051,7 +2702,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000104}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 30219.6380386463, !- Fan Power at Design Air Flow Rate {W} + 259.740244532758, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -5069,7 +2720,7 @@ OS:CoolingTower:SingleSpeed, , !- Blowdown Makeup Water Usage Schedule Name , !- Outdoor Air Inlet Node Name FanCycling, !- Capacity Control - 2, !- Number of Cells + 1, !- Number of Cells MinimalCell, !- Cell Control 0.33, !- Cell Minimum Water Flow Rate Fraction 2.5, !- Cell Maximum Water Flow Rate Fraction @@ -5198,34 +2849,6 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0025-000000000009}, !- Handle - WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name - 0.707908, !- Coefficient1 Constant - -0.00200657, !- Coefficient2 x - -0.00259605, !- Coefficient3 x**2 - 0.0300588, !- Coefficient4 y - -0.00105643, !- Coefficient5 y**2 - 0.0020457, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000010}, !- Handle - WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name - 0.560523, !- Coefficient1 Constant - -0.0137816, !- Coefficient2 x - 6.56424e-05, !- Coefficient3 x**2 - 0.0132194, !- Coefficient4 y - 0.000268596, !- Coefficient5 y**2 - -0.000501131, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000011}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -5239,7 +2862,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000012}, !- Handle + {00000000-0000-0000-0025-000000000010}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -5282,26 +2905,6 @@ OS:Curve:Cubic, 0.68, !- Minimum Value of x 1; !- Maximum Value of x -OS:Curve:Cubic, - {00000000-0000-0000-0026-000000000004}, !- Handle - VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name - -4.1457, !- Coefficient1 Constant - 16.803, !- Coefficient2 x - -19.471, !- Coefficient3 x**2 - 7.8488, !- Coefficient4 x**3 - 0.5, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0026-000000000005}, !- Handle - VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name - -0.3477, !- Coefficient1 Constant - 4.0976, !- Coefficient2 x - -5.0024, !- Coefficient3 x**2 - 2.268, !- Coefficient4 x**3 - 0.22, !- Minimum Value of x - 1; !- Maximum Value of x - OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000001}, !- Handle Curve Quadratic 1, !- Name @@ -5358,15 +2961,6 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000007}, !- Handle - WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name - 0.171493, !- Coefficient1 Constant - 0.588202, !- Coefficient2 x - 0.237373, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0027-000000000008}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -5398,7 +2992,7 @@ OS:DefaultScheduleSet, , !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -5406,13 +3000,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0063-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0063-000000000017}, !- People Activity Level Schedule Name - {00000000-0000-0000-0063-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0063-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0059-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0059-000000000017}, !- People Activity Level Schedule Name + {00000000-0000-0000-0059-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0059-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -5420,13 +3014,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000003}, !- Handle Space Function Office open plan Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0063-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0063-000000000017}, !- People Activity Level Schedule Name - {00000000-0000-0000-0063-000000000013}, !- Lighting Schedule Name - {00000000-0000-0000-0063-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0059-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0059-000000000017}, !- People Activity Level Schedule Name + {00000000-0000-0000-0059-000000000013}, !- Lighting Schedule Name + {00000000-0000-0000-0059-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -5535,7 +3129,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name {00000000-0000-0000-0034-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -5544,7 +3138,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000002}, !- Handle Space Function Office open plan Elec Equip, !- Name {00000000-0000-0000-0034-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -5569,157 +3163,13 @@ OS:ElectricEquipment:Definition, , !- Fraction Latent 0.5; !- Fraction Radiant -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name - {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0063-000000000016}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name - {00000000-0000-0000-0063-000000000016}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000005}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_ClgSch0, !- Name - {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000006}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_HtgSch0, !- Name - {00000000-0000-0000-0063-000000000016}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {cb1741c5-beeb-49fd-818f-6f56b094d7d2}<23.9 && {cb1741c5-beeb-49fd-818f-6f56b094d7d2}>1.7, !- Program Line 1 - SET {631614c8-73d6-4999-92e3-11861f4bcae4} = 29.4, !- Program Line 2 - SET {8a2ed5a3-0f47-4308-82e2-58518654ac99} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {cb1741c5-beeb-49fd-818f-6f56b094d7d2}<23.9 && {cb1741c5-beeb-49fd-818f-6f56b094d7d2}>1.7, !- Program Line 4 - SET {631614c8-73d6-4999-92e3-11861f4bcae4} = 29.4, !- Program Line 5 - SET {8a2ed5a3-0f47-4308-82e2-58518654ac99} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {cb1741c5-beeb-49fd-818f-6f56b094d7d2}<23.9 && {cb1741c5-beeb-49fd-818f-6f56b094d7d2}>1.7, !- Program Line 7 - SET {631614c8-73d6-4999-92e3-11861f4bcae4} = 29.4, !- Program Line 8 - SET {8a2ed5a3-0f47-4308-82e2-58518654ac99} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {cb1741c5-beeb-49fd-818f-6f56b094d7d2}<23.9 && {cb1741c5-beeb-49fd-818f-6f56b094d7d2}>1.7, !- Program Line 10 - SET {631614c8-73d6-4999-92e3-11861f4bcae4} = 29.4, !- Program Line 11 - SET {8a2ed5a3-0f47-4308-82e2-58518654ac99} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {631614c8-73d6-4999-92e3-11861f4bcae4} = NULL, !- Program Line 14 - SET {8a2ed5a3-0f47-4308-82e2-58518654ac99} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {732ab7aa-dae5-4c71-ba72-a8da5bf90e25}<23.9 && {732ab7aa-dae5-4c71-ba72-a8da5bf90e25}>1.7, !- Program Line 1 - SET {e2b02322-f872-43a1-8f2a-b8c803a2b3cd} = 29.4, !- Program Line 2 - SET {2f9226e3-c0e6-4cf8-aebb-6967cd57c51f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {732ab7aa-dae5-4c71-ba72-a8da5bf90e25}<23.9 && {732ab7aa-dae5-4c71-ba72-a8da5bf90e25}>1.7, !- Program Line 4 - SET {e2b02322-f872-43a1-8f2a-b8c803a2b3cd} = 29.4, !- Program Line 5 - SET {2f9226e3-c0e6-4cf8-aebb-6967cd57c51f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {732ab7aa-dae5-4c71-ba72-a8da5bf90e25}<23.9 && {732ab7aa-dae5-4c71-ba72-a8da5bf90e25}>1.7, !- Program Line 7 - SET {e2b02322-f872-43a1-8f2a-b8c803a2b3cd} = 29.4, !- Program Line 8 - SET {2f9226e3-c0e6-4cf8-aebb-6967cd57c51f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {732ab7aa-dae5-4c71-ba72-a8da5bf90e25}<23.9 && {732ab7aa-dae5-4c71-ba72-a8da5bf90e25}>1.7, !- Program Line 10 - SET {e2b02322-f872-43a1-8f2a-b8c803a2b3cd} = 29.4, !- Program Line 11 - SET {2f9226e3-c0e6-4cf8-aebb-6967cd57c51f} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {e2b02322-f872-43a1-8f2a-b8c803a2b3cd} = NULL, !- Program Line 14 - SET {2f9226e3-c0e6-4cf8-aebb-6967cd57c51f} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {26ca30fc-62f2-488d-b11a-543d847ba49d}<23.9 && {26ca30fc-62f2-488d-b11a-543d847ba49d}>1.7, !- Program Line 1 - SET {e50f94d1-24cf-4458-8330-2a704643f4bb} = 29.4, !- Program Line 2 - SET {34c4fb0a-9090-4e03-8f97-c6a49f8050d3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {26ca30fc-62f2-488d-b11a-543d847ba49d}<23.9 && {26ca30fc-62f2-488d-b11a-543d847ba49d}>1.7, !- Program Line 4 - SET {e50f94d1-24cf-4458-8330-2a704643f4bb} = 29.4, !- Program Line 5 - SET {34c4fb0a-9090-4e03-8f97-c6a49f8050d3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {26ca30fc-62f2-488d-b11a-543d847ba49d}<23.9 && {26ca30fc-62f2-488d-b11a-543d847ba49d}>1.7, !- Program Line 7 - SET {e50f94d1-24cf-4458-8330-2a704643f4bb} = 29.4, !- Program Line 8 - SET {34c4fb0a-9090-4e03-8f97-c6a49f8050d3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {26ca30fc-62f2-488d-b11a-543d847ba49d}<23.9 && {26ca30fc-62f2-488d-b11a-543d847ba49d}>1.7, !- Program Line 10 - SET {e50f94d1-24cf-4458-8330-2a704643f4bb} = 29.4, !- Program Line 11 - SET {34c4fb0a-9090-4e03-8f97-c6a49f8050d3} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {e50f94d1-24cf-4458-8330-2a704643f4bb} = NULL, !- Program Line 14 - SET {34c4fb0a-9090-4e03-8f97-c6a49f8050d3} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0036-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0036-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0036-000000000003}; !- Program Name 1 - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0038-000000000001}, !- Handle - OAT, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0038-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0038-000000000003}, !- Handle - OAT_2, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - OS:Facility, - {00000000-0000-0000-0039-000000000001}; !- Handle + {00000000-0000-0000-0035-000000000001}; !- Handle OS:Fan:ConstantVolume, - {00000000-0000-0000-0040-000000000001}, !- Handle + {00000000-0000-0000-0036-000000000001}, !- Handle Fan Constant Volume 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name 0.39975, !- Fan Total Efficiency 640, !- Pressure Rise {Pa} AutoSize, !- Maximum Flow Rate {m3/s} @@ -5730,72 +3180,9 @@ OS:Fan:ConstantVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000162}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000163}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000218}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000219}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000003}, !- Handle - Sys6 Return Fan 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000274}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000275}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000004}, !- Handle + {00000000-0000-0000-0037-000000000001}, !- Handle Sys6 Return Fan, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency 250, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -5814,72 +3201,9 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000005}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000157}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000155}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000006}, !- Handle - Sys6 Supply Fan 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000213}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000211}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000007}, !- Handle - Sys6 Supply Fan 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000269}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000267}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000008}, !- Handle + {00000000-0000-0000-0037-000000000002}, !- Handle Sys6 Supply Fan, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -5898,122 +3222,44 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Foundation:Kiva, - {00000000-0000-0000-0042-000000000001}, !- Handle + {00000000-0000-0000-0038-000000000001}, !- Handle Bldg Kiva Foundation, !- Name , !- Initial Indoor Air Temperature {C} , !- Interior Horizontal Insulation Material Name - , !- Interior Horizontal Insulation Depth {m} - , !- Interior Horizontal Insulation Width {m} - , !- Interior Vertical Insulation Material Name - , !- Interior Vertical Insulation Depth {m} - , !- Exterior Horizontal Insulation Material Name - , !- Exterior Horizontal Insulation Depth {m} - , !- Exterior Horizontal Insulation Width {m} - , !- Exterior Vertical Insulation Material Name - , !- Exterior Vertical Insulation Depth {m} - 0, !- Wall Height Above Grade {m} - 0, !- Wall Depth Below Slab {m} - , !- Footing Wall Construction Name - , !- Footing Material Name - ; !- Footing Depth {m} - -OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0043-000000000001}, !- Handle - , !- Soil Conductivity {W/m-K} - , !- Soil Density {kg/m3} - , !- Soil Specific Heat {J/kg-K} - , !- Ground Solar Absorptivity {dimensionless} - , !- Ground Thermal Absorptivity {dimensionless} - , !- Ground Surface Roughness {m} - , !- Far-Field Width {m} - , !- Deep-Ground Boundary Condition - , !- Deep-Ground Depth {m} - , !- Minimum Cell Dimension {m} - , !- Maximum Cell Growth Coefficient {dimensionless} - ; !- Simulation Timestep - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0044-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000415}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000416}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000419}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000420}, !- Exhaust Air Outlet Node - 556.536604212459, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0044-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000427}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000428}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000431}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000432}, !- Exhaust Air Outlet Node - 1868.20312072616, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0044-000000000003}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000433}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000434}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000437}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000438}, !- Exhaust Air Outlet Node - 18232.0312072616, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout + , !- Interior Horizontal Insulation Depth {m} + , !- Interior Horizontal Insulation Width {m} + , !- Interior Vertical Insulation Material Name + , !- Interior Vertical Insulation Depth {m} + , !- Exterior Horizontal Insulation Material Name + , !- Exterior Horizontal Insulation Depth {m} + , !- Exterior Horizontal Insulation Width {m} + , !- Exterior Vertical Insulation Material Name + , !- Exterior Vertical Insulation Depth {m} + 0, !- Wall Height Above Grade {m} + 0, !- Wall Depth Below Slab {m} + , !- Footing Wall Construction Name + , !- Footing Material Name + ; !- Footing Depth {m} + +OS:Foundation:Kiva:Settings, + {00000000-0000-0000-0039-000000000001}, !- Handle + , !- Soil Conductivity {W/m-K} + , !- Soil Density {kg/m3} + , !- Soil Specific Heat {J/kg-K} + , !- Ground Solar Absorptivity {dimensionless} + , !- Ground Thermal Absorptivity {dimensionless} + , !- Ground Surface Roughness {m} + , !- Far-Field Width {m} + , !- Deep-Ground Boundary Condition + , !- Deep-Ground Depth {m} + , !- Minimum Cell Dimension {m} + , !- Maximum Cell Growth Coefficient {dimensionless} + ; !- Simulation Timestep OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0044-000000000004}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + {00000000-0000-0000-0040-000000000001}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} @@ -6023,11 +3269,11 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000439}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000440}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000443}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000444}, !- Exhaust Air Outlet Node - 1868.20312072616, !- Nominal Electric Power {W} + {00000000-0000-0000-0017-000000000247}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000248}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000251}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000252}, !- Exhaust Air Outlet Node + 556.536604212459, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type ExhaustOnly, !- Frost Control Type @@ -6037,9 +3283,9 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, Yes; !- Economizer Lockout OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0044-000000000005}, !- Handle + {00000000-0000-0000-0040-000000000002}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} @@ -6049,10 +3295,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000421}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000422}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000425}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000426}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0017-000000000253}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000254}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000257}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000258}, !- Exhaust Air Outlet Node 449.90062893127, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -6063,27 +3309,27 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, Yes; !- Economizer Lockout OS:Lights, - {00000000-0000-0000-0045-000000000001}, !- Handle + {00000000-0000-0000-0041-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Lights, !- Name - {00000000-0000-0000-0046-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0042-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights, - {00000000-0000-0000-0045-000000000002}, !- Handle + {00000000-0000-0000-0041-000000000002}, !- Handle Space Function Office open plan Lights, !- Name - {00000000-0000-0000-0046-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0042-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights:Definition, - {00000000-0000-0000-0046-000000000001}, !- Handle + {00000000-0000-0000-0042-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -6093,7 +3339,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Lights:Definition, - {00000000-0000-0000-0046-000000000002}, !- Handle + {00000000-0000-0000-0042-000000000002}, !- Handle Space Function Office open plan Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -6103,7 +3349,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Material, - {00000000-0000-0000-0047-000000000001}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Handle 1/2IN Gypsum 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -6115,7 +3361,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000002}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Handle 1/2IN Gypsum, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -6127,7 +3373,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000003}, !- Handle + {00000000-0000-0000-0043-000000000003}, !- Handle 100mm Normalweight concrete floor 1, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -6136,7 +3382,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0047-000000000004}, !- Handle + {00000000-0000-0000-0043-000000000004}, !- Handle 100mm Normalweight concrete floor, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -6145,7 +3391,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0047-000000000005}, !- Handle + {00000000-0000-0000-0043-000000000005}, !- Handle 1IN Stucco 1, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -6157,7 +3403,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000006}, !- Handle + {00000000-0000-0000-0043-000000000006}, !- Handle 1IN Stucco, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -6169,7 +3415,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000007}, !- Handle + {00000000-0000-0000-0043-000000000007}, !- Handle 4 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -6181,7 +3427,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000008}, !- Handle + {00000000-0000-0000-0043-000000000008}, !- Handle 4 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -6193,7 +3439,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000009}, !- Handle + {00000000-0000-0000-0043-000000000009}, !- Handle 6 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -6205,7 +3451,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000010}, !- Handle + {00000000-0000-0000-0043-000000000010}, !- Handle 6 in. Normalweight Concrete Floor 2, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -6217,7 +3463,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000011}, !- Handle + {00000000-0000-0000-0043-000000000011}, !- Handle 6 in. Normalweight Concrete Floor 3, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -6229,7 +3475,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000012}, !- Handle + {00000000-0000-0000-0043-000000000012}, !- Handle 6 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -6241,7 +3487,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000013}, !- Handle + {00000000-0000-0000-0043-000000000013}, !- Handle 8IN CONCRETE HW RefBldg 1, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -6253,7 +3499,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000014}, !- Handle + {00000000-0000-0000-0043-000000000014}, !- Handle 8IN CONCRETE HW RefBldg, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -6265,7 +3511,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000015}, !- Handle + {00000000-0000-0000-0043-000000000015}, !- Handle Expanded Polystyrene 1, !- Name MediumSmooth, !- Roughness 0.100199429303091, !- Thickness {m} @@ -6274,7 +3520,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0047-000000000016}, !- Handle + {00000000-0000-0000-0043-000000000016}, !- Handle Expanded Polystyrene, !- Name MediumSmooth, !- Roughness 0.0363958681740979, !- Thickness {m} @@ -6283,7 +3529,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0047-000000000017}, !- Handle + {00000000-0000-0000-0043-000000000017}, !- Handle F08 Metal surface 1, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -6295,7 +3541,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000018}, !- Handle + {00000000-0000-0000-0043-000000000018}, !- Handle F08 Metal surface, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -6307,7 +3553,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000019}, !- Handle + {00000000-0000-0000-0043-000000000019}, !- Handle G01 13mm gypsum board 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -6319,7 +3565,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000020}, !- Handle + {00000000-0000-0000-0043-000000000020}, !- Handle G01 13mm gypsum board, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -6331,7 +3577,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000021}, !- Handle + {00000000-0000-0000-0043-000000000021}, !- Handle G05 25mm wood, !- Name MediumSmooth, !- Roughness 0.0254, !- Thickness {m} @@ -6343,7 +3589,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000022}, !- Handle + {00000000-0000-0000-0043-000000000022}, !- Handle M10 200mm concrete block basement wall, !- Name MediumRough, !- Roughness 0.2032, !- Thickness {m} @@ -6352,7 +3598,7 @@ OS:Material, 912; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0047-000000000023}, !- Handle + {00000000-0000-0000-0043-000000000023}, !- Handle Metal Roof Surface 1, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -6364,7 +3610,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000024}, !- Handle + {00000000-0000-0000-0043-000000000024}, !- Handle Metal Roof Surface, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -6376,7 +3622,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000001}, !- Handle + {00000000-0000-0000-0044-000000000001}, !- Handle CP02 CARPET PAD, !- Name VeryRough, !- Roughness 0.21648, !- Thermal Resistance {m2-K/W} @@ -6385,7 +3631,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000002}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Handle Nonres_Floor_Insulation, !- Name MediumSmooth, !- Roughness 2.88291975297193, !- Thermal Resistance {m2-K/W} @@ -6394,7 +3640,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000003}, !- Handle + {00000000-0000-0000-0044-000000000003}, !- Handle Typical Carpet Pad 1, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -6403,7 +3649,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000004}, !- Handle + {00000000-0000-0000-0044-000000000004}, !- Handle Typical Carpet Pad 2, !- Name Smooth, !- Roughness 1.25502993703786, !- Thermal Resistance {m2-K/W} @@ -6412,7 +3658,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000005}, !- Handle + {00000000-0000-0000-0044-000000000005}, !- Handle Typical Carpet Pad 3, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -6421,7 +3667,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000006}, !- Handle + {00000000-0000-0000-0044-000000000006}, !- Handle Typical Carpet Pad 4, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -6430,7 +3676,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000007}, !- Handle + {00000000-0000-0000-0044-000000000007}, !- Handle Typical Carpet Pad, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -6439,7 +3685,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000008}, !- Handle + {00000000-0000-0000-0044-000000000008}, !- Handle Typical Insulation 1, !- Name Smooth, !- Roughness 5.91237683519488, !- Thermal Resistance {m2-K/W} @@ -6448,7 +3694,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000009}, !- Handle + {00000000-0000-0000-0044-000000000009}, !- Handle Typical Insulation 2, !- Name Smooth, !- Roughness 4.49096231241638, !- Thermal Resistance {m2-K/W} @@ -6457,7 +3703,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000010}, !- Handle + {00000000-0000-0000-0044-000000000010}, !- Handle Typical Insulation 3, !- Name Smooth, !- Roughness 7.24635914374968, !- Thermal Resistance {m2-K/W} @@ -6466,7 +3712,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000011}, !- Handle + {00000000-0000-0000-0044-000000000011}, !- Handle Typical Insulation 4, !- Name Smooth, !- Roughness 0.526298121629161, !- Thermal Resistance {m2-K/W} @@ -6475,7 +3721,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000012}, !- Handle + {00000000-0000-0000-0044-000000000012}, !- Handle Typical Insulation 5, !- Name Smooth, !- Roughness 0.526315789473684, !- Thermal Resistance {m2-K/W} @@ -6484,7 +3730,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000013}, !- Handle + {00000000-0000-0000-0044-000000000013}, !- Handle Typical Insulation, !- Name Smooth, !- Roughness 0.101874652714525, !- Thermal Resistance {m2-K/W} @@ -6493,1480 +3739,856 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:ModelObjectList, - {00000000-0000-0000-0049-000000000001}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Handle Availability Manager Night Cycle 1 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000002}, !- Handle + {00000000-0000-0000-0045-000000000002}, !- Handle Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000003}, !- Handle + {00000000-0000-0000-0045-000000000003}, !- Handle Availability Manager Night Cycle 1 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000004}, !- Handle + {00000000-0000-0000-0045-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000005}, !- Handle + {00000000-0000-0000-0045-000000000005}, !- Handle Availability Manager Night Cycle 2 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000006}, !- Handle + {00000000-0000-0000-0045-000000000006}, !- Handle Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000007}, !- Handle + {00000000-0000-0000-0045-000000000007}, !- Handle Availability Manager Night Cycle 2 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000008}, !- Handle + {00000000-0000-0000-0045-000000000008}, !- Handle Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000013}, !- Handle - Availability Manager Night Cycle 4 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000014}, !- Handle - Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000015}, !- Handle - Availability Manager Night Cycle 4 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000016}, !- Handle - Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000017}, !- Handle - Availability Manager Night Cycle 5 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000018}, !- Handle - Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000019}, !- Handle - Availability Manager Night Cycle 5 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000020}, !- Handle - Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name - OS:Node, - {00000000-0000-0000-0050-000000000001}, !- Handle + {00000000-0000-0000-0046-000000000001}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000314}, !- Inlet Port - {00000000-0000-0000-0017-000000000323}; !- Outlet Port + {00000000-0000-0000-0017-000000000146}, !- Inlet Port + {00000000-0000-0000-0017-000000000155}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000002}, !- Handle + {00000000-0000-0000-0046-000000000002}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000324}, !- Inlet Port - {00000000-0000-0000-0017-000000000325}; !- Outlet Port + {00000000-0000-0000-0017-000000000156}, !- Inlet Port + {00000000-0000-0000-0017-000000000157}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000003}, !- Handle + {00000000-0000-0000-0046-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000004}, !- Handle + {00000000-0000-0000-0046-000000000004}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000005}, !- Handle + {00000000-0000-0000-0046-000000000005}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000027}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000006}, !- Handle + {00000000-0000-0000-0046-000000000006}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000140}, !- Inlet Port {00000000-0000-0000-0017-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000007}, !- Handle + {00000000-0000-0000-0046-000000000007}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000036}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000008}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000172}, !- Inlet Port - {00000000-0000-0000-0017-000000000173}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000009}, !- Handle + {00000000-0000-0000-0046-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000010}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000184}, !- Inlet Port - {00000000-0000-0000-0017-000000000185}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000011}, !- Handle + {00000000-0000-0000-0046-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000012}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000166}, !- Inlet Port - {00000000-0000-0000-0017-000000000167}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000013}, !- Handle + {00000000-0000-0000-0046-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000014}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000190}, !- Inlet Port - {00000000-0000-0000-0017-000000000191}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000015}, !- Handle + {00000000-0000-0000-0046-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000016}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000178}, !- Inlet Port - {00000000-0000-0000-0017-000000000179}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000017}, !- Handle + {00000000-0000-0000-0046-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000045}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000018}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000196}, !- Inlet Port - {00000000-0000-0000-0017-000000000197}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000019}, !- Handle + {00000000-0000-0000-0046-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000024}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000020}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000240}, !- Inlet Port - {00000000-0000-0000-0017-000000000241}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000021}, !- Handle + {00000000-0000-0000-0046-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000033}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000022}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000234}, !- Inlet Port - {00000000-0000-0000-0017-000000000235}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000023}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000035}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000024}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000228}, !- Inlet Port - {00000000-0000-0000-0017-000000000229}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000025}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000040}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000026}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000222}, !- Inlet Port - {00000000-0000-0000-0017-000000000223}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000027}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000042}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000028}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000246}, !- Inlet Port - {00000000-0000-0000-0017-000000000247}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000029}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000044}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000030}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000252}, !- Inlet Port - {00000000-0000-0000-0017-000000000253}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000031}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000028}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000032}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000290}, !- Inlet Port - {00000000-0000-0000-0017-000000000291}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000033}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000029}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000034}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000296}, !- Inlet Port - {00000000-0000-0000-0017-000000000297}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000035}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000032}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000036}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000284}, !- Inlet Port - {00000000-0000-0000-0017-000000000285}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000037}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000034}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000038}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000302}, !- Inlet Port - {00000000-0000-0000-0017-000000000303}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000039}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000039}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000040}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000278}, !- Inlet Port - {00000000-0000-0000-0017-000000000279}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000041}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000041}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000042}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000308}, !- Inlet Port - {00000000-0000-0000-0017-000000000309}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000043}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000026}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000044}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000064}, !- Inlet Port - {00000000-0000-0000-0017-000000000065}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000045}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000066}, !- Inlet Port - {00000000-0000-0000-0017-000000000061}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000142}, !- Inlet Port - {00000000-0000-0000-0017-000000000143}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000144}, !- Inlet Port - {00000000-0000-0000-0017-000000000139}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000236}, !- Inlet Port - {00000000-0000-0000-0017-000000000237}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000238}, !- Inlet Port - {00000000-0000-0000-0017-000000000233}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000050}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000242}, !- Inlet Port - {00000000-0000-0000-0017-000000000243}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000051}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000244}, !- Inlet Port - {00000000-0000-0000-0017-000000000239}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000052}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000248}, !- Inlet Port - {00000000-0000-0000-0017-000000000249}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000053}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000250}, !- Inlet Port - {00000000-0000-0000-0017-000000000245}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000054}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000254}, !- Inlet Port - {00000000-0000-0000-0017-000000000255}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000055}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000256}, !- Inlet Port - {00000000-0000-0000-0017-000000000251}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000056}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000280}, !- Inlet Port - {00000000-0000-0000-0017-000000000281}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000057}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000282}, !- Inlet Port - {00000000-0000-0000-0017-000000000277}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000286}, !- Inlet Port - {00000000-0000-0000-0017-000000000287}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000288}, !- Inlet Port - {00000000-0000-0000-0017-000000000283}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000292}, !- Inlet Port - {00000000-0000-0000-0017-000000000293}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000294}, !- Inlet Port - {00000000-0000-0000-0017-000000000289}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000298}, !- Inlet Port - {00000000-0000-0000-0017-000000000299}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000300}, !- Inlet Port - {00000000-0000-0000-0017-000000000295}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000304}, !- Inlet Port - {00000000-0000-0000-0017-000000000305}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000306}, !- Inlet Port - {00000000-0000-0000-0017-000000000301}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000066}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000310}, !- Inlet Port - {00000000-0000-0000-0017-000000000311}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000067}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000312}, !- Inlet Port - {00000000-0000-0000-0017-000000000307}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000068}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000168}, !- Inlet Port - {00000000-0000-0000-0017-000000000169}; !- Outlet Port + {00000000-0000-0000-0017-000000000033}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000069}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000170}, !- Inlet Port - {00000000-0000-0000-0017-000000000165}; !- Outlet Port + {00000000-0000-0000-0046-000000000015}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000035}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000070}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000174}, !- Inlet Port - {00000000-0000-0000-0017-000000000175}; !- Outlet Port + {00000000-0000-0000-0046-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000040}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000071}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000176}, !- Inlet Port - {00000000-0000-0000-0017-000000000171}; !- Outlet Port + {00000000-0000-0000-0046-000000000017}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000042}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000072}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000180}, !- Inlet Port - {00000000-0000-0000-0017-000000000181}; !- Outlet Port + {00000000-0000-0000-0046-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000044}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000073}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000182}, !- Inlet Port - {00000000-0000-0000-0017-000000000177}; !- Outlet Port + {00000000-0000-0000-0046-000000000019}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000028}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000074}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000186}, !- Inlet Port - {00000000-0000-0000-0017-000000000187}; !- Outlet Port + {00000000-0000-0000-0046-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000029}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000075}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000188}, !- Inlet Port - {00000000-0000-0000-0017-000000000183}; !- Outlet Port + {00000000-0000-0000-0046-000000000021}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000032}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000076}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000192}, !- Inlet Port - {00000000-0000-0000-0017-000000000193}; !- Outlet Port + {00000000-0000-0000-0046-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000034}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000077}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000194}, !- Inlet Port - {00000000-0000-0000-0017-000000000189}; !- Outlet Port + {00000000-0000-0000-0046-000000000023}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000039}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000078}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000198}, !- Inlet Port - {00000000-0000-0000-0017-000000000199}; !- Outlet Port + {00000000-0000-0000-0046-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000041}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000079}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000200}, !- Inlet Port - {00000000-0000-0000-0017-000000000195}; !- Outlet Port + {00000000-0000-0000-0046-000000000025}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000026}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000080}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Port - {00000000-0000-0000-0017-000000000225}; !- Outlet Port + {00000000-0000-0000-0046-000000000026}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000064}, !- Inlet Port + {00000000-0000-0000-0017-000000000065}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000081}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000226}, !- Inlet Port - {00000000-0000-0000-0017-000000000221}; !- Outlet Port + {00000000-0000-0000-0046-000000000027}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000066}, !- Inlet Port + {00000000-0000-0000-0017-000000000061}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000082}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000230}, !- Inlet Port - {00000000-0000-0000-0017-000000000231}; !- Outlet Port + {00000000-0000-0000-0046-000000000028}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000142}, !- Inlet Port + {00000000-0000-0000-0017-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000083}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000232}, !- Inlet Port - {00000000-0000-0000-0017-000000000227}; !- Outlet Port + {00000000-0000-0000-0046-000000000029}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000144}, !- Inlet Port + {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000084}, !- Handle + {00000000-0000-0000-0046-000000000030}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000070}, !- Inlet Port {00000000-0000-0000-0017-000000000071}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000085}, !- Handle + {00000000-0000-0000-0046-000000000031}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000073}, !- Inlet Port {00000000-0000-0000-0017-000000000074}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000086}, !- Handle + {00000000-0000-0000-0046-000000000032}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000067}, !- Inlet Port {00000000-0000-0000-0017-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000087}, !- Handle + {00000000-0000-0000-0046-000000000033}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000088}, !- Handle + {00000000-0000-0000-0046-000000000034}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000072}, !- Inlet Port {00000000-0000-0000-0017-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000089}, !- Handle + {00000000-0000-0000-0046-000000000035}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port {00000000-0000-0000-0017-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000090}, !- Handle + {00000000-0000-0000-0046-000000000036}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000127}, !- Inlet Port {00000000-0000-0000-0017-000000000128}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000091}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000151}, !- Inlet Port - {00000000-0000-0000-0017-000000000152}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000092}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000158}, !- Inlet Port - {00000000-0000-0000-0017-000000000159}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000093}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000153}, !- Inlet Port - {00000000-0000-0000-0017-000000000154}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000094}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000207}, !- Inlet Port - {00000000-0000-0000-0017-000000000208}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000095}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000214}, !- Inlet Port - {00000000-0000-0000-0017-000000000215}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000096}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000209}, !- Inlet Port - {00000000-0000-0000-0017-000000000210}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000097}, !- Handle - Coil Cooling Water 4 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000263}, !- Inlet Port - {00000000-0000-0000-0017-000000000264}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000098}, !- Handle - Coil Cooling Water 4 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000270}, !- Inlet Port - {00000000-0000-0000-0017-000000000271}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000099}, !- Handle - Coil Cooling Water 4 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000265}, !- Inlet Port - {00000000-0000-0000-0017-000000000266}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000100}, !- Handle + {00000000-0000-0000-0046-000000000037}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000054}, !- Inlet Port {00000000-0000-0000-0017-000000000055}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000101}, !- Handle - Coil Heating Electric 11 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Port - {00000000-0000-0000-0017-000000000213}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000102}, !- Handle - Coil Heating Electric 18 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000268}, !- Inlet Port - {00000000-0000-0000-0017-000000000269}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000103}, !- Handle + {00000000-0000-0000-0046-000000000038}, !- Handle Coil Heating Electric 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000130}, !- Inlet Port {00000000-0000-0000-0017-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000104}, !- Handle - Coil Heating Electric 4 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000156}, !- Inlet Port - {00000000-0000-0000-0017-000000000157}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000105}, !- Handle - CoilCoolingDXSingleSpeed_dx 110kBtu/hr 9.44EER Outlet Air Node, !- Name + {00000000-0000-0000-0046-000000000039}, !- Handle + CoilCoolingDXSingleSpeed_dx 111kBtu/hr 9.44EER Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000056}, !- Inlet Port {00000000-0000-0000-0017-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000106}, !- Handle + {00000000-0000-0000-0046-000000000040}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000095}, !- Inlet Port {00000000-0000-0000-0017-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000107}, !- Handle + {00000000-0000-0000-0046-000000000041}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000098}, !- Inlet Port {00000000-0000-0000-0017-000000000099}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000108}, !- Handle + {00000000-0000-0000-0046-000000000042}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Port {00000000-0000-0000-0017-000000000100}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000109}, !- Handle + {00000000-0000-0000-0046-000000000043}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000112}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000110}, !- Handle + {00000000-0000-0000-0046-000000000044}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000111}, !- Handle + {00000000-0000-0000-0046-000000000045}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000104}, !- Inlet Port {00000000-0000-0000-0017-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000112}, !- Handle + {00000000-0000-0000-0046-000000000046}, !- Handle Core_bottom WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000339}, !- Inlet Port - {00000000-0000-0000-0017-000000000340}; !- Outlet Port + {00000000-0000-0000-0017-000000000171}, !- Inlet Port + {00000000-0000-0000-0017-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000113}, !- Handle + {00000000-0000-0000-0046-000000000047}, !- Handle Core_bottom WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000341}, !- Inlet Port - {00000000-0000-0000-0017-000000000342}; !- Outlet Port + {00000000-0000-0000-0017-000000000173}, !- Inlet Port + {00000000-0000-0000-0017-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000114}, !- Handle + {00000000-0000-0000-0046-000000000048}, !- Handle Core_mid WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000343}, !- Inlet Port - {00000000-0000-0000-0017-000000000344}; !- Outlet Port + {00000000-0000-0000-0017-000000000175}, !- Inlet Port + {00000000-0000-0000-0017-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000115}, !- Handle + {00000000-0000-0000-0046-000000000049}, !- Handle Core_mid WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000345}, !- Inlet Port - {00000000-0000-0000-0017-000000000346}; !- Outlet Port + {00000000-0000-0000-0017-000000000177}, !- Inlet Port + {00000000-0000-0000-0017-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000116}, !- Handle + {00000000-0000-0000-0046-000000000050}, !- Handle Core_top WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000347}, !- Inlet Port - {00000000-0000-0000-0017-000000000348}; !- Outlet Port + {00000000-0000-0000-0017-000000000179}, !- Inlet Port + {00000000-0000-0000-0017-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000117}, !- Handle + {00000000-0000-0000-0046-000000000051}, !- Handle Core_top WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000349}, !- Inlet Port - {00000000-0000-0000-0017-000000000350}; !- Outlet Port + {00000000-0000-0000-0017-000000000181}, !- Inlet Port + {00000000-0000-0000-0017-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000118}, !- Handle + {00000000-0000-0000-0046-000000000052}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000351}, !- Inlet Port - {00000000-0000-0000-0017-000000000352}; !- Outlet Port + {00000000-0000-0000-0017-000000000183}, !- Inlet Port + {00000000-0000-0000-0017-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000119}, !- Handle + {00000000-0000-0000-0046-000000000053}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000353}, !- Inlet Port - {00000000-0000-0000-0017-000000000354}; !- Outlet Port + {00000000-0000-0000-0017-000000000185}, !- Inlet Port + {00000000-0000-0000-0017-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000120}, !- Handle + {00000000-0000-0000-0046-000000000054}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000355}, !- Inlet Port - {00000000-0000-0000-0017-000000000356}; !- Outlet Port + {00000000-0000-0000-0017-000000000187}, !- Inlet Port + {00000000-0000-0000-0017-000000000188}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000121}, !- Handle + {00000000-0000-0000-0046-000000000055}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000357}, !- Inlet Port - {00000000-0000-0000-0017-000000000358}; !- Outlet Port + {00000000-0000-0000-0017-000000000189}, !- Inlet Port + {00000000-0000-0000-0017-000000000190}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000122}, !- Handle + {00000000-0000-0000-0046-000000000056}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000359}, !- Inlet Port - {00000000-0000-0000-0017-000000000360}; !- Outlet Port + {00000000-0000-0000-0017-000000000191}, !- Inlet Port + {00000000-0000-0000-0017-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000123}, !- Handle + {00000000-0000-0000-0046-000000000057}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000361}, !- Inlet Port - {00000000-0000-0000-0017-000000000362}; !- Outlet Port + {00000000-0000-0000-0017-000000000193}, !- Inlet Port + {00000000-0000-0000-0017-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000124}, !- Handle + {00000000-0000-0000-0046-000000000058}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000363}, !- Inlet Port - {00000000-0000-0000-0017-000000000364}; !- Outlet Port + {00000000-0000-0000-0017-000000000195}, !- Inlet Port + {00000000-0000-0000-0017-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000125}, !- Handle + {00000000-0000-0000-0046-000000000059}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000365}, !- Inlet Port - {00000000-0000-0000-0017-000000000366}; !- Outlet Port + {00000000-0000-0000-0017-000000000197}, !- Inlet Port + {00000000-0000-0000-0017-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000126}, !- Handle + {00000000-0000-0000-0046-000000000060}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000321}, !- Inlet Port - {00000000-0000-0000-0017-000000000322}; !- Outlet Port + {00000000-0000-0000-0017-000000000153}, !- Inlet Port + {00000000-0000-0000-0017-000000000154}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000127}, !- Handle + {00000000-0000-0000-0046-000000000061}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000316}, !- Inlet Port - {00000000-0000-0000-0017-000000000317}; !- Outlet Port + {00000000-0000-0000-0017-000000000148}, !- Inlet Port + {00000000-0000-0000-0017-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000128}, !- Handle + {00000000-0000-0000-0046-000000000062}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000338}, !- Inlet Port - {00000000-0000-0000-0017-000000000319}; !- Outlet Port + {00000000-0000-0000-0017-000000000170}, !- Inlet Port + {00000000-0000-0000-0017-000000000151}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000129}, !- Handle + {00000000-0000-0000-0046-000000000063}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000313}, !- Inlet Port - {00000000-0000-0000-0017-000000000320}; !- Outlet Port + {00000000-0000-0000-0017-000000000145}, !- Inlet Port + {00000000-0000-0000-0017-000000000152}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000130}, !- Handle + {00000000-0000-0000-0046-000000000064}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000335}, !- Inlet Port - {00000000-0000-0000-0017-000000000315}; !- Outlet Port + {00000000-0000-0000-0017-000000000167}, !- Inlet Port + {00000000-0000-0000-0017-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000131}, !- Handle + {00000000-0000-0000-0046-000000000065}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000367}, !- Inlet Port - {00000000-0000-0000-0017-000000000368}; !- Outlet Port + {00000000-0000-0000-0017-000000000199}, !- Inlet Port + {00000000-0000-0000-0017-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000132}, !- Handle + {00000000-0000-0000-0046-000000000066}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000369}, !- Inlet Port - {00000000-0000-0000-0017-000000000370}; !- Outlet Port + {00000000-0000-0000-0017-000000000201}, !- Inlet Port + {00000000-0000-0000-0017-000000000202}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000133}, !- Handle + {00000000-0000-0000-0046-000000000067}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000371}, !- Inlet Port - {00000000-0000-0000-0017-000000000372}; !- Outlet Port + {00000000-0000-0000-0017-000000000203}, !- Inlet Port + {00000000-0000-0000-0017-000000000204}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000134}, !- Handle + {00000000-0000-0000-0046-000000000068}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000373}, !- Inlet Port - {00000000-0000-0000-0017-000000000374}; !- Outlet Port + {00000000-0000-0000-0017-000000000205}, !- Inlet Port + {00000000-0000-0000-0017-000000000206}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000135}, !- Handle + {00000000-0000-0000-0046-000000000069}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000375}, !- Inlet Port - {00000000-0000-0000-0017-000000000376}; !- Outlet Port + {00000000-0000-0000-0017-000000000207}, !- Inlet Port + {00000000-0000-0000-0017-000000000208}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000136}, !- Handle + {00000000-0000-0000-0046-000000000070}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000377}, !- Inlet Port - {00000000-0000-0000-0017-000000000378}; !- Outlet Port + {00000000-0000-0000-0017-000000000209}, !- Inlet Port + {00000000-0000-0000-0017-000000000210}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000137}, !- Handle + {00000000-0000-0000-0046-000000000071}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000379}, !- Inlet Port - {00000000-0000-0000-0017-000000000380}; !- Outlet Port + {00000000-0000-0000-0017-000000000211}, !- Inlet Port + {00000000-0000-0000-0017-000000000212}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000138}, !- Handle + {00000000-0000-0000-0046-000000000072}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000381}, !- Inlet Port - {00000000-0000-0000-0017-000000000382}; !- Outlet Port + {00000000-0000-0000-0017-000000000213}, !- Inlet Port + {00000000-0000-0000-0017-000000000214}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000139}, !- Handle + {00000000-0000-0000-0046-000000000073}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000383}, !- Inlet Port - {00000000-0000-0000-0017-000000000384}; !- Outlet Port + {00000000-0000-0000-0017-000000000215}, !- Inlet Port + {00000000-0000-0000-0017-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000140}, !- Handle + {00000000-0000-0000-0046-000000000074}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000385}, !- Inlet Port - {00000000-0000-0000-0017-000000000386}; !- Outlet Port + {00000000-0000-0000-0017-000000000217}, !- Inlet Port + {00000000-0000-0000-0017-000000000218}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000141}, !- Handle + {00000000-0000-0000-0046-000000000075}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000387}, !- Inlet Port - {00000000-0000-0000-0017-000000000388}; !- Outlet Port + {00000000-0000-0000-0017-000000000219}, !- Inlet Port + {00000000-0000-0000-0017-000000000220}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000142}, !- Handle + {00000000-0000-0000-0046-000000000076}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000389}, !- Inlet Port - {00000000-0000-0000-0017-000000000390}; !- Outlet Port + {00000000-0000-0000-0017-000000000221}, !- Inlet Port + {00000000-0000-0000-0017-000000000222}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000143}, !- Handle + {00000000-0000-0000-0046-000000000077}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000391}, !- Inlet Port - {00000000-0000-0000-0017-000000000392}; !- Outlet Port + {00000000-0000-0000-0017-000000000223}, !- Inlet Port + {00000000-0000-0000-0017-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000144}, !- Handle + {00000000-0000-0000-0046-000000000078}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000393}, !- Inlet Port - {00000000-0000-0000-0017-000000000394}; !- Outlet Port + {00000000-0000-0000-0017-000000000225}, !- Inlet Port + {00000000-0000-0000-0017-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000145}, !- Handle + {00000000-0000-0000-0046-000000000079}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000395}, !- Inlet Port - {00000000-0000-0000-0017-000000000396}; !- Outlet Port + {00000000-0000-0000-0017-000000000227}, !- Inlet Port + {00000000-0000-0000-0017-000000000228}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000146}, !- Handle + {00000000-0000-0000-0046-000000000080}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000397}, !- Inlet Port - {00000000-0000-0000-0017-000000000398}; !- Outlet Port + {00000000-0000-0000-0017-000000000229}, !- Inlet Port + {00000000-0000-0000-0017-000000000230}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000147}, !- Handle + {00000000-0000-0000-0046-000000000081}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000399}, !- Inlet Port - {00000000-0000-0000-0017-000000000400}; !- Outlet Port + {00000000-0000-0000-0017-000000000231}, !- Inlet Port + {00000000-0000-0000-0017-000000000232}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000148}, !- Handle + {00000000-0000-0000-0046-000000000082}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000401}, !- Inlet Port - {00000000-0000-0000-0017-000000000402}; !- Outlet Port + {00000000-0000-0000-0017-000000000233}, !- Inlet Port + {00000000-0000-0000-0017-000000000234}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000149}, !- Handle + {00000000-0000-0000-0046-000000000083}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000403}, !- Inlet Port - {00000000-0000-0000-0017-000000000404}; !- Outlet Port + {00000000-0000-0000-0017-000000000235}, !- Inlet Port + {00000000-0000-0000-0017-000000000236}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000150}, !- Handle + {00000000-0000-0000-0046-000000000084}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000405}, !- Inlet Port - {00000000-0000-0000-0017-000000000406}; !- Outlet Port + {00000000-0000-0000-0017-000000000237}, !- Inlet Port + {00000000-0000-0000-0017-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000151}, !- Handle + {00000000-0000-0000-0046-000000000085}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000407}, !- Inlet Port - {00000000-0000-0000-0017-000000000408}; !- Outlet Port + {00000000-0000-0000-0017-000000000239}, !- Inlet Port + {00000000-0000-0000-0017-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000152}, !- Handle + {00000000-0000-0000-0046-000000000086}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000409}, !- Inlet Port - {00000000-0000-0000-0017-000000000410}; !- Outlet Port + {00000000-0000-0000-0017-000000000241}, !- Inlet Port + {00000000-0000-0000-0017-000000000242}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000153}, !- Handle + {00000000-0000-0000-0046-000000000087}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000411}, !- Inlet Port - {00000000-0000-0000-0017-000000000412}; !- Outlet Port + {00000000-0000-0000-0017-000000000243}, !- Inlet Port + {00000000-0000-0000-0017-000000000244}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000154}, !- Handle + {00000000-0000-0000-0046-000000000088}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000413}, !- Inlet Port - {00000000-0000-0000-0017-000000000414}; !- Outlet Port + {00000000-0000-0000-0017-000000000245}, !- Inlet Port + {00000000-0000-0000-0017-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000155}, !- Handle + {00000000-0000-0000-0046-000000000089}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000085}, !- Inlet Port {00000000-0000-0000-0017-000000000086}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000156}, !- Handle + {00000000-0000-0000-0046-000000000090}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000157}, !- Handle + {00000000-0000-0000-0046-000000000091}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000089}, !- Inlet Port {00000000-0000-0000-0017-000000000090}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000158}, !- Handle + {00000000-0000-0000-0046-000000000092}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000106}, !- Inlet Port {00000000-0000-0000-0017-000000000107}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000159}, !- Handle + {00000000-0000-0000-0046-000000000093}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000108}, !- Inlet Port {00000000-0000-0000-0017-000000000109}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000160}, !- Handle + {00000000-0000-0000-0046-000000000094}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000110}, !- Inlet Port {00000000-0000-0000-0017-000000000111}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000161}, !- Handle + {00000000-0000-0000-0046-000000000095}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000326}, !- Inlet Port - {00000000-0000-0000-0017-000000000327}; !- Outlet Port + {00000000-0000-0000-0017-000000000158}, !- Inlet Port + {00000000-0000-0000-0017-000000000159}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000162}, !- Handle + {00000000-0000-0000-0046-000000000096}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000328}, !- Inlet Port - {00000000-0000-0000-0017-000000000329}; !- Outlet Port + {00000000-0000-0000-0017-000000000160}, !- Inlet Port + {00000000-0000-0000-0017-000000000161}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000163}, !- Handle + {00000000-0000-0000-0046-000000000097}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000318}, !- Inlet Port - {00000000-0000-0000-0017-000000000330}; !- Outlet Port + {00000000-0000-0000-0017-000000000150}, !- Inlet Port + {00000000-0000-0000-0017-000000000162}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000164}, !- Handle + {00000000-0000-0000-0046-000000000098}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000331}, !- Inlet Port - {00000000-0000-0000-0017-000000000332}; !- Outlet Port + {00000000-0000-0000-0017-000000000163}, !- Inlet Port + {00000000-0000-0000-0017-000000000164}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000165}, !- Handle + {00000000-0000-0000-0046-000000000099}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000333}, !- Inlet Port - {00000000-0000-0000-0017-000000000334}; !- Outlet Port + {00000000-0000-0000-0017-000000000165}, !- Inlet Port + {00000000-0000-0000-0017-000000000166}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000166}, !- Handle + {00000000-0000-0000-0046-000000000100}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000336}, !- Inlet Port - {00000000-0000-0000-0017-000000000337}; !- Outlet Port + {00000000-0000-0000-0017-000000000168}, !- Inlet Port + {00000000-0000-0000-0017-000000000169}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000167}, !- Handle - Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0046-000000000101}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000097}, !- Inlet Port {00000000-0000-0000-0017-000000000113}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000168}, !- Handle - Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0046-000000000102}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000114}, !- Inlet Port {00000000-0000-0000-0017-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000169}, !- Handle - Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0046-000000000103}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000078}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000170}, !- Handle - Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0046-000000000104}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000079}, !- Inlet Port {00000000-0000-0000-0017-000000000080}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000171}, !- Handle + {00000000-0000-0000-0046-000000000105}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000076}, !- Inlet Port {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000172}, !- Handle + {00000000-0000-0000-0046-000000000106}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000101}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000173}, !- Handle + {00000000-0000-0000-0046-000000000107}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000116}, !- Inlet Port {00000000-0000-0000-0017-000000000117}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000174}, !- Handle + {00000000-0000-0000-0046-000000000108}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000118}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000175}, !- Handle + {00000000-0000-0000-0046-000000000109}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000081}, !- Inlet Port {00000000-0000-0000-0017-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000176}, !- Handle + {00000000-0000-0000-0046-000000000110}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000083}, !- Inlet Port {00000000-0000-0000-0017-000000000084}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000177}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000163}, !- Inlet Port - {00000000-0000-0000-0017-000000000164}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000178}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Port - {00000000-0000-0000-0017-000000000220}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000179}, !- Handle - Sys6 Return Fan 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000275}, !- Inlet Port - {00000000-0000-0000-0017-000000000276}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000180}, !- Handle + {00000000-0000-0000-0046-000000000111}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000181}, !- Handle + {00000000-0000-0000-0046-000000000112}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000062}, !- Inlet Port {00000000-0000-0000-0017-000000000063}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000182}, !- Handle + {00000000-0000-0000-0046-000000000113}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000183}, !- Handle + {00000000-0000-0000-0046-000000000114}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000184}, !- Handle + {00000000-0000-0000-0046-000000000115}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000185}, !- Handle + {00000000-0000-0000-0046-000000000116}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000059}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000186}, !- Handle + {00000000-0000-0000-0046-000000000117}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000415}; !- Outlet Port + {00000000-0000-0000-0017-000000000247}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000187}, !- Handle + {00000000-0000-0000-0046-000000000118}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000420}, !- Inlet Port + {00000000-0000-0000-0017-000000000252}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000188}, !- Handle + {00000000-0000-0000-0046-000000000119}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000189}, !- Handle + {00000000-0000-0000-0046-000000000120}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000190}, !- Handle + {00000000-0000-0000-0046-000000000121}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000416}, !- Inlet Port - {00000000-0000-0000-0017-000000000417}; !- Outlet Port + {00000000-0000-0000-0017-000000000248}, !- Inlet Port + {00000000-0000-0000-0017-000000000249}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000191}, !- Handle + {00000000-0000-0000-0046-000000000122}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000418}, !- Inlet Port - {00000000-0000-0000-0017-000000000419}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000192}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000147}, !- Inlet Port - {00000000-0000-0000-0017-000000000149}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000193}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000150}, !- Inlet Port - {00000000-0000-0000-0017-000000000148}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000194}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000160}, !- Inlet Port - {00000000-0000-0000-0017-000000000161}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000195}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000427}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000196}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000432}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000197}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000145}, !- Inlet Port - {00000000-0000-0000-0017-000000000162}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000198}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000155}, !- Inlet Port - {00000000-0000-0000-0017-000000000146}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000199}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000203}, !- Inlet Port - {00000000-0000-0000-0017-000000000205}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000200}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000206}, !- Inlet Port - {00000000-0000-0000-0017-000000000204}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000201}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000216}, !- Inlet Port - {00000000-0000-0000-0017-000000000217}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000202}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000433}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000203}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000438}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000204}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000201}, !- Inlet Port - {00000000-0000-0000-0017-000000000218}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000205}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Port - {00000000-0000-0000-0017-000000000202}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000206}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000259}, !- Inlet Port - {00000000-0000-0000-0017-000000000261}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000207}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000262}, !- Inlet Port - {00000000-0000-0000-0017-000000000260}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000208}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000272}, !- Inlet Port - {00000000-0000-0000-0017-000000000273}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000209}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000439}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000210}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000444}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000211}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000257}, !- Inlet Port - {00000000-0000-0000-0017-000000000274}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000212}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000267}, !- Inlet Port - {00000000-0000-0000-0017-000000000258}; !- Outlet Port + {00000000-0000-0000-0017-000000000250}, !- Inlet Port + {00000000-0000-0000-0017-000000000251}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000213}, !- Handle + {00000000-0000-0000-0046-000000000123}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000122}, !- Inlet Port {00000000-0000-0000-0017-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000214}, !- Handle + {00000000-0000-0000-0046-000000000124}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000125}, !- Inlet Port {00000000-0000-0000-0017-000000000123}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000215}, !- Handle + {00000000-0000-0000-0046-000000000125}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000134}, !- Inlet Port {00000000-0000-0000-0017-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000216}, !- Handle + {00000000-0000-0000-0046-000000000126}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000421}; !- Outlet Port + {00000000-0000-0000-0017-000000000253}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000217}, !- Handle + {00000000-0000-0000-0046-000000000127}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000426}, !- Inlet Port + {00000000-0000-0000-0017-000000000258}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000218}, !- Handle + {00000000-0000-0000-0046-000000000128}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000219}, !- Handle + {00000000-0000-0000-0046-000000000129}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000129}, !- Inlet Port {00000000-0000-0000-0017-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000220}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000428}, !- Inlet Port - {00000000-0000-0000-0017-000000000429}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000221}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000430}, !- Inlet Port - {00000000-0000-0000-0017-000000000431}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000222}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000434}, !- Inlet Port - {00000000-0000-0000-0017-000000000435}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000223}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000436}, !- Inlet Port - {00000000-0000-0000-0017-000000000437}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000224}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000440}, !- Inlet Port - {00000000-0000-0000-0017-000000000441}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000225}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000442}, !- Inlet Port - {00000000-0000-0000-0017-000000000443}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000226}, !- Handle + {00000000-0000-0000-0046-000000000130}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000422}, !- Inlet Port - {00000000-0000-0000-0017-000000000423}; !- Outlet Port + {00000000-0000-0000-0017-000000000254}, !- Inlet Port + {00000000-0000-0000-0017-000000000255}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000227}, !- Handle + {00000000-0000-0000-0046-000000000131}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000424}, !- Inlet Port - {00000000-0000-0000-0017-000000000425}; !- Outlet Port + {00000000-0000-0000-0017-000000000256}, !- Inlet Port + {00000000-0000-0000-0017-000000000257}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0051-000000000001}, !- Handle + {00000000-0000-0000-0047-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0052-000000000001}, !- Handle + {00000000-0000-0000-0048-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People, !- Name - {00000000-0000-0000-0053-000000000001}, !- People Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0049-000000000001}, !- People Definition Name + {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0063-000000000026}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0063-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0063-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0059-000000000023}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0059-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0052-000000000002}, !- Handle + {00000000-0000-0000-0048-000000000002}, !- Handle Space Function Office open plan People, !- Name - {00000000-0000-0000-0053-000000000002}, !- People Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0049-000000000002}, !- People Definition Name + {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0063-000000000026}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0063-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0063-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0059-000000000023}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0059-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0053-000000000001}, !- Handle + {00000000-0000-0000-0049-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -7975,7 +4597,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0053-000000000002}, !- Handle + {00000000-0000-0000-0049-000000000002}, !- Handle Space Function Office open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -7984,55 +4606,55 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0017-000000000086}, !- Inlet Node Name {00000000-0000-0000-0017-000000000087}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000002}, !- Handle + {00000000-0000-0000-0050-000000000002}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Node Name {00000000-0000-0000-0017-000000000091}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000003}, !- Handle + {00000000-0000-0000-0050-000000000003}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0017-000000000107}, !- Inlet Node Name {00000000-0000-0000-0017-000000000108}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000004}, !- Handle + {00000000-0000-0000-0050-000000000004}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0017-000000000111}, !- Inlet Node Name {00000000-0000-0000-0017-000000000112}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000005}, !- Handle + {00000000-0000-0000-0050-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0017-000000000327}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000328}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000159}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000160}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000006}, !- Handle + {00000000-0000-0000-0050-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0017-000000000330}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000331}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000162}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000163}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000007}, !- Handle + {00000000-0000-0000-0050-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000334}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000335}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000166}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000167}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000008}, !- Handle + {00000000-0000-0000-0050-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000337}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000338}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000169}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000170}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0051-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -8040,7 +4662,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000087}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0046-000000000033}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8054,7 +4676,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8068,7 +4690,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0055-000000000002}, !- Handle + {00000000-0000-0000-0051-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -8076,7 +4698,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000109}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0046-000000000043}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8090,7 +4712,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8104,7 +4726,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0055-000000000003}, !- Handle + {00000000-0000-0000-0051-000000000003}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -8112,21 +4734,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000130}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0046-000000000064}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000313}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000315}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000145}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000147}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000316}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000319}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000148}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000151}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8140,326 +4762,290 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000005}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0056-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000195}; !- Port 1 + {00000000-0000-0000-0052-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000002}, !- Handle - {00000000-0000-0000-0090-000000000010}; !- HVAC Component + {00000000-0000-0000-0052-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000003}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000196}; !- Port 1 + {00000000-0000-0000-0052-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000004}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0052-000000000004}, !- Handle + {00000000-0000-0000-0086-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000005}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0052-000000000005}, !- Handle + {00000000-0000-0000-0086-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000006}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0052-000000000006}, !- Handle + {00000000-0000-0000-0086-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000007}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- HVAC Component - {00000000-0000-0000-0017-000000000307}; !- Port 1 + {00000000-0000-0000-0052-000000000007}, !- Handle + {00000000-0000-0000-0086-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000008}, !- Handle - {00000000-0000-0000-0090-000000000022}; !- HVAC Component + {00000000-0000-0000-0052-000000000008}, !- Handle + {00000000-0000-0000-0086-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000009}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- HVAC Component - {00000000-0000-0000-0017-000000000308}; !- Port 1 + {00000000-0000-0000-0052-000000000009}, !- Handle + {00000000-0000-0000-0086-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000010}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0052-000000000010}, !- Handle + {00000000-0000-0000-0086-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000011}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0052-000000000011}, !- Handle + {00000000-0000-0000-0086-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000012}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0052-000000000012}, !- Handle + {00000000-0000-0000-0086-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000013}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000251}; !- Port 1 + {00000000-0000-0000-0052-000000000013}, !- Handle + {00000000-0000-0000-0086-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000014}, !- Handle - {00000000-0000-0000-0090-000000000016}; !- HVAC Component + {00000000-0000-0000-0052-000000000014}, !- Handle + {00000000-0000-0000-0086-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000015}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000252}; !- Port 1 + {00000000-0000-0000-0052-000000000015}, !- Handle + {00000000-0000-0000-0086-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000016}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000289}; !- Port 1 + {00000000-0000-0000-0052-000000000016}, !- Handle + {00000000-0000-0000-0086-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000017}, !- Handle - {00000000-0000-0000-0090-000000000017}; !- HVAC Component + {00000000-0000-0000-0052-000000000017}, !- Handle + {00000000-0000-0000-0086-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000018}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000290}; !- Port 1 + {00000000-0000-0000-0052-000000000018}, !- Handle + {00000000-0000-0000-0086-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000019}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- HVAC Component - {00000000-0000-0000-0017-000000000171}; !- Port 1 + {00000000-0000-0000-0052-000000000019}, !- Handle + {00000000-0000-0000-0086-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000020}, !- Handle - {00000000-0000-0000-0090-000000000005}; !- HVAC Component + {00000000-0000-0000-0052-000000000020}, !- Handle + {00000000-0000-0000-0086-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000021}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- HVAC Component - {00000000-0000-0000-0017-000000000172}; !- Port 1 + {00000000-0000-0000-0052-000000000021}, !- Handle + {00000000-0000-0000-0086-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000022}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- HVAC Component - {00000000-0000-0000-0017-000000000183}; !- Port 1 + {00000000-0000-0000-0052-000000000022}, !- Handle + {00000000-0000-0000-0086-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000023}, !- Handle - {00000000-0000-0000-0090-000000000006}; !- HVAC Component + {00000000-0000-0000-0052-000000000023}, !- Handle + {00000000-0000-0000-0086-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000024}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- HVAC Component - {00000000-0000-0000-0017-000000000184}; !- Port 1 + {00000000-0000-0000-0052-000000000024}, !- Handle + {00000000-0000-0000-0086-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000025}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000295}; !- Port 1 + {00000000-0000-0000-0052-000000000025}, !- Handle + {00000000-0000-0000-0086-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000026}, !- Handle - {00000000-0000-0000-0090-000000000018}; !- HVAC Component + {00000000-0000-0000-0052-000000000026}, !- Handle + {00000000-0000-0000-0086-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000027}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000296}; !- Port 1 + {00000000-0000-0000-0052-000000000027}, !- Handle + {00000000-0000-0000-0086-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000028}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000239}; !- Port 1 + {00000000-0000-0000-0052-000000000028}, !- Handle + {00000000-0000-0000-0086-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000029}, !- Handle - {00000000-0000-0000-0090-000000000011}; !- HVAC Component + {00000000-0000-0000-0052-000000000029}, !- Handle + {00000000-0000-0000-0086-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000030}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000240}; !- Port 1 + {00000000-0000-0000-0052-000000000030}, !- Handle + {00000000-0000-0000-0086-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000031}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- HVAC Component - {00000000-0000-0000-0017-000000000283}; !- Port 1 + {00000000-0000-0000-0052-000000000031}, !- Handle + {00000000-0000-0000-0086-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000032}, !- Handle - {00000000-0000-0000-0090-000000000019}; !- HVAC Component + {00000000-0000-0000-0052-000000000032}, !- Handle + {00000000-0000-0000-0086-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000033}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- HVAC Component - {00000000-0000-0000-0017-000000000284}; !- Port 1 + {00000000-0000-0000-0052-000000000033}, !- Handle + {00000000-0000-0000-0086-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000034}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000233}; !- Port 1 + {00000000-0000-0000-0052-000000000034}, !- Handle + {00000000-0000-0000-0086-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000035}, !- Handle - {00000000-0000-0000-0090-000000000012}; !- HVAC Component + {00000000-0000-0000-0052-000000000035}, !- Handle + {00000000-0000-0000-0086-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000036}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000234}; !- Port 1 + {00000000-0000-0000-0052-000000000036}, !- Handle + {00000000-0000-0000-0086-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000037}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- HVAC Component + {00000000-0000-0000-0052-000000000037}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000139}; !- Port 1 OS:PortList, - {00000000-0000-0000-0056-000000000038}, !- Handle - {00000000-0000-0000-0090-000000000004}; !- HVAC Component + {00000000-0000-0000-0052-000000000038}, !- Handle + {00000000-0000-0000-0086-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000039}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- HVAC Component + {00000000-0000-0000-0052-000000000039}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000140}; !- Port 1 OS:PortList, - {00000000-0000-0000-0056-000000000040}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0052-000000000040}, !- Handle + {00000000-0000-0000-0086-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000041}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0052-000000000041}, !- Handle + {00000000-0000-0000-0086-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000042}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0052-000000000042}, !- Handle + {00000000-0000-0000-0086-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000043}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- HVAC Component - {00000000-0000-0000-0017-000000000165}; !- Port 1 + {00000000-0000-0000-0052-000000000043}, !- Handle + {00000000-0000-0000-0086-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000044}, !- Handle - {00000000-0000-0000-0090-000000000007}; !- HVAC Component + {00000000-0000-0000-0052-000000000044}, !- Handle + {00000000-0000-0000-0086-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000045}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- HVAC Component - {00000000-0000-0000-0017-000000000166}; !- Port 1 + {00000000-0000-0000-0052-000000000045}, !- Handle + {00000000-0000-0000-0086-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000046}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- HVAC Component - {00000000-0000-0000-0017-000000000301}; !- Port 1 + {00000000-0000-0000-0052-000000000046}, !- Handle + {00000000-0000-0000-0086-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000047}, !- Handle - {00000000-0000-0000-0090-000000000020}; !- HVAC Component + {00000000-0000-0000-0052-000000000047}, !- Handle + {00000000-0000-0000-0086-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000048}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- HVAC Component - {00000000-0000-0000-0017-000000000302}; !- Port 1 + {00000000-0000-0000-0052-000000000048}, !- Handle + {00000000-0000-0000-0086-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000049}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000227}; !- Port 1 + {00000000-0000-0000-0052-000000000049}, !- Handle + {00000000-0000-0000-0086-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000050}, !- Handle - {00000000-0000-0000-0090-000000000013}; !- HVAC Component + {00000000-0000-0000-0052-000000000050}, !- Handle + {00000000-0000-0000-0086-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000051}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000228}; !- Port 1 + {00000000-0000-0000-0052-000000000051}, !- Handle + {00000000-0000-0000-0086-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000052}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- HVAC Component - {00000000-0000-0000-0017-000000000277}; !- Port 1 + {00000000-0000-0000-0052-000000000052}, !- Handle + {00000000-0000-0000-0086-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000053}, !- Handle - {00000000-0000-0000-0090-000000000021}; !- HVAC Component + {00000000-0000-0000-0052-000000000053}, !- Handle + {00000000-0000-0000-0086-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000054}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- HVAC Component - {00000000-0000-0000-0017-000000000278}; !- Port 1 + {00000000-0000-0000-0052-000000000054}, !- Handle + {00000000-0000-0000-0086-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000055}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000221}; !- Port 1 + {00000000-0000-0000-0052-000000000055}, !- Handle + {00000000-0000-0000-0086-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000056}, !- Handle - {00000000-0000-0000-0090-000000000014}; !- HVAC Component + {00000000-0000-0000-0052-000000000056}, !- Handle + {00000000-0000-0000-0086-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000057}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000222}; !- Port 1 + {00000000-0000-0000-0052-000000000057}, !- Handle + {00000000-0000-0000-0086-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000058}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- HVAC Component - {00000000-0000-0000-0017-000000000189}; !- Port 1 + {00000000-0000-0000-0052-000000000058}, !- Handle + {00000000-0000-0000-0086-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000059}, !- Handle - {00000000-0000-0000-0090-000000000008}; !- HVAC Component + {00000000-0000-0000-0052-000000000059}, !- Handle + {00000000-0000-0000-0086-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000060}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- HVAC Component - {00000000-0000-0000-0017-000000000190}; !- Port 1 + {00000000-0000-0000-0052-000000000060}, !- Handle + {00000000-0000-0000-0086-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000061}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000245}; !- Port 1 + {00000000-0000-0000-0052-000000000061}, !- Handle + {00000000-0000-0000-0086-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000062}, !- Handle - {00000000-0000-0000-0090-000000000015}; !- HVAC Component + {00000000-0000-0000-0052-000000000062}, !- Handle + {00000000-0000-0000-0086-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000063}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000246}; !- Port 1 + {00000000-0000-0000-0052-000000000063}, !- Handle + {00000000-0000-0000-0086-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000064}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000177}; !- Port 1 + {00000000-0000-0000-0052-000000000064}, !- Handle + {00000000-0000-0000-0086-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000065}, !- Handle - {00000000-0000-0000-0090-000000000009}; !- HVAC Component + {00000000-0000-0000-0052-000000000065}, !- Handle + {00000000-0000-0000-0086-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000066}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000178}; !- Port 1 + {00000000-0000-0000-0052-000000000066}, !- Handle + {00000000-0000-0000-0086-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000067}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- HVAC Component + {00000000-0000-0000-0052-000000000067}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000061}; !- Port 1 OS:PortList, - {00000000-0000-0000-0056-000000000068}, !- Handle - {00000000-0000-0000-0090-000000000023}; !- HVAC Component + {00000000-0000-0000-0052-000000000068}, !- Handle + {00000000-0000-0000-0086-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000069}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- HVAC Component + {00000000-0000-0000-0052-000000000069}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000062}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000320}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000321}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000152}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000153}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 742176.159809915, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -8478,14 +5064,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0017-000000000075}, !- Inlet Node Name {00000000-0000-0000-0017-000000000076}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 256345.689610254, !- Rated Pump Head {Pa} + 234161.928009366, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.936, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8511,14 +5097,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0017-000000000100}, !- Inlet Node Name {00000000-0000-0000-0017-000000000101}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 223011.36000892, !- Rated Pump Head {Pa} + 200710.224008028, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.95, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8544,322 +5130,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000002}, !- Handle + {00000000-0000-0000-0055-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000003}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000004}, !- Handle + {00000000-0000-0000-0055-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000005}, !- Handle + {00000000-0000-0000-0055-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000006}, !- Handle + {00000000-0000-0000-0055-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000007}, !- Handle + {00000000-0000-0000-0055-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000008}, !- Handle + {00000000-0000-0000-0055-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000009}, !- Handle + {00000000-0000-0000-0055-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000010}, !- Handle + {00000000-0000-0000-0055-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000011}, !- Handle + {00000000-0000-0000-0055-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000012}, !- Handle + {00000000-0000-0000-0055-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000013}, !- Handle + {00000000-0000-0000-0055-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000014}, !- Handle + {00000000-0000-0000-0055-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000015}, !- Handle + {00000000-0000-0000-0055-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000016}, !- Handle + {00000000-0000-0000-0055-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000017}, !- Handle + {00000000-0000-0000-0055-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000018}, !- Handle + {00000000-0000-0000-0055-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000019}, !- Handle + {00000000-0000-0000-0055-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000020}, !- Handle + {00000000-0000-0000-0055-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000021}, !- Handle + {00000000-0000-0000-0055-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000022}, !- Handle + {00000000-0000-0000-0055-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000023}, !- Handle + {00000000-0000-0000-0055-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000024}, !- Handle + {00000000-0000-0000-0055-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000025}, !- Handle + {00000000-0000-0000-0055-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000026}, !- Handle + {00000000-0000-0000-0055-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000027}, !- Handle + {00000000-0000-0000-0055-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000028}, !- Handle + {00000000-0000-0000-0055-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000029}, !- Handle + {00000000-0000-0000-0055-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000030}, !- Handle + {00000000-0000-0000-0055-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000031}, !- Handle + {00000000-0000-0000-0055-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000032}, !- Handle + {00000000-0000-0000-0055-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000033}, !- Handle + {00000000-0000-0000-0055-000000000033}, !- Handle Space Function Electrical/Mechanical room-sch-A 1, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000034}, !- Handle + {00000000-0000-0000-0055-000000000034}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000035}, !- Handle + {00000000-0000-0000-0055-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000036}, !- Handle + {00000000-0000-0000-0055-000000000036}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000037}, !- Handle + {00000000-0000-0000-0055-000000000037}, !- Handle Space Function Office open plan 1, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000038}, !- Handle + {00000000-0000-0000-0055-000000000038}, !- Handle Space Function Office open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000039}, !- Handle + {00000000-0000-0000-0055-000000000039}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0064-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0064-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000003}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000004}, !- Handle + {00000000-0000-0000-0057-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000005}, !- Handle + {00000000-0000-0000-0057-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8868,36 +5454,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000006}, !- Handle + {00000000-0000-0000-0057-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000007}, !- Handle + {00000000-0000-0000-0057-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000008}, !- Handle + {00000000-0000-0000-0057-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000009}, !- Handle + {00000000-0000-0000-0057-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8922,9 +5508,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000010}, !- Handle + {00000000-0000-0000-0057-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8949,27 +5535,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000011}, !- Handle + {00000000-0000-0000-0057-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000012}, !- Handle + {00000000-0000-0000-0057-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000013}, !- Handle + {00000000-0000-0000-0057-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9000,9 +5586,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000014}, !- Handle + {00000000-0000-0000-0057-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9033,27 +5619,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000015}, !- Handle + {00000000-0000-0000-0057-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000016}, !- Handle + {00000000-0000-0000-0057-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000017}, !- Handle + {00000000-0000-0000-0057-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9087,9 +5673,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000018}, !- Handle + {00000000-0000-0000-0057-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9123,27 +5709,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000019}, !- Handle + {00000000-0000-0000-0057-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000020}, !- Handle + {00000000-0000-0000-0057-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000021}, !- Handle + {00000000-0000-0000-0057-000000000021}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Default|Wkdy-Light Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9174,9 +5760,9 @@ OS:Schedule:Day, 0.0383; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000022}, !- Handle + {00000000-0000-0000-0057-000000000022}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Light Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9207,27 +5793,27 @@ OS:Schedule:Day, 0.0383; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000023}, !- Handle + {00000000-0000-0000-0057-000000000023}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Sat-Light Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.0383; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000024}, !- Handle + {00000000-0000-0000-0057-000000000024}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Sun|Hol-Light Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.0383; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000025}, !- Handle + {00000000-0000-0000-0057-000000000025}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9258,9 +5844,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000026}, !- Handle + {00000000-0000-0000-0057-000000000026}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9291,27 +5877,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000027}, !- Handle + {00000000-0000-0000-0057-000000000027}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000028}, !- Handle + {00000000-0000-0000-0057-000000000028}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000029}, !- Handle + {00000000-0000-0000-0057-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -9324,9 +5910,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000030}, !- Handle + {00000000-0000-0000-0057-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -9339,27 +5925,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000031}, !- Handle + {00000000-0000-0000-0057-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000032}, !- Handle + {00000000-0000-0000-0057-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000033}, !- Handle + {00000000-0000-0000-0057-000000000033}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -9375,9 +5961,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000034}, !- Handle + {00000000-0000-0000-0057-000000000034}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -9393,52 +5979,52 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000035}, !- Handle + {00000000-0000-0000-0057-000000000035}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000036}, !- Handle + {00000000-0000-0000-0057-000000000036}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000037}, !- Handle + {00000000-0000-0000-0057-000000000037}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000038}, !- Handle + {00000000-0000-0000-0057-000000000038}, !- Handle NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000039}, !- Handle + {00000000-0000-0000-0057-000000000039}, !- Handle NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000040}, !- Handle + {00000000-0000-0000-0057-000000000040}, !- Handle Schedule Day 1, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9447,70 +6033,16 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000041}, !- Handle + {00000000-0000-0000-0057-000000000041}, !- Handle Schedule Day 10, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000042}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000043}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000044}, !- Handle - Schedule Day 13, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000045}, !- Handle - Schedule Day 14, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000046}, !- Handle - Schedule Day 15, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000047}, !- Handle - Schedule Day 16, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000048}, !- Handle + {00000000-0000-0000-0057-000000000042}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9519,9 +6051,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000049}, !- Handle + {00000000-0000-0000-0057-000000000043}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9597,9 +6129,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000050}, !- Handle + {00000000-0000-0000-0057-000000000044}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9675,117 +6207,90 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000051}, !- Handle + {00000000-0000-0000-0057-000000000045}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000052}, !- Handle + {00000000-0000-0000-0057-000000000046}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000053}, !- Handle + {00000000-0000-0000-0057-000000000047}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000054}, !- Handle + {00000000-0000-0000-0057-000000000048}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000055}, !- Handle + {00000000-0000-0000-0057-000000000049}, !- Handle Schedule Day 9, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000056}, !- Handle + {00000000-0000-0000-0057-000000000050}, !- Handle Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000057}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000058}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000059}, !- Handle - Supply Air Temp Default 3, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000060}, !- Handle + {00000000-0000-0000-0057-000000000051}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000061}, !- Handle + {00000000-0000-0000-0057-000000000052}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000062}, !- Handle + {00000000-0000-0000-0057-000000000053}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000063}, !- Handle + {00000000-0000-0000-0057-000000000054}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9861,9 +6366,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000064}, !- Handle + {00000000-0000-0000-0057-000000000055}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9939,9 +6444,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000065}, !- Handle + {00000000-0000-0000-0057-000000000056}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10017,9 +6522,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000066}, !- Handle + {00000000-0000-0000-0057-000000000057}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10095,9 +6600,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000067}, !- Handle + {00000000-0000-0000-0057-000000000058}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10173,9 +6678,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000068}, !- Handle + {00000000-0000-0000-0057-000000000059}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10251,9 +6756,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000069}, !- Handle + {00000000-0000-0000-0057-000000000060}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10329,9 +6834,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000070}, !- Handle + {00000000-0000-0000-0057-000000000061}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10407,9 +6912,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000071}, !- Handle + {00000000-0000-0000-0057-000000000062}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -10422,126 +6927,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000072}, !- Handle + {00000000-0000-0000-0057-000000000063}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000073}, !- Handle + {00000000-0000-0000-0057-000000000064}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000074}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000075}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000076}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000077}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000078}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000079}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000080}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000081}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000082}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000083}, !- Handle + {00000000-0000-0000-0057-000000000065}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -10554,27 +6960,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000084}, !- Handle + {00000000-0000-0000-0057-000000000066}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000085}, !- Handle + {00000000-0000-0000-0057-000000000067}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000086}, !- Handle + {00000000-0000-0000-0057-000000000068}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10650,9 +7056,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000087}, !- Handle + {00000000-0000-0000-0057-000000000069}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10728,9 +7134,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000088}, !- Handle + {00000000-0000-0000-0057-000000000070}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10806,9 +7212,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000089}, !- Handle + {00000000-0000-0000-0057-000000000071}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10884,11 +7290,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0063-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10903,11 +7309,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10922,11 +7328,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000003}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0063-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000016}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000034}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000034}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -10941,11 +7347,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000004}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0063-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000016}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000035}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000035}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10960,11 +7366,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000005}, !- Handle + {00000000-0000-0000-0058-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0063-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000016}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000036}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000036}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10979,11 +7385,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000006}, !- Handle + {00000000-0000-0000-0058-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -10998,11 +7404,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000007}, !- Handle + {00000000-0000-0000-0058-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11017,11 +7423,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000008}, !- Handle + {00000000-0000-0000-0058-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11036,11 +7442,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000009}, !- Handle + {00000000-0000-0000-0058-000000000009}, !- Handle Schedule Rule 17, !- Name - {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000021}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000021}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11055,11 +7461,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000010}, !- Handle + {00000000-0000-0000-0058-000000000010}, !- Handle Schedule Rule 18, !- Name - {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000023}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11074,11 +7480,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000011}, !- Handle + {00000000-0000-0000-0058-000000000011}, !- Handle Schedule Rule 19, !- Name - {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000024}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11093,11 +7499,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000012}, !- Handle + {00000000-0000-0000-0058-000000000012}, !- Handle Schedule Rule 2, !- Name - {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000018}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000018}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11112,11 +7518,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000013}, !- Handle + {00000000-0000-0000-0058-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11131,11 +7537,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000014}, !- Handle + {00000000-0000-0000-0058-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11150,163 +7556,30 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000015}, !- Handle + {00000000-0000-0000-0058-000000000015}, !- Handle Schedule Rule 22, !- Name - {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0061-000000000028}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000016}, !- Handle - Schedule Rule 23, !- Name - {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0061-000000000053}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0061-000000000054}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0063-000000000031}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0061-000000000055}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000019}, !- Handle - Schedule Rule 26, !- Name - {00000000-0000-0000-0063-000000000031}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0061-000000000041}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000020}, !- Handle - Schedule Rule 27, !- Name - {00000000-0000-0000-0063-000000000028}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0061-000000000042}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000021}, !- Handle - Schedule Rule 28, !- Name - {00000000-0000-0000-0063-000000000028}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday , !- Apply Wednesday , !- Apply Thursday , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000022}, !- Handle - Schedule Rule 29, !- Name - {00000000-0000-0000-0063-000000000029}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0061-000000000044}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday + , !- Apply Saturday DateRange, !- Date Specification Type 1, !- Start Month - 7, !- Start Day + 1, !- Start Day 12, !- End Month - 30; !- End Day + 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000023}, !- Handle - Schedule Rule 3, !- Name - {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000016}, !- Handle + Schedule Rule 23, !- Name + {00000000-0000-0000-0059-000000000024}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000047}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11316,16 +7589,16 @@ OS:Schedule:Rule, Yes, !- Apply Saturday DateRange, !- Date Specification Type 1, !- Start Month - 1, !- Start Day + 7, !- Start Day 12, !- End Month - 31; !- End Day + 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000024}, !- Handle - Schedule Rule 30, !- Name - {00000000-0000-0000-0063-000000000029}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0059-000000000024}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000048}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11340,11 +7613,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000025}, !- Handle - Schedule Rule 31, !- Name - {00000000-0000-0000-0063-000000000030}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0059-000000000025}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000046}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000049}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11359,11 +7632,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000026}, !- Handle - Schedule Rule 32, !- Name - {00000000-0000-0000-0063-000000000030}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000019}, !- Handle + Schedule Rule 26, !- Name + {00000000-0000-0000-0059-000000000025}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000047}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000041}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11378,11 +7651,30 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000027}, !- Handle + {00000000-0000-0000-0058-000000000020}, !- Handle + Schedule Rule 3, !- Name + {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0057-000000000019}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0058-000000000021}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11397,11 +7689,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000028}, !- Handle + {00000000-0000-0000-0058-000000000022}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11416,11 +7708,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000029}, !- Handle + {00000000-0000-0000-0058-000000000023}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11435,11 +7727,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000030}, !- Handle + {00000000-0000-0000-0058-000000000024}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11454,11 +7746,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000031}, !- Handle + {00000000-0000-0000-0058-000000000025}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11473,11 +7765,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000032}, !- Handle + {00000000-0000-0000-0058-000000000026}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11492,11 +7784,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000033}, !- Handle + {00000000-0000-0000-0058-000000000027}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000063}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000054}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11511,11 +7803,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000034}, !- Handle + {00000000-0000-0000-0058-000000000028}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000065}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000056}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11530,11 +7822,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000035}, !- Handle + {00000000-0000-0000-0058-000000000029}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000067}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000058}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11549,11 +7841,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000036}, !- Handle + {00000000-0000-0000-0058-000000000030}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000069}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000060}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11568,11 +7860,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000037}, !- Handle + {00000000-0000-0000-0058-000000000031}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000086}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000068}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11587,11 +7879,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000038}, !- Handle + {00000000-0000-0000-0058-000000000032}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000088}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000070}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11606,205 +7898,163 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0064-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000002}, !- Handle + {00000000-0000-0000-0059-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000003}, !- Handle + {00000000-0000-0000-0059-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000049}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000043}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000004}, !- Handle + {00000000-0000-0000-0059-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000050}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000005}, !- Handle + {00000000-0000-0000-0059-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000006}, !- Handle + {00000000-0000-0000-0059-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0057-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000007}, !- Handle + {00000000-0000-0000-0059-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000008}, !- Handle + {00000000-0000-0000-0059-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000009}, !- Handle + {00000000-0000-0000-0059-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000010}, !- Handle + {00000000-0000-0000-0059-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000011}, !- Handle + {00000000-0000-0000-0059-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000012}, !- Handle + {00000000-0000-0000-0059-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000013}, !- Handle + {00000000-0000-0000-0059-000000000013}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Light Ruleset, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000022}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000022}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000014}, !- Handle + {00000000-0000-0000-0059-000000000014}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000015}, !- Handle + {00000000-0000-0000-0059-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000016}, !- Handle + {00000000-0000-0000-0059-000000000016}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000033}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000033}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000017}, !- Handle + {00000000-0000-0000-0059-000000000017}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000037}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000038}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000039}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000037}, !- Default Day Schedule Name + {00000000-0000-0000-0057-000000000038}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0057-000000000039}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000018}, !- Handle + {00000000-0000-0000-0059-000000000018}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000051}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000019}, !- Handle + {00000000-0000-0000-0059-000000000019}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000052}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000020}, !- Handle + {00000000-0000-0000-0059-000000000020}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000056}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000021}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000057}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000022}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000058}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000050}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000023}, !- Handle - Supply Air Temp 3, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000059}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000024}, !- Handle + {00000000-0000-0000-0059-000000000021}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000060}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000051}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000025}, !- Handle + {00000000-0000-0000-0059-000000000022}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000061}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000026}, !- Handle + {00000000-0000-0000-0059-000000000023}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000062}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000053}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000027}, !- Handle + {00000000-0000-0000-0059-000000000024}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000071}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000072}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000073}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000028}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000074}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000075}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000076}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000062}, !- Default Day Schedule Name + {00000000-0000-0000-0057-000000000063}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0057-000000000064}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000029}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000077}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000078}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000079}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000030}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000080}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000081}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000082}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000031}, !- Handle + {00000000-0000-0000-0059-000000000025}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000083}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000084}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000085}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000065}, !- Default Day Schedule Name + {00000000-0000-0000-0057-000000000066}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0057-000000000067}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -11812,7 +8062,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000002}, !- Handle + {00000000-0000-0000-0060-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -11820,7 +8070,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000003}, !- Handle + {00000000-0000-0000-0060-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -11828,14 +8078,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000004}, !- Handle + {00000000-0000-0000-0060-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000005}, !- Handle + {00000000-0000-0000-0060-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -11843,7 +8093,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000006}, !- Handle + {00000000-0000-0000-0060-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -11851,7 +8101,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000007}, !- Handle + {00000000-0000-0000-0060-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -11859,7 +8109,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000008}, !- Handle + {00000000-0000-0000-0060-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -11867,7 +8117,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000009}, !- Handle + {00000000-0000-0000-0060-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -11875,134 +8125,71 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Setpoint Manager Outdoor Air Pretreat 1, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000185}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000185}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000186}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000188}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000190}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0046-000000000116}, !- Reference Setpoint Node Name + {00000000-0000-0000-0046-000000000116}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0046-000000000117}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0046-000000000119}, !- Return Air Stream Node Name + {00000000-0000-0000-0046-000000000121}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0065-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle Setpoint Manager Outdoor Air Pretreat 2, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000215}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000215}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000216}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000180}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000226}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0065-000000000003}, !- Handle - Setpoint Manager Outdoor Air Pretreat 3, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000194}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000194}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000195}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000177}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000220}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0065-000000000004}, !- Handle - Setpoint Manager Outdoor Air Pretreat 4, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000201}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000201}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000202}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000178}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000222}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0065-000000000005}, !- Handle - Setpoint Manager Outdoor Air Pretreat 5, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000208}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000208}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000209}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000179}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000224}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0046-000000000125}, !- Reference Setpoint Node Name + {00000000-0000-0000-0046-000000000125}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0046-000000000126}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0046-000000000111}, !- Return Air Stream Node Name + {00000000-0000-0000-0046-000000000130}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000020}, !- Schedule Name - {00000000-0000-0000-0050-000000000130}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0059-000000000020}, !- Schedule Name + {00000000-0000-0000-0046-000000000064}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000002}, !- Handle + {00000000-0000-0000-0062-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000003}, !- Schedule Name - {00000000-0000-0000-0050-000000000087}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Name + {00000000-0000-0000-0046-000000000033}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000003}, !- Handle + {00000000-0000-0000-0062-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000004}, !- Schedule Name - {00000000-0000-0000-0050-000000000109}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Name + {00000000-0000-0000-0046-000000000043}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000024}, !- Schedule Name - {00000000-0000-0000-0050-000000000219}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000021}, !- Schedule Name - {00000000-0000-0000-0050-000000000198}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000022}, !- Schedule Name - {00000000-0000-0000-0050-000000000205}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000007}, !- Handle - Setpoint Manager Scheduled 6, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000023}, !- Schedule Name - {00000000-0000-0000-0050-000000000212}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0059-000000000021}, !- Schedule Name + {00000000-0000-0000-0046-000000000129}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0090-000000000023}, !- Control Zone Name - {00000000-0000-0000-0050-000000000189}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0086-000000000023}, !- Control Zone Name + {00000000-0000-0000-0046-000000000120}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -12017,7 +8204,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -12026,7 +8213,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -12041,7 +8228,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -12056,7 +8243,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -12070,208 +8257,85 @@ OS:Site:GroundTemperature:FCfactorMethod, 16.6, !- November Ground Temperature {C} 11.1; !- December Ground Temperature {C} -OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0073-000000000001}, !- Handle - -1.6, !- January Surface Ground Temperature {C} - -5.4, !- February Surface Ground Temperature {C} - -6.4, !- March Surface Ground Temperature {C} - -5.5, !- April Surface Ground Temperature {C} - -0.4, !- May Surface Ground Temperature {C} - 5.3, !- June Surface Ground Temperature {C} - 10.8, !- July Surface Ground Temperature {C} - 14.7, !- August Surface Ground Temperature {C} - 15.8, !- September Surface Ground Temperature {C} - 14, !- October Surface Ground Temperature {C} - 9.5, !- November Surface Ground Temperature {C} - 4; !- December Surface Ground Temperature {C} - -OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0074-000000000001}, !- Handle - Correlation, !- Calculation Method - , !- Temperature Schedule Name - 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} - 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} - -OS:Sizing:Parameters, - {00000000-0000-0000-0075-000000000001}, !- Handle - 1.3, !- Heating Sizing Factor - 1.1; !- Cooling Sizing Factor - -OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000001}, !- Handle - {00000000-0000-0000-0055-000000000001}, !- Plant or Condenser Loop Name - Cooling, !- Loop Type - 7, !- Design Loop Exit Temperature {C} - 6, !- Loop Design Temperature Difference {deltaC} - NonCoincident, !- Sizing Option - 1, !- Zone Timesteps in Averaging Window - None; !- Coincident Sizing Factor Mode - -OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000002}, !- Handle - {00000000-0000-0000-0055-000000000002}, !- Plant or Condenser Loop Name - Condenser, !- Loop Type - 29, !- Design Loop Exit Temperature {C} - 6, !- Loop Design Temperature Difference {deltaC} - NonCoincident, !- Sizing Option - 1, !- Zone Timesteps in Averaging Window - None; !- Coincident Sizing Factor Mode - -OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000003}, !- Handle - {00000000-0000-0000-0055-000000000003}, !- Plant or Condenser Loop Name - Heating, !- Loop Type - 60, !- Design Loop Exit Temperature {C} - 5, !- Loop Design Temperature Difference {deltaC} - NonCoincident, !- Sizing Option - 1, !- Zone Timesteps in Averaging Window - None; !- Coincident Sizing Factor Mode - -OS:Sizing:System, - {00000000-0000-0000-0077-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- AirLoop Name - Sensible, !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 1, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 43, !- Central Heating Design Supply Air Temperature {C} - NonCoincident, !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - DesignDay, !- Cooling Design Air Flow Method - 0, !- Cooling Design Air Flow Rate {m3/s} - DesignDay, !- Heating Design Air Flow Method - 0, !- Heating Design Air Flow Rate {m3/s} - ZoneSum, !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0077-000000000002}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0077-000000000003}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity +OS:Site:GroundTemperature:Shallow, + {00000000-0000-0000-0069-000000000001}, !- Handle + -1.6, !- January Surface Ground Temperature {C} + -5.4, !- February Surface Ground Temperature {C} + -6.4, !- March Surface Ground Temperature {C} + -5.5, !- April Surface Ground Temperature {C} + -0.4, !- May Surface Ground Temperature {C} + 5.3, !- June Surface Ground Temperature {C} + 10.8, !- July Surface Ground Temperature {C} + 14.7, !- August Surface Ground Temperature {C} + 15.8, !- September Surface Ground Temperature {C} + 14, !- October Surface Ground Temperature {C} + 9.5, !- November Surface Ground Temperature {C} + 4; !- December Surface Ground Temperature {C} + +OS:Site:WaterMainsTemperature, + {00000000-0000-0000-0070-000000000001}, !- Handle + Correlation, !- Calculation Method + , !- Temperature Schedule Name + 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} + 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + +OS:Sizing:Parameters, + {00000000-0000-0000-0071-000000000001}, !- Handle + 1.3, !- Heating Sizing Factor + 1.1; !- Cooling Sizing Factor + +OS:Sizing:Plant, + {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0051-000000000001}, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 7, !- Design Loop Exit Temperature {C} + 6, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:Sizing:Plant, + {00000000-0000-0000-0072-000000000002}, !- Handle + {00000000-0000-0000-0051-000000000002}, !- Plant or Condenser Loop Name + Condenser, !- Loop Type + 29, !- Design Loop Exit Temperature {C} + 6, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:Sizing:Plant, + {00000000-0000-0000-0072-000000000003}, !- Handle + {00000000-0000-0000-0051-000000000003}, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60, !- Design Loop Exit Temperature {C} + 5, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0077-000000000004}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On + {00000000-0000-0000-0073-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- AirLoop Name + Sensible, !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio + 1, !- Central Heating Maximum System Air Flow Ratio 7, !- Preheat Design Temperature {C} 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} + 13, !- Precool Design Temperature {C} 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option + 43, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Sizing Option No, !- 100% Outdoor Air in Cooling No, !- 100% Outdoor Air in Heating 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate @@ -12292,8 +8356,8 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0077-000000000005}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- AirLoop Name + {00000000-0000-0000-0073-000000000002}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} 0.3, !- Central Heating Maximum System Air Flow Ratio @@ -12333,18 +8397,18 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000010}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12368,8 +8432,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000002}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0074-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12403,18 +8467,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000003}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000022}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12438,8 +8502,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000004}, !- Handle - {00000000-0000-0000-0090-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0074-000000000004}, !- Handle + {00000000-0000-0000-0086-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12473,18 +8537,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000005}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000005}, !- Handle + {00000000-0000-0000-0086-000000000016}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12508,18 +8572,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000006}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000006}, !- Handle + {00000000-0000-0000-0086-000000000017}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12543,18 +8607,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000007}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000007}, !- Handle + {00000000-0000-0000-0086-000000000005}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12578,18 +8642,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000008}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000008}, !- Handle + {00000000-0000-0000-0086-000000000006}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12613,18 +8677,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000009}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000009}, !- Handle + {00000000-0000-0000-0086-000000000018}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12648,18 +8712,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000010}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000010}, !- Handle + {00000000-0000-0000-0086-000000000011}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12683,18 +8747,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000011}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000011}, !- Handle + {00000000-0000-0000-0086-000000000019}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12718,18 +8782,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000012}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000012}, !- Handle + {00000000-0000-0000-0086-000000000012}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12753,8 +8817,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000013}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0074-000000000013}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12788,8 +8852,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000014}, !- Handle - {00000000-0000-0000-0090-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0074-000000000014}, !- Handle + {00000000-0000-0000-0086-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12823,18 +8887,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000015}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000015}, !- Handle + {00000000-0000-0000-0086-000000000007}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12858,18 +8922,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000016}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000016}, !- Handle + {00000000-0000-0000-0086-000000000020}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12893,18 +8957,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000017}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000017}, !- Handle + {00000000-0000-0000-0086-000000000013}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12928,18 +8992,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000018}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000018}, !- Handle + {00000000-0000-0000-0086-000000000021}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12963,18 +9027,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000019}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000019}, !- Handle + {00000000-0000-0000-0086-000000000014}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12998,18 +9062,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000020}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000020}, !- Handle + {00000000-0000-0000-0086-000000000008}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -13033,18 +9097,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000021}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000021}, !- Handle + {00000000-0000-0000-0086-000000000015}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -13068,18 +9132,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000022}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000022}, !- Handle + {00000000-0000-0000-0086-000000000009}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -13103,8 +9167,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000023}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0074-000000000023}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -13138,7 +9202,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -13166,7 +9230,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000002}, !- Handle + {00000000-0000-0000-0075-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -13194,7 +9258,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0075-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -13218,9 +9282,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0076-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0082-000000000002}, !- Space Type Name + {00000000-0000-0000-0078-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13228,16 +9292,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0090-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0076-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13245,16 +9309,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0076-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13262,16 +9326,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000004}, !- Handle + {00000000-0000-0000-0076-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13279,16 +9343,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000005}, !- Handle + {00000000-0000-0000-0076-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13296,16 +9360,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0090-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000006}, !- Handle + {00000000-0000-0000-0076-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13313,16 +9377,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000007}, !- Handle + {00000000-0000-0000-0076-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13330,16 +9394,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000008}, !- Handle + {00000000-0000-0000-0076-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13347,16 +9411,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000009}, !- Handle + {00000000-0000-0000-0076-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0078-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13364,16 +9428,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000010}, !- Handle + {00000000-0000-0000-0076-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0078-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13381,16 +9445,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000011}, !- Handle + {00000000-0000-0000-0076-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13398,16 +9462,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000012}, !- Handle + {00000000-0000-0000-0076-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13415,16 +9479,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000013}, !- Handle + {00000000-0000-0000-0076-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13432,16 +9496,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000014}, !- Handle + {00000000-0000-0000-0076-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13449,16 +9513,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000015}, !- Handle + {00000000-0000-0000-0076-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13466,16 +9530,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000016}, !- Handle + {00000000-0000-0000-0076-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13483,16 +9547,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000017}, !- Handle + {00000000-0000-0000-0076-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13500,16 +9564,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000018}, !- Handle + {00000000-0000-0000-0076-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13517,16 +9581,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000019}, !- Handle + {00000000-0000-0000-0076-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13534,16 +9598,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000020}, !- Handle + {00000000-0000-0000-0076-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13551,16 +9615,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000021}, !- Handle + {00000000-0000-0000-0076-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13568,16 +9632,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000022}, !- Handle + {00000000-0000-0000-0076-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13585,16 +9649,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000023}, !- Handle + {00000000-0000-0000-0076-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0078-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13602,17 +9666,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0077-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13624,10 +9688,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0077-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13639,10 +9703,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0077-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13654,10 +9718,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000004}, !- Handle + {00000000-0000-0000-0077-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13669,10 +9733,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000005}, !- Handle + {00000000-0000-0000-0077-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13684,10 +9748,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000006}, !- Handle + {00000000-0000-0000-0077-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13699,10 +9763,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000007}, !- Handle + {00000000-0000-0000-0077-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13714,10 +9778,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000008}, !- Handle + {00000000-0000-0000-0077-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13729,10 +9793,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000009}, !- Handle + {00000000-0000-0000-0077-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13744,10 +9808,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000010}, !- Handle + {00000000-0000-0000-0077-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13759,10 +9823,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000011}, !- Handle + {00000000-0000-0000-0077-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13774,10 +9838,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000012}, !- Handle + {00000000-0000-0000-0077-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13789,10 +9853,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000013}, !- Handle + {00000000-0000-0000-0077-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13804,10 +9868,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000014}, !- Handle + {00000000-0000-0000-0077-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13819,10 +9883,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000015}, !- Handle + {00000000-0000-0000-0077-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13834,46 +9898,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0078-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000031}, !- Group Rendering Name {00000000-0000-0000-0032-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0078-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000033}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000033}, !- Group Rendering Name {00000000-0000-0000-0032-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical room-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0078-000000000003}, !- Handle Space Function Office open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000037}, !- Group Rendering Name {00000000-0000-0000-0032-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle {00000000-0000-0000-0020-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000002}, !- Handle + {00000000-0000-0000-0079-000000000002}, !- Handle {00000000-0000-0000-0020-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13882,7 +9946,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000003}, !- Handle + {00000000-0000-0000-0079-000000000003}, !- Handle {00000000-0000-0000-0020-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13891,7 +9955,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000004}, !- Handle + {00000000-0000-0000-0079-000000000004}, !- Handle {00000000-0000-0000-0020-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -13900,25 +9964,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000005}, !- Handle + {00000000-0000-0000-0079-000000000005}, !- Handle {00000000-0000-0000-0020-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000006}, !- Handle + {00000000-0000-0000-0079-000000000006}, !- Handle {00000000-0000-0000-0020-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000007}, !- Handle + {00000000-0000-0000-0079-000000000007}, !- Handle {00000000-0000-0000-0020-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000008}, !- Handle + {00000000-0000-0000-0079-000000000008}, !- Handle {00000000-0000-0000-0020-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13927,7 +9991,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000009}, !- Handle + {00000000-0000-0000-0079-000000000009}, !- Handle {00000000-0000-0000-0020-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13936,7 +10000,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000010}, !- Handle + {00000000-0000-0000-0079-000000000010}, !- Handle {00000000-0000-0000-0020-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13945,12 +10009,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000011}, !- Handle + {00000000-0000-0000-0079-000000000011}, !- Handle {00000000-0000-0000-0020-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000012}, !- Handle + {00000000-0000-0000-0079-000000000012}, !- Handle {00000000-0000-0000-0020-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -13959,12 +10023,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000013}, !- Handle + {00000000-0000-0000-0079-000000000013}, !- Handle {00000000-0000-0000-0020-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000014}, !- Handle + {00000000-0000-0000-0079-000000000014}, !- Handle {00000000-0000-0000-0020-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -13973,34 +10037,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000015}, !- Handle + {00000000-0000-0000-0079-000000000015}, !- Handle {00000000-0000-0000-0020-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000016}, !- Handle + {00000000-0000-0000-0079-000000000016}, !- Handle {00000000-0000-0000-0020-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000017}, !- Handle + {00000000-0000-0000-0079-000000000017}, !- Handle {00000000-0000-0000-0020-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000018}, !- Handle + {00000000-0000-0000-0079-000000000018}, !- Handle {00000000-0000-0000-0020-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000019}, !- Handle + {00000000-0000-0000-0079-000000000019}, !- Handle {00000000-0000-0000-0020-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000020}, !- Handle + {00000000-0000-0000-0079-000000000020}, !- Handle {00000000-0000-0000-0020-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -14009,7 +10073,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000021}, !- Handle + {00000000-0000-0000-0079-000000000021}, !- Handle {00000000-0000-0000-0020-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -14018,7 +10082,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000022}, !- Handle + {00000000-0000-0000-0079-000000000022}, !- Handle {00000000-0000-0000-0020-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -14027,7 +10091,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000023}, !- Handle + {00000000-0000-0000-0079-000000000023}, !- Handle {00000000-0000-0000-0020-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -14036,7 +10100,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000024}, !- Handle + {00000000-0000-0000-0079-000000000024}, !- Handle {00000000-0000-0000-0020-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -14045,7 +10109,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000025}, !- Handle + {00000000-0000-0000-0079-000000000025}, !- Handle {00000000-0000-0000-0020-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -14054,7 +10118,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000026}, !- Handle + {00000000-0000-0000-0079-000000000026}, !- Handle {00000000-0000-0000-0020-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -14063,7 +10127,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000027}, !- Handle + {00000000-0000-0000-0079-000000000027}, !- Handle {00000000-0000-0000-0020-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -14072,135 +10136,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000001}, !- Handle - {00000000-0000-0000-0047-000000000021}; !- Material Name + {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0043-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000002}, !- Handle - {00000000-0000-0000-0048-000000000013}; !- Material Name + {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0044-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000003}, !- Handle - {00000000-0000-0000-0047-000000000008}; !- Material Name + {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0043-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000004}, !- Handle - {00000000-0000-0000-0048-000000000007}; !- Material Name + {00000000-0000-0000-0080-000000000004}, !- Handle + {00000000-0000-0000-0044-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000005}, !- Handle - {00000000-0000-0000-0047-000000000006}; !- Material Name + {00000000-0000-0000-0080-000000000005}, !- Handle + {00000000-0000-0000-0043-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000006}, !- Handle - {00000000-0000-0000-0047-000000000014}; !- Material Name + {00000000-0000-0000-0080-000000000006}, !- Handle + {00000000-0000-0000-0043-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000007}, !- Handle - {00000000-0000-0000-0047-000000000002}; !- Material Name + {00000000-0000-0000-0080-000000000007}, !- Handle + {00000000-0000-0000-0043-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000008}, !- Handle - {00000000-0000-0000-0047-000000000024}; !- Material Name + {00000000-0000-0000-0080-000000000008}, !- Handle + {00000000-0000-0000-0043-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000009}, !- Handle - {00000000-0000-0000-0047-000000000003}; !- Material Name + {00000000-0000-0000-0080-000000000009}, !- Handle + {00000000-0000-0000-0043-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000010}, !- Handle - {00000000-0000-0000-0047-000000000019}; !- Material Name + {00000000-0000-0000-0080-000000000010}, !- Handle + {00000000-0000-0000-0043-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000011}, !- Handle - {00000000-0000-0000-0047-000000000012}; !- Material Name + {00000000-0000-0000-0080-000000000011}, !- Handle + {00000000-0000-0000-0043-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000012}, !- Handle - {00000000-0000-0000-0100-000000000001}; !- Material Name + {00000000-0000-0000-0080-000000000012}, !- Handle + {00000000-0000-0000-0096-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000013}, !- Handle - {00000000-0000-0000-0047-000000000018}; !- Material Name + {00000000-0000-0000-0080-000000000013}, !- Handle + {00000000-0000-0000-0043-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000014}, !- Handle - {00000000-0000-0000-0048-000000000008}; !- Material Name + {00000000-0000-0000-0080-000000000014}, !- Handle + {00000000-0000-0000-0044-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000015}, !- Handle - {00000000-0000-0000-0047-000000000007}; !- Material Name + {00000000-0000-0000-0080-000000000015}, !- Handle + {00000000-0000-0000-0043-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000016}, !- Handle - {00000000-0000-0000-0048-000000000003}; !- Material Name + {00000000-0000-0000-0080-000000000016}, !- Handle + {00000000-0000-0000-0044-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000017}, !- Handle - {00000000-0000-0000-0047-000000000005}; !- Material Name + {00000000-0000-0000-0080-000000000017}, !- Handle + {00000000-0000-0000-0043-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000018}, !- Handle - {00000000-0000-0000-0047-000000000013}; !- Material Name + {00000000-0000-0000-0080-000000000018}, !- Handle + {00000000-0000-0000-0043-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000019}, !- Handle - {00000000-0000-0000-0048-000000000009}; !- Material Name + {00000000-0000-0000-0080-000000000019}, !- Handle + {00000000-0000-0000-0044-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000020}, !- Handle - {00000000-0000-0000-0047-000000000001}; !- Material Name + {00000000-0000-0000-0080-000000000020}, !- Handle + {00000000-0000-0000-0043-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000021}, !- Handle - {00000000-0000-0000-0047-000000000023}; !- Material Name + {00000000-0000-0000-0080-000000000021}, !- Handle + {00000000-0000-0000-0043-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000022}, !- Handle - {00000000-0000-0000-0048-000000000010}; !- Material Name + {00000000-0000-0000-0080-000000000022}, !- Handle + {00000000-0000-0000-0044-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000023}, !- Handle - {00000000-0000-0000-0047-000000000009}; !- Material Name + {00000000-0000-0000-0080-000000000023}, !- Handle + {00000000-0000-0000-0043-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000024}, !- Handle - {00000000-0000-0000-0048-000000000004}; !- Material Name + {00000000-0000-0000-0080-000000000024}, !- Handle + {00000000-0000-0000-0044-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000025}, !- Handle - {00000000-0000-0000-0047-000000000010}; !- Material Name + {00000000-0000-0000-0080-000000000025}, !- Handle + {00000000-0000-0000-0043-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000026}, !- Handle - {00000000-0000-0000-0048-000000000005}; !- Material Name + {00000000-0000-0000-0080-000000000026}, !- Handle + {00000000-0000-0000-0044-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000027}, !- Handle - {00000000-0000-0000-0047-000000000011}; !- Material Name + {00000000-0000-0000-0080-000000000027}, !- Handle + {00000000-0000-0000-0043-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000028}, !- Handle - {00000000-0000-0000-0048-000000000006}; !- Material Name + {00000000-0000-0000-0080-000000000028}, !- Handle + {00000000-0000-0000-0044-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000029}, !- Handle - {00000000-0000-0000-0047-000000000017}; !- Material Name + {00000000-0000-0000-0080-000000000029}, !- Handle + {00000000-0000-0000-0043-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000030}, !- Handle - {00000000-0000-0000-0048-000000000011}; !- Material Name + {00000000-0000-0000-0080-000000000030}, !- Handle + {00000000-0000-0000-0044-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000031}, !- Handle - {00000000-0000-0000-0048-000000000012}; !- Material Name + {00000000-0000-0000-0080-000000000031}, !- Handle + {00000000-0000-0000-0044-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000098}, !- Surface Name + {00000000-0000-0000-0082-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14212,11 +10276,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000103}, !- Surface Name + {00000000-0000-0000-0082-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14228,11 +10292,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000003}, !- Handle + {00000000-0000-0000-0081-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000110}, !- Surface Name + {00000000-0000-0000-0082-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14244,11 +10308,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000004}, !- Handle + {00000000-0000-0000-0081-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000119}, !- Surface Name + {00000000-0000-0000-0082-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14260,11 +10324,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000005}, !- Handle + {00000000-0000-0000-0081-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000125}, !- Surface Name + {00000000-0000-0000-0082-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14276,11 +10340,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000006}, !- Handle + {00000000-0000-0000-0081-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000129}, !- Surface Name + {00000000-0000-0000-0082-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14292,11 +10356,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000007}, !- Handle + {00000000-0000-0000-0081-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000135}, !- Surface Name + {00000000-0000-0000-0082-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14308,11 +10372,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000008}, !- Handle + {00000000-0000-0000-0081-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000143}, !- Surface Name + {00000000-0000-0000-0082-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14324,11 +10388,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000009}, !- Handle + {00000000-0000-0000-0081-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000147}, !- Surface Name + {00000000-0000-0000-0082-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14340,11 +10404,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000010}, !- Handle + {00000000-0000-0000-0081-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000151}, !- Surface Name + {00000000-0000-0000-0082-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14356,11 +10420,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000011}, !- Handle + {00000000-0000-0000-0081-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000157}, !- Surface Name + {00000000-0000-0000-0082-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14372,11 +10436,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000012}, !- Handle + {00000000-0000-0000-0081-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000165}, !- Surface Name + {00000000-0000-0000-0082-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14388,13 +10452,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0082-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14405,13 +10469,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000002}, !- Handle + {00000000-0000-0000-0082-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14422,13 +10486,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000003}, !- Handle + {00000000-0000-0000-0082-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14439,13 +10503,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000004}, !- Handle + {00000000-0000-0000-0082-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14456,13 +10520,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000005}, !- Handle + {00000000-0000-0000-0082-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14473,11 +10537,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000006}, !- Handle + {00000000-0000-0000-0082-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14490,13 +10554,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000007}, !- Handle + {00000000-0000-0000-0082-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14507,13 +10571,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000008}, !- Handle + {00000000-0000-0000-0082-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14524,13 +10588,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000009}, !- Handle + {00000000-0000-0000-0082-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14541,13 +10605,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000010}, !- Handle + {00000000-0000-0000-0082-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14558,13 +10622,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000011}, !- Handle + {00000000-0000-0000-0082-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14575,13 +10639,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000012}, !- Handle + {00000000-0000-0000-0082-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14592,13 +10656,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000013}, !- Handle + {00000000-0000-0000-0082-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14609,13 +10673,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000014}, !- Handle + {00000000-0000-0000-0082-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14626,13 +10690,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000015}, !- Handle + {00000000-0000-0000-0082-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14643,13 +10707,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000016}, !- Handle + {00000000-0000-0000-0082-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14660,13 +10724,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000017}, !- Handle + {00000000-0000-0000-0082-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14677,13 +10741,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000018}, !- Handle + {00000000-0000-0000-0082-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14694,13 +10758,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000019}, !- Handle + {00000000-0000-0000-0082-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14711,11 +10775,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000020}, !- Handle + {00000000-0000-0000-0082-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14728,13 +10792,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000021}, !- Handle + {00000000-0000-0000-0082-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14745,13 +10809,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000022}, !- Handle + {00000000-0000-0000-0082-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14762,13 +10826,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000023}, !- Handle + {00000000-0000-0000-0082-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14779,13 +10843,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000024}, !- Handle + {00000000-0000-0000-0082-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14796,13 +10860,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000025}, !- Handle + {00000000-0000-0000-0082-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14813,13 +10877,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000026}, !- Handle + {00000000-0000-0000-0082-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14830,13 +10894,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000027}, !- Handle + {00000000-0000-0000-0082-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14847,13 +10911,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000028}, !- Handle + {00000000-0000-0000-0082-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14864,13 +10928,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000029}, !- Handle + {00000000-0000-0000-0082-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14881,11 +10945,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000030}, !- Handle + {00000000-0000-0000-0082-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14898,13 +10962,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000031}, !- Handle + {00000000-0000-0000-0082-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14915,13 +10979,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000032}, !- Handle + {00000000-0000-0000-0082-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14932,13 +10996,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000033}, !- Handle + {00000000-0000-0000-0082-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14949,13 +11013,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000034}, !- Handle + {00000000-0000-0000-0082-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14966,13 +11030,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000035}, !- Handle + {00000000-0000-0000-0082-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14983,13 +11047,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000036}, !- Handle + {00000000-0000-0000-0082-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15000,13 +11064,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000037}, !- Handle + {00000000-0000-0000-0082-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15017,13 +11081,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000038}, !- Handle + {00000000-0000-0000-0082-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15034,13 +11098,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000039}, !- Handle + {00000000-0000-0000-0082-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15051,13 +11115,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000040}, !- Handle + {00000000-0000-0000-0082-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15068,13 +11132,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000041}, !- Handle + {00000000-0000-0000-0082-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15085,13 +11149,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000042}, !- Handle + {00000000-0000-0000-0082-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15102,13 +11166,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000043}, !- Handle + {00000000-0000-0000-0082-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15119,13 +11183,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000044}, !- Handle + {00000000-0000-0000-0082-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15136,13 +11200,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000045}, !- Handle + {00000000-0000-0000-0082-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15153,13 +11217,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000046}, !- Handle + {00000000-0000-0000-0082-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15170,13 +11234,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000047}, !- Handle + {00000000-0000-0000-0082-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15187,13 +11251,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000048}, !- Handle + {00000000-0000-0000-0082-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15204,13 +11268,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000049}, !- Handle + {00000000-0000-0000-0082-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15221,13 +11285,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000050}, !- Handle + {00000000-0000-0000-0082-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15238,13 +11302,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000051}, !- Handle + {00000000-0000-0000-0082-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15255,13 +11319,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000052}, !- Handle + {00000000-0000-0000-0082-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15272,13 +11336,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000053}, !- Handle + {00000000-0000-0000-0082-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15289,13 +11353,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000054}, !- Handle + {00000000-0000-0000-0082-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15306,13 +11370,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000055}, !- Handle + {00000000-0000-0000-0082-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15323,13 +11387,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000056}, !- Handle + {00000000-0000-0000-0082-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15340,13 +11404,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000057}, !- Handle + {00000000-0000-0000-0082-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15357,13 +11421,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000058}, !- Handle + {00000000-0000-0000-0082-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15374,13 +11438,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000059}, !- Handle + {00000000-0000-0000-0082-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15391,11 +11455,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000060}, !- Handle + {00000000-0000-0000-0082-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15408,13 +11472,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000061}, !- Handle + {00000000-0000-0000-0082-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15425,13 +11489,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000062}, !- Handle + {00000000-0000-0000-0082-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15442,13 +11506,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000063}, !- Handle + {00000000-0000-0000-0082-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15459,13 +11523,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000064}, !- Handle + {00000000-0000-0000-0082-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15476,13 +11540,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000065}, !- Handle + {00000000-0000-0000-0082-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15493,13 +11557,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000066}, !- Handle + {00000000-0000-0000-0082-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15510,13 +11574,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000067}, !- Handle + {00000000-0000-0000-0082-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15527,13 +11591,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000068}, !- Handle + {00000000-0000-0000-0082-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15544,13 +11608,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000069}, !- Handle + {00000000-0000-0000-0082-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15561,11 +11625,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000070}, !- Handle + {00000000-0000-0000-0082-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15578,13 +11642,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000071}, !- Handle + {00000000-0000-0000-0082-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15595,13 +11659,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000072}, !- Handle + {00000000-0000-0000-0082-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15612,13 +11676,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000073}, !- Handle + {00000000-0000-0000-0082-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15629,13 +11693,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000074}, !- Handle + {00000000-0000-0000-0082-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15646,13 +11710,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000075}, !- Handle + {00000000-0000-0000-0082-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15663,13 +11727,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000076}, !- Handle + {00000000-0000-0000-0082-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15680,13 +11744,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000077}, !- Handle + {00000000-0000-0000-0082-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15697,13 +11761,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000078}, !- Handle + {00000000-0000-0000-0082-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15714,13 +11778,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000079}, !- Handle + {00000000-0000-0000-0082-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15731,11 +11795,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000080}, !- Handle + {00000000-0000-0000-0082-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15748,11 +11812,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000081}, !- Handle + {00000000-0000-0000-0082-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15765,11 +11829,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000082}, !- Handle + {00000000-0000-0000-0082-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15782,11 +11846,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000083}, !- Handle + {00000000-0000-0000-0082-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15799,11 +11863,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000084}, !- Handle + {00000000-0000-0000-0082-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15816,13 +11880,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000085}, !- Handle + {00000000-0000-0000-0082-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15833,13 +11897,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000086}, !- Handle + {00000000-0000-0000-0082-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15850,11 +11914,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000087}, !- Handle + {00000000-0000-0000-0082-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15867,11 +11931,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000088}, !- Handle + {00000000-0000-0000-0082-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15884,11 +11948,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000089}, !- Handle + {00000000-0000-0000-0082-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15901,11 +11965,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000090}, !- Handle + {00000000-0000-0000-0082-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15918,11 +11982,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000091}, !- Handle + {00000000-0000-0000-0082-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15935,13 +11999,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000092}, !- Handle + {00000000-0000-0000-0082-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15952,13 +12016,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000093}, !- Handle + {00000000-0000-0000-0082-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15969,13 +12033,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000094}, !- Handle + {00000000-0000-0000-0082-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15986,13 +12050,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000095}, !- Handle + {00000000-0000-0000-0082-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16003,13 +12067,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000096}, !- Handle + {00000000-0000-0000-0082-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16020,13 +12084,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000097}, !- Handle + {00000000-0000-0000-0082-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16037,11 +12101,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000098}, !- Handle + {00000000-0000-0000-0082-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16054,13 +12118,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000099}, !- Handle + {00000000-0000-0000-0082-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16071,13 +12135,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000100}, !- Handle + {00000000-0000-0000-0082-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16088,13 +12152,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000101}, !- Handle + {00000000-0000-0000-0082-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16105,13 +12169,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000102}, !- Handle + {00000000-0000-0000-0082-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16122,11 +12186,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000103}, !- Handle + {00000000-0000-0000-0082-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16139,13 +12203,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000104}, !- Handle + {00000000-0000-0000-0082-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16156,13 +12220,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000105}, !- Handle + {00000000-0000-0000-0082-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16173,13 +12237,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000106}, !- Handle + {00000000-0000-0000-0082-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16190,13 +12254,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000107}, !- Handle + {00000000-0000-0000-0082-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16207,13 +12271,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000108}, !- Handle + {00000000-0000-0000-0082-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16224,13 +12288,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000109}, !- Handle + {00000000-0000-0000-0082-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16241,11 +12305,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000110}, !- Handle + {00000000-0000-0000-0082-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16258,13 +12322,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000111}, !- Handle + {00000000-0000-0000-0082-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16275,13 +12339,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000112}, !- Handle + {00000000-0000-0000-0082-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16292,13 +12356,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000113}, !- Handle + {00000000-0000-0000-0082-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16309,13 +12373,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000114}, !- Handle + {00000000-0000-0000-0082-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16326,13 +12390,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000115}, !- Handle + {00000000-0000-0000-0082-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16343,13 +12407,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000116}, !- Handle + {00000000-0000-0000-0082-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16360,13 +12424,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000117}, !- Handle + {00000000-0000-0000-0082-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16377,13 +12441,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000118}, !- Handle + {00000000-0000-0000-0082-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16394,11 +12458,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000119}, !- Handle + {00000000-0000-0000-0082-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16411,13 +12475,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000120}, !- Handle + {00000000-0000-0000-0082-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16428,13 +12492,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000121}, !- Handle + {00000000-0000-0000-0082-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16445,11 +12509,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000122}, !- Handle + {00000000-0000-0000-0082-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16462,13 +12526,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000123}, !- Handle + {00000000-0000-0000-0082-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16479,13 +12543,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000124}, !- Handle + {00000000-0000-0000-0082-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16496,11 +12560,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000125}, !- Handle + {00000000-0000-0000-0082-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16513,13 +12577,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000126}, !- Handle + {00000000-0000-0000-0082-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16530,13 +12594,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000127}, !- Handle + {00000000-0000-0000-0082-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16547,11 +12611,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000128}, !- Handle + {00000000-0000-0000-0082-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16564,11 +12628,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000129}, !- Handle + {00000000-0000-0000-0082-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16581,13 +12645,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000130}, !- Handle + {00000000-0000-0000-0082-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16598,13 +12662,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000131}, !- Handle + {00000000-0000-0000-0082-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16615,13 +12679,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000132}, !- Handle + {00000000-0000-0000-0082-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16632,13 +12696,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000133}, !- Handle + {00000000-0000-0000-0082-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16649,11 +12713,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000134}, !- Handle + {00000000-0000-0000-0082-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16666,11 +12730,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000135}, !- Handle + {00000000-0000-0000-0082-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16683,13 +12747,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000136}, !- Handle + {00000000-0000-0000-0082-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16700,13 +12764,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000137}, !- Handle + {00000000-0000-0000-0082-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16717,13 +12781,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000138}, !- Handle + {00000000-0000-0000-0082-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16734,13 +12798,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000139}, !- Handle + {00000000-0000-0000-0082-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16751,11 +12815,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000140}, !- Handle + {00000000-0000-0000-0082-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16768,13 +12832,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000141}, !- Handle + {00000000-0000-0000-0082-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16785,13 +12849,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000142}, !- Handle + {00000000-0000-0000-0082-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16802,11 +12866,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000143}, !- Handle + {00000000-0000-0000-0082-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16819,13 +12883,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000144}, !- Handle + {00000000-0000-0000-0082-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16836,13 +12900,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000145}, !- Handle + {00000000-0000-0000-0082-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16853,11 +12917,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000146}, !- Handle + {00000000-0000-0000-0082-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16870,11 +12934,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000147}, !- Handle + {00000000-0000-0000-0082-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16887,13 +12951,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000148}, !- Handle + {00000000-0000-0000-0082-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16904,13 +12968,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000149}, !- Handle + {00000000-0000-0000-0082-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16921,11 +12985,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000150}, !- Handle + {00000000-0000-0000-0082-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16938,11 +13002,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000151}, !- Handle + {00000000-0000-0000-0082-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16955,13 +13019,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000152}, !- Handle + {00000000-0000-0000-0082-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16972,13 +13036,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000153}, !- Handle + {00000000-0000-0000-0082-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16989,13 +13053,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000154}, !- Handle + {00000000-0000-0000-0082-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17006,13 +13070,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000155}, !- Handle + {00000000-0000-0000-0082-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17023,11 +13087,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000156}, !- Handle + {00000000-0000-0000-0082-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17040,11 +13104,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000157}, !- Handle + {00000000-0000-0000-0082-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17057,13 +13121,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000158}, !- Handle + {00000000-0000-0000-0082-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17074,13 +13138,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000159}, !- Handle + {00000000-0000-0000-0082-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17091,13 +13155,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000160}, !- Handle + {00000000-0000-0000-0082-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17108,13 +13172,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000161}, !- Handle + {00000000-0000-0000-0082-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17125,11 +13189,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000162}, !- Handle + {00000000-0000-0000-0082-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17142,13 +13206,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000163}, !- Handle + {00000000-0000-0000-0082-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17159,13 +13223,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000164}, !- Handle + {00000000-0000-0000-0082-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17176,11 +13240,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000165}, !- Handle + {00000000-0000-0000-0082-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17193,11 +13257,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000166}, !- Handle + {00000000-0000-0000-0082-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17210,11 +13274,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000167}, !- Handle + {00000000-0000-0000-0082-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17227,11 +13291,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000168}, !- Handle + {00000000-0000-0000-0082-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17244,11 +13308,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000169}, !- Handle + {00000000-0000-0000-0082-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17261,27 +13325,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0089-000000000001}, !- Handle - {00000000-0000-0000-0086-000000000044}, !- Surface Name + {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0082-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0089-000000000002}, !- Handle - {00000000-0000-0000-0086-000000000001}, !- Surface Name + {00000000-0000-0000-0085-000000000002}, !- Handle + {00000000-0000-0000-0082-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17290,21 +13354,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000007}, !- Thermostat Name + {00000000-0000-0000-0055-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17313,21 +13377,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000009}, !- Thermostat Name + {00000000-0000-0000-0055-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17336,21 +13400,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000008}, !- Thermostat Name + {00000000-0000-0000-0055-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000004}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17359,21 +13423,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000058}, !- Thermostat Name + {00000000-0000-0000-0055-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000005}, !- Handle + {00000000-0000-0000-0086-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17382,21 +13446,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000052}, !- Thermostat Name + {00000000-0000-0000-0055-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000006}, !- Handle + {00000000-0000-0000-0086-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17405,21 +13469,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000053}, !- Thermostat Name + {00000000-0000-0000-0055-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000007}, !- Handle + {00000000-0000-0000-0086-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17428,21 +13492,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000060}, !- Thermostat Name + {00000000-0000-0000-0055-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000008}, !- Handle + {00000000-0000-0000-0086-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17451,21 +13515,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000065}, !- Thermostat Name + {00000000-0000-0000-0055-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000009}, !- Handle + {00000000-0000-0000-0086-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17474,21 +13538,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000067}, !- Thermostat Name + {00000000-0000-0000-0055-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000010}, !- Handle + {00000000-0000-0000-0086-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17497,21 +13561,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000047}, !- Thermostat Name + {00000000-0000-0000-0055-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000011}, !- Handle + {00000000-0000-0000-0086-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17520,21 +13584,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000055}, !- Thermostat Name + {00000000-0000-0000-0055-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000012}, !- Handle + {00000000-0000-0000-0086-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17543,21 +13607,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000057}, !- Thermostat Name + {00000000-0000-0000-0055-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000013}, !- Handle + {00000000-0000-0000-0086-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17566,21 +13630,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000062}, !- Thermostat Name + {00000000-0000-0000-0055-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000014}, !- Handle + {00000000-0000-0000-0086-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17589,21 +13653,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000064}, !- Thermostat Name + {00000000-0000-0000-0055-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000015}, !- Handle + {00000000-0000-0000-0086-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17612,21 +13676,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000066}, !- Thermostat Name + {00000000-0000-0000-0055-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000016}, !- Handle + {00000000-0000-0000-0086-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17635,21 +13699,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000050}, !- Thermostat Name + {00000000-0000-0000-0055-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000017}, !- Handle + {00000000-0000-0000-0086-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17658,21 +13722,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000051}, !- Thermostat Name + {00000000-0000-0000-0055-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000018}, !- Handle + {00000000-0000-0000-0086-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17681,21 +13745,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000054}, !- Thermostat Name + {00000000-0000-0000-0055-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000019}, !- Handle + {00000000-0000-0000-0086-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17704,21 +13768,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000056}, !- Thermostat Name + {00000000-0000-0000-0055-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000020}, !- Handle + {00000000-0000-0000-0086-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17727,21 +13791,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000061}, !- Thermostat Name + {00000000-0000-0000-0055-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000021}, !- Handle + {00000000-0000-0000-0086-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17750,21 +13814,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000063}, !- Thermostat Name + {00000000-0000-0000-0055-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000022}, !- Handle + {00000000-0000-0000-0086-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17773,21 +13837,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000049}, !- Thermostat Name + {00000000-0000-0000-0055-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000023}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17796,444 +13860,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000013}, !- Thermostat Name + {00000000-0000-0000-0055-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0087-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000002}, !- Handle + {00000000-0000-0000-0087-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000003}, !- Handle + {00000000-0000-0000-0087-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000004}, !- Handle + {00000000-0000-0000-0087-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000005}, !- Handle + {00000000-0000-0000-0087-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000006}, !- Handle + {00000000-0000-0000-0087-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000007}, !- Handle + {00000000-0000-0000-0087-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000008}, !- Handle + {00000000-0000-0000-0087-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000009}, !- Handle + {00000000-0000-0000-0087-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000010}, !- Handle + {00000000-0000-0000-0087-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000011}, !- Handle + {00000000-0000-0000-0087-000000000011}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000012}, !- Handle + {00000000-0000-0000-0087-000000000012}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000013}, !- Handle + {00000000-0000-0000-0087-000000000013}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000014}, !- Handle + {00000000-0000-0000-0087-000000000014}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000015}, !- Handle + {00000000-0000-0000-0087-000000000015}, !- Handle Space Function Office open plan Thermostat 1, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000016}, !- Handle + {00000000-0000-0000-0087-000000000016}, !- Handle Space Function Office open plan Thermostat 10, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000017}, !- Handle + {00000000-0000-0000-0087-000000000017}, !- Handle Space Function Office open plan Thermostat 11, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000018}, !- Handle + {00000000-0000-0000-0087-000000000018}, !- Handle Space Function Office open plan Thermostat 12, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000019}, !- Handle + {00000000-0000-0000-0087-000000000019}, !- Handle Space Function Office open plan Thermostat 13, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000020}, !- Handle + {00000000-0000-0000-0087-000000000020}, !- Handle Space Function Office open plan Thermostat 14, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000021}, !- Handle + {00000000-0000-0000-0087-000000000021}, !- Handle Space Function Office open plan Thermostat 15, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000022}, !- Handle + {00000000-0000-0000-0087-000000000022}, !- Handle Space Function Office open plan Thermostat 16, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000023}, !- Handle + {00000000-0000-0000-0087-000000000023}, !- Handle Space Function Office open plan Thermostat 17, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000024}, !- Handle + {00000000-0000-0000-0087-000000000024}, !- Handle Space Function Office open plan Thermostat 18, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000025}, !- Handle + {00000000-0000-0000-0087-000000000025}, !- Handle Space Function Office open plan Thermostat 19, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000026}, !- Handle + {00000000-0000-0000-0087-000000000026}, !- Handle Space Function Office open plan Thermostat 2, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000027}, !- Handle + {00000000-0000-0000-0087-000000000027}, !- Handle Space Function Office open plan Thermostat 20, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000028}, !- Handle + {00000000-0000-0000-0087-000000000028}, !- Handle Space Function Office open plan Thermostat 21, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000029}, !- Handle + {00000000-0000-0000-0087-000000000029}, !- Handle Space Function Office open plan Thermostat 22, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000030}, !- Handle + {00000000-0000-0000-0087-000000000030}, !- Handle Space Function Office open plan Thermostat 23, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000031}, !- Handle + {00000000-0000-0000-0087-000000000031}, !- Handle Space Function Office open plan Thermostat 24, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000032}, !- Handle + {00000000-0000-0000-0087-000000000032}, !- Handle Space Function Office open plan Thermostat 25, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000033}, !- Handle + {00000000-0000-0000-0087-000000000033}, !- Handle Space Function Office open plan Thermostat 26, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000034}, !- Handle + {00000000-0000-0000-0087-000000000034}, !- Handle Space Function Office open plan Thermostat 27, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000035}, !- Handle + {00000000-0000-0000-0087-000000000035}, !- Handle Space Function Office open plan Thermostat 28, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000036}, !- Handle + {00000000-0000-0000-0087-000000000036}, !- Handle Space Function Office open plan Thermostat 29, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000037}, !- Handle + {00000000-0000-0000-0087-000000000037}, !- Handle Space Function Office open plan Thermostat 3, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000038}, !- Handle + {00000000-0000-0000-0087-000000000038}, !- Handle Space Function Office open plan Thermostat 30, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000039}, !- Handle + {00000000-0000-0000-0087-000000000039}, !- Handle Space Function Office open plan Thermostat 31, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000040}, !- Handle + {00000000-0000-0000-0087-000000000040}, !- Handle Space Function Office open plan Thermostat 32, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000041}, !- Handle + {00000000-0000-0000-0087-000000000041}, !- Handle Space Function Office open plan Thermostat 33, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000042}, !- Handle + {00000000-0000-0000-0087-000000000042}, !- Handle Space Function Office open plan Thermostat 34, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000043}, !- Handle + {00000000-0000-0000-0087-000000000043}, !- Handle Space Function Office open plan Thermostat 35, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000044}, !- Handle + {00000000-0000-0000-0087-000000000044}, !- Handle Space Function Office open plan Thermostat 36, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000045}, !- Handle + {00000000-0000-0000-0087-000000000045}, !- Handle Space Function Office open plan Thermostat 37, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000046}, !- Handle + {00000000-0000-0000-0087-000000000046}, !- Handle Space Function Office open plan Thermostat 38, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000047}, !- Handle + {00000000-0000-0000-0087-000000000047}, !- Handle Space Function Office open plan Thermostat 39, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000048}, !- Handle + {00000000-0000-0000-0087-000000000048}, !- Handle Space Function Office open plan Thermostat 4, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000049}, !- Handle + {00000000-0000-0000-0087-000000000049}, !- Handle Space Function Office open plan Thermostat 40, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000050}, !- Handle + {00000000-0000-0000-0087-000000000050}, !- Handle Space Function Office open plan Thermostat 41, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000051}, !- Handle + {00000000-0000-0000-0087-000000000051}, !- Handle Space Function Office open plan Thermostat 42, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000052}, !- Handle + {00000000-0000-0000-0087-000000000052}, !- Handle Space Function Office open plan Thermostat 43, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000053}, !- Handle + {00000000-0000-0000-0087-000000000053}, !- Handle Space Function Office open plan Thermostat 44, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000054}, !- Handle + {00000000-0000-0000-0087-000000000054}, !- Handle Space Function Office open plan Thermostat 45, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000055}, !- Handle + {00000000-0000-0000-0087-000000000055}, !- Handle Space Function Office open plan Thermostat 46, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000056}, !- Handle + {00000000-0000-0000-0087-000000000056}, !- Handle Space Function Office open plan Thermostat 47, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000057}, !- Handle + {00000000-0000-0000-0087-000000000057}, !- Handle Space Function Office open plan Thermostat 48, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000058}, !- Handle + {00000000-0000-0000-0087-000000000058}, !- Handle Space Function Office open plan Thermostat 49, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000059}, !- Handle + {00000000-0000-0000-0087-000000000059}, !- Handle Space Function Office open plan Thermostat 5, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000060}, !- Handle + {00000000-0000-0000-0087-000000000060}, !- Handle Space Function Office open plan Thermostat 50, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000061}, !- Handle + {00000000-0000-0000-0087-000000000061}, !- Handle Space Function Office open plan Thermostat 51, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000062}, !- Handle + {00000000-0000-0000-0087-000000000062}, !- Handle Space Function Office open plan Thermostat 52, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000063}, !- Handle + {00000000-0000-0000-0087-000000000063}, !- Handle Space Function Office open plan Thermostat 53, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000064}, !- Handle + {00000000-0000-0000-0087-000000000064}, !- Handle Space Function Office open plan Thermostat 54, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000065}, !- Handle + {00000000-0000-0000-0087-000000000065}, !- Handle Space Function Office open plan Thermostat 55, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000066}, !- Handle + {00000000-0000-0000-0087-000000000066}, !- Handle Space Function Office open plan Thermostat 56, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000067}, !- Handle + {00000000-0000-0000-0087-000000000067}, !- Handle Space Function Office open plan Thermostat 57, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000068}, !- Handle + {00000000-0000-0000-0087-000000000068}, !- Handle Space Function Office open plan Thermostat 6, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000069}, !- Handle + {00000000-0000-0000-0087-000000000069}, !- Handle Space Function Office open plan Thermostat 7, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000070}, !- Handle + {00000000-0000-0000-0087-000000000070}, !- Handle Space Function Office open plan Thermostat 8, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000071}, !- Handle + {00000000-0000-0000-0087-000000000071}, !- Handle Space Function Office open plan Thermostat 9, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000072}, !- Handle + {00000000-0000-0000-0087-000000000072}, !- Handle Space Function Office open plan Thermostat, !- Name - {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0089-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff, !- Name 4.12098554344306, !- Tank Volume {m3} - {00000000-0000-0000-0063-000000000020}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000020}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -18251,7 +14315,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0063-000000000025}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0059-000000000022}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 8.85353102543354, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -18261,8 +14325,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000323}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000324}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000155}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000156}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -18275,18 +14339,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0095-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle Core_bottom WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000340}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000341}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000172}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000173}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18294,13 +14358,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000002}, !- Handle + {00000000-0000-0000-0092-000000000002}, !- Handle Core_mid WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000344}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000345}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000176}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000177}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18308,13 +14372,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000003}, !- Handle + {00000000-0000-0000-0092-000000000003}, !- Handle Core_top WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000348}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000349}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000180}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000181}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18322,13 +14386,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000004}, !- Handle + {00000000-0000-0000-0092-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0017-000000000352}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000353}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000184}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000185}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18336,13 +14400,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000005}, !- Handle + {00000000-0000-0000-0092-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000356}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000357}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000188}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000189}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18350,13 +14414,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000006}, !- Handle + {00000000-0000-0000-0092-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000360}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000361}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000192}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000193}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18364,13 +14428,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000007}, !- Handle + {00000000-0000-0000-0092-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000364}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000365}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000196}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000197}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18378,13 +14442,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000008}, !- Handle + {00000000-0000-0000-0092-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000368}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000369}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000200}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000201}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18392,13 +14456,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000009}, !- Handle + {00000000-0000-0000-0092-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000372}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000373}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000204}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000205}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18406,13 +14470,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000010}, !- Handle + {00000000-0000-0000-0092-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000376}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000377}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000208}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18420,13 +14484,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000011}, !- Handle + {00000000-0000-0000-0092-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000380}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000381}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000212}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000213}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18434,13 +14498,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000012}, !- Handle + {00000000-0000-0000-0092-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000384}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000385}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000216}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000217}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18448,13 +14512,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000013}, !- Handle + {00000000-0000-0000-0092-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000388}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000389}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000220}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000221}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18462,13 +14526,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000014}, !- Handle + {00000000-0000-0000-0092-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000392}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000393}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000225}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18476,13 +14540,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000015}, !- Handle + {00000000-0000-0000-0092-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000396}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000397}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000228}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000229}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18490,13 +14554,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000016}, !- Handle + {00000000-0000-0000-0092-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000400}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000401}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000232}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000233}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18504,13 +14568,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000017}, !- Handle + {00000000-0000-0000-0092-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000404}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000405}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000236}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000237}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18518,13 +14582,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000018}, !- Handle + {00000000-0000-0000-0092-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000408}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000409}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000240}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000241}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18532,13 +14596,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000019}, !- Handle + {00000000-0000-0000-0092-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000412}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000413}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000244}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000245}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18546,314 +14610,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0093-000000000001}, !- Handle Core_bottom Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000002}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000002}, !- Handle + {00000000-0000-0000-0093-000000000002}, !- Handle Core_mid Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000003}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000003}, !- Handle + {00000000-0000-0000-0093-000000000003}, !- Handle Core_top Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000004}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000004}, !- Handle + {00000000-0000-0000-0093-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0098-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000005}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000005}, !- Handle + {00000000-0000-0000-0093-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000006}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000006}, !- Handle + {00000000-0000-0000-0093-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000007}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000007}, !- Handle + {00000000-0000-0000-0093-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000008}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000008}, !- Handle + {00000000-0000-0000-0093-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000011}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000009}, !- Handle + {00000000-0000-0000-0093-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000012}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000010}, !- Handle + {00000000-0000-0000-0093-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000013}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000011}, !- Handle + {00000000-0000-0000-0093-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000014}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000012}, !- Handle + {00000000-0000-0000-0093-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000015}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000013}, !- Handle + {00000000-0000-0000-0093-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000016}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000014}, !- Handle + {00000000-0000-0000-0093-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000017}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000015}, !- Handle + {00000000-0000-0000-0093-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000018}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000016}, !- Handle + {00000000-0000-0000-0093-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000019}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000017}, !- Handle + {00000000-0000-0000-0093-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000020}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000018}, !- Handle + {00000000-0000-0000-0093-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000021}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000019}, !- Handle + {00000000-0000-0000-0093-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000022}, !- Space Name - {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle Core_bottom 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Handle Core_mid 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000003}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Handle Core_top 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000004}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.87303728009577e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000005}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000006}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000007}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000008}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000009}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000010}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000011}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000013}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000014}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000015}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000016}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000017}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000018}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000019}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0095-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -18869,188 +14933,62 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0100-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0100-000000000002}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Handle SimpleGlazing:U=0.190 SHGC=0.600, !- Name 1.9, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0101-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle Zone HVAC Baseboard Convective Electric 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000002}, !- Handle - Zone HVAC Baseboard Convective Electric 10, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000003}, !- Handle - Zone HVAC Baseboard Convective Electric 11, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000004}, !- Handle - Zone HVAC Baseboard Convective Electric 12, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000005}, !- Handle - Zone HVAC Baseboard Convective Electric 13, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000006}, !- Handle - Zone HVAC Baseboard Convective Electric 14, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000007}, !- Handle - Zone HVAC Baseboard Convective Electric 15, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000008}, !- Handle - Zone HVAC Baseboard Convective Electric 16, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000009}, !- Handle - Zone HVAC Baseboard Convective Electric 17, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000010}, !- Handle - Zone HVAC Baseboard Convective Electric 18, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000011}, !- Handle - Zone HVAC Baseboard Convective Electric 19, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000012}, !- Handle + {00000000-0000-0000-0098-000000000002}, !- Handle Zone HVAC Baseboard Convective Electric 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000013}, !- Handle - Zone HVAC Baseboard Convective Electric 20, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000014}, !- Handle - Zone HVAC Baseboard Convective Electric 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000015}, !- Handle - Zone HVAC Baseboard Convective Electric 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000016}, !- Handle - Zone HVAC Baseboard Convective Electric 5, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000017}, !- Handle - Zone HVAC Baseboard Convective Electric 6, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000018}, !- Handle - Zone HVAC Baseboard Convective Electric 7, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000019}, !- Handle - Zone HVAC Baseboard Convective Electric 8, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000020}, !- Handle - Zone HVAC Baseboard Convective Electric 9, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000001}, !- Handle + {00000000-0000-0000-0099-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000001}, !- Thermal Zone + {00000000-0000-0000-0086-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000002}, !- Handle + {00000000-0000-0000-0099-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000002}, !- Thermal Zone + {00000000-0000-0000-0086-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000003}, !- Handle + {00000000-0000-0000-0099-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000003}, !- Thermal Zone + {00000000-0000-0000-0086-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000004}, !- Handle + {00000000-0000-0000-0099-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000004}, !- Thermal Zone + {00000000-0000-0000-0086-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000012}, !- Zone Equipment 1 + {00000000-0000-0000-0098-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -19062,299 +15000,119 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000005}, !- Handle + {00000000-0000-0000-0099-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000005}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000005}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000006}, !- Handle + {00000000-0000-0000-0099-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000006}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000017}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000006}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000007}, !- Handle + {00000000-0000-0000-0099-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000007}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000007}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000008}, !- Handle + {00000000-0000-0000-0099-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000008}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000018}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000008}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000009}, !- Handle + {00000000-0000-0000-0099-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000016}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000009}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000010}, !- Handle + {00000000-0000-0000-0099-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000019}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000010}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000011}, !- Handle + {00000000-0000-0000-0099-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000011}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000012}, !- Handle + {00000000-0000-0000-0099-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000012}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000013}, !- Handle + {00000000-0000-0000-0099-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000013}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000014}, !- Handle + {00000000-0000-0000-0099-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000020}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000014}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000015}, !- Handle + {00000000-0000-0000-0099-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000015}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000016}, !- Handle + {00000000-0000-0000-0099-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000016}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000017}, !- Handle + {00000000-0000-0000-0099-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000009}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000017}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000018}, !- Handle + {00000000-0000-0000-0099-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000010}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000018}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000019}, !- Handle + {00000000-0000-0000-0099-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000019}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000008}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000019}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000020}, !- Handle + {00000000-0000-0000-0099-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000020}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000011}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000020}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000021}, !- Handle + {00000000-0000-0000-0099-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000021}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000021}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000022}, !- Handle + {00000000-0000-0000-0099-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000022}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000022}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000023}, !- Handle + {00000000-0000-0000-0099-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000023}, !- Thermal Zone + {00000000-0000-0000-0086-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0098-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 1adedfd1d0..3028403255 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000025}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -5269,61 +5269,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2a094015-626f-43c5-a53c-22f92251dd8d}<23.9 && {2a094015-626f-43c5-a53c-22f92251dd8d}>1.7, !- Program Line 1 - SET {0db4739d-236d-436c-8953-3c79a7e82c48} = 29.4, !- Program Line 2 - SET {1f434e0b-0444-494e-9450-304a15f1221d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2a094015-626f-43c5-a53c-22f92251dd8d}<23.9 && {2a094015-626f-43c5-a53c-22f92251dd8d}>1.7, !- Program Line 4 - SET {0db4739d-236d-436c-8953-3c79a7e82c48} = 29.4, !- Program Line 5 - SET {1f434e0b-0444-494e-9450-304a15f1221d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2a094015-626f-43c5-a53c-22f92251dd8d}<23.9 && {2a094015-626f-43c5-a53c-22f92251dd8d}>1.7, !- Program Line 7 - SET {0db4739d-236d-436c-8953-3c79a7e82c48} = 29.4, !- Program Line 8 - SET {1f434e0b-0444-494e-9450-304a15f1221d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2a094015-626f-43c5-a53c-22f92251dd8d}<23.9 && {2a094015-626f-43c5-a53c-22f92251dd8d}>1.7, !- Program Line 10 - SET {0db4739d-236d-436c-8953-3c79a7e82c48} = 29.4, !- Program Line 11 - SET {1f434e0b-0444-494e-9450-304a15f1221d} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {69117bbe-90af-49dd-87de-8f6990d3b58c}<23.9 && {69117bbe-90af-49dd-87de-8f6990d3b58c}>1.7, !- Program Line 1 + SET {72ee2344-4285-411b-87ff-6237c350e48c} = 29.4, !- Program Line 2 + SET {53a7af94-1a26-4805-a3f1-9ec7b6c48afa} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {69117bbe-90af-49dd-87de-8f6990d3b58c}<23.9 && {69117bbe-90af-49dd-87de-8f6990d3b58c}>1.7, !- Program Line 4 + SET {72ee2344-4285-411b-87ff-6237c350e48c} = 29.4, !- Program Line 5 + SET {53a7af94-1a26-4805-a3f1-9ec7b6c48afa} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {69117bbe-90af-49dd-87de-8f6990d3b58c}<23.9 && {69117bbe-90af-49dd-87de-8f6990d3b58c}>1.7, !- Program Line 7 + SET {72ee2344-4285-411b-87ff-6237c350e48c} = 29.4, !- Program Line 8 + SET {53a7af94-1a26-4805-a3f1-9ec7b6c48afa} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {69117bbe-90af-49dd-87de-8f6990d3b58c}<23.9 && {69117bbe-90af-49dd-87de-8f6990d3b58c}>1.7, !- Program Line 10 + SET {72ee2344-4285-411b-87ff-6237c350e48c} = 29.4, !- Program Line 11 + SET {53a7af94-1a26-4805-a3f1-9ec7b6c48afa} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0db4739d-236d-436c-8953-3c79a7e82c48} = NULL, !- Program Line 14 - SET {1f434e0b-0444-494e-9450-304a15f1221d} = NULL, !- Program Line 15 + SET {72ee2344-4285-411b-87ff-6237c350e48c} = NULL, !- Program Line 14 + SET {53a7af94-1a26-4805-a3f1-9ec7b6c48afa} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d6b42cd9-ce01-477a-9ced-385589927907}<23.9 && {d6b42cd9-ce01-477a-9ced-385589927907}>1.7, !- Program Line 1 - SET {fd5bec72-0489-4256-88bd-d91c9f5ab347} = 29.4, !- Program Line 2 - SET {30847cef-8d72-4a7f-ac5d-a014814979fb} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d6b42cd9-ce01-477a-9ced-385589927907}<23.9 && {d6b42cd9-ce01-477a-9ced-385589927907}>1.7, !- Program Line 4 - SET {fd5bec72-0489-4256-88bd-d91c9f5ab347} = 29.4, !- Program Line 5 - SET {30847cef-8d72-4a7f-ac5d-a014814979fb} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d6b42cd9-ce01-477a-9ced-385589927907}<23.9 && {d6b42cd9-ce01-477a-9ced-385589927907}>1.7, !- Program Line 7 - SET {fd5bec72-0489-4256-88bd-d91c9f5ab347} = 29.4, !- Program Line 8 - SET {30847cef-8d72-4a7f-ac5d-a014814979fb} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d6b42cd9-ce01-477a-9ced-385589927907}<23.9 && {d6b42cd9-ce01-477a-9ced-385589927907}>1.7, !- Program Line 10 - SET {fd5bec72-0489-4256-88bd-d91c9f5ab347} = 29.4, !- Program Line 11 - SET {30847cef-8d72-4a7f-ac5d-a014814979fb} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0f830cd6-a5de-4fcf-aed7-d0dc4647125b}<23.9 && {0f830cd6-a5de-4fcf-aed7-d0dc4647125b}>1.7, !- Program Line 1 + SET {ec667460-2cee-4706-9f2d-76ebb066d00c} = 29.4, !- Program Line 2 + SET {f4bd391c-ae72-4c0c-8882-cc61e87ed46f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0f830cd6-a5de-4fcf-aed7-d0dc4647125b}<23.9 && {0f830cd6-a5de-4fcf-aed7-d0dc4647125b}>1.7, !- Program Line 4 + SET {ec667460-2cee-4706-9f2d-76ebb066d00c} = 29.4, !- Program Line 5 + SET {f4bd391c-ae72-4c0c-8882-cc61e87ed46f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0f830cd6-a5de-4fcf-aed7-d0dc4647125b}<23.9 && {0f830cd6-a5de-4fcf-aed7-d0dc4647125b}>1.7, !- Program Line 7 + SET {ec667460-2cee-4706-9f2d-76ebb066d00c} = 29.4, !- Program Line 8 + SET {f4bd391c-ae72-4c0c-8882-cc61e87ed46f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0f830cd6-a5de-4fcf-aed7-d0dc4647125b}<23.9 && {0f830cd6-a5de-4fcf-aed7-d0dc4647125b}>1.7, !- Program Line 10 + SET {ec667460-2cee-4706-9f2d-76ebb066d00c} = 29.4, !- Program Line 11 + SET {f4bd391c-ae72-4c0c-8882-cc61e87ed46f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {fd5bec72-0489-4256-88bd-d91c9f5ab347} = NULL, !- Program Line 14 - SET {30847cef-8d72-4a7f-ac5d-a014814979fb} = NULL, !- Program Line 15 + SET {ec667460-2cee-4706-9f2d-76ebb066d00c} = NULL, !- Program Line 14 + SET {f4bd391c-ae72-4c0c-8882-cc61e87ed46f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6c83fad7-f103-448a-8a35-b474df9e9827}<23.9 && {6c83fad7-f103-448a-8a35-b474df9e9827}>1.7, !- Program Line 1 - SET {68f7eb0f-369d-494b-b2ec-30d326177d72} = 29.4, !- Program Line 2 - SET {bc088cec-eabc-46b8-9284-773a02489d0a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6c83fad7-f103-448a-8a35-b474df9e9827}<23.9 && {6c83fad7-f103-448a-8a35-b474df9e9827}>1.7, !- Program Line 4 - SET {68f7eb0f-369d-494b-b2ec-30d326177d72} = 29.4, !- Program Line 5 - SET {bc088cec-eabc-46b8-9284-773a02489d0a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6c83fad7-f103-448a-8a35-b474df9e9827}<23.9 && {6c83fad7-f103-448a-8a35-b474df9e9827}>1.7, !- Program Line 7 - SET {68f7eb0f-369d-494b-b2ec-30d326177d72} = 29.4, !- Program Line 8 - SET {bc088cec-eabc-46b8-9284-773a02489d0a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6c83fad7-f103-448a-8a35-b474df9e9827}<23.9 && {6c83fad7-f103-448a-8a35-b474df9e9827}>1.7, !- Program Line 10 - SET {68f7eb0f-369d-494b-b2ec-30d326177d72} = 29.4, !- Program Line 11 - SET {bc088cec-eabc-46b8-9284-773a02489d0a} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f716b99b-8756-45d0-bb1e-898227caa253}<23.9 && {f716b99b-8756-45d0-bb1e-898227caa253}>1.7, !- Program Line 1 + SET {58f80afc-eabf-4368-b6ad-e7f0e2d8c82d} = 29.4, !- Program Line 2 + SET {86d450e5-1791-45a3-9e7f-def39239bbd5} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f716b99b-8756-45d0-bb1e-898227caa253}<23.9 && {f716b99b-8756-45d0-bb1e-898227caa253}>1.7, !- Program Line 4 + SET {58f80afc-eabf-4368-b6ad-e7f0e2d8c82d} = 29.4, !- Program Line 5 + SET {86d450e5-1791-45a3-9e7f-def39239bbd5} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f716b99b-8756-45d0-bb1e-898227caa253}<23.9 && {f716b99b-8756-45d0-bb1e-898227caa253}>1.7, !- Program Line 7 + SET {58f80afc-eabf-4368-b6ad-e7f0e2d8c82d} = 29.4, !- Program Line 8 + SET {86d450e5-1791-45a3-9e7f-def39239bbd5} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f716b99b-8756-45d0-bb1e-898227caa253}<23.9 && {f716b99b-8756-45d0-bb1e-898227caa253}>1.7, !- Program Line 10 + SET {58f80afc-eabf-4368-b6ad-e7f0e2d8c82d} = 29.4, !- Program Line 11 + SET {86d450e5-1791-45a3-9e7f-def39239bbd5} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {68f7eb0f-369d-494b-b2ec-30d326177d72} = NULL, !- Program Line 14 - SET {bc088cec-eabc-46b8-9284-773a02489d0a} = NULL, !- Program Line 15 + SET {58f80afc-eabf-4368-b6ad-e7f0e2d8c82d} = NULL, !- Program Line 14 + SET {86d450e5-1791-45a3-9e7f-def39239bbd5} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -5521,7 +5521,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -7037,55 +7037,55 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000147}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000148}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000149}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000150}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000343}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000151}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000348}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000152}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000153}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000154}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000344}, !- Inlet Port {00000000-0000-0000-0017-000000000345}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000155}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000346}, !- Inlet Port {00000000-0000-0000-0017-000000000347}; !- Outlet Port @@ -8837,7 +8837,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000061}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -8852,7 +8852,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000062}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8861,7 +8861,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000063}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9756,7 +9756,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000025}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000061}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000062}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index c24660bade..351f7dd98d 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000025}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -5359,61 +5359,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bfd6323b-d278-47d7-a739-8c20eddb1f2a}<23.9 && {bfd6323b-d278-47d7-a739-8c20eddb1f2a}>1.7, !- Program Line 1 - SET {1c5c042e-61d0-4e43-bfd7-d49a71940676} = 29.4, !- Program Line 2 - SET {e77cdd6e-5830-4a59-9563-441735f8a59b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bfd6323b-d278-47d7-a739-8c20eddb1f2a}<23.9 && {bfd6323b-d278-47d7-a739-8c20eddb1f2a}>1.7, !- Program Line 4 - SET {1c5c042e-61d0-4e43-bfd7-d49a71940676} = 29.4, !- Program Line 5 - SET {e77cdd6e-5830-4a59-9563-441735f8a59b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bfd6323b-d278-47d7-a739-8c20eddb1f2a}<23.9 && {bfd6323b-d278-47d7-a739-8c20eddb1f2a}>1.7, !- Program Line 7 - SET {1c5c042e-61d0-4e43-bfd7-d49a71940676} = 29.4, !- Program Line 8 - SET {e77cdd6e-5830-4a59-9563-441735f8a59b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bfd6323b-d278-47d7-a739-8c20eddb1f2a}<23.9 && {bfd6323b-d278-47d7-a739-8c20eddb1f2a}>1.7, !- Program Line 10 - SET {1c5c042e-61d0-4e43-bfd7-d49a71940676} = 29.4, !- Program Line 11 - SET {e77cdd6e-5830-4a59-9563-441735f8a59b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f975ba19-443a-49f1-a3c1-e8b09c52f00e}<23.9 && {f975ba19-443a-49f1-a3c1-e8b09c52f00e}>1.7, !- Program Line 1 + SET {259c0225-cdf5-4f88-a762-5e71642a558a} = 29.4, !- Program Line 2 + SET {dc492ed9-f687-47ad-bd30-36cc64be92ab} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f975ba19-443a-49f1-a3c1-e8b09c52f00e}<23.9 && {f975ba19-443a-49f1-a3c1-e8b09c52f00e}>1.7, !- Program Line 4 + SET {259c0225-cdf5-4f88-a762-5e71642a558a} = 29.4, !- Program Line 5 + SET {dc492ed9-f687-47ad-bd30-36cc64be92ab} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f975ba19-443a-49f1-a3c1-e8b09c52f00e}<23.9 && {f975ba19-443a-49f1-a3c1-e8b09c52f00e}>1.7, !- Program Line 7 + SET {259c0225-cdf5-4f88-a762-5e71642a558a} = 29.4, !- Program Line 8 + SET {dc492ed9-f687-47ad-bd30-36cc64be92ab} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f975ba19-443a-49f1-a3c1-e8b09c52f00e}<23.9 && {f975ba19-443a-49f1-a3c1-e8b09c52f00e}>1.7, !- Program Line 10 + SET {259c0225-cdf5-4f88-a762-5e71642a558a} = 29.4, !- Program Line 11 + SET {dc492ed9-f687-47ad-bd30-36cc64be92ab} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1c5c042e-61d0-4e43-bfd7-d49a71940676} = NULL, !- Program Line 14 - SET {e77cdd6e-5830-4a59-9563-441735f8a59b} = NULL, !- Program Line 15 + SET {259c0225-cdf5-4f88-a762-5e71642a558a} = NULL, !- Program Line 14 + SET {dc492ed9-f687-47ad-bd30-36cc64be92ab} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c18d2cef-b031-475a-bc8d-c4c44ecb0f7a}<23.9 && {c18d2cef-b031-475a-bc8d-c4c44ecb0f7a}>1.7, !- Program Line 1 - SET {946ea3a0-90c3-4a66-ad93-469804627112} = 29.4, !- Program Line 2 - SET {749b1a2c-6439-42ed-95a5-2a8098c0e294} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c18d2cef-b031-475a-bc8d-c4c44ecb0f7a}<23.9 && {c18d2cef-b031-475a-bc8d-c4c44ecb0f7a}>1.7, !- Program Line 4 - SET {946ea3a0-90c3-4a66-ad93-469804627112} = 29.4, !- Program Line 5 - SET {749b1a2c-6439-42ed-95a5-2a8098c0e294} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c18d2cef-b031-475a-bc8d-c4c44ecb0f7a}<23.9 && {c18d2cef-b031-475a-bc8d-c4c44ecb0f7a}>1.7, !- Program Line 7 - SET {946ea3a0-90c3-4a66-ad93-469804627112} = 29.4, !- Program Line 8 - SET {749b1a2c-6439-42ed-95a5-2a8098c0e294} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c18d2cef-b031-475a-bc8d-c4c44ecb0f7a}<23.9 && {c18d2cef-b031-475a-bc8d-c4c44ecb0f7a}>1.7, !- Program Line 10 - SET {946ea3a0-90c3-4a66-ad93-469804627112} = 29.4, !- Program Line 11 - SET {749b1a2c-6439-42ed-95a5-2a8098c0e294} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {12f68faa-1092-47ac-9a97-bde72ebbe504}<23.9 && {12f68faa-1092-47ac-9a97-bde72ebbe504}>1.7, !- Program Line 1 + SET {88a72f0f-dcf6-4caf-9bda-f36b8aee25e5} = 29.4, !- Program Line 2 + SET {61ac14b1-7d1e-4fd8-8042-f1e5e68f3bfa} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {12f68faa-1092-47ac-9a97-bde72ebbe504}<23.9 && {12f68faa-1092-47ac-9a97-bde72ebbe504}>1.7, !- Program Line 4 + SET {88a72f0f-dcf6-4caf-9bda-f36b8aee25e5} = 29.4, !- Program Line 5 + SET {61ac14b1-7d1e-4fd8-8042-f1e5e68f3bfa} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {12f68faa-1092-47ac-9a97-bde72ebbe504}<23.9 && {12f68faa-1092-47ac-9a97-bde72ebbe504}>1.7, !- Program Line 7 + SET {88a72f0f-dcf6-4caf-9bda-f36b8aee25e5} = 29.4, !- Program Line 8 + SET {61ac14b1-7d1e-4fd8-8042-f1e5e68f3bfa} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {12f68faa-1092-47ac-9a97-bde72ebbe504}<23.9 && {12f68faa-1092-47ac-9a97-bde72ebbe504}>1.7, !- Program Line 10 + SET {88a72f0f-dcf6-4caf-9bda-f36b8aee25e5} = 29.4, !- Program Line 11 + SET {61ac14b1-7d1e-4fd8-8042-f1e5e68f3bfa} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {946ea3a0-90c3-4a66-ad93-469804627112} = NULL, !- Program Line 14 - SET {749b1a2c-6439-42ed-95a5-2a8098c0e294} = NULL, !- Program Line 15 + SET {88a72f0f-dcf6-4caf-9bda-f36b8aee25e5} = NULL, !- Program Line 14 + SET {61ac14b1-7d1e-4fd8-8042-f1e5e68f3bfa} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {34f6b2e4-143b-41bd-b5fd-f980b00dd0ca}<23.9 && {34f6b2e4-143b-41bd-b5fd-f980b00dd0ca}>1.7, !- Program Line 1 - SET {69426362-102f-4b59-8360-9ace984295f3} = 29.4, !- Program Line 2 - SET {d0835225-ed7a-4f62-abbf-b762d87bfe95} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {34f6b2e4-143b-41bd-b5fd-f980b00dd0ca}<23.9 && {34f6b2e4-143b-41bd-b5fd-f980b00dd0ca}>1.7, !- Program Line 4 - SET {69426362-102f-4b59-8360-9ace984295f3} = 29.4, !- Program Line 5 - SET {d0835225-ed7a-4f62-abbf-b762d87bfe95} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {34f6b2e4-143b-41bd-b5fd-f980b00dd0ca}<23.9 && {34f6b2e4-143b-41bd-b5fd-f980b00dd0ca}>1.7, !- Program Line 7 - SET {69426362-102f-4b59-8360-9ace984295f3} = 29.4, !- Program Line 8 - SET {d0835225-ed7a-4f62-abbf-b762d87bfe95} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {34f6b2e4-143b-41bd-b5fd-f980b00dd0ca}<23.9 && {34f6b2e4-143b-41bd-b5fd-f980b00dd0ca}>1.7, !- Program Line 10 - SET {69426362-102f-4b59-8360-9ace984295f3} = 29.4, !- Program Line 11 - SET {d0835225-ed7a-4f62-abbf-b762d87bfe95} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9b58dcdd-70e7-460d-b111-548c83d68d30}<23.9 && {9b58dcdd-70e7-460d-b111-548c83d68d30}>1.7, !- Program Line 1 + SET {ff03b9f3-7747-4b3e-98ab-a955ac292ef9} = 29.4, !- Program Line 2 + SET {a2718f86-9fe6-4c5e-bbbd-7811871d1222} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9b58dcdd-70e7-460d-b111-548c83d68d30}<23.9 && {9b58dcdd-70e7-460d-b111-548c83d68d30}>1.7, !- Program Line 4 + SET {ff03b9f3-7747-4b3e-98ab-a955ac292ef9} = 29.4, !- Program Line 5 + SET {a2718f86-9fe6-4c5e-bbbd-7811871d1222} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9b58dcdd-70e7-460d-b111-548c83d68d30}<23.9 && {9b58dcdd-70e7-460d-b111-548c83d68d30}>1.7, !- Program Line 7 + SET {ff03b9f3-7747-4b3e-98ab-a955ac292ef9} = 29.4, !- Program Line 8 + SET {a2718f86-9fe6-4c5e-bbbd-7811871d1222} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9b58dcdd-70e7-460d-b111-548c83d68d30}<23.9 && {9b58dcdd-70e7-460d-b111-548c83d68d30}>1.7, !- Program Line 10 + SET {ff03b9f3-7747-4b3e-98ab-a955ac292ef9} = 29.4, !- Program Line 11 + SET {a2718f86-9fe6-4c5e-bbbd-7811871d1222} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {69426362-102f-4b59-8360-9ace984295f3} = NULL, !- Program Line 14 - SET {d0835225-ed7a-4f62-abbf-b762d87bfe95} = NULL, !- Program Line 15 + SET {ff03b9f3-7747-4b3e-98ab-a955ac292ef9} = NULL, !- Program Line 14 + SET {a2718f86-9fe6-4c5e-bbbd-7811871d1222} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -5611,7 +5611,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -7127,55 +7127,55 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000147}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000148}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000149}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000150}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000343}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000151}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000348}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000152}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000153}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000154}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000344}, !- Inlet Port {00000000-0000-0000-0017-000000000345}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000155}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000346}, !- Inlet Port {00000000-0000-0000-0017-000000000347}; !- Outlet Port @@ -8927,7 +8927,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000061}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -8942,7 +8942,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000062}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8951,7 +8951,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000063}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9846,7 +9846,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000025}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000061}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000062}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm index 8d59047fe7..816ecb413d 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0066-000000000027}, !- Object Name + {00000000-0000-0000-0062-000000000024}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.902183614624489, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0066-000000000031}, !- Object Name + {00000000-0000-0000-0062-000000000025}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.198210559234802, !- Feature Value 1 @@ -32,66 +32,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0066-000000000028}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle - {00000000-0000-0000-0066-000000000029}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle - {00000000-0000-0000-0066-000000000030}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000006}, !- Handle {00000000-0000-0000-0013-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000007}, !- Handle + {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0013-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0066-000000000027}, !- Availability Schedule - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0062-000000000024}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -110,75 +62,9 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0066-000000000028}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0020-000000000185}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0020-000000000188}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0020-000000000187}, !- Demand Side Inlet Node A - {00000000-0000-0000-0020-000000000186}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0066-000000000029}, !- Availability Schedule - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0020-000000000293}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0020-000000000296}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0020-000000000295}, !- Demand Side Inlet Node A - {00000000-0000-0000-0020-000000000294}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000004}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3, !- Name - , !- Controller List Name - {00000000-0000-0000-0066-000000000030}, !- Availability Schedule - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0020-000000000401}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0020-000000000404}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0020-000000000403}, !- Demand Side Inlet Node A - {00000000-0000-0000-0020-000000000402}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0066-000000000031}, !- Availability Schedule + {00000000-0000-0000-0062-000000000025}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -203,8 +89,8 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0020-000000000084}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000613}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000614}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000289}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000290}, !- Relief Air Stream Node Name {00000000-0000-0000-0020-000000000083}; !- Return Air Stream Node Name OS:AirLoopHVAC:OutdoorAirSystem, @@ -214,43 +100,10 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0020-000000000166}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000619}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000620}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000295}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000296}, !- Relief Air Stream Node Name {00000000-0000-0000-0020-000000000170}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0025-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0020-000000000204}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000625}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000626}, !- Relief Air Stream Node Name - {00000000-0000-0000-0020-000000000208}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000004}, !- Handle - Air Loop HVAC Outdoor Air System 4, !- Name - {00000000-0000-0000-0025-000000000004}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0020-000000000312}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000631}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000632}, !- Relief Air Stream Node Name - {00000000-0000-0000-0020-000000000316}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000005}, !- Handle - Air Loop HVAC Outdoor Air System 5, !- Name - {00000000-0000-0000-0025-000000000005}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0020-000000000420}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000637}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000638}, !- Relief Air Stream Node Name - {00000000-0000-0000-0020-000000000424}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -263,39 +116,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0020-000000000153}, !- Outlet Node Name {00000000-0000-0000-0020-000000000181}; !- Inlet Node Name 1 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0020-000000000190}, !- Outlet Node Name - {00000000-0000-0000-0020-000000000219}, !- Inlet Node Name 1 - {00000000-0000-0000-0020-000000000233}, !- Inlet Node Name 2 - {00000000-0000-0000-0020-000000000247}, !- Inlet Node Name 3 - {00000000-0000-0000-0020-000000000261}, !- Inlet Node Name 4 - {00000000-0000-0000-0020-000000000275}, !- Inlet Node Name 5 - {00000000-0000-0000-0020-000000000289}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000004}, !- Handle - Air Loop HVAC Zone Mixer 4, !- Name - {00000000-0000-0000-0020-000000000298}, !- Outlet Node Name - {00000000-0000-0000-0020-000000000327}, !- Inlet Node Name 1 - {00000000-0000-0000-0020-000000000341}, !- Inlet Node Name 2 - {00000000-0000-0000-0020-000000000355}, !- Inlet Node Name 3 - {00000000-0000-0000-0020-000000000369}, !- Inlet Node Name 4 - {00000000-0000-0000-0020-000000000383}, !- Inlet Node Name 5 - {00000000-0000-0000-0020-000000000397}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000005}, !- Handle - Air Loop HVAC Zone Mixer 5, !- Name - {00000000-0000-0000-0020-000000000406}, !- Outlet Node Name - {00000000-0000-0000-0020-000000000435}, !- Inlet Node Name 1 - {00000000-0000-0000-0020-000000000449}, !- Inlet Node Name 2 - {00000000-0000-0000-0020-000000000463}, !- Inlet Node Name 3 - {00000000-0000-0000-0020-000000000477}, !- Inlet Node Name 4 - {00000000-0000-0000-0020-000000000491}, !- Inlet Node Name 5 - {00000000-0000-0000-0020-000000000505}; !- Inlet Node Name 6 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -308,43 +128,10 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0020-000000000152}, !- Inlet Node Name {00000000-0000-0000-0020-000000000182}; !- Outlet Node Name 1 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0020-000000000189}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000220}, !- Outlet Node Name 1 - {00000000-0000-0000-0020-000000000234}, !- Outlet Node Name 2 - {00000000-0000-0000-0020-000000000248}, !- Outlet Node Name 3 - {00000000-0000-0000-0020-000000000262}, !- Outlet Node Name 4 - {00000000-0000-0000-0020-000000000276}, !- Outlet Node Name 5 - {00000000-0000-0000-0020-000000000290}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000004}, !- Handle - Air Loop HVAC Zone Splitter 4, !- Name - {00000000-0000-0000-0020-000000000297}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000328}, !- Outlet Node Name 1 - {00000000-0000-0000-0020-000000000342}, !- Outlet Node Name 2 - {00000000-0000-0000-0020-000000000356}, !- Outlet Node Name 3 - {00000000-0000-0000-0020-000000000370}, !- Outlet Node Name 4 - {00000000-0000-0000-0020-000000000384}, !- Outlet Node Name 5 - {00000000-0000-0000-0020-000000000398}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000005}, !- Handle - Air Loop HVAC Zone Splitter 5, !- Name - {00000000-0000-0000-0020-000000000405}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000436}, !- Outlet Node Name 1 - {00000000-0000-0000-0020-000000000450}, !- Outlet Node Name 2 - {00000000-0000-0000-0020-000000000464}, !- Outlet Node Name 3 - {00000000-0000-0000-0020-000000000478}, !- Outlet Node Name 4 - {00000000-0000-0000-0020-000000000492}, !- Outlet Node Name 5 - {00000000-0000-0000-0020-000000000506}; !- Outlet Node Name 6 - OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000093}, !- Air Inlet Node Name {00000000-0000-0000-0020-000000000094}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -352,14 +139,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000183}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000012}, !- Reheat Coil Name + {00000000-0000-0000-0018-000000000002}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0020-000000000184}, !- Air Outlet Node Name @@ -370,511 +157,76 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000357}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000005}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000358}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000371}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000372}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000385}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000386}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000399}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000400}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000437}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000010}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000438}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000451}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000011}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000452}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000008}, !- Handle - Air Terminal Single Duct VAV Reheat 16, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000465}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000013}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000466}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000009}, !- Handle - Air Terminal Single Duct VAV Reheat 17, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000479}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000014}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000480}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000010}, !- Handle - Air Terminal Single Duct VAV Reheat 18, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000493}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000015}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000494}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000011}, !- Handle - Air Terminal Single Duct VAV Reheat 19, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000507}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000016}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000508}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000221}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000018}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000222}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000235}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000019}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000236}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000249}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000020}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000250}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 5, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000263}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000021}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000264}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000016}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000277}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000022}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000278}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000017}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000291}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000023}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000292}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000018}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000329}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000003}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000330}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000019}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000343}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000344}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0052-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0052-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0052-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000004}, !- Handle - Availability Manager Night Cycle 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0052-000000000013}, !- Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000014}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000015}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000005}, !- Handle - Availability Manager Night Cycle 5, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0052-000000000017}, !- Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000018}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000019}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name - {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name - {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000006}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000007}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000008}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000009}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Boiler:HotWater, {00000000-0000-0000-0010-000000000001}, !- Handle - Primary Boiler 10431kBtu/hr 0.833 Combustion Eff, !- Name + Primary Boiler 319kBtu/hr 0.83 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 3056921.02111873, !- Nominal Capacity {W} - 0.826, !- Nominal Thermal Efficiency + 93364.9531050386, !- Nominal Capacity {W} + 0.83, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0029-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} - 0.25, !- Minimum Part Load Ratio + , !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio {00000000-0000-0000-0020-000000000058}, !- Boiler Water Inlet Node Name {00000000-0000-0000-0020-000000000059}, !- Boiler Water Outlet Node Name 99, !- Water Outlet Upper Temperature Limit {C} - LeavingSetpointModulated, !- Boiler Flow Mode + ConstantFlow, !- Boiler Flow Mode 0, !- On Cycle Parasitic Electric Load {W} 0, !- Off Cycle Parasitic Fuel Load {W} 1, !- Sizing Factor @@ -925,7 +277,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000023}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000023}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -935,7 +287,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -945,7 +297,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -955,14 +307,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0013-000000000001}, !- Handle - Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton, !- Name - 1976208.45618191, !- Reference Capacity {W} - 5.67258064516129, !- Reference COP {W/W} + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton, !- Name + 16349.4011529819, !- Reference Capacity {W} + 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -1004,9 +356,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0028-000000000011}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0030-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0028-000000000009}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0030-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -1041,8 +393,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0015-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 110kBtu/hr 9.26EER, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 111kBtu/hr 9.26EER, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.22027057931225, !- Rated COP {W/W} @@ -1077,7 +429,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0016-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -1092,64 +444,10 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0020-000000000196}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000197}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000205}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000202}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0020-000000000304}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000305}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000313}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000310}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Cooling Water 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0020-000000000412}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000413}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000421}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000418}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Gas, {00000000-0000-0000-0017-000000000001}, !- Handle Coil Heating Gas 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name 0.81, !- Gas Burner Efficiency AutoSize, !- Nominal Capacity {W} {00000000-0000-0000-0020-000000000082}, !- Air Inlet Node Name @@ -1162,7 +460,7 @@ OS:Coil:Heating:Gas, OS:Coil:Heating:Water, {00000000-0000-0000-0018-000000000001}, !- Handle Coil Heating Water 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} {00000000-0000-0000-0020-000000000155}, !- Water Inlet Node Name @@ -1179,1013 +477,401 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0018-000000000002}, !- Handle - Coil Heating Water 10, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000300}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000301}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000311}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000308}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000003}, !- Handle - Coil Heating Water 11, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + Coil Heating Water 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000318}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000319}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000172}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000173}, !- Water Outlet Node Name , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 476993.916320801, !- Rated Capacity {W} + 11552.5978088379, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} , !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000004}, !- Handle - Coil Heating Water 12, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000001}, !- Handle + Coil Heating Water Baseboard 1, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000332}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000333}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 27858.6330413818, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000086}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000087}; !- Water Outlet Node Name -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000005}, !- Handle - Coil Heating Water 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000346}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000347}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 233619.543457031, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000006}, !- Handle - Coil Heating Water 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000002}, !- Handle + Coil Heating Water Baseboard 2, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000360}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000361}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 200906.330108643, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000177}; !- Water Outlet Node Name -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000007}, !- Handle - Coil Heating Water 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000374}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000375}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 101947.906494141, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000001}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000008}, !- Handle - Coil Heating Water 16, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000388}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000389}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 214018.382263184, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000002}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000009}, !- Handle - Coil Heating Water 17, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000408}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000409}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000419}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000416}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000003}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000010}, !- Handle - Coil Heating Water 18, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000426}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000427}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 48369.4622039795, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000004}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000011}, !- Handle - Coil Heating Water 19, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000440}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000441}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 2832.54597187042, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000005}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000012}, !- Handle - Coil Heating Water 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000172}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000173}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 6760.44130325317, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000006}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000013}, !- Handle - Coil Heating Water 20, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000454}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000455}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 23149.9091148376, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000007}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000014}, !- Handle - Coil Heating Water 21, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000468}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000469}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 19546.7582702637, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000008}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000015}, !- Handle - Coil Heating Water 22, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000482}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000483}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 11441.4848327637, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000009}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000016}, !- Handle - Coil Heating Water 23, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000496}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000497}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 21530.0471305847, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000010}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000017}, !- Handle - Coil Heating Water 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000192}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000193}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000203}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000200}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000011}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000018}, !- Handle - Coil Heating Water 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000210}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000211}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 30445.2567100525, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000012}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000019}, !- Handle - Coil Heating Water 5, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000224}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000225}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 2136.74865961075, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000020}, !- Handle - Coil Heating Water 6, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000238}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000239}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 16368.2993888855, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000021}, !- Handle - Coil Heating Water 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000252}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000253}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 14229.7093391418, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000022}, !- Handle - Coil Heating Water 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000266}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000267}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 6995.25539875031, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000023}, !- Handle - Coil Heating Water 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000280}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000281}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 15987.6720428467, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000001}, !- Handle - Coil Heating Water Baseboard 1, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000086}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000087}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000002}, !- Handle - Coil Heating Water Baseboard 10, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000336}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000337}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000003}, !- Handle - Coil Heating Water Baseboard 11, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000350}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000351}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000004}, !- Handle - Coil Heating Water Baseboard 12, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000364}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000365}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000005}, !- Handle - Coil Heating Water Baseboard 13, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000378}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000379}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000006}, !- Handle - Coil Heating Water Baseboard 14, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000392}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000393}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000007}, !- Handle - Coil Heating Water Baseboard 15, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000430}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000431}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000008}, !- Handle - Coil Heating Water Baseboard 16, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000444}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000445}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000009}, !- Handle - Coil Heating Water Baseboard 17, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000458}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000459}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000010}, !- Handle - Coil Heating Water Baseboard 18, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000472}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000473}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000011}, !- Handle - Coil Heating Water Baseboard 19, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000486}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000487}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000012}, !- Handle - Coil Heating Water Baseboard 2, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000177}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000013}, !- Handle - Coil Heating Water Baseboard 20, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000500}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000501}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000014}, !- Handle - Coil Heating Water Baseboard 3, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000214}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000215}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000015}, !- Handle - Coil Heating Water Baseboard 4, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000228}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000229}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000016}, !- Handle - Coil Heating Water Baseboard 5, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000242}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000243}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000017}, !- Handle - Coil Heating Water Baseboard 6, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000256}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000257}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000018}, !- Handle - Coil Heating Water Baseboard 7, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000270}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000271}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000019}, !- Handle - Coil Heating Water Baseboard 8, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000284}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000285}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000020}, !- Handle - Coil Heating Water Baseboard 9, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000322}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000323}; !- Water Outlet Node Name +OS:Connection, + {00000000-0000-0000-0020-000000000013}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000001}, !- Handle + {00000000-0000-0000-0020-000000000014}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000002}, !- Handle + {00000000-0000-0000-0020-000000000015}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000003}, !- Handle + {00000000-0000-0000-0020-000000000016}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000004}, !- Handle + {00000000-0000-0000-0020-000000000017}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000005}, !- Handle + {00000000-0000-0000-0020-000000000018}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000006}, !- Handle + {00000000-0000-0000-0020-000000000019}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000007}, !- Handle + {00000000-0000-0000-0020-000000000020}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000008}, !- Handle + {00000000-0000-0000-0020-000000000021}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000009}, !- Handle + {00000000-0000-0000-0020-000000000022}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000010}, !- Handle + {00000000-0000-0000-0020-000000000023}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000011}, !- Handle - , !- Source Object + {00000000-0000-0000-0020-000000000024}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Source Object 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000012}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000013}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000014}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000015}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000016}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000017}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000018}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000019}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000020}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000021}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000022}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000023}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000024}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000019}, !- Target Object + {00000000-0000-0000-0049-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000025}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- Source Object + {00000000-0000-0000-0090-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000003}, !- Target Object + {00000000-0000-0000-0049-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000026}, !- Handle - {00000000-0000-0000-0094-000000000022}, !- Source Object + {00000000-0000-0000-0090-000000000022}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000043}, !- Target Object + {00000000-0000-0000-0049-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000027}, !- Handle - {00000000-0000-0000-0094-000000000003}, !- Source Object + {00000000-0000-0000-0090-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000005}, !- Target Object + {00000000-0000-0000-0049-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000028}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- Source Object + {00000000-0000-0000-0090-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000031}, !- Target Object + {00000000-0000-0000-0049-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000029}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- Source Object + {00000000-0000-0000-0090-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000033}, !- Target Object + {00000000-0000-0000-0049-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000030}, !- Handle - {00000000-0000-0000-0094-000000000005}, !- Source Object + {00000000-0000-0000-0090-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000009}, !- Target Object + {00000000-0000-0000-0049-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000031}, !- Handle - {00000000-0000-0000-0094-000000000006}, !- Source Object + {00000000-0000-0000-0090-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000011}, !- Target Object + {00000000-0000-0000-0049-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000032}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- Source Object + {00000000-0000-0000-0090-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000035}, !- Target Object + {00000000-0000-0000-0049-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000033}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- Source Object + {00000000-0000-0000-0090-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000021}, !- Target Object + {00000000-0000-0000-0049-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000034}, !- Handle - {00000000-0000-0000-0094-000000000019}, !- Source Object + {00000000-0000-0000-0090-000000000019}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000037}, !- Target Object + {00000000-0000-0000-0049-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000035}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- Source Object + {00000000-0000-0000-0090-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000023}, !- Target Object + {00000000-0000-0000-0049-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000036}, !- Handle - {00000000-0000-0000-0094-000000000004}, !- Source Object + {00000000-0000-0000-0090-000000000004}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000007}, !- Target Object + {00000000-0000-0000-0049-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000037}, !- Handle - {00000000-0000-0000-0094-000000000002}, !- Source Object + {00000000-0000-0000-0090-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000004}, !- Target Object + {00000000-0000-0000-0049-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000038}, !- Handle - {00000000-0000-0000-0094-000000000007}, !- Source Object + {00000000-0000-0000-0090-000000000007}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000013}, !- Target Object + {00000000-0000-0000-0049-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000039}, !- Handle - {00000000-0000-0000-0094-000000000020}, !- Source Object + {00000000-0000-0000-0090-000000000020}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000039}, !- Target Object + {00000000-0000-0000-0049-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000040}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- Source Object + {00000000-0000-0000-0090-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000025}, !- Target Object + {00000000-0000-0000-0049-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000041}, !- Handle - {00000000-0000-0000-0094-000000000021}, !- Source Object + {00000000-0000-0000-0090-000000000021}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000041}, !- Target Object + {00000000-0000-0000-0049-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000042}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- Source Object + {00000000-0000-0000-0090-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000027}, !- Target Object + {00000000-0000-0000-0049-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000043}, !- Handle - {00000000-0000-0000-0094-000000000008}, !- Source Object + {00000000-0000-0000-0090-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000015}, !- Target Object + {00000000-0000-0000-0049-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000044}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- Source Object + {00000000-0000-0000-0090-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000029}, !- Target Object + {00000000-0000-0000-0049-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000045}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- Source Object + {00000000-0000-0000-0090-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000017}, !- Target Object + {00000000-0000-0000-0049-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000046}, !- Handle - {00000000-0000-0000-0094-000000000023}, !- Source Object + {00000000-0000-0000-0090-000000000023}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000280}, !- Target Object + {00000000-0000-0000-0049-000000000133}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000047}, !- Handle - {00000000-0000-0000-0058-000000000003}, !- Source Object + {00000000-0000-0000-0054-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0053-000000000214}, !- Target Object + {00000000-0000-0000-0049-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000048}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000260}, !- Target Object + {00000000-0000-0000-0049-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000049}, !- Handle - {00000000-0000-0000-0053-000000000215}, !- Source Object + {00000000-0000-0000-0049-000000000071}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000003}, !- Target Object + {00000000-0000-0000-0054-000000000003}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000050}, !- Handle - {00000000-0000-0000-0058-000000000003}, !- Source Object + {00000000-0000-0000-0054-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000212}, !- Target Object + {00000000-0000-0000-0049-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000051}, !- Handle - {00000000-0000-0000-0053-000000000212}, !- Source Object + {00000000-0000-0000-0049-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000002}, !- Target Object 2; !- Inlet Port @@ -2194,47 +880,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000052}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000151}, !- Target Object + {00000000-0000-0000-0049-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000053}, !- Handle {00000000-0000-0000-0021-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000213}, !- Target Object + {00000000-0000-0000-0049-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000054}, !- Handle - {00000000-0000-0000-0053-000000000213}, !- Source Object + {00000000-0000-0000-0049-000000000069}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000003}, !- Target Object + {00000000-0000-0000-0054-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000055}, !- Handle - {00000000-0000-0000-0053-000000000214}, !- Source Object + {00000000-0000-0000-0049-000000000070}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0061-000000000001}, !- Target Object + {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000056}, !- Handle - {00000000-0000-0000-0061-000000000001}, !- Source Object + {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000266}, !- Target Object + {00000000-0000-0000-0049-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000057}, !- Handle - {00000000-0000-0000-0053-000000000266}, !- Source Object + {00000000-0000-0000-0049-000000000122}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000058}, !- Handle - {00000000-0000-0000-0053-000000000260}, !- Source Object + {00000000-0000-0000-0049-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000001}, !- Target Object 11; !- Inlet Port @@ -2243,12 +929,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000059}, !- Handle {00000000-0000-0000-0010-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0053-000000000261}, !- Target Object + {00000000-0000-0000-0049-000000000117}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000060}, !- Handle - {00000000-0000-0000-0053-000000000261}, !- Source Object + {00000000-0000-0000-0049-000000000117}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 3; !- Inlet Port @@ -2257,12 +943,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000061}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000269}, !- Target Object + {00000000-0000-0000-0049-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000062}, !- Handle - {00000000-0000-0000-0053-000000000269}, !- Source Object + {00000000-0000-0000-0049-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000002}, !- Target Object 11; !- Inlet Port @@ -2271,12 +957,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000063}, !- Handle {00000000-0000-0000-0010-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0053-000000000270}, !- Target Object + {00000000-0000-0000-0049-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000064}, !- Handle - {00000000-0000-0000-0053-000000000270}, !- Source Object + {00000000-0000-0000-0049-000000000126}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 4; !- Inlet Port @@ -2285,26 +971,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000065}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0053-000000000245}, !- Target Object + {00000000-0000-0000-0049-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000066}, !- Handle - {00000000-0000-0000-0053-000000000245}, !- Source Object + {00000000-0000-0000-0049-000000000101}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000001}, !- Target Object + {00000000-0000-0000-0053-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000067}, !- Handle - {00000000-0000-0000-0057-000000000001}, !- Source Object + {00000000-0000-0000-0053-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000246}, !- Target Object + {00000000-0000-0000-0049-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000068}, !- Handle - {00000000-0000-0000-0053-000000000246}, !- Source Object + {00000000-0000-0000-0049-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 5; !- Inlet Port @@ -2313,33 +999,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000069}, !- Handle {00000000-0000-0000-0021-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000248}, !- Target Object + {00000000-0000-0000-0049-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000070}, !- Handle - {00000000-0000-0000-0053-000000000248}, !- Source Object + {00000000-0000-0000-0049-000000000104}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000003}, !- Target Object + {00000000-0000-0000-0053-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000071}, !- Handle - {00000000-0000-0000-0057-000000000003}, !- Source Object + {00000000-0000-0000-0053-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000215}, !- Target Object + {00000000-0000-0000-0049-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000072}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0053-000000000286}, !- Target Object + {00000000-0000-0000-0049-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000073}, !- Handle - {00000000-0000-0000-0053-000000000287}, !- Source Object + {00000000-0000-0000-0049-000000000140}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -2348,19 +1034,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000074}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000281}, !- Target Object + {00000000-0000-0000-0049-000000000134}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000075}, !- Handle - {00000000-0000-0000-0053-000000000282}, !- Source Object + {00000000-0000-0000-0049-000000000135}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000076}, !- Handle - {00000000-0000-0000-0053-000000000281}, !- Source Object + {00000000-0000-0000-0049-000000000134}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -2369,47 +1055,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000077}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000282}, !- Target Object + {00000000-0000-0000-0049-000000000135}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000078}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object + {00000000-0000-0000-0039-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0053-000000000287}, !- Target Object + {00000000-0000-0000-0049-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000079}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0053-000000000100}, !- Target Object + {00000000-0000-0000-0049-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000080}, !- Handle - {00000000-0000-0000-0053-000000000100}, !- Source Object + {00000000-0000-0000-0049-000000000037}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object + {00000000-0000-0000-0039-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000081}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0053-000000000191}, !- Target Object + {00000000-0000-0000-0049-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000082}, !- Handle - {00000000-0000-0000-0053-000000000191}, !- Source Object + {00000000-0000-0000-0049-000000000047}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000083}, !- Handle - {00000000-0000-0000-0053-000000000286}, !- Source Object + {00000000-0000-0000-0049-000000000139}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -2418,19 +1104,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000084}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0053-000000000283}, !- Target Object + {00000000-0000-0000-0049-000000000136}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000085}, !- Handle - {00000000-0000-0000-0053-000000000283}, !- Source Object + {00000000-0000-0000-0049-000000000136}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000086}, !- Handle - {00000000-0000-0000-0053-000000000151}, !- Source Object + {00000000-0000-0000-0049-000000000043}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 9; !- Inlet Port @@ -2439,33 +1125,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000087}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0053-000000000152}, !- Target Object + {00000000-0000-0000-0049-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000088}, !- Handle - {00000000-0000-0000-0053-000000000152}, !- Source Object + {00000000-0000-0000-0049-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000089}, !- Handle - {00000000-0000-0000-0053-000000000045}, !- Source Object + {00000000-0000-0000-0049-000000000027}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0059-000000000067}, !- Target Object + {00000000-0000-0000-0055-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000090}, !- Handle - {00000000-0000-0000-0059-000000000069}, !- Source Object + {00000000-0000-0000-0055-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000279}, !- Target Object + {00000000-0000-0000-0049-000000000132}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000091}, !- Handle - {00000000-0000-0000-0053-000000000279}, !- Source Object + {00000000-0000-0000-0049-000000000132}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -2474,12 +1160,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000092}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000044}, !- Target Object + {00000000-0000-0000-0049-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000093}, !- Handle - {00000000-0000-0000-0053-000000000044}, !- Source Object + {00000000-0000-0000-0049-000000000026}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -2488,40 +1174,40 @@ OS:Connection, {00000000-0000-0000-0020-000000000094}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000045}, !- Target Object + {00000000-0000-0000-0049-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000095}, !- Handle - {00000000-0000-0000-0058-000000000001}, !- Source Object + {00000000-0000-0000-0054-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0053-000000000086}, !- Target Object + {00000000-0000-0000-0049-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000096}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000264}, !- Target Object + {00000000-0000-0000-0049-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000097}, !- Handle - {00000000-0000-0000-0053-000000000087}, !- Source Object + {00000000-0000-0000-0049-000000000033}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000001}, !- Target Object + {00000000-0000-0000-0054-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000098}, !- Handle - {00000000-0000-0000-0058-000000000001}, !- Source Object + {00000000-0000-0000-0054-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000084}, !- Target Object + {00000000-0000-0000-0049-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000099}, !- Handle - {00000000-0000-0000-0053-000000000084}, !- Source Object + {00000000-0000-0000-0049-000000000030}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000004}, !- Target Object 2; !- Inlet Port @@ -2530,47 +1216,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000100}, !- Handle {00000000-0000-0000-0022-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000088}, !- Target Object + {00000000-0000-0000-0049-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000101}, !- Handle {00000000-0000-0000-0021-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000085}, !- Target Object + {00000000-0000-0000-0049-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000102}, !- Handle - {00000000-0000-0000-0053-000000000085}, !- Source Object + {00000000-0000-0000-0049-000000000031}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000001}, !- Target Object + {00000000-0000-0000-0054-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000103}, !- Handle - {00000000-0000-0000-0053-000000000086}, !- Source Object + {00000000-0000-0000-0049-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0061-000000000002}, !- Target Object + {00000000-0000-0000-0057-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000104}, !- Handle - {00000000-0000-0000-0061-000000000002}, !- Source Object + {00000000-0000-0000-0057-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000267}, !- Target Object + {00000000-0000-0000-0049-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000105}, !- Handle - {00000000-0000-0000-0053-000000000267}, !- Source Object + {00000000-0000-0000-0049-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000106}, !- Handle - {00000000-0000-0000-0053-000000000264}, !- Source Object + {00000000-0000-0000-0049-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 15; !- Inlet Port @@ -2579,12 +1265,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000107}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0053-000000000265}, !- Target Object + {00000000-0000-0000-0049-000000000121}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000108}, !- Handle - {00000000-0000-0000-0053-000000000265}, !- Source Object + {00000000-0000-0000-0049-000000000121}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 3; !- Inlet Port @@ -2593,12 +1279,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000109}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000273}, !- Target Object + {00000000-0000-0000-0049-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000110}, !- Handle - {00000000-0000-0000-0053-000000000273}, !- Source Object + {00000000-0000-0000-0049-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 15; !- Inlet Port @@ -2607,12 +1293,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000111}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0053-000000000274}, !- Target Object + {00000000-0000-0000-0049-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000112}, !- Handle - {00000000-0000-0000-0053-000000000274}, !- Source Object + {00000000-0000-0000-0049-000000000130}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 4; !- Inlet Port @@ -2621,26 +1307,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000113}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0053-000000000249}, !- Target Object + {00000000-0000-0000-0049-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000114}, !- Handle - {00000000-0000-0000-0053-000000000249}, !- Source Object + {00000000-0000-0000-0049-000000000105}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000004}, !- Target Object + {00000000-0000-0000-0053-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000115}, !- Handle - {00000000-0000-0000-0057-000000000004}, !- Source Object + {00000000-0000-0000-0053-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000250}, !- Target Object + {00000000-0000-0000-0049-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000116}, !- Handle - {00000000-0000-0000-0053-000000000250}, !- Source Object + {00000000-0000-0000-0049-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 5; !- Inlet Port @@ -2649,54 +1335,54 @@ OS:Connection, {00000000-0000-0000-0020-000000000117}, !- Handle {00000000-0000-0000-0021-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000251}, !- Target Object + {00000000-0000-0000-0049-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000118}, !- Handle - {00000000-0000-0000-0053-000000000251}, !- Source Object + {00000000-0000-0000-0049-000000000107}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000005}, !- Target Object + {00000000-0000-0000-0053-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000119}, !- Handle - {00000000-0000-0000-0057-000000000005}, !- Source Object + {00000000-0000-0000-0053-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000087}, !- Target Object + {00000000-0000-0000-0049-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000120}, !- Handle - {00000000-0000-0000-0058-000000000002}, !- Source Object + {00000000-0000-0000-0054-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0053-000000000194}, !- Target Object + {00000000-0000-0000-0049-000000000050}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000121}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000196}, !- Target Object + {00000000-0000-0000-0049-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000122}, !- Handle - {00000000-0000-0000-0053-000000000195}, !- Source Object + {00000000-0000-0000-0049-000000000051}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000002}, !- Target Object + {00000000-0000-0000-0054-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000123}, !- Handle - {00000000-0000-0000-0058-000000000002}, !- Source Object + {00000000-0000-0000-0054-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000192}, !- Target Object + {00000000-0000-0000-0049-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000124}, !- Handle - {00000000-0000-0000-0053-000000000192}, !- Source Object + {00000000-0000-0000-0049-000000000048}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000006}, !- Target Object 2; !- Inlet Port @@ -2705,47 +1391,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000125}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000262}, !- Target Object + {00000000-0000-0000-0049-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000126}, !- Handle {00000000-0000-0000-0021-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000193}, !- Target Object + {00000000-0000-0000-0049-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000127}, !- Handle - {00000000-0000-0000-0053-000000000193}, !- Source Object + {00000000-0000-0000-0049-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000002}, !- Target Object + {00000000-0000-0000-0054-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000128}, !- Handle - {00000000-0000-0000-0053-000000000194}, !- Source Object + {00000000-0000-0000-0049-000000000050}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0061-000000000003}, !- Target Object + {00000000-0000-0000-0057-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000129}, !- Handle - {00000000-0000-0000-0061-000000000003}, !- Source Object + {00000000-0000-0000-0057-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000268}, !- Target Object + {00000000-0000-0000-0049-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000130}, !- Handle - {00000000-0000-0000-0053-000000000268}, !- Source Object + {00000000-0000-0000-0049-000000000124}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000131}, !- Handle - {00000000-0000-0000-0053-000000000196}, !- Source Object + {00000000-0000-0000-0049-000000000052}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0027-000000000001}, !- Target Object 2; !- Inlet Port @@ -2754,12 +1440,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000132}, !- Handle {00000000-0000-0000-0027-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000197}, !- Target Object + {00000000-0000-0000-0049-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000133}, !- Handle - {00000000-0000-0000-0053-000000000197}, !- Source Object + {00000000-0000-0000-0049-000000000053}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 3; !- Inlet Port @@ -2768,26 +1454,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000134}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000252}, !- Target Object + {00000000-0000-0000-0049-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000135}, !- Handle - {00000000-0000-0000-0053-000000000252}, !- Source Object + {00000000-0000-0000-0049-000000000108}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000006}, !- Target Object + {00000000-0000-0000-0053-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000136}, !- Handle - {00000000-0000-0000-0057-000000000006}, !- Source Object + {00000000-0000-0000-0053-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000253}, !- Target Object + {00000000-0000-0000-0049-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000137}, !- Handle - {00000000-0000-0000-0053-000000000253}, !- Source Object + {00000000-0000-0000-0049-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 4; !- Inlet Port @@ -2796,26 +1482,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000138}, !- Handle {00000000-0000-0000-0021-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000254}, !- Target Object + {00000000-0000-0000-0049-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000139}, !- Handle - {00000000-0000-0000-0053-000000000254}, !- Source Object + {00000000-0000-0000-0049-000000000110}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000007}, !- Target Object + {00000000-0000-0000-0053-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000140}, !- Handle - {00000000-0000-0000-0057-000000000007}, !- Source Object + {00000000-0000-0000-0053-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000195}, !- Target Object + {00000000-0000-0000-0049-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000141}, !- Handle - {00000000-0000-0000-0053-000000000262}, !- Source Object + {00000000-0000-0000-0049-000000000118}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 17; !- Inlet Port @@ -2824,12 +1510,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000142}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0053-000000000263}, !- Target Object + {00000000-0000-0000-0049-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000143}, !- Handle - {00000000-0000-0000-0053-000000000263}, !- Source Object + {00000000-0000-0000-0049-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 3; !- Inlet Port @@ -2838,12 +1524,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000144}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000271}, !- Target Object + {00000000-0000-0000-0049-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000145}, !- Handle - {00000000-0000-0000-0053-000000000271}, !- Source Object + {00000000-0000-0000-0049-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 17; !- Inlet Port @@ -2852,47 +1538,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000146}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0053-000000000272}, !- Target Object + {00000000-0000-0000-0049-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000147}, !- Handle - {00000000-0000-0000-0053-000000000272}, !- Source Object + {00000000-0000-0000-0049-000000000128}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000148}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0053-000000000316}, !- Target Object + {00000000-0000-0000-0049-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000149}, !- Handle - {00000000-0000-0000-0053-000000000317}, !- Source Object + {00000000-0000-0000-0049-000000000149}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000150}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000311}, !- Target Object + {00000000-0000-0000-0049-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000151}, !- Handle - {00000000-0000-0000-0053-000000000312}, !- Source Object + {00000000-0000-0000-0049-000000000144}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000152}, !- Handle - {00000000-0000-0000-0053-000000000311}, !- Source Object + {00000000-0000-0000-0049-000000000143}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -2901,19 +1587,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000153}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000312}, !- Target Object + {00000000-0000-0000-0049-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000154}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000101}, !- Target Object + {00000000-0000-0000-0049-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000155}, !- Handle - {00000000-0000-0000-0053-000000000101}, !- Source Object + {00000000-0000-0000-0049-000000000038}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -2922,19 +1608,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000156}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0053-000000000103}, !- Target Object + {00000000-0000-0000-0049-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000157}, !- Handle - {00000000-0000-0000-0053-000000000103}, !- Source Object + {00000000-0000-0000-0049-000000000040}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000158}, !- Handle - {00000000-0000-0000-0053-000000000088}, !- Source Object + {00000000-0000-0000-0049-000000000034}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 10; !- Inlet Port @@ -2943,47 +1629,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000159}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000090}, !- Target Object + {00000000-0000-0000-0049-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000160}, !- Handle - {00000000-0000-0000-0053-000000000090}, !- Source Object + {00000000-0000-0000-0049-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000161}, !- Handle - {00000000-0000-0000-0044-000000000008}, !- Source Object + {00000000-0000-0000-0040-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000317}, !- Target Object + {00000000-0000-0000-0049-000000000149}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000162}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0053-000000000102}, !- Target Object + {00000000-0000-0000-0049-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000163}, !- Handle - {00000000-0000-0000-0053-000000000102}, !- Source Object + {00000000-0000-0000-0049-000000000039}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000008}, !- Target Object + {00000000-0000-0000-0040-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000164}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0053-000000000089}, !- Target Object + {00000000-0000-0000-0049-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000165}, !- Handle - {00000000-0000-0000-0053-000000000089}, !- Source Object + {00000000-0000-0000-0049-000000000035}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 7; !- Inlet Port @@ -2992,33 +1678,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000166}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0053-000000000313}, !- Target Object + {00000000-0000-0000-0049-000000000145}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000167}, !- Handle - {00000000-0000-0000-0053-000000000313}, !- Source Object + {00000000-0000-0000-0049-000000000145}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000168}, !- Handle - {00000000-0000-0000-0053-000000000316}, !- Source Object + {00000000-0000-0000-0049-000000000148}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000004}, !- Target Object + {00000000-0000-0000-0040-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000169}, !- Handle - {00000000-0000-0000-0044-000000000004}, !- Source Object + {00000000-0000-0000-0040-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000278}, !- Target Object + {00000000-0000-0000-0049-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000170}, !- Handle - {00000000-0000-0000-0053-000000000278}, !- Source Object + {00000000-0000-0000-0049-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port @@ -3027,26 +1713,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000171}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0053-000000000126}, !- Target Object + {00000000-0000-0000-0049-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000172}, !- Handle - {00000000-0000-0000-0053-000000000126}, !- Source Object + {00000000-0000-0000-0049-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000012}, !- Target Object + {00000000-0000-0000-0018-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000173}, !- Handle - {00000000-0000-0000-0018-000000000012}, !- Source Object + {00000000-0000-0000-0018-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0053-000000000127}, !- Target Object + {00000000-0000-0000-0049-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000174}, !- Handle - {00000000-0000-0000-0053-000000000127}, !- Source Object + {00000000-0000-0000-0049-000000000042}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 5; !- Inlet Port @@ -3055,47 +1741,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000175}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0053-000000000173}, !- Target Object + {00000000-0000-0000-0049-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000176}, !- Handle - {00000000-0000-0000-0053-000000000173}, !- Source Object + {00000000-0000-0000-0049-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000012}, !- Target Object + {00000000-0000-0000-0019-000000000002}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000177}, !- Handle - {00000000-0000-0000-0019-000000000012}, !- Source Object + {00000000-0000-0000-0019-000000000002}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0053-000000000174}, !- Target Object + {00000000-0000-0000-0049-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000178}, !- Handle - {00000000-0000-0000-0053-000000000174}, !- Source Object + {00000000-0000-0000-0049-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000179}, !- Handle - {00000000-0000-0000-0053-000000000047}, !- Source Object + {00000000-0000-0000-0049-000000000029}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0059-000000000037}, !- Target Object + {00000000-0000-0000-0055-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000180}, !- Handle - {00000000-0000-0000-0059-000000000039}, !- Source Object + {00000000-0000-0000-0055-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000006}, !- Target Object + {00000000-0000-0000-0049-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000181}, !- Handle - {00000000-0000-0000-0053-000000000006}, !- Source Object + {00000000-0000-0000-0049-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -3104,12 +1790,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000182}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000046}, !- Target Object + {00000000-0000-0000-0049-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000183}, !- Handle - {00000000-0000-0000-0053-000000000046}, !- Source Object + {00000000-0000-0000-0049-000000000028}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -3118,7773 +1804,3375 @@ OS:Connection, {00000000-0000-0000-0020-000000000184}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0053-000000000047}, !- Target Object + {00000000-0000-0000-0049-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000185}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0053-000000000295}, !- Target Object + {00000000-0000-0000-0054-000000000004}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0049-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000186}, !- Handle - {00000000-0000-0000-0053-000000000296}, !- Source Object + {00000000-0000-0000-0022-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0049-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000187}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000290}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000076}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000004}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000188}, !- Handle - {00000000-0000-0000-0053-000000000291}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0054-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000073}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000189}, !- Handle - {00000000-0000-0000-0053-000000000290}, !- Source Object + {00000000-0000-0000-0049-000000000073}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000190}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000291}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000191}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000136}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000004}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000192}, !- Handle - {00000000-0000-0000-0053-000000000136}, !- Source Object + {00000000-0000-0000-0049-000000000075}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000017}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0056-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000193}, !- Handle - {00000000-0000-0000-0018-000000000017}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000138}, !- Target Object + {00000000-0000-0000-0056-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000194}, !- Handle - {00000000-0000-0000-0053-000000000138}, !- Source Object + {00000000-0000-0000-0049-000000000072}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0022-000000000007}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000195}, !- Handle - {00000000-0000-0000-0022-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000091}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000001}, !- Target Object + 31; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000196}, !- Handle - {00000000-0000-0000-0053-000000000091}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0094-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0049-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000197}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000093}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000198}, !- Handle - {00000000-0000-0000-0053-000000000093}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000004}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0022-000000000007}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000111}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000199}, !- Handle - {00000000-0000-0000-0044-000000000005}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000296}, !- Target Object + {00000000-0000-0000-0049-000000000111}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000200}, !- Handle - {00000000-0000-0000-0018-000000000017}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000137}, !- Target Object + {00000000-0000-0000-0053-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000201}, !- Handle - {00000000-0000-0000-0053-000000000137}, !- Source Object + {00000000-0000-0000-0049-000000000112}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000005}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000202}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000092}, !- Target Object + {00000000-0000-0000-0049-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000203}, !- Handle - {00000000-0000-0000-0053-000000000092}, !- Source Object + {00000000-0000-0000-0053-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000017}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0049-000000000114}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000204}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000292}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000205}, !- Handle - {00000000-0000-0000-0053-000000000292}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0021-000000000007}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000115}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000206}, !- Handle - {00000000-0000-0000-0053-000000000295}, !- Source Object + {00000000-0000-0000-0049-000000000115}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000001}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0053-000000000010}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000207}, !- Handle - {00000000-0000-0000-0044-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000275}, !- Target Object + {00000000-0000-0000-0053-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000208}, !- Handle - {00000000-0000-0000-0053-000000000275}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000103}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000209}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000139}, !- Target Object + {00000000-0000-0000-0049-000000000103}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000210}, !- Handle - {00000000-0000-0000-0053-000000000139}, !- Source Object + {00000000-0000-0000-0053-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000018}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0049-000000000074}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000211}, !- Handle - {00000000-0000-0000-0018-000000000018}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000140}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000212}, !- Handle - {00000000-0000-0000-0053-000000000140}, !- Source Object + {00000000-0000-0000-0049-000000000054}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0096-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000213}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0053-000000000177}, !- Target Object + {00000000-0000-0000-0096-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000214}, !- Handle - {00000000-0000-0000-0053-000000000177}, !- Source Object + {00000000-0000-0000-0049-000000000055}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000014}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000215}, !- Handle - {00000000-0000-0000-0019-000000000014}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000178}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000056}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000216}, !- Handle - {00000000-0000-0000-0053-000000000178}, !- Source Object + {00000000-0000-0000-0049-000000000056}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0096-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000217}, !- Handle - {00000000-0000-0000-0053-000000000069}, !- Source Object + {00000000-0000-0000-0096-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0059-000000000043}, !- Target Object + {00000000-0000-0000-0049-000000000057}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000218}, !- Handle - {00000000-0000-0000-0059-000000000045}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000012}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000219}, !- Handle - {00000000-0000-0000-0053-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000058}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000220}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0049-000000000058}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000068}, !- Target Object + {00000000-0000-0000-0096-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000221}, !- Handle - {00000000-0000-0000-0053-000000000068}, !- Source Object + {00000000-0000-0000-0096-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000012}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0049-000000000059}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000222}, !- Handle - {00000000-0000-0000-0007-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000069}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000223}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000141}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000224}, !- Handle - {00000000-0000-0000-0053-000000000141}, !- Source Object + {00000000-0000-0000-0049-000000000060}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000019}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0096-000000000004}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000225}, !- Handle - {00000000-0000-0000-0018-000000000019}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000142}, !- Target Object + {00000000-0000-0000-0096-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000226}, !- Handle - {00000000-0000-0000-0053-000000000142}, !- Source Object + {00000000-0000-0000-0049-000000000061}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000227}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000179}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0049-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000228}, !- Handle - {00000000-0000-0000-0053-000000000179}, !- Source Object + {00000000-0000-0000-0049-000000000062}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000015}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0096-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000229}, !- Handle - {00000000-0000-0000-0019-000000000015}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000180}, !- Target Object + {00000000-0000-0000-0096-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000230}, !- Handle - {00000000-0000-0000-0053-000000000180}, !- Source Object + {00000000-0000-0000-0049-000000000063}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 11; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000231}, !- Handle - {00000000-0000-0000-0053-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000019}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0049-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000232}, !- Handle - {00000000-0000-0000-0059-000000000021}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000008}, !- Target Object + {00000000-0000-0000-0049-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000233}, !- Handle - {00000000-0000-0000-0053-000000000008}, !- Source Object + {00000000-0000-0000-0096-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0049-000000000065}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000234}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000070}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000235}, !- Handle - {00000000-0000-0000-0053-000000000070}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000013}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0049-000000000066}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000236}, !- Handle - {00000000-0000-0000-0007-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000071}, !- Target Object + {00000000-0000-0000-0049-000000000066}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000237}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000143}, !- Target Object + {00000000-0000-0000-0096-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000238}, !- Handle - {00000000-0000-0000-0053-000000000143}, !- Source Object + {00000000-0000-0000-0049-000000000067}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000020}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000239}, !- Handle - {00000000-0000-0000-0018-000000000020}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000144}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000240}, !- Handle - {00000000-0000-0000-0053-000000000144}, !- Source Object + {00000000-0000-0000-0049-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0096-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000241}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000181}, !- Target Object + {00000000-0000-0000-0096-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000242}, !- Handle - {00000000-0000-0000-0053-000000000181}, !- Source Object + {00000000-0000-0000-0049-000000000078}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000016}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000243}, !- Handle - {00000000-0000-0000-0019-000000000016}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000182}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000244}, !- Handle - {00000000-0000-0000-0053-000000000182}, !- Source Object + {00000000-0000-0000-0049-000000000079}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 13; !- Inlet Port + {00000000-0000-0000-0096-000000000009}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000245}, !- Handle - {00000000-0000-0000-0053-000000000073}, !- Source Object + {00000000-0000-0000-0096-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0059-000000000064}, !- Target Object + {00000000-0000-0000-0049-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000246}, !- Handle - {00000000-0000-0000-0059-000000000066}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000016}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000247}, !- Handle - {00000000-0000-0000-0053-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000081}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000248}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000072}, !- Target Object + {00000000-0000-0000-0049-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000249}, !- Handle - {00000000-0000-0000-0053-000000000072}, !- Source Object + {00000000-0000-0000-0096-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000014}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0049-000000000082}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000250}, !- Handle - {00000000-0000-0000-0007-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000251}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object + {00000000-0000-0000-0022-000000000008}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0053-000000000145}, !- Target Object + {00000000-0000-0000-0049-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000252}, !- Handle - {00000000-0000-0000-0053-000000000145}, !- Source Object + {00000000-0000-0000-0049-000000000083}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000021}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0096-000000000011}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000253}, !- Handle - {00000000-0000-0000-0018-000000000021}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000146}, !- Target Object + {00000000-0000-0000-0096-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000254}, !- Handle - {00000000-0000-0000-0053-000000000146}, !- Source Object + {00000000-0000-0000-0049-000000000084}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object + {00000000-0000-0000-0021-000000000008}, !- Target Object 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000255}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object + {00000000-0000-0000-0022-000000000008}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0053-000000000183}, !- Target Object + {00000000-0000-0000-0049-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000256}, !- Handle - {00000000-0000-0000-0053-000000000183}, !- Source Object + {00000000-0000-0000-0049-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000017}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0096-000000000012}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000257}, !- Handle - {00000000-0000-0000-0019-000000000017}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000184}, !- Target Object + {00000000-0000-0000-0096-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000258}, !- Handle - {00000000-0000-0000-0053-000000000184}, !- Source Object + {00000000-0000-0000-0049-000000000086}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object + {00000000-0000-0000-0021-000000000008}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000259}, !- Handle - {00000000-0000-0000-0053-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000022}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0049-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000260}, !- Handle - {00000000-0000-0000-0059-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000261}, !- Handle - {00000000-0000-0000-0053-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000262}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000074}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000263}, !- Handle - {00000000-0000-0000-0053-000000000074}, !- Source Object + {00000000-0000-0000-0049-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000015}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000264}, !- Handle - {00000000-0000-0000-0007-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000075}, !- Target Object + {00000000-0000-0000-0096-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000265}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0053-000000000147}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000266}, !- Handle - {00000000-0000-0000-0053-000000000147}, !- Source Object + {00000000-0000-0000-0020-000000000261}, !- Handle + {00000000-0000-0000-0096-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000022}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000267}, !- Handle - {00000000-0000-0000-0018-000000000022}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000148}, !- Target Object + {00000000-0000-0000-0049-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000268}, !- Handle - {00000000-0000-0000-0053-000000000148}, !- Source Object + {00000000-0000-0000-0020-000000000262}, !- Handle + {00000000-0000-0000-0049-000000000088}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object + {00000000-0000-0000-0021-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000269}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object + {00000000-0000-0000-0020-000000000263}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000185}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000270}, !- Handle - {00000000-0000-0000-0053-000000000185}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000018}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000271}, !- Handle - {00000000-0000-0000-0019-000000000018}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000186}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000272}, !- Handle - {00000000-0000-0000-0053-000000000186}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000273}, !- Handle - {00000000-0000-0000-0053-000000000077}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000274}, !- Handle - {00000000-0000-0000-0059-000000000060}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000275}, !- Handle - {00000000-0000-0000-0053-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000276}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000076}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000277}, !- Handle - {00000000-0000-0000-0053-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000016}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000278}, !- Handle - {00000000-0000-0000-0007-000000000016}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000077}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000279}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0053-000000000149}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000280}, !- Handle - {00000000-0000-0000-0053-000000000149}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000023}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000281}, !- Handle - {00000000-0000-0000-0018-000000000023}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000150}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000282}, !- Handle - {00000000-0000-0000-0053-000000000150}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000283}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0053-000000000187}, !- Target Object + {00000000-0000-0000-0049-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000284}, !- Handle - {00000000-0000-0000-0053-000000000187}, !- Source Object + {00000000-0000-0000-0020-000000000264}, !- Handle + {00000000-0000-0000-0049-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000019}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000285}, !- Handle - {00000000-0000-0000-0019-000000000019}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000188}, !- Target Object + {00000000-0000-0000-0096-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000286}, !- Handle - {00000000-0000-0000-0053-000000000188}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 19; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000287}, !- Handle - {00000000-0000-0000-0053-000000000079}, !- Source Object + {00000000-0000-0000-0020-000000000265}, !- Handle + {00000000-0000-0000-0096-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0059-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000288}, !- Handle - {00000000-0000-0000-0059-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000018}, !- Target Object + {00000000-0000-0000-0049-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000289}, !- Handle - {00000000-0000-0000-0053-000000000018}, !- Source Object + {00000000-0000-0000-0020-000000000266}, !- Handle + {00000000-0000-0000-0049-000000000090}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000290}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000078}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000291}, !- Handle - {00000000-0000-0000-0053-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000017}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000292}, !- Handle - {00000000-0000-0000-0007-000000000017}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000079}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000293}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0053-000000000302}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000294}, !- Handle - {00000000-0000-0000-0053-000000000303}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000295}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000297}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000296}, !- Handle - {00000000-0000-0000-0053-000000000298}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000297}, !- Handle - {00000000-0000-0000-0053-000000000297}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000298}, !- Handle - {00000000-0000-0000-0004-000000000004}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000298}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000299}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0053-000000000104}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000300}, !- Handle - {00000000-0000-0000-0053-000000000104}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000301}, !- Handle - {00000000-0000-0000-0018-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000106}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000302}, !- Handle - {00000000-0000-0000-0053-000000000106}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 20; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000303}, !- Handle - {00000000-0000-0000-0022-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000094}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000304}, !- Handle - {00000000-0000-0000-0053-000000000094}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000305}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000096}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000306}, !- Handle - {00000000-0000-0000-0053-000000000096}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000307}, !- Handle - {00000000-0000-0000-0044-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000303}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000308}, !- Handle - {00000000-0000-0000-0018-000000000002}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000105}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000309}, !- Handle - {00000000-0000-0000-0053-000000000105}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000006}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000310}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000095}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000311}, !- Handle - {00000000-0000-0000-0053-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000312}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000299}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000313}, !- Handle - {00000000-0000-0000-0053-000000000299}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000314}, !- Handle - {00000000-0000-0000-0053-000000000302}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000002}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000315}, !- Handle - {00000000-0000-0000-0044-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000276}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000316}, !- Handle - {00000000-0000-0000-0053-000000000276}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000317}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0053-000000000107}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000318}, !- Handle - {00000000-0000-0000-0053-000000000107}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000003}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000319}, !- Handle - {00000000-0000-0000-0018-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000108}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000320}, !- Handle - {00000000-0000-0000-0053-000000000108}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000321}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0053-000000000189}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000322}, !- Handle - {00000000-0000-0000-0053-000000000189}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000020}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000323}, !- Handle - {00000000-0000-0000-0019-000000000020}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000190}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000324}, !- Handle - {00000000-0000-0000-0053-000000000190}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 22; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000325}, !- Handle - {00000000-0000-0000-0053-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000055}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000326}, !- Handle - {00000000-0000-0000-0059-000000000057}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000026}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000327}, !- Handle - {00000000-0000-0000-0053-000000000026}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000328}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000080}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000329}, !- Handle - {00000000-0000-0000-0053-000000000080}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000018}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000330}, !- Handle - {00000000-0000-0000-0007-000000000018}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000081}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000331}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 23, !- Outlet Port - {00000000-0000-0000-0053-000000000109}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000332}, !- Handle - {00000000-0000-0000-0053-000000000109}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000333}, !- Handle - {00000000-0000-0000-0018-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000110}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000334}, !- Handle - {00000000-0000-0000-0053-000000000110}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 23; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000335}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 24, !- Outlet Port - {00000000-0000-0000-0053-000000000153}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000336}, !- Handle - {00000000-0000-0000-0053-000000000153}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000002}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000337}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000338}, !- Handle - {00000000-0000-0000-0053-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 24; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000339}, !- Handle - {00000000-0000-0000-0053-000000000083}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000340}, !- Handle - {00000000-0000-0000-0059-000000000051}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000024}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000341}, !- Handle - {00000000-0000-0000-0053-000000000024}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000342}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000082}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000343}, !- Handle - {00000000-0000-0000-0053-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000019}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000344}, !- Handle - {00000000-0000-0000-0007-000000000019}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000083}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000345}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 25, !- Outlet Port - {00000000-0000-0000-0053-000000000111}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000346}, !- Handle - {00000000-0000-0000-0053-000000000111}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000347}, !- Handle - {00000000-0000-0000-0018-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000112}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000348}, !- Handle - {00000000-0000-0000-0053-000000000112}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 25; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000349}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 26, !- Outlet Port - {00000000-0000-0000-0053-000000000155}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000350}, !- Handle - {00000000-0000-0000-0053-000000000155}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000003}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000351}, !- Handle - {00000000-0000-0000-0019-000000000003}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000156}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000352}, !- Handle - {00000000-0000-0000-0053-000000000156}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 26; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000353}, !- Handle - {00000000-0000-0000-0053-000000000049}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000354}, !- Handle - {00000000-0000-0000-0059-000000000036}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000355}, !- Handle - {00000000-0000-0000-0053-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000356}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000048}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000357}, !- Handle - {00000000-0000-0000-0053-000000000048}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000358}, !- Handle - {00000000-0000-0000-0007-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000359}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 27, !- Outlet Port - {00000000-0000-0000-0053-000000000113}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000360}, !- Handle - {00000000-0000-0000-0053-000000000113}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000361}, !- Handle - {00000000-0000-0000-0018-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000114}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000362}, !- Handle - {00000000-0000-0000-0053-000000000114}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 27; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000363}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 28, !- Outlet Port - {00000000-0000-0000-0053-000000000157}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000364}, !- Handle - {00000000-0000-0000-0053-000000000157}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000004}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000365}, !- Handle - {00000000-0000-0000-0019-000000000004}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000158}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000366}, !- Handle - {00000000-0000-0000-0053-000000000158}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 28; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000367}, !- Handle - {00000000-0000-0000-0053-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000368}, !- Handle - {00000000-0000-0000-0059-000000000030}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000020}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000369}, !- Handle - {00000000-0000-0000-0053-000000000020}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000370}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000050}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000371}, !- Handle - {00000000-0000-0000-0053-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000003}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000372}, !- Handle - {00000000-0000-0000-0007-000000000003}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000051}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000373}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 29, !- Outlet Port - {00000000-0000-0000-0053-000000000115}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000374}, !- Handle - {00000000-0000-0000-0053-000000000115}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000007}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000375}, !- Handle - {00000000-0000-0000-0018-000000000007}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000116}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000376}, !- Handle - {00000000-0000-0000-0053-000000000116}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 29; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000377}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 30, !- Outlet Port - {00000000-0000-0000-0053-000000000159}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000378}, !- Handle - {00000000-0000-0000-0053-000000000159}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000005}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000379}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000160}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000380}, !- Handle - {00000000-0000-0000-0053-000000000160}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 30; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000381}, !- Handle - {00000000-0000-0000-0053-000000000053}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000382}, !- Handle - {00000000-0000-0000-0059-000000000063}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000383}, !- Handle - {00000000-0000-0000-0053-000000000028}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000384}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000385}, !- Handle - {00000000-0000-0000-0053-000000000052}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000004}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000386}, !- Handle - {00000000-0000-0000-0007-000000000004}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000053}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000387}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 31, !- Outlet Port - {00000000-0000-0000-0053-000000000117}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000388}, !- Handle - {00000000-0000-0000-0053-000000000117}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000389}, !- Handle - {00000000-0000-0000-0018-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000118}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000390}, !- Handle - {00000000-0000-0000-0053-000000000118}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000391}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0053-000000000161}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000392}, !- Handle - {00000000-0000-0000-0053-000000000161}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000006}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000393}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000162}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000394}, !- Handle - {00000000-0000-0000-0053-000000000162}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 32; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000395}, !- Handle - {00000000-0000-0000-0053-000000000055}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000396}, !- Handle - {00000000-0000-0000-0059-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000030}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000397}, !- Handle - {00000000-0000-0000-0053-000000000030}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000398}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000054}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000399}, !- Handle - {00000000-0000-0000-0053-000000000054}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000400}, !- Handle - {00000000-0000-0000-0007-000000000005}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000055}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000401}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0053-000000000309}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000402}, !- Handle - {00000000-0000-0000-0053-000000000310}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000403}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000304}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000404}, !- Handle - {00000000-0000-0000-0053-000000000305}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000405}, !- Handle - {00000000-0000-0000-0053-000000000304}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000406}, !- Handle - {00000000-0000-0000-0004-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000305}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000407}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 33, !- Outlet Port - {00000000-0000-0000-0053-000000000119}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000408}, !- Handle - {00000000-0000-0000-0053-000000000119}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000009}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000409}, !- Handle - {00000000-0000-0000-0018-000000000009}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000121}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000410}, !- Handle - {00000000-0000-0000-0053-000000000121}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 33; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000411}, !- Handle - {00000000-0000-0000-0022-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000097}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000412}, !- Handle - {00000000-0000-0000-0053-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000413}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000099}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000414}, !- Handle - {00000000-0000-0000-0053-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000415}, !- Handle - {00000000-0000-0000-0044-000000000007}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000310}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000416}, !- Handle - {00000000-0000-0000-0018-000000000009}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000120}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000417}, !- Handle - {00000000-0000-0000-0053-000000000120}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000007}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000418}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000098}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000419}, !- Handle - {00000000-0000-0000-0053-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000009}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000420}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000306}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000421}, !- Handle - {00000000-0000-0000-0053-000000000306}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000422}, !- Handle - {00000000-0000-0000-0053-000000000309}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000003}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000423}, !- Handle - {00000000-0000-0000-0044-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000277}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000424}, !- Handle - {00000000-0000-0000-0053-000000000277}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000425}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 34, !- Outlet Port - {00000000-0000-0000-0053-000000000122}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000426}, !- Handle - {00000000-0000-0000-0053-000000000122}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000010}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000427}, !- Handle - {00000000-0000-0000-0018-000000000010}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000123}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000428}, !- Handle - {00000000-0000-0000-0053-000000000123}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 34; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000429}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 35, !- Outlet Port - {00000000-0000-0000-0053-000000000163}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000430}, !- Handle - {00000000-0000-0000-0053-000000000163}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000007}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000431}, !- Handle - {00000000-0000-0000-0019-000000000007}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000432}, !- Handle - {00000000-0000-0000-0053-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 35; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000433}, !- Handle - {00000000-0000-0000-0053-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000434}, !- Handle - {00000000-0000-0000-0059-000000000054}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000435}, !- Handle - {00000000-0000-0000-0053-000000000040}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000436}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000056}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000437}, !- Handle - {00000000-0000-0000-0053-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000438}, !- Handle - {00000000-0000-0000-0007-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000057}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000439}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 36, !- Outlet Port - {00000000-0000-0000-0053-000000000124}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000440}, !- Handle - {00000000-0000-0000-0053-000000000124}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000011}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000441}, !- Handle - {00000000-0000-0000-0018-000000000011}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000125}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000442}, !- Handle - {00000000-0000-0000-0053-000000000125}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 36; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000443}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 37, !- Outlet Port - {00000000-0000-0000-0053-000000000165}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000444}, !- Handle - {00000000-0000-0000-0053-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000008}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000445}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000446}, !- Handle - {00000000-0000-0000-0053-000000000166}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 37; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000447}, !- Handle - {00000000-0000-0000-0053-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000031}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000448}, !- Handle - {00000000-0000-0000-0059-000000000033}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000036}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000449}, !- Handle - {00000000-0000-0000-0053-000000000036}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000450}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000451}, !- Handle - {00000000-0000-0000-0053-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000452}, !- Handle - {00000000-0000-0000-0007-000000000007}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000059}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000453}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 38, !- Outlet Port - {00000000-0000-0000-0053-000000000128}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000454}, !- Handle - {00000000-0000-0000-0053-000000000128}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000013}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000455}, !- Handle - {00000000-0000-0000-0018-000000000013}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000129}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000456}, !- Handle - {00000000-0000-0000-0053-000000000129}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 38; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000457}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 39, !- Outlet Port - {00000000-0000-0000-0053-000000000167}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000458}, !- Handle - {00000000-0000-0000-0053-000000000167}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000009}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000459}, !- Handle - {00000000-0000-0000-0019-000000000009}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000168}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000460}, !- Handle - {00000000-0000-0000-0053-000000000168}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 39; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000461}, !- Handle - {00000000-0000-0000-0053-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000462}, !- Handle - {00000000-0000-0000-0059-000000000018}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000032}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000463}, !- Handle - {00000000-0000-0000-0053-000000000032}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000464}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000060}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000465}, !- Handle - {00000000-0000-0000-0053-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000466}, !- Handle - {00000000-0000-0000-0007-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000467}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 40, !- Outlet Port - {00000000-0000-0000-0053-000000000130}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000468}, !- Handle - {00000000-0000-0000-0053-000000000130}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000014}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000469}, !- Handle - {00000000-0000-0000-0018-000000000014}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000131}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000470}, !- Handle - {00000000-0000-0000-0053-000000000131}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 40; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000471}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 41, !- Outlet Port - {00000000-0000-0000-0053-000000000169}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000472}, !- Handle - {00000000-0000-0000-0053-000000000169}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000010}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000473}, !- Handle - {00000000-0000-0000-0019-000000000010}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000170}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000474}, !- Handle - {00000000-0000-0000-0053-000000000170}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 41; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000475}, !- Handle - {00000000-0000-0000-0053-000000000063}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000025}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000476}, !- Handle - {00000000-0000-0000-0059-000000000027}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000477}, !- Handle - {00000000-0000-0000-0053-000000000034}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000478}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000062}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000479}, !- Handle - {00000000-0000-0000-0053-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000009}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000480}, !- Handle - {00000000-0000-0000-0007-000000000009}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000063}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000481}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 42, !- Outlet Port - {00000000-0000-0000-0053-000000000132}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000482}, !- Handle - {00000000-0000-0000-0053-000000000132}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000015}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000483}, !- Handle - {00000000-0000-0000-0018-000000000015}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000133}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000484}, !- Handle - {00000000-0000-0000-0053-000000000133}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 42; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000485}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 43, !- Outlet Port - {00000000-0000-0000-0053-000000000171}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000486}, !- Handle - {00000000-0000-0000-0053-000000000171}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000011}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000487}, !- Handle - {00000000-0000-0000-0019-000000000011}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000172}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000488}, !- Handle - {00000000-0000-0000-0053-000000000172}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 43; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000489}, !- Handle - {00000000-0000-0000-0053-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000490}, !- Handle - {00000000-0000-0000-0059-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000491}, !- Handle - {00000000-0000-0000-0053-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000492}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000493}, !- Handle - {00000000-0000-0000-0053-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000010}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000494}, !- Handle - {00000000-0000-0000-0007-000000000010}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000495}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 44, !- Outlet Port - {00000000-0000-0000-0053-000000000134}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000496}, !- Handle - {00000000-0000-0000-0053-000000000134}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000016}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000497}, !- Handle - {00000000-0000-0000-0018-000000000016}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000135}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000498}, !- Handle - {00000000-0000-0000-0053-000000000135}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 44; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000499}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 45, !- Outlet Port - {00000000-0000-0000-0053-000000000175}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000500}, !- Handle - {00000000-0000-0000-0053-000000000175}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000013}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000501}, !- Handle - {00000000-0000-0000-0019-000000000013}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000176}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000502}, !- Handle - {00000000-0000-0000-0053-000000000176}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 45; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000503}, !- Handle - {00000000-0000-0000-0053-000000000067}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000504}, !- Handle - {00000000-0000-0000-0059-000000000009}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000042}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000505}, !- Handle - {00000000-0000-0000-0053-000000000042}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000506}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000066}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000507}, !- Handle - {00000000-0000-0000-0053-000000000066}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000011}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000508}, !- Handle - {00000000-0000-0000-0007-000000000011}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000067}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000509}, !- Handle - {00000000-0000-0000-0058-000000000004}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0053-000000000219}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000510}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000511}, !- Handle - {00000000-0000-0000-0053-000000000220}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000004}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000512}, !- Handle - {00000000-0000-0000-0058-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000217}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000513}, !- Handle - {00000000-0000-0000-0053-000000000217}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0022-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000514}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000257}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000515}, !- Handle - {00000000-0000-0000-0053-000000000218}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000004}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000516}, !- Handle - {00000000-0000-0000-0053-000000000219}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0060-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000517}, !- Handle - {00000000-0000-0000-0060-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000216}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000518}, !- Handle - {00000000-0000-0000-0053-000000000216}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0022-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000519}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000001}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000520}, !- Handle - {00000000-0000-0000-0098-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0053-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000521}, !- Handle - {00000000-0000-0000-0053-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000522}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000255}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000523}, !- Handle - {00000000-0000-0000-0053-000000000255}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000524}, !- Handle - {00000000-0000-0000-0057-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000256}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000525}, !- Handle - {00000000-0000-0000-0053-000000000256}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000526}, !- Handle - {00000000-0000-0000-0053-000000000257}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000527}, !- Handle - {00000000-0000-0000-0057-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000258}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000528}, !- Handle - {00000000-0000-0000-0053-000000000258}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000529}, !- Handle - {00000000-0000-0000-0021-000000000007}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000259}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000530}, !- Handle - {00000000-0000-0000-0053-000000000259}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000531}, !- Handle - {00000000-0000-0000-0057-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000220}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000532}, !- Handle - {00000000-0000-0000-0021-000000000008}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000247}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000533}, !- Handle - {00000000-0000-0000-0053-000000000247}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000534}, !- Handle - {00000000-0000-0000-0057-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000218}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000535}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000198}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000536}, !- Handle - {00000000-0000-0000-0053-000000000198}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000537}, !- Handle - {00000000-0000-0000-0100-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000199}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000538}, !- Handle - {00000000-0000-0000-0053-000000000199}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000539}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000200}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000540}, !- Handle - {00000000-0000-0000-0053-000000000200}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000541}, !- Handle - {00000000-0000-0000-0100-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000201}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000542}, !- Handle - {00000000-0000-0000-0053-000000000201}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000543}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000202}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000544}, !- Handle - {00000000-0000-0000-0053-000000000202}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000545}, !- Handle - {00000000-0000-0000-0100-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000203}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000546}, !- Handle - {00000000-0000-0000-0053-000000000203}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000547}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000204}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000548}, !- Handle - {00000000-0000-0000-0053-000000000204}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000549}, !- Handle - {00000000-0000-0000-0100-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000205}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000550}, !- Handle - {00000000-0000-0000-0053-000000000205}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000551}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000206}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000552}, !- Handle - {00000000-0000-0000-0053-000000000206}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000553}, !- Handle - {00000000-0000-0000-0100-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000207}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000554}, !- Handle - {00000000-0000-0000-0053-000000000207}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000555}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0053-000000000208}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000556}, !- Handle - {00000000-0000-0000-0053-000000000208}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000557}, !- Handle - {00000000-0000-0000-0100-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000209}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000558}, !- Handle - {00000000-0000-0000-0053-000000000209}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000559}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000210}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000560}, !- Handle - {00000000-0000-0000-0053-000000000210}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000561}, !- Handle - {00000000-0000-0000-0100-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000211}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000562}, !- Handle - {00000000-0000-0000-0053-000000000211}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000563}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000221}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000564}, !- Handle - {00000000-0000-0000-0053-000000000221}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000565}, !- Handle - {00000000-0000-0000-0100-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000222}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000566}, !- Handle - {00000000-0000-0000-0053-000000000222}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 11; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000567}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000223}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000568}, !- Handle - {00000000-0000-0000-0053-000000000223}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000569}, !- Handle - {00000000-0000-0000-0100-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000224}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000570}, !- Handle - {00000000-0000-0000-0053-000000000224}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000571}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000225}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000572}, !- Handle - {00000000-0000-0000-0053-000000000225}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000573}, !- Handle - {00000000-0000-0000-0100-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000226}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000574}, !- Handle - {00000000-0000-0000-0053-000000000226}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 13; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000575}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0053-000000000227}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000576}, !- Handle - {00000000-0000-0000-0053-000000000227}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000011}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000577}, !- Handle - {00000000-0000-0000-0100-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000228}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000578}, !- Handle - {00000000-0000-0000-0053-000000000228}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000579}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000229}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000580}, !- Handle - {00000000-0000-0000-0053-000000000229}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000012}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000581}, !- Handle - {00000000-0000-0000-0100-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000230}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000582}, !- Handle - {00000000-0000-0000-0053-000000000230}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000583}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0053-000000000231}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000584}, !- Handle - {00000000-0000-0000-0053-000000000231}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000585}, !- Handle - {00000000-0000-0000-0100-000000000013}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000232}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000586}, !- Handle - {00000000-0000-0000-0053-000000000232}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000587}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000233}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000588}, !- Handle - {00000000-0000-0000-0053-000000000233}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000589}, !- Handle - {00000000-0000-0000-0100-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000234}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000590}, !- Handle - {00000000-0000-0000-0053-000000000234}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000591}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0053-000000000235}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000592}, !- Handle - {00000000-0000-0000-0053-000000000235}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000015}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000593}, !- Handle - {00000000-0000-0000-0100-000000000015}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000236}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000594}, !- Handle - {00000000-0000-0000-0053-000000000236}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000595}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0053-000000000237}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000596}, !- Handle - {00000000-0000-0000-0053-000000000237}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000597}, !- Handle - {00000000-0000-0000-0100-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000238}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000598}, !- Handle - {00000000-0000-0000-0053-000000000238}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 19; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000599}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0053-000000000239}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000600}, !- Handle - {00000000-0000-0000-0053-000000000239}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000017}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000601}, !- Handle - {00000000-0000-0000-0100-000000000017}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000240}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000602}, !- Handle - {00000000-0000-0000-0053-000000000240}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 20; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000603}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0053-000000000241}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000604}, !- Handle - {00000000-0000-0000-0053-000000000241}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000605}, !- Handle - {00000000-0000-0000-0100-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000242}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000606}, !- Handle - {00000000-0000-0000-0053-000000000242}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000607}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0053-000000000243}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000608}, !- Handle - {00000000-0000-0000-0053-000000000243}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000019}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000609}, !- Handle - {00000000-0000-0000-0100-000000000019}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000244}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000610}, !- Handle - {00000000-0000-0000-0053-000000000244}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 22; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000611}, !- Handle - {00000000-0000-0000-0053-000000000284}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000612}, !- Handle - {00000000-0000-0000-0047-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000288}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000613}, !- Handle - {00000000-0000-0000-0053-000000000288}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000614}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000289}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000615}, !- Handle - {00000000-0000-0000-0053-000000000289}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000001}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000616}, !- Handle - {00000000-0000-0000-0047-000000000001}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000285}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000617}, !- Handle - {00000000-0000-0000-0053-000000000314}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000005}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000618}, !- Handle - {00000000-0000-0000-0047-000000000005}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000324}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000619}, !- Handle - {00000000-0000-0000-0053-000000000324}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000620}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000325}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000621}, !- Handle - {00000000-0000-0000-0053-000000000325}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000005}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000622}, !- Handle - {00000000-0000-0000-0047-000000000005}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000315}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000623}, !- Handle - {00000000-0000-0000-0053-000000000293}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000624}, !- Handle - {00000000-0000-0000-0047-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000318}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000625}, !- Handle - {00000000-0000-0000-0053-000000000318}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000626}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000319}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000627}, !- Handle - {00000000-0000-0000-0053-000000000319}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000002}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000628}, !- Handle - {00000000-0000-0000-0047-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000294}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000629}, !- Handle - {00000000-0000-0000-0053-000000000300}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000630}, !- Handle - {00000000-0000-0000-0047-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000320}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000631}, !- Handle - {00000000-0000-0000-0053-000000000320}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000632}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000321}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000633}, !- Handle - {00000000-0000-0000-0053-000000000321}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000003}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000634}, !- Handle - {00000000-0000-0000-0047-000000000003}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000301}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000635}, !- Handle - {00000000-0000-0000-0053-000000000307}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000636}, !- Handle - {00000000-0000-0000-0047-000000000004}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000322}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000637}, !- Handle - {00000000-0000-0000-0053-000000000322}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000638}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000323}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000639}, !- Handle - {00000000-0000-0000-0053-000000000323}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000004}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000640}, !- Handle - {00000000-0000-0000-0047-000000000004}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000308}, !- Target Object - 2; !- Inlet Port - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000001}, !- Handle - Connector Mixer 1, !- Name - {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000002}, !- Handle - Connector Mixer 2, !- Name - {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000088}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000157}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000174}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000178}, !- Inlet Branch Name 4 - {00000000-0000-0000-0020-000000000194}, !- Inlet Branch Name 5 - {00000000-0000-0000-0020-000000000212}, !- Inlet Branch Name 6 - {00000000-0000-0000-0020-000000000216}, !- Inlet Branch Name 7 - {00000000-0000-0000-0020-000000000226}, !- Inlet Branch Name 8 - {00000000-0000-0000-0020-000000000230}, !- Inlet Branch Name 9 - {00000000-0000-0000-0020-000000000240}, !- Inlet Branch Name 10 - {00000000-0000-0000-0020-000000000244}, !- Inlet Branch Name 11 - {00000000-0000-0000-0020-000000000254}, !- Inlet Branch Name 12 - {00000000-0000-0000-0020-000000000258}, !- Inlet Branch Name 13 - {00000000-0000-0000-0020-000000000268}, !- Inlet Branch Name 14 - {00000000-0000-0000-0020-000000000272}, !- Inlet Branch Name 15 - {00000000-0000-0000-0020-000000000282}, !- Inlet Branch Name 16 - {00000000-0000-0000-0020-000000000286}, !- Inlet Branch Name 17 - {00000000-0000-0000-0020-000000000302}, !- Inlet Branch Name 18 - {00000000-0000-0000-0020-000000000320}, !- Inlet Branch Name 19 - {00000000-0000-0000-0020-000000000324}, !- Inlet Branch Name 20 - {00000000-0000-0000-0020-000000000334}, !- Inlet Branch Name 21 - {00000000-0000-0000-0020-000000000338}, !- Inlet Branch Name 22 - {00000000-0000-0000-0020-000000000348}, !- Inlet Branch Name 23 - {00000000-0000-0000-0020-000000000352}, !- Inlet Branch Name 24 - {00000000-0000-0000-0020-000000000362}, !- Inlet Branch Name 25 - {00000000-0000-0000-0020-000000000366}, !- Inlet Branch Name 26 - {00000000-0000-0000-0020-000000000376}, !- Inlet Branch Name 27 - {00000000-0000-0000-0020-000000000380}, !- Inlet Branch Name 28 - {00000000-0000-0000-0020-000000000390}, !- Inlet Branch Name 29 - {00000000-0000-0000-0020-000000000394}, !- Inlet Branch Name 30 - {00000000-0000-0000-0020-000000000410}, !- Inlet Branch Name 31 - {00000000-0000-0000-0020-000000000428}, !- Inlet Branch Name 32 - {00000000-0000-0000-0020-000000000432}, !- Inlet Branch Name 33 - {00000000-0000-0000-0020-000000000442}, !- Inlet Branch Name 34 - {00000000-0000-0000-0020-000000000446}, !- Inlet Branch Name 35 - {00000000-0000-0000-0020-000000000456}, !- Inlet Branch Name 36 - {00000000-0000-0000-0020-000000000460}, !- Inlet Branch Name 37 - {00000000-0000-0000-0020-000000000470}, !- Inlet Branch Name 38 - {00000000-0000-0000-0020-000000000474}, !- Inlet Branch Name 39 - {00000000-0000-0000-0020-000000000484}, !- Inlet Branch Name 40 - {00000000-0000-0000-0020-000000000488}, !- Inlet Branch Name 41 - {00000000-0000-0000-0020-000000000498}, !- Inlet Branch Name 42 - {00000000-0000-0000-0020-000000000502}; !- Inlet Branch Name 43 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000003}, !- Handle - Connector Mixer 3, !- Name - {00000000-0000-0000-0020-000000000117}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000108}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000112}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000116}; !- Inlet Branch Name 3 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000004}, !- Handle - Connector Mixer 4, !- Name - {00000000-0000-0000-0020-000000000101}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000160}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000198}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000306}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000414}; !- Inlet Branch Name 4 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000005}, !- Handle - Connector Mixer 5, !- Name - {00000000-0000-0000-0020-000000000138}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000133}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000137}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000006}, !- Handle - Connector Mixer 6, !- Name - {00000000-0000-0000-0020-000000000126}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000143}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000147}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000007}, !- Handle - Connector Mixer 7, !- Name - {00000000-0000-0000-0020-000000000529}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000521}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000525}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000008}, !- Handle - Connector Mixer 8, !- Name - {00000000-0000-0000-0020-000000000532}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000528}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000538}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000542}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000546}, !- Inlet Branch Name 4 - {00000000-0000-0000-0020-000000000550}, !- Inlet Branch Name 5 - {00000000-0000-0000-0020-000000000554}, !- Inlet Branch Name 6 - {00000000-0000-0000-0020-000000000558}, !- Inlet Branch Name 7 - {00000000-0000-0000-0020-000000000562}, !- Inlet Branch Name 8 - {00000000-0000-0000-0020-000000000566}, !- Inlet Branch Name 9 - {00000000-0000-0000-0020-000000000570}, !- Inlet Branch Name 10 - {00000000-0000-0000-0020-000000000574}, !- Inlet Branch Name 11 - {00000000-0000-0000-0020-000000000578}, !- Inlet Branch Name 12 - {00000000-0000-0000-0020-000000000582}, !- Inlet Branch Name 13 - {00000000-0000-0000-0020-000000000586}, !- Inlet Branch Name 14 - {00000000-0000-0000-0020-000000000590}, !- Inlet Branch Name 15 - {00000000-0000-0000-0020-000000000594}, !- Inlet Branch Name 16 - {00000000-0000-0000-0020-000000000598}, !- Inlet Branch Name 17 - {00000000-0000-0000-0020-000000000602}, !- Inlet Branch Name 18 - {00000000-0000-0000-0020-000000000606}, !- Inlet Branch Name 19 - {00000000-0000-0000-0020-000000000610}; !- Inlet Branch Name 20 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000001}, !- Handle - Connector Splitter 1, !- Name - {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000002}, !- Handle - Connector Splitter 2, !- Name - {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000154}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000171}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000175}, !- Outlet Branch Name 4 - {00000000-0000-0000-0020-000000000191}, !- Outlet Branch Name 5 - {00000000-0000-0000-0020-000000000209}, !- Outlet Branch Name 6 - {00000000-0000-0000-0020-000000000213}, !- Outlet Branch Name 7 - {00000000-0000-0000-0020-000000000223}, !- Outlet Branch Name 8 - {00000000-0000-0000-0020-000000000227}, !- Outlet Branch Name 9 - {00000000-0000-0000-0020-000000000237}, !- Outlet Branch Name 10 - {00000000-0000-0000-0020-000000000241}, !- Outlet Branch Name 11 - {00000000-0000-0000-0020-000000000251}, !- Outlet Branch Name 12 - {00000000-0000-0000-0020-000000000255}, !- Outlet Branch Name 13 - {00000000-0000-0000-0020-000000000265}, !- Outlet Branch Name 14 - {00000000-0000-0000-0020-000000000269}, !- Outlet Branch Name 15 - {00000000-0000-0000-0020-000000000279}, !- Outlet Branch Name 16 - {00000000-0000-0000-0020-000000000283}, !- Outlet Branch Name 17 - {00000000-0000-0000-0020-000000000299}, !- Outlet Branch Name 18 - {00000000-0000-0000-0020-000000000317}, !- Outlet Branch Name 19 - {00000000-0000-0000-0020-000000000321}, !- Outlet Branch Name 20 - {00000000-0000-0000-0020-000000000331}, !- Outlet Branch Name 21 - {00000000-0000-0000-0020-000000000335}, !- Outlet Branch Name 22 - {00000000-0000-0000-0020-000000000345}, !- Outlet Branch Name 23 - {00000000-0000-0000-0020-000000000349}, !- Outlet Branch Name 24 - {00000000-0000-0000-0020-000000000359}, !- Outlet Branch Name 25 - {00000000-0000-0000-0020-000000000363}, !- Outlet Branch Name 26 - {00000000-0000-0000-0020-000000000373}, !- Outlet Branch Name 27 - {00000000-0000-0000-0020-000000000377}, !- Outlet Branch Name 28 - {00000000-0000-0000-0020-000000000387}, !- Outlet Branch Name 29 - {00000000-0000-0000-0020-000000000391}, !- Outlet Branch Name 30 - {00000000-0000-0000-0020-000000000407}, !- Outlet Branch Name 31 - {00000000-0000-0000-0020-000000000425}, !- Outlet Branch Name 32 - {00000000-0000-0000-0020-000000000429}, !- Outlet Branch Name 33 - {00000000-0000-0000-0020-000000000439}, !- Outlet Branch Name 34 - {00000000-0000-0000-0020-000000000443}, !- Outlet Branch Name 35 - {00000000-0000-0000-0020-000000000453}, !- Outlet Branch Name 36 - {00000000-0000-0000-0020-000000000457}, !- Outlet Branch Name 37 - {00000000-0000-0000-0020-000000000467}, !- Outlet Branch Name 38 - {00000000-0000-0000-0020-000000000471}, !- Outlet Branch Name 39 - {00000000-0000-0000-0020-000000000481}, !- Outlet Branch Name 40 - {00000000-0000-0000-0020-000000000485}, !- Outlet Branch Name 41 - {00000000-0000-0000-0020-000000000495}, !- Outlet Branch Name 42 - {00000000-0000-0000-0020-000000000499}; !- Outlet Branch Name 43 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000003}, !- Handle - Connector Splitter 3, !- Name - {00000000-0000-0000-0020-000000000105}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000096}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000109}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000113}; !- Outlet Branch Name 3 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000004}, !- Handle - Connector Splitter 4, !- Name - {00000000-0000-0000-0020-000000000099}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000100}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000195}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000303}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000411}; !- Outlet Branch Name 4 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000005}, !- Handle - Connector Splitter 5, !- Name - {00000000-0000-0000-0020-000000000130}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000121}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000134}; !- Outlet Branch Name 2 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000006}, !- Handle - Connector Splitter 6, !- Name - {00000000-0000-0000-0020-000000000124}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000125}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000144}; !- Outlet Branch Name 2 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000007}, !- Handle - Connector Splitter 7, !- Name - {00000000-0000-0000-0020-000000000518}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000510}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000522}; !- Outlet Branch Name 2 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000008}, !- Handle - Connector Splitter 8, !- Name - {00000000-0000-0000-0020-000000000513}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000514}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000535}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000539}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000543}, !- Outlet Branch Name 4 - {00000000-0000-0000-0020-000000000547}, !- Outlet Branch Name 5 - {00000000-0000-0000-0020-000000000551}, !- Outlet Branch Name 6 - {00000000-0000-0000-0020-000000000555}, !- Outlet Branch Name 7 - {00000000-0000-0000-0020-000000000559}, !- Outlet Branch Name 8 - {00000000-0000-0000-0020-000000000563}, !- Outlet Branch Name 9 - {00000000-0000-0000-0020-000000000567}, !- Outlet Branch Name 10 - {00000000-0000-0000-0020-000000000571}, !- Outlet Branch Name 11 - {00000000-0000-0000-0020-000000000575}, !- Outlet Branch Name 12 - {00000000-0000-0000-0020-000000000579}, !- Outlet Branch Name 13 - {00000000-0000-0000-0020-000000000583}, !- Outlet Branch Name 14 - {00000000-0000-0000-0020-000000000587}, !- Outlet Branch Name 15 - {00000000-0000-0000-0020-000000000591}, !- Outlet Branch Name 16 - {00000000-0000-0000-0020-000000000595}, !- Outlet Branch Name 17 - {00000000-0000-0000-0020-000000000599}, !- Outlet Branch Name 18 - {00000000-0000-0000-0020-000000000603}, !- Outlet Branch Name 19 - {00000000-0000-0000-0020-000000000607}; !- Outlet Branch Name 20 - -OS:Construction, - {00000000-0000-0000-0023-000000000001}, !- Handle - BTAP-Ext-DaylightDiffuser, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000002}, !- Handle - BTAP-Ext-DaylightDiffuser:U=0.190 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000003}, !- Handle - BTAP-Ext-DaylightDomes, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000004}, !- Handle - BTAP-Ext-DaylightDomes:U=0.190 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000005}, !- Handle - BTAP-Ext-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000018}, !- Layer 1 - {00000000-0000-0000-0051-000000000013}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000006}, !- Handle - BTAP-Ext-Door:U-1.9, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000017}, !- Layer 1 - {00000000-0000-0000-0051-000000000011}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000007}, !- Handle - BTAP-Ext-FixedWindow, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000008}, !- Handle - BTAP-Ext-FixedWindow:U=0.190 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000009}, !- Handle - BTAP-Ext-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000013}, !- Layer 1 - {00000000-0000-0000-0050-000000000008}, !- Layer 2 - {00000000-0000-0000-0051-000000000007}; !- Layer 3 - -OS:Construction, - {00000000-0000-0000-0023-000000000010}, !- Handle - BTAP-Ext-Floor-Mass:U-0.162, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000008}, !- Layer 1 - {00000000-0000-0000-0050-000000000007}, !- Layer 2 - {00000000-0000-0000-0051-000000000003}; !- Layer 3 - -OS:Construction, - {00000000-0000-0000-0023-000000000011}, !- Handle - BTAP-Ext-GlassDoors, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000012}, !- Handle - BTAP-Ext-GlassDoors:U=0.190 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000013}, !- Handle - BTAP-Ext-OverHeadDoor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000013}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000014}, !- Handle - BTAP-Ext-OverHeadDoor:U-1.9, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000012}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000015}, !- Handle - BTAP-Ext-Roof-Metal, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000024}, !- Layer 1 - {00000000-0000-0000-0051-000000000013}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000016}, !- Handle - BTAP-Ext-Roof-Metal:U-0.138, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000023}, !- Layer 1 - {00000000-0000-0000-0051-000000000010}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000017}, !- Handle - BTAP-Ext-Skylights, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000018}, !- Handle - BTAP-Ext-Skylights:U=0.190 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000019}, !- Handle - BTAP-Ext-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000006}, !- Layer 1 - {00000000-0000-0000-0050-000000000014}, !- Layer 2 - {00000000-0000-0000-0051-000000000013}, !- Layer 3 - {00000000-0000-0000-0050-000000000002}; !- Layer 4 - -OS:Construction, - {00000000-0000-0000-0023-000000000020}, !- Handle - BTAP-Ext-Wall-Mass:U-0.21, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000005}, !- Layer 1 - {00000000-0000-0000-0050-000000000013}, !- Layer 2 - {00000000-0000-0000-0051-000000000009}, !- Layer 3 - {00000000-0000-0000-0050-000000000001}; !- Layer 4 - -OS:Construction, - {00000000-0000-0000-0023-000000000021}, !- Handle - BTAP-Grnd-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000012}, !- Layer 1 - {00000000-0000-0000-0051-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000022}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000009}, !- Layer 1 - {00000000-0000-0000-0051-000000000004}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000023}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000009}, !- Layer 1 - {00000000-0000-0000-0050-000000000016}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000024}, !- Handle - BTAP-Grnd-Roof-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000012}, !- Layer 1 - {00000000-0000-0000-0051-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000025}, !- Handle - BTAP-Grnd-Roof-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000011}, !- Layer 1 - {00000000-0000-0000-0051-000000000006}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000026}, !- Handle - BTAP-Grnd-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000012}, !- Layer 1 - {00000000-0000-0000-0051-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000027}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000010}, !- Layer 1 - {00000000-0000-0000-0051-000000000005}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000028}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000010}, !- Layer 1 - {00000000-0000-0000-0050-000000000015}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000029}, !- Handle - BTAP-Int-Ceiling, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000007}, !- Layer 1 - {00000000-0000-0000-0050-000000000003}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000030}, !- Handle - BTAP-Int-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000021}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000031}, !- Handle - BTAP-Int-Floor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000003}, !- Layer 1 - {00000000-0000-0000-0051-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000032}, !- Handle - BTAP-Int-Partition, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000021}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000033}, !- Handle - BTAP-Int-Wall, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000019}, !- Layer 1 - {00000000-0000-0000-0050-000000000019}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000034}, !- Handle - BTAP-Int-Window, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000035}, !- Handle - Basement Floor construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000022}, !- Layer 1 - {00000000-0000-0000-0051-000000000001}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000036}, !- Handle - Basement Wall construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000022}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000037}, !- Handle - Floor Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000001}, !- Layer 1 - {00000000-0000-0000-0050-000000000004}, !- Layer 2 - {00000000-0000-0000-0051-000000000002}; !- Layer 3 - -OS:Construction, - {00000000-0000-0000-0023-000000000038}, !- Handle - Wall Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000020}, !- Layer 1 - {00000000-0000-0000-0050-000000000020}; !- Layer 2 - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000004}, !- Handle - Controller Mechanical Ventilation 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000005}, !- Handle - Controller Mechanical Ventilation 5, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000027}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - NoEconomizer, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} - 64000, !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000031}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000028}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000003}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000004}, !- Handle - Controller Outdoor Air 4, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000029}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000004}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000005}, !- Handle - Controller Outdoor Air 5, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000030}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000005}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000001}, !- Handle - Controller Water Coil 1, !- Name - {00000000-0000-0000-0018-000000000001}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000002}, !- Handle - Controller Water Coil 10, !- Name - {00000000-0000-0000-0018-000000000022}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000003}, !- Handle - Controller Water Coil 11, !- Name - {00000000-0000-0000-0018-000000000023}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000004}, !- Handle - Controller Water Coil 12, !- Name - {00000000-0000-0000-0018-000000000002}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000005}, !- Handle - Controller Water Coil 13, !- Name - {00000000-0000-0000-0016-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000006}, !- Handle - Controller Water Coil 14, !- Name - {00000000-0000-0000-0018-000000000003}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000007}, !- Handle - Controller Water Coil 15, !- Name - {00000000-0000-0000-0018-000000000004}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000008}, !- Handle - Controller Water Coil 16, !- Name - {00000000-0000-0000-0018-000000000005}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000009}, !- Handle - Controller Water Coil 17, !- Name - {00000000-0000-0000-0018-000000000006}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000010}, !- Handle - Controller Water Coil 18, !- Name - {00000000-0000-0000-0018-000000000007}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000011}, !- Handle - Controller Water Coil 19, !- Name - {00000000-0000-0000-0018-000000000008}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000012}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0016-000000000001}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000013}, !- Handle - Controller Water Coil 20, !- Name - {00000000-0000-0000-0018-000000000009}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000014}, !- Handle - Controller Water Coil 21, !- Name - {00000000-0000-0000-0016-000000000004}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000015}, !- Handle - Controller Water Coil 22, !- Name - {00000000-0000-0000-0018-000000000010}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000016}, !- Handle - Controller Water Coil 23, !- Name - {00000000-0000-0000-0018-000000000011}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000017}, !- Handle - Controller Water Coil 24, !- Name - {00000000-0000-0000-0018-000000000013}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000018}, !- Handle - Controller Water Coil 25, !- Name - {00000000-0000-0000-0018-000000000014}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000019}, !- Handle - Controller Water Coil 26, !- Name - {00000000-0000-0000-0018-000000000015}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000020}, !- Handle - Controller Water Coil 27, !- Name - {00000000-0000-0000-0018-000000000016}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000021}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0018-000000000012}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000022}, !- Handle - Controller Water Coil 4, !- Name - {00000000-0000-0000-0018-000000000017}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000023}, !- Handle - Controller Water Coil 5, !- Name - {00000000-0000-0000-0016-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000024}, !- Handle - Controller Water Coil 6, !- Name - {00000000-0000-0000-0018-000000000018}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000025}, !- Handle - Controller Water Coil 7, !- Name - {00000000-0000-0000-0018-000000000019}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000026}, !- Handle - Controller Water Coil 8, !- Name - {00000000-0000-0000-0018-000000000020}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000027}, !- Handle - Controller Water Coil 9, !- Name - {00000000-0000-0000-0018-000000000021}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:CoolingTower:SingleSpeed, - {00000000-0000-0000-0027-000000000001}, !- Handle - Cooling Tower Single Speed 1, !- Name - {00000000-0000-0000-0020-000000000131}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000132}, !- Water Outlet Node Name - autosize, !- Design Water Flow Rate {m3/s} - autosize, !- Design Air Flow Rate {m3/s} - 30219.6380386463, !- Fan Power at Design Air Flow Rate {W} - autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} - autosize, !- Air Flow Rate in Free Convection Regime {m3/s} - autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} - UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method - , !- Nominal Capacity {W} - 0, !- Free Convection Capacity {W} - 0, !- Basin Heater Capacity {W/K} - 2, !- Basin Heater Setpoint Temperature {C} - , !- Basin Heater Operating Schedule Name - LossFactor, !- Evaporation Loss Mode - 0.2, !- Evaporation Loss Factor {percent/K} - 0.008, !- Drift Loss Percent {percent} - ConcentrationRatio, !- Blowdown Calculation Mode - 3, !- Blowdown Concentration Ratio - , !- Blowdown Makeup Water Usage Schedule Name - , !- Outdoor Air Inlet Node Name - FanCycling, !- Capacity Control - 2, !- Number of Cells - MinimalCell, !- Cell Control - 0.33, !- Cell Minimum Water Flow Rate Fraction - 2.5, !- Cell Maximum Water Flow Rate Fraction - 1, !- Sizing Factor - 0.1, !- Free Convection Air Flow Rate Sizing Factor - 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor - 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio - 0.1, !- Free Convection Nominal Capacity Sizing Factor - 35, !- Design Inlet Air Dry-Bulb Temperature {C} - 24, !- Design Inlet Air Wet-Bulb Temperature {C} - 5, !- Design Approach Temperature {deltaC} - 6, !- Design Range Temperature {deltaC} - General; !- End-Use Subcategory - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000001}, !- Handle - Curve Biquadratic 1, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.000554364, !- Coefficient3 x**2 - -0.00755748, !- Coefficient4 y - 3.3048e-05, !- Coefficient5 y**2 - -0.000191808, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000002}, !- Handle - Curve Biquadratic 2, !- Name - 0.116936, !- Coefficient1 Constant - 0.0284933, !- Coefficient2 x - -0.000411156, !- Coefficient3 x**2 - 0.0214108, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000003}, !- Handle - Curve Biquadratic 3, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000004}, !- Handle - Curve Biquadratic 4, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000005}, !- Handle - Curve Biquadratic 5, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000006}, !- Handle - Curve Biquadratic 6, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000007}, !- Handle - DXCOOL-NECB2011-REF-CAPFT, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.00055436, !- Coefficient3 x**2 - -0.0075575, !- Coefficient4 y - 3.3e-05, !- Coefficient5 y**2 - -0.0001918, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000008}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFT, !- Name - 0.1141714, !- Coefficient1 Constant - 0.02818224, !- Coefficient2 x - -0.0004199, !- Coefficient3 x**2 - 0.02141082, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000009}, !- Handle - WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name - 0.707908, !- Coefficient1 Constant - -0.00200657, !- Coefficient2 x - -0.00259605, !- Coefficient3 x**2 - 0.0300588, !- Coefficient4 y - -0.00105643, !- Coefficient5 y**2 - 0.0020457, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000010}, !- Handle - WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name - 0.560523, !- Coefficient1 Constant - -0.0137816, !- Coefficient2 x - 6.56424e-05, !- Coefficient3 x**2 - 0.0132194, !- Coefficient4 y - 0.000268596, !- Coefficient5 y**2 - -0.000501131, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000011}, !- Handle - WaterCooled_Scroll_CAPFT_NECB2011, !- Name - 0.94418, !- Coefficient1 Constant - 0.0337102, !- Coefficient2 x - 9.75564e-05, !- Coefficient3 x**2 - -0.00322114, !- Coefficient4 y - -4.91832e-05, !- Coefficient5 y**2 - -0.000177584, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000012}, !- Handle - WaterCooled_Scroll_EIRFT_NECB2011, !- Name - 0.727393, !- Coefficient1 Constant - -0.0118922, !- Coefficient2 x - 0.000541177, !- Coefficient3 x**2 - 0.00187934, !- Coefficient4 y - 0.000473461, !- Coefficient5 y**2 - -0.000711472, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000001}, !- Handle - BOILER-EFFFPLR-NECB2011, !- Name - 0.3831, !- Coefficient1 Constant - 2.0567, !- Coefficient2 x - -2.6469, !- Coefficient3 x**2 - 1.2148, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000002}, !- Handle - Curve Cubic 1, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000003}, !- Handle - DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000004}, !- Handle - FURNACE-EFFPLR-NECB2011, !- Name - 0.722, !- Coefficient1 Constant - 0.8211, !- Coefficient2 x - -1.0396, !- Coefficient3 x**2 - 0.5, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000005}, !- Handle - SWH-EFFFPLR-NECB2011, !- Name - 0.7576, !- Coefficient1 Constant - 1.0071, !- Coefficient2 x - -1.4443, !- Coefficient3 x**2 - 0.6844, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000006}, !- Handle - VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name - -2.4176, !- Coefficient1 Constant - 9.5874, !- Coefficient2 x - -11.559, !- Coefficient3 x**2 - 5.4009, !- Coefficient4 x**3 - 0.68, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000007}, !- Handle - VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name - -4.1457, !- Coefficient1 Constant - 16.803, !- Coefficient2 x - -19.471, !- Coefficient3 x**2 - 7.8488, !- Coefficient4 x**3 - 0.5, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000008}, !- Handle - VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name - -0.3477, !- Coefficient1 Constant - 4.0976, !- Coefficient2 x - -5.0024, !- Coefficient3 x**2 - 2.268, !- Coefficient4 x**3 - 0.22, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000001}, !- Handle - Curve Quadratic 1, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000002}, !- Handle - Curve Quadratic 2, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000003}, !- Handle - Curve Quadratic 3, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000004}, !- Handle - Curve Quadratic 4, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000005}, !- Handle - DXCOOL-NECB2011-REF-CAPFFLOW, !- Name - 0.8, !- Coefficient1 Constant - 0.2, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000006}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name - 1.1552, !- Coefficient1 Constant - -0.1808, !- Coefficient2 x - 0.0256, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000007}, !- Handle - WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name - 0.171493, !- Coefficient1 Constant - 0.588202, !- Coefficient2 x - 0.237373, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000008}, !- Handle - WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name - 0.04412, !- Coefficient1 Constant - 0.640367, !- Coefficient2 x - 0.319555, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:DefaultConstructionSet, - {00000000-0000-0000-0031-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name - {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name - {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name - {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name - {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name - {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - , !- Site Shading Construction Name - ; !- Adiabatic Surface Construction Name - -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000001}, !- Handle - Space Function - undefined - Schedule Set, !- 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 - {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000002}, !- Handle - Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0066-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0066-000000000017}, !- People Activity Level Schedule Name - {00000000-0000-0000-0066-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0066-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000003}, !- Handle - Space Function Office open plan Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0066-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0066-000000000017}, !- People Activity Level Schedule Name - {00000000-0000-0000-0066-000000000013}, !- Lighting Schedule Name - {00000000-0000-0000-0066-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000006}, !- Door Construction Name - {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000002}, !- Handle - Default Sub Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000030}, !- 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:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000003}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000005}, !- Door Construction Name - {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000002}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000003}, !- Handle - Default Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000004}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000005}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name - -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000001}, !- Handle - Space Function - undefined - Ventilation, !- Name - , !- Outdoor Air Method - 0, !- Outdoor Air Flow per Person {m3/s-person} - 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000002}, !- Handle - Space Function Electrical/Mechanical room-sch-A 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:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000003}, !- Handle - Space Function Office open plan Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.0142188325687296, !- 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:ElectricEquipment, - {00000000-0000-0000-0036-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name - {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory - -OS:ElectricEquipment, - {00000000-0000-0000-0036-000000000002}, !- Handle - Space Function Office open plan Elec Equip, !- Name - {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory - -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 1.0003634216273, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant - -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000002}, !- Handle - Space Function Office open plan Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.50272566220473, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name - {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0066-000000000016}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name - {00000000-0000-0000-0066-000000000016}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000005}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_ClgSch0, !- Name - {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000006}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_HtgSch0, !- Name - {00000000-0000-0000-0066-000000000016}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {00fa6aec-cae8-4b62-96d5-97ac4084a1e8}<23.9 && {00fa6aec-cae8-4b62-96d5-97ac4084a1e8}>1.7, !- Program Line 1 - SET {ae8dbb1e-0337-4be7-9665-4fddf6ade8cb} = 29.4, !- Program Line 2 - SET {8f3fcd04-7c23-4a8b-be95-ee01b09868b4} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {00fa6aec-cae8-4b62-96d5-97ac4084a1e8}<23.9 && {00fa6aec-cae8-4b62-96d5-97ac4084a1e8}>1.7, !- Program Line 4 - SET {ae8dbb1e-0337-4be7-9665-4fddf6ade8cb} = 29.4, !- Program Line 5 - SET {8f3fcd04-7c23-4a8b-be95-ee01b09868b4} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {00fa6aec-cae8-4b62-96d5-97ac4084a1e8}<23.9 && {00fa6aec-cae8-4b62-96d5-97ac4084a1e8}>1.7, !- Program Line 7 - SET {ae8dbb1e-0337-4be7-9665-4fddf6ade8cb} = 29.4, !- Program Line 8 - SET {8f3fcd04-7c23-4a8b-be95-ee01b09868b4} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {00fa6aec-cae8-4b62-96d5-97ac4084a1e8}<23.9 && {00fa6aec-cae8-4b62-96d5-97ac4084a1e8}>1.7, !- Program Line 10 - SET {ae8dbb1e-0337-4be7-9665-4fddf6ade8cb} = 29.4, !- Program Line 11 - SET {8f3fcd04-7c23-4a8b-be95-ee01b09868b4} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {ae8dbb1e-0337-4be7-9665-4fddf6ade8cb} = NULL, !- Program Line 14 - SET {8f3fcd04-7c23-4a8b-be95-ee01b09868b4} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0039-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5b72876a-7f18-40e3-b45e-a958e1bd3df0}<23.9 && {5b72876a-7f18-40e3-b45e-a958e1bd3df0}>1.7, !- Program Line 1 - SET {e5a09b6b-5851-4611-84b8-64709c408380} = 29.4, !- Program Line 2 - SET {53150d33-072a-403b-833f-2894eb078ea7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5b72876a-7f18-40e3-b45e-a958e1bd3df0}<23.9 && {5b72876a-7f18-40e3-b45e-a958e1bd3df0}>1.7, !- Program Line 4 - SET {e5a09b6b-5851-4611-84b8-64709c408380} = 29.4, !- Program Line 5 - SET {53150d33-072a-403b-833f-2894eb078ea7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5b72876a-7f18-40e3-b45e-a958e1bd3df0}<23.9 && {5b72876a-7f18-40e3-b45e-a958e1bd3df0}>1.7, !- Program Line 7 - SET {e5a09b6b-5851-4611-84b8-64709c408380} = 29.4, !- Program Line 8 - SET {53150d33-072a-403b-833f-2894eb078ea7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5b72876a-7f18-40e3-b45e-a958e1bd3df0}<23.9 && {5b72876a-7f18-40e3-b45e-a958e1bd3df0}>1.7, !- Program Line 10 - SET {e5a09b6b-5851-4611-84b8-64709c408380} = 29.4, !- Program Line 11 - SET {53150d33-072a-403b-833f-2894eb078ea7} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {e5a09b6b-5851-4611-84b8-64709c408380} = NULL, !- Program Line 14 - SET {53150d33-072a-403b-833f-2894eb078ea7} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0039-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3c9c5e7c-f9ef-43e4-81aa-4f7686be9a55}<23.9 && {3c9c5e7c-f9ef-43e4-81aa-4f7686be9a55}>1.7, !- Program Line 1 - SET {5a49e879-8301-4a2e-a093-258fc9ab0b40} = 29.4, !- Program Line 2 - SET {d16ad0fc-5e6e-4ea1-a055-fceb020d8fb1} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3c9c5e7c-f9ef-43e4-81aa-4f7686be9a55}<23.9 && {3c9c5e7c-f9ef-43e4-81aa-4f7686be9a55}>1.7, !- Program Line 4 - SET {5a49e879-8301-4a2e-a093-258fc9ab0b40} = 29.4, !- Program Line 5 - SET {d16ad0fc-5e6e-4ea1-a055-fceb020d8fb1} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3c9c5e7c-f9ef-43e4-81aa-4f7686be9a55}<23.9 && {3c9c5e7c-f9ef-43e4-81aa-4f7686be9a55}>1.7, !- Program Line 7 - SET {5a49e879-8301-4a2e-a093-258fc9ab0b40} = 29.4, !- Program Line 8 - SET {d16ad0fc-5e6e-4ea1-a055-fceb020d8fb1} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3c9c5e7c-f9ef-43e4-81aa-4f7686be9a55}<23.9 && {3c9c5e7c-f9ef-43e4-81aa-4f7686be9a55}>1.7, !- Program Line 10 - SET {5a49e879-8301-4a2e-a093-258fc9ab0b40} = 29.4, !- Program Line 11 - SET {d16ad0fc-5e6e-4ea1-a055-fceb020d8fb1} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {5a49e879-8301-4a2e-a093-258fc9ab0b40} = NULL, !- Program Line 14 - SET {d16ad0fc-5e6e-4ea1-a055-fceb020d8fb1} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0040-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0039-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0040-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0039-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0040-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0039-000000000003}; !- Program Name 1 - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0041-000000000001}, !- Handle - OAT, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0041-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0041-000000000003}, !- Handle - OAT_2, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:Facility, - {00000000-0000-0000-0042-000000000001}; !- Handle - -OS:Fan:ConstantVolume, - {00000000-0000-0000-0043-000000000001}, !- Handle - Fan Constant Volume 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.39975, !- Fan Total Efficiency - 640, !- Pressure Rise {Pa} - AutoSize, !- Maximum Flow Rate {m3/s} - 0.615, !- Motor Efficiency - , !- Motor In Airstream Fraction - {00000000-0000-0000-0020-000000000080}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000078}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000206}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000207}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000314}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000315}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000003}, !- Handle - Sys6 Return Fan 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000422}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000423}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000004}, !- Handle - Sys6 Return Fan, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000168}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000169}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000005}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000201}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000199}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000006}, !- Handle - Sys6 Supply Fan 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000309}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000307}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000007}, !- Handle - Sys6 Supply Fan 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000417}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000415}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000008}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000163}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000161}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Foundation:Kiva, - {00000000-0000-0000-0045-000000000001}, !- Handle - Bldg Kiva Foundation, !- Name - , !- Initial Indoor Air Temperature {C} - , !- Interior Horizontal Insulation Material Name - , !- Interior Horizontal Insulation Depth {m} - , !- Interior Horizontal Insulation Width {m} - , !- Interior Vertical Insulation Material Name - , !- Interior Vertical Insulation Depth {m} - , !- Exterior Horizontal Insulation Material Name - , !- Exterior Horizontal Insulation Depth {m} - , !- Exterior Horizontal Insulation Width {m} - , !- Exterior Vertical Insulation Material Name - , !- Exterior Vertical Insulation Depth {m} - 0, !- Wall Height Above Grade {m} - 0, !- Wall Depth Below Slab {m} - , !- Footing Wall Construction Name - , !- Footing Material Name - ; !- Footing Depth {m} - -OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0046-000000000001}, !- Handle - , !- Soil Conductivity {W/m-K} - , !- Soil Density {kg/m3} - , !- Soil Specific Heat {J/kg-K} - , !- Ground Solar Absorptivity {dimensionless} - , !- Ground Thermal Absorptivity {dimensionless} - , !- Ground Surface Roughness {m} - , !- Far-Field Width {m} - , !- Deep-Ground Boundary Condition - , !- Deep-Ground Depth {m} - , !- Minimum Cell Dimension {m} - , !- Maximum Cell Growth Coefficient {dimensionless} - ; !- Simulation Timestep - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0047-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000611}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000612}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000615}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000616}, !- Exhaust Air Outlet Node - 556.536604212459, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0047-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000623}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000624}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000627}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000628}, !- Exhaust Air Outlet Node - 1868.20312072616, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0047-000000000003}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000629}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000630}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000633}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000634}, !- Exhaust Air Outlet Node - 18232.0312072616, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0047-000000000004}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000635}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000636}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000639}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000640}, !- Exhaust Air Outlet Node - 1868.20312072616, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0047-000000000005}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000617}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000618}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000621}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000622}, !- Exhaust Air Outlet Node - 449.90062893127, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout + {00000000-0000-0000-0020-000000000267}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0049-000000000091}, !- Target Object + 2; !- Inlet Port -OS:Lights, - {00000000-0000-0000-0048-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Lights, !- Name - {00000000-0000-0000-0049-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory +OS:Connection, + {00000000-0000-0000-0020-000000000268}, !- Handle + {00000000-0000-0000-0049-000000000091}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000015}, !- Target Object + 2; !- Inlet Port -OS:Lights, - {00000000-0000-0000-0048-000000000002}, !- Handle - Space Function Office open plan Lights, !- Name - {00000000-0000-0000-0049-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory +OS:Connection, + {00000000-0000-0000-0020-000000000269}, !- Handle + {00000000-0000-0000-0096-000000000015}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000092}, !- Target Object + 2; !- Inlet Port -OS:Lights:Definition, - {00000000-0000-0000-0049-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.60167173948557, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible +OS:Connection, + {00000000-0000-0000-0020-000000000270}, !- Handle + {00000000-0000-0000-0049-000000000092}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 18; !- Inlet Port -OS:Lights:Definition, - {00000000-0000-0000-0049-000000000002}, !- Handle - Space Function Office open plan Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 8.69993059430563, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible +OS:Connection, + {00000000-0000-0000-0020-000000000271}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0049-000000000093}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000001}, !- Handle - 1/2IN Gypsum 1, !- 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:Connection, + {00000000-0000-0000-0020-000000000272}, !- Handle + {00000000-0000-0000-0049-000000000093}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000016}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000002}, !- 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:Connection, + {00000000-0000-0000-0020-000000000273}, !- Handle + {00000000-0000-0000-0096-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000094}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000003}, !- Handle - 100mm Normalweight concrete floor 1, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} +OS:Connection, + {00000000-0000-0000-0020-000000000274}, !- Handle + {00000000-0000-0000-0049-000000000094}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 19; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000004}, !- Handle - 100mm Normalweight concrete floor, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} +OS:Connection, + {00000000-0000-0000-0020-000000000275}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0049-000000000095}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000005}, !- Handle - 1IN Stucco 1, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000276}, !- Handle + {00000000-0000-0000-0049-000000000095}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000017}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000006}, !- Handle - 1IN Stucco, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000277}, !- Handle + {00000000-0000-0000-0096-000000000017}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000096}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000007}, !- Handle - 4 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000278}, !- Handle + {00000000-0000-0000-0049-000000000096}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 20; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000008}, !- Handle - 4 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000279}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0049-000000000097}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000009}, !- Handle - 6 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000280}, !- Handle + {00000000-0000-0000-0049-000000000097}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000018}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000010}, !- Handle - 6 in. Normalweight Concrete Floor 2, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000281}, !- Handle + {00000000-0000-0000-0096-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000098}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000011}, !- Handle - 6 in. Normalweight Concrete Floor 3, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000282}, !- Handle + {00000000-0000-0000-0049-000000000098}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 21; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000012}, !- Handle - 6 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000283}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0049-000000000099}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000013}, !- Handle - 8IN CONCRETE HW RefBldg 1, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000284}, !- Handle + {00000000-0000-0000-0049-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000019}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000014}, !- Handle - 8IN CONCRETE HW RefBldg, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000285}, !- Handle + {00000000-0000-0000-0096-000000000019}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000100}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000286}, !- Handle + {00000000-0000-0000-0049-000000000100}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 22; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000015}, !- Handle - Expanded Polystyrene 1, !- Name - MediumSmooth, !- Roughness - 0.100199429303091, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} +OS:Connection, + {00000000-0000-0000-0020-000000000287}, !- Handle + {00000000-0000-0000-0049-000000000137}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000001}, !- Target Object + 12; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000016}, !- Handle - Expanded Polystyrene, !- Name - MediumSmooth, !- Roughness - 0.0363958681740979, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} +OS:Connection, + {00000000-0000-0000-0020-000000000288}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000141}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000017}, !- Handle - F08 Metal surface 1, !- 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:Connection, + {00000000-0000-0000-0020-000000000289}, !- Handle + {00000000-0000-0000-0049-000000000141}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 6; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000018}, !- 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:Connection, + {00000000-0000-0000-0020-000000000290}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000142}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000019}, !- Handle - G01 13mm gypsum board 1, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000291}, !- Handle + {00000000-0000-0000-0049-000000000142}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000001}, !- Target Object + 14; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000020}, !- Handle - G01 13mm gypsum board, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000292}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0049-000000000138}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000021}, !- 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:Connection, + {00000000-0000-0000-0020-000000000293}, !- Handle + {00000000-0000-0000-0049-000000000146}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000002}, !- Target Object + 12; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000022}, !- Handle - M10 200mm concrete block basement wall, !- Name - MediumRough, !- Roughness - 0.2032, !- Thickness {m} - 1.326, !- Conductivity {W/m-K} - 1842, !- Density {kg/m3} - 912; !- Specific Heat {J/kg-K} +OS:Connection, + {00000000-0000-0000-0020-000000000294}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000150}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000023}, !- Handle - Metal Roof Surface 1, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000295}, !- Handle + {00000000-0000-0000-0049-000000000150}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000024}, !- Handle - Metal Roof Surface, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000296}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000151}, !- Target Object + 2; !- Inlet Port -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000001}, !- Handle - CP02 CARPET PAD, !- Name - VeryRough, !- Roughness - 0.21648, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000297}, !- Handle + {00000000-0000-0000-0049-000000000151}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000002}, !- Target Object + 14; !- Inlet Port -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000002}, !- Handle - Nonres_Floor_Insulation, !- Name - MediumSmooth, !- Roughness - 2.88291975297193, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000298}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0049-000000000147}, !- Target Object + 2; !- Inlet Port -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000003}, !- Handle - Typical Carpet Pad 1, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000001}, !- Handle + Connector Mixer 1, !- Name + {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000004}, !- Handle - Typical Carpet Pad 2, !- Name - Smooth, !- Roughness - 1.25502993703786, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000002}, !- Handle + Connector Mixer 2, !- Name + {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000088}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000157}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000174}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000178}; !- Inlet Branch Name 4 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000005}, !- Handle - Typical Carpet Pad 3, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000003}, !- Handle + Connector Mixer 3, !- Name + {00000000-0000-0000-0020-000000000117}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000108}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000112}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000116}; !- Inlet Branch Name 3 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000006}, !- Handle - Typical Carpet Pad 4, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000004}, !- Handle + Connector Mixer 4, !- Name + {00000000-0000-0000-0020-000000000101}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000160}; !- Inlet Branch Name 1 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000007}, !- Handle - Typical Carpet Pad, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000005}, !- Handle + Connector Mixer 5, !- Name + {00000000-0000-0000-0020-000000000138}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000133}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000137}; !- Inlet Branch Name 2 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000008}, !- Handle - Typical Insulation 1, !- Name - Smooth, !- Roughness - 5.91237683519488, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000006}, !- Handle + Connector Mixer 6, !- Name + {00000000-0000-0000-0020-000000000126}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000143}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000147}; !- Inlet Branch Name 2 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000009}, !- Handle - Typical Insulation 2, !- Name - Smooth, !- Roughness - 4.49096231241638, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000007}, !- Handle + Connector Mixer 7, !- Name + {00000000-0000-0000-0020-000000000205}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000197}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000201}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000008}, !- Handle + Connector Mixer 8, !- Name + {00000000-0000-0000-0020-000000000208}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000204}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000214}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000218}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000222}, !- Inlet Branch Name 4 + {00000000-0000-0000-0020-000000000226}, !- Inlet Branch Name 5 + {00000000-0000-0000-0020-000000000230}, !- Inlet Branch Name 6 + {00000000-0000-0000-0020-000000000234}, !- Inlet Branch Name 7 + {00000000-0000-0000-0020-000000000238}, !- Inlet Branch Name 8 + {00000000-0000-0000-0020-000000000242}, !- Inlet Branch Name 9 + {00000000-0000-0000-0020-000000000246}, !- Inlet Branch Name 10 + {00000000-0000-0000-0020-000000000250}, !- Inlet Branch Name 11 + {00000000-0000-0000-0020-000000000254}, !- Inlet Branch Name 12 + {00000000-0000-0000-0020-000000000258}, !- Inlet Branch Name 13 + {00000000-0000-0000-0020-000000000262}, !- Inlet Branch Name 14 + {00000000-0000-0000-0020-000000000266}, !- Inlet Branch Name 15 + {00000000-0000-0000-0020-000000000270}, !- Inlet Branch Name 16 + {00000000-0000-0000-0020-000000000274}, !- Inlet Branch Name 17 + {00000000-0000-0000-0020-000000000278}, !- Inlet Branch Name 18 + {00000000-0000-0000-0020-000000000282}, !- Inlet Branch Name 19 + {00000000-0000-0000-0020-000000000286}; !- Inlet Branch Name 20 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000010}, !- Handle - Typical Insulation 3, !- Name - Smooth, !- Roughness - 7.24635914374968, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000001}, !- Handle + Connector Splitter 1, !- Name + {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000011}, !- Handle - Typical Insulation 4, !- Name - Smooth, !- Roughness - 0.526298121629161, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000002}, !- Handle + Connector Splitter 2, !- Name + {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000154}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000171}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000175}; !- Outlet Branch Name 4 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000012}, !- Handle - Typical Insulation 5, !- Name - Smooth, !- Roughness - 0.526315789473684, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000003}, !- Handle + Connector Splitter 3, !- Name + {00000000-0000-0000-0020-000000000105}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000096}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000109}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000113}; !- Outlet Branch Name 3 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000013}, !- Handle - Typical Insulation, !- Name - Smooth, !- Roughness - 0.101874652714525, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000004}, !- Handle + Connector Splitter 4, !- Name + {00000000-0000-0000-0020-000000000099}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000100}; !- Outlet Branch Name 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000001}, !- Handle - Availability Manager Night Cycle 1 Control Zone List; !- Name +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000005}, !- Handle + Connector Splitter 5, !- Name + {00000000-0000-0000-0020-000000000130}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000121}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000134}; !- Outlet Branch Name 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000002}, !- Handle - Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000006}, !- Handle + Connector Splitter 6, !- Name + {00000000-0000-0000-0020-000000000124}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000125}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000144}; !- Outlet Branch Name 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000003}, !- Handle - Availability Manager Night Cycle 1 Heating Control Zone List; !- Name +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000007}, !- Handle + Connector Splitter 7, !- Name + {00000000-0000-0000-0020-000000000194}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000186}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000198}; !- Outlet Branch Name 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000004}, !- Handle - Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000008}, !- Handle + Connector Splitter 8, !- Name + {00000000-0000-0000-0020-000000000189}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000190}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000211}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000215}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000219}, !- Outlet Branch Name 4 + {00000000-0000-0000-0020-000000000223}, !- Outlet Branch Name 5 + {00000000-0000-0000-0020-000000000227}, !- Outlet Branch Name 6 + {00000000-0000-0000-0020-000000000231}, !- Outlet Branch Name 7 + {00000000-0000-0000-0020-000000000235}, !- Outlet Branch Name 8 + {00000000-0000-0000-0020-000000000239}, !- Outlet Branch Name 9 + {00000000-0000-0000-0020-000000000243}, !- Outlet Branch Name 10 + {00000000-0000-0000-0020-000000000247}, !- Outlet Branch Name 11 + {00000000-0000-0000-0020-000000000251}, !- Outlet Branch Name 12 + {00000000-0000-0000-0020-000000000255}, !- Outlet Branch Name 13 + {00000000-0000-0000-0020-000000000259}, !- Outlet Branch Name 14 + {00000000-0000-0000-0020-000000000263}, !- Outlet Branch Name 15 + {00000000-0000-0000-0020-000000000267}, !- Outlet Branch Name 16 + {00000000-0000-0000-0020-000000000271}, !- Outlet Branch Name 17 + {00000000-0000-0000-0020-000000000275}, !- Outlet Branch Name 18 + {00000000-0000-0000-0020-000000000279}, !- Outlet Branch Name 19 + {00000000-0000-0000-0020-000000000283}; !- Outlet Branch Name 20 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000001}, !- Handle + BTAP-Ext-DaylightDiffuser, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000002}, !- Handle + BTAP-Ext-DaylightDiffuser:U=0.190 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000002}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000003}, !- Handle + BTAP-Ext-DaylightDomes, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000004}, !- Handle + BTAP-Ext-DaylightDomes:U=0.190 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000002}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000005}, !- Handle + BTAP-Ext-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000018}, !- Layer 1 + {00000000-0000-0000-0047-000000000013}; !- Layer 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000006}, !- Handle + BTAP-Ext-Door:U-1.9, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000017}, !- Layer 1 + {00000000-0000-0000-0047-000000000011}; !- Layer 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000007}, !- Handle + BTAP-Ext-FixedWindow, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000008}, !- Handle + BTAP-Ext-FixedWindow:U=0.190 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000002}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000013}, !- Handle - Availability Manager Night Cycle 4 Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000009}, !- Handle + BTAP-Ext-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000013}, !- Layer 1 + {00000000-0000-0000-0046-000000000008}, !- Layer 2 + {00000000-0000-0000-0047-000000000007}; !- Layer 3 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000014}, !- Handle - Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000010}, !- Handle + BTAP-Ext-Floor-Mass:U-0.162, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000008}, !- Layer 1 + {00000000-0000-0000-0046-000000000007}, !- Layer 2 + {00000000-0000-0000-0047-000000000003}; !- Layer 3 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000015}, !- Handle - Availability Manager Night Cycle 4 Heating Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000011}, !- Handle + BTAP-Ext-GlassDoors, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000016}, !- Handle - Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000012}, !- Handle + BTAP-Ext-GlassDoors:U=0.190 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000002}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000017}, !- Handle - Availability Manager Night Cycle 5 Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000013}, !- Handle + BTAP-Ext-OverHeadDoor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000013}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000018}, !- Handle - Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000014}, !- Handle + BTAP-Ext-OverHeadDoor:U-1.9, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000012}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000019}, !- Handle - Availability Manager Night Cycle 5 Heating Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000015}, !- Handle + BTAP-Ext-Roof-Metal, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000024}, !- Layer 1 + {00000000-0000-0000-0047-000000000013}; !- Layer 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000020}, !- Handle - Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000016}, !- Handle + BTAP-Ext-Roof-Metal:U-0.138, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000023}, !- Layer 1 + {00000000-0000-0000-0047-000000000010}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000001}, !- Handle - 1089gal NaturalGas Water Heater - 735kBtu/hr 0.805 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000510}, !- Inlet Port - {00000000-0000-0000-0020-000000000519}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000017}, !- Handle + BTAP-Ext-Skylights, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000002}, !- Handle - 1089gal NaturalGas Water Heater - 735kBtu/hr 0.805 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000520}, !- Inlet Port - {00000000-0000-0000-0020-000000000521}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000018}, !- Handle + BTAP-Ext-Skylights:U=0.190 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000002}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000003}, !- Handle - ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000025}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000019}, !- Handle + BTAP-Ext-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000006}, !- Layer 1 + {00000000-0000-0000-0046-000000000014}, !- Layer 2 + {00000000-0000-0000-0047-000000000013}, !- Layer 3 + {00000000-0000-0000-0046-000000000002}; !- Layer 4 -OS:Node, - {00000000-0000-0000-0053-000000000004}, !- Handle - ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000037}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000020}, !- Handle + BTAP-Ext-Wall-Mass:U-0.21, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000005}, !- Layer 1 + {00000000-0000-0000-0046-000000000013}, !- Layer 2 + {00000000-0000-0000-0047-000000000009}, !- Layer 3 + {00000000-0000-0000-0046-000000000001}; !- Layer 4 -OS:Node, - {00000000-0000-0000-0053-000000000005}, !- Handle - ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000027}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000021}, !- Handle + BTAP-Grnd-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000012}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000006}, !- Handle - ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000180}, !- Inlet Port - {00000000-0000-0000-0020-000000000181}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000022}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000009}, !- Layer 1 + {00000000-0000-0000-0047-000000000004}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000007}, !- Handle - ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000036}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000023}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000009}, !- Layer 1 + {00000000-0000-0000-0046-000000000016}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000008}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000232}, !- Inlet Port - {00000000-0000-0000-0020-000000000233}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000024}, !- Handle + BTAP-Grnd-Roof-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000012}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000009}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000030}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000025}, !- Handle + BTAP-Grnd-Roof-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000011}, !- Layer 1 + {00000000-0000-0000-0047-000000000006}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000010}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000260}, !- Inlet Port - {00000000-0000-0000-0020-000000000261}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000026}, !- Handle + BTAP-Grnd-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000012}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000011}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000031}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000027}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000010}, !- Layer 1 + {00000000-0000-0000-0047-000000000005}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000012}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000218}, !- Inlet Port - {00000000-0000-0000-0020-000000000219}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000028}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000010}, !- Layer 1 + {00000000-0000-0000-0046-000000000015}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000013}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000038}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000029}, !- Handle + BTAP-Int-Ceiling, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000007}, !- Layer 1 + {00000000-0000-0000-0046-000000000003}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000014}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000274}, !- Inlet Port - {00000000-0000-0000-0020-000000000275}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000030}, !- Handle + BTAP-Int-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000021}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000015}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000043}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000031}, !- Handle + BTAP-Int-Floor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000003}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000016}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000246}, !- Inlet Port - {00000000-0000-0000-0020-000000000247}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000032}, !- Handle + BTAP-Int-Partition, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000021}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000017}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000045}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000033}, !- Handle + BTAP-Int-Wall, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000019}, !- Layer 1 + {00000000-0000-0000-0046-000000000019}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000018}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000288}, !- Inlet Port - {00000000-0000-0000-0020-000000000289}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000034}, !- Handle + BTAP-Int-Window, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000019}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000024}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000035}, !- Handle + Basement Floor construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000022}, !- Layer 1 + {00000000-0000-0000-0047-000000000001}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000020}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000368}, !- Inlet Port - {00000000-0000-0000-0020-000000000369}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000036}, !- Handle + Basement Wall construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000022}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000021}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000033}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000037}, !- Handle + Floor Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000001}, !- Layer 1 + {00000000-0000-0000-0046-000000000004}, !- Layer 2 + {00000000-0000-0000-0047-000000000002}; !- Layer 3 -OS:Node, - {00000000-0000-0000-0053-000000000022}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000354}, !- Inlet Port - {00000000-0000-0000-0020-000000000355}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000038}, !- Handle + Wall Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000020}, !- Layer 1 + {00000000-0000-0000-0046-000000000020}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000023}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000035}, !- Inlet Port - ; !- Outlet Port +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method -OS:Node, - {00000000-0000-0000-0053-000000000024}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000340}, !- Inlet Port - {00000000-0000-0000-0020-000000000341}; !- Outlet Port +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method -OS:Node, - {00000000-0000-0000-0053-000000000025}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000040}, !- Inlet Port - ; !- Outlet Port +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0062-000000000024}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Node, - {00000000-0000-0000-0053-000000000026}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000326}, !- Inlet Port - {00000000-0000-0000-0020-000000000327}; !- Outlet Port +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0062-000000000025}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Node, - {00000000-0000-0000-0053-000000000027}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000042}, !- Inlet Port - ; !- Outlet Port +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000001}, !- Handle + Controller Water Coil 1, !- Name + {00000000-0000-0000-0018-000000000001}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Node, - {00000000-0000-0000-0053-000000000028}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000382}, !- Inlet Port - {00000000-0000-0000-0020-000000000383}; !- Outlet Port +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000002}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0016-000000000001}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Node, - {00000000-0000-0000-0053-000000000029}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000044}, !- Inlet Port - ; !- Outlet Port +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000003}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0018-000000000002}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Node, - {00000000-0000-0000-0053-000000000030}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000396}, !- Inlet Port - {00000000-0000-0000-0020-000000000397}; !- Outlet Port +OS:CoolingTower:SingleSpeed, + {00000000-0000-0000-0027-000000000001}, !- Handle + Cooling Tower Single Speed 1, !- Name + {00000000-0000-0000-0020-000000000131}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000132}, !- Water Outlet Node Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + 259.740244532758, !- Fan Power at Design Air Flow Rate {W} + autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} + autosize, !- Air Flow Rate in Free Convection Regime {m3/s} + autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + , !- Nominal Capacity {W} + 0, !- Free Convection Capacity {W} + 0, !- Basin Heater Capacity {W/K} + 2, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + LossFactor, !- Evaporation Loss Mode + 0.2, !- Evaporation Loss Factor {percent/K} + 0.008, !- Drift Loss Percent {percent} + ConcentrationRatio, !- Blowdown Calculation Mode + 3, !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Outdoor Air Inlet Node Name + FanCycling, !- Capacity Control + 1, !- Number of Cells + MinimalCell, !- Cell Control + 0.33, !- Cell Minimum Water Flow Rate Fraction + 2.5, !- Cell Maximum Water Flow Rate Fraction + 1, !- Sizing Factor + 0.1, !- Free Convection Air Flow Rate Sizing Factor + 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor + 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + 0.1, !- Free Convection Nominal Capacity Sizing Factor + 35, !- Design Inlet Air Dry-Bulb Temperature {C} + 24, !- Design Inlet Air Wet-Bulb Temperature {C} + 5, !- Design Approach Temperature {deltaC} + 6, !- Design Range Temperature {deltaC} + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000031}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000028}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000001}, !- Handle + Curve Biquadratic 1, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.000554364, !- Coefficient3 x**2 + -0.00755748, !- Coefficient4 y + 3.3048e-05, !- Coefficient5 y**2 + -0.000191808, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000002}, !- Handle + Curve Biquadratic 2, !- Name + 0.116936, !- Coefficient1 Constant + 0.0284933, !- Coefficient2 x + -0.000411156, !- Coefficient3 x**2 + 0.0214108, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000032}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000462}, !- Inlet Port - {00000000-0000-0000-0020-000000000463}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000003}, !- Handle + Curve Biquadratic 3, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000033}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000029}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000004}, !- Handle + Curve Biquadratic 4, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000034}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000476}, !- Inlet Port - {00000000-0000-0000-0020-000000000477}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000005}, !- Handle + Curve Biquadratic 5, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000035}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000032}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000006}, !- Handle + Curve Biquadratic 6, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000036}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000448}, !- Inlet Port - {00000000-0000-0000-0020-000000000449}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000007}, !- Handle + DXCOOL-NECB2011-REF-CAPFT, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.00055436, !- Coefficient3 x**2 + -0.0075575, !- Coefficient4 y + 3.3e-05, !- Coefficient5 y**2 + -0.0001918, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000037}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000034}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000008}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFT, !- Name + 0.1141714, !- Coefficient1 Constant + 0.02818224, !- Coefficient2 x + -0.0004199, !- Coefficient3 x**2 + 0.02141082, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000038}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000490}, !- Inlet Port - {00000000-0000-0000-0020-000000000491}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000009}, !- Handle + WaterCooled_Scroll_CAPFT_NECB2011, !- Name + 0.94418, !- Coefficient1 Constant + 0.0337102, !- Coefficient2 x + 9.75564e-05, !- Coefficient3 x**2 + -0.00322114, !- Coefficient4 y + -4.91832e-05, !- Coefficient5 y**2 + -0.000177584, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000039}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000039}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000010}, !- Handle + WaterCooled_Scroll_EIRFT_NECB2011, !- Name + 0.727393, !- Coefficient1 Constant + -0.0118922, !- Coefficient2 x + 0.000541177, !- Coefficient3 x**2 + 0.00187934, !- Coefficient4 y + 0.000473461, !- Coefficient5 y**2 + -0.000711472, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000040}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000434}, !- Inlet Port - {00000000-0000-0000-0020-000000000435}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000001}, !- Handle + BOILER-EFFFPLR-NECB2011, !- Name + 0.3831, !- Coefficient1 Constant + 2.0567, !- Coefficient2 x + -2.6469, !- Coefficient3 x**2 + 1.2148, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000041}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000041}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000002}, !- Handle + Curve Cubic 1, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000042}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000504}, !- Inlet Port - {00000000-0000-0000-0020-000000000505}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000003}, !- Handle + DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000043}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000026}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000004}, !- Handle + FURNACE-EFFPLR-NECB2011, !- Name + 0.722, !- Coefficient1 Constant + 0.8211, !- Coefficient2 x + -1.0396, !- Coefficient3 x**2 + 0.5, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000044}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000092}, !- Inlet Port - {00000000-0000-0000-0020-000000000093}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000005}, !- Handle + SWH-EFFFPLR-NECB2011, !- Name + 0.7576, !- Coefficient1 Constant + 1.0071, !- Coefficient2 x + -1.4443, !- Coefficient3 x**2 + 0.6844, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000045}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000094}, !- Inlet Port - {00000000-0000-0000-0020-000000000089}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000006}, !- Handle + VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name + -2.4176, !- Coefficient1 Constant + 9.5874, !- Coefficient2 x + -11.559, !- Coefficient3 x**2 + 5.4009, !- Coefficient4 x**3 + 0.68, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000182}, !- Inlet Port - {00000000-0000-0000-0020-000000000183}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000001}, !- Handle + Curve Quadratic 1, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000184}, !- Inlet Port - {00000000-0000-0000-0020-000000000179}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000002}, !- Handle + Curve Quadratic 2, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000356}, !- Inlet Port - {00000000-0000-0000-0020-000000000357}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000003}, !- Handle + Curve Quadratic 3, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000358}, !- Inlet Port - {00000000-0000-0000-0020-000000000353}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000004}, !- Handle + Curve Quadratic 4, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000050}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000370}, !- Inlet Port - {00000000-0000-0000-0020-000000000371}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000005}, !- Handle + DXCOOL-NECB2011-REF-CAPFFLOW, !- Name + 0.8, !- Coefficient1 Constant + 0.2, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000051}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000372}, !- Inlet Port - {00000000-0000-0000-0020-000000000367}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000006}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name + 1.1552, !- Coefficient1 Constant + -0.1808, !- Coefficient2 x + 0.0256, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000052}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000384}, !- Inlet Port - {00000000-0000-0000-0020-000000000385}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000007}, !- Handle + WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name + 0.04412, !- Coefficient1 Constant + 0.640367, !- Coefficient2 x + 0.319555, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000053}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000386}, !- Inlet Port - {00000000-0000-0000-0020-000000000381}; !- Outlet Port +OS:DefaultConstructionSet, + {00000000-0000-0000-0031-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name + {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name + {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name + {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name + {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name + {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000054}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000398}, !- Inlet Port - {00000000-0000-0000-0020-000000000399}; !- Outlet Port +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000001}, !- Handle + Space Function - undefined - Schedule Set, !- 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 + {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name -OS:Node, - {00000000-0000-0000-0053-000000000055}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000400}, !- Inlet Port - {00000000-0000-0000-0020-000000000395}; !- Outlet Port +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000002}, !- Handle + Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0062-000000000017}, !- People Activity Level Schedule Name + {00000000-0000-0000-0062-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name -OS:Node, - {00000000-0000-0000-0053-000000000056}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000436}, !- Inlet Port - {00000000-0000-0000-0020-000000000437}; !- Outlet Port +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000003}, !- Handle + Space Function Office open plan Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0062-000000000017}, !- People Activity Level Schedule Name + {00000000-0000-0000-0062-000000000013}, !- Lighting Schedule Name + {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name -OS:Node, - {00000000-0000-0000-0053-000000000057}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000438}, !- Inlet Port - {00000000-0000-0000-0020-000000000433}; !- Outlet Port +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000006}, !- Door Construction Name + {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000450}, !- Inlet Port - {00000000-0000-0000-0020-000000000451}; !- Outlet Port +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000002}, !- Handle + Default Sub Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000030}, !- 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:Node, - {00000000-0000-0000-0053-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000452}, !- Inlet Port - {00000000-0000-0000-0020-000000000447}; !- Outlet Port +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000003}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000005}, !- Door Construction Name + {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000464}, !- Inlet Port - {00000000-0000-0000-0020-000000000465}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000466}, !- Inlet Port - {00000000-0000-0000-0020-000000000461}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000002}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000478}, !- Inlet Port - {00000000-0000-0000-0020-000000000479}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000003}, !- Handle + Default Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000480}, !- Inlet Port - {00000000-0000-0000-0020-000000000475}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000004}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000492}, !- Inlet Port - {00000000-0000-0000-0020-000000000493}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000005}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000494}, !- Inlet Port - {00000000-0000-0000-0020-000000000489}; !- Outlet Port +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000001}, !- Handle + Space Function - undefined - Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name -OS:Node, - {00000000-0000-0000-0053-000000000066}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000506}, !- Inlet Port - {00000000-0000-0000-0020-000000000507}; !- Outlet Port +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000002}, !- Handle + Space Function Electrical/Mechanical room-sch-A 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:Node, - {00000000-0000-0000-0053-000000000067}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000508}, !- Inlet Port - {00000000-0000-0000-0020-000000000503}; !- Outlet Port +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000003}, !- Handle + Space Function Office open plan Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.0142188325687296, !- 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:Node, - {00000000-0000-0000-0053-000000000068}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000220}, !- Inlet Port - {00000000-0000-0000-0020-000000000221}; !- Outlet Port +OS:ElectricEquipment, + {00000000-0000-0000-0036-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name + {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000069}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000222}, !- Inlet Port - {00000000-0000-0000-0020-000000000217}; !- Outlet Port +OS:ElectricEquipment, + {00000000-0000-0000-0036-000000000002}, !- Handle + Space Function Office open plan Elec Equip, !- Name + {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000070}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000234}, !- Inlet Port - {00000000-0000-0000-0020-000000000235}; !- Outlet Port +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 1.0003634216273, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant -OS:Node, - {00000000-0000-0000-0053-000000000071}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000236}, !- Inlet Port - {00000000-0000-0000-0020-000000000231}; !- Outlet Port +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000002}, !- Handle + Space Function Office open plan Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.50272566220473, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant -OS:Node, - {00000000-0000-0000-0053-000000000072}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000248}, !- Inlet Port - {00000000-0000-0000-0020-000000000249}; !- Outlet Port +OS:Facility, + {00000000-0000-0000-0038-000000000001}; !- Handle -OS:Node, - {00000000-0000-0000-0053-000000000073}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000250}, !- Inlet Port - {00000000-0000-0000-0020-000000000245}; !- Outlet Port +OS:Fan:ConstantVolume, + {00000000-0000-0000-0039-000000000001}, !- Handle + Fan Constant Volume 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.39975, !- Fan Total Efficiency + 640, !- Pressure Rise {Pa} + AutoSize, !- Maximum Flow Rate {m3/s} + 0.615, !- Motor Efficiency + , !- Motor In Airstream Fraction + {00000000-0000-0000-0020-000000000080}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000078}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000074}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000262}, !- Inlet Port - {00000000-0000-0000-0020-000000000263}; !- Outlet Port +OS:Fan:VariableVolume, + {00000000-0000-0000-0040-000000000001}, !- Handle + Sys6 Return Fan, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000168}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000169}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000075}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000264}, !- Inlet Port - {00000000-0000-0000-0020-000000000259}; !- Outlet Port +OS:Fan:VariableVolume, + {00000000-0000-0000-0040-000000000002}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000163}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000161}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000076}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000276}, !- Inlet Port - {00000000-0000-0000-0020-000000000277}; !- Outlet Port +OS:Foundation:Kiva, + {00000000-0000-0000-0041-000000000001}, !- Handle + Bldg Kiva Foundation, !- Name + , !- Initial Indoor Air Temperature {C} + , !- Interior Horizontal Insulation Material Name + , !- Interior Horizontal Insulation Depth {m} + , !- Interior Horizontal Insulation Width {m} + , !- Interior Vertical Insulation Material Name + , !- Interior Vertical Insulation Depth {m} + , !- Exterior Horizontal Insulation Material Name + , !- Exterior Horizontal Insulation Depth {m} + , !- Exterior Horizontal Insulation Width {m} + , !- Exterior Vertical Insulation Material Name + , !- Exterior Vertical Insulation Depth {m} + 0, !- Wall Height Above Grade {m} + 0, !- Wall Depth Below Slab {m} + , !- Footing Wall Construction Name + , !- Footing Material Name + ; !- Footing Depth {m} -OS:Node, - {00000000-0000-0000-0053-000000000077}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000278}, !- Inlet Port - {00000000-0000-0000-0020-000000000273}; !- Outlet Port +OS:Foundation:Kiva:Settings, + {00000000-0000-0000-0042-000000000001}, !- Handle + , !- Soil Conductivity {W/m-K} + , !- Soil Density {kg/m3} + , !- Soil Specific Heat {J/kg-K} + , !- Ground Solar Absorptivity {dimensionless} + , !- Ground Thermal Absorptivity {dimensionless} + , !- Ground Surface Roughness {m} + , !- Far-Field Width {m} + , !- Deep-Ground Boundary Condition + , !- Deep-Ground Depth {m} + , !- Minimum Cell Dimension {m} + , !- Maximum Cell Growth Coefficient {dimensionless} + ; !- Simulation Timestep -OS:Node, - {00000000-0000-0000-0053-000000000078}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000290}, !- Inlet Port - {00000000-0000-0000-0020-000000000291}; !- Outlet Port +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0043-000000000001}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000287}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000288}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000291}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000292}, !- Exhaust Air Outlet Node + 556.536604212459, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout -OS:Node, - {00000000-0000-0000-0053-000000000079}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000292}, !- Inlet Port - {00000000-0000-0000-0020-000000000287}; !- Outlet Port +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0043-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000293}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000294}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000297}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000298}, !- Exhaust Air Outlet Node + 449.90062893127, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout -OS:Node, - {00000000-0000-0000-0053-000000000080}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000328}, !- Inlet Port - {00000000-0000-0000-0020-000000000329}; !- Outlet Port +OS:Lights, + {00000000-0000-0000-0044-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Lights, !- Name + {00000000-0000-0000-0045-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000081}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000330}, !- Inlet Port - {00000000-0000-0000-0020-000000000325}; !- Outlet Port +OS:Lights, + {00000000-0000-0000-0044-000000000002}, !- Handle + Space Function Office open plan Lights, !- Name + {00000000-0000-0000-0045-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000082}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000342}, !- Inlet Port - {00000000-0000-0000-0020-000000000343}; !- Outlet Port +OS:Lights:Definition, + {00000000-0000-0000-0045-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.60167173948557, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible -OS:Node, - {00000000-0000-0000-0053-000000000083}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000344}, !- Inlet Port - {00000000-0000-0000-0020-000000000339}; !- Outlet Port +OS:Lights:Definition, + {00000000-0000-0000-0045-000000000002}, !- Handle + Space Function Office open plan Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.69993059430563, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible -OS:Node, - {00000000-0000-0000-0053-000000000084}, !- Handle - Chilled Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000098}, !- Inlet Port - {00000000-0000-0000-0020-000000000099}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000001}, !- Handle + 1/2IN Gypsum 1, !- 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:Node, - {00000000-0000-0000-0053-000000000085}, !- Handle - Chilled Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000101}, !- Inlet Port - {00000000-0000-0000-0020-000000000102}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000002}, !- 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:Node, - {00000000-0000-0000-0053-000000000086}, !- Handle - Chilled Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000095}, !- Inlet Port - {00000000-0000-0000-0020-000000000103}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000003}, !- Handle + 100mm Normalweight concrete floor 1, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0053-000000000087}, !- Handle - Chilled Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000119}, !- Inlet Port - {00000000-0000-0000-0020-000000000097}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000004}, !- Handle + 100mm Normalweight concrete floor, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0053-000000000088}, !- Handle - Coil Cooling Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000100}, !- Inlet Port - {00000000-0000-0000-0020-000000000158}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000005}, !- Handle + 1IN Stucco 1, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000089}, !- Handle - Coil Cooling Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000164}, !- Inlet Port - {00000000-0000-0000-0020-000000000165}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000006}, !- Handle + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000090}, !- Handle - Coil Cooling Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000159}, !- Inlet Port - {00000000-0000-0000-0020-000000000160}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000007}, !- Handle + 4 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000091}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000195}, !- Inlet Port - {00000000-0000-0000-0020-000000000196}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000008}, !- Handle + 4 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000092}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000202}, !- Inlet Port - {00000000-0000-0000-0020-000000000203}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000009}, !- Handle + 6 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000093}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000197}, !- Inlet Port - {00000000-0000-0000-0020-000000000198}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000010}, !- Handle + 6 in. Normalweight Concrete Floor 2, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000094}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000303}, !- Inlet Port - {00000000-0000-0000-0020-000000000304}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000011}, !- Handle + 6 in. Normalweight Concrete Floor 3, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000095}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000310}, !- Inlet Port - {00000000-0000-0000-0020-000000000311}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000012}, !- Handle + 6 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000096}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000305}, !- Inlet Port - {00000000-0000-0000-0020-000000000306}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000013}, !- Handle + 8IN CONCRETE HW RefBldg 1, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000097}, !- Handle - Coil Cooling Water 4 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000411}, !- Inlet Port - {00000000-0000-0000-0020-000000000412}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000014}, !- Handle + 8IN CONCRETE HW RefBldg, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000098}, !- Handle - Coil Cooling Water 4 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000418}, !- Inlet Port - {00000000-0000-0000-0020-000000000419}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000015}, !- Handle + Expanded Polystyrene 1, !- Name + MediumSmooth, !- Roughness + 0.100199429303091, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0053-000000000099}, !- Handle - Coil Cooling Water 4 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000413}, !- Inlet Port - {00000000-0000-0000-0020-000000000414}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000016}, !- Handle + Expanded Polystyrene, !- Name + MediumSmooth, !- Roughness + 0.0363958681740979, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0053-000000000100}, !- Handle - Coil Heating Gas 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000079}, !- Inlet Port - {00000000-0000-0000-0020-000000000080}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000017}, !- Handle + F08 Metal surface 1, !- 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:Node, - {00000000-0000-0000-0053-000000000101}, !- Handle - Coil Heating Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000154}, !- Inlet Port - {00000000-0000-0000-0020-000000000155}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000018}, !- 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:Node, - {00000000-0000-0000-0053-000000000102}, !- Handle - Coil Heating Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000162}, !- Inlet Port - {00000000-0000-0000-0020-000000000163}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000019}, !- Handle + G01 13mm gypsum board 1, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000103}, !- Handle - Coil Heating Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000156}, !- Inlet Port - {00000000-0000-0000-0020-000000000157}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000020}, !- Handle + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000104}, !- Handle - Coil Heating Water 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000299}, !- Inlet Port - {00000000-0000-0000-0020-000000000300}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000021}, !- 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:Node, - {00000000-0000-0000-0053-000000000105}, !- Handle - Coil Heating Water 10 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000308}, !- Inlet Port - {00000000-0000-0000-0020-000000000309}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000022}, !- Handle + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1842, !- Density {kg/m3} + 912; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0053-000000000106}, !- Handle - Coil Heating Water 10 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000301}, !- Inlet Port - {00000000-0000-0000-0020-000000000302}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000023}, !- Handle + Metal Roof Surface 1, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000107}, !- Handle - Coil Heating Water 11 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000317}, !- Inlet Port - {00000000-0000-0000-0020-000000000318}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000024}, !- Handle + Metal Roof Surface, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000108}, !- Handle - Coil Heating Water 11 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000319}, !- Inlet Port - {00000000-0000-0000-0020-000000000320}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000001}, !- Handle + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000109}, !- Handle - Coil Heating Water 12 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000331}, !- Inlet Port - {00000000-0000-0000-0020-000000000332}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000002}, !- Handle + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 2.88291975297193, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000110}, !- Handle - Coil Heating Water 12 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000333}, !- Inlet Port - {00000000-0000-0000-0020-000000000334}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000003}, !- Handle + Typical Carpet Pad 1, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000111}, !- Handle - Coil Heating Water 13 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000345}, !- Inlet Port - {00000000-0000-0000-0020-000000000346}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000004}, !- Handle + Typical Carpet Pad 2, !- Name + Smooth, !- Roughness + 1.25502993703786, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000112}, !- Handle - Coil Heating Water 13 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000347}, !- Inlet Port - {00000000-0000-0000-0020-000000000348}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000005}, !- Handle + Typical Carpet Pad 3, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000113}, !- Handle - Coil Heating Water 14 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000359}, !- Inlet Port - {00000000-0000-0000-0020-000000000360}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000006}, !- Handle + Typical Carpet Pad 4, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000114}, !- Handle - Coil Heating Water 14 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000361}, !- Inlet Port - {00000000-0000-0000-0020-000000000362}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000007}, !- Handle + Typical Carpet Pad, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000115}, !- Handle - Coil Heating Water 15 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000373}, !- Inlet Port - {00000000-0000-0000-0020-000000000374}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000008}, !- Handle + Typical Insulation 1, !- Name + Smooth, !- Roughness + 5.91237683519488, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000116}, !- Handle - Coil Heating Water 15 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000375}, !- Inlet Port - {00000000-0000-0000-0020-000000000376}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000009}, !- Handle + Typical Insulation 2, !- Name + Smooth, !- Roughness + 4.49096231241638, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000117}, !- Handle - Coil Heating Water 16 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000387}, !- Inlet Port - {00000000-0000-0000-0020-000000000388}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000010}, !- Handle + Typical Insulation 3, !- Name + Smooth, !- Roughness + 7.24635914374968, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000118}, !- Handle - Coil Heating Water 16 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000389}, !- Inlet Port - {00000000-0000-0000-0020-000000000390}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000011}, !- Handle + Typical Insulation 4, !- Name + Smooth, !- Roughness + 0.526298121629161, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000119}, !- Handle - Coil Heating Water 17 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000407}, !- Inlet Port - {00000000-0000-0000-0020-000000000408}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000012}, !- Handle + Typical Insulation 5, !- Name + Smooth, !- Roughness + 0.526315789473684, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000120}, !- Handle - Coil Heating Water 17 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000416}, !- Inlet Port - {00000000-0000-0000-0020-000000000417}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000013}, !- Handle + Typical Insulation, !- Name + Smooth, !- Roughness + 0.101874652714525, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000121}, !- Handle - Coil Heating Water 17 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000409}, !- Inlet Port - {00000000-0000-0000-0020-000000000410}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000001}, !- Handle + Availability Manager Night Cycle 1 Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000122}, !- Handle - Coil Heating Water 18 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000425}, !- Inlet Port - {00000000-0000-0000-0020-000000000426}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000002}, !- Handle + Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000123}, !- Handle - Coil Heating Water 18 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000427}, !- Inlet Port - {00000000-0000-0000-0020-000000000428}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000003}, !- Handle + Availability Manager Night Cycle 1 Heating Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000124}, !- Handle - Coil Heating Water 19 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000439}, !- Inlet Port - {00000000-0000-0000-0020-000000000440}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000004}, !- Handle + Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000125}, !- Handle - Coil Heating Water 19 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000441}, !- Inlet Port - {00000000-0000-0000-0020-000000000442}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000126}, !- Handle - Coil Heating Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000171}, !- Inlet Port - {00000000-0000-0000-0020-000000000172}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000127}, !- Handle - Coil Heating Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000173}, !- Inlet Port - {00000000-0000-0000-0020-000000000174}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000128}, !- Handle - Coil Heating Water 20 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000453}, !- Inlet Port - {00000000-0000-0000-0020-000000000454}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name OS:Node, - {00000000-0000-0000-0053-000000000129}, !- Handle - Coil Heating Water 20 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000455}, !- Inlet Port - {00000000-0000-0000-0020-000000000456}; !- Outlet Port + {00000000-0000-0000-0049-000000000001}, !- Handle + 1089gal NaturalGas Water Heater - 735kBtu/hr 0.805 Therm Eff Supply Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000186}, !- Inlet Port + {00000000-0000-0000-0020-000000000195}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000130}, !- Handle - Coil Heating Water 21 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000467}, !- Inlet Port - {00000000-0000-0000-0020-000000000468}; !- Outlet Port + {00000000-0000-0000-0049-000000000002}, !- Handle + 1089gal NaturalGas Water Heater - 735kBtu/hr 0.805 Therm Eff Supply Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000196}, !- Inlet Port + {00000000-0000-0000-0020-000000000197}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000131}, !- Handle - Coil Heating Water 21 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000469}, !- Inlet Port - {00000000-0000-0000-0020-000000000470}; !- Outlet Port + {00000000-0000-0000-0049-000000000003}, !- Handle + ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000025}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000132}, !- Handle - Coil Heating Water 22 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000481}, !- Inlet Port - {00000000-0000-0000-0020-000000000482}; !- Outlet Port + {00000000-0000-0000-0049-000000000004}, !- Handle + ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000037}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000133}, !- Handle - Coil Heating Water 22 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000483}, !- Inlet Port - {00000000-0000-0000-0020-000000000484}; !- Outlet Port + {00000000-0000-0000-0049-000000000005}, !- Handle + ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000027}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000134}, !- Handle - Coil Heating Water 23 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000495}, !- Inlet Port - {00000000-0000-0000-0020-000000000496}; !- Outlet Port + {00000000-0000-0000-0049-000000000006}, !- Handle + ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000180}, !- Inlet Port + {00000000-0000-0000-0020-000000000181}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000135}, !- Handle - Coil Heating Water 23 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000497}, !- Inlet Port - {00000000-0000-0000-0020-000000000498}; !- Outlet Port + {00000000-0000-0000-0049-000000000007}, !- Handle + ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000036}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000136}, !- Handle - Coil Heating Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000191}, !- Inlet Port - {00000000-0000-0000-0020-000000000192}; !- Outlet Port + {00000000-0000-0000-0049-000000000008}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000030}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000137}, !- Handle - Coil Heating Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000200}, !- Inlet Port - {00000000-0000-0000-0020-000000000201}; !- Outlet Port + {00000000-0000-0000-0049-000000000009}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000031}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000138}, !- Handle - Coil Heating Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000193}, !- Inlet Port - {00000000-0000-0000-0020-000000000194}; !- Outlet Port + {00000000-0000-0000-0049-000000000010}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000038}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000139}, !- Handle - Coil Heating Water 4 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000209}, !- Inlet Port - {00000000-0000-0000-0020-000000000210}; !- Outlet Port + {00000000-0000-0000-0049-000000000011}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000043}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000140}, !- Handle - Coil Heating Water 4 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000211}, !- Inlet Port - {00000000-0000-0000-0020-000000000212}; !- Outlet Port + {00000000-0000-0000-0049-000000000012}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000045}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000141}, !- Handle - Coil Heating Water 5 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000223}, !- Inlet Port - {00000000-0000-0000-0020-000000000224}; !- Outlet Port + {00000000-0000-0000-0049-000000000013}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000024}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000142}, !- Handle - Coil Heating Water 5 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000225}, !- Inlet Port - {00000000-0000-0000-0020-000000000226}; !- Outlet Port + {00000000-0000-0000-0049-000000000014}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000033}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000143}, !- Handle - Coil Heating Water 6 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000237}, !- Inlet Port - {00000000-0000-0000-0020-000000000238}; !- Outlet Port + {00000000-0000-0000-0049-000000000015}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000035}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000144}, !- Handle - Coil Heating Water 6 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000239}, !- Inlet Port - {00000000-0000-0000-0020-000000000240}; !- Outlet Port + {00000000-0000-0000-0049-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000040}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000145}, !- Handle - Coil Heating Water 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000251}, !- Inlet Port - {00000000-0000-0000-0020-000000000252}; !- Outlet Port + {00000000-0000-0000-0049-000000000017}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000042}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000146}, !- Handle - Coil Heating Water 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000253}, !- Inlet Port - {00000000-0000-0000-0020-000000000254}; !- Outlet Port + {00000000-0000-0000-0049-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000044}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000147}, !- Handle - Coil Heating Water 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000265}, !- Inlet Port - {00000000-0000-0000-0020-000000000266}; !- Outlet Port + {00000000-0000-0000-0049-000000000019}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000028}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000148}, !- Handle - Coil Heating Water 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000267}, !- Inlet Port - {00000000-0000-0000-0020-000000000268}; !- Outlet Port + {00000000-0000-0000-0049-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000029}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000149}, !- Handle - Coil Heating Water 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000279}, !- Inlet Port - {00000000-0000-0000-0020-000000000280}; !- Outlet Port + {00000000-0000-0000-0049-000000000021}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000032}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000150}, !- Handle - Coil Heating Water 9 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000281}, !- Inlet Port - {00000000-0000-0000-0020-000000000282}; !- Outlet Port + {00000000-0000-0000-0049-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000034}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000151}, !- Handle - Coil Heating Water Baseboard 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000052}, !- Inlet Port - {00000000-0000-0000-0020-000000000086}; !- Outlet Port + {00000000-0000-0000-0049-000000000023}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000039}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000152}, !- Handle - Coil Heating Water Baseboard 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000087}, !- Inlet Port - {00000000-0000-0000-0020-000000000088}; !- Outlet Port + {00000000-0000-0000-0049-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000041}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000153}, !- Handle - Coil Heating Water Baseboard 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000335}, !- Inlet Port - {00000000-0000-0000-0020-000000000336}; !- Outlet Port + {00000000-0000-0000-0049-000000000025}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000026}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000154}, !- Handle - Coil Heating Water Baseboard 10 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000337}, !- Inlet Port - {00000000-0000-0000-0020-000000000338}; !- Outlet Port + {00000000-0000-0000-0049-000000000026}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000092}, !- Inlet Port + {00000000-0000-0000-0020-000000000093}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000155}, !- Handle - Coil Heating Water Baseboard 11 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000349}, !- Inlet Port - {00000000-0000-0000-0020-000000000350}; !- Outlet Port + {00000000-0000-0000-0049-000000000027}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000094}, !- Inlet Port + {00000000-0000-0000-0020-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000156}, !- Handle - Coil Heating Water Baseboard 11 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000351}, !- Inlet Port - {00000000-0000-0000-0020-000000000352}; !- Outlet Port + {00000000-0000-0000-0049-000000000028}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000182}, !- Inlet Port + {00000000-0000-0000-0020-000000000183}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000157}, !- Handle - Coil Heating Water Baseboard 12 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000363}, !- Inlet Port - {00000000-0000-0000-0020-000000000364}; !- Outlet Port + {00000000-0000-0000-0049-000000000029}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000184}, !- Inlet Port + {00000000-0000-0000-0020-000000000179}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000158}, !- Handle - Coil Heating Water Baseboard 12 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000365}, !- Inlet Port - {00000000-0000-0000-0020-000000000366}; !- Outlet Port + {00000000-0000-0000-0049-000000000030}, !- Handle + Chilled Water Loop Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000098}, !- Inlet Port + {00000000-0000-0000-0020-000000000099}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000159}, !- Handle - Coil Heating Water Baseboard 13 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000377}, !- Inlet Port - {00000000-0000-0000-0020-000000000378}; !- Outlet Port + {00000000-0000-0000-0049-000000000031}, !- Handle + Chilled Water Loop Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000101}, !- Inlet Port + {00000000-0000-0000-0020-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000160}, !- Handle - Coil Heating Water Baseboard 13 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000379}, !- Inlet Port - {00000000-0000-0000-0020-000000000380}; !- Outlet Port + {00000000-0000-0000-0049-000000000032}, !- Handle + Chilled Water Loop Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000095}, !- Inlet Port + {00000000-0000-0000-0020-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000161}, !- Handle - Coil Heating Water Baseboard 14 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000391}, !- Inlet Port - {00000000-0000-0000-0020-000000000392}; !- Outlet Port + {00000000-0000-0000-0049-000000000033}, !- Handle + Chilled Water Loop Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000119}, !- Inlet Port + {00000000-0000-0000-0020-000000000097}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000162}, !- Handle - Coil Heating Water Baseboard 14 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000393}, !- Inlet Port - {00000000-0000-0000-0020-000000000394}; !- Outlet Port + {00000000-0000-0000-0049-000000000034}, !- Handle + Coil Cooling Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000100}, !- Inlet Port + {00000000-0000-0000-0020-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000163}, !- Handle - Coil Heating Water Baseboard 15 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000429}, !- Inlet Port - {00000000-0000-0000-0020-000000000430}; !- Outlet Port + {00000000-0000-0000-0049-000000000035}, !- Handle + Coil Cooling Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000164}, !- Inlet Port + {00000000-0000-0000-0020-000000000165}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000164}, !- Handle - Coil Heating Water Baseboard 15 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000431}, !- Inlet Port - {00000000-0000-0000-0020-000000000432}; !- Outlet Port + {00000000-0000-0000-0049-000000000036}, !- Handle + Coil Cooling Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000159}, !- Inlet Port + {00000000-0000-0000-0020-000000000160}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000165}, !- Handle - Coil Heating Water Baseboard 16 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000443}, !- Inlet Port - {00000000-0000-0000-0020-000000000444}; !- Outlet Port + {00000000-0000-0000-0049-000000000037}, !- Handle + Coil Heating Gas 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000079}, !- Inlet Port + {00000000-0000-0000-0020-000000000080}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000166}, !- Handle - Coil Heating Water Baseboard 16 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000445}, !- Inlet Port - {00000000-0000-0000-0020-000000000446}; !- Outlet Port + {00000000-0000-0000-0049-000000000038}, !- Handle + Coil Heating Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000154}, !- Inlet Port + {00000000-0000-0000-0020-000000000155}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000167}, !- Handle - Coil Heating Water Baseboard 17 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000457}, !- Inlet Port - {00000000-0000-0000-0020-000000000458}; !- Outlet Port + {00000000-0000-0000-0049-000000000039}, !- Handle + Coil Heating Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000162}, !- Inlet Port + {00000000-0000-0000-0020-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000168}, !- Handle - Coil Heating Water Baseboard 17 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000459}, !- Inlet Port - {00000000-0000-0000-0020-000000000460}; !- Outlet Port + {00000000-0000-0000-0049-000000000040}, !- Handle + Coil Heating Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000156}, !- Inlet Port + {00000000-0000-0000-0020-000000000157}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000169}, !- Handle - Coil Heating Water Baseboard 18 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000471}, !- Inlet Port - {00000000-0000-0000-0020-000000000472}; !- Outlet Port + {00000000-0000-0000-0049-000000000041}, !- Handle + Coil Heating Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000171}, !- Inlet Port + {00000000-0000-0000-0020-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000170}, !- Handle - Coil Heating Water Baseboard 18 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000473}, !- Inlet Port - {00000000-0000-0000-0020-000000000474}; !- Outlet Port + {00000000-0000-0000-0049-000000000042}, !- Handle + Coil Heating Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000173}, !- Inlet Port + {00000000-0000-0000-0020-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000171}, !- Handle - Coil Heating Water Baseboard 19 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000485}, !- Inlet Port - {00000000-0000-0000-0020-000000000486}; !- Outlet Port + {00000000-0000-0000-0049-000000000043}, !- Handle + Coil Heating Water Baseboard 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000052}, !- Inlet Port + {00000000-0000-0000-0020-000000000086}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000172}, !- Handle - Coil Heating Water Baseboard 19 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000487}, !- Inlet Port - {00000000-0000-0000-0020-000000000488}; !- Outlet Port + {00000000-0000-0000-0049-000000000044}, !- Handle + Coil Heating Water Baseboard 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000087}, !- Inlet Port + {00000000-0000-0000-0020-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000173}, !- Handle + {00000000-0000-0000-0049-000000000045}, !- Handle Coil Heating Water Baseboard 2 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000175}, !- Inlet Port {00000000-0000-0000-0020-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000174}, !- Handle + {00000000-0000-0000-0049-000000000046}, !- Handle Coil Heating Water Baseboard 2 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000177}, !- Inlet Port {00000000-0000-0000-0020-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000175}, !- Handle - Coil Heating Water Baseboard 20 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000499}, !- Inlet Port - {00000000-0000-0000-0020-000000000500}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000176}, !- Handle - Coil Heating Water Baseboard 20 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000501}, !- Inlet Port - {00000000-0000-0000-0020-000000000502}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000177}, !- Handle - Coil Heating Water Baseboard 3 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000213}, !- Inlet Port - {00000000-0000-0000-0020-000000000214}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000178}, !- Handle - Coil Heating Water Baseboard 3 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000215}, !- Inlet Port - {00000000-0000-0000-0020-000000000216}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000179}, !- Handle - Coil Heating Water Baseboard 4 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000227}, !- Inlet Port - {00000000-0000-0000-0020-000000000228}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000180}, !- Handle - Coil Heating Water Baseboard 4 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000229}, !- Inlet Port - {00000000-0000-0000-0020-000000000230}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000181}, !- Handle - Coil Heating Water Baseboard 5 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000241}, !- Inlet Port - {00000000-0000-0000-0020-000000000242}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000182}, !- Handle - Coil Heating Water Baseboard 5 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000243}, !- Inlet Port - {00000000-0000-0000-0020-000000000244}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000183}, !- Handle - Coil Heating Water Baseboard 6 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000255}, !- Inlet Port - {00000000-0000-0000-0020-000000000256}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000184}, !- Handle - Coil Heating Water Baseboard 6 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000257}, !- Inlet Port - {00000000-0000-0000-0020-000000000258}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000185}, !- Handle - Coil Heating Water Baseboard 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000269}, !- Inlet Port - {00000000-0000-0000-0020-000000000270}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000186}, !- Handle - Coil Heating Water Baseboard 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000271}, !- Inlet Port - {00000000-0000-0000-0020-000000000272}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000187}, !- Handle - Coil Heating Water Baseboard 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000283}, !- Inlet Port - {00000000-0000-0000-0020-000000000284}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000188}, !- Handle - Coil Heating Water Baseboard 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000285}, !- Inlet Port - {00000000-0000-0000-0020-000000000286}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000189}, !- Handle - Coil Heating Water Baseboard 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000321}, !- Inlet Port - {00000000-0000-0000-0020-000000000322}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000190}, !- Handle - Coil Heating Water Baseboard 9 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000323}, !- Inlet Port - {00000000-0000-0000-0020-000000000324}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000191}, !- Handle - CoilCoolingDXSingleSpeed_dx 110kBtu/hr 9.26EER Outlet Air Node, !- Name + {00000000-0000-0000-0049-000000000047}, !- Handle + CoilCoolingDXSingleSpeed_dx 111kBtu/hr 9.26EER Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000081}, !- Inlet Port {00000000-0000-0000-0020-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000192}, !- Handle + {00000000-0000-0000-0049-000000000048}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000123}, !- Inlet Port {00000000-0000-0000-0020-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000193}, !- Handle + {00000000-0000-0000-0049-000000000049}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000126}, !- Inlet Port {00000000-0000-0000-0020-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000194}, !- Handle + {00000000-0000-0000-0049-000000000050}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000120}, !- Inlet Port {00000000-0000-0000-0020-000000000128}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000195}, !- Handle + {00000000-0000-0000-0049-000000000051}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000140}, !- Inlet Port {00000000-0000-0000-0020-000000000122}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000196}, !- Handle + {00000000-0000-0000-0049-000000000052}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000121}, !- Inlet Port {00000000-0000-0000-0020-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000197}, !- Handle + {00000000-0000-0000-0049-000000000053}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000132}, !- Inlet Port {00000000-0000-0000-0020-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000198}, !- Handle + {00000000-0000-0000-0049-000000000054}, !- Handle Core_bottom WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000535}, !- Inlet Port - {00000000-0000-0000-0020-000000000536}; !- Outlet Port + {00000000-0000-0000-0020-000000000211}, !- Inlet Port + {00000000-0000-0000-0020-000000000212}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000199}, !- Handle + {00000000-0000-0000-0049-000000000055}, !- Handle Core_bottom WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000537}, !- Inlet Port - {00000000-0000-0000-0020-000000000538}; !- Outlet Port + {00000000-0000-0000-0020-000000000213}, !- Inlet Port + {00000000-0000-0000-0020-000000000214}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000200}, !- Handle + {00000000-0000-0000-0049-000000000056}, !- Handle Core_mid WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000539}, !- Inlet Port - {00000000-0000-0000-0020-000000000540}; !- Outlet Port + {00000000-0000-0000-0020-000000000215}, !- Inlet Port + {00000000-0000-0000-0020-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000201}, !- Handle + {00000000-0000-0000-0049-000000000057}, !- Handle Core_mid WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000541}, !- Inlet Port - {00000000-0000-0000-0020-000000000542}; !- Outlet Port + {00000000-0000-0000-0020-000000000217}, !- Inlet Port + {00000000-0000-0000-0020-000000000218}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000202}, !- Handle + {00000000-0000-0000-0049-000000000058}, !- Handle Core_top WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000543}, !- Inlet Port - {00000000-0000-0000-0020-000000000544}; !- Outlet Port + {00000000-0000-0000-0020-000000000219}, !- Inlet Port + {00000000-0000-0000-0020-000000000220}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000203}, !- Handle + {00000000-0000-0000-0049-000000000059}, !- Handle Core_top WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000545}, !- Inlet Port - {00000000-0000-0000-0020-000000000546}; !- Outlet Port + {00000000-0000-0000-0020-000000000221}, !- Inlet Port + {00000000-0000-0000-0020-000000000222}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000204}, !- Handle + {00000000-0000-0000-0049-000000000060}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000547}, !- Inlet Port - {00000000-0000-0000-0020-000000000548}; !- Outlet Port + {00000000-0000-0000-0020-000000000223}, !- Inlet Port + {00000000-0000-0000-0020-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000205}, !- Handle + {00000000-0000-0000-0049-000000000061}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000549}, !- Inlet Port - {00000000-0000-0000-0020-000000000550}; !- Outlet Port + {00000000-0000-0000-0020-000000000225}, !- Inlet Port + {00000000-0000-0000-0020-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000206}, !- Handle + {00000000-0000-0000-0049-000000000062}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000551}, !- Inlet Port - {00000000-0000-0000-0020-000000000552}; !- Outlet Port + {00000000-0000-0000-0020-000000000227}, !- Inlet Port + {00000000-0000-0000-0020-000000000228}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000207}, !- Handle + {00000000-0000-0000-0049-000000000063}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000553}, !- Inlet Port - {00000000-0000-0000-0020-000000000554}; !- Outlet Port + {00000000-0000-0000-0020-000000000229}, !- Inlet Port + {00000000-0000-0000-0020-000000000230}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000208}, !- Handle + {00000000-0000-0000-0049-000000000064}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000555}, !- Inlet Port - {00000000-0000-0000-0020-000000000556}; !- Outlet Port + {00000000-0000-0000-0020-000000000231}, !- Inlet Port + {00000000-0000-0000-0020-000000000232}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000209}, !- Handle + {00000000-0000-0000-0049-000000000065}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000557}, !- Inlet Port - {00000000-0000-0000-0020-000000000558}; !- Outlet Port + {00000000-0000-0000-0020-000000000233}, !- Inlet Port + {00000000-0000-0000-0020-000000000234}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000210}, !- Handle + {00000000-0000-0000-0049-000000000066}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000559}, !- Inlet Port - {00000000-0000-0000-0020-000000000560}; !- Outlet Port + {00000000-0000-0000-0020-000000000235}, !- Inlet Port + {00000000-0000-0000-0020-000000000236}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000211}, !- Handle + {00000000-0000-0000-0049-000000000067}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000561}, !- Inlet Port - {00000000-0000-0000-0020-000000000562}; !- Outlet Port + {00000000-0000-0000-0020-000000000237}, !- Inlet Port + {00000000-0000-0000-0020-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000212}, !- Handle + {00000000-0000-0000-0049-000000000068}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000050}, !- Inlet Port {00000000-0000-0000-0020-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000213}, !- Handle + {00000000-0000-0000-0049-000000000069}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000053}, !- Inlet Port {00000000-0000-0000-0020-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000214}, !- Handle + {00000000-0000-0000-0049-000000000070}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000047}, !- Inlet Port {00000000-0000-0000-0020-000000000055}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000215}, !- Handle + {00000000-0000-0000-0049-000000000071}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000071}, !- Inlet Port {00000000-0000-0000-0020-000000000049}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000216}, !- Handle + {00000000-0000-0000-0049-000000000072}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000517}, !- Inlet Port - {00000000-0000-0000-0020-000000000518}; !- Outlet Port + {00000000-0000-0000-0020-000000000193}, !- Inlet Port + {00000000-0000-0000-0020-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000217}, !- Handle + {00000000-0000-0000-0049-000000000073}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000512}, !- Inlet Port - {00000000-0000-0000-0020-000000000513}; !- Outlet Port + {00000000-0000-0000-0020-000000000188}, !- Inlet Port + {00000000-0000-0000-0020-000000000189}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000218}, !- Handle + {00000000-0000-0000-0049-000000000074}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000534}, !- Inlet Port - {00000000-0000-0000-0020-000000000515}; !- Outlet Port + {00000000-0000-0000-0020-000000000210}, !- Inlet Port + {00000000-0000-0000-0020-000000000191}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000219}, !- Handle + {00000000-0000-0000-0049-000000000075}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000509}, !- Inlet Port - {00000000-0000-0000-0020-000000000516}; !- Outlet Port + {00000000-0000-0000-0020-000000000185}, !- Inlet Port + {00000000-0000-0000-0020-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000220}, !- Handle + {00000000-0000-0000-0049-000000000076}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000531}, !- Inlet Port - {00000000-0000-0000-0020-000000000511}; !- Outlet Port + {00000000-0000-0000-0020-000000000207}, !- Inlet Port + {00000000-0000-0000-0020-000000000187}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000221}, !- Handle + {00000000-0000-0000-0049-000000000077}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000563}, !- Inlet Port - {00000000-0000-0000-0020-000000000564}; !- Outlet Port + {00000000-0000-0000-0020-000000000239}, !- Inlet Port + {00000000-0000-0000-0020-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000222}, !- Handle + {00000000-0000-0000-0049-000000000078}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000565}, !- Inlet Port - {00000000-0000-0000-0020-000000000566}; !- Outlet Port + {00000000-0000-0000-0020-000000000241}, !- Inlet Port + {00000000-0000-0000-0020-000000000242}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000223}, !- Handle + {00000000-0000-0000-0049-000000000079}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000567}, !- Inlet Port - {00000000-0000-0000-0020-000000000568}; !- Outlet Port + {00000000-0000-0000-0020-000000000243}, !- Inlet Port + {00000000-0000-0000-0020-000000000244}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000224}, !- Handle + {00000000-0000-0000-0049-000000000080}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000569}, !- Inlet Port - {00000000-0000-0000-0020-000000000570}; !- Outlet Port + {00000000-0000-0000-0020-000000000245}, !- Inlet Port + {00000000-0000-0000-0020-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000225}, !- Handle + {00000000-0000-0000-0049-000000000081}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000571}, !- Inlet Port - {00000000-0000-0000-0020-000000000572}; !- Outlet Port + {00000000-0000-0000-0020-000000000247}, !- Inlet Port + {00000000-0000-0000-0020-000000000248}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000226}, !- Handle + {00000000-0000-0000-0049-000000000082}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000573}, !- Inlet Port - {00000000-0000-0000-0020-000000000574}; !- Outlet Port + {00000000-0000-0000-0020-000000000249}, !- Inlet Port + {00000000-0000-0000-0020-000000000250}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000227}, !- Handle + {00000000-0000-0000-0049-000000000083}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000575}, !- Inlet Port - {00000000-0000-0000-0020-000000000576}; !- Outlet Port + {00000000-0000-0000-0020-000000000251}, !- Inlet Port + {00000000-0000-0000-0020-000000000252}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000228}, !- Handle + {00000000-0000-0000-0049-000000000084}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000577}, !- Inlet Port - {00000000-0000-0000-0020-000000000578}; !- Outlet Port + {00000000-0000-0000-0020-000000000253}, !- Inlet Port + {00000000-0000-0000-0020-000000000254}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000229}, !- Handle + {00000000-0000-0000-0049-000000000085}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000579}, !- Inlet Port - {00000000-0000-0000-0020-000000000580}; !- Outlet Port + {00000000-0000-0000-0020-000000000255}, !- Inlet Port + {00000000-0000-0000-0020-000000000256}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000230}, !- Handle + {00000000-0000-0000-0049-000000000086}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000581}, !- Inlet Port - {00000000-0000-0000-0020-000000000582}; !- Outlet Port + {00000000-0000-0000-0020-000000000257}, !- Inlet Port + {00000000-0000-0000-0020-000000000258}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000231}, !- Handle + {00000000-0000-0000-0049-000000000087}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000583}, !- Inlet Port - {00000000-0000-0000-0020-000000000584}; !- Outlet Port + {00000000-0000-0000-0020-000000000259}, !- Inlet Port + {00000000-0000-0000-0020-000000000260}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000232}, !- Handle + {00000000-0000-0000-0049-000000000088}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000585}, !- Inlet Port - {00000000-0000-0000-0020-000000000586}; !- Outlet Port + {00000000-0000-0000-0020-000000000261}, !- Inlet Port + {00000000-0000-0000-0020-000000000262}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000233}, !- Handle + {00000000-0000-0000-0049-000000000089}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000587}, !- Inlet Port - {00000000-0000-0000-0020-000000000588}; !- Outlet Port + {00000000-0000-0000-0020-000000000263}, !- Inlet Port + {00000000-0000-0000-0020-000000000264}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000234}, !- Handle + {00000000-0000-0000-0049-000000000090}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000589}, !- Inlet Port - {00000000-0000-0000-0020-000000000590}; !- Outlet Port + {00000000-0000-0000-0020-000000000265}, !- Inlet Port + {00000000-0000-0000-0020-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000235}, !- Handle + {00000000-0000-0000-0049-000000000091}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000591}, !- Inlet Port - {00000000-0000-0000-0020-000000000592}; !- Outlet Port + {00000000-0000-0000-0020-000000000267}, !- Inlet Port + {00000000-0000-0000-0020-000000000268}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000236}, !- Handle + {00000000-0000-0000-0049-000000000092}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000593}, !- Inlet Port - {00000000-0000-0000-0020-000000000594}; !- Outlet Port + {00000000-0000-0000-0020-000000000269}, !- Inlet Port + {00000000-0000-0000-0020-000000000270}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000237}, !- Handle + {00000000-0000-0000-0049-000000000093}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000595}, !- Inlet Port - {00000000-0000-0000-0020-000000000596}; !- Outlet Port + {00000000-0000-0000-0020-000000000271}, !- Inlet Port + {00000000-0000-0000-0020-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000238}, !- Handle + {00000000-0000-0000-0049-000000000094}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000597}, !- Inlet Port - {00000000-0000-0000-0020-000000000598}; !- Outlet Port + {00000000-0000-0000-0020-000000000273}, !- Inlet Port + {00000000-0000-0000-0020-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000239}, !- Handle + {00000000-0000-0000-0049-000000000095}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000599}, !- Inlet Port - {00000000-0000-0000-0020-000000000600}; !- Outlet Port + {00000000-0000-0000-0020-000000000275}, !- Inlet Port + {00000000-0000-0000-0020-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000240}, !- Handle + {00000000-0000-0000-0049-000000000096}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000601}, !- Inlet Port - {00000000-0000-0000-0020-000000000602}; !- Outlet Port + {00000000-0000-0000-0020-000000000277}, !- Inlet Port + {00000000-0000-0000-0020-000000000278}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000241}, !- Handle + {00000000-0000-0000-0049-000000000097}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000603}, !- Inlet Port - {00000000-0000-0000-0020-000000000604}; !- Outlet Port + {00000000-0000-0000-0020-000000000279}, !- Inlet Port + {00000000-0000-0000-0020-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000242}, !- Handle + {00000000-0000-0000-0049-000000000098}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000605}, !- Inlet Port - {00000000-0000-0000-0020-000000000606}; !- Outlet Port + {00000000-0000-0000-0020-000000000281}, !- Inlet Port + {00000000-0000-0000-0020-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000243}, !- Handle + {00000000-0000-0000-0049-000000000099}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000607}, !- Inlet Port - {00000000-0000-0000-0020-000000000608}; !- Outlet Port + {00000000-0000-0000-0020-000000000283}, !- Inlet Port + {00000000-0000-0000-0020-000000000284}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000244}, !- Handle + {00000000-0000-0000-0049-000000000100}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000609}, !- Inlet Port - {00000000-0000-0000-0020-000000000610}; !- Outlet Port + {00000000-0000-0000-0020-000000000285}, !- Inlet Port + {00000000-0000-0000-0020-000000000286}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000245}, !- Handle + {00000000-0000-0000-0049-000000000101}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000065}, !- Inlet Port {00000000-0000-0000-0020-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000246}, !- Handle + {00000000-0000-0000-0049-000000000102}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000067}, !- Inlet Port {00000000-0000-0000-0020-000000000068}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000247}, !- Handle + {00000000-0000-0000-0049-000000000103}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000532}, !- Inlet Port - {00000000-0000-0000-0020-000000000533}; !- Outlet Port + {00000000-0000-0000-0020-000000000208}, !- Inlet Port + {00000000-0000-0000-0020-000000000209}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000248}, !- Handle + {00000000-0000-0000-0049-000000000104}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000069}, !- Inlet Port {00000000-0000-0000-0020-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000249}, !- Handle + {00000000-0000-0000-0049-000000000105}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000113}, !- Inlet Port {00000000-0000-0000-0020-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000250}, !- Handle + {00000000-0000-0000-0049-000000000106}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000115}, !- Inlet Port {00000000-0000-0000-0020-000000000116}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000251}, !- Handle + {00000000-0000-0000-0049-000000000107}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000117}, !- Inlet Port {00000000-0000-0000-0020-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000252}, !- Handle + {00000000-0000-0000-0049-000000000108}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000134}, !- Inlet Port {00000000-0000-0000-0020-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000253}, !- Handle + {00000000-0000-0000-0049-000000000109}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000136}, !- Inlet Port {00000000-0000-0000-0020-000000000137}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000254}, !- Handle + {00000000-0000-0000-0049-000000000110}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000138}, !- Inlet Port {00000000-0000-0000-0020-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000255}, !- Handle + {00000000-0000-0000-0049-000000000111}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000522}, !- Inlet Port - {00000000-0000-0000-0020-000000000523}; !- Outlet Port + {00000000-0000-0000-0020-000000000198}, !- Inlet Port + {00000000-0000-0000-0020-000000000199}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000256}, !- Handle + {00000000-0000-0000-0049-000000000112}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000524}, !- Inlet Port - {00000000-0000-0000-0020-000000000525}; !- Outlet Port + {00000000-0000-0000-0020-000000000200}, !- Inlet Port + {00000000-0000-0000-0020-000000000201}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000257}, !- Handle + {00000000-0000-0000-0049-000000000113}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000514}, !- Inlet Port - {00000000-0000-0000-0020-000000000526}; !- Outlet Port + {00000000-0000-0000-0020-000000000190}, !- Inlet Port + {00000000-0000-0000-0020-000000000202}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000258}, !- Handle + {00000000-0000-0000-0049-000000000114}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000527}, !- Inlet Port - {00000000-0000-0000-0020-000000000528}; !- Outlet Port + {00000000-0000-0000-0020-000000000203}, !- Inlet Port + {00000000-0000-0000-0020-000000000204}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000259}, !- Handle + {00000000-0000-0000-0049-000000000115}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000529}, !- Inlet Port - {00000000-0000-0000-0020-000000000530}; !- Outlet Port + {00000000-0000-0000-0020-000000000205}, !- Inlet Port + {00000000-0000-0000-0020-000000000206}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000260}, !- Handle - Primary Boiler 10431kBtu/hr 0.833 Combustion Eff Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000116}, !- Handle + Primary Boiler 319kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000048}, !- Inlet Port {00000000-0000-0000-0020-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000261}, !- Handle - Primary Boiler 10431kBtu/hr 0.833 Combustion Eff Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000117}, !- Handle + Primary Boiler 319kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000059}, !- Inlet Port {00000000-0000-0000-0020-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000262}, !- Handle - Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000118}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000125}, !- Inlet Port {00000000-0000-0000-0020-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000263}, !- Handle - Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000119}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000142}, !- Inlet Port {00000000-0000-0000-0020-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000264}, !- Handle - Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000120}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000096}, !- Inlet Port {00000000-0000-0000-0020-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000265}, !- Handle - Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000121}, !- Handle + Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000107}, !- Inlet Port {00000000-0000-0000-0020-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000266}, !- Handle + {00000000-0000-0000-0049-000000000122}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000056}, !- Inlet Port {00000000-0000-0000-0020-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000267}, !- Handle + {00000000-0000-0000-0049-000000000123}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000104}, !- Inlet Port {00000000-0000-0000-0020-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000268}, !- Handle + {00000000-0000-0000-0049-000000000124}, !- Handle Pump Variable Speed 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000129}, !- Inlet Port {00000000-0000-0000-0020-000000000130}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000269}, !- Handle + {00000000-0000-0000-0049-000000000125}, !- Handle Secondary Boiler 0kBtu/hr 0.85 AFUE Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000061}, !- Inlet Port {00000000-0000-0000-0020-000000000062}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000270}, !- Handle + {00000000-0000-0000-0049-000000000126}, !- Handle Secondary Boiler 0kBtu/hr 0.85 AFUE Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000063}, !- Inlet Port {00000000-0000-0000-0020-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000271}, !- Handle + {00000000-0000-0000-0049-000000000127}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000144}, !- Inlet Port {00000000-0000-0000-0020-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000272}, !- Handle + {00000000-0000-0000-0049-000000000128}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000146}, !- Inlet Port {00000000-0000-0000-0020-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000273}, !- Handle + {00000000-0000-0000-0049-000000000129}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000109}, !- Inlet Port {00000000-0000-0000-0020-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000274}, !- Handle + {00000000-0000-0000-0049-000000000130}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000111}, !- Inlet Port {00000000-0000-0000-0020-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000275}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000207}, !- Inlet Port - {00000000-0000-0000-0020-000000000208}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000276}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000315}, !- Inlet Port - {00000000-0000-0000-0020-000000000316}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000277}, !- Handle - Sys6 Return Fan 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000423}, !- Inlet Port - {00000000-0000-0000-0020-000000000424}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000278}, !- Handle + {00000000-0000-0000-0049-000000000131}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000169}, !- Inlet Port {00000000-0000-0000-0020-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000279}, !- Handle + {00000000-0000-0000-0049-000000000132}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0020-000000000090}, !- Inlet Port {00000000-0000-0000-0020-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000280}, !- Handle + {00000000-0000-0000-0049-000000000133}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0020-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000281}, !- Handle + {00000000-0000-0000-0049-000000000134}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000074}, !- Inlet Port {00000000-0000-0000-0020-000000000076}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000282}, !- Handle + {00000000-0000-0000-0049-000000000135}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000077}, !- Inlet Port {00000000-0000-0000-0020-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000283}, !- Handle + {00000000-0000-0000-0049-000000000136}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000084}, !- Inlet Port {00000000-0000-0000-0020-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000284}, !- Handle + {00000000-0000-0000-0049-000000000137}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0020-000000000611}; !- Outlet Port + {00000000-0000-0000-0020-000000000287}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000285}, !- Handle + {00000000-0000-0000-0049-000000000138}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000616}, !- Inlet Port + {00000000-0000-0000-0020-000000000292}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000286}, !- Handle + {00000000-0000-0000-0049-000000000139}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000072}, !- Inlet Port {00000000-0000-0000-0020-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000287}, !- Handle + {00000000-0000-0000-0049-000000000140}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000078}, !- Inlet Port {00000000-0000-0000-0020-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000288}, !- Handle + {00000000-0000-0000-0049-000000000141}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000612}, !- Inlet Port - {00000000-0000-0000-0020-000000000613}; !- Outlet Port + {00000000-0000-0000-0020-000000000288}, !- Inlet Port + {00000000-0000-0000-0020-000000000289}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000289}, !- Handle + {00000000-0000-0000-0049-000000000142}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000614}, !- Inlet Port - {00000000-0000-0000-0020-000000000615}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000290}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000187}, !- Inlet Port - {00000000-0000-0000-0020-000000000189}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000291}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000190}, !- Inlet Port - {00000000-0000-0000-0020-000000000188}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000292}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0020-000000000204}, !- Inlet Port - {00000000-0000-0000-0020-000000000205}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000293}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0020-000000000623}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000294}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000628}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000295}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000185}, !- Inlet Port - {00000000-0000-0000-0020-000000000206}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000296}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000199}, !- Inlet Port - {00000000-0000-0000-0020-000000000186}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000297}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000295}, !- Inlet Port - {00000000-0000-0000-0020-000000000297}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000298}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000298}, !- Inlet Port - {00000000-0000-0000-0020-000000000296}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000299}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0020-000000000312}, !- Inlet Port - {00000000-0000-0000-0020-000000000313}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000300}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0020-000000000629}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000301}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000634}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000302}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000293}, !- Inlet Port - {00000000-0000-0000-0020-000000000314}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000303}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000307}, !- Inlet Port - {00000000-0000-0000-0020-000000000294}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000304}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000403}, !- Inlet Port - {00000000-0000-0000-0020-000000000405}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000305}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000406}, !- Inlet Port - {00000000-0000-0000-0020-000000000404}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000306}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Mixed Air Node, !- Name - {00000000-0000-0000-0020-000000000420}, !- Inlet Port - {00000000-0000-0000-0020-000000000421}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000307}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0020-000000000635}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000308}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000640}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000309}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000401}, !- Inlet Port - {00000000-0000-0000-0020-000000000422}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000310}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000415}, !- Inlet Port - {00000000-0000-0000-0020-000000000402}; !- Outlet Port + {00000000-0000-0000-0020-000000000290}, !- Inlet Port + {00000000-0000-0000-0020-000000000291}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000311}, !- Handle + {00000000-0000-0000-0049-000000000143}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000150}, !- Inlet Port {00000000-0000-0000-0020-000000000152}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000312}, !- Handle + {00000000-0000-0000-0049-000000000144}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000153}, !- Inlet Port {00000000-0000-0000-0020-000000000151}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000313}, !- Handle + {00000000-0000-0000-0049-000000000145}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000166}, !- Inlet Port {00000000-0000-0000-0020-000000000167}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000314}, !- Handle + {00000000-0000-0000-0049-000000000146}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0020-000000000617}; !- Outlet Port + {00000000-0000-0000-0020-000000000293}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000315}, !- Handle + {00000000-0000-0000-0049-000000000147}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000622}, !- Inlet Port + {00000000-0000-0000-0020-000000000298}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000316}, !- Handle + {00000000-0000-0000-0049-000000000148}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000148}, !- Inlet Port {00000000-0000-0000-0020-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000317}, !- Handle + {00000000-0000-0000-0049-000000000149}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000161}, !- Inlet Port {00000000-0000-0000-0020-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000318}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000624}, !- Inlet Port - {00000000-0000-0000-0020-000000000625}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000319}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000626}, !- Inlet Port - {00000000-0000-0000-0020-000000000627}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000320}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000630}, !- Inlet Port - {00000000-0000-0000-0020-000000000631}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000321}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000632}, !- Inlet Port - {00000000-0000-0000-0020-000000000633}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000322}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000636}, !- Inlet Port - {00000000-0000-0000-0020-000000000637}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000323}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000638}, !- Inlet Port - {00000000-0000-0000-0020-000000000639}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000324}, !- Handle + {00000000-0000-0000-0049-000000000150}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000618}, !- Inlet Port - {00000000-0000-0000-0020-000000000619}; !- Outlet Port + {00000000-0000-0000-0020-000000000294}, !- Inlet Port + {00000000-0000-0000-0020-000000000295}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000325}, !- Handle + {00000000-0000-0000-0049-000000000151}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000620}, !- Inlet Port - {00000000-0000-0000-0020-000000000621}; !- Outlet Port + {00000000-0000-0000-0020-000000000296}, !- Inlet Port + {00000000-0000-0000-0020-000000000297}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0051-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People, !- Name - {00000000-0000-0000-0056-000000000001}, !- People Definition Name - {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0052-000000000001}, !- People Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0066-000000000026}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0062-000000000023}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0055-000000000002}, !- Handle + {00000000-0000-0000-0051-000000000002}, !- Handle Space Function Office open plan People, !- Name - {00000000-0000-0000-0056-000000000002}, !- People Definition Name - {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0052-000000000002}, !- People Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0066-000000000026}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0062-000000000023}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0052-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -10893,7 +5181,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0056-000000000002}, !- Handle + {00000000-0000-0000-0052-000000000002}, !- Handle Space Function Office open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -10902,67 +5190,67 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0020-000000000066}, !- Inlet Node Name {00000000-0000-0000-0020-000000000067}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000002}, !- Handle + {00000000-0000-0000-0053-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0020-000000000533}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000534}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000209}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000210}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000003}, !- Handle + {00000000-0000-0000-0053-000000000003}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0020-000000000070}, !- Inlet Node Name {00000000-0000-0000-0020-000000000071}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000004}, !- Handle + {00000000-0000-0000-0053-000000000004}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0020-000000000114}, !- Inlet Node Name {00000000-0000-0000-0020-000000000115}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000005}, !- Handle + {00000000-0000-0000-0053-000000000005}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0020-000000000118}, !- Inlet Node Name {00000000-0000-0000-0020-000000000119}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000006}, !- Handle + {00000000-0000-0000-0053-000000000006}, !- Handle Pipe Adiabatic 5, !- Name {00000000-0000-0000-0020-000000000135}, !- Inlet Node Name {00000000-0000-0000-0020-000000000136}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000007}, !- Handle + {00000000-0000-0000-0053-000000000007}, !- Handle Pipe Adiabatic 6, !- Name {00000000-0000-0000-0020-000000000139}, !- Inlet Node Name {00000000-0000-0000-0020-000000000140}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000008}, !- Handle + {00000000-0000-0000-0053-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0020-000000000523}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000524}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000199}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000200}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000009}, !- Handle + {00000000-0000-0000-0053-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0020-000000000526}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000527}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000202}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000203}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000010}, !- Handle + {00000000-0000-0000-0053-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0020-000000000530}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000531}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000206}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000207}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -10970,7 +5258,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0053-000000000087}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000033}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -10984,7 +5272,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -10998,7 +5286,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -11006,7 +5294,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0053-000000000195}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000051}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -11020,7 +5308,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -11034,7 +5322,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000005}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0058-000000000003}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Handle Hot Water Loop, !- Name Water, !- Fluid Type 0, !- Glycol Concentration @@ -11042,7 +5330,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0053-000000000215}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000071}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -11056,7 +5344,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -11070,7 +5358,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0058-000000000004}, !- Handle + {00000000-0000-0000-0054-000000000004}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -11078,21 +5366,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0053-000000000220}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000076}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0020-000000000509}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0020-000000000511}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0020-000000000185}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0020-000000000187}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0020-000000000512}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0020-000000000515}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000188}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0020-000000000191}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -11106,326 +5394,290 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000007}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0059-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- HVAC Component - {00000000-0000-0000-0020-000000000287}; !- Port 1 + {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000002}, !- Handle - {00000000-0000-0000-0094-000000000010}; !- HVAC Component + {00000000-0000-0000-0055-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000003}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- HVAC Component - {00000000-0000-0000-0020-000000000288}; !- Port 1 + {00000000-0000-0000-0055-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000004}, !- Handle - {00000000-0000-0000-0094-000000000001}; !- HVAC Component + {00000000-0000-0000-0055-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000005}, !- Handle - {00000000-0000-0000-0094-000000000001}; !- HVAC Component + {00000000-0000-0000-0055-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000006}, !- Handle - {00000000-0000-0000-0094-000000000001}; !- HVAC Component + {00000000-0000-0000-0055-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000007}, !- Handle - {00000000-0000-0000-0094-000000000022}, !- HVAC Component - {00000000-0000-0000-0020-000000000503}; !- Port 1 + {00000000-0000-0000-0055-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000008}, !- Handle - {00000000-0000-0000-0094-000000000022}; !- HVAC Component + {00000000-0000-0000-0055-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000009}, !- Handle - {00000000-0000-0000-0094-000000000022}, !- HVAC Component - {00000000-0000-0000-0020-000000000504}; !- Port 1 + {00000000-0000-0000-0055-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000010}, !- Handle - {00000000-0000-0000-0094-000000000003}; !- HVAC Component + {00000000-0000-0000-0055-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000011}, !- Handle - {00000000-0000-0000-0094-000000000003}; !- HVAC Component + {00000000-0000-0000-0055-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000012}, !- Handle - {00000000-0000-0000-0094-000000000003}; !- HVAC Component + {00000000-0000-0000-0055-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000013}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- HVAC Component - {00000000-0000-0000-0020-000000000395}; !- Port 1 + {00000000-0000-0000-0055-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000014}, !- Handle - {00000000-0000-0000-0094-000000000016}; !- HVAC Component + {00000000-0000-0000-0055-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000015}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- HVAC Component - {00000000-0000-0000-0020-000000000396}; !- Port 1 + {00000000-0000-0000-0055-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000016}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- HVAC Component - {00000000-0000-0000-0020-000000000461}; !- Port 1 + {00000000-0000-0000-0055-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000017}, !- Handle - {00000000-0000-0000-0094-000000000017}; !- HVAC Component + {00000000-0000-0000-0055-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000018}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- HVAC Component - {00000000-0000-0000-0020-000000000462}; !- Port 1 + {00000000-0000-0000-0055-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000019}, !- Handle - {00000000-0000-0000-0094-000000000005}, !- HVAC Component - {00000000-0000-0000-0020-000000000231}; !- Port 1 + {00000000-0000-0000-0055-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000020}, !- Handle - {00000000-0000-0000-0094-000000000005}; !- HVAC Component + {00000000-0000-0000-0055-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000021}, !- Handle - {00000000-0000-0000-0094-000000000005}, !- HVAC Component - {00000000-0000-0000-0020-000000000232}; !- Port 1 + {00000000-0000-0000-0055-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000022}, !- Handle - {00000000-0000-0000-0094-000000000006}, !- HVAC Component - {00000000-0000-0000-0020-000000000259}; !- Port 1 + {00000000-0000-0000-0055-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000023}, !- Handle - {00000000-0000-0000-0094-000000000006}; !- HVAC Component + {00000000-0000-0000-0055-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000024}, !- Handle - {00000000-0000-0000-0094-000000000006}, !- HVAC Component - {00000000-0000-0000-0020-000000000260}; !- Port 1 + {00000000-0000-0000-0055-000000000024}, !- Handle + {00000000-0000-0000-0090-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000025}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- HVAC Component - {00000000-0000-0000-0020-000000000475}; !- Port 1 + {00000000-0000-0000-0055-000000000025}, !- Handle + {00000000-0000-0000-0090-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000026}, !- Handle - {00000000-0000-0000-0094-000000000018}; !- HVAC Component + {00000000-0000-0000-0055-000000000026}, !- Handle + {00000000-0000-0000-0090-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000027}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- HVAC Component - {00000000-0000-0000-0020-000000000476}; !- Port 1 + {00000000-0000-0000-0055-000000000027}, !- Handle + {00000000-0000-0000-0090-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000028}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- HVAC Component - {00000000-0000-0000-0020-000000000367}; !- Port 1 + {00000000-0000-0000-0055-000000000028}, !- Handle + {00000000-0000-0000-0090-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000029}, !- Handle - {00000000-0000-0000-0094-000000000011}; !- HVAC Component + {00000000-0000-0000-0055-000000000029}, !- Handle + {00000000-0000-0000-0090-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000030}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- HVAC Component - {00000000-0000-0000-0020-000000000368}; !- Port 1 + {00000000-0000-0000-0055-000000000030}, !- Handle + {00000000-0000-0000-0090-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000031}, !- Handle - {00000000-0000-0000-0094-000000000019}, !- HVAC Component - {00000000-0000-0000-0020-000000000447}; !- Port 1 + {00000000-0000-0000-0055-000000000031}, !- Handle + {00000000-0000-0000-0090-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000032}, !- Handle - {00000000-0000-0000-0094-000000000019}; !- HVAC Component + {00000000-0000-0000-0055-000000000032}, !- Handle + {00000000-0000-0000-0090-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000033}, !- Handle - {00000000-0000-0000-0094-000000000019}, !- HVAC Component - {00000000-0000-0000-0020-000000000448}; !- Port 1 + {00000000-0000-0000-0055-000000000033}, !- Handle + {00000000-0000-0000-0090-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000034}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- HVAC Component - {00000000-0000-0000-0020-000000000353}; !- Port 1 + {00000000-0000-0000-0055-000000000034}, !- Handle + {00000000-0000-0000-0090-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000035}, !- Handle - {00000000-0000-0000-0094-000000000012}; !- HVAC Component + {00000000-0000-0000-0055-000000000035}, !- Handle + {00000000-0000-0000-0090-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000036}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- HVAC Component - {00000000-0000-0000-0020-000000000354}; !- Port 1 + {00000000-0000-0000-0055-000000000036}, !- Handle + {00000000-0000-0000-0090-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000037}, !- Handle - {00000000-0000-0000-0094-000000000004}, !- HVAC Component + {00000000-0000-0000-0055-000000000037}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000179}; !- Port 1 OS:PortList, - {00000000-0000-0000-0059-000000000038}, !- Handle - {00000000-0000-0000-0094-000000000004}; !- HVAC Component + {00000000-0000-0000-0055-000000000038}, !- Handle + {00000000-0000-0000-0090-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000039}, !- Handle - {00000000-0000-0000-0094-000000000004}, !- HVAC Component + {00000000-0000-0000-0055-000000000039}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000180}; !- Port 1 OS:PortList, - {00000000-0000-0000-0059-000000000040}, !- Handle - {00000000-0000-0000-0094-000000000002}; !- HVAC Component + {00000000-0000-0000-0055-000000000040}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000041}, !- Handle - {00000000-0000-0000-0094-000000000002}; !- HVAC Component + {00000000-0000-0000-0055-000000000041}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000042}, !- Handle - {00000000-0000-0000-0094-000000000002}; !- HVAC Component + {00000000-0000-0000-0055-000000000042}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000043}, !- Handle - {00000000-0000-0000-0094-000000000007}, !- HVAC Component - {00000000-0000-0000-0020-000000000217}; !- Port 1 + {00000000-0000-0000-0055-000000000043}, !- Handle + {00000000-0000-0000-0090-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000044}, !- Handle - {00000000-0000-0000-0094-000000000007}; !- HVAC Component + {00000000-0000-0000-0055-000000000044}, !- Handle + {00000000-0000-0000-0090-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000045}, !- Handle - {00000000-0000-0000-0094-000000000007}, !- HVAC Component - {00000000-0000-0000-0020-000000000218}; !- Port 1 + {00000000-0000-0000-0055-000000000045}, !- Handle + {00000000-0000-0000-0090-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000046}, !- Handle - {00000000-0000-0000-0094-000000000020}, !- HVAC Component - {00000000-0000-0000-0020-000000000489}; !- Port 1 + {00000000-0000-0000-0055-000000000046}, !- Handle + {00000000-0000-0000-0090-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000047}, !- Handle - {00000000-0000-0000-0094-000000000020}; !- HVAC Component + {00000000-0000-0000-0055-000000000047}, !- Handle + {00000000-0000-0000-0090-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000048}, !- Handle - {00000000-0000-0000-0094-000000000020}, !- HVAC Component - {00000000-0000-0000-0020-000000000490}; !- Port 1 + {00000000-0000-0000-0055-000000000048}, !- Handle + {00000000-0000-0000-0090-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000049}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- HVAC Component - {00000000-0000-0000-0020-000000000339}; !- Port 1 + {00000000-0000-0000-0055-000000000049}, !- Handle + {00000000-0000-0000-0090-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000050}, !- Handle - {00000000-0000-0000-0094-000000000013}; !- HVAC Component + {00000000-0000-0000-0055-000000000050}, !- Handle + {00000000-0000-0000-0090-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000051}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- HVAC Component - {00000000-0000-0000-0020-000000000340}; !- Port 1 + {00000000-0000-0000-0055-000000000051}, !- Handle + {00000000-0000-0000-0090-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000052}, !- Handle - {00000000-0000-0000-0094-000000000021}, !- HVAC Component - {00000000-0000-0000-0020-000000000433}; !- Port 1 + {00000000-0000-0000-0055-000000000052}, !- Handle + {00000000-0000-0000-0090-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000053}, !- Handle - {00000000-0000-0000-0094-000000000021}; !- HVAC Component + {00000000-0000-0000-0055-000000000053}, !- Handle + {00000000-0000-0000-0090-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000054}, !- Handle - {00000000-0000-0000-0094-000000000021}, !- HVAC Component - {00000000-0000-0000-0020-000000000434}; !- Port 1 + {00000000-0000-0000-0055-000000000054}, !- Handle + {00000000-0000-0000-0090-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000055}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- HVAC Component - {00000000-0000-0000-0020-000000000325}; !- Port 1 + {00000000-0000-0000-0055-000000000055}, !- Handle + {00000000-0000-0000-0090-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000056}, !- Handle - {00000000-0000-0000-0094-000000000014}; !- HVAC Component + {00000000-0000-0000-0055-000000000056}, !- Handle + {00000000-0000-0000-0090-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000057}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- HVAC Component - {00000000-0000-0000-0020-000000000326}; !- Port 1 + {00000000-0000-0000-0055-000000000057}, !- Handle + {00000000-0000-0000-0090-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000058}, !- Handle - {00000000-0000-0000-0094-000000000008}, !- HVAC Component - {00000000-0000-0000-0020-000000000273}; !- Port 1 + {00000000-0000-0000-0055-000000000058}, !- Handle + {00000000-0000-0000-0090-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000059}, !- Handle - {00000000-0000-0000-0094-000000000008}; !- HVAC Component + {00000000-0000-0000-0055-000000000059}, !- Handle + {00000000-0000-0000-0090-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000060}, !- Handle - {00000000-0000-0000-0094-000000000008}, !- HVAC Component - {00000000-0000-0000-0020-000000000274}; !- Port 1 + {00000000-0000-0000-0055-000000000060}, !- Handle + {00000000-0000-0000-0090-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000061}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- HVAC Component - {00000000-0000-0000-0020-000000000381}; !- Port 1 + {00000000-0000-0000-0055-000000000061}, !- Handle + {00000000-0000-0000-0090-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000062}, !- Handle - {00000000-0000-0000-0094-000000000015}; !- HVAC Component + {00000000-0000-0000-0055-000000000062}, !- Handle + {00000000-0000-0000-0090-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000063}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- HVAC Component - {00000000-0000-0000-0020-000000000382}; !- Port 1 + {00000000-0000-0000-0055-000000000063}, !- Handle + {00000000-0000-0000-0090-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000064}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- HVAC Component - {00000000-0000-0000-0020-000000000245}; !- Port 1 + {00000000-0000-0000-0055-000000000064}, !- Handle + {00000000-0000-0000-0090-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000065}, !- Handle - {00000000-0000-0000-0094-000000000009}; !- HVAC Component + {00000000-0000-0000-0055-000000000065}, !- Handle + {00000000-0000-0000-0090-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000066}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- HVAC Component - {00000000-0000-0000-0020-000000000246}; !- Port 1 + {00000000-0000-0000-0055-000000000066}, !- Handle + {00000000-0000-0000-0090-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000067}, !- Handle - {00000000-0000-0000-0094-000000000023}, !- HVAC Component + {00000000-0000-0000-0055-000000000067}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000089}; !- Port 1 OS:PortList, - {00000000-0000-0000-0059-000000000068}, !- Handle - {00000000-0000-0000-0094-000000000023}; !- HVAC Component + {00000000-0000-0000-0055-000000000068}, !- Handle + {00000000-0000-0000-0090-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000069}, !- Handle - {00000000-0000-0000-0094-000000000023}, !- HVAC Component + {00000000-0000-0000-0055-000000000069}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000090}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0020-000000000516}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000517}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000192}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000193}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 742176.159809915, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -11444,14 +5696,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0020-000000000055}, !- Inlet Node Name {00000000-0000-0000-0020-000000000056}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 216907.891208676, !- Rated Pump Head {Pa} + 200710.224008028, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.924, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -11477,14 +5729,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0020-000000000103}, !- Inlet Node Name {00000000-0000-0000-0020-000000000104}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 256345.689610254, !- Rated Pump Head {Pa} + 234161.928009366, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.936, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -11510,14 +5762,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0061-000000000003}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Handle Pump Variable Speed 3, !- Name {00000000-0000-0000-0020-000000000128}, !- Inlet Node Name {00000000-0000-0000-0020-000000000129}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 223011.36000892, !- Rated Pump Head {Pa} + 200710.224008028, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.95, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -11543,322 +5795,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000003}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000004}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000005}, !- Handle + {00000000-0000-0000-0058-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000006}, !- Handle + {00000000-0000-0000-0058-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000007}, !- Handle + {00000000-0000-0000-0058-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000008}, !- Handle + {00000000-0000-0000-0058-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000009}, !- Handle + {00000000-0000-0000-0058-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000010}, !- Handle + {00000000-0000-0000-0058-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000011}, !- Handle + {00000000-0000-0000-0058-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000012}, !- Handle + {00000000-0000-0000-0058-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000013}, !- Handle + {00000000-0000-0000-0058-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000014}, !- Handle + {00000000-0000-0000-0058-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000015}, !- Handle + {00000000-0000-0000-0058-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000016}, !- Handle + {00000000-0000-0000-0058-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000017}, !- Handle + {00000000-0000-0000-0058-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000018}, !- Handle + {00000000-0000-0000-0058-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000019}, !- Handle + {00000000-0000-0000-0058-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000020}, !- Handle + {00000000-0000-0000-0058-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000021}, !- Handle + {00000000-0000-0000-0058-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000022}, !- Handle + {00000000-0000-0000-0058-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000023}, !- Handle + {00000000-0000-0000-0058-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000024}, !- Handle + {00000000-0000-0000-0058-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000025}, !- Handle + {00000000-0000-0000-0058-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000026}, !- Handle + {00000000-0000-0000-0058-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000027}, !- Handle + {00000000-0000-0000-0058-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000028}, !- Handle + {00000000-0000-0000-0058-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000029}, !- Handle + {00000000-0000-0000-0058-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000030}, !- Handle + {00000000-0000-0000-0058-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000031}, !- Handle + {00000000-0000-0000-0058-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000032}, !- Handle + {00000000-0000-0000-0058-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000033}, !- Handle + {00000000-0000-0000-0058-000000000033}, !- Handle Space Function Electrical/Mechanical room-sch-A 1, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000034}, !- Handle + {00000000-0000-0000-0058-000000000034}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000035}, !- Handle + {00000000-0000-0000-0058-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000036}, !- Handle + {00000000-0000-0000-0058-000000000036}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000037}, !- Handle + {00000000-0000-0000-0058-000000000037}, !- Handle Space Function Office open plan 1, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000038}, !- Handle + {00000000-0000-0000-0058-000000000038}, !- Handle Space Function Office open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000039}, !- Handle + {00000000-0000-0000-0058-000000000039}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0067-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000002}, !- Handle + {00000000-0000-0000-0060-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000003}, !- Handle + {00000000-0000-0000-0060-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000004}, !- Handle + {00000000-0000-0000-0060-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000005}, !- Handle + {00000000-0000-0000-0060-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -11867,36 +6119,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000006}, !- Handle + {00000000-0000-0000-0060-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000007}, !- Handle + {00000000-0000-0000-0060-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000008}, !- Handle + {00000000-0000-0000-0060-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000009}, !- Handle + {00000000-0000-0000-0060-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11921,9 +6173,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000010}, !- Handle + {00000000-0000-0000-0060-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11948,27 +6200,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000011}, !- Handle + {00000000-0000-0000-0060-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000012}, !- Handle + {00000000-0000-0000-0060-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000013}, !- Handle + {00000000-0000-0000-0060-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11999,9 +6251,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000014}, !- Handle + {00000000-0000-0000-0060-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12032,27 +6284,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000015}, !- Handle + {00000000-0000-0000-0060-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000016}, !- Handle + {00000000-0000-0000-0060-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000017}, !- Handle + {00000000-0000-0000-0060-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12086,9 +6338,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000018}, !- Handle + {00000000-0000-0000-0060-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12122,27 +6374,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000019}, !- Handle + {00000000-0000-0000-0060-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000020}, !- Handle + {00000000-0000-0000-0060-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000021}, !- Handle + {00000000-0000-0000-0060-000000000021}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Default|Wkdy-Light Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12173,9 +6425,9 @@ OS:Schedule:Day, 0.0383; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000022}, !- Handle + {00000000-0000-0000-0060-000000000022}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Light Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12206,27 +6458,27 @@ OS:Schedule:Day, 0.0383; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000023}, !- Handle + {00000000-0000-0000-0060-000000000023}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Sat-Light Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.0383; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000024}, !- Handle + {00000000-0000-0000-0060-000000000024}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Sun|Hol-Light Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.0383; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000025}, !- Handle + {00000000-0000-0000-0060-000000000025}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12257,9 +6509,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000026}, !- Handle + {00000000-0000-0000-0060-000000000026}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12290,27 +6542,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000027}, !- Handle + {00000000-0000-0000-0060-000000000027}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000028}, !- Handle + {00000000-0000-0000-0060-000000000028}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000029}, !- Handle + {00000000-0000-0000-0060-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -12323,9 +6575,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000030}, !- Handle + {00000000-0000-0000-0060-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -12338,27 +6590,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000031}, !- Handle + {00000000-0000-0000-0060-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000032}, !- Handle + {00000000-0000-0000-0060-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000033}, !- Handle + {00000000-0000-0000-0060-000000000033}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -12374,9 +6626,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000034}, !- Handle + {00000000-0000-0000-0060-000000000034}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -12392,52 +6644,52 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000035}, !- Handle + {00000000-0000-0000-0060-000000000035}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000036}, !- Handle + {00000000-0000-0000-0060-000000000036}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000037}, !- Handle + {00000000-0000-0000-0060-000000000037}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000038}, !- Handle + {00000000-0000-0000-0060-000000000038}, !- Handle NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000039}, !- Handle + {00000000-0000-0000-0060-000000000039}, !- Handle NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000040}, !- Handle + {00000000-0000-0000-0060-000000000040}, !- Handle Schedule Day 1, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -12446,70 +6698,16 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000041}, !- Handle + {00000000-0000-0000-0060-000000000041}, !- Handle Schedule Day 10, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000042}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000043}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000044}, !- Handle - Schedule Day 13, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000045}, !- Handle - Schedule Day 14, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000046}, !- Handle - Schedule Day 15, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000047}, !- Handle - Schedule Day 16, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000048}, !- Handle + {00000000-0000-0000-0060-000000000042}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -12518,9 +6716,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000049}, !- Handle + {00000000-0000-0000-0060-000000000043}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12596,9 +6794,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000050}, !- Handle + {00000000-0000-0000-0060-000000000044}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12674,117 +6872,90 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000051}, !- Handle + {00000000-0000-0000-0060-000000000045}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000052}, !- Handle + {00000000-0000-0000-0060-000000000046}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000053}, !- Handle + {00000000-0000-0000-0060-000000000047}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000054}, !- Handle + {00000000-0000-0000-0060-000000000048}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000055}, !- Handle - Schedule Day 9, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000056}, !- Handle - Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 60; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000057}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000058}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000049}, !- Handle + Schedule Day 9, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 13; !- Value Until Time 1 + 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000059}, !- Handle - Supply Air Temp Default 3, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000050}, !- Handle + Service Water Loop Temp - 140F Default, !- Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 13; !- Value Until Time 1 + 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000060}, !- Handle + {00000000-0000-0000-0060-000000000051}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000061}, !- Handle + {00000000-0000-0000-0060-000000000052}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000062}, !- Handle + {00000000-0000-0000-0060-000000000053}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000063}, !- Handle + {00000000-0000-0000-0060-000000000054}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12860,9 +7031,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000064}, !- Handle + {00000000-0000-0000-0060-000000000055}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12938,9 +7109,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000065}, !- Handle + {00000000-0000-0000-0060-000000000056}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13016,9 +7187,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000066}, !- Handle + {00000000-0000-0000-0060-000000000057}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13094,9 +7265,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000067}, !- Handle + {00000000-0000-0000-0060-000000000058}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13172,9 +7343,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000068}, !- Handle + {00000000-0000-0000-0060-000000000059}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13250,9 +7421,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000069}, !- Handle + {00000000-0000-0000-0060-000000000060}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13328,9 +7499,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000070}, !- Handle + {00000000-0000-0000-0060-000000000061}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13406,9 +7577,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000071}, !- Handle + {00000000-0000-0000-0060-000000000062}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -13421,126 +7592,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000072}, !- Handle + {00000000-0000-0000-0060-000000000063}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000073}, !- Handle + {00000000-0000-0000-0060-000000000064}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000074}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000075}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000076}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000077}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000078}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000079}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000080}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000081}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000082}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000083}, !- Handle + {00000000-0000-0000-0060-000000000065}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -13553,27 +7625,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000084}, !- Handle + {00000000-0000-0000-0060-000000000066}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000085}, !- Handle + {00000000-0000-0000-0060-000000000067}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000086}, !- Handle + {00000000-0000-0000-0060-000000000068}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13649,9 +7721,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000087}, !- Handle + {00000000-0000-0000-0060-000000000069}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13727,9 +7799,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000088}, !- Handle + {00000000-0000-0000-0060-000000000070}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13805,9 +7877,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000089}, !- Handle + {00000000-0000-0000-0060-000000000071}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13883,11 +7955,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0066-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13902,11 +7974,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13921,11 +7993,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000003}, !- Handle + {00000000-0000-0000-0061-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0066-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000016}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000034}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000034}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -13940,11 +8012,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000004}, !- Handle + {00000000-0000-0000-0061-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0066-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000016}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000035}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000035}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13959,11 +8031,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000005}, !- Handle + {00000000-0000-0000-0061-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0066-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000016}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000036}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000036}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13978,11 +8050,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000006}, !- Handle + {00000000-0000-0000-0061-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -13997,11 +8069,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000007}, !- Handle + {00000000-0000-0000-0061-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14016,11 +8088,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000008}, !- Handle + {00000000-0000-0000-0061-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14035,11 +8107,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000009}, !- Handle + {00000000-0000-0000-0061-000000000009}, !- Handle Schedule Rule 17, !- Name - {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000021}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000021}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14054,11 +8126,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000010}, !- Handle + {00000000-0000-0000-0061-000000000010}, !- Handle Schedule Rule 18, !- Name - {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000023}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14073,11 +8145,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000011}, !- Handle + {00000000-0000-0000-0061-000000000011}, !- Handle Schedule Rule 19, !- Name - {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000024}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14092,11 +8164,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000012}, !- Handle + {00000000-0000-0000-0061-000000000012}, !- Handle Schedule Rule 2, !- Name - {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000018}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000018}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14111,11 +8183,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000013}, !- Handle + {00000000-0000-0000-0061-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14130,11 +8202,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000014}, !- Handle + {00000000-0000-0000-0061-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14149,11 +8221,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000015}, !- Handle + {00000000-0000-0000-0061-000000000015}, !- Handle Schedule Rule 22, !- Name - {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000028}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14168,11 +8240,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000016}, !- Handle + {00000000-0000-0000-0061-000000000016}, !- Handle Schedule Rule 23, !- Name - {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000024}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000053}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000047}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14187,11 +8259,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000017}, !- Handle + {00000000-0000-0000-0061-000000000017}, !- Handle Schedule Rule 24, !- Name - {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000024}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000048}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14206,11 +8278,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000018}, !- Handle + {00000000-0000-0000-0061-000000000018}, !- Handle Schedule Rule 25, !- Name - {00000000-0000-0000-0066-000000000031}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000025}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000055}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000049}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14225,49 +8297,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000019}, !- Handle + {00000000-0000-0000-0061-000000000019}, !- Handle Schedule Rule 26, !- Name - {00000000-0000-0000-0066-000000000031}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0064-000000000041}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000020}, !- Handle - Schedule Rule 27, !- Name - {00000000-0000-0000-0066-000000000028}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0064-000000000042}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000021}, !- Handle - Schedule Rule 28, !- Name - {00000000-0000-0000-0066-000000000028}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000025}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000041}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14282,68 +8316,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000022}, !- Handle - Schedule Rule 29, !- Name - {00000000-0000-0000-0066-000000000029}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0064-000000000044}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000023}, !- Handle + {00000000-0000-0000-0061-000000000020}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0064-000000000019}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000024}, !- Handle - Schedule Rule 30, !- Name - {00000000-0000-0000-0066-000000000029}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0064-000000000045}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000025}, !- Handle - Schedule Rule 31, !- Name - {00000000-0000-0000-0066-000000000030}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000046}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000019}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14353,35 +8330,16 @@ OS:Schedule:Rule, Yes, !- Apply Saturday DateRange, !- Date Specification Type 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000026}, !- Handle - Schedule Rule 32, !- Name - {00000000-0000-0000-0066-000000000030}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0064-000000000047}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month 1, !- Start Day 12, !- End Month 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000027}, !- Handle + {00000000-0000-0000-0061-000000000021}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14396,11 +8354,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000028}, !- Handle + {00000000-0000-0000-0061-000000000022}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14415,11 +8373,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000029}, !- Handle + {00000000-0000-0000-0061-000000000023}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14434,11 +8392,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000030}, !- Handle + {00000000-0000-0000-0061-000000000024}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14453,11 +8411,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000031}, !- Handle + {00000000-0000-0000-0061-000000000025}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14472,11 +8430,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000032}, !- Handle + {00000000-0000-0000-0061-000000000026}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14491,11 +8449,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000033}, !- Handle + {00000000-0000-0000-0061-000000000027}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000063}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000054}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14510,11 +8468,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000034}, !- Handle + {00000000-0000-0000-0061-000000000028}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000065}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000056}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14529,11 +8487,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000035}, !- Handle + {00000000-0000-0000-0061-000000000029}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000067}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000058}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14548,11 +8506,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000036}, !- Handle + {00000000-0000-0000-0061-000000000030}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000069}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000060}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14567,11 +8525,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000037}, !- Handle + {00000000-0000-0000-0061-000000000031}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000086}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000068}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14586,11 +8544,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000038}, !- Handle + {00000000-0000-0000-0061-000000000032}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000088}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000070}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14605,205 +8563,163 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0067-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000002}, !- Handle + {00000000-0000-0000-0062-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000003}, !- Handle + {00000000-0000-0000-0062-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000049}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000043}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000050}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000005}, !- Handle + {00000000-0000-0000-0062-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000006}, !- Handle + {00000000-0000-0000-0062-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000007}, !- Handle + {00000000-0000-0000-0062-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000008}, !- Handle + {00000000-0000-0000-0062-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000009}, !- Handle + {00000000-0000-0000-0062-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000010}, !- Handle + {00000000-0000-0000-0062-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000011}, !- Handle + {00000000-0000-0000-0062-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000012}, !- Handle + {00000000-0000-0000-0062-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000013}, !- Handle + {00000000-0000-0000-0062-000000000013}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Light Ruleset, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000022}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000022}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000014}, !- Handle + {00000000-0000-0000-0062-000000000014}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000015}, !- Handle + {00000000-0000-0000-0062-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000016}, !- Handle + {00000000-0000-0000-0062-000000000016}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000033}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000033}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000017}, !- Handle + {00000000-0000-0000-0062-000000000017}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000037}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000038}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000039}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000037}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000038}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000039}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000018}, !- Handle + {00000000-0000-0000-0062-000000000018}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000051}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000019}, !- Handle + {00000000-0000-0000-0062-000000000019}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000052}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000020}, !- Handle + {00000000-0000-0000-0062-000000000020}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000056}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000021}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000057}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000022}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000058}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000050}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000023}, !- Handle - Supply Air Temp 3, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000059}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000024}, !- Handle + {00000000-0000-0000-0062-000000000021}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000060}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000051}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000025}, !- Handle + {00000000-0000-0000-0062-000000000022}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000061}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000026}, !- Handle + {00000000-0000-0000-0062-000000000023}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000062}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000053}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000027}, !- Handle + {00000000-0000-0000-0062-000000000024}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000071}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000072}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000073}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000028}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000074}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000075}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000076}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000062}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000063}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000064}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000029}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000077}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000078}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000079}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000030}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000080}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000081}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000082}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000031}, !- Handle + {00000000-0000-0000-0062-000000000025}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000083}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000084}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000085}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000065}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000066}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000067}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -14811,7 +8727,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000002}, !- Handle + {00000000-0000-0000-0063-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -14819,7 +8735,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000003}, !- Handle + {00000000-0000-0000-0063-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -14827,14 +8743,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000004}, !- Handle + {00000000-0000-0000-0063-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000005}, !- Handle + {00000000-0000-0000-0063-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -14842,7 +8758,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000006}, !- Handle + {00000000-0000-0000-0063-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -14850,7 +8766,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000007}, !- Handle + {00000000-0000-0000-0063-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -14858,7 +8774,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000008}, !- Handle + {00000000-0000-0000-0063-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -14866,7 +8782,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000009}, !- Handle + {00000000-0000-0000-0063-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -14874,84 +8790,42 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle Setpoint Manager Outdoor Air Pretreat 1, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0053-000000000283}, !- Reference Setpoint Node Name - {00000000-0000-0000-0053-000000000283}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0053-000000000284}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0053-000000000286}, !- Return Air Stream Node Name - {00000000-0000-0000-0053-000000000288}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000136}, !- Reference Setpoint Node Name + {00000000-0000-0000-0049-000000000136}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0049-000000000137}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0049-000000000139}, !- Return Air Stream Node Name + {00000000-0000-0000-0049-000000000141}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000002}, !- Handle + {00000000-0000-0000-0064-000000000002}, !- Handle Setpoint Manager Outdoor Air Pretreat 2, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0053-000000000313}, !- Reference Setpoint Node Name - {00000000-0000-0000-0053-000000000313}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0053-000000000314}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0053-000000000278}, !- Return Air Stream Node Name - {00000000-0000-0000-0053-000000000324}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000003}, !- Handle - Setpoint Manager Outdoor Air Pretreat 3, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0053-000000000292}, !- Reference Setpoint Node Name - {00000000-0000-0000-0053-000000000292}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0053-000000000293}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0053-000000000275}, !- Return Air Stream Node Name - {00000000-0000-0000-0053-000000000318}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000004}, !- Handle - Setpoint Manager Outdoor Air Pretreat 4, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0053-000000000299}, !- Reference Setpoint Node Name - {00000000-0000-0000-0053-000000000299}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0053-000000000300}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0053-000000000276}, !- Return Air Stream Node Name - {00000000-0000-0000-0053-000000000320}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000005}, !- Handle - Setpoint Manager Outdoor Air Pretreat 5, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0053-000000000306}, !- Reference Setpoint Node Name - {00000000-0000-0000-0053-000000000306}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0053-000000000307}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0053-000000000277}, !- Return Air Stream Node Name - {00000000-0000-0000-0053-000000000322}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000145}, !- Reference Setpoint Node Name + {00000000-0000-0000-0049-000000000145}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0049-000000000146}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0049-000000000131}, !- Return Air Stream Node Name + {00000000-0000-0000-0049-000000000150}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirReset, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Setpoint Manager Outdoor Air Reset 1, !- Name Temperature, !- Control Variable 82, !- Setpoint at Outdoor Low Temperature {C} -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0053-000000000215}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000071}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -14959,64 +8833,43 @@ OS:SetpointManager:OutdoorAirReset, ; !- Outdoor High Temperature 2 {C} OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000020}, !- Schedule Name - {00000000-0000-0000-0053-000000000220}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000002}, !- Handle - Setpoint Manager Scheduled 1, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000003}, !- Schedule Name - {00000000-0000-0000-0053-000000000087}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000003}, !- Handle - Setpoint Manager Scheduled 2, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000004}, !- Schedule Name - {00000000-0000-0000-0053-000000000195}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000004}, !- Handle - Setpoint Manager Scheduled 3, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000024}, !- Schedule Name - {00000000-0000-0000-0053-000000000317}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000020}, !- Schedule Name + {00000000-0000-0000-0049-000000000076}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name + {00000000-0000-0000-0066-000000000002}, !- Handle + Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000021}, !- Schedule Name - {00000000-0000-0000-0053-000000000296}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Name + {00000000-0000-0000-0049-000000000033}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name + {00000000-0000-0000-0066-000000000003}, !- Handle + Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000022}, !- Schedule Name - {00000000-0000-0000-0053-000000000303}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Name + {00000000-0000-0000-0049-000000000051}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000007}, !- Handle - Setpoint Manager Scheduled 6, !- Name + {00000000-0000-0000-0066-000000000004}, !- Handle + Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000023}, !- Schedule Name - {00000000-0000-0000-0053-000000000310}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000021}, !- Schedule Name + {00000000-0000-0000-0049-000000000149}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0094-000000000023}, !- Control Zone Name - {00000000-0000-0000-0053-000000000287}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0090-000000000023}, !- Control Zone Name + {00000000-0000-0000-0049-000000000140}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -15031,7 +8884,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0073-000000000001}, !- Handle + {00000000-0000-0000-0069-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -15040,7 +8893,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0074-000000000001}, !- Handle + {00000000-0000-0000-0070-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -15055,7 +8908,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0075-000000000001}, !- Handle + {00000000-0000-0000-0071-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -15070,7 +8923,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0072-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -15085,7 +8938,7 @@ OS:Site:GroundTemperature:FCfactorMethod, 11.1; !- December Ground Temperature {C} OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0073-000000000001}, !- Handle -1.6, !- January Surface Ground Temperature {C} -5.4, !- February Surface Ground Temperature {C} -6.4, !- March Surface Ground Temperature {C} @@ -15100,20 +8953,20 @@ OS:Site:GroundTemperature:Shallow, 4; !- December Surface Ground Temperature {C} OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0074-000000000001}, !- Handle Correlation, !- Calculation Method , !- Temperature Schedule Name 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} OS:Sizing:Parameters, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle 1.3, !- Heating Sizing Factor 1.1; !- Cooling Sizing Factor OS:Sizing:Plant, - {00000000-0000-0000-0080-000000000001}, !- Handle - {00000000-0000-0000-0058-000000000003}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Plant or Condenser Loop Name Heating, !- Loop Type 82, !- Design Loop Exit Temperature {C} 16, !- Loop Design Temperature Difference {deltaC} @@ -15122,8 +8975,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0080-000000000002}, !- Handle - {00000000-0000-0000-0058-000000000001}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Plant or Condenser Loop Name Cooling, !- Loop Type 7, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -15132,8 +8985,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0080-000000000003}, !- Handle - {00000000-0000-0000-0058-000000000002}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000003}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Plant or Condenser Loop Name Condenser, !- Loop Type 29, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -15142,8 +8995,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0080-000000000004}, !- Handle - {00000000-0000-0000-0058-000000000004}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000004}, !- Handle + {00000000-0000-0000-0054-000000000004}, !- Plant or Condenser Loop Name Heating, !- Loop Type 60, !- Design Loop Exit Temperature {C} 5, !- Loop Design Temperature Difference {deltaC} @@ -15152,7 +9005,7 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0077-000000000001}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name Sensible, !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -15193,48 +9046,7 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0081-000000000002}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0077-000000000002}, !- Handle {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -15274,101 +9086,19 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity -OS:Sizing:System, - {00000000-0000-0000-0081-000000000004}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0081-000000000005}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15392,8 +9122,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000002}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15427,18 +9157,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000003}, !- Handle - {00000000-0000-0000-0094-000000000022}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15462,8 +9192,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000004}, !- Handle - {00000000-0000-0000-0094-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15497,18 +9227,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000005}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15532,18 +9262,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000006}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15567,18 +9297,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000007}, !- Handle - {00000000-0000-0000-0094-000000000005}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15602,18 +9332,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000008}, !- Handle - {00000000-0000-0000-0094-000000000006}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15637,18 +9367,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000009}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15672,18 +9402,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000010}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15707,18 +9437,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000011}, !- Handle - {00000000-0000-0000-0094-000000000019}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15742,18 +9472,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000012}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15777,8 +9507,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000013}, !- Handle - {00000000-0000-0000-0094-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15812,8 +9542,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000014}, !- Handle - {00000000-0000-0000-0094-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15847,18 +9577,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000015}, !- Handle - {00000000-0000-0000-0094-000000000007}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15882,18 +9612,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000016}, !- Handle - {00000000-0000-0000-0094-000000000020}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15917,18 +9647,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000017}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15952,18 +9682,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000018}, !- Handle - {00000000-0000-0000-0094-000000000021}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15987,18 +9717,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000019}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -16022,18 +9752,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000020}, !- Handle - {00000000-0000-0000-0094-000000000008}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -16057,18 +9787,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000021}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -16092,18 +9822,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000022}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -16127,8 +9857,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000023}, !- Handle - {00000000-0000-0000-0094-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -16162,7 +9892,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -16190,7 +9920,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0083-000000000002}, !- Handle + {00000000-0000-0000-0079-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -16218,7 +9948,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0083-000000000003}, !- Handle + {00000000-0000-0000-0079-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -16242,9 +9972,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0080-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0086-000000000002}, !- Space Type Name + {00000000-0000-0000-0082-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16252,16 +9982,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0094-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000002}, !- Handle + {00000000-0000-0000-0080-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16269,16 +9999,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000003}, !- Handle + {00000000-0000-0000-0080-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16286,16 +10016,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000004}, !- Handle + {00000000-0000-0000-0080-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16303,16 +10033,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000005}, !- Handle + {00000000-0000-0000-0080-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16320,16 +10050,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0094-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000006}, !- Handle + {00000000-0000-0000-0080-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16337,16 +10067,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000007}, !- Handle + {00000000-0000-0000-0080-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16354,16 +10084,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000008}, !- Handle + {00000000-0000-0000-0080-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16371,16 +10101,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000009}, !- Handle + {00000000-0000-0000-0080-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0086-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16388,16 +10118,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000010}, !- Handle + {00000000-0000-0000-0080-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0086-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16405,16 +10135,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000011}, !- Handle + {00000000-0000-0000-0080-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16422,16 +10152,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000012}, !- Handle + {00000000-0000-0000-0080-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16439,16 +10169,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000013}, !- Handle + {00000000-0000-0000-0080-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16456,16 +10186,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000014}, !- Handle + {00000000-0000-0000-0080-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16473,16 +10203,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000015}, !- Handle + {00000000-0000-0000-0080-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16490,16 +10220,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000016}, !- Handle + {00000000-0000-0000-0080-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16507,16 +10237,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000017}, !- Handle + {00000000-0000-0000-0080-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16524,16 +10254,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000018}, !- Handle + {00000000-0000-0000-0080-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16541,16 +10271,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000019}, !- Handle + {00000000-0000-0000-0080-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16558,16 +10288,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000020}, !- Handle + {00000000-0000-0000-0080-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16575,16 +10305,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000021}, !- Handle + {00000000-0000-0000-0080-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16592,16 +10322,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000022}, !- Handle + {00000000-0000-0000-0080-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16609,16 +10339,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000023}, !- Handle + {00000000-0000-0000-0080-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0086-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16626,17 +10356,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0084-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16648,10 +10378,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0084-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16663,10 +10393,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000003}, !- Handle + {00000000-0000-0000-0081-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0084-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16678,10 +10408,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000004}, !- Handle + {00000000-0000-0000-0081-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0084-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16693,10 +10423,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000005}, !- Handle + {00000000-0000-0000-0081-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0084-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16708,10 +10438,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000006}, !- Handle + {00000000-0000-0000-0081-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0084-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16723,10 +10453,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000007}, !- Handle + {00000000-0000-0000-0081-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0084-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16738,10 +10468,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000008}, !- Handle + {00000000-0000-0000-0081-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0084-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16753,10 +10483,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000009}, !- Handle + {00000000-0000-0000-0081-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0084-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16768,10 +10498,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000010}, !- Handle + {00000000-0000-0000-0081-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0084-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16783,10 +10513,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000011}, !- Handle + {00000000-0000-0000-0081-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0084-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16798,10 +10528,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000012}, !- Handle + {00000000-0000-0000-0081-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0084-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16813,10 +10543,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000013}, !- Handle + {00000000-0000-0000-0081-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0084-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16828,10 +10558,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000014}, !- Handle + {00000000-0000-0000-0081-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0084-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16843,10 +10573,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000015}, !- Handle + {00000000-0000-0000-0081-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0084-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16858,46 +10588,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0082-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000031}, !- Group Rendering Name {00000000-0000-0000-0035-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0086-000000000002}, !- Handle + {00000000-0000-0000-0082-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000033}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000033}, !- Group Rendering Name {00000000-0000-0000-0035-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical room-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0086-000000000003}, !- Handle + {00000000-0000-0000-0082-000000000003}, !- Handle Space Function Office open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000037}, !- Group Rendering Name {00000000-0000-0000-0035-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle {00000000-0000-0000-0023-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000002}, !- Handle + {00000000-0000-0000-0083-000000000002}, !- Handle {00000000-0000-0000-0023-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16906,7 +10636,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000003}, !- Handle + {00000000-0000-0000-0083-000000000003}, !- Handle {00000000-0000-0000-0023-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16915,7 +10645,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000004}, !- Handle + {00000000-0000-0000-0083-000000000004}, !- Handle {00000000-0000-0000-0023-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -16924,25 +10654,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000005}, !- Handle + {00000000-0000-0000-0083-000000000005}, !- Handle {00000000-0000-0000-0023-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000006}, !- Handle + {00000000-0000-0000-0083-000000000006}, !- Handle {00000000-0000-0000-0023-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000007}, !- Handle + {00000000-0000-0000-0083-000000000007}, !- Handle {00000000-0000-0000-0023-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000008}, !- Handle + {00000000-0000-0000-0083-000000000008}, !- Handle {00000000-0000-0000-0023-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16951,7 +10681,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000009}, !- Handle + {00000000-0000-0000-0083-000000000009}, !- Handle {00000000-0000-0000-0023-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16960,7 +10690,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000010}, !- Handle + {00000000-0000-0000-0083-000000000010}, !- Handle {00000000-0000-0000-0023-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16969,12 +10699,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000011}, !- Handle + {00000000-0000-0000-0083-000000000011}, !- Handle {00000000-0000-0000-0023-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000012}, !- Handle + {00000000-0000-0000-0083-000000000012}, !- Handle {00000000-0000-0000-0023-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -16983,12 +10713,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000013}, !- Handle + {00000000-0000-0000-0083-000000000013}, !- Handle {00000000-0000-0000-0023-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000014}, !- Handle + {00000000-0000-0000-0083-000000000014}, !- Handle {00000000-0000-0000-0023-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -16997,34 +10727,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000015}, !- Handle + {00000000-0000-0000-0083-000000000015}, !- Handle {00000000-0000-0000-0023-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000016}, !- Handle + {00000000-0000-0000-0083-000000000016}, !- Handle {00000000-0000-0000-0023-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000017}, !- Handle + {00000000-0000-0000-0083-000000000017}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000018}, !- Handle + {00000000-0000-0000-0083-000000000018}, !- Handle {00000000-0000-0000-0023-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000019}, !- Handle + {00000000-0000-0000-0083-000000000019}, !- Handle {00000000-0000-0000-0023-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000020}, !- Handle + {00000000-0000-0000-0083-000000000020}, !- Handle {00000000-0000-0000-0023-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -17033,7 +10763,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000021}, !- Handle + {00000000-0000-0000-0083-000000000021}, !- Handle {00000000-0000-0000-0023-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -17042,7 +10772,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000022}, !- Handle + {00000000-0000-0000-0083-000000000022}, !- Handle {00000000-0000-0000-0023-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -17051,7 +10781,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000023}, !- Handle + {00000000-0000-0000-0083-000000000023}, !- Handle {00000000-0000-0000-0023-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -17060,7 +10790,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000024}, !- Handle + {00000000-0000-0000-0083-000000000024}, !- Handle {00000000-0000-0000-0023-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -17069,7 +10799,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000025}, !- Handle + {00000000-0000-0000-0083-000000000025}, !- Handle {00000000-0000-0000-0023-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -17078,7 +10808,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000026}, !- Handle + {00000000-0000-0000-0083-000000000026}, !- Handle {00000000-0000-0000-0023-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -17087,7 +10817,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000027}, !- Handle + {00000000-0000-0000-0083-000000000027}, !- Handle {00000000-0000-0000-0023-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -17096,135 +10826,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000001}, !- Handle - {00000000-0000-0000-0050-000000000021}; !- Material Name + {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0046-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000002}, !- Handle - {00000000-0000-0000-0051-000000000013}; !- Material Name + {00000000-0000-0000-0084-000000000002}, !- Handle + {00000000-0000-0000-0047-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000003}, !- Handle - {00000000-0000-0000-0050-000000000008}; !- Material Name + {00000000-0000-0000-0084-000000000003}, !- Handle + {00000000-0000-0000-0046-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000004}, !- Handle - {00000000-0000-0000-0051-000000000007}; !- Material Name + {00000000-0000-0000-0084-000000000004}, !- Handle + {00000000-0000-0000-0047-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000005}, !- Handle - {00000000-0000-0000-0050-000000000006}; !- Material Name + {00000000-0000-0000-0084-000000000005}, !- Handle + {00000000-0000-0000-0046-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000006}, !- Handle - {00000000-0000-0000-0050-000000000014}; !- Material Name + {00000000-0000-0000-0084-000000000006}, !- Handle + {00000000-0000-0000-0046-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000007}, !- Handle - {00000000-0000-0000-0050-000000000002}; !- Material Name + {00000000-0000-0000-0084-000000000007}, !- Handle + {00000000-0000-0000-0046-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000008}, !- Handle - {00000000-0000-0000-0050-000000000024}; !- Material Name + {00000000-0000-0000-0084-000000000008}, !- Handle + {00000000-0000-0000-0046-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000009}, !- Handle - {00000000-0000-0000-0050-000000000003}; !- Material Name + {00000000-0000-0000-0084-000000000009}, !- Handle + {00000000-0000-0000-0046-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000010}, !- Handle - {00000000-0000-0000-0050-000000000019}; !- Material Name + {00000000-0000-0000-0084-000000000010}, !- Handle + {00000000-0000-0000-0046-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000011}, !- Handle - {00000000-0000-0000-0050-000000000012}; !- Material Name + {00000000-0000-0000-0084-000000000011}, !- Handle + {00000000-0000-0000-0046-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000012}, !- Handle - {00000000-0000-0000-0104-000000000001}; !- Material Name + {00000000-0000-0000-0084-000000000012}, !- Handle + {00000000-0000-0000-0100-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000013}, !- Handle - {00000000-0000-0000-0050-000000000018}; !- Material Name + {00000000-0000-0000-0084-000000000013}, !- Handle + {00000000-0000-0000-0046-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000014}, !- Handle - {00000000-0000-0000-0051-000000000008}; !- Material Name + {00000000-0000-0000-0084-000000000014}, !- Handle + {00000000-0000-0000-0047-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000015}, !- Handle - {00000000-0000-0000-0050-000000000007}; !- Material Name + {00000000-0000-0000-0084-000000000015}, !- Handle + {00000000-0000-0000-0046-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000016}, !- Handle - {00000000-0000-0000-0051-000000000003}; !- Material Name + {00000000-0000-0000-0084-000000000016}, !- Handle + {00000000-0000-0000-0047-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000017}, !- Handle - {00000000-0000-0000-0050-000000000005}; !- Material Name + {00000000-0000-0000-0084-000000000017}, !- Handle + {00000000-0000-0000-0046-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000018}, !- Handle - {00000000-0000-0000-0050-000000000013}; !- Material Name + {00000000-0000-0000-0084-000000000018}, !- Handle + {00000000-0000-0000-0046-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000019}, !- Handle - {00000000-0000-0000-0051-000000000009}; !- Material Name + {00000000-0000-0000-0084-000000000019}, !- Handle + {00000000-0000-0000-0047-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000020}, !- Handle - {00000000-0000-0000-0050-000000000001}; !- Material Name + {00000000-0000-0000-0084-000000000020}, !- Handle + {00000000-0000-0000-0046-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000021}, !- Handle - {00000000-0000-0000-0050-000000000023}; !- Material Name + {00000000-0000-0000-0084-000000000021}, !- Handle + {00000000-0000-0000-0046-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000022}, !- Handle - {00000000-0000-0000-0051-000000000010}; !- Material Name + {00000000-0000-0000-0084-000000000022}, !- Handle + {00000000-0000-0000-0047-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000023}, !- Handle - {00000000-0000-0000-0050-000000000009}; !- Material Name + {00000000-0000-0000-0084-000000000023}, !- Handle + {00000000-0000-0000-0046-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000024}, !- Handle - {00000000-0000-0000-0051-000000000004}; !- Material Name + {00000000-0000-0000-0084-000000000024}, !- Handle + {00000000-0000-0000-0047-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000025}, !- Handle - {00000000-0000-0000-0050-000000000010}; !- Material Name + {00000000-0000-0000-0084-000000000025}, !- Handle + {00000000-0000-0000-0046-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000026}, !- Handle - {00000000-0000-0000-0051-000000000005}; !- Material Name + {00000000-0000-0000-0084-000000000026}, !- Handle + {00000000-0000-0000-0047-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000027}, !- Handle - {00000000-0000-0000-0050-000000000011}; !- Material Name + {00000000-0000-0000-0084-000000000027}, !- Handle + {00000000-0000-0000-0046-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000028}, !- Handle - {00000000-0000-0000-0051-000000000006}; !- Material Name + {00000000-0000-0000-0084-000000000028}, !- Handle + {00000000-0000-0000-0047-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000029}, !- Handle - {00000000-0000-0000-0050-000000000017}; !- Material Name + {00000000-0000-0000-0084-000000000029}, !- Handle + {00000000-0000-0000-0046-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000030}, !- Handle - {00000000-0000-0000-0051-000000000011}; !- Material Name + {00000000-0000-0000-0084-000000000030}, !- Handle + {00000000-0000-0000-0047-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000031}, !- Handle - {00000000-0000-0000-0051-000000000012}; !- Material Name + {00000000-0000-0000-0084-000000000031}, !- Handle + {00000000-0000-0000-0047-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0085-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000098}, !- Surface Name + {00000000-0000-0000-0086-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17236,11 +10966,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000002}, !- Handle + {00000000-0000-0000-0085-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000103}, !- Surface Name + {00000000-0000-0000-0086-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17252,11 +10982,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000003}, !- Handle + {00000000-0000-0000-0085-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000110}, !- Surface Name + {00000000-0000-0000-0086-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17268,11 +10998,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000004}, !- Handle + {00000000-0000-0000-0085-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000119}, !- Surface Name + {00000000-0000-0000-0086-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17284,11 +11014,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000005}, !- Handle + {00000000-0000-0000-0085-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000125}, !- Surface Name + {00000000-0000-0000-0086-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17300,11 +11030,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000006}, !- Handle + {00000000-0000-0000-0085-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000129}, !- Surface Name + {00000000-0000-0000-0086-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17316,11 +11046,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000007}, !- Handle + {00000000-0000-0000-0085-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000135}, !- Surface Name + {00000000-0000-0000-0086-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17332,11 +11062,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000008}, !- Handle + {00000000-0000-0000-0085-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000143}, !- Surface Name + {00000000-0000-0000-0086-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17348,11 +11078,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000009}, !- Handle + {00000000-0000-0000-0085-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000147}, !- Surface Name + {00000000-0000-0000-0086-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17364,11 +11094,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000010}, !- Handle + {00000000-0000-0000-0085-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000151}, !- Surface Name + {00000000-0000-0000-0086-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17380,11 +11110,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000011}, !- Handle + {00000000-0000-0000-0085-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000157}, !- Surface Name + {00000000-0000-0000-0086-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17396,11 +11126,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000012}, !- Handle + {00000000-0000-0000-0085-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000165}, !- Surface Name + {00000000-0000-0000-0086-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17412,13 +11142,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17429,13 +11159,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17446,13 +11176,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17463,13 +11193,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000004}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17480,13 +11210,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000005}, !- Handle + {00000000-0000-0000-0086-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17497,11 +11227,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000006}, !- Handle + {00000000-0000-0000-0086-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17514,13 +11244,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000007}, !- Handle + {00000000-0000-0000-0086-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17531,13 +11261,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000008}, !- Handle + {00000000-0000-0000-0086-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17548,13 +11278,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000009}, !- Handle + {00000000-0000-0000-0086-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17565,13 +11295,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000010}, !- Handle + {00000000-0000-0000-0086-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17582,13 +11312,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000011}, !- Handle + {00000000-0000-0000-0086-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17599,13 +11329,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000012}, !- Handle + {00000000-0000-0000-0086-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17616,13 +11346,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000013}, !- Handle + {00000000-0000-0000-0086-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17633,13 +11363,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000014}, !- Handle + {00000000-0000-0000-0086-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17650,13 +11380,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000015}, !- Handle + {00000000-0000-0000-0086-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17667,13 +11397,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000016}, !- Handle + {00000000-0000-0000-0086-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17684,13 +11414,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000017}, !- Handle + {00000000-0000-0000-0086-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17701,13 +11431,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000018}, !- Handle + {00000000-0000-0000-0086-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17718,13 +11448,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000019}, !- Handle + {00000000-0000-0000-0086-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17735,11 +11465,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000020}, !- Handle + {00000000-0000-0000-0086-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17752,13 +11482,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000021}, !- Handle + {00000000-0000-0000-0086-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17769,13 +11499,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000022}, !- Handle + {00000000-0000-0000-0086-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17786,13 +11516,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000023}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17803,13 +11533,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000024}, !- Handle + {00000000-0000-0000-0086-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17820,13 +11550,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000025}, !- Handle + {00000000-0000-0000-0086-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17837,13 +11567,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000026}, !- Handle + {00000000-0000-0000-0086-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17854,13 +11584,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000027}, !- Handle + {00000000-0000-0000-0086-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17871,13 +11601,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000028}, !- Handle + {00000000-0000-0000-0086-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17888,13 +11618,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000029}, !- Handle + {00000000-0000-0000-0086-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17905,11 +11635,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000030}, !- Handle + {00000000-0000-0000-0086-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17922,13 +11652,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000031}, !- Handle + {00000000-0000-0000-0086-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17939,13 +11669,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000032}, !- Handle + {00000000-0000-0000-0086-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17956,13 +11686,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000033}, !- Handle + {00000000-0000-0000-0086-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17973,13 +11703,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000034}, !- Handle + {00000000-0000-0000-0086-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17990,13 +11720,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000035}, !- Handle + {00000000-0000-0000-0086-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18007,13 +11737,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000036}, !- Handle + {00000000-0000-0000-0086-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18024,13 +11754,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000037}, !- Handle + {00000000-0000-0000-0086-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18041,13 +11771,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000038}, !- Handle + {00000000-0000-0000-0086-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18058,13 +11788,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000039}, !- Handle + {00000000-0000-0000-0086-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18075,13 +11805,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000040}, !- Handle + {00000000-0000-0000-0086-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18092,13 +11822,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000041}, !- Handle + {00000000-0000-0000-0086-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18109,13 +11839,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000042}, !- Handle + {00000000-0000-0000-0086-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18126,13 +11856,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000043}, !- Handle + {00000000-0000-0000-0086-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18143,13 +11873,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000044}, !- Handle + {00000000-0000-0000-0086-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18160,13 +11890,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000045}, !- Handle + {00000000-0000-0000-0086-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18177,13 +11907,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000046}, !- Handle + {00000000-0000-0000-0086-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18194,13 +11924,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000047}, !- Handle + {00000000-0000-0000-0086-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18211,13 +11941,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000048}, !- Handle + {00000000-0000-0000-0086-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18228,13 +11958,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000049}, !- Handle + {00000000-0000-0000-0086-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18245,13 +11975,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000050}, !- Handle + {00000000-0000-0000-0086-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18262,13 +11992,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000051}, !- Handle + {00000000-0000-0000-0086-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18279,13 +12009,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000052}, !- Handle + {00000000-0000-0000-0086-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18296,13 +12026,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000053}, !- Handle + {00000000-0000-0000-0086-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18313,13 +12043,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000054}, !- Handle + {00000000-0000-0000-0086-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18330,13 +12060,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000055}, !- Handle + {00000000-0000-0000-0086-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18347,13 +12077,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000056}, !- Handle + {00000000-0000-0000-0086-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18364,13 +12094,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000057}, !- Handle + {00000000-0000-0000-0086-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18381,13 +12111,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000058}, !- Handle + {00000000-0000-0000-0086-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18398,13 +12128,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000059}, !- Handle + {00000000-0000-0000-0086-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18415,11 +12145,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000060}, !- Handle + {00000000-0000-0000-0086-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18432,13 +12162,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000061}, !- Handle + {00000000-0000-0000-0086-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18449,13 +12179,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000062}, !- Handle + {00000000-0000-0000-0086-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18466,13 +12196,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000063}, !- Handle + {00000000-0000-0000-0086-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18483,13 +12213,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000064}, !- Handle + {00000000-0000-0000-0086-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18500,13 +12230,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000065}, !- Handle + {00000000-0000-0000-0086-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18517,13 +12247,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000066}, !- Handle + {00000000-0000-0000-0086-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18534,13 +12264,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000067}, !- Handle + {00000000-0000-0000-0086-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18551,13 +12281,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000068}, !- Handle + {00000000-0000-0000-0086-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18568,13 +12298,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000069}, !- Handle + {00000000-0000-0000-0086-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18585,11 +12315,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000070}, !- Handle + {00000000-0000-0000-0086-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18602,13 +12332,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000071}, !- Handle + {00000000-0000-0000-0086-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18619,13 +12349,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000072}, !- Handle + {00000000-0000-0000-0086-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18636,13 +12366,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000073}, !- Handle + {00000000-0000-0000-0086-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18653,13 +12383,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000074}, !- Handle + {00000000-0000-0000-0086-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18670,13 +12400,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000075}, !- Handle + {00000000-0000-0000-0086-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18687,13 +12417,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000076}, !- Handle + {00000000-0000-0000-0086-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18704,13 +12434,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000077}, !- Handle + {00000000-0000-0000-0086-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18721,13 +12451,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000078}, !- Handle + {00000000-0000-0000-0086-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18738,13 +12468,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000079}, !- Handle + {00000000-0000-0000-0086-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18755,11 +12485,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000080}, !- Handle + {00000000-0000-0000-0086-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18772,11 +12502,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000081}, !- Handle + {00000000-0000-0000-0086-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18789,11 +12519,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000082}, !- Handle + {00000000-0000-0000-0086-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18806,11 +12536,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000083}, !- Handle + {00000000-0000-0000-0086-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18823,11 +12553,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000084}, !- Handle + {00000000-0000-0000-0086-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18840,13 +12570,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000085}, !- Handle + {00000000-0000-0000-0086-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18857,13 +12587,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000086}, !- Handle + {00000000-0000-0000-0086-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18874,11 +12604,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000087}, !- Handle + {00000000-0000-0000-0086-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18891,11 +12621,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000088}, !- Handle + {00000000-0000-0000-0086-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18908,11 +12638,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000089}, !- Handle + {00000000-0000-0000-0086-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18925,11 +12655,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000090}, !- Handle + {00000000-0000-0000-0086-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18942,11 +12672,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000091}, !- Handle + {00000000-0000-0000-0086-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18959,13 +12689,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000092}, !- Handle + {00000000-0000-0000-0086-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18976,13 +12706,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000093}, !- Handle + {00000000-0000-0000-0086-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18993,13 +12723,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000094}, !- Handle + {00000000-0000-0000-0086-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -19010,13 +12740,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000095}, !- Handle + {00000000-0000-0000-0086-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -19027,13 +12757,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000096}, !- Handle + {00000000-0000-0000-0086-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19044,13 +12774,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000097}, !- Handle + {00000000-0000-0000-0086-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19061,11 +12791,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000098}, !- Handle + {00000000-0000-0000-0086-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19078,13 +12808,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000099}, !- Handle + {00000000-0000-0000-0086-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19095,13 +12825,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000100}, !- Handle + {00000000-0000-0000-0086-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19112,13 +12842,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000101}, !- Handle + {00000000-0000-0000-0086-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19129,13 +12859,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000102}, !- Handle + {00000000-0000-0000-0086-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19146,11 +12876,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000103}, !- Handle + {00000000-0000-0000-0086-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19163,13 +12893,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000104}, !- Handle + {00000000-0000-0000-0086-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19180,13 +12910,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000105}, !- Handle + {00000000-0000-0000-0086-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19197,13 +12927,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000106}, !- Handle + {00000000-0000-0000-0086-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19214,13 +12944,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000107}, !- Handle + {00000000-0000-0000-0086-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19231,13 +12961,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000108}, !- Handle + {00000000-0000-0000-0086-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19248,13 +12978,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000109}, !- Handle + {00000000-0000-0000-0086-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -19265,11 +12995,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000110}, !- Handle + {00000000-0000-0000-0086-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19282,13 +13012,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000111}, !- Handle + {00000000-0000-0000-0086-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19299,13 +13029,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000112}, !- Handle + {00000000-0000-0000-0086-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19316,13 +13046,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000113}, !- Handle + {00000000-0000-0000-0086-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19333,13 +13063,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000114}, !- Handle + {00000000-0000-0000-0086-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19350,13 +13080,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000115}, !- Handle + {00000000-0000-0000-0086-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -19367,13 +13097,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000116}, !- Handle + {00000000-0000-0000-0086-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -19384,13 +13114,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000117}, !- Handle + {00000000-0000-0000-0086-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19401,13 +13131,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000118}, !- Handle + {00000000-0000-0000-0086-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19418,11 +13148,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000119}, !- Handle + {00000000-0000-0000-0086-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19435,13 +13165,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000120}, !- Handle + {00000000-0000-0000-0086-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19452,13 +13182,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000121}, !- Handle + {00000000-0000-0000-0086-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19469,11 +13199,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000122}, !- Handle + {00000000-0000-0000-0086-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19486,13 +13216,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000123}, !- Handle + {00000000-0000-0000-0086-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19503,13 +13233,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000124}, !- Handle + {00000000-0000-0000-0086-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19520,11 +13250,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000125}, !- Handle + {00000000-0000-0000-0086-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19537,13 +13267,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000126}, !- Handle + {00000000-0000-0000-0086-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19554,13 +13284,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000127}, !- Handle + {00000000-0000-0000-0086-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19571,11 +13301,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000128}, !- Handle + {00000000-0000-0000-0086-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19588,11 +13318,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000129}, !- Handle + {00000000-0000-0000-0086-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19605,13 +13335,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000130}, !- Handle + {00000000-0000-0000-0086-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19622,13 +13352,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000131}, !- Handle + {00000000-0000-0000-0086-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19639,13 +13369,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000132}, !- Handle + {00000000-0000-0000-0086-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19656,13 +13386,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000133}, !- Handle + {00000000-0000-0000-0086-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19673,11 +13403,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000134}, !- Handle + {00000000-0000-0000-0086-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19690,11 +13420,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000135}, !- Handle + {00000000-0000-0000-0086-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19707,13 +13437,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000136}, !- Handle + {00000000-0000-0000-0086-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19724,13 +13454,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000137}, !- Handle + {00000000-0000-0000-0086-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19741,13 +13471,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000138}, !- Handle + {00000000-0000-0000-0086-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19758,13 +13488,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000139}, !- Handle + {00000000-0000-0000-0086-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19775,11 +13505,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000140}, !- Handle + {00000000-0000-0000-0086-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19792,13 +13522,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000141}, !- Handle + {00000000-0000-0000-0086-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19809,13 +13539,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000142}, !- Handle + {00000000-0000-0000-0086-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19826,11 +13556,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000143}, !- Handle + {00000000-0000-0000-0086-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19843,13 +13573,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000144}, !- Handle + {00000000-0000-0000-0086-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19860,13 +13590,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000145}, !- Handle + {00000000-0000-0000-0086-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19877,11 +13607,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000146}, !- Handle + {00000000-0000-0000-0086-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19894,11 +13624,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000147}, !- Handle + {00000000-0000-0000-0086-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19911,13 +13641,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000148}, !- Handle + {00000000-0000-0000-0086-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19928,13 +13658,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000149}, !- Handle + {00000000-0000-0000-0086-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19945,11 +13675,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000150}, !- Handle + {00000000-0000-0000-0086-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19962,11 +13692,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000151}, !- Handle + {00000000-0000-0000-0086-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19979,13 +13709,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000152}, !- Handle + {00000000-0000-0000-0086-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19996,13 +13726,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000153}, !- Handle + {00000000-0000-0000-0086-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20013,13 +13743,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000154}, !- Handle + {00000000-0000-0000-0086-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20030,13 +13760,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000155}, !- Handle + {00000000-0000-0000-0086-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20047,11 +13777,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000156}, !- Handle + {00000000-0000-0000-0086-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20064,11 +13794,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000157}, !- Handle + {00000000-0000-0000-0086-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20081,13 +13811,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000158}, !- Handle + {00000000-0000-0000-0086-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20098,13 +13828,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000159}, !- Handle + {00000000-0000-0000-0086-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20115,13 +13845,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000160}, !- Handle + {00000000-0000-0000-0086-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20132,13 +13862,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000161}, !- Handle + {00000000-0000-0000-0086-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20149,11 +13879,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000162}, !- Handle + {00000000-0000-0000-0086-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20166,13 +13896,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000163}, !- Handle + {00000000-0000-0000-0086-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20183,13 +13913,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000164}, !- Handle + {00000000-0000-0000-0086-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20200,11 +13930,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000165}, !- Handle + {00000000-0000-0000-0086-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20217,11 +13947,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000166}, !- Handle + {00000000-0000-0000-0086-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20234,11 +13964,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000167}, !- Handle + {00000000-0000-0000-0086-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20251,11 +13981,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000168}, !- Handle + {00000000-0000-0000-0086-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20268,11 +13998,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000169}, !- Handle + {00000000-0000-0000-0086-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20285,27 +14015,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0087-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0093-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000044}, !- Surface Name + {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0093-000000000002}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Surface Name + {00000000-0000-0000-0089-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20314,21 +14044,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000007}, !- Thermostat Name + {00000000-0000-0000-0058-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20337,21 +14067,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000009}, !- Thermostat Name + {00000000-0000-0000-0058-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20360,21 +14090,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000008}, !- Thermostat Name + {00000000-0000-0000-0058-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20383,21 +14113,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000058}, !- Thermostat Name + {00000000-0000-0000-0058-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20406,21 +14136,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000052}, !- Thermostat Name + {00000000-0000-0000-0058-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20429,21 +14159,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000053}, !- Thermostat Name + {00000000-0000-0000-0058-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20452,21 +14182,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000060}, !- Thermostat Name + {00000000-0000-0000-0058-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20475,21 +14205,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000065}, !- Thermostat Name + {00000000-0000-0000-0058-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20498,21 +14228,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000067}, !- Thermostat Name + {00000000-0000-0000-0058-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20521,21 +14251,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000047}, !- Thermostat Name + {00000000-0000-0000-0058-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20544,21 +14274,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000055}, !- Thermostat Name + {00000000-0000-0000-0058-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20567,21 +14297,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000057}, !- Thermostat Name + {00000000-0000-0000-0058-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20590,21 +14320,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000062}, !- Thermostat Name + {00000000-0000-0000-0058-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20613,21 +14343,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000064}, !- Thermostat Name + {00000000-0000-0000-0058-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20636,21 +14366,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000066}, !- Thermostat Name + {00000000-0000-0000-0058-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20659,21 +14389,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000050}, !- Thermostat Name + {00000000-0000-0000-0058-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20682,21 +14412,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000051}, !- Thermostat Name + {00000000-0000-0000-0058-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20705,21 +14435,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000054}, !- Thermostat Name + {00000000-0000-0000-0058-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20728,21 +14458,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000056}, !- Thermostat Name + {00000000-0000-0000-0058-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20751,21 +14481,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000061}, !- Thermostat Name + {00000000-0000-0000-0058-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20774,21 +14504,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000063}, !- Thermostat Name + {00000000-0000-0000-0058-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20797,21 +14527,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000049}, !- Thermostat Name + {00000000-0000-0000-0058-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20820,444 +14550,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000013}, !- Thermostat Name + {00000000-0000-0000-0058-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0091-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000002}, !- Handle + {00000000-0000-0000-0091-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000003}, !- Handle + {00000000-0000-0000-0091-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000004}, !- Handle + {00000000-0000-0000-0091-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000005}, !- Handle + {00000000-0000-0000-0091-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000006}, !- Handle + {00000000-0000-0000-0091-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000007}, !- Handle + {00000000-0000-0000-0091-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000008}, !- Handle + {00000000-0000-0000-0091-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000009}, !- Handle + {00000000-0000-0000-0091-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000010}, !- Handle + {00000000-0000-0000-0091-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000011}, !- Handle + {00000000-0000-0000-0091-000000000011}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000012}, !- Handle + {00000000-0000-0000-0091-000000000012}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000013}, !- Handle + {00000000-0000-0000-0091-000000000013}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000014}, !- Handle + {00000000-0000-0000-0091-000000000014}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000015}, !- Handle + {00000000-0000-0000-0091-000000000015}, !- Handle Space Function Office open plan Thermostat 1, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000016}, !- Handle + {00000000-0000-0000-0091-000000000016}, !- Handle Space Function Office open plan Thermostat 10, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000017}, !- Handle + {00000000-0000-0000-0091-000000000017}, !- Handle Space Function Office open plan Thermostat 11, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000018}, !- Handle + {00000000-0000-0000-0091-000000000018}, !- Handle Space Function Office open plan Thermostat 12, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000019}, !- Handle + {00000000-0000-0000-0091-000000000019}, !- Handle Space Function Office open plan Thermostat 13, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000020}, !- Handle + {00000000-0000-0000-0091-000000000020}, !- Handle Space Function Office open plan Thermostat 14, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000021}, !- Handle + {00000000-0000-0000-0091-000000000021}, !- Handle Space Function Office open plan Thermostat 15, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000022}, !- Handle + {00000000-0000-0000-0091-000000000022}, !- Handle Space Function Office open plan Thermostat 16, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000023}, !- Handle + {00000000-0000-0000-0091-000000000023}, !- Handle Space Function Office open plan Thermostat 17, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000024}, !- Handle + {00000000-0000-0000-0091-000000000024}, !- Handle Space Function Office open plan Thermostat 18, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000025}, !- Handle + {00000000-0000-0000-0091-000000000025}, !- Handle Space Function Office open plan Thermostat 19, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000026}, !- Handle + {00000000-0000-0000-0091-000000000026}, !- Handle Space Function Office open plan Thermostat 2, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000027}, !- Handle + {00000000-0000-0000-0091-000000000027}, !- Handle Space Function Office open plan Thermostat 20, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000028}, !- Handle + {00000000-0000-0000-0091-000000000028}, !- Handle Space Function Office open plan Thermostat 21, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000029}, !- Handle + {00000000-0000-0000-0091-000000000029}, !- Handle Space Function Office open plan Thermostat 22, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000030}, !- Handle + {00000000-0000-0000-0091-000000000030}, !- Handle Space Function Office open plan Thermostat 23, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000031}, !- Handle + {00000000-0000-0000-0091-000000000031}, !- Handle Space Function Office open plan Thermostat 24, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000032}, !- Handle + {00000000-0000-0000-0091-000000000032}, !- Handle Space Function Office open plan Thermostat 25, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000033}, !- Handle + {00000000-0000-0000-0091-000000000033}, !- Handle Space Function Office open plan Thermostat 26, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000034}, !- Handle + {00000000-0000-0000-0091-000000000034}, !- Handle Space Function Office open plan Thermostat 27, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000035}, !- Handle + {00000000-0000-0000-0091-000000000035}, !- Handle Space Function Office open plan Thermostat 28, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000036}, !- Handle + {00000000-0000-0000-0091-000000000036}, !- Handle Space Function Office open plan Thermostat 29, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000037}, !- Handle + {00000000-0000-0000-0091-000000000037}, !- Handle Space Function Office open plan Thermostat 3, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000038}, !- Handle + {00000000-0000-0000-0091-000000000038}, !- Handle Space Function Office open plan Thermostat 30, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000039}, !- Handle + {00000000-0000-0000-0091-000000000039}, !- Handle Space Function Office open plan Thermostat 31, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000040}, !- Handle + {00000000-0000-0000-0091-000000000040}, !- Handle Space Function Office open plan Thermostat 32, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000041}, !- Handle + {00000000-0000-0000-0091-000000000041}, !- Handle Space Function Office open plan Thermostat 33, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000042}, !- Handle + {00000000-0000-0000-0091-000000000042}, !- Handle Space Function Office open plan Thermostat 34, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000043}, !- Handle + {00000000-0000-0000-0091-000000000043}, !- Handle Space Function Office open plan Thermostat 35, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000044}, !- Handle + {00000000-0000-0000-0091-000000000044}, !- Handle Space Function Office open plan Thermostat 36, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000045}, !- Handle + {00000000-0000-0000-0091-000000000045}, !- Handle Space Function Office open plan Thermostat 37, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000046}, !- Handle + {00000000-0000-0000-0091-000000000046}, !- Handle Space Function Office open plan Thermostat 38, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000047}, !- Handle + {00000000-0000-0000-0091-000000000047}, !- Handle Space Function Office open plan Thermostat 39, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000048}, !- Handle + {00000000-0000-0000-0091-000000000048}, !- Handle Space Function Office open plan Thermostat 4, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000049}, !- Handle + {00000000-0000-0000-0091-000000000049}, !- Handle Space Function Office open plan Thermostat 40, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000050}, !- Handle + {00000000-0000-0000-0091-000000000050}, !- Handle Space Function Office open plan Thermostat 41, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000051}, !- Handle + {00000000-0000-0000-0091-000000000051}, !- Handle Space Function Office open plan Thermostat 42, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000052}, !- Handle + {00000000-0000-0000-0091-000000000052}, !- Handle Space Function Office open plan Thermostat 43, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000053}, !- Handle + {00000000-0000-0000-0091-000000000053}, !- Handle Space Function Office open plan Thermostat 44, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000054}, !- Handle + {00000000-0000-0000-0091-000000000054}, !- Handle Space Function Office open plan Thermostat 45, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000055}, !- Handle + {00000000-0000-0000-0091-000000000055}, !- Handle Space Function Office open plan Thermostat 46, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000056}, !- Handle + {00000000-0000-0000-0091-000000000056}, !- Handle Space Function Office open plan Thermostat 47, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000057}, !- Handle + {00000000-0000-0000-0091-000000000057}, !- Handle Space Function Office open plan Thermostat 48, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000058}, !- Handle + {00000000-0000-0000-0091-000000000058}, !- Handle Space Function Office open plan Thermostat 49, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000059}, !- Handle + {00000000-0000-0000-0091-000000000059}, !- Handle Space Function Office open plan Thermostat 5, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000060}, !- Handle + {00000000-0000-0000-0091-000000000060}, !- Handle Space Function Office open plan Thermostat 50, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000061}, !- Handle + {00000000-0000-0000-0091-000000000061}, !- Handle Space Function Office open plan Thermostat 51, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000062}, !- Handle + {00000000-0000-0000-0091-000000000062}, !- Handle Space Function Office open plan Thermostat 52, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000063}, !- Handle + {00000000-0000-0000-0091-000000000063}, !- Handle Space Function Office open plan Thermostat 53, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000064}, !- Handle + {00000000-0000-0000-0091-000000000064}, !- Handle Space Function Office open plan Thermostat 54, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000065}, !- Handle + {00000000-0000-0000-0091-000000000065}, !- Handle Space Function Office open plan Thermostat 55, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000066}, !- Handle + {00000000-0000-0000-0091-000000000066}, !- Handle Space Function Office open plan Thermostat 56, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000067}, !- Handle + {00000000-0000-0000-0091-000000000067}, !- Handle Space Function Office open plan Thermostat 57, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000068}, !- Handle + {00000000-0000-0000-0091-000000000068}, !- Handle Space Function Office open plan Thermostat 6, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000069}, !- Handle + {00000000-0000-0000-0091-000000000069}, !- Handle Space Function Office open plan Thermostat 7, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000070}, !- Handle + {00000000-0000-0000-0091-000000000070}, !- Handle Space Function Office open plan Thermostat 8, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000071}, !- Handle + {00000000-0000-0000-0091-000000000071}, !- Handle Space Function Office open plan Thermostat 9, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000072}, !- Handle + {00000000-0000-0000-0091-000000000072}, !- Handle Space Function Office open plan Thermostat, !- Name - {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0093-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle 1089gal NaturalGas Water Heater - 735kBtu/hr 0.805 Therm Eff, !- Name 4.12098554344306, !- Tank Volume {m3} - {00000000-0000-0000-0066-000000000020}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000020}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -21275,7 +15005,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0066-000000000025}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0062-000000000022}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 27.4181861750995, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -21285,8 +15015,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0020-000000000519}, !- Use Side Inlet Node Name - {00000000-0000-0000-0020-000000000520}, !- Use Side Outlet Node Name + {00000000-0000-0000-0020-000000000195}, !- Use Side Inlet Node Name + {00000000-0000-0000-0020-000000000196}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -21299,18 +15029,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0099-000000000001}, !- Handle - {00000000-0000-0000-0098-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle Core_bottom WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000536}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000537}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000212}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000213}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21318,13 +15048,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000002}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Handle Core_mid WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000540}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000541}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000216}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000217}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21332,13 +15062,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000003}, !- Handle + {00000000-0000-0000-0096-000000000003}, !- Handle Core_top WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000544}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000545}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000220}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000221}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21346,13 +15076,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000004}, !- Handle + {00000000-0000-0000-0096-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0020-000000000548}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000549}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000224}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000225}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21360,13 +15090,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000005}, !- Handle + {00000000-0000-0000-0096-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000552}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000553}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000228}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000229}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21374,13 +15104,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000006}, !- Handle + {00000000-0000-0000-0096-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000556}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000557}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000232}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000233}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21388,13 +15118,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000007}, !- Handle + {00000000-0000-0000-0096-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000560}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000561}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000236}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000237}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21402,13 +15132,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000008}, !- Handle + {00000000-0000-0000-0096-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000564}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000565}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000240}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000241}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21416,13 +15146,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000009}, !- Handle + {00000000-0000-0000-0096-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000568}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000569}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000244}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000245}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21430,13 +15160,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000010}, !- Handle + {00000000-0000-0000-0096-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000572}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000573}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000248}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000249}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21444,13 +15174,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000011}, !- Handle + {00000000-0000-0000-0096-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000576}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000577}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000252}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000253}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21458,13 +15188,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000012}, !- Handle + {00000000-0000-0000-0096-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000580}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000581}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000256}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000257}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21472,13 +15202,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000013}, !- Handle + {00000000-0000-0000-0096-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000584}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000585}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000260}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000261}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21486,13 +15216,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000014}, !- Handle + {00000000-0000-0000-0096-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000588}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000589}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000264}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000265}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21500,13 +15230,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000015}, !- Handle + {00000000-0000-0000-0096-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000592}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000593}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000268}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000269}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21514,13 +15244,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000016}, !- Handle + {00000000-0000-0000-0096-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000596}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000597}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000272}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000273}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21528,13 +15258,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000017}, !- Handle + {00000000-0000-0000-0096-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000600}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000601}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000276}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000277}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21542,13 +15272,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000018}, !- Handle + {00000000-0000-0000-0096-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000604}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000605}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000280}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000281}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21556,13 +15286,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000019}, !- Handle + {00000000-0000-0000-0096-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000608}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000609}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000284}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000285}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21570,314 +15300,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle Core_bottom Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0102-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000002}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000002}, !- Handle + {00000000-0000-0000-0097-000000000002}, !- Handle Core_mid Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0102-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000003}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000003}, !- Handle + {00000000-0000-0000-0097-000000000003}, !- Handle Core_top Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0102-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000004}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000004}, !- Handle + {00000000-0000-0000-0097-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0102-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000005}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000005}, !- Handle + {00000000-0000-0000-0097-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0102-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000006}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000006}, !- Handle + {00000000-0000-0000-0097-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0102-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000007}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000007}, !- Handle + {00000000-0000-0000-0097-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0102-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000008}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000008}, !- Handle + {00000000-0000-0000-0097-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000011}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000009}, !- Handle + {00000000-0000-0000-0097-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000012}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000010}, !- Handle + {00000000-0000-0000-0097-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000013}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000011}, !- Handle + {00000000-0000-0000-0097-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000014}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000012}, !- Handle + {00000000-0000-0000-0097-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000015}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000013}, !- Handle + {00000000-0000-0000-0097-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000016}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000014}, !- Handle + {00000000-0000-0000-0097-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000017}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000015}, !- Handle + {00000000-0000-0000-0097-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000018}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000016}, !- Handle + {00000000-0000-0000-0097-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000019}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000017}, !- Handle + {00000000-0000-0000-0097-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000020}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000018}, !- Handle + {00000000-0000-0000-0097-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000021}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000019}, !- Handle + {00000000-0000-0000-0097-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000022}, !- Space Name - {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle Core_bottom 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000002}, !- Handle + {00000000-0000-0000-0098-000000000002}, !- Handle Core_mid 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000003}, !- Handle + {00000000-0000-0000-0098-000000000003}, !- Handle Core_top 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000004}, !- Handle + {00000000-0000-0000-0098-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.87303728009577e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000005}, !- Handle + {00000000-0000-0000-0098-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000006}, !- Handle + {00000000-0000-0000-0098-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000007}, !- Handle + {00000000-0000-0000-0098-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000008}, !- Handle + {00000000-0000-0000-0098-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000009}, !- Handle + {00000000-0000-0000-0098-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000010}, !- Handle + {00000000-0000-0000-0098-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000011}, !- Handle + {00000000-0000-0000-0098-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000012}, !- Handle + {00000000-0000-0000-0098-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000013}, !- Handle + {00000000-0000-0000-0098-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000014}, !- Handle + {00000000-0000-0000-0098-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000015}, !- Handle + {00000000-0000-0000-0098-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000016}, !- Handle + {00000000-0000-0000-0098-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000017}, !- Handle + {00000000-0000-0000-0098-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000018}, !- Handle + {00000000-0000-0000-0098-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000019}, !- Handle + {00000000-0000-0000-0098-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0103-000000000001}, !- Handle + {00000000-0000-0000-0099-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -21893,168 +15623,60 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0104-000000000001}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0104-000000000002}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Handle SimpleGlazing:U=0.190 SHGC=0.600, !- Name 1.9, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0105-000000000001}, !- Handle + {00000000-0000-0000-0101-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000001}, !- Handle + {00000000-0000-0000-0102-000000000001}, !- Handle Zone HVAC Baseboard Convective Water 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0019-000000000001}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 10, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000002}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000003}, !- Handle - Zone HVAC Baseboard Convective Water 11, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000003}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000004}, !- Handle - Zone HVAC Baseboard Convective Water 12, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000004}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000005}, !- Handle - Zone HVAC Baseboard Convective Water 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000005}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000006}, !- Handle - Zone HVAC Baseboard Convective Water 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000006}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000007}, !- Handle - Zone HVAC Baseboard Convective Water 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000007}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000008}, !- Handle - Zone HVAC Baseboard Convective Water 16, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000008}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000009}, !- Handle - Zone HVAC Baseboard Convective Water 17, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000009}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000010}, !- Handle - Zone HVAC Baseboard Convective Water 18, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000010}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000011}, !- Handle - Zone HVAC Baseboard Convective Water 19, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000011}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000012}, !- Handle + {00000000-0000-0000-0102-000000000002}, !- Handle Zone HVAC Baseboard Convective Water 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000012}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000013}, !- Handle - Zone HVAC Baseboard Convective Water 20, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000013}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000014}, !- Handle - Zone HVAC Baseboard Convective Water 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000014}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000015}, !- Handle - Zone HVAC Baseboard Convective Water 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000015}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000016}, !- Handle - Zone HVAC Baseboard Convective Water 5, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000016}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000017}, !- Handle - Zone HVAC Baseboard Convective Water 6, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000017}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000018}, !- Handle - Zone HVAC Baseboard Convective Water 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000018}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000019}, !- Handle - Zone HVAC Baseboard Convective Water 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000019}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000020}, !- Handle - Zone HVAC Baseboard Convective Water 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000020}; !- Heating Coil Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000002}; !- Heating Coil Name OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000001}, !- Handle + {00000000-0000-0000-0103-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000001}, !- Thermal Zone + {00000000-0000-0000-0090-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000002}, !- Handle + {00000000-0000-0000-0103-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000002}, !- Thermal Zone + {00000000-0000-0000-0090-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000003}, !- Handle + {00000000-0000-0000-0103-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000003}, !- Thermal Zone + {00000000-0000-0000-0090-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000004}, !- Handle + {00000000-0000-0000-0103-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000004}, !- Thermal Zone + {00000000-0000-0000-0090-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000012}, !- Zone Equipment 1 + {00000000-0000-0000-0102-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -22066,299 +15688,119 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000005}, !- Handle + {00000000-0000-0000-0103-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000005}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000005}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000006}, !- Handle + {00000000-0000-0000-0103-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000006}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000017}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000006}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000007}, !- Handle + {00000000-0000-0000-0103-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000007}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000007}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000008}, !- Handle + {00000000-0000-0000-0103-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000008}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000018}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000008}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000009}, !- Handle + {00000000-0000-0000-0103-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000016}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000009}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000010}, !- Handle + {00000000-0000-0000-0103-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000019}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000010}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000011}, !- Handle + {00000000-0000-0000-0103-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000011}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000012}, !- Handle + {00000000-0000-0000-0103-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000012}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000013}, !- Handle + {00000000-0000-0000-0103-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000013}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000014}, !- Handle + {00000000-0000-0000-0103-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000020}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000014}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000015}, !- Handle + {00000000-0000-0000-0103-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000015}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000016}, !- Handle + {00000000-0000-0000-0103-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000016}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000017}, !- Handle + {00000000-0000-0000-0103-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000009}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000017}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000018}, !- Handle + {00000000-0000-0000-0103-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000010}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000018}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000019}, !- Handle + {00000000-0000-0000-0103-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000019}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000008}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000019}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000020}, !- Handle + {00000000-0000-0000-0103-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000020}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000011}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000020}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000021}, !- Handle + {00000000-0000-0000-0103-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000021}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000021}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000022}, !- Handle + {00000000-0000-0000-0103-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000022}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000022}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000023}, !- Handle + {00000000-0000-0000-0103-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000023}, !- Thermal Zone + {00000000-0000-0000-0090-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0102-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 0581d53cf1..ddc05b9c27 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000025}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -6389,61 +6389,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2232cea8-ead0-4ae0-94e2-b60aeea56835}<23.9 && {2232cea8-ead0-4ae0-94e2-b60aeea56835}>1.7, !- Program Line 1 - SET {f69f77ec-9cd2-437b-a3b7-7f6dac7dbd82} = 29.4, !- Program Line 2 - SET {3031f80e-2166-492d-b405-65ecc31decaf} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2232cea8-ead0-4ae0-94e2-b60aeea56835}<23.9 && {2232cea8-ead0-4ae0-94e2-b60aeea56835}>1.7, !- Program Line 4 - SET {f69f77ec-9cd2-437b-a3b7-7f6dac7dbd82} = 29.4, !- Program Line 5 - SET {3031f80e-2166-492d-b405-65ecc31decaf} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2232cea8-ead0-4ae0-94e2-b60aeea56835}<23.9 && {2232cea8-ead0-4ae0-94e2-b60aeea56835}>1.7, !- Program Line 7 - SET {f69f77ec-9cd2-437b-a3b7-7f6dac7dbd82} = 29.4, !- Program Line 8 - SET {3031f80e-2166-492d-b405-65ecc31decaf} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2232cea8-ead0-4ae0-94e2-b60aeea56835}<23.9 && {2232cea8-ead0-4ae0-94e2-b60aeea56835}>1.7, !- Program Line 10 - SET {f69f77ec-9cd2-437b-a3b7-7f6dac7dbd82} = 29.4, !- Program Line 11 - SET {3031f80e-2166-492d-b405-65ecc31decaf} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {95bcbe53-71a6-41dd-b291-f985def1a785}<23.9 && {95bcbe53-71a6-41dd-b291-f985def1a785}>1.7, !- Program Line 1 + SET {c7dfe3ce-3def-4d32-828c-c6564ed3099d} = 29.4, !- Program Line 2 + SET {61a0ceeb-fc08-46c6-b2ea-17b437202c3c} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {95bcbe53-71a6-41dd-b291-f985def1a785}<23.9 && {95bcbe53-71a6-41dd-b291-f985def1a785}>1.7, !- Program Line 4 + SET {c7dfe3ce-3def-4d32-828c-c6564ed3099d} = 29.4, !- Program Line 5 + SET {61a0ceeb-fc08-46c6-b2ea-17b437202c3c} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {95bcbe53-71a6-41dd-b291-f985def1a785}<23.9 && {95bcbe53-71a6-41dd-b291-f985def1a785}>1.7, !- Program Line 7 + SET {c7dfe3ce-3def-4d32-828c-c6564ed3099d} = 29.4, !- Program Line 8 + SET {61a0ceeb-fc08-46c6-b2ea-17b437202c3c} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {95bcbe53-71a6-41dd-b291-f985def1a785}<23.9 && {95bcbe53-71a6-41dd-b291-f985def1a785}>1.7, !- Program Line 10 + SET {c7dfe3ce-3def-4d32-828c-c6564ed3099d} = 29.4, !- Program Line 11 + SET {61a0ceeb-fc08-46c6-b2ea-17b437202c3c} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f69f77ec-9cd2-437b-a3b7-7f6dac7dbd82} = NULL, !- Program Line 14 - SET {3031f80e-2166-492d-b405-65ecc31decaf} = NULL, !- Program Line 15 + SET {c7dfe3ce-3def-4d32-828c-c6564ed3099d} = NULL, !- Program Line 14 + SET {61a0ceeb-fc08-46c6-b2ea-17b437202c3c} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9ade9799-4c96-4cbf-a036-895b177e395f}<23.9 && {9ade9799-4c96-4cbf-a036-895b177e395f}>1.7, !- Program Line 1 - SET {39f6e7d1-6b25-4ba4-a893-e38a5b707d14} = 29.4, !- Program Line 2 - SET {efdd1e65-813d-4934-a52c-78151c88164d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9ade9799-4c96-4cbf-a036-895b177e395f}<23.9 && {9ade9799-4c96-4cbf-a036-895b177e395f}>1.7, !- Program Line 4 - SET {39f6e7d1-6b25-4ba4-a893-e38a5b707d14} = 29.4, !- Program Line 5 - SET {efdd1e65-813d-4934-a52c-78151c88164d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9ade9799-4c96-4cbf-a036-895b177e395f}<23.9 && {9ade9799-4c96-4cbf-a036-895b177e395f}>1.7, !- Program Line 7 - SET {39f6e7d1-6b25-4ba4-a893-e38a5b707d14} = 29.4, !- Program Line 8 - SET {efdd1e65-813d-4934-a52c-78151c88164d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9ade9799-4c96-4cbf-a036-895b177e395f}<23.9 && {9ade9799-4c96-4cbf-a036-895b177e395f}>1.7, !- Program Line 10 - SET {39f6e7d1-6b25-4ba4-a893-e38a5b707d14} = 29.4, !- Program Line 11 - SET {efdd1e65-813d-4934-a52c-78151c88164d} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5f829686-dd04-4534-ba56-c2ce4b5903e7}<23.9 && {5f829686-dd04-4534-ba56-c2ce4b5903e7}>1.7, !- Program Line 1 + SET {b7746a7c-0e9d-448b-9334-58be82475f85} = 29.4, !- Program Line 2 + SET {2731c3e7-0e35-4964-88d9-182b0a22c442} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5f829686-dd04-4534-ba56-c2ce4b5903e7}<23.9 && {5f829686-dd04-4534-ba56-c2ce4b5903e7}>1.7, !- Program Line 4 + SET {b7746a7c-0e9d-448b-9334-58be82475f85} = 29.4, !- Program Line 5 + SET {2731c3e7-0e35-4964-88d9-182b0a22c442} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5f829686-dd04-4534-ba56-c2ce4b5903e7}<23.9 && {5f829686-dd04-4534-ba56-c2ce4b5903e7}>1.7, !- Program Line 7 + SET {b7746a7c-0e9d-448b-9334-58be82475f85} = 29.4, !- Program Line 8 + SET {2731c3e7-0e35-4964-88d9-182b0a22c442} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5f829686-dd04-4534-ba56-c2ce4b5903e7}<23.9 && {5f829686-dd04-4534-ba56-c2ce4b5903e7}>1.7, !- Program Line 10 + SET {b7746a7c-0e9d-448b-9334-58be82475f85} = 29.4, !- Program Line 11 + SET {2731c3e7-0e35-4964-88d9-182b0a22c442} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {39f6e7d1-6b25-4ba4-a893-e38a5b707d14} = NULL, !- Program Line 14 - SET {efdd1e65-813d-4934-a52c-78151c88164d} = NULL, !- Program Line 15 + SET {b7746a7c-0e9d-448b-9334-58be82475f85} = NULL, !- Program Line 14 + SET {2731c3e7-0e35-4964-88d9-182b0a22c442} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fbcd3bd4-1b26-418f-99b1-4ef376af7a44}<23.9 && {fbcd3bd4-1b26-418f-99b1-4ef376af7a44}>1.7, !- Program Line 1 - SET {29ff6f5b-08b8-4285-b285-2c793c8a61df} = 29.4, !- Program Line 2 - SET {b80e0f32-6b6d-4602-b624-d13ff3f8e23d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fbcd3bd4-1b26-418f-99b1-4ef376af7a44}<23.9 && {fbcd3bd4-1b26-418f-99b1-4ef376af7a44}>1.7, !- Program Line 4 - SET {29ff6f5b-08b8-4285-b285-2c793c8a61df} = 29.4, !- Program Line 5 - SET {b80e0f32-6b6d-4602-b624-d13ff3f8e23d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fbcd3bd4-1b26-418f-99b1-4ef376af7a44}<23.9 && {fbcd3bd4-1b26-418f-99b1-4ef376af7a44}>1.7, !- Program Line 7 - SET {29ff6f5b-08b8-4285-b285-2c793c8a61df} = 29.4, !- Program Line 8 - SET {b80e0f32-6b6d-4602-b624-d13ff3f8e23d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fbcd3bd4-1b26-418f-99b1-4ef376af7a44}<23.9 && {fbcd3bd4-1b26-418f-99b1-4ef376af7a44}>1.7, !- Program Line 10 - SET {29ff6f5b-08b8-4285-b285-2c793c8a61df} = 29.4, !- Program Line 11 - SET {b80e0f32-6b6d-4602-b624-d13ff3f8e23d} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b8490767-7c7b-4490-a092-fe953c4a2e40}<23.9 && {b8490767-7c7b-4490-a092-fe953c4a2e40}>1.7, !- Program Line 1 + SET {9f96e7f1-781c-438a-9541-1f5c9866f32a} = 29.4, !- Program Line 2 + SET {c9afc589-d055-4e2d-8dc3-b65082185b90} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b8490767-7c7b-4490-a092-fe953c4a2e40}<23.9 && {b8490767-7c7b-4490-a092-fe953c4a2e40}>1.7, !- Program Line 4 + SET {9f96e7f1-781c-438a-9541-1f5c9866f32a} = 29.4, !- Program Line 5 + SET {c9afc589-d055-4e2d-8dc3-b65082185b90} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b8490767-7c7b-4490-a092-fe953c4a2e40}<23.9 && {b8490767-7c7b-4490-a092-fe953c4a2e40}>1.7, !- Program Line 7 + SET {9f96e7f1-781c-438a-9541-1f5c9866f32a} = 29.4, !- Program Line 8 + SET {c9afc589-d055-4e2d-8dc3-b65082185b90} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b8490767-7c7b-4490-a092-fe953c4a2e40}<23.9 && {b8490767-7c7b-4490-a092-fe953c4a2e40}>1.7, !- Program Line 10 + SET {9f96e7f1-781c-438a-9541-1f5c9866f32a} = 29.4, !- Program Line 11 + SET {c9afc589-d055-4e2d-8dc3-b65082185b90} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {29ff6f5b-08b8-4285-b285-2c793c8a61df} = NULL, !- Program Line 14 - SET {b80e0f32-6b6d-4602-b624-d13ff3f8e23d} = NULL, !- Program Line 15 + SET {9f96e7f1-781c-438a-9541-1f5c9866f32a} = NULL, !- Program Line 14 + SET {c9afc589-d055-4e2d-8dc3-b65082185b90} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -6641,7 +6641,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8469,55 +8469,55 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000199}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000074}, !- Inlet Port {00000000-0000-0000-0019-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000200}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000077}, !- Inlet Port {00000000-0000-0000-0019-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000201}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000080}, !- Inlet Port {00000000-0000-0000-0019-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000202}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000447}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000203}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000452}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000204}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000072}, !- Inlet Port {00000000-0000-0000-0019-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000205}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000078}, !- Inlet Port {00000000-0000-0000-0019-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000206}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000448}, !- Inlet Port {00000000-0000-0000-0019-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000207}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000450}, !- Inlet Port {00000000-0000-0000-0019-000000000451}; !- Outlet Port @@ -10350,7 +10350,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000061}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -10365,7 +10365,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000062}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10374,7 +10374,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000063}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -11269,7 +11269,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000025}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000061}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000062}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 15e3e38c07..1a276dd490 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000025}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -6479,61 +6479,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {98df3eeb-54b7-4561-9075-1ca0f217e927}<23.9 && {98df3eeb-54b7-4561-9075-1ca0f217e927}>1.7, !- Program Line 1 - SET {1d443d9c-575a-48eb-bf1b-cf776831841a} = 29.4, !- Program Line 2 - SET {5f5537a1-3a93-444a-a977-0ee597a915f5} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {98df3eeb-54b7-4561-9075-1ca0f217e927}<23.9 && {98df3eeb-54b7-4561-9075-1ca0f217e927}>1.7, !- Program Line 4 - SET {1d443d9c-575a-48eb-bf1b-cf776831841a} = 29.4, !- Program Line 5 - SET {5f5537a1-3a93-444a-a977-0ee597a915f5} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {98df3eeb-54b7-4561-9075-1ca0f217e927}<23.9 && {98df3eeb-54b7-4561-9075-1ca0f217e927}>1.7, !- Program Line 7 - SET {1d443d9c-575a-48eb-bf1b-cf776831841a} = 29.4, !- Program Line 8 - SET {5f5537a1-3a93-444a-a977-0ee597a915f5} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {98df3eeb-54b7-4561-9075-1ca0f217e927}<23.9 && {98df3eeb-54b7-4561-9075-1ca0f217e927}>1.7, !- Program Line 10 - SET {1d443d9c-575a-48eb-bf1b-cf776831841a} = 29.4, !- Program Line 11 - SET {5f5537a1-3a93-444a-a977-0ee597a915f5} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a37a34f8-239f-4cfb-bbfa-7d54f5154ec5}<23.9 && {a37a34f8-239f-4cfb-bbfa-7d54f5154ec5}>1.7, !- Program Line 1 + SET {eee5f433-777e-4492-a192-d7e4e3bdf832} = 29.4, !- Program Line 2 + SET {080a6090-b923-4de1-bf4c-b1fb5acd3e5a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a37a34f8-239f-4cfb-bbfa-7d54f5154ec5}<23.9 && {a37a34f8-239f-4cfb-bbfa-7d54f5154ec5}>1.7, !- Program Line 4 + SET {eee5f433-777e-4492-a192-d7e4e3bdf832} = 29.4, !- Program Line 5 + SET {080a6090-b923-4de1-bf4c-b1fb5acd3e5a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a37a34f8-239f-4cfb-bbfa-7d54f5154ec5}<23.9 && {a37a34f8-239f-4cfb-bbfa-7d54f5154ec5}>1.7, !- Program Line 7 + SET {eee5f433-777e-4492-a192-d7e4e3bdf832} = 29.4, !- Program Line 8 + SET {080a6090-b923-4de1-bf4c-b1fb5acd3e5a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a37a34f8-239f-4cfb-bbfa-7d54f5154ec5}<23.9 && {a37a34f8-239f-4cfb-bbfa-7d54f5154ec5}>1.7, !- Program Line 10 + SET {eee5f433-777e-4492-a192-d7e4e3bdf832} = 29.4, !- Program Line 11 + SET {080a6090-b923-4de1-bf4c-b1fb5acd3e5a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1d443d9c-575a-48eb-bf1b-cf776831841a} = NULL, !- Program Line 14 - SET {5f5537a1-3a93-444a-a977-0ee597a915f5} = NULL, !- Program Line 15 + SET {eee5f433-777e-4492-a192-d7e4e3bdf832} = NULL, !- Program Line 14 + SET {080a6090-b923-4de1-bf4c-b1fb5acd3e5a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f6ce2a65-8408-46a6-a9ab-c90e5571981a}<23.9 && {f6ce2a65-8408-46a6-a9ab-c90e5571981a}>1.7, !- Program Line 1 - SET {cee3cc81-0f9a-4ee6-a69a-38cfa3f671d2} = 29.4, !- Program Line 2 - SET {f44ff26d-6a3f-4efe-aed3-7fe1a24da393} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f6ce2a65-8408-46a6-a9ab-c90e5571981a}<23.9 && {f6ce2a65-8408-46a6-a9ab-c90e5571981a}>1.7, !- Program Line 4 - SET {cee3cc81-0f9a-4ee6-a69a-38cfa3f671d2} = 29.4, !- Program Line 5 - SET {f44ff26d-6a3f-4efe-aed3-7fe1a24da393} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f6ce2a65-8408-46a6-a9ab-c90e5571981a}<23.9 && {f6ce2a65-8408-46a6-a9ab-c90e5571981a}>1.7, !- Program Line 7 - SET {cee3cc81-0f9a-4ee6-a69a-38cfa3f671d2} = 29.4, !- Program Line 8 - SET {f44ff26d-6a3f-4efe-aed3-7fe1a24da393} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f6ce2a65-8408-46a6-a9ab-c90e5571981a}<23.9 && {f6ce2a65-8408-46a6-a9ab-c90e5571981a}>1.7, !- Program Line 10 - SET {cee3cc81-0f9a-4ee6-a69a-38cfa3f671d2} = 29.4, !- Program Line 11 - SET {f44ff26d-6a3f-4efe-aed3-7fe1a24da393} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0b79d2c9-e8f8-49af-b8a6-f2a5622b58ee}<23.9 && {0b79d2c9-e8f8-49af-b8a6-f2a5622b58ee}>1.7, !- Program Line 1 + SET {72f8268d-e09e-4b85-84ac-1180496817fb} = 29.4, !- Program Line 2 + SET {0398feae-6bab-4399-b038-727572156c53} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0b79d2c9-e8f8-49af-b8a6-f2a5622b58ee}<23.9 && {0b79d2c9-e8f8-49af-b8a6-f2a5622b58ee}>1.7, !- Program Line 4 + SET {72f8268d-e09e-4b85-84ac-1180496817fb} = 29.4, !- Program Line 5 + SET {0398feae-6bab-4399-b038-727572156c53} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0b79d2c9-e8f8-49af-b8a6-f2a5622b58ee}<23.9 && {0b79d2c9-e8f8-49af-b8a6-f2a5622b58ee}>1.7, !- Program Line 7 + SET {72f8268d-e09e-4b85-84ac-1180496817fb} = 29.4, !- Program Line 8 + SET {0398feae-6bab-4399-b038-727572156c53} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0b79d2c9-e8f8-49af-b8a6-f2a5622b58ee}<23.9 && {0b79d2c9-e8f8-49af-b8a6-f2a5622b58ee}>1.7, !- Program Line 10 + SET {72f8268d-e09e-4b85-84ac-1180496817fb} = 29.4, !- Program Line 11 + SET {0398feae-6bab-4399-b038-727572156c53} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {cee3cc81-0f9a-4ee6-a69a-38cfa3f671d2} = NULL, !- Program Line 14 - SET {f44ff26d-6a3f-4efe-aed3-7fe1a24da393} = NULL, !- Program Line 15 + SET {72f8268d-e09e-4b85-84ac-1180496817fb} = NULL, !- Program Line 14 + SET {0398feae-6bab-4399-b038-727572156c53} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {79ec950f-0e17-4329-aa5d-8fbc6bb2a4e5}<23.9 && {79ec950f-0e17-4329-aa5d-8fbc6bb2a4e5}>1.7, !- Program Line 1 - SET {98ac0357-3a3f-474e-a439-c406e97e320e} = 29.4, !- Program Line 2 - SET {395ddcd3-417b-402a-be2c-28377a9e1170} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {79ec950f-0e17-4329-aa5d-8fbc6bb2a4e5}<23.9 && {79ec950f-0e17-4329-aa5d-8fbc6bb2a4e5}>1.7, !- Program Line 4 - SET {98ac0357-3a3f-474e-a439-c406e97e320e} = 29.4, !- Program Line 5 - SET {395ddcd3-417b-402a-be2c-28377a9e1170} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {79ec950f-0e17-4329-aa5d-8fbc6bb2a4e5}<23.9 && {79ec950f-0e17-4329-aa5d-8fbc6bb2a4e5}>1.7, !- Program Line 7 - SET {98ac0357-3a3f-474e-a439-c406e97e320e} = 29.4, !- Program Line 8 - SET {395ddcd3-417b-402a-be2c-28377a9e1170} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {79ec950f-0e17-4329-aa5d-8fbc6bb2a4e5}<23.9 && {79ec950f-0e17-4329-aa5d-8fbc6bb2a4e5}>1.7, !- Program Line 10 - SET {98ac0357-3a3f-474e-a439-c406e97e320e} = 29.4, !- Program Line 11 - SET {395ddcd3-417b-402a-be2c-28377a9e1170} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a2e64998-e2b0-4603-9f95-3b9f538ae3a9}<23.9 && {a2e64998-e2b0-4603-9f95-3b9f538ae3a9}>1.7, !- Program Line 1 + SET {3229b44a-927e-4c49-a586-2f55bd921bf8} = 29.4, !- Program Line 2 + SET {8c551aa0-79b4-4f4e-a7ae-e017d40657db} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a2e64998-e2b0-4603-9f95-3b9f538ae3a9}<23.9 && {a2e64998-e2b0-4603-9f95-3b9f538ae3a9}>1.7, !- Program Line 4 + SET {3229b44a-927e-4c49-a586-2f55bd921bf8} = 29.4, !- Program Line 5 + SET {8c551aa0-79b4-4f4e-a7ae-e017d40657db} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a2e64998-e2b0-4603-9f95-3b9f538ae3a9}<23.9 && {a2e64998-e2b0-4603-9f95-3b9f538ae3a9}>1.7, !- Program Line 7 + SET {3229b44a-927e-4c49-a586-2f55bd921bf8} = 29.4, !- Program Line 8 + SET {8c551aa0-79b4-4f4e-a7ae-e017d40657db} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a2e64998-e2b0-4603-9f95-3b9f538ae3a9}<23.9 && {a2e64998-e2b0-4603-9f95-3b9f538ae3a9}>1.7, !- Program Line 10 + SET {3229b44a-927e-4c49-a586-2f55bd921bf8} = 29.4, !- Program Line 11 + SET {8c551aa0-79b4-4f4e-a7ae-e017d40657db} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {98ac0357-3a3f-474e-a439-c406e97e320e} = NULL, !- Program Line 14 - SET {395ddcd3-417b-402a-be2c-28377a9e1170} = NULL, !- Program Line 15 + SET {3229b44a-927e-4c49-a586-2f55bd921bf8} = NULL, !- Program Line 14 + SET {8c551aa0-79b4-4f4e-a7ae-e017d40657db} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -6731,7 +6731,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8559,55 +8559,55 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000199}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000074}, !- Inlet Port {00000000-0000-0000-0019-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000200}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000077}, !- Inlet Port {00000000-0000-0000-0019-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000201}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000080}, !- Inlet Port {00000000-0000-0000-0019-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000202}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000447}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000203}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000452}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000204}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000072}, !- Inlet Port {00000000-0000-0000-0019-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000205}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000078}, !- Inlet Port {00000000-0000-0000-0019-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000206}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000448}, !- Inlet Port {00000000-0000-0000-0019-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000207}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000450}, !- Inlet Port {00000000-0000-0000-0019-000000000451}; !- Outlet Port @@ -10440,7 +10440,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000061}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -10455,7 +10455,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000062}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10464,7 +10464,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000063}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -11359,7 +11359,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000025}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000061}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000062}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2020-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2020-Electricity-CAN_AB_Calgary.osm index 67a55e1382..899f8f6e05 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2020-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2020-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0063-000000000026}, !- Object Name + {00000000-0000-0000-0059-000000000023}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.902183614624489, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0063-000000000030}, !- Object Name + {00000000-0000-0000-0059-000000000024}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.198210559234802, !- Feature Value 1 @@ -32,66 +32,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0063-000000000027}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle - {00000000-0000-0000-0063-000000000028}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle - {00000000-0000-0000-0063-000000000029}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000006}, !- Handle {00000000-0000-0000-0012-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000007}, !- Handle + {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0063-000000000026}, !- Availability Schedule - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0059-000000000023}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -110,75 +62,9 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0063-000000000027}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000145}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000148}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000147}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000146}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0063-000000000028}, !- Availability Schedule - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000201}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000204}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000203}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000202}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000004}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3, !- Name - , !- Controller List Name - {00000000-0000-0000-0063-000000000029}, !- Availability Schedule - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000257}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000260}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000259}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000258}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0063-000000000030}, !- Availability Schedule + {00000000-0000-0000-0059-000000000024}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -203,8 +89,8 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000059}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000417}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000418}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000249}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000250}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000058}; !- Return Air Stream Node Name OS:AirLoopHVAC:OutdoorAirSystem, @@ -214,43 +100,10 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000134}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000423}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000424}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000255}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000256}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000138}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0022-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000160}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000429}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000430}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000164}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000004}, !- Handle - Air Loop HVAC Outdoor Air System 4, !- Name - {00000000-0000-0000-0022-000000000004}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000216}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000435}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000436}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000220}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000005}, !- Handle - Air Loop HVAC Outdoor Air System 5, !- Name - {00000000-0000-0000-0022-000000000005}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000272}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000441}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000442}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000276}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -263,39 +116,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000125}, !- Outlet Node Name {00000000-0000-0000-0017-000000000141}; !- Inlet Node Name 1 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0017-000000000150}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000167}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000173}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000179}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000185}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000191}, !- Inlet Node Name 5 - {00000000-0000-0000-0017-000000000197}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000004}, !- Handle - Air Loop HVAC Zone Mixer 4, !- Name - {00000000-0000-0000-0017-000000000206}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000223}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000229}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000235}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000241}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000247}, !- Inlet Node Name 5 - {00000000-0000-0000-0017-000000000253}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000005}, !- Handle - Air Loop HVAC Zone Mixer 5, !- Name - {00000000-0000-0000-0017-000000000262}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000279}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000285}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000291}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000297}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000303}, !- Inlet Node Name 5 - {00000000-0000-0000-0017-000000000309}; !- Inlet Node Name 6 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -308,43 +128,10 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000124}, !- Inlet Node Name {00000000-0000-0000-0017-000000000142}; !- Outlet Node Name 1 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0017-000000000149}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000168}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000174}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000180}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000186}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000192}, !- Outlet Node Name 5 - {00000000-0000-0000-0017-000000000198}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000004}, !- Handle - Air Loop HVAC Zone Splitter 4, !- Name - {00000000-0000-0000-0017-000000000205}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000224}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000230}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000236}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000242}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000248}, !- Outlet Node Name 5 - {00000000-0000-0000-0017-000000000254}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000005}, !- Handle - Air Loop HVAC Zone Splitter 5, !- Name - {00000000-0000-0000-0017-000000000261}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000280}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000286}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000292}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000298}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000304}, !- Outlet Node Name 5 - {00000000-0000-0000-0017-000000000310}; !- Outlet Node Name 6 - OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000065}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000066}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -352,14 +139,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000143}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000018}, !- Reheat Coil Name + {00000000-0000-0000-0016-000000000003}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000144}, !- Air Outlet Node Name @@ -370,507 +157,72 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000237}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000238}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0056-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0045-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000243}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000244}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0056-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0045-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0045-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000249}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000250}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000255}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000009}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000256}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000281}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000011}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000282}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000287}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000013}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000288}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000008}, !- Handle - Air Terminal Single Duct VAV Reheat 16, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000293}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000014}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000294}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000009}, !- Handle - Air Terminal Single Duct VAV Reheat 17, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000299}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000015}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000300}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000010}, !- Handle - Air Terminal Single Duct VAV Reheat 18, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000305}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000016}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000306}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000011}, !- Handle - Air Terminal Single Duct VAV Reheat 19, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000311}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000017}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000312}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000169}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000020}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000170}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000175}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000021}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000176}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000181}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000022}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000182}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 5, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000187}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000023}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000188}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000016}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000193}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000024}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000194}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000017}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000199}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000002}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000200}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000018}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000225}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000226}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000019}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000231}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000005}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000232}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000004}, !- Handle - Availability Manager Night Cycle 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000013}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000014}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000015}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000005}, !- Handle - Availability Manager Night Cycle 5, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000017}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000018}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000019}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name - {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name - {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000006}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000007}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000008}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name - -OS:Building, - {00000000-0000-0000-0010-000000000001}, !- Handle - LargeOffice, !- Name - , !- Building Sector Type - 0, !- North Axis {deg} - , !- Nominal Floor to Floor Height {m} - , !- Space Type Name - {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name - , !- Default Schedule Set Name - 13, !- Standards Number of Stories - 12, !- Standards Number of Above Ground Stories - NECB2020, !- Standards Template - LargeOffice, !- Standards Building Type - , !- Standards Number of Living Units - , !- Relocatable - ; !- Nominal Floor to Ceiling Height {m} +OS:Building, + {00000000-0000-0000-0010-000000000001}, !- Handle + LargeOffice, !- Name + , !- Building Sector Type + 0, !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + , !- Space Type Name + {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name + , !- Default Schedule Set Name + 13, !- Standards Number of Stories + 12, !- Standards Number of Above Ground Stories + NECB2020, !- Standards Template + LargeOffice, !- Standards Building Type + , !- Standards Number of Living Units + , !- Relocatable + ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, {00000000-0000-0000-0011-000000000001}, !- Handle @@ -879,7 +231,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000023}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000023}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -889,7 +241,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -899,7 +251,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -909,14 +261,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton, !- Name - 1889395.58683074, !- Reference Capacity {W} - 6.0222602739726, !- Reference COP {W/W} + Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton, !- Name + 14417.1813010444, !- Reference Capacity {W} + 4.51476251604621, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -958,9 +310,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0025-000000000011}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0025-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0027-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0025-000000000009}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0025-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0027-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -995,8 +347,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0014-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 114kBtu/hr 9.44EER, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 115kBtu/hr 9.44EER, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.28021693457475, !- Rated COP {W/W} @@ -1031,7 +383,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -1046,64 +398,10 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0015-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000152}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000153}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000161}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000158}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0015-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000208}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000209}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000217}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000214}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0015-000000000004}, !- Handle - Coil Cooling Water 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000264}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000265}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000273}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000270}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Electric, {00000000-0000-0000-0016-000000000001}, !- Handle Coil Heating Electric 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name , !- Efficiency , !- Nominal Capacity {W} {00000000-0000-0000-0017-000000000057}, !- Air Inlet Node Name @@ -1111,208 +409,19 @@ OS:Coil:Heating:Electric, OS:Coil:Heating:Electric, {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Electric 10, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 15649.9596118927, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Electric 11, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + Coil Heating Electric 2, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name , !- Efficiency , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000215}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000212}; !- Air Outlet Node Name + {00000000-0000-0000-0017-000000000133}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000130}; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Heating Electric 12, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000003}, !- Handle + Coil Heating Electric 3, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name , !- Efficiency - 439554.281616211, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000005}, !- Handle - Coil Heating Electric 13, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 27241.1902427673, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000006}, !- Handle - Coil Heating Electric 14, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 228709.210968018, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000007}, !- Handle - Coil Heating Electric 15, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 198246.10748291, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000008}, !- Handle - Coil Heating Electric 16, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 97192.5842285156, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000009}, !- Handle - Coil Heating Electric 17, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 210911.380004883, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000010}, !- Handle - Coil Heating Electric 18, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000271}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000268}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000011}, !- Handle - Coil Heating Electric 19, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 43752.7582168579, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000012}, !- Handle - Coil Heating Electric 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000133}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000130}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000013}, !- Handle - Coil Heating Electric 20, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 2747.42392301559, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000014}, !- Handle - Coil Heating Electric 21, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 22545.1478004456, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000015}, !- Handle - Coil Heating Electric 22, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 19216.4242744446, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000016}, !- Handle - Coil Heating Electric 23, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11536.5702152252, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000017}, !- Handle - Coil Heating Electric 24, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 21139.2771720886, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000018}, !- Handle - Coil Heating Electric 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 6004.63063716888, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000019}, !- Handle - Coil Heating Electric 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000159}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000156}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000020}, !- Handle - Coil Heating Electric 5, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 27449.1485595703, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000021}, !- Handle - Coil Heating Electric 6, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 2077.9649913311, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000022}, !- Handle - Coil Heating Electric 7, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 15907.886838913, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000023}, !- Handle - Coil Heating Electric 8, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 13996.6197967529, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000024}, !- Handle - Coil Heating Electric 9, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 6564.07399177551, !- Nominal Capacity {W} + 10239.3805503845, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name @@ -1479,175 +588,175 @@ OS:Connection, OS:Connection, {00000000-0000-0000-0017-000000000024}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- Source Object + {00000000-0000-0000-0086-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000019}, !- Target Object + {00000000-0000-0000-0046-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Source Object + {00000000-0000-0000-0086-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000003}, !- Target Object + {00000000-0000-0000-0046-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- Source Object + {00000000-0000-0000-0086-000000000022}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000043}, !- Target Object + {00000000-0000-0000-0046-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000027}, !- Handle - {00000000-0000-0000-0090-000000000003}, !- Source Object + {00000000-0000-0000-0086-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000005}, !- Target Object + {00000000-0000-0000-0046-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- Source Object + {00000000-0000-0000-0086-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000031}, !- Target Object + {00000000-0000-0000-0046-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000029}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- Source Object + {00000000-0000-0000-0086-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000033}, !- Target Object + {00000000-0000-0000-0046-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000030}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- Source Object + {00000000-0000-0000-0086-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000009}, !- Target Object + {00000000-0000-0000-0046-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- Source Object + {00000000-0000-0000-0086-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000011}, !- Target Object + {00000000-0000-0000-0046-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000032}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- Source Object + {00000000-0000-0000-0086-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000035}, !- Target Object + {00000000-0000-0000-0046-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000033}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- Source Object + {00000000-0000-0000-0086-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000021}, !- Target Object + {00000000-0000-0000-0046-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- Source Object + {00000000-0000-0000-0086-000000000019}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000037}, !- Target Object + {00000000-0000-0000-0046-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000035}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- Source Object + {00000000-0000-0000-0086-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000023}, !- Target Object + {00000000-0000-0000-0046-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000036}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- Source Object + {00000000-0000-0000-0086-000000000004}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000007}, !- Target Object + {00000000-0000-0000-0046-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle - {00000000-0000-0000-0090-000000000002}, !- Source Object + {00000000-0000-0000-0086-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000004}, !- Target Object + {00000000-0000-0000-0046-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- Source Object + {00000000-0000-0000-0086-000000000007}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000013}, !- Target Object + {00000000-0000-0000-0046-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- Source Object + {00000000-0000-0000-0086-000000000020}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000039}, !- Target Object + {00000000-0000-0000-0046-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- Source Object + {00000000-0000-0000-0086-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000025}, !- Target Object + {00000000-0000-0000-0046-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- Source Object + {00000000-0000-0000-0086-000000000021}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000041}, !- Target Object + {00000000-0000-0000-0046-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- Source Object + {00000000-0000-0000-0086-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000027}, !- Target Object + {00000000-0000-0000-0046-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- Source Object + {00000000-0000-0000-0086-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000015}, !- Target Object + {00000000-0000-0000-0046-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- Source Object + {00000000-0000-0000-0086-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000029}, !- Target Object + {00000000-0000-0000-0046-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- Source Object + {00000000-0000-0000-0086-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000017}, !- Target Object + {00000000-0000-0000-0046-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- Source Object + {00000000-0000-0000-0086-000000000023}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000182}, !- Target Object + {00000000-0000-0000-0046-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000188}, !- Target Object + {00000000-0000-0000-0046-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0050-000000000189}, !- Source Object + {00000000-0000-0000-0046-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -1656,19 +765,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000183}, !- Target Object + {00000000-0000-0000-0046-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0050-000000000184}, !- Source Object + {00000000-0000-0000-0046-000000000115}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle - {00000000-0000-0000-0050-000000000183}, !- Source Object + {00000000-0000-0000-0046-000000000114}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -1677,47 +786,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000184}, !- Target Object + {00000000-0000-0000-0046-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle - {00000000-0000-0000-0040-000000000001}, !- Source Object + {00000000-0000-0000-0036-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000189}, !- Target Object + {00000000-0000-0000-0046-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000100}, !- Target Object + {00000000-0000-0000-0046-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle - {00000000-0000-0000-0050-000000000100}, !- Source Object + {00000000-0000-0000-0046-000000000037}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000001}, !- Target Object + {00000000-0000-0000-0036-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0050-000000000105}, !- Target Object + {00000000-0000-0000-0046-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle - {00000000-0000-0000-0050-000000000105}, !- Source Object + {00000000-0000-0000-0046-000000000039}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle - {00000000-0000-0000-0050-000000000188}, !- Source Object + {00000000-0000-0000-0046-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -1726,33 +835,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000185}, !- Target Object + {00000000-0000-0000-0046-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0050-000000000185}, !- Source Object + {00000000-0000-0000-0046-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle - {00000000-0000-0000-0050-000000000045}, !- Source Object + {00000000-0000-0000-0046-000000000027}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000067}, !- Target Object + {00000000-0000-0000-0052-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle - {00000000-0000-0000-0056-000000000069}, !- Source Object + {00000000-0000-0000-0052-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000181}, !- Target Object + {00000000-0000-0000-0046-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle - {00000000-0000-0000-0050-000000000181}, !- Source Object + {00000000-0000-0000-0046-000000000112}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -1761,12 +870,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000044}, !- Target Object + {00000000-0000-0000-0046-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle - {00000000-0000-0000-0050-000000000044}, !- Source Object + {00000000-0000-0000-0046-000000000026}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -1775,40 +884,40 @@ OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000045}, !- Target Object + {00000000-0000-0000-0046-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle - {00000000-0000-0000-0055-000000000001}, !- Source Object + {00000000-0000-0000-0051-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000086}, !- Target Object + {00000000-0000-0000-0046-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000169}, !- Target Object + {00000000-0000-0000-0046-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0050-000000000087}, !- Source Object + {00000000-0000-0000-0046-000000000033}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000001}, !- Target Object + {00000000-0000-0000-0051-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle - {00000000-0000-0000-0055-000000000001}, !- Source Object + {00000000-0000-0000-0051-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000084}, !- Target Object + {00000000-0000-0000-0046-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle - {00000000-0000-0000-0050-000000000084}, !- Source Object + {00000000-0000-0000-0046-000000000030}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -1817,47 +926,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000088}, !- Target Object + {00000000-0000-0000-0046-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000085}, !- Target Object + {00000000-0000-0000-0046-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle - {00000000-0000-0000-0050-000000000085}, !- Source Object + {00000000-0000-0000-0046-000000000031}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000001}, !- Target Object + {00000000-0000-0000-0051-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle - {00000000-0000-0000-0050-000000000086}, !- Source Object + {00000000-0000-0000-0046-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000001}, !- Target Object + {00000000-0000-0000-0054-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle - {00000000-0000-0000-0058-000000000001}, !- Source Object + {00000000-0000-0000-0054-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000171}, !- Target Object + {00000000-0000-0000-0046-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0050-000000000171}, !- Source Object + {00000000-0000-0000-0046-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle - {00000000-0000-0000-0050-000000000169}, !- Source Object + {00000000-0000-0000-0046-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -1866,12 +975,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000170}, !- Target Object + {00000000-0000-0000-0046-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle - {00000000-0000-0000-0050-000000000170}, !- Source Object + {00000000-0000-0000-0046-000000000104}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -1880,12 +989,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000175}, !- Target Object + {00000000-0000-0000-0046-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle - {00000000-0000-0000-0050-000000000175}, !- Source Object + {00000000-0000-0000-0046-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1894,12 +1003,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000176}, !- Target Object + {00000000-0000-0000-0046-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle - {00000000-0000-0000-0050-000000000176}, !- Source Object + {00000000-0000-0000-0046-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -1908,26 +1017,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000155}, !- Target Object + {00000000-0000-0000-0046-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle - {00000000-0000-0000-0050-000000000155}, !- Source Object + {00000000-0000-0000-0046-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000001}, !- Target Object + {00000000-0000-0000-0050-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Source Object + {00000000-0000-0000-0050-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000156}, !- Target Object + {00000000-0000-0000-0046-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle - {00000000-0000-0000-0050-000000000156}, !- Source Object + {00000000-0000-0000-0046-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1936,54 +1045,54 @@ OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000157}, !- Target Object + {00000000-0000-0000-0046-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle - {00000000-0000-0000-0050-000000000157}, !- Source Object + {00000000-0000-0000-0046-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000002}, !- Target Object + {00000000-0000-0000-0050-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Source Object + {00000000-0000-0000-0050-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000087}, !- Target Object + {00000000-0000-0000-0046-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle - {00000000-0000-0000-0055-000000000002}, !- Source Object + {00000000-0000-0000-0051-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000108}, !- Target Object + {00000000-0000-0000-0046-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000110}, !- Target Object + {00000000-0000-0000-0046-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0050-000000000109}, !- Source Object + {00000000-0000-0000-0046-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000002}, !- Target Object + {00000000-0000-0000-0051-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle - {00000000-0000-0000-0055-000000000002}, !- Source Object + {00000000-0000-0000-0051-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000106}, !- Target Object + {00000000-0000-0000-0046-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle - {00000000-0000-0000-0050-000000000106}, !- Source Object + {00000000-0000-0000-0046-000000000040}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1992,47 +1101,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000167}, !- Target Object + {00000000-0000-0000-0046-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000107}, !- Target Object + {00000000-0000-0000-0046-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle - {00000000-0000-0000-0050-000000000107}, !- Source Object + {00000000-0000-0000-0046-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000002}, !- Target Object + {00000000-0000-0000-0051-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle - {00000000-0000-0000-0050-000000000108}, !- Source Object + {00000000-0000-0000-0046-000000000042}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000002}, !- Target Object + {00000000-0000-0000-0054-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle - {00000000-0000-0000-0058-000000000002}, !- Source Object + {00000000-0000-0000-0054-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000172}, !- Target Object + {00000000-0000-0000-0046-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0050-000000000172}, !- Source Object + {00000000-0000-0000-0046-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle - {00000000-0000-0000-0050-000000000110}, !- Source Object + {00000000-0000-0000-0046-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0024-000000000001}, !- Target Object 2; !- Inlet Port @@ -2041,12 +1150,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle {00000000-0000-0000-0024-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000111}, !- Target Object + {00000000-0000-0000-0046-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle - {00000000-0000-0000-0050-000000000111}, !- Source Object + {00000000-0000-0000-0046-000000000045}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -2055,26 +1164,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000158}, !- Target Object + {00000000-0000-0000-0046-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle - {00000000-0000-0000-0050-000000000158}, !- Source Object + {00000000-0000-0000-0046-000000000092}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000003}, !- Target Object + {00000000-0000-0000-0050-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Source Object + {00000000-0000-0000-0050-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000159}, !- Target Object + {00000000-0000-0000-0046-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle - {00000000-0000-0000-0050-000000000159}, !- Source Object + {00000000-0000-0000-0046-000000000093}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -2083,26 +1192,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000160}, !- Target Object + {00000000-0000-0000-0046-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle - {00000000-0000-0000-0050-000000000160}, !- Source Object + {00000000-0000-0000-0046-000000000094}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000004}, !- Target Object + {00000000-0000-0000-0050-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle - {00000000-0000-0000-0054-000000000004}, !- Source Object + {00000000-0000-0000-0050-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000109}, !- Target Object + {00000000-0000-0000-0046-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle - {00000000-0000-0000-0050-000000000167}, !- Source Object + {00000000-0000-0000-0046-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -2111,12 +1220,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000168}, !- Target Object + {00000000-0000-0000-0046-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0050-000000000168}, !- Source Object + {00000000-0000-0000-0046-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 3; !- Inlet Port @@ -2125,12 +1234,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000173}, !- Target Object + {00000000-0000-0000-0046-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0050-000000000173}, !- Source Object + {00000000-0000-0000-0046-000000000107}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -2139,47 +1248,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000174}, !- Target Object + {00000000-0000-0000-0046-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0050-000000000174}, !- Source Object + {00000000-0000-0000-0046-000000000108}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000218}, !- Target Object + {00000000-0000-0000-0046-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0050-000000000219}, !- Source Object + {00000000-0000-0000-0046-000000000129}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000122}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000213}, !- Target Object + {00000000-0000-0000-0046-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0050-000000000214}, !- Source Object + {00000000-0000-0000-0046-000000000124}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0050-000000000213}, !- Source Object + {00000000-0000-0000-0046-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -2188,12 +1297,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000125}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000214}, !- Target Object + {00000000-0000-0000-0046-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0050-000000000088}, !- Source Object + {00000000-0000-0000-0046-000000000034}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 10; !- Inlet Port @@ -2202,103 +1311,103 @@ OS:Connection, {00000000-0000-0000-0017-000000000127}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000090}, !- Target Object + {00000000-0000-0000-0046-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000128}, !- Handle - {00000000-0000-0000-0050-000000000090}, !- Source Object + {00000000-0000-0000-0046-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000129}, !- Handle - {00000000-0000-0000-0041-000000000008}, !- Source Object + {00000000-0000-0000-0037-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000219}, !- Target Object + {00000000-0000-0000-0046-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000130}, !- Handle - {00000000-0000-0000-0016-000000000012}, !- Source Object + {00000000-0000-0000-0016-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000103}, !- Target Object + {00000000-0000-0000-0046-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0050-000000000103}, !- Source Object + {00000000-0000-0000-0046-000000000038}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000008}, !- Target Object + {00000000-0000-0000-0037-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000132}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000089}, !- Target Object + {00000000-0000-0000-0046-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0050-000000000089}, !- Source Object + {00000000-0000-0000-0046-000000000035}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000012}, !- Target Object + {00000000-0000-0000-0016-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000134}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000215}, !- Target Object + {00000000-0000-0000-0046-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0050-000000000215}, !- Source Object + {00000000-0000-0000-0046-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000136}, !- Handle - {00000000-0000-0000-0050-000000000218}, !- Source Object + {00000000-0000-0000-0046-000000000128}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000004}, !- Target Object + {00000000-0000-0000-0037-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000137}, !- Handle - {00000000-0000-0000-0041-000000000004}, !- Source Object + {00000000-0000-0000-0037-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000180}, !- Target Object + {00000000-0000-0000-0046-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000138}, !- Handle - {00000000-0000-0000-0050-000000000180}, !- Source Object + {00000000-0000-0000-0046-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000139}, !- Handle - {00000000-0000-0000-0050-000000000047}, !- Source Object + {00000000-0000-0000-0046-000000000029}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000037}, !- Target Object + {00000000-0000-0000-0052-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0056-000000000039}, !- Source Object + {00000000-0000-0000-0052-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000006}, !- Target Object + {00000000-0000-0000-0046-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000141}, !- Handle - {00000000-0000-0000-0050-000000000006}, !- Source Object + {00000000-0000-0000-0046-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -2307,12 +1416,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000142}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000046}, !- Target Object + {00000000-0000-0000-0046-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000143}, !- Handle - {00000000-0000-0000-0050-000000000046}, !- Source Object + {00000000-0000-0000-0046-000000000028}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -2321,2132 +1430,827 @@ OS:Connection, {00000000-0000-0000-0017-000000000144}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000047}, !- Target Object + {00000000-0000-0000-0046-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000197}, !- Target Object + {00000000-0000-0000-0051-000000000003}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0046-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000146}, !- Handle - {00000000-0000-0000-0050-000000000198}, !- Source Object + {00000000-0000-0000-0019-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0046-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000147}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000192}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000003}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000148}, !- Handle - {00000000-0000-0000-0050-000000000193}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0051-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0046-000000000061}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0050-000000000192}, !- Source Object + {00000000-0000-0000-0046-000000000061}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000150}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000193}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000151}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000091}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000003}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0050-000000000091}, !- Source Object + {00000000-0000-0000-0046-000000000063}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0053-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000153}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000093}, !- Target Object + {00000000-0000-0000-0053-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0050-000000000093}, !- Source Object + {00000000-0000-0000-0046-000000000060}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0019-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000155}, !- Handle - {00000000-0000-0000-0041-000000000005}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000198}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0090-000000000001}, !- Target Object + 31; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0016-000000000019}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000104}, !- Target Object + {00000000-0000-0000-0090-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0046-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000157}, !- Handle - {00000000-0000-0000-0050-000000000104}, !- Source Object + {00000000-0000-0000-0046-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000005}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000092}, !- Target Object + {00000000-0000-0000-0019-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0046-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0050-000000000092}, !- Source Object + {00000000-0000-0000-0046-000000000095}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000019}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0050-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000160}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000194}, !- Target Object + {00000000-0000-0000-0050-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000161}, !- Handle - {00000000-0000-0000-0050-000000000194}, !- Source Object + {00000000-0000-0000-0046-000000000096}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000162}, !- Handle - {00000000-0000-0000-0050-000000000197}, !- Source Object + {00000000-0000-0000-0046-000000000097}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000001}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0050-000000000006}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0041-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000177}, !- Target Object + {00000000-0000-0000-0050-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0050-000000000177}, !- Source Object + {00000000-0000-0000-0046-000000000098}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000165}, !- Handle - {00000000-0000-0000-0050-000000000069}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000043}, !- Target Object + {00000000-0000-0000-0018-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0046-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0056-000000000045}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000012}, !- Target Object + {00000000-0000-0000-0046-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000167}, !- Handle - {00000000-0000-0000-0050-000000000012}, !- Source Object + {00000000-0000-0000-0050-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0046-000000000064}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000068}, !- Target Object + {00000000-0000-0000-0018-000000000006}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0046-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000169}, !- Handle - {00000000-0000-0000-0050-000000000068}, !- Source Object + {00000000-0000-0000-0046-000000000100}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000012}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0050-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0007-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000069}, !- Target Object + {00000000-0000-0000-0050-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000171}, !- Handle - {00000000-0000-0000-0050-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000019}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0046-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0056-000000000021}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000008}, !- Target Object + {00000000-0000-0000-0046-000000000046}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0050-000000000008}, !- Source Object + {00000000-0000-0000-0092-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0046-000000000047}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000174}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000070}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000047}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000175}, !- Handle - {00000000-0000-0000-0050-000000000070}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000013}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0046-000000000048}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000176}, !- Handle - {00000000-0000-0000-0007-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000071}, !- Target Object + {00000000-0000-0000-0046-000000000048}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0050-000000000073}, !- Source Object + {00000000-0000-0000-0092-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000064}, !- Target Object + {00000000-0000-0000-0046-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0056-000000000066}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000016}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000049}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000179}, !- Handle - {00000000-0000-0000-0050-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0046-000000000050}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000072}, !- Target Object + {00000000-0000-0000-0046-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000181}, !- Handle - {00000000-0000-0000-0050-000000000072}, !- Source Object + {00000000-0000-0000-0092-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000014}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0046-000000000051}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0007-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000183}, !- Handle - {00000000-0000-0000-0050-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000022}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0046-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0056-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000010}, !- Target Object + {00000000-0000-0000-0046-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000185}, !- Handle - {00000000-0000-0000-0050-000000000010}, !- Source Object + {00000000-0000-0000-0092-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0046-000000000053}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000074}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0050-000000000074}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000015}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0046-000000000054}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000188}, !- Handle - {00000000-0000-0000-0007-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000075}, !- Target Object + {00000000-0000-0000-0046-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000189}, !- Handle - {00000000-0000-0000-0050-000000000077}, !- Source Object + {00000000-0000-0000-0092-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000058}, !- Target Object + {00000000-0000-0000-0046-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000190}, !- Handle - {00000000-0000-0000-0056-000000000060}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000014}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0050-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0046-000000000056}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000076}, !- Target Object + {00000000-0000-0000-0046-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000193}, !- Handle - {00000000-0000-0000-0050-000000000076}, !- Source Object + {00000000-0000-0000-0092-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000016}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0046-000000000057}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0007-000000000016}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000077}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000195}, !- Handle - {00000000-0000-0000-0050-000000000079}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000001}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0046-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0056-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000018}, !- Target Object + {00000000-0000-0000-0046-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000197}, !- Handle - {00000000-0000-0000-0050-000000000018}, !- Source Object + {00000000-0000-0000-0092-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0046-000000000059}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0050-000000000078}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000199}, !- Handle - {00000000-0000-0000-0050-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000017}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0046-000000000065}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0007-000000000017}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000079}, !- Target Object + {00000000-0000-0000-0046-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000204}, !- Target Object + {00000000-0000-0000-0092-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000202}, !- Handle - {00000000-0000-0000-0050-000000000205}, !- Source Object + {00000000-0000-0000-0046-000000000066}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000203}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000199}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0046-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000204}, !- Handle - {00000000-0000-0000-0050-000000000200}, !- Source Object + {00000000-0000-0000-0046-000000000067}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0092-000000000009}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0050-000000000199}, !- Source Object + {00000000-0000-0000-0092-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000004}, !- Target Object + {00000000-0000-0000-0046-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0004-000000000004}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000200}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000068}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000207}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000094}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0046-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000208}, !- Handle - {00000000-0000-0000-0050-000000000094}, !- Source Object + {00000000-0000-0000-0046-000000000069}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0092-000000000010}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000096}, !- Target Object + {00000000-0000-0000-0092-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0046-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000210}, !- Handle - {00000000-0000-0000-0050-000000000096}, !- Source Object + {00000000-0000-0000-0046-000000000070}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0041-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000205}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0046-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000212}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000101}, !- Target Object + {00000000-0000-0000-0046-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0050-000000000101}, !- Source Object + {00000000-0000-0000-0092-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000006}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0046-000000000072}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000095}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000072}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000215}, !- Handle - {00000000-0000-0000-0050-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0046-000000000073}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000201}, !- Target Object + {00000000-0000-0000-0046-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000217}, !- Handle - {00000000-0000-0000-0050-000000000201}, !- Source Object + {00000000-0000-0000-0092-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0046-000000000074}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000218}, !- Handle - {00000000-0000-0000-0050-000000000204}, !- Source Object + {00000000-0000-0000-0046-000000000074}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000002}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000219}, !- Handle - {00000000-0000-0000-0041-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000178}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0046-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000220}, !- Handle - {00000000-0000-0000-0050-000000000178}, !- Source Object + {00000000-0000-0000-0046-000000000075}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0092-000000000013}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0050-000000000081}, !- Source Object + {00000000-0000-0000-0092-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000055}, !- Target Object + {00000000-0000-0000-0046-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000222}, !- Handle - {00000000-0000-0000-0056-000000000057}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000026}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000076}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0050-000000000026}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0046-000000000077}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object + {00000000-0000-0000-0046-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000080}, !- Target Object + {00000000-0000-0000-0092-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000225}, !- Handle - {00000000-0000-0000-0050-000000000080}, !- Source Object + {00000000-0000-0000-0092-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000018}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0046-000000000078}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0007-000000000018}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000081}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000078}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 17; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000227}, !- Handle - {00000000-0000-0000-0050-000000000083}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000049}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0046-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0056-000000000051}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000024}, !- Target Object + {00000000-0000-0000-0046-000000000079}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000229}, !- Handle - {00000000-0000-0000-0050-000000000024}, !- Source Object + {00000000-0000-0000-0092-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0046-000000000080}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000230}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000082}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0050-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000019}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0046-000000000081}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000232}, !- Handle - {00000000-0000-0000-0007-000000000019}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000083}, !- Target Object + {00000000-0000-0000-0046-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000233}, !- Handle - {00000000-0000-0000-0050-000000000049}, !- Source Object + {00000000-0000-0000-0092-000000000016}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000034}, !- Target Object + {00000000-0000-0000-0046-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0056-000000000036}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000022}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 19; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000235}, !- Handle - {00000000-0000-0000-0050-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0046-000000000083}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000048}, !- Target Object + {00000000-0000-0000-0046-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000237}, !- Handle - {00000000-0000-0000-0050-000000000048}, !- Source Object + {00000000-0000-0000-0092-000000000017}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000002}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0046-000000000084}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0007-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000049}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000084}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 20; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000239}, !- Handle - {00000000-0000-0000-0050-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000028}, !- Target Object + {00000000-0000-0000-0019-000000000006}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0046-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0056-000000000030}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000020}, !- Target Object + {00000000-0000-0000-0046-000000000085}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000241}, !- Handle - {00000000-0000-0000-0050-000000000020}, !- Source Object + {00000000-0000-0000-0092-000000000018}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0046-000000000086}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000050}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000086}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 21; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000243}, !- Handle - {00000000-0000-0000-0050-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000003}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000006}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0046-000000000087}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0007-000000000003}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000051}, !- Target Object + {00000000-0000-0000-0046-000000000087}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000245}, !- Handle - {00000000-0000-0000-0050-000000000053}, !- Source Object + {00000000-0000-0000-0092-000000000019}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000061}, !- Target Object + {00000000-0000-0000-0046-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0056-000000000063}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000028}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0046-000000000088}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 22; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000247}, !- Handle - {00000000-0000-0000-0050-000000000028}, !- Source Object + {00000000-0000-0000-0046-000000000117}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0040-000000000001}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000052}, !- Target Object + {00000000-0000-0000-0040-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0046-000000000121}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000249}, !- Handle - {00000000-0000-0000-0050-000000000052}, !- Source Object + {00000000-0000-0000-0046-000000000121}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000004}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0007-000000000004}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000053}, !- Target Object + {00000000-0000-0000-0003-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0046-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000251}, !- Handle - {00000000-0000-0000-0050-000000000055}, !- Source Object + {00000000-0000-0000-0046-000000000122}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000013}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0040-000000000001}, !- Target Object + 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0056-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000030}, !- Target Object + {00000000-0000-0000-0040-000000000001}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0046-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000253}, !- Handle - {00000000-0000-0000-0050-000000000030}, !- Source Object + {00000000-0000-0000-0046-000000000126}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0040-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0050-000000000054}, !- Target Object + {00000000-0000-0000-0040-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0046-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000255}, !- Handle - {00000000-0000-0000-0050-000000000054}, !- Source Object + {00000000-0000-0000-0046-000000000130}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000005}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0007-000000000005}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000055}, !- Target Object + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0046-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000257}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000211}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0050-000000000212}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000259}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000206}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000260}, !- Handle - {00000000-0000-0000-0050-000000000207}, !- Source Object + {00000000-0000-0000-0046-000000000131}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0040-000000000002}, !- Target Object + 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000261}, !- Handle - {00000000-0000-0000-0050-000000000206}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000005}, !- Target Object + {00000000-0000-0000-0017-000000000258}, !- Handle + {00000000-0000-0000-0040-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0046-000000000127}, !- Target Object 2; !- Inlet Port -OS:Connection, - {00000000-0000-0000-0017-000000000262}, !- Handle - {00000000-0000-0000-0004-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000207}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000001}, !- Handle + Connector Mixer 1, !- Name + {00000000-0000-0000-0017-000000000089}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000080}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000084}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000088}; !- Inlet Branch Name 3 -OS:Connection, - {00000000-0000-0000-0017-000000000263}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000097}, !- Target Object - 2; !- Inlet Port +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000002}, !- Handle + Connector Mixer 2, !- Name + {00000000-0000-0000-0017-000000000073}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000128}; !- Inlet Branch Name 1 -OS:Connection, - {00000000-0000-0000-0017-000000000264}, !- Handle - {00000000-0000-0000-0050-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000265}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000099}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000266}, !- Handle - {00000000-0000-0000-0050-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000267}, !- Handle - {00000000-0000-0000-0041-000000000007}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000212}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000268}, !- Handle - {00000000-0000-0000-0016-000000000010}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000102}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000269}, !- Handle - {00000000-0000-0000-0050-000000000102}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000007}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000270}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000098}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000271}, !- Handle - {00000000-0000-0000-0050-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000010}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000272}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000208}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000273}, !- Handle - {00000000-0000-0000-0050-000000000208}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000274}, !- Handle - {00000000-0000-0000-0050-000000000211}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000003}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000275}, !- Handle - {00000000-0000-0000-0041-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000179}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000276}, !- Handle - {00000000-0000-0000-0050-000000000179}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000277}, !- Handle - {00000000-0000-0000-0050-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000278}, !- Handle - {00000000-0000-0000-0056-000000000054}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000279}, !- Handle - {00000000-0000-0000-0050-000000000040}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000280}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000056}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000281}, !- Handle - {00000000-0000-0000-0050-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000282}, !- Handle - {00000000-0000-0000-0007-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000057}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000283}, !- Handle - {00000000-0000-0000-0050-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000031}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000284}, !- Handle - {00000000-0000-0000-0056-000000000033}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000036}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000285}, !- Handle - {00000000-0000-0000-0050-000000000036}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000286}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000287}, !- Handle - {00000000-0000-0000-0050-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000288}, !- Handle - {00000000-0000-0000-0007-000000000007}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000059}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000289}, !- Handle - {00000000-0000-0000-0050-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000290}, !- Handle - {00000000-0000-0000-0056-000000000018}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000032}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000291}, !- Handle - {00000000-0000-0000-0050-000000000032}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000292}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000060}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000293}, !- Handle - {00000000-0000-0000-0050-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000294}, !- Handle - {00000000-0000-0000-0007-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000295}, !- Handle - {00000000-0000-0000-0050-000000000063}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000025}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000296}, !- Handle - {00000000-0000-0000-0056-000000000027}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000297}, !- Handle - {00000000-0000-0000-0050-000000000034}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000298}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000062}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000299}, !- Handle - {00000000-0000-0000-0050-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000009}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000300}, !- Handle - {00000000-0000-0000-0007-000000000009}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000063}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000301}, !- Handle - {00000000-0000-0000-0050-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000302}, !- Handle - {00000000-0000-0000-0056-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000303}, !- Handle - {00000000-0000-0000-0050-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000304}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000305}, !- Handle - {00000000-0000-0000-0050-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000010}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000306}, !- Handle - {00000000-0000-0000-0007-000000000010}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000307}, !- Handle - {00000000-0000-0000-0050-000000000067}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000308}, !- Handle - {00000000-0000-0000-0056-000000000009}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000042}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000309}, !- Handle - {00000000-0000-0000-0050-000000000042}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000310}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0050-000000000066}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000311}, !- Handle - {00000000-0000-0000-0050-000000000066}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000011}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000312}, !- Handle - {00000000-0000-0000-0007-000000000011}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000067}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000313}, !- Handle - {00000000-0000-0000-0055-000000000003}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0050-000000000129}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000314}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000315}, !- Handle - {00000000-0000-0000-0050-000000000130}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000003}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000316}, !- Handle - {00000000-0000-0000-0055-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000127}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000317}, !- Handle - {00000000-0000-0000-0050-000000000127}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000318}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000163}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000319}, !- Handle - {00000000-0000-0000-0050-000000000128}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000003}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000320}, !- Handle - {00000000-0000-0000-0050-000000000129}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000321}, !- Handle - {00000000-0000-0000-0057-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000126}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000322}, !- Handle - {00000000-0000-0000-0050-000000000126}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000323}, !- Handle - {00000000-0000-0000-0050-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000001}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000324}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0050-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000325}, !- Handle - {00000000-0000-0000-0050-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000326}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000161}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000327}, !- Handle - {00000000-0000-0000-0050-000000000161}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000328}, !- Handle - {00000000-0000-0000-0054-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000162}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000329}, !- Handle - {00000000-0000-0000-0050-000000000162}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000330}, !- Handle - {00000000-0000-0000-0050-000000000163}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000331}, !- Handle - {00000000-0000-0000-0054-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000332}, !- Handle - {00000000-0000-0000-0050-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000333}, !- Handle - {00000000-0000-0000-0018-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000165}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000334}, !- Handle - {00000000-0000-0000-0050-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000335}, !- Handle - {00000000-0000-0000-0054-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000130}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000336}, !- Handle - {00000000-0000-0000-0018-000000000006}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000337}, !- Handle - {00000000-0000-0000-0050-000000000166}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000338}, !- Handle - {00000000-0000-0000-0054-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000128}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000339}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000112}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000340}, !- Handle - {00000000-0000-0000-0050-000000000112}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000341}, !- Handle - {00000000-0000-0000-0096-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000113}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000342}, !- Handle - {00000000-0000-0000-0050-000000000113}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000343}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000114}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000344}, !- Handle - {00000000-0000-0000-0050-000000000114}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000345}, !- Handle - {00000000-0000-0000-0096-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000115}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000346}, !- Handle - {00000000-0000-0000-0050-000000000115}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000347}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000116}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000348}, !- Handle - {00000000-0000-0000-0050-000000000116}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000349}, !- Handle - {00000000-0000-0000-0096-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000117}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000350}, !- Handle - {00000000-0000-0000-0050-000000000117}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000351}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000118}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000352}, !- Handle - {00000000-0000-0000-0050-000000000118}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000353}, !- Handle - {00000000-0000-0000-0096-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000119}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000354}, !- Handle - {00000000-0000-0000-0050-000000000119}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000355}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0050-000000000120}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000356}, !- Handle - {00000000-0000-0000-0050-000000000120}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000357}, !- Handle - {00000000-0000-0000-0096-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000121}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000358}, !- Handle - {00000000-0000-0000-0050-000000000121}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000359}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000122}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000360}, !- Handle - {00000000-0000-0000-0050-000000000122}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000361}, !- Handle - {00000000-0000-0000-0096-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000123}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000362}, !- Handle - {00000000-0000-0000-0050-000000000123}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000363}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0050-000000000124}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000364}, !- Handle - {00000000-0000-0000-0050-000000000124}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000365}, !- Handle - {00000000-0000-0000-0096-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000125}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000366}, !- Handle - {00000000-0000-0000-0050-000000000125}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000367}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000131}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000368}, !- Handle - {00000000-0000-0000-0050-000000000131}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000369}, !- Handle - {00000000-0000-0000-0096-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000132}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000370}, !- Handle - {00000000-0000-0000-0050-000000000132}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 11; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000371}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000133}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000372}, !- Handle - {00000000-0000-0000-0050-000000000133}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000373}, !- Handle - {00000000-0000-0000-0096-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000134}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000374}, !- Handle - {00000000-0000-0000-0050-000000000134}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000375}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000135}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000376}, !- Handle - {00000000-0000-0000-0050-000000000135}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000377}, !- Handle - {00000000-0000-0000-0096-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000136}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000378}, !- Handle - {00000000-0000-0000-0050-000000000136}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 13; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000379}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0050-000000000137}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000380}, !- Handle - {00000000-0000-0000-0050-000000000137}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000011}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000381}, !- Handle - {00000000-0000-0000-0096-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000138}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000382}, !- Handle - {00000000-0000-0000-0050-000000000138}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000383}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000139}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000384}, !- Handle - {00000000-0000-0000-0050-000000000139}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000012}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000385}, !- Handle - {00000000-0000-0000-0096-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000140}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000386}, !- Handle - {00000000-0000-0000-0050-000000000140}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000387}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0050-000000000141}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000388}, !- Handle - {00000000-0000-0000-0050-000000000141}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000389}, !- Handle - {00000000-0000-0000-0096-000000000013}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000142}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000390}, !- Handle - {00000000-0000-0000-0050-000000000142}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000391}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000143}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000392}, !- Handle - {00000000-0000-0000-0050-000000000143}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000393}, !- Handle - {00000000-0000-0000-0096-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000144}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000394}, !- Handle - {00000000-0000-0000-0050-000000000144}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000395}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0050-000000000145}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000396}, !- Handle - {00000000-0000-0000-0050-000000000145}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000015}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000397}, !- Handle - {00000000-0000-0000-0096-000000000015}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000146}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000398}, !- Handle - {00000000-0000-0000-0050-000000000146}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000399}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0050-000000000147}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000400}, !- Handle - {00000000-0000-0000-0050-000000000147}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000401}, !- Handle - {00000000-0000-0000-0096-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000148}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000402}, !- Handle - {00000000-0000-0000-0050-000000000148}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 19; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000403}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0050-000000000149}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000404}, !- Handle - {00000000-0000-0000-0050-000000000149}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000017}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000405}, !- Handle - {00000000-0000-0000-0096-000000000017}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000150}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000406}, !- Handle - {00000000-0000-0000-0050-000000000150}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 20; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000407}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0050-000000000151}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000408}, !- Handle - {00000000-0000-0000-0050-000000000151}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000409}, !- Handle - {00000000-0000-0000-0096-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000152}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000410}, !- Handle - {00000000-0000-0000-0050-000000000152}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000411}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0050-000000000153}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000412}, !- Handle - {00000000-0000-0000-0050-000000000153}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000019}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000413}, !- Handle - {00000000-0000-0000-0096-000000000019}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000414}, !- Handle - {00000000-0000-0000-0050-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 22; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000415}, !- Handle - {00000000-0000-0000-0050-000000000186}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000416}, !- Handle - {00000000-0000-0000-0044-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000190}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000417}, !- Handle - {00000000-0000-0000-0050-000000000190}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000418}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000191}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000419}, !- Handle - {00000000-0000-0000-0050-000000000191}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000001}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000420}, !- Handle - {00000000-0000-0000-0044-000000000001}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000187}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000421}, !- Handle - {00000000-0000-0000-0050-000000000216}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000005}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000422}, !- Handle - {00000000-0000-0000-0044-000000000005}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000226}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000423}, !- Handle - {00000000-0000-0000-0050-000000000226}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000424}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000227}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000425}, !- Handle - {00000000-0000-0000-0050-000000000227}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000005}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000426}, !- Handle - {00000000-0000-0000-0044-000000000005}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000217}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000427}, !- Handle - {00000000-0000-0000-0050-000000000195}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000428}, !- Handle - {00000000-0000-0000-0044-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000220}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000429}, !- Handle - {00000000-0000-0000-0050-000000000220}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000430}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000221}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000431}, !- Handle - {00000000-0000-0000-0050-000000000221}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000002}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000432}, !- Handle - {00000000-0000-0000-0044-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000196}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000433}, !- Handle - {00000000-0000-0000-0050-000000000202}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000434}, !- Handle - {00000000-0000-0000-0044-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000222}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000435}, !- Handle - {00000000-0000-0000-0050-000000000222}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000436}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000223}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000437}, !- Handle - {00000000-0000-0000-0050-000000000223}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000003}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000438}, !- Handle - {00000000-0000-0000-0044-000000000003}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000203}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000439}, !- Handle - {00000000-0000-0000-0050-000000000209}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000440}, !- Handle - {00000000-0000-0000-0044-000000000004}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000224}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000441}, !- Handle - {00000000-0000-0000-0050-000000000224}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000442}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000225}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000443}, !- Handle - {00000000-0000-0000-0050-000000000225}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000004}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000444}, !- Handle - {00000000-0000-0000-0044-000000000004}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000210}, !- Target Object - 2; !- Inlet Port - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000001}, !- Handle - Connector Mixer 1, !- Name - {00000000-0000-0000-0017-000000000089}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000080}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000084}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000088}; !- Inlet Branch Name 3 - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000002}, !- Handle - Connector Mixer 2, !- Name - {00000000-0000-0000-0017-000000000073}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000128}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000154}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000210}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000266}; !- Inlet Branch Name 4 - -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000003}, !- Handle - Connector Mixer 3, !- Name - {00000000-0000-0000-0017-000000000110}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000105}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000109}; !- Inlet Branch Name 2 +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000003}, !- Handle + Connector Mixer 3, !- Name + {00000000-0000-0000-0017-000000000110}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000105}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000109}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000004}, !- Handle @@ -4458,34 +2262,34 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0017-000000000333}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000325}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000329}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000165}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000157}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000161}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0017-000000000336}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000332}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000342}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000346}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000350}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000354}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000358}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000362}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000366}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000370}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000374}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000378}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000382}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000386}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000390}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000394}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000398}, !- Inlet Branch Name 16 - {00000000-0000-0000-0017-000000000402}, !- Inlet Branch Name 17 - {00000000-0000-0000-0017-000000000406}, !- Inlet Branch Name 18 - {00000000-0000-0000-0017-000000000410}, !- Inlet Branch Name 19 - {00000000-0000-0000-0017-000000000414}; !- Inlet Branch Name 20 + {00000000-0000-0000-0017-000000000168}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000164}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000174}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000178}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000182}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000186}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000190}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000194}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000198}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000202}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000206}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000210}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000214}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000218}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000222}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000226}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000230}, !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000234}, !- Inlet Branch Name 17 + {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 18 + {00000000-0000-0000-0017-000000000242}, !- Inlet Branch Name 19 + {00000000-0000-0000-0017-000000000246}; !- Inlet Branch Name 20 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -4499,10 +2303,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0017-000000000071}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000072}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000151}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000207}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000263}; !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000072}; !- Outlet Branch Name 1 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -4521,420 +2322,309 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0017-000000000322}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000314}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000326}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000154}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000146}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000158}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0017-000000000317}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000318}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000339}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000343}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000347}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000351}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000355}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000359}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000363}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000367}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000371}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000375}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000379}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000383}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000387}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000391}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000395}, !- Outlet Branch Name 16 - {00000000-0000-0000-0017-000000000399}, !- Outlet Branch Name 17 - {00000000-0000-0000-0017-000000000403}, !- Outlet Branch Name 18 - {00000000-0000-0000-0017-000000000407}, !- Outlet Branch Name 19 - {00000000-0000-0000-0017-000000000411}; !- Outlet Branch Name 20 + {00000000-0000-0000-0017-000000000149}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000150}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000171}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000175}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000179}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000183}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000187}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000191}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000195}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000199}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000203}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000207}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000211}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000215}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000219}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000223}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000227}, !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000231}, !- Outlet Branch Name 17 + {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 18 + {00000000-0000-0000-0017-000000000239}, !- Outlet Branch Name 19 + {00000000-0000-0000-0017-000000000243}; !- Outlet Branch Name 20 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle BTAP-Ext-DaylightDiffuser, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000002}, !- Handle BTAP-Ext-DaylightDiffuser:U=0.241 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000003}; !- Layer 1 + {00000000-0000-0000-0096-000000000003}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000003}, !- Handle BTAP-Ext-DaylightDomes, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000004}, !- Handle BTAP-Ext-DaylightDomes:U=0.241 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000003}; !- Layer 1 + {00000000-0000-0000-0096-000000000003}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000005}, !- Handle BTAP-Ext-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000018}, !- Layer 1 - {00000000-0000-0000-0048-000000000013}; !- Layer 2 + {00000000-0000-0000-0043-000000000018}, !- Layer 1 + {00000000-0000-0000-0044-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000006}, !- Handle BTAP-Ext-Door:U-1.73, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000017}, !- Layer 1 - {00000000-0000-0000-0048-000000000011}; !- Layer 2 + {00000000-0000-0000-0043-000000000017}, !- Layer 1 + {00000000-0000-0000-0044-000000000011}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000007}, !- Handle BTAP-Ext-FixedWindow, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000008}, !- Handle BTAP-Ext-FixedWindow:U=0.173 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 + {00000000-0000-0000-0096-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000009}, !- Handle BTAP-Ext-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000013}, !- Layer 1 - {00000000-0000-0000-0047-000000000008}, !- Layer 2 - {00000000-0000-0000-0048-000000000007}; !- Layer 3 + {00000000-0000-0000-0044-000000000013}, !- Layer 1 + {00000000-0000-0000-0043-000000000008}, !- Layer 2 + {00000000-0000-0000-0044-000000000007}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000010}, !- Handle BTAP-Ext-Floor-Mass:U-0.138, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000008}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}, !- Layer 2 - {00000000-0000-0000-0048-000000000003}; !- Layer 3 + {00000000-0000-0000-0044-000000000008}, !- Layer 1 + {00000000-0000-0000-0043-000000000007}, !- Layer 2 + {00000000-0000-0000-0044-000000000003}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000011}, !- Handle BTAP-Ext-GlassDoors, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000012}, !- Handle BTAP-Ext-GlassDoors:U=0.173 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 + {00000000-0000-0000-0096-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000013}, !- Handle BTAP-Ext-OverHeadDoor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000013}; !- Layer 1 + {00000000-0000-0000-0044-000000000013}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000014}, !- Handle BTAP-Ext-OverHeadDoor:U-1.73, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000012}; !- Layer 1 + {00000000-0000-0000-0044-000000000012}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000015}, !- Handle BTAP-Ext-Roof-Metal, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000024}, !- Layer 1 - {00000000-0000-0000-0048-000000000013}; !- Layer 2 + {00000000-0000-0000-0043-000000000024}, !- Layer 1 + {00000000-0000-0000-0044-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000016}, !- Handle BTAP-Ext-Roof-Metal:U-0.121, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000023}, !- Layer 1 - {00000000-0000-0000-0048-000000000010}; !- Layer 2 + {00000000-0000-0000-0043-000000000023}, !- Layer 1 + {00000000-0000-0000-0044-000000000010}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000017}, !- Handle BTAP-Ext-Skylights, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000018}, !- Handle BTAP-Ext-Skylights:U=0.241 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000003}; !- Layer 1 + {00000000-0000-0000-0096-000000000003}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000019}, !- Handle BTAP-Ext-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000006}, !- Layer 1 - {00000000-0000-0000-0047-000000000014}, !- Layer 2 - {00000000-0000-0000-0048-000000000013}, !- Layer 3 - {00000000-0000-0000-0047-000000000002}; !- Layer 4 + {00000000-0000-0000-0043-000000000006}, !- Layer 1 + {00000000-0000-0000-0043-000000000014}, !- Layer 2 + {00000000-0000-0000-0044-000000000013}, !- Layer 3 + {00000000-0000-0000-0043-000000000002}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000020}, !- Handle BTAP-Ext-Wall-Mass:U-0.215, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000005}, !- Layer 1 - {00000000-0000-0000-0047-000000000013}, !- Layer 2 - {00000000-0000-0000-0048-000000000009}, !- Layer 3 - {00000000-0000-0000-0047-000000000001}; !- Layer 4 + {00000000-0000-0000-0043-000000000005}, !- Layer 1 + {00000000-0000-0000-0043-000000000013}, !- Layer 2 + {00000000-0000-0000-0044-000000000009}, !- Layer 3 + {00000000-0000-0000-0043-000000000001}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000021}, !- Handle BTAP-Grnd-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000012}, !- Layer 1 - {00000000-0000-0000-0048-000000000007}; !- Layer 2 + {00000000-0000-0000-0043-000000000012}, !- Layer 1 + {00000000-0000-0000-0044-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000022}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000009}, !- Layer 1 - {00000000-0000-0000-0048-000000000004}; !- Layer 2 + {00000000-0000-0000-0043-000000000009}, !- Layer 1 + {00000000-0000-0000-0044-000000000004}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000023}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000009}, !- Layer 1 - {00000000-0000-0000-0047-000000000016}; !- Layer 2 + {00000000-0000-0000-0043-000000000009}, !- Layer 1 + {00000000-0000-0000-0043-000000000016}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000024}, !- Handle BTAP-Grnd-Roof-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000012}, !- Layer 1 - {00000000-0000-0000-0048-000000000007}; !- Layer 2 + {00000000-0000-0000-0043-000000000012}, !- Layer 1 + {00000000-0000-0000-0044-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000025}, !- Handle BTAP-Grnd-Roof-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000011}, !- Layer 1 - {00000000-0000-0000-0048-000000000006}; !- Layer 2 + {00000000-0000-0000-0043-000000000011}, !- Layer 1 + {00000000-0000-0000-0044-000000000006}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000026}, !- Handle BTAP-Grnd-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000012}, !- Layer 1 - {00000000-0000-0000-0048-000000000007}; !- Layer 2 + {00000000-0000-0000-0043-000000000012}, !- Layer 1 + {00000000-0000-0000-0044-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000027}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000010}, !- Layer 1 - {00000000-0000-0000-0048-000000000005}; !- Layer 2 + {00000000-0000-0000-0043-000000000010}, !- Layer 1 + {00000000-0000-0000-0044-000000000005}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000028}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000010}, !- Layer 1 - {00000000-0000-0000-0047-000000000015}; !- Layer 2 + {00000000-0000-0000-0043-000000000010}, !- Layer 1 + {00000000-0000-0000-0043-000000000015}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000029}, !- Handle BTAP-Int-Ceiling, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000007}, !- Layer 1 - {00000000-0000-0000-0047-000000000003}; !- Layer 2 + {00000000-0000-0000-0044-000000000007}, !- Layer 1 + {00000000-0000-0000-0043-000000000003}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000030}, !- Handle BTAP-Int-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000021}; !- Layer 1 + {00000000-0000-0000-0043-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000031}, !- Handle BTAP-Int-Floor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000003}, !- Layer 1 - {00000000-0000-0000-0048-000000000007}; !- Layer 2 + {00000000-0000-0000-0043-000000000003}, !- Layer 1 + {00000000-0000-0000-0044-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000032}, !- Handle BTAP-Int-Partition, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000021}; !- Layer 1 + {00000000-0000-0000-0043-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000033}, !- Handle BTAP-Int-Wall, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000019}, !- Layer 1 - {00000000-0000-0000-0047-000000000019}; !- Layer 2 + {00000000-0000-0000-0043-000000000019}, !- Layer 1 + {00000000-0000-0000-0043-000000000019}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000034}, !- Handle BTAP-Int-Window, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 + {00000000-0000-0000-0096-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000035}, !- Handle Basement Floor construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000022}, !- Layer 1 - {00000000-0000-0000-0048-000000000001}; !- Layer 2 + {00000000-0000-0000-0043-000000000022}, !- Layer 1 + {00000000-0000-0000-0044-000000000001}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000036}, !- Handle Basement Wall construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000022}; !- Layer 1 + {00000000-0000-0000-0043-000000000022}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000037}, !- Handle Floor Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000001}, !- Layer 1 - {00000000-0000-0000-0047-000000000004}, !- Layer 2 - {00000000-0000-0000-0048-000000000002}; !- Layer 3 + {00000000-0000-0000-0044-000000000001}, !- Layer 1 + {00000000-0000-0000-0043-000000000004}, !- Layer 2 + {00000000-0000-0000-0044-000000000002}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000038}, !- Handle Wall Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000020}, !- Layer 1 - {00000000-0000-0000-0047-000000000020}; !- Layer 2 - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000004}, !- Handle - Controller Mechanical Ventilation 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000005}, !- Handle - Controller Mechanical Ventilation 5, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000026}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging + {00000000-0000-0000-0043-000000000020}, !- Layer 1 + {00000000-0000-0000-0043-000000000020}; !- Layer 2 -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - NoEconomizer, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} - 64000, !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000030}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000027}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000004}, !- Handle - Controller Outdoor Air 4, !- Name + {00000000-0000-0000-0022-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name @@ -4950,10 +2640,10 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000028}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0059-000000000023}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000004}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -4963,27 +2653,27 @@ OS:Controller:OutdoorAir, InterlockedWithMechanicalCooling; !- Economizer Operation Staging OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000005}, !- Handle - Controller Outdoor Air 5, !- Name + {00000000-0000-0000-0022-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name , !- Actuator Node Name autosize, !- Minimum Outdoor Air Flow Rate {m3/s} Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type + NoEconomizer, !- Economizer Control Type ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} , !- Economizer Maximum Limit Dewpoint Temperature {C} , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000029}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0059-000000000024}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000005}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -5005,45 +2695,6 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000002}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0015-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000003}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0015-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000004}, !- Handle - Controller Water Coil 4, !- Name - {00000000-0000-0000-0015-000000000004}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0024-000000000001}, !- Handle Cooling Tower Single Speed 1, !- Name @@ -5051,7 +2702,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000104}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 28640.7014275539, !- Fan Power at Design Air Flow Rate {W} + 228.936804464239, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -5069,7 +2720,7 @@ OS:CoolingTower:SingleSpeed, , !- Blowdown Makeup Water Usage Schedule Name , !- Outdoor Air Inlet Node Name FanCycling, !- Capacity Control - 2, !- Number of Cells + 1, !- Number of Cells MinimalCell, !- Cell Control 0.33, !- Cell Minimum Water Flow Rate Fraction 2.5, !- Cell Maximum Water Flow Rate Fraction @@ -5198,34 +2849,6 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0025-000000000009}, !- Handle - WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name - 0.707908, !- Coefficient1 Constant - -0.00200657, !- Coefficient2 x - -0.00259605, !- Coefficient3 x**2 - 0.0300588, !- Coefficient4 y - -0.00105643, !- Coefficient5 y**2 - 0.0020457, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000010}, !- Handle - WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name - 0.560523, !- Coefficient1 Constant - -0.0137816, !- Coefficient2 x - 6.56424e-05, !- Coefficient3 x**2 - 0.0132194, !- Coefficient4 y - 0.000268596, !- Coefficient5 y**2 - -0.000501131, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000011}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -5239,7 +2862,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000012}, !- Handle + {00000000-0000-0000-0025-000000000010}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -5282,26 +2905,6 @@ OS:Curve:Cubic, 0.68, !- Minimum Value of x 1; !- Maximum Value of x -OS:Curve:Cubic, - {00000000-0000-0000-0026-000000000004}, !- Handle - VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name - -4.1457, !- Coefficient1 Constant - 16.803, !- Coefficient2 x - -19.471, !- Coefficient3 x**2 - 7.8488, !- Coefficient4 x**3 - 0.5, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0026-000000000005}, !- Handle - VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name - -0.3477, !- Coefficient1 Constant - 4.0976, !- Coefficient2 x - -5.0024, !- Coefficient3 x**2 - 2.268, !- Coefficient4 x**3 - 0.22, !- Minimum Value of x - 1; !- Maximum Value of x - OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000001}, !- Handle Curve Quadratic 1, !- Name @@ -5358,15 +2961,6 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000007}, !- Handle - WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name - 0.171493, !- Coefficient1 Constant - 0.588202, !- Coefficient2 x - 0.237373, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0027-000000000008}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -5398,7 +2992,7 @@ OS:DefaultScheduleSet, , !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -5406,13 +3000,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0063-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0063-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0063-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0063-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0059-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0059-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0059-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0059-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -5420,13 +3014,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000003}, !- Handle Space Function Office open plan Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0063-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0063-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0063-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0063-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0059-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0059-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0059-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0059-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -5535,7 +3129,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name {00000000-0000-0000-0034-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -5544,7 +3138,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000002}, !- Handle Space Function Office open plan Elec Equip, !- Name {00000000-0000-0000-0034-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -5569,157 +3163,13 @@ OS:ElectricEquipment:Definition, , !- Fraction Latent 0.5; !- Fraction Radiant -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name - {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name - {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000005}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_ClgSch0, !- Name - {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0035-000000000006}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_HtgSch0, !- Name - {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {38c30b04-33ff-432c-b30d-ac5ebce8f51c}<23.9 && {38c30b04-33ff-432c-b30d-ac5ebce8f51c}>1.7, !- Program Line 1 - SET {5cb1cd15-641a-4639-9645-ed99617c55be} = 29.4, !- Program Line 2 - SET {efb12a5f-0cd4-4a45-88ea-86110668be04} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {38c30b04-33ff-432c-b30d-ac5ebce8f51c}<23.9 && {38c30b04-33ff-432c-b30d-ac5ebce8f51c}>1.7, !- Program Line 4 - SET {5cb1cd15-641a-4639-9645-ed99617c55be} = 29.4, !- Program Line 5 - SET {efb12a5f-0cd4-4a45-88ea-86110668be04} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {38c30b04-33ff-432c-b30d-ac5ebce8f51c}<23.9 && {38c30b04-33ff-432c-b30d-ac5ebce8f51c}>1.7, !- Program Line 7 - SET {5cb1cd15-641a-4639-9645-ed99617c55be} = 29.4, !- Program Line 8 - SET {efb12a5f-0cd4-4a45-88ea-86110668be04} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {38c30b04-33ff-432c-b30d-ac5ebce8f51c}<23.9 && {38c30b04-33ff-432c-b30d-ac5ebce8f51c}>1.7, !- Program Line 10 - SET {5cb1cd15-641a-4639-9645-ed99617c55be} = 29.4, !- Program Line 11 - SET {efb12a5f-0cd4-4a45-88ea-86110668be04} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {5cb1cd15-641a-4639-9645-ed99617c55be} = NULL, !- Program Line 14 - SET {efb12a5f-0cd4-4a45-88ea-86110668be04} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e3710dbc-221f-49b0-8617-fb6f0097864d}<23.9 && {e3710dbc-221f-49b0-8617-fb6f0097864d}>1.7, !- Program Line 1 - SET {e14eeffc-2793-4fc3-a7b7-a3c0dc0f6454} = 29.4, !- Program Line 2 - SET {7000f112-a68c-42a2-b880-a0ebd16e70e5} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e3710dbc-221f-49b0-8617-fb6f0097864d}<23.9 && {e3710dbc-221f-49b0-8617-fb6f0097864d}>1.7, !- Program Line 4 - SET {e14eeffc-2793-4fc3-a7b7-a3c0dc0f6454} = 29.4, !- Program Line 5 - SET {7000f112-a68c-42a2-b880-a0ebd16e70e5} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e3710dbc-221f-49b0-8617-fb6f0097864d}<23.9 && {e3710dbc-221f-49b0-8617-fb6f0097864d}>1.7, !- Program Line 7 - SET {e14eeffc-2793-4fc3-a7b7-a3c0dc0f6454} = 29.4, !- Program Line 8 - SET {7000f112-a68c-42a2-b880-a0ebd16e70e5} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e3710dbc-221f-49b0-8617-fb6f0097864d}<23.9 && {e3710dbc-221f-49b0-8617-fb6f0097864d}>1.7, !- Program Line 10 - SET {e14eeffc-2793-4fc3-a7b7-a3c0dc0f6454} = 29.4, !- Program Line 11 - SET {7000f112-a68c-42a2-b880-a0ebd16e70e5} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {e14eeffc-2793-4fc3-a7b7-a3c0dc0f6454} = NULL, !- Program Line 14 - SET {7000f112-a68c-42a2-b880-a0ebd16e70e5} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {61cb2323-f4dd-46fb-89be-f4dba68b1574}<23.9 && {61cb2323-f4dd-46fb-89be-f4dba68b1574}>1.7, !- Program Line 1 - SET {a24e2af8-0a7e-43c0-9999-a91e352d3cc5} = 29.4, !- Program Line 2 - SET {9f3cb753-c662-404c-bf94-5b5a9bcc3c35} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {61cb2323-f4dd-46fb-89be-f4dba68b1574}<23.9 && {61cb2323-f4dd-46fb-89be-f4dba68b1574}>1.7, !- Program Line 4 - SET {a24e2af8-0a7e-43c0-9999-a91e352d3cc5} = 29.4, !- Program Line 5 - SET {9f3cb753-c662-404c-bf94-5b5a9bcc3c35} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {61cb2323-f4dd-46fb-89be-f4dba68b1574}<23.9 && {61cb2323-f4dd-46fb-89be-f4dba68b1574}>1.7, !- Program Line 7 - SET {a24e2af8-0a7e-43c0-9999-a91e352d3cc5} = 29.4, !- Program Line 8 - SET {9f3cb753-c662-404c-bf94-5b5a9bcc3c35} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {61cb2323-f4dd-46fb-89be-f4dba68b1574}<23.9 && {61cb2323-f4dd-46fb-89be-f4dba68b1574}>1.7, !- Program Line 10 - SET {a24e2af8-0a7e-43c0-9999-a91e352d3cc5} = 29.4, !- Program Line 11 - SET {9f3cb753-c662-404c-bf94-5b5a9bcc3c35} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {a24e2af8-0a7e-43c0-9999-a91e352d3cc5} = NULL, !- Program Line 14 - SET {9f3cb753-c662-404c-bf94-5b5a9bcc3c35} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0036-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0036-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0036-000000000003}; !- Program Name 1 - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0038-000000000001}, !- Handle - OAT, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0038-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0038-000000000003}, !- Handle - OAT_2, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - OS:Facility, - {00000000-0000-0000-0039-000000000001}; !- Handle + {00000000-0000-0000-0035-000000000001}; !- Handle OS:Fan:ConstantVolume, - {00000000-0000-0000-0040-000000000001}, !- Handle + {00000000-0000-0000-0036-000000000001}, !- Handle Fan Constant Volume 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name 0.39975, !- Fan Total Efficiency 640, !- Pressure Rise {Pa} AutoSize, !- Maximum Flow Rate {m3/s} @@ -5730,72 +3180,9 @@ OS:Fan:ConstantVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000162}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000163}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000218}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000219}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000003}, !- Handle - Sys6 Return Fan 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000274}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000275}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000004}, !- Handle + {00000000-0000-0000-0037-000000000001}, !- Handle Sys6 Return Fan, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency 250, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -5814,72 +3201,9 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000005}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000157}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000155}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000006}, !- Handle - Sys6 Supply Fan 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000213}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000211}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000007}, !- Handle - Sys6 Supply Fan 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000269}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000267}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000008}, !- Handle + {00000000-0000-0000-0037-000000000002}, !- Handle Sys6 Supply Fan, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -5898,7 +3222,7 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Foundation:Kiva, - {00000000-0000-0000-0042-000000000001}, !- Handle + {00000000-0000-0000-0038-000000000001}, !- Handle Bldg Kiva Foundation, !- Name , !- Initial Indoor Air Temperature {C} , !- Interior Horizontal Insulation Material Name @@ -5911,109 +3235,31 @@ OS:Foundation:Kiva, , !- Exterior Horizontal Insulation Width {m} , !- Exterior Vertical Insulation Material Name , !- Exterior Vertical Insulation Depth {m} - 0, !- Wall Height Above Grade {m} - 0, !- Wall Depth Below Slab {m} - , !- Footing Wall Construction Name - , !- Footing Material Name - ; !- Footing Depth {m} - -OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0043-000000000001}, !- Handle - , !- Soil Conductivity {W/m-K} - , !- Soil Density {kg/m3} - , !- Soil Specific Heat {J/kg-K} - , !- Ground Solar Absorptivity {dimensionless} - , !- Ground Thermal Absorptivity {dimensionless} - , !- Ground Surface Roughness {m} - , !- Far-Field Width {m} - , !- Deep-Ground Boundary Condition - , !- Deep-Ground Depth {m} - , !- Minimum Cell Dimension {m} - , !- Maximum Cell Growth Coefficient {dimensionless} - ; !- Simulation Timestep - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0044-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000415}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000416}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000419}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000420}, !- Exhaust Air Outlet Node - 657.843925054951, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0044-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000427}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000428}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000431}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000432}, !- Exhaust Air Outlet Node - 1153.90903758374, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout + 0, !- Wall Height Above Grade {m} + 0, !- Wall Depth Below Slab {m} + , !- Footing Wall Construction Name + , !- Footing Material Name + ; !- Footing Depth {m} -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0044-000000000003}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000433}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000434}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000437}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000438}, !- Exhaust Air Outlet Node - 11089.0903758374, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout +OS:Foundation:Kiva:Settings, + {00000000-0000-0000-0039-000000000001}, !- Handle + , !- Soil Conductivity {W/m-K} + , !- Soil Density {kg/m3} + , !- Soil Specific Heat {J/kg-K} + , !- Ground Solar Absorptivity {dimensionless} + , !- Ground Thermal Absorptivity {dimensionless} + , !- Ground Surface Roughness {m} + , !- Far-Field Width {m} + , !- Deep-Ground Boundary Condition + , !- Deep-Ground Depth {m} + , !- Minimum Cell Dimension {m} + , !- Maximum Cell Growth Coefficient {dimensionless} + ; !- Simulation Timestep OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0044-000000000004}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + {00000000-0000-0000-0040-000000000001}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} @@ -6023,11 +3269,11 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000439}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000440}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000443}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000444}, !- Exhaust Air Outlet Node - 1153.90903758374, !- Nominal Electric Power {W} + {00000000-0000-0000-0017-000000000247}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000248}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000251}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000252}, !- Exhaust Air Outlet Node + 657.843925054951, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type ExhaustOnly, !- Frost Control Type @@ -6037,9 +3283,9 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, Yes; !- Economizer Lockout OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0044-000000000005}, !- Handle + {00000000-0000-0000-0040-000000000002}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} @@ -6049,10 +3295,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000421}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000422}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000425}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000426}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0017-000000000253}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000254}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000257}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000258}, !- Exhaust Air Outlet Node 292.796810422557, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -6063,27 +3309,27 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, Yes; !- Economizer Lockout OS:Lights, - {00000000-0000-0000-0045-000000000001}, !- Handle + {00000000-0000-0000-0041-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Lights, !- Name - {00000000-0000-0000-0046-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0042-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights, - {00000000-0000-0000-0045-000000000002}, !- Handle + {00000000-0000-0000-0041-000000000002}, !- Handle Space Function Office open plan Lights, !- Name - {00000000-0000-0000-0046-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0042-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights:Definition, - {00000000-0000-0000-0046-000000000001}, !- Handle + {00000000-0000-0000-0042-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -6093,7 +3339,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Lights:Definition, - {00000000-0000-0000-0046-000000000002}, !- Handle + {00000000-0000-0000-0042-000000000002}, !- Handle Space Function Office open plan Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -6103,7 +3349,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Material, - {00000000-0000-0000-0047-000000000001}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Handle 1/2IN Gypsum 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -6115,7 +3361,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000002}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Handle 1/2IN Gypsum, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -6127,7 +3373,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000003}, !- Handle + {00000000-0000-0000-0043-000000000003}, !- Handle 100mm Normalweight concrete floor 1, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -6136,7 +3382,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0047-000000000004}, !- Handle + {00000000-0000-0000-0043-000000000004}, !- Handle 100mm Normalweight concrete floor, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -6145,7 +3391,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0047-000000000005}, !- Handle + {00000000-0000-0000-0043-000000000005}, !- Handle 1IN Stucco 1, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -6157,7 +3403,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000006}, !- Handle + {00000000-0000-0000-0043-000000000006}, !- Handle 1IN Stucco, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -6169,7 +3415,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000007}, !- Handle + {00000000-0000-0000-0043-000000000007}, !- Handle 4 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -6181,7 +3427,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000008}, !- Handle + {00000000-0000-0000-0043-000000000008}, !- Handle 4 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -6193,7 +3439,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000009}, !- Handle + {00000000-0000-0000-0043-000000000009}, !- Handle 6 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -6205,7 +3451,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000010}, !- Handle + {00000000-0000-0000-0043-000000000010}, !- Handle 6 in. Normalweight Concrete Floor 2, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -6217,7 +3463,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000011}, !- Handle + {00000000-0000-0000-0043-000000000011}, !- Handle 6 in. Normalweight Concrete Floor 3, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -6229,7 +3475,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000012}, !- Handle + {00000000-0000-0000-0043-000000000012}, !- Handle 6 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -6241,7 +3487,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000013}, !- Handle + {00000000-0000-0000-0043-000000000013}, !- Handle 8IN CONCRETE HW RefBldg 1, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -6253,7 +3499,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000014}, !- Handle + {00000000-0000-0000-0043-000000000014}, !- Handle 8IN CONCRETE HW RefBldg, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -6265,7 +3511,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000015}, !- Handle + {00000000-0000-0000-0043-000000000015}, !- Handle Expanded Polystyrene 1, !- Name MediumSmooth, !- Roughness 0.100199429303091, !- Thickness {m} @@ -6274,7 +3520,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0047-000000000016}, !- Handle + {00000000-0000-0000-0043-000000000016}, !- Handle Expanded Polystyrene, !- Name MediumSmooth, !- Roughness 0.0363958681740979, !- Thickness {m} @@ -6283,7 +3529,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0047-000000000017}, !- Handle + {00000000-0000-0000-0043-000000000017}, !- Handle F08 Metal surface 1, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -6295,7 +3541,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000018}, !- Handle + {00000000-0000-0000-0043-000000000018}, !- Handle F08 Metal surface, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -6307,7 +3553,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000019}, !- Handle + {00000000-0000-0000-0043-000000000019}, !- Handle G01 13mm gypsum board 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -6319,7 +3565,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000020}, !- Handle + {00000000-0000-0000-0043-000000000020}, !- Handle G01 13mm gypsum board, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -6331,7 +3577,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000021}, !- Handle + {00000000-0000-0000-0043-000000000021}, !- Handle G05 25mm wood, !- Name MediumSmooth, !- Roughness 0.0254, !- Thickness {m} @@ -6343,7 +3589,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000022}, !- Handle + {00000000-0000-0000-0043-000000000022}, !- Handle M10 200mm concrete block basement wall, !- Name MediumRough, !- Roughness 0.2032, !- Thickness {m} @@ -6352,7 +3598,7 @@ OS:Material, 912; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0047-000000000023}, !- Handle + {00000000-0000-0000-0043-000000000023}, !- Handle Metal Roof Surface 1, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -6364,7 +3610,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0047-000000000024}, !- Handle + {00000000-0000-0000-0043-000000000024}, !- Handle Metal Roof Surface, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -6376,7 +3622,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000001}, !- Handle + {00000000-0000-0000-0044-000000000001}, !- Handle CP02 CARPET PAD, !- Name VeryRough, !- Roughness 0.21648, !- Thermal Resistance {m2-K/W} @@ -6385,7 +3631,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000002}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Handle Nonres_Floor_Insulation, !- Name MediumSmooth, !- Roughness 2.88291975297193, !- Thermal Resistance {m2-K/W} @@ -6394,7 +3640,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000003}, !- Handle + {00000000-0000-0000-0044-000000000003}, !- Handle Typical Carpet Pad 1, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -6403,7 +3649,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000004}, !- Handle + {00000000-0000-0000-0044-000000000004}, !- Handle Typical Carpet Pad 2, !- Name Smooth, !- Roughness 1.25502993703786, !- Thermal Resistance {m2-K/W} @@ -6412,7 +3658,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000005}, !- Handle + {00000000-0000-0000-0044-000000000005}, !- Handle Typical Carpet Pad 3, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -6421,7 +3667,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000006}, !- Handle + {00000000-0000-0000-0044-000000000006}, !- Handle Typical Carpet Pad 4, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -6430,7 +3676,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000007}, !- Handle + {00000000-0000-0000-0044-000000000007}, !- Handle Typical Carpet Pad, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -6439,7 +3685,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000008}, !- Handle + {00000000-0000-0000-0044-000000000008}, !- Handle Typical Insulation 1, !- Name Smooth, !- Roughness 6.98591414061624, !- Thermal Resistance {m2-K/W} @@ -6448,7 +3694,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000009}, !- Handle + {00000000-0000-0000-0044-000000000009}, !- Handle Typical Insulation 2, !- Name Smooth, !- Roughness 4.38022034120929, !- Thermal Resistance {m2-K/W} @@ -6457,7 +3703,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000010}, !- Handle + {00000000-0000-0000-0044-000000000010}, !- Handle Typical Insulation 3, !- Name Smooth, !- Roughness 8.26444514207283, !- Thermal Resistance {m2-K/W} @@ -6466,7 +3712,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000011}, !- Handle + {00000000-0000-0000-0044-000000000011}, !- Handle Typical Insulation 4, !- Name Smooth, !- Roughness 0.578017014236402, !- Thermal Resistance {m2-K/W} @@ -6475,7 +3721,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000012}, !- Handle + {00000000-0000-0000-0044-000000000012}, !- Handle Typical Insulation 5, !- Name Smooth, !- Roughness 0.578034682080925, !- Thermal Resistance {m2-K/W} @@ -6484,7 +3730,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0048-000000000013}, !- Handle + {00000000-0000-0000-0044-000000000013}, !- Handle Typical Insulation, !- Name Smooth, !- Roughness 0.101874652714525, !- Thermal Resistance {m2-K/W} @@ -6493,1480 +3739,856 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:ModelObjectList, - {00000000-0000-0000-0049-000000000001}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Handle Availability Manager Night Cycle 1 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000002}, !- Handle + {00000000-0000-0000-0045-000000000002}, !- Handle Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000003}, !- Handle + {00000000-0000-0000-0045-000000000003}, !- Handle Availability Manager Night Cycle 1 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000004}, !- Handle + {00000000-0000-0000-0045-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000005}, !- Handle + {00000000-0000-0000-0045-000000000005}, !- Handle Availability Manager Night Cycle 2 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000006}, !- Handle + {00000000-0000-0000-0045-000000000006}, !- Handle Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000007}, !- Handle + {00000000-0000-0000-0045-000000000007}, !- Handle Availability Manager Night Cycle 2 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0049-000000000008}, !- Handle + {00000000-0000-0000-0045-000000000008}, !- Handle Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000013}, !- Handle - Availability Manager Night Cycle 4 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000014}, !- Handle - Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000015}, !- Handle - Availability Manager Night Cycle 4 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000016}, !- Handle - Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000017}, !- Handle - Availability Manager Night Cycle 5 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000018}, !- Handle - Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000019}, !- Handle - Availability Manager Night Cycle 5 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000020}, !- Handle - Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name - OS:Node, - {00000000-0000-0000-0050-000000000001}, !- Handle + {00000000-0000-0000-0046-000000000001}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000314}, !- Inlet Port - {00000000-0000-0000-0017-000000000323}; !- Outlet Port + {00000000-0000-0000-0017-000000000146}, !- Inlet Port + {00000000-0000-0000-0017-000000000155}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000002}, !- Handle + {00000000-0000-0000-0046-000000000002}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000324}, !- Inlet Port - {00000000-0000-0000-0017-000000000325}; !- Outlet Port + {00000000-0000-0000-0017-000000000156}, !- Inlet Port + {00000000-0000-0000-0017-000000000157}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000003}, !- Handle + {00000000-0000-0000-0046-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000004}, !- Handle + {00000000-0000-0000-0046-000000000004}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000005}, !- Handle + {00000000-0000-0000-0046-000000000005}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000027}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000006}, !- Handle + {00000000-0000-0000-0046-000000000006}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000140}, !- Inlet Port {00000000-0000-0000-0017-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000007}, !- Handle + {00000000-0000-0000-0046-000000000007}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000036}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000008}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000172}, !- Inlet Port - {00000000-0000-0000-0017-000000000173}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000009}, !- Handle + {00000000-0000-0000-0046-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000010}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000184}, !- Inlet Port - {00000000-0000-0000-0017-000000000185}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000011}, !- Handle + {00000000-0000-0000-0046-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000012}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000166}, !- Inlet Port - {00000000-0000-0000-0017-000000000167}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000013}, !- Handle + {00000000-0000-0000-0046-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000014}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000190}, !- Inlet Port - {00000000-0000-0000-0017-000000000191}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000015}, !- Handle + {00000000-0000-0000-0046-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000016}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000178}, !- Inlet Port - {00000000-0000-0000-0017-000000000179}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000017}, !- Handle + {00000000-0000-0000-0046-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000045}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000018}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000196}, !- Inlet Port - {00000000-0000-0000-0017-000000000197}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000019}, !- Handle + {00000000-0000-0000-0046-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000024}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000020}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000240}, !- Inlet Port - {00000000-0000-0000-0017-000000000241}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000021}, !- Handle + {00000000-0000-0000-0046-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000022}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000234}, !- Inlet Port - {00000000-0000-0000-0017-000000000235}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000023}, !- Handle + {00000000-0000-0000-0046-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000035}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000024}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000228}, !- Inlet Port - {00000000-0000-0000-0017-000000000229}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000025}, !- Handle + {00000000-0000-0000-0046-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000026}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000222}, !- Inlet Port - {00000000-0000-0000-0017-000000000223}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000027}, !- Handle + {00000000-0000-0000-0046-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000042}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000028}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000246}, !- Inlet Port - {00000000-0000-0000-0017-000000000247}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000029}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000044}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000030}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000252}, !- Inlet Port - {00000000-0000-0000-0017-000000000253}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000031}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000028}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000032}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000290}, !- Inlet Port - {00000000-0000-0000-0017-000000000291}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000033}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000029}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000034}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000296}, !- Inlet Port - {00000000-0000-0000-0017-000000000297}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000035}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000032}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000036}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000284}, !- Inlet Port - {00000000-0000-0000-0017-000000000285}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000037}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000034}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000038}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000302}, !- Inlet Port - {00000000-0000-0000-0017-000000000303}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000039}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000039}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000040}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000278}, !- Inlet Port - {00000000-0000-0000-0017-000000000279}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000041}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000041}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000042}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000308}, !- Inlet Port - {00000000-0000-0000-0017-000000000309}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000043}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000026}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000044}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000064}, !- Inlet Port - {00000000-0000-0000-0017-000000000065}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000045}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000066}, !- Inlet Port - {00000000-0000-0000-0017-000000000061}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000142}, !- Inlet Port - {00000000-0000-0000-0017-000000000143}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000144}, !- Inlet Port - {00000000-0000-0000-0017-000000000139}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000236}, !- Inlet Port - {00000000-0000-0000-0017-000000000237}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000238}, !- Inlet Port - {00000000-0000-0000-0017-000000000233}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000050}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000242}, !- Inlet Port - {00000000-0000-0000-0017-000000000243}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000051}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000244}, !- Inlet Port - {00000000-0000-0000-0017-000000000239}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000052}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000248}, !- Inlet Port - {00000000-0000-0000-0017-000000000249}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000053}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000250}, !- Inlet Port - {00000000-0000-0000-0017-000000000245}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000054}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000254}, !- Inlet Port - {00000000-0000-0000-0017-000000000255}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000055}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000256}, !- Inlet Port - {00000000-0000-0000-0017-000000000251}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000056}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000280}, !- Inlet Port - {00000000-0000-0000-0017-000000000281}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000057}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000282}, !- Inlet Port - {00000000-0000-0000-0017-000000000277}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000286}, !- Inlet Port - {00000000-0000-0000-0017-000000000287}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000288}, !- Inlet Port - {00000000-0000-0000-0017-000000000283}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000292}, !- Inlet Port - {00000000-0000-0000-0017-000000000293}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000294}, !- Inlet Port - {00000000-0000-0000-0017-000000000289}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000298}, !- Inlet Port - {00000000-0000-0000-0017-000000000299}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000300}, !- Inlet Port - {00000000-0000-0000-0017-000000000295}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000304}, !- Inlet Port - {00000000-0000-0000-0017-000000000305}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000306}, !- Inlet Port - {00000000-0000-0000-0017-000000000301}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000066}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000310}, !- Inlet Port - {00000000-0000-0000-0017-000000000311}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000067}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000312}, !- Inlet Port - {00000000-0000-0000-0017-000000000307}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000068}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000168}, !- Inlet Port - {00000000-0000-0000-0017-000000000169}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000069}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000170}, !- Inlet Port - {00000000-0000-0000-0017-000000000165}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000070}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000174}, !- Inlet Port - {00000000-0000-0000-0017-000000000175}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000071}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000176}, !- Inlet Port - {00000000-0000-0000-0017-000000000171}; !- Outlet Port + {00000000-0000-0000-0017-000000000042}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000072}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000180}, !- Inlet Port - {00000000-0000-0000-0017-000000000181}; !- Outlet Port + {00000000-0000-0000-0046-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000044}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000073}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000182}, !- Inlet Port - {00000000-0000-0000-0017-000000000177}; !- Outlet Port + {00000000-0000-0000-0046-000000000019}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000028}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000074}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000186}, !- Inlet Port - {00000000-0000-0000-0017-000000000187}; !- Outlet Port + {00000000-0000-0000-0046-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000029}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000075}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000188}, !- Inlet Port - {00000000-0000-0000-0017-000000000183}; !- Outlet Port + {00000000-0000-0000-0046-000000000021}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000032}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000076}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000192}, !- Inlet Port - {00000000-0000-0000-0017-000000000193}; !- Outlet Port + {00000000-0000-0000-0046-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000034}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000077}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000194}, !- Inlet Port - {00000000-0000-0000-0017-000000000189}; !- Outlet Port + {00000000-0000-0000-0046-000000000023}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000039}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000078}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000198}, !- Inlet Port - {00000000-0000-0000-0017-000000000199}; !- Outlet Port + {00000000-0000-0000-0046-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000041}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000079}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000200}, !- Inlet Port - {00000000-0000-0000-0017-000000000195}; !- Outlet Port + {00000000-0000-0000-0046-000000000025}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0017-000000000026}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000080}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Port - {00000000-0000-0000-0017-000000000225}; !- Outlet Port + {00000000-0000-0000-0046-000000000026}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000064}, !- Inlet Port + {00000000-0000-0000-0017-000000000065}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000081}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000226}, !- Inlet Port - {00000000-0000-0000-0017-000000000221}; !- Outlet Port + {00000000-0000-0000-0046-000000000027}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000066}, !- Inlet Port + {00000000-0000-0000-0017-000000000061}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000082}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000230}, !- Inlet Port - {00000000-0000-0000-0017-000000000231}; !- Outlet Port + {00000000-0000-0000-0046-000000000028}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000142}, !- Inlet Port + {00000000-0000-0000-0017-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000083}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000232}, !- Inlet Port - {00000000-0000-0000-0017-000000000227}; !- Outlet Port + {00000000-0000-0000-0046-000000000029}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000144}, !- Inlet Port + {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000084}, !- Handle + {00000000-0000-0000-0046-000000000030}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000070}, !- Inlet Port {00000000-0000-0000-0017-000000000071}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000085}, !- Handle + {00000000-0000-0000-0046-000000000031}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000073}, !- Inlet Port {00000000-0000-0000-0017-000000000074}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000086}, !- Handle + {00000000-0000-0000-0046-000000000032}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000067}, !- Inlet Port {00000000-0000-0000-0017-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000087}, !- Handle + {00000000-0000-0000-0046-000000000033}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000088}, !- Handle + {00000000-0000-0000-0046-000000000034}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000072}, !- Inlet Port {00000000-0000-0000-0017-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000089}, !- Handle + {00000000-0000-0000-0046-000000000035}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port {00000000-0000-0000-0017-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000090}, !- Handle + {00000000-0000-0000-0046-000000000036}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000127}, !- Inlet Port {00000000-0000-0000-0017-000000000128}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000091}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000151}, !- Inlet Port - {00000000-0000-0000-0017-000000000152}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000092}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000158}, !- Inlet Port - {00000000-0000-0000-0017-000000000159}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000093}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000153}, !- Inlet Port - {00000000-0000-0000-0017-000000000154}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000094}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000207}, !- Inlet Port - {00000000-0000-0000-0017-000000000208}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000095}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000214}, !- Inlet Port - {00000000-0000-0000-0017-000000000215}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000096}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000209}, !- Inlet Port - {00000000-0000-0000-0017-000000000210}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000097}, !- Handle - Coil Cooling Water 4 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000263}, !- Inlet Port - {00000000-0000-0000-0017-000000000264}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000098}, !- Handle - Coil Cooling Water 4 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000270}, !- Inlet Port - {00000000-0000-0000-0017-000000000271}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000099}, !- Handle - Coil Cooling Water 4 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000265}, !- Inlet Port - {00000000-0000-0000-0017-000000000266}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000100}, !- Handle + {00000000-0000-0000-0046-000000000037}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000054}, !- Inlet Port {00000000-0000-0000-0017-000000000055}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000101}, !- Handle - Coil Heating Electric 11 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Port - {00000000-0000-0000-0017-000000000213}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000102}, !- Handle - Coil Heating Electric 18 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000268}, !- Inlet Port - {00000000-0000-0000-0017-000000000269}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000103}, !- Handle + {00000000-0000-0000-0046-000000000038}, !- Handle Coil Heating Electric 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000130}, !- Inlet Port {00000000-0000-0000-0017-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000104}, !- Handle - Coil Heating Electric 4 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000156}, !- Inlet Port - {00000000-0000-0000-0017-000000000157}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000105}, !- Handle - CoilCoolingDXSingleSpeed_dx 114kBtu/hr 9.44EER Outlet Air Node, !- Name + {00000000-0000-0000-0046-000000000039}, !- Handle + CoilCoolingDXSingleSpeed_dx 115kBtu/hr 9.44EER Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000056}, !- Inlet Port {00000000-0000-0000-0017-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000106}, !- Handle + {00000000-0000-0000-0046-000000000040}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000095}, !- Inlet Port {00000000-0000-0000-0017-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000107}, !- Handle + {00000000-0000-0000-0046-000000000041}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000098}, !- Inlet Port {00000000-0000-0000-0017-000000000099}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000108}, !- Handle + {00000000-0000-0000-0046-000000000042}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Port {00000000-0000-0000-0017-000000000100}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000109}, !- Handle + {00000000-0000-0000-0046-000000000043}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000112}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000110}, !- Handle + {00000000-0000-0000-0046-000000000044}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000111}, !- Handle + {00000000-0000-0000-0046-000000000045}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000104}, !- Inlet Port {00000000-0000-0000-0017-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000112}, !- Handle + {00000000-0000-0000-0046-000000000046}, !- Handle Core_bottom WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000339}, !- Inlet Port - {00000000-0000-0000-0017-000000000340}; !- Outlet Port + {00000000-0000-0000-0017-000000000171}, !- Inlet Port + {00000000-0000-0000-0017-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000113}, !- Handle + {00000000-0000-0000-0046-000000000047}, !- Handle Core_bottom WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000341}, !- Inlet Port - {00000000-0000-0000-0017-000000000342}; !- Outlet Port + {00000000-0000-0000-0017-000000000173}, !- Inlet Port + {00000000-0000-0000-0017-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000114}, !- Handle + {00000000-0000-0000-0046-000000000048}, !- Handle Core_mid WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000343}, !- Inlet Port - {00000000-0000-0000-0017-000000000344}; !- Outlet Port + {00000000-0000-0000-0017-000000000175}, !- Inlet Port + {00000000-0000-0000-0017-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000115}, !- Handle + {00000000-0000-0000-0046-000000000049}, !- Handle Core_mid WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000345}, !- Inlet Port - {00000000-0000-0000-0017-000000000346}; !- Outlet Port + {00000000-0000-0000-0017-000000000177}, !- Inlet Port + {00000000-0000-0000-0017-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000116}, !- Handle + {00000000-0000-0000-0046-000000000050}, !- Handle Core_top WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000347}, !- Inlet Port - {00000000-0000-0000-0017-000000000348}; !- Outlet Port + {00000000-0000-0000-0017-000000000179}, !- Inlet Port + {00000000-0000-0000-0017-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000117}, !- Handle + {00000000-0000-0000-0046-000000000051}, !- Handle Core_top WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000349}, !- Inlet Port - {00000000-0000-0000-0017-000000000350}; !- Outlet Port + {00000000-0000-0000-0017-000000000181}, !- Inlet Port + {00000000-0000-0000-0017-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000118}, !- Handle + {00000000-0000-0000-0046-000000000052}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000351}, !- Inlet Port - {00000000-0000-0000-0017-000000000352}; !- Outlet Port + {00000000-0000-0000-0017-000000000183}, !- Inlet Port + {00000000-0000-0000-0017-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000119}, !- Handle + {00000000-0000-0000-0046-000000000053}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000353}, !- Inlet Port - {00000000-0000-0000-0017-000000000354}; !- Outlet Port + {00000000-0000-0000-0017-000000000185}, !- Inlet Port + {00000000-0000-0000-0017-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000120}, !- Handle + {00000000-0000-0000-0046-000000000054}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000355}, !- Inlet Port - {00000000-0000-0000-0017-000000000356}; !- Outlet Port + {00000000-0000-0000-0017-000000000187}, !- Inlet Port + {00000000-0000-0000-0017-000000000188}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000121}, !- Handle + {00000000-0000-0000-0046-000000000055}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000357}, !- Inlet Port - {00000000-0000-0000-0017-000000000358}; !- Outlet Port + {00000000-0000-0000-0017-000000000189}, !- Inlet Port + {00000000-0000-0000-0017-000000000190}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000122}, !- Handle + {00000000-0000-0000-0046-000000000056}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000359}, !- Inlet Port - {00000000-0000-0000-0017-000000000360}; !- Outlet Port + {00000000-0000-0000-0017-000000000191}, !- Inlet Port + {00000000-0000-0000-0017-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000123}, !- Handle + {00000000-0000-0000-0046-000000000057}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000361}, !- Inlet Port - {00000000-0000-0000-0017-000000000362}; !- Outlet Port + {00000000-0000-0000-0017-000000000193}, !- Inlet Port + {00000000-0000-0000-0017-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000124}, !- Handle + {00000000-0000-0000-0046-000000000058}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000363}, !- Inlet Port - {00000000-0000-0000-0017-000000000364}; !- Outlet Port + {00000000-0000-0000-0017-000000000195}, !- Inlet Port + {00000000-0000-0000-0017-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000125}, !- Handle + {00000000-0000-0000-0046-000000000059}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000365}, !- Inlet Port - {00000000-0000-0000-0017-000000000366}; !- Outlet Port + {00000000-0000-0000-0017-000000000197}, !- Inlet Port + {00000000-0000-0000-0017-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000126}, !- Handle + {00000000-0000-0000-0046-000000000060}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000321}, !- Inlet Port - {00000000-0000-0000-0017-000000000322}; !- Outlet Port + {00000000-0000-0000-0017-000000000153}, !- Inlet Port + {00000000-0000-0000-0017-000000000154}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000127}, !- Handle + {00000000-0000-0000-0046-000000000061}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000316}, !- Inlet Port - {00000000-0000-0000-0017-000000000317}; !- Outlet Port + {00000000-0000-0000-0017-000000000148}, !- Inlet Port + {00000000-0000-0000-0017-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000128}, !- Handle + {00000000-0000-0000-0046-000000000062}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000338}, !- Inlet Port - {00000000-0000-0000-0017-000000000319}; !- Outlet Port + {00000000-0000-0000-0017-000000000170}, !- Inlet Port + {00000000-0000-0000-0017-000000000151}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000129}, !- Handle + {00000000-0000-0000-0046-000000000063}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000313}, !- Inlet Port - {00000000-0000-0000-0017-000000000320}; !- Outlet Port + {00000000-0000-0000-0017-000000000145}, !- Inlet Port + {00000000-0000-0000-0017-000000000152}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000130}, !- Handle + {00000000-0000-0000-0046-000000000064}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000335}, !- Inlet Port - {00000000-0000-0000-0017-000000000315}; !- Outlet Port + {00000000-0000-0000-0017-000000000167}, !- Inlet Port + {00000000-0000-0000-0017-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000131}, !- Handle + {00000000-0000-0000-0046-000000000065}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000367}, !- Inlet Port - {00000000-0000-0000-0017-000000000368}; !- Outlet Port + {00000000-0000-0000-0017-000000000199}, !- Inlet Port + {00000000-0000-0000-0017-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000132}, !- Handle + {00000000-0000-0000-0046-000000000066}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000369}, !- Inlet Port - {00000000-0000-0000-0017-000000000370}; !- Outlet Port + {00000000-0000-0000-0017-000000000201}, !- Inlet Port + {00000000-0000-0000-0017-000000000202}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000133}, !- Handle + {00000000-0000-0000-0046-000000000067}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000371}, !- Inlet Port - {00000000-0000-0000-0017-000000000372}; !- Outlet Port + {00000000-0000-0000-0017-000000000203}, !- Inlet Port + {00000000-0000-0000-0017-000000000204}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000134}, !- Handle + {00000000-0000-0000-0046-000000000068}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000373}, !- Inlet Port - {00000000-0000-0000-0017-000000000374}; !- Outlet Port + {00000000-0000-0000-0017-000000000205}, !- Inlet Port + {00000000-0000-0000-0017-000000000206}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000135}, !- Handle + {00000000-0000-0000-0046-000000000069}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000375}, !- Inlet Port - {00000000-0000-0000-0017-000000000376}; !- Outlet Port + {00000000-0000-0000-0017-000000000207}, !- Inlet Port + {00000000-0000-0000-0017-000000000208}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000136}, !- Handle + {00000000-0000-0000-0046-000000000070}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000377}, !- Inlet Port - {00000000-0000-0000-0017-000000000378}; !- Outlet Port + {00000000-0000-0000-0017-000000000209}, !- Inlet Port + {00000000-0000-0000-0017-000000000210}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000137}, !- Handle + {00000000-0000-0000-0046-000000000071}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000379}, !- Inlet Port - {00000000-0000-0000-0017-000000000380}; !- Outlet Port + {00000000-0000-0000-0017-000000000211}, !- Inlet Port + {00000000-0000-0000-0017-000000000212}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000138}, !- Handle + {00000000-0000-0000-0046-000000000072}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000381}, !- Inlet Port - {00000000-0000-0000-0017-000000000382}; !- Outlet Port + {00000000-0000-0000-0017-000000000213}, !- Inlet Port + {00000000-0000-0000-0017-000000000214}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000139}, !- Handle + {00000000-0000-0000-0046-000000000073}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000383}, !- Inlet Port - {00000000-0000-0000-0017-000000000384}; !- Outlet Port + {00000000-0000-0000-0017-000000000215}, !- Inlet Port + {00000000-0000-0000-0017-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000140}, !- Handle + {00000000-0000-0000-0046-000000000074}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000385}, !- Inlet Port - {00000000-0000-0000-0017-000000000386}; !- Outlet Port + {00000000-0000-0000-0017-000000000217}, !- Inlet Port + {00000000-0000-0000-0017-000000000218}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000141}, !- Handle + {00000000-0000-0000-0046-000000000075}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000387}, !- Inlet Port - {00000000-0000-0000-0017-000000000388}; !- Outlet Port + {00000000-0000-0000-0017-000000000219}, !- Inlet Port + {00000000-0000-0000-0017-000000000220}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000142}, !- Handle + {00000000-0000-0000-0046-000000000076}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000389}, !- Inlet Port - {00000000-0000-0000-0017-000000000390}; !- Outlet Port + {00000000-0000-0000-0017-000000000221}, !- Inlet Port + {00000000-0000-0000-0017-000000000222}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000143}, !- Handle + {00000000-0000-0000-0046-000000000077}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000391}, !- Inlet Port - {00000000-0000-0000-0017-000000000392}; !- Outlet Port + {00000000-0000-0000-0017-000000000223}, !- Inlet Port + {00000000-0000-0000-0017-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000144}, !- Handle + {00000000-0000-0000-0046-000000000078}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000393}, !- Inlet Port - {00000000-0000-0000-0017-000000000394}; !- Outlet Port + {00000000-0000-0000-0017-000000000225}, !- Inlet Port + {00000000-0000-0000-0017-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000145}, !- Handle + {00000000-0000-0000-0046-000000000079}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000395}, !- Inlet Port - {00000000-0000-0000-0017-000000000396}; !- Outlet Port + {00000000-0000-0000-0017-000000000227}, !- Inlet Port + {00000000-0000-0000-0017-000000000228}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000146}, !- Handle + {00000000-0000-0000-0046-000000000080}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000397}, !- Inlet Port - {00000000-0000-0000-0017-000000000398}; !- Outlet Port + {00000000-0000-0000-0017-000000000229}, !- Inlet Port + {00000000-0000-0000-0017-000000000230}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000147}, !- Handle + {00000000-0000-0000-0046-000000000081}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000399}, !- Inlet Port - {00000000-0000-0000-0017-000000000400}; !- Outlet Port + {00000000-0000-0000-0017-000000000231}, !- Inlet Port + {00000000-0000-0000-0017-000000000232}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000148}, !- Handle + {00000000-0000-0000-0046-000000000082}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000401}, !- Inlet Port - {00000000-0000-0000-0017-000000000402}; !- Outlet Port + {00000000-0000-0000-0017-000000000233}, !- Inlet Port + {00000000-0000-0000-0017-000000000234}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000149}, !- Handle + {00000000-0000-0000-0046-000000000083}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000403}, !- Inlet Port - {00000000-0000-0000-0017-000000000404}; !- Outlet Port + {00000000-0000-0000-0017-000000000235}, !- Inlet Port + {00000000-0000-0000-0017-000000000236}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000150}, !- Handle + {00000000-0000-0000-0046-000000000084}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000405}, !- Inlet Port - {00000000-0000-0000-0017-000000000406}; !- Outlet Port + {00000000-0000-0000-0017-000000000237}, !- Inlet Port + {00000000-0000-0000-0017-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000151}, !- Handle + {00000000-0000-0000-0046-000000000085}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000407}, !- Inlet Port - {00000000-0000-0000-0017-000000000408}; !- Outlet Port + {00000000-0000-0000-0017-000000000239}, !- Inlet Port + {00000000-0000-0000-0017-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000152}, !- Handle + {00000000-0000-0000-0046-000000000086}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000409}, !- Inlet Port - {00000000-0000-0000-0017-000000000410}; !- Outlet Port + {00000000-0000-0000-0017-000000000241}, !- Inlet Port + {00000000-0000-0000-0017-000000000242}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000153}, !- Handle + {00000000-0000-0000-0046-000000000087}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000411}, !- Inlet Port - {00000000-0000-0000-0017-000000000412}; !- Outlet Port + {00000000-0000-0000-0017-000000000243}, !- Inlet Port + {00000000-0000-0000-0017-000000000244}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000154}, !- Handle + {00000000-0000-0000-0046-000000000088}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000413}, !- Inlet Port - {00000000-0000-0000-0017-000000000414}; !- Outlet Port + {00000000-0000-0000-0017-000000000245}, !- Inlet Port + {00000000-0000-0000-0017-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000155}, !- Handle + {00000000-0000-0000-0046-000000000089}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000085}, !- Inlet Port {00000000-0000-0000-0017-000000000086}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000156}, !- Handle + {00000000-0000-0000-0046-000000000090}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000157}, !- Handle + {00000000-0000-0000-0046-000000000091}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000089}, !- Inlet Port {00000000-0000-0000-0017-000000000090}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000158}, !- Handle + {00000000-0000-0000-0046-000000000092}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000106}, !- Inlet Port {00000000-0000-0000-0017-000000000107}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000159}, !- Handle + {00000000-0000-0000-0046-000000000093}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000108}, !- Inlet Port {00000000-0000-0000-0017-000000000109}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000160}, !- Handle + {00000000-0000-0000-0046-000000000094}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000110}, !- Inlet Port {00000000-0000-0000-0017-000000000111}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000161}, !- Handle + {00000000-0000-0000-0046-000000000095}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000326}, !- Inlet Port - {00000000-0000-0000-0017-000000000327}; !- Outlet Port + {00000000-0000-0000-0017-000000000158}, !- Inlet Port + {00000000-0000-0000-0017-000000000159}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000162}, !- Handle + {00000000-0000-0000-0046-000000000096}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000328}, !- Inlet Port - {00000000-0000-0000-0017-000000000329}; !- Outlet Port + {00000000-0000-0000-0017-000000000160}, !- Inlet Port + {00000000-0000-0000-0017-000000000161}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000163}, !- Handle + {00000000-0000-0000-0046-000000000097}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000318}, !- Inlet Port - {00000000-0000-0000-0017-000000000330}; !- Outlet Port + {00000000-0000-0000-0017-000000000150}, !- Inlet Port + {00000000-0000-0000-0017-000000000162}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000164}, !- Handle + {00000000-0000-0000-0046-000000000098}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000331}, !- Inlet Port - {00000000-0000-0000-0017-000000000332}; !- Outlet Port + {00000000-0000-0000-0017-000000000163}, !- Inlet Port + {00000000-0000-0000-0017-000000000164}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000165}, !- Handle + {00000000-0000-0000-0046-000000000099}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000333}, !- Inlet Port - {00000000-0000-0000-0017-000000000334}; !- Outlet Port + {00000000-0000-0000-0017-000000000165}, !- Inlet Port + {00000000-0000-0000-0017-000000000166}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000166}, !- Handle + {00000000-0000-0000-0046-000000000100}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000336}, !- Inlet Port - {00000000-0000-0000-0017-000000000337}; !- Outlet Port + {00000000-0000-0000-0017-000000000168}, !- Inlet Port + {00000000-0000-0000-0017-000000000169}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000167}, !- Handle - Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0046-000000000101}, !- Handle + Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000097}, !- Inlet Port {00000000-0000-0000-0017-000000000113}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000168}, !- Handle - Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0046-000000000102}, !- Handle + Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000114}, !- Inlet Port {00000000-0000-0000-0017-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000169}, !- Handle - Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0046-000000000103}, !- Handle + Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000078}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000170}, !- Handle - Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0046-000000000104}, !- Handle + Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000079}, !- Inlet Port {00000000-0000-0000-0017-000000000080}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000171}, !- Handle + {00000000-0000-0000-0046-000000000105}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000076}, !- Inlet Port {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000172}, !- Handle + {00000000-0000-0000-0046-000000000106}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000101}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000173}, !- Handle + {00000000-0000-0000-0046-000000000107}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000116}, !- Inlet Port {00000000-0000-0000-0017-000000000117}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000174}, !- Handle + {00000000-0000-0000-0046-000000000108}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000118}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000175}, !- Handle + {00000000-0000-0000-0046-000000000109}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000081}, !- Inlet Port {00000000-0000-0000-0017-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000176}, !- Handle + {00000000-0000-0000-0046-000000000110}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000083}, !- Inlet Port {00000000-0000-0000-0017-000000000084}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000177}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000163}, !- Inlet Port - {00000000-0000-0000-0017-000000000164}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000178}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Port - {00000000-0000-0000-0017-000000000220}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000179}, !- Handle - Sys6 Return Fan 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000275}, !- Inlet Port - {00000000-0000-0000-0017-000000000276}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000180}, !- Handle + {00000000-0000-0000-0046-000000000111}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000181}, !- Handle + {00000000-0000-0000-0046-000000000112}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000062}, !- Inlet Port {00000000-0000-0000-0017-000000000063}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000182}, !- Handle + {00000000-0000-0000-0046-000000000113}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000183}, !- Handle + {00000000-0000-0000-0046-000000000114}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000184}, !- Handle + {00000000-0000-0000-0046-000000000115}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000185}, !- Handle + {00000000-0000-0000-0046-000000000116}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000059}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000186}, !- Handle + {00000000-0000-0000-0046-000000000117}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000415}; !- Outlet Port + {00000000-0000-0000-0017-000000000247}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000187}, !- Handle + {00000000-0000-0000-0046-000000000118}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000420}, !- Inlet Port + {00000000-0000-0000-0017-000000000252}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000188}, !- Handle + {00000000-0000-0000-0046-000000000119}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000189}, !- Handle + {00000000-0000-0000-0046-000000000120}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000190}, !- Handle + {00000000-0000-0000-0046-000000000121}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000416}, !- Inlet Port - {00000000-0000-0000-0017-000000000417}; !- Outlet Port + {00000000-0000-0000-0017-000000000248}, !- Inlet Port + {00000000-0000-0000-0017-000000000249}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000191}, !- Handle + {00000000-0000-0000-0046-000000000122}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000418}, !- Inlet Port - {00000000-0000-0000-0017-000000000419}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000192}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000147}, !- Inlet Port - {00000000-0000-0000-0017-000000000149}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000193}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000150}, !- Inlet Port - {00000000-0000-0000-0017-000000000148}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000194}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000160}, !- Inlet Port - {00000000-0000-0000-0017-000000000161}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000195}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000427}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000196}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000432}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000197}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000145}, !- Inlet Port - {00000000-0000-0000-0017-000000000162}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000198}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000155}, !- Inlet Port - {00000000-0000-0000-0017-000000000146}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000199}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000203}, !- Inlet Port - {00000000-0000-0000-0017-000000000205}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000200}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000206}, !- Inlet Port - {00000000-0000-0000-0017-000000000204}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000201}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000216}, !- Inlet Port - {00000000-0000-0000-0017-000000000217}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000202}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000433}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000203}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000438}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000204}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000201}, !- Inlet Port - {00000000-0000-0000-0017-000000000218}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000205}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Port - {00000000-0000-0000-0017-000000000202}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000206}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000259}, !- Inlet Port - {00000000-0000-0000-0017-000000000261}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000207}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000262}, !- Inlet Port - {00000000-0000-0000-0017-000000000260}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000208}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000272}, !- Inlet Port - {00000000-0000-0000-0017-000000000273}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000209}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000439}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000210}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000444}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000211}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000257}, !- Inlet Port - {00000000-0000-0000-0017-000000000274}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000212}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000267}, !- Inlet Port - {00000000-0000-0000-0017-000000000258}; !- Outlet Port + {00000000-0000-0000-0017-000000000250}, !- Inlet Port + {00000000-0000-0000-0017-000000000251}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000213}, !- Handle + {00000000-0000-0000-0046-000000000123}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000122}, !- Inlet Port {00000000-0000-0000-0017-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000214}, !- Handle + {00000000-0000-0000-0046-000000000124}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000125}, !- Inlet Port {00000000-0000-0000-0017-000000000123}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000215}, !- Handle + {00000000-0000-0000-0046-000000000125}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000134}, !- Inlet Port {00000000-0000-0000-0017-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000216}, !- Handle + {00000000-0000-0000-0046-000000000126}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000421}; !- Outlet Port + {00000000-0000-0000-0017-000000000253}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000217}, !- Handle + {00000000-0000-0000-0046-000000000127}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000426}, !- Inlet Port + {00000000-0000-0000-0017-000000000258}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000218}, !- Handle + {00000000-0000-0000-0046-000000000128}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000219}, !- Handle + {00000000-0000-0000-0046-000000000129}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000129}, !- Inlet Port {00000000-0000-0000-0017-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000220}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000428}, !- Inlet Port - {00000000-0000-0000-0017-000000000429}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000221}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000430}, !- Inlet Port - {00000000-0000-0000-0017-000000000431}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000222}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000434}, !- Inlet Port - {00000000-0000-0000-0017-000000000435}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000223}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000436}, !- Inlet Port - {00000000-0000-0000-0017-000000000437}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000224}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000440}, !- Inlet Port - {00000000-0000-0000-0017-000000000441}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000225}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000442}, !- Inlet Port - {00000000-0000-0000-0017-000000000443}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000226}, !- Handle + {00000000-0000-0000-0046-000000000130}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000422}, !- Inlet Port - {00000000-0000-0000-0017-000000000423}; !- Outlet Port + {00000000-0000-0000-0017-000000000254}, !- Inlet Port + {00000000-0000-0000-0017-000000000255}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000227}, !- Handle + {00000000-0000-0000-0046-000000000131}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000424}, !- Inlet Port - {00000000-0000-0000-0017-000000000425}; !- Outlet Port + {00000000-0000-0000-0017-000000000256}, !- Inlet Port + {00000000-0000-0000-0017-000000000257}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0051-000000000001}, !- Handle + {00000000-0000-0000-0047-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0052-000000000001}, !- Handle + {00000000-0000-0000-0048-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People, !- Name - {00000000-0000-0000-0053-000000000001}, !- People Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0049-000000000001}, !- People Definition Name + {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0063-000000000025}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0063-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0063-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0059-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0059-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0052-000000000002}, !- Handle + {00000000-0000-0000-0048-000000000002}, !- Handle Space Function Office open plan People, !- Name - {00000000-0000-0000-0053-000000000002}, !- People Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0049-000000000002}, !- People Definition Name + {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0063-000000000025}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0063-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0063-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0059-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0059-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0053-000000000001}, !- Handle + {00000000-0000-0000-0049-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -7975,7 +4597,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0053-000000000002}, !- Handle + {00000000-0000-0000-0049-000000000002}, !- Handle Space Function Office open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -7984,55 +4606,55 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0017-000000000086}, !- Inlet Node Name {00000000-0000-0000-0017-000000000087}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000002}, !- Handle + {00000000-0000-0000-0050-000000000002}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Node Name {00000000-0000-0000-0017-000000000091}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000003}, !- Handle + {00000000-0000-0000-0050-000000000003}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0017-000000000107}, !- Inlet Node Name {00000000-0000-0000-0017-000000000108}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000004}, !- Handle + {00000000-0000-0000-0050-000000000004}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0017-000000000111}, !- Inlet Node Name {00000000-0000-0000-0017-000000000112}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000005}, !- Handle + {00000000-0000-0000-0050-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0017-000000000327}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000328}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000159}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000160}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000006}, !- Handle + {00000000-0000-0000-0050-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0017-000000000330}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000331}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000162}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000163}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000007}, !- Handle + {00000000-0000-0000-0050-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000334}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000335}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000166}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000167}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0054-000000000008}, !- Handle + {00000000-0000-0000-0050-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000337}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000338}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000169}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000170}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0051-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -8040,7 +4662,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000087}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0046-000000000033}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8054,7 +4676,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8068,7 +4690,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0055-000000000002}, !- Handle + {00000000-0000-0000-0051-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -8076,7 +4698,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000109}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0046-000000000043}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8090,7 +4712,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8104,7 +4726,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0055-000000000003}, !- Handle + {00000000-0000-0000-0051-000000000003}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -8112,21 +4734,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000130}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0046-000000000064}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000313}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000315}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000145}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000147}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000316}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000319}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000148}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000151}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8140,326 +4762,290 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000005}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0056-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000195}; !- Port 1 + {00000000-0000-0000-0052-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000002}, !- Handle - {00000000-0000-0000-0090-000000000010}; !- HVAC Component + {00000000-0000-0000-0052-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000003}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000196}; !- Port 1 + {00000000-0000-0000-0052-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000004}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0052-000000000004}, !- Handle + {00000000-0000-0000-0086-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000005}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0052-000000000005}, !- Handle + {00000000-0000-0000-0086-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000006}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0052-000000000006}, !- Handle + {00000000-0000-0000-0086-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000007}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- HVAC Component - {00000000-0000-0000-0017-000000000307}; !- Port 1 + {00000000-0000-0000-0052-000000000007}, !- Handle + {00000000-0000-0000-0086-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000008}, !- Handle - {00000000-0000-0000-0090-000000000022}; !- HVAC Component + {00000000-0000-0000-0052-000000000008}, !- Handle + {00000000-0000-0000-0086-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000009}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- HVAC Component - {00000000-0000-0000-0017-000000000308}; !- Port 1 + {00000000-0000-0000-0052-000000000009}, !- Handle + {00000000-0000-0000-0086-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000010}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0052-000000000010}, !- Handle + {00000000-0000-0000-0086-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000011}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0052-000000000011}, !- Handle + {00000000-0000-0000-0086-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000012}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0052-000000000012}, !- Handle + {00000000-0000-0000-0086-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000013}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000251}; !- Port 1 + {00000000-0000-0000-0052-000000000013}, !- Handle + {00000000-0000-0000-0086-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000014}, !- Handle - {00000000-0000-0000-0090-000000000016}; !- HVAC Component + {00000000-0000-0000-0052-000000000014}, !- Handle + {00000000-0000-0000-0086-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000015}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000252}; !- Port 1 + {00000000-0000-0000-0052-000000000015}, !- Handle + {00000000-0000-0000-0086-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000016}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000289}; !- Port 1 + {00000000-0000-0000-0052-000000000016}, !- Handle + {00000000-0000-0000-0086-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000017}, !- Handle - {00000000-0000-0000-0090-000000000017}; !- HVAC Component + {00000000-0000-0000-0052-000000000017}, !- Handle + {00000000-0000-0000-0086-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000018}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000290}; !- Port 1 + {00000000-0000-0000-0052-000000000018}, !- Handle + {00000000-0000-0000-0086-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000019}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- HVAC Component - {00000000-0000-0000-0017-000000000171}; !- Port 1 + {00000000-0000-0000-0052-000000000019}, !- Handle + {00000000-0000-0000-0086-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000020}, !- Handle - {00000000-0000-0000-0090-000000000005}; !- HVAC Component + {00000000-0000-0000-0052-000000000020}, !- Handle + {00000000-0000-0000-0086-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000021}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- HVAC Component - {00000000-0000-0000-0017-000000000172}; !- Port 1 + {00000000-0000-0000-0052-000000000021}, !- Handle + {00000000-0000-0000-0086-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000022}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- HVAC Component - {00000000-0000-0000-0017-000000000183}; !- Port 1 + {00000000-0000-0000-0052-000000000022}, !- Handle + {00000000-0000-0000-0086-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000023}, !- Handle - {00000000-0000-0000-0090-000000000006}; !- HVAC Component + {00000000-0000-0000-0052-000000000023}, !- Handle + {00000000-0000-0000-0086-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000024}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- HVAC Component - {00000000-0000-0000-0017-000000000184}; !- Port 1 + {00000000-0000-0000-0052-000000000024}, !- Handle + {00000000-0000-0000-0086-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000025}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000295}; !- Port 1 + {00000000-0000-0000-0052-000000000025}, !- Handle + {00000000-0000-0000-0086-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000026}, !- Handle - {00000000-0000-0000-0090-000000000018}; !- HVAC Component + {00000000-0000-0000-0052-000000000026}, !- Handle + {00000000-0000-0000-0086-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000027}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000296}; !- Port 1 + {00000000-0000-0000-0052-000000000027}, !- Handle + {00000000-0000-0000-0086-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000028}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000239}; !- Port 1 + {00000000-0000-0000-0052-000000000028}, !- Handle + {00000000-0000-0000-0086-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000029}, !- Handle - {00000000-0000-0000-0090-000000000011}; !- HVAC Component + {00000000-0000-0000-0052-000000000029}, !- Handle + {00000000-0000-0000-0086-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000030}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000240}; !- Port 1 + {00000000-0000-0000-0052-000000000030}, !- Handle + {00000000-0000-0000-0086-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000031}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- HVAC Component - {00000000-0000-0000-0017-000000000283}; !- Port 1 + {00000000-0000-0000-0052-000000000031}, !- Handle + {00000000-0000-0000-0086-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000032}, !- Handle - {00000000-0000-0000-0090-000000000019}; !- HVAC Component + {00000000-0000-0000-0052-000000000032}, !- Handle + {00000000-0000-0000-0086-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000033}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- HVAC Component - {00000000-0000-0000-0017-000000000284}; !- Port 1 + {00000000-0000-0000-0052-000000000033}, !- Handle + {00000000-0000-0000-0086-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000034}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000233}; !- Port 1 + {00000000-0000-0000-0052-000000000034}, !- Handle + {00000000-0000-0000-0086-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000035}, !- Handle - {00000000-0000-0000-0090-000000000012}; !- HVAC Component + {00000000-0000-0000-0052-000000000035}, !- Handle + {00000000-0000-0000-0086-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000036}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000234}; !- Port 1 + {00000000-0000-0000-0052-000000000036}, !- Handle + {00000000-0000-0000-0086-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000037}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- HVAC Component + {00000000-0000-0000-0052-000000000037}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000139}; !- Port 1 OS:PortList, - {00000000-0000-0000-0056-000000000038}, !- Handle - {00000000-0000-0000-0090-000000000004}; !- HVAC Component + {00000000-0000-0000-0052-000000000038}, !- Handle + {00000000-0000-0000-0086-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000039}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- HVAC Component + {00000000-0000-0000-0052-000000000039}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000140}; !- Port 1 OS:PortList, - {00000000-0000-0000-0056-000000000040}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0052-000000000040}, !- Handle + {00000000-0000-0000-0086-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000041}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0052-000000000041}, !- Handle + {00000000-0000-0000-0086-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000042}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0052-000000000042}, !- Handle + {00000000-0000-0000-0086-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000043}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- HVAC Component - {00000000-0000-0000-0017-000000000165}; !- Port 1 + {00000000-0000-0000-0052-000000000043}, !- Handle + {00000000-0000-0000-0086-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000044}, !- Handle - {00000000-0000-0000-0090-000000000007}; !- HVAC Component + {00000000-0000-0000-0052-000000000044}, !- Handle + {00000000-0000-0000-0086-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000045}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- HVAC Component - {00000000-0000-0000-0017-000000000166}; !- Port 1 + {00000000-0000-0000-0052-000000000045}, !- Handle + {00000000-0000-0000-0086-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000046}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- HVAC Component - {00000000-0000-0000-0017-000000000301}; !- Port 1 + {00000000-0000-0000-0052-000000000046}, !- Handle + {00000000-0000-0000-0086-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000047}, !- Handle - {00000000-0000-0000-0090-000000000020}; !- HVAC Component + {00000000-0000-0000-0052-000000000047}, !- Handle + {00000000-0000-0000-0086-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000048}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- HVAC Component - {00000000-0000-0000-0017-000000000302}; !- Port 1 + {00000000-0000-0000-0052-000000000048}, !- Handle + {00000000-0000-0000-0086-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000049}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000227}; !- Port 1 + {00000000-0000-0000-0052-000000000049}, !- Handle + {00000000-0000-0000-0086-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000050}, !- Handle - {00000000-0000-0000-0090-000000000013}; !- HVAC Component + {00000000-0000-0000-0052-000000000050}, !- Handle + {00000000-0000-0000-0086-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000051}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000228}; !- Port 1 + {00000000-0000-0000-0052-000000000051}, !- Handle + {00000000-0000-0000-0086-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000052}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- HVAC Component - {00000000-0000-0000-0017-000000000277}; !- Port 1 + {00000000-0000-0000-0052-000000000052}, !- Handle + {00000000-0000-0000-0086-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000053}, !- Handle - {00000000-0000-0000-0090-000000000021}; !- HVAC Component + {00000000-0000-0000-0052-000000000053}, !- Handle + {00000000-0000-0000-0086-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000054}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- HVAC Component - {00000000-0000-0000-0017-000000000278}; !- Port 1 + {00000000-0000-0000-0052-000000000054}, !- Handle + {00000000-0000-0000-0086-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000055}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000221}; !- Port 1 + {00000000-0000-0000-0052-000000000055}, !- Handle + {00000000-0000-0000-0086-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000056}, !- Handle - {00000000-0000-0000-0090-000000000014}; !- HVAC Component + {00000000-0000-0000-0052-000000000056}, !- Handle + {00000000-0000-0000-0086-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000057}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000222}; !- Port 1 + {00000000-0000-0000-0052-000000000057}, !- Handle + {00000000-0000-0000-0086-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000058}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- HVAC Component - {00000000-0000-0000-0017-000000000189}; !- Port 1 + {00000000-0000-0000-0052-000000000058}, !- Handle + {00000000-0000-0000-0086-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000059}, !- Handle - {00000000-0000-0000-0090-000000000008}; !- HVAC Component + {00000000-0000-0000-0052-000000000059}, !- Handle + {00000000-0000-0000-0086-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000060}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- HVAC Component - {00000000-0000-0000-0017-000000000190}; !- Port 1 + {00000000-0000-0000-0052-000000000060}, !- Handle + {00000000-0000-0000-0086-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000061}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000245}; !- Port 1 + {00000000-0000-0000-0052-000000000061}, !- Handle + {00000000-0000-0000-0086-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000062}, !- Handle - {00000000-0000-0000-0090-000000000015}; !- HVAC Component + {00000000-0000-0000-0052-000000000062}, !- Handle + {00000000-0000-0000-0086-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000063}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000246}; !- Port 1 + {00000000-0000-0000-0052-000000000063}, !- Handle + {00000000-0000-0000-0086-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000064}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000177}; !- Port 1 + {00000000-0000-0000-0052-000000000064}, !- Handle + {00000000-0000-0000-0086-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000065}, !- Handle - {00000000-0000-0000-0090-000000000009}; !- HVAC Component + {00000000-0000-0000-0052-000000000065}, !- Handle + {00000000-0000-0000-0086-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000066}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000178}; !- Port 1 + {00000000-0000-0000-0052-000000000066}, !- Handle + {00000000-0000-0000-0086-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000067}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- HVAC Component + {00000000-0000-0000-0052-000000000067}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000061}; !- Port 1 OS:PortList, - {00000000-0000-0000-0056-000000000068}, !- Handle - {00000000-0000-0000-0090-000000000023}; !- HVAC Component + {00000000-0000-0000-0052-000000000068}, !- Handle + {00000000-0000-0000-0086-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0056-000000000069}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- HVAC Component + {00000000-0000-0000-0052-000000000069}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000062}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000320}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000321}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000152}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000153}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 742176.159809915, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -8478,14 +5064,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0017-000000000075}, !- Inlet Node Name {00000000-0000-0000-0017-000000000076}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 256345.689610254, !- Rated Pump Head {Pa} + 234161.928009366, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.936, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8511,14 +5097,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0017-000000000100}, !- Inlet Node Name {00000000-0000-0000-0017-000000000101}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 223011.36000892, !- Rated Pump Head {Pa} + 200710.224008028, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.95, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8544,322 +5130,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000002}, !- Handle + {00000000-0000-0000-0055-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000003}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000004}, !- Handle + {00000000-0000-0000-0055-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000005}, !- Handle + {00000000-0000-0000-0055-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000006}, !- Handle + {00000000-0000-0000-0055-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000007}, !- Handle + {00000000-0000-0000-0055-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000008}, !- Handle + {00000000-0000-0000-0055-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000009}, !- Handle + {00000000-0000-0000-0055-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000010}, !- Handle + {00000000-0000-0000-0055-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000011}, !- Handle + {00000000-0000-0000-0055-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000012}, !- Handle + {00000000-0000-0000-0055-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000013}, !- Handle + {00000000-0000-0000-0055-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000014}, !- Handle + {00000000-0000-0000-0055-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000015}, !- Handle + {00000000-0000-0000-0055-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000016}, !- Handle + {00000000-0000-0000-0055-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000017}, !- Handle + {00000000-0000-0000-0055-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000018}, !- Handle + {00000000-0000-0000-0055-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000019}, !- Handle + {00000000-0000-0000-0055-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000020}, !- Handle + {00000000-0000-0000-0055-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000021}, !- Handle + {00000000-0000-0000-0055-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000022}, !- Handle + {00000000-0000-0000-0055-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000023}, !- Handle + {00000000-0000-0000-0055-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000024}, !- Handle + {00000000-0000-0000-0055-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000025}, !- Handle + {00000000-0000-0000-0055-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000026}, !- Handle + {00000000-0000-0000-0055-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000027}, !- Handle + {00000000-0000-0000-0055-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000028}, !- Handle + {00000000-0000-0000-0055-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000029}, !- Handle + {00000000-0000-0000-0055-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000030}, !- Handle + {00000000-0000-0000-0055-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000031}, !- Handle + {00000000-0000-0000-0055-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000032}, !- Handle + {00000000-0000-0000-0055-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000033}, !- Handle + {00000000-0000-0000-0055-000000000033}, !- Handle Space Function Electrical/Mechanical room-sch-A 1, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000034}, !- Handle + {00000000-0000-0000-0055-000000000034}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000035}, !- Handle + {00000000-0000-0000-0055-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000036}, !- Handle + {00000000-0000-0000-0055-000000000036}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000037}, !- Handle + {00000000-0000-0000-0055-000000000037}, !- Handle Space Function Office open plan 1, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000038}, !- Handle + {00000000-0000-0000-0055-000000000038}, !- Handle Space Function Office open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0059-000000000039}, !- Handle + {00000000-0000-0000-0055-000000000039}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0064-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0064-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000003}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000004}, !- Handle + {00000000-0000-0000-0057-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000005}, !- Handle + {00000000-0000-0000-0057-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8868,36 +5454,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000006}, !- Handle + {00000000-0000-0000-0057-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000007}, !- Handle + {00000000-0000-0000-0057-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000008}, !- Handle + {00000000-0000-0000-0057-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000009}, !- Handle + {00000000-0000-0000-0057-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8922,9 +5508,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000010}, !- Handle + {00000000-0000-0000-0057-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -8949,27 +5535,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000011}, !- Handle + {00000000-0000-0000-0057-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000012}, !- Handle + {00000000-0000-0000-0057-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000013}, !- Handle + {00000000-0000-0000-0057-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9000,9 +5586,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000014}, !- Handle + {00000000-0000-0000-0057-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9033,27 +5619,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000015}, !- Handle + {00000000-0000-0000-0057-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000016}, !- Handle + {00000000-0000-0000-0057-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000017}, !- Handle + {00000000-0000-0000-0057-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9087,9 +5673,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000018}, !- Handle + {00000000-0000-0000-0057-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9123,27 +5709,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000019}, !- Handle + {00000000-0000-0000-0057-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000020}, !- Handle + {00000000-0000-0000-0057-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000021}, !- Handle + {00000000-0000-0000-0057-000000000021}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9174,9 +5760,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000022}, !- Handle + {00000000-0000-0000-0057-000000000022}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -9207,27 +5793,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000023}, !- Handle + {00000000-0000-0000-0057-000000000023}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000024}, !- Handle + {00000000-0000-0000-0057-000000000024}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000025}, !- Handle + {00000000-0000-0000-0057-000000000025}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -9240,9 +5826,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000026}, !- Handle + {00000000-0000-0000-0057-000000000026}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -9255,27 +5841,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000027}, !- Handle + {00000000-0000-0000-0057-000000000027}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000028}, !- Handle + {00000000-0000-0000-0057-000000000028}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000029}, !- Handle + {00000000-0000-0000-0057-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -9291,9 +5877,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000030}, !- Handle + {00000000-0000-0000-0057-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -9309,52 +5895,52 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000031}, !- Handle + {00000000-0000-0000-0057-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000032}, !- Handle + {00000000-0000-0000-0057-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000033}, !- Handle + {00000000-0000-0000-0057-000000000033}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000034}, !- Handle + {00000000-0000-0000-0057-000000000034}, !- Handle NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000035}, !- Handle + {00000000-0000-0000-0057-000000000035}, !- Handle NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000036}, !- Handle + {00000000-0000-0000-0057-000000000036}, !- Handle Schedule Day 1, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9363,70 +5949,16 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000037}, !- Handle + {00000000-0000-0000-0057-000000000037}, !- Handle Schedule Day 10, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000038}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000039}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000040}, !- Handle - Schedule Day 13, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000041}, !- Handle - Schedule Day 14, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000042}, !- Handle - Schedule Day 15, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000043}, !- Handle - Schedule Day 16, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000044}, !- Handle + {00000000-0000-0000-0057-000000000038}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9435,9 +5967,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000045}, !- Handle + {00000000-0000-0000-0057-000000000039}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9513,9 +6045,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000046}, !- Handle + {00000000-0000-0000-0057-000000000040}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9591,117 +6123,90 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000047}, !- Handle + {00000000-0000-0000-0057-000000000041}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000048}, !- Handle + {00000000-0000-0000-0057-000000000042}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000049}, !- Handle + {00000000-0000-0000-0057-000000000043}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000050}, !- Handle + {00000000-0000-0000-0057-000000000044}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000051}, !- Handle + {00000000-0000-0000-0057-000000000045}, !- Handle Schedule Day 9, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000052}, !- Handle + {00000000-0000-0000-0057-000000000046}, !- Handle Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000053}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000054}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000055}, !- Handle - Supply Air Temp Default 3, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000056}, !- Handle + {00000000-0000-0000-0057-000000000047}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000057}, !- Handle + {00000000-0000-0000-0057-000000000048}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000058}, !- Handle + {00000000-0000-0000-0057-000000000049}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000059}, !- Handle + {00000000-0000-0000-0057-000000000050}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9777,9 +6282,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000060}, !- Handle + {00000000-0000-0000-0057-000000000051}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9855,9 +6360,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000061}, !- Handle + {00000000-0000-0000-0057-000000000052}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9933,9 +6438,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000062}, !- Handle + {00000000-0000-0000-0057-000000000053}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10011,9 +6516,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000063}, !- Handle + {00000000-0000-0000-0057-000000000054}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10089,9 +6594,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000064}, !- Handle + {00000000-0000-0000-0057-000000000055}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10167,9 +6672,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000065}, !- Handle + {00000000-0000-0000-0057-000000000056}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10245,9 +6750,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000066}, !- Handle + {00000000-0000-0000-0057-000000000057}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10323,9 +6828,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000067}, !- Handle + {00000000-0000-0000-0057-000000000058}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -10338,126 +6843,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000068}, !- Handle + {00000000-0000-0000-0057-000000000059}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000069}, !- Handle + {00000000-0000-0000-0057-000000000060}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000070}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000071}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000072}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000073}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000074}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000075}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000076}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000077}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000078}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000079}, !- Handle + {00000000-0000-0000-0057-000000000061}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -10470,27 +6876,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000080}, !- Handle + {00000000-0000-0000-0057-000000000062}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000081}, !- Handle + {00000000-0000-0000-0057-000000000063}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000082}, !- Handle + {00000000-0000-0000-0057-000000000064}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10566,9 +6972,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000083}, !- Handle + {00000000-0000-0000-0057-000000000065}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10644,9 +7050,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000084}, !- Handle + {00000000-0000-0000-0057-000000000066}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10722,9 +7128,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000085}, !- Handle + {00000000-0000-0000-0057-000000000067}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10800,11 +7206,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0063-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10819,11 +7225,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10838,11 +7244,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000003}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -10857,11 +7263,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000004}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10876,11 +7282,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000005}, !- Handle + {00000000-0000-0000-0058-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10895,11 +7301,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000006}, !- Handle + {00000000-0000-0000-0058-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -10914,11 +7320,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000007}, !- Handle + {00000000-0000-0000-0058-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -10933,125 +7339,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000008}, !- Handle + {00000000-0000-0000-0058-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0061-000000000028}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000009}, !- Handle - Schedule Rule 17, !- Name - {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name - 2, !- Rule Order - {00000000-0000-0000-0061-000000000022}, !- Day Schedule Name - , !- Apply Sunday - Yes, !- Apply Monday - Yes, !- Apply Tuesday - Yes, !- Apply Wednesday - Yes, !- Apply Thursday - Yes, !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000010}, !- Handle - Schedule Rule 18, !- Name - {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0061-000000000023}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000011}, !- Handle - Schedule Rule 19, !- Name - {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0061-000000000024}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000012}, !- Handle - Schedule Rule 2, !- Name - {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name - 2, !- Rule Order - {00000000-0000-0000-0061-000000000018}, !- Day Schedule Name - , !- Apply Sunday - Yes, !- Apply Monday - Yes, !- Apply Tuesday - Yes, !- Apply Wednesday - Yes, !- Apply Thursday - Yes, !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000013}, !- Handle - Schedule Rule 20, !- Name - {00000000-0000-0000-0063-000000000026}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0061-000000000049}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000014}, !- Handle - Schedule Rule 21, !- Name - {00000000-0000-0000-0063-000000000026}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11066,36 +7358,17 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000015}, !- Handle - Schedule Rule 22, !- Name - {00000000-0000-0000-0063-000000000030}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0061-000000000051}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000016}, !- Handle - Schedule Rule 23, !- Name - {00000000-0000-0000-0063-000000000030}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0061-000000000037}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday + {00000000-0000-0000-0058-000000000009}, !- Handle + Schedule Rule 17, !- Name + {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name + 2, !- Rule Order + {00000000-0000-0000-0057-000000000022}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday , !- Apply Saturday DateRange, !- Date Specification Type 1, !- Start Month @@ -11104,11 +7377,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000010}, !- Handle + Schedule Rule 18, !- Name + {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000038}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11118,16 +7391,16 @@ OS:Schedule:Rule, Yes, !- Apply Saturday DateRange, !- Date Specification Type 1, !- Start Month - 7, !- Start Day + 1, !- Start Day 12, !- End Month - 30; !- End Day + 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000011}, !- Handle + Schedule Rule 19, !- Name + {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000039}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11142,11 +7415,30 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000019}, !- Handle - Schedule Rule 26, !- Name - {00000000-0000-0000-0063-000000000028}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000012}, !- Handle + Schedule Rule 2, !- Name + {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name + 2, !- Rule Order + {00000000-0000-0000-0057-000000000018}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes, !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0058-000000000013}, !- Handle + Schedule Rule 20, !- Name + {00000000-0000-0000-0059-000000000023}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000040}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000043}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11161,11 +7453,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000020}, !- Handle - Schedule Rule 27, !- Name - {00000000-0000-0000-0063-000000000028}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000014}, !- Handle + Schedule Rule 21, !- Name + {00000000-0000-0000-0059-000000000023}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000041}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000044}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11180,11 +7472,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000021}, !- Handle - Schedule Rule 28, !- Name - {00000000-0000-0000-0063-000000000029}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000015}, !- Handle + Schedule Rule 22, !- Name + {00000000-0000-0000-0059-000000000024}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000042}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000045}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11199,11 +7491,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000022}, !- Handle - Schedule Rule 29, !- Name - {00000000-0000-0000-0063-000000000029}, !- Schedule Ruleset Name + {00000000-0000-0000-0058-000000000016}, !- Handle + Schedule Rule 23, !- Name + {00000000-0000-0000-0059-000000000024}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000037}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11218,11 +7510,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000023}, !- Handle + {00000000-0000-0000-0058-000000000017}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000019}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11237,11 +7529,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000024}, !- Handle + {00000000-0000-0000-0058-000000000018}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11256,11 +7548,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000025}, !- Handle + {00000000-0000-0000-0058-000000000019}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11275,11 +7567,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000026}, !- Handle + {00000000-0000-0000-0058-000000000020}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11294,11 +7586,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000027}, !- Handle + {00000000-0000-0000-0058-000000000021}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11313,11 +7605,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000028}, !- Handle + {00000000-0000-0000-0058-000000000022}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11332,11 +7624,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000029}, !- Handle + {00000000-0000-0000-0058-000000000023}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11351,11 +7643,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000030}, !- Handle + {00000000-0000-0000-0058-000000000024}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000059}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000050}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11370,11 +7662,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000031}, !- Handle + {00000000-0000-0000-0058-000000000025}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000061}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000052}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11389,11 +7681,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000032}, !- Handle + {00000000-0000-0000-0058-000000000026}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000063}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11408,11 +7700,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000033}, !- Handle + {00000000-0000-0000-0058-000000000027}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000065}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000056}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11427,11 +7719,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000034}, !- Handle + {00000000-0000-0000-0058-000000000028}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000082}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000064}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11446,11 +7738,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000035}, !- Handle + {00000000-0000-0000-0058-000000000029}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000084}, !- Day Schedule Name + {00000000-0000-0000-0057-000000000066}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11465,199 +7757,157 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0064-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000002}, !- Handle + {00000000-0000-0000-0059-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000003}, !- Handle + {00000000-0000-0000-0059-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000045}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000039}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000004}, !- Handle + {00000000-0000-0000-0059-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000040}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000005}, !- Handle + {00000000-0000-0000-0059-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000006}, !- Handle + {00000000-0000-0000-0059-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0057-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000007}, !- Handle + {00000000-0000-0000-0059-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000008}, !- Handle + {00000000-0000-0000-0059-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000009}, !- Handle + {00000000-0000-0000-0059-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000010}, !- Handle + {00000000-0000-0000-0059-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000011}, !- Handle + {00000000-0000-0000-0059-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000012}, !- Handle + {00000000-0000-0000-0059-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000013}, !- Handle + {00000000-0000-0000-0059-000000000013}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000021}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000021}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000014}, !- Handle + {00000000-0000-0000-0059-000000000014}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000015}, !- Handle + {00000000-0000-0000-0059-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000016}, !- Handle + {00000000-0000-0000-0059-000000000016}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000033}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000034}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000035}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000033}, !- Default Day Schedule Name + {00000000-0000-0000-0057-000000000034}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0057-000000000035}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000017}, !- Handle + {00000000-0000-0000-0059-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000018}, !- Handle + {00000000-0000-0000-0059-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000019}, !- Handle + {00000000-0000-0000-0059-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000052}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000020}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000053}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000021}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000054}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000022}, !- Handle - Supply Air Temp 3, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000055}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000023}, !- Handle + {00000000-0000-0000-0059-000000000020}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000056}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000024}, !- Handle + {00000000-0000-0000-0059-000000000021}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000057}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000025}, !- Handle + {00000000-0000-0000-0059-000000000022}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000058}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000026}, !- Handle + {00000000-0000-0000-0059-000000000023}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000067}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000068}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000069}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000058}, !- Default Day Schedule Name + {00000000-0000-0000-0057-000000000059}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0057-000000000060}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000027}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000070}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000071}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000072}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000028}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000073}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000074}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000075}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000029}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000076}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000077}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000078}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000030}, !- Handle + {00000000-0000-0000-0059-000000000024}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000079}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000080}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000081}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0057-000000000061}, !- Default Day Schedule Name + {00000000-0000-0000-0057-000000000062}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0057-000000000063}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -11665,7 +7915,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000002}, !- Handle + {00000000-0000-0000-0060-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -11673,7 +7923,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000003}, !- Handle + {00000000-0000-0000-0060-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -11681,14 +7931,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000004}, !- Handle + {00000000-0000-0000-0060-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000005}, !- Handle + {00000000-0000-0000-0060-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -11696,7 +7946,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000006}, !- Handle + {00000000-0000-0000-0060-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -11704,7 +7954,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000007}, !- Handle + {00000000-0000-0000-0060-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -11712,7 +7962,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000008}, !- Handle + {00000000-0000-0000-0060-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -11720,7 +7970,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0064-000000000009}, !- Handle + {00000000-0000-0000-0060-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -11728,134 +7978,71 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Setpoint Manager Outdoor Air Pretreat 1, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000185}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000185}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000186}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000188}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000190}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0046-000000000116}, !- Reference Setpoint Node Name + {00000000-0000-0000-0046-000000000116}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0046-000000000117}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0046-000000000119}, !- Return Air Stream Node Name + {00000000-0000-0000-0046-000000000121}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0065-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle Setpoint Manager Outdoor Air Pretreat 2, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000215}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000215}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000216}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000180}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000226}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0065-000000000003}, !- Handle - Setpoint Manager Outdoor Air Pretreat 3, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000194}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000194}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000195}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000177}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000220}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0065-000000000004}, !- Handle - Setpoint Manager Outdoor Air Pretreat 4, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000201}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000201}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000202}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000178}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000222}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0065-000000000005}, !- Handle - Setpoint Manager Outdoor Air Pretreat 5, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000208}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000208}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000209}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000179}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000224}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0046-000000000125}, !- Reference Setpoint Node Name + {00000000-0000-0000-0046-000000000125}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0046-000000000126}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0046-000000000111}, !- Return Air Stream Node Name + {00000000-0000-0000-0046-000000000130}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000019}, !- Schedule Name - {00000000-0000-0000-0050-000000000130}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0059-000000000019}, !- Schedule Name + {00000000-0000-0000-0046-000000000064}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000002}, !- Handle + {00000000-0000-0000-0062-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000003}, !- Schedule Name - {00000000-0000-0000-0050-000000000087}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0059-000000000003}, !- Schedule Name + {00000000-0000-0000-0046-000000000033}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000003}, !- Handle + {00000000-0000-0000-0062-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000004}, !- Schedule Name - {00000000-0000-0000-0050-000000000109}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0059-000000000004}, !- Schedule Name + {00000000-0000-0000-0046-000000000043}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000023}, !- Schedule Name - {00000000-0000-0000-0050-000000000219}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000020}, !- Schedule Name - {00000000-0000-0000-0050-000000000198}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000021}, !- Schedule Name - {00000000-0000-0000-0050-000000000205}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000007}, !- Handle - Setpoint Manager Scheduled 6, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000022}, !- Schedule Name - {00000000-0000-0000-0050-000000000212}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0059-000000000020}, !- Schedule Name + {00000000-0000-0000-0046-000000000129}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0090-000000000023}, !- Control Zone Name - {00000000-0000-0000-0050-000000000189}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0086-000000000023}, !- Control Zone Name + {00000000-0000-0000-0046-000000000120}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -11870,7 +8057,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -11879,7 +8066,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -11894,7 +8081,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -11909,7 +8096,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -11924,207 +8111,84 @@ OS:Site:GroundTemperature:FCfactorMethod, 11.1; !- December Ground Temperature {C} OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0073-000000000001}, !- Handle - -1.6, !- January Surface Ground Temperature {C} - -5.4, !- February Surface Ground Temperature {C} - -6.4, !- March Surface Ground Temperature {C} - -5.5, !- April Surface Ground Temperature {C} - -0.4, !- May Surface Ground Temperature {C} - 5.3, !- June Surface Ground Temperature {C} - 10.8, !- July Surface Ground Temperature {C} - 14.7, !- August Surface Ground Temperature {C} - 15.8, !- September Surface Ground Temperature {C} - 14, !- October Surface Ground Temperature {C} - 9.5, !- November Surface Ground Temperature {C} - 4; !- December Surface Ground Temperature {C} - -OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0074-000000000001}, !- Handle - Correlation, !- Calculation Method - , !- Temperature Schedule Name - 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} - 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} - -OS:Sizing:Parameters, - {00000000-0000-0000-0075-000000000001}, !- Handle - 1.3, !- Heating Sizing Factor - 1.1; !- Cooling Sizing Factor - -OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000001}, !- Handle - {00000000-0000-0000-0055-000000000001}, !- Plant or Condenser Loop Name - Cooling, !- Loop Type - 7, !- Design Loop Exit Temperature {C} - 6, !- Loop Design Temperature Difference {deltaC} - NonCoincident, !- Sizing Option - 1, !- Zone Timesteps in Averaging Window - None; !- Coincident Sizing Factor Mode - -OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000002}, !- Handle - {00000000-0000-0000-0055-000000000002}, !- Plant or Condenser Loop Name - Condenser, !- Loop Type - 29, !- Design Loop Exit Temperature {C} - 6, !- Loop Design Temperature Difference {deltaC} - NonCoincident, !- Sizing Option - 1, !- Zone Timesteps in Averaging Window - None; !- Coincident Sizing Factor Mode - -OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000003}, !- Handle - {00000000-0000-0000-0055-000000000003}, !- Plant or Condenser Loop Name - Heating, !- Loop Type - 60, !- Design Loop Exit Temperature {C} - 5, !- Loop Design Temperature Difference {deltaC} - NonCoincident, !- Sizing Option - 1, !- Zone Timesteps in Averaging Window - None; !- Coincident Sizing Factor Mode - -OS:Sizing:System, - {00000000-0000-0000-0077-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- AirLoop Name - Sensible, !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 1, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 43, !- Central Heating Design Supply Air Temperature {C} - NonCoincident, !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - DesignDay, !- Cooling Design Air Flow Method - 0, !- Cooling Design Air Flow Rate {m3/s} - DesignDay, !- Heating Design Air Flow Method - 0, !- Heating Design Air Flow Rate {m3/s} - ZoneSum, !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0077-000000000002}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity + {00000000-0000-0000-0069-000000000001}, !- Handle + -1.6, !- January Surface Ground Temperature {C} + -5.4, !- February Surface Ground Temperature {C} + -6.4, !- March Surface Ground Temperature {C} + -5.5, !- April Surface Ground Temperature {C} + -0.4, !- May Surface Ground Temperature {C} + 5.3, !- June Surface Ground Temperature {C} + 10.8, !- July Surface Ground Temperature {C} + 14.7, !- August Surface Ground Temperature {C} + 15.8, !- September Surface Ground Temperature {C} + 14, !- October Surface Ground Temperature {C} + 9.5, !- November Surface Ground Temperature {C} + 4; !- December Surface Ground Temperature {C} -OS:Sizing:System, - {00000000-0000-0000-0077-000000000003}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity +OS:Site:WaterMainsTemperature, + {00000000-0000-0000-0070-000000000001}, !- Handle + Correlation, !- Calculation Method + , !- Temperature Schedule Name + 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} + 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + +OS:Sizing:Parameters, + {00000000-0000-0000-0071-000000000001}, !- Handle + 1.3, !- Heating Sizing Factor + 1.1; !- Cooling Sizing Factor + +OS:Sizing:Plant, + {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0051-000000000001}, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 7, !- Design Loop Exit Temperature {C} + 6, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:Sizing:Plant, + {00000000-0000-0000-0072-000000000002}, !- Handle + {00000000-0000-0000-0051-000000000002}, !- Plant or Condenser Loop Name + Condenser, !- Loop Type + 29, !- Design Loop Exit Temperature {C} + 6, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:Sizing:Plant, + {00000000-0000-0000-0072-000000000003}, !- Handle + {00000000-0000-0000-0051-000000000003}, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60, !- Design Loop Exit Temperature {C} + 5, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0077-000000000004}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On + {00000000-0000-0000-0073-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- AirLoop Name + Sensible, !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio + 1, !- Central Heating Maximum System Air Flow Ratio 7, !- Preheat Design Temperature {C} 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} + 13, !- Precool Design Temperature {C} 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option + 43, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Sizing Option No, !- 100% Outdoor Air in Cooling No, !- 100% Outdoor Air in Heating 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate @@ -12145,8 +8209,8 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0077-000000000005}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- AirLoop Name + {00000000-0000-0000-0073-000000000002}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} 0.3, !- Central Heating Maximum System Air Flow Ratio @@ -12186,18 +8250,18 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000010}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12221,8 +8285,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000002}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0074-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12256,18 +8320,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000003}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000022}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12291,8 +8355,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000004}, !- Handle - {00000000-0000-0000-0090-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0074-000000000004}, !- Handle + {00000000-0000-0000-0086-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12326,18 +8390,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000005}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000005}, !- Handle + {00000000-0000-0000-0086-000000000016}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12361,18 +8425,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000006}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000006}, !- Handle + {00000000-0000-0000-0086-000000000017}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12396,18 +8460,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000007}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000007}, !- Handle + {00000000-0000-0000-0086-000000000005}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12431,18 +8495,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000008}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000008}, !- Handle + {00000000-0000-0000-0086-000000000006}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12466,18 +8530,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000009}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000009}, !- Handle + {00000000-0000-0000-0086-000000000018}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12501,18 +8565,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000010}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000010}, !- Handle + {00000000-0000-0000-0086-000000000011}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12536,18 +8600,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000011}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000011}, !- Handle + {00000000-0000-0000-0086-000000000019}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12571,18 +8635,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000012}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000012}, !- Handle + {00000000-0000-0000-0086-000000000012}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12606,8 +8670,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000013}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0074-000000000013}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12641,8 +8705,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000014}, !- Handle - {00000000-0000-0000-0090-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0074-000000000014}, !- Handle + {00000000-0000-0000-0086-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12676,18 +8740,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000015}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000015}, !- Handle + {00000000-0000-0000-0086-000000000007}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12711,18 +8775,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000016}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000016}, !- Handle + {00000000-0000-0000-0086-000000000020}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12746,18 +8810,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000017}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000017}, !- Handle + {00000000-0000-0000-0086-000000000013}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12781,18 +8845,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000018}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000018}, !- Handle + {00000000-0000-0000-0086-000000000021}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12816,18 +8880,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000019}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000019}, !- Handle + {00000000-0000-0000-0086-000000000014}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12851,18 +8915,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000020}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000020}, !- Handle + {00000000-0000-0000-0086-000000000008}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12886,18 +8950,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000021}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000021}, !- Handle + {00000000-0000-0000-0086-000000000015}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12921,18 +8985,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000022}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0074-000000000022}, !- Handle + {00000000-0000-0000-0086-000000000009}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12956,8 +9020,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000023}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0074-000000000023}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -12991,7 +9055,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -13019,7 +9083,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000002}, !- Handle + {00000000-0000-0000-0075-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -13047,7 +9111,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0075-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -13071,9 +9135,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0076-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0082-000000000002}, !- Space Type Name + {00000000-0000-0000-0078-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13081,16 +9145,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0090-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0076-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13098,16 +9162,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0076-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13115,16 +9179,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000004}, !- Handle + {00000000-0000-0000-0076-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13132,16 +9196,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000005}, !- Handle + {00000000-0000-0000-0076-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13149,16 +9213,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0090-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000006}, !- Handle + {00000000-0000-0000-0076-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13166,16 +9230,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000007}, !- Handle + {00000000-0000-0000-0076-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13183,16 +9247,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000008}, !- Handle + {00000000-0000-0000-0076-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13200,16 +9264,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000009}, !- Handle + {00000000-0000-0000-0076-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0078-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13217,16 +9281,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000010}, !- Handle + {00000000-0000-0000-0076-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0078-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13234,16 +9298,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000011}, !- Handle + {00000000-0000-0000-0076-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13251,16 +9315,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000012}, !- Handle + {00000000-0000-0000-0076-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13268,16 +9332,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000013}, !- Handle + {00000000-0000-0000-0076-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13285,16 +9349,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000014}, !- Handle + {00000000-0000-0000-0076-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13302,16 +9366,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000015}, !- Handle + {00000000-0000-0000-0076-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13319,16 +9383,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000016}, !- Handle + {00000000-0000-0000-0076-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13336,16 +9400,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000017}, !- Handle + {00000000-0000-0000-0076-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13353,16 +9417,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000018}, !- Handle + {00000000-0000-0000-0076-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13370,16 +9434,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000019}, !- Handle + {00000000-0000-0000-0076-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13387,16 +9451,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000020}, !- Handle + {00000000-0000-0000-0076-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13404,16 +9468,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000021}, !- Handle + {00000000-0000-0000-0076-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13421,16 +9485,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000022}, !- Handle + {00000000-0000-0000-0076-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0078-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13438,16 +9502,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000023}, !- Handle + {00000000-0000-0000-0076-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0078-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -13455,17 +9519,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0086-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0077-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13477,10 +9541,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0077-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13492,10 +9556,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0077-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13507,10 +9571,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000004}, !- Handle + {00000000-0000-0000-0077-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13522,10 +9586,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000005}, !- Handle + {00000000-0000-0000-0077-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13537,10 +9601,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000006}, !- Handle + {00000000-0000-0000-0077-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13552,10 +9616,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000007}, !- Handle + {00000000-0000-0000-0077-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13567,10 +9631,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000008}, !- Handle + {00000000-0000-0000-0077-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13582,10 +9646,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000009}, !- Handle + {00000000-0000-0000-0077-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13597,10 +9661,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000010}, !- Handle + {00000000-0000-0000-0077-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13612,10 +9676,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000011}, !- Handle + {00000000-0000-0000-0077-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13627,10 +9691,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000012}, !- Handle + {00000000-0000-0000-0077-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13642,10 +9706,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000013}, !- Handle + {00000000-0000-0000-0077-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13657,10 +9721,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000014}, !- Handle + {00000000-0000-0000-0077-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13672,10 +9736,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000015}, !- Handle + {00000000-0000-0000-0077-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Name + {00000000-0000-0000-0076-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -13687,46 +9751,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0078-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000031}, !- Group Rendering Name {00000000-0000-0000-0032-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0078-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000033}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000033}, !- Group Rendering Name {00000000-0000-0000-0032-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical room-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0078-000000000003}, !- Handle Space Function Office open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0059-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0055-000000000037}, !- Group Rendering Name {00000000-0000-0000-0032-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle {00000000-0000-0000-0020-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000002}, !- Handle + {00000000-0000-0000-0079-000000000002}, !- Handle {00000000-0000-0000-0020-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13735,7 +9799,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000003}, !- Handle + {00000000-0000-0000-0079-000000000003}, !- Handle {00000000-0000-0000-0020-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13744,7 +9808,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000004}, !- Handle + {00000000-0000-0000-0079-000000000004}, !- Handle {00000000-0000-0000-0020-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -13753,25 +9817,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000005}, !- Handle + {00000000-0000-0000-0079-000000000005}, !- Handle {00000000-0000-0000-0020-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000006}, !- Handle + {00000000-0000-0000-0079-000000000006}, !- Handle {00000000-0000-0000-0020-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000007}, !- Handle + {00000000-0000-0000-0079-000000000007}, !- Handle {00000000-0000-0000-0020-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000008}, !- Handle + {00000000-0000-0000-0079-000000000008}, !- Handle {00000000-0000-0000-0020-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13780,7 +9844,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000009}, !- Handle + {00000000-0000-0000-0079-000000000009}, !- Handle {00000000-0000-0000-0020-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13789,7 +9853,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000010}, !- Handle + {00000000-0000-0000-0079-000000000010}, !- Handle {00000000-0000-0000-0020-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13798,12 +9862,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000011}, !- Handle + {00000000-0000-0000-0079-000000000011}, !- Handle {00000000-0000-0000-0020-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000012}, !- Handle + {00000000-0000-0000-0079-000000000012}, !- Handle {00000000-0000-0000-0020-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -13812,12 +9876,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000013}, !- Handle + {00000000-0000-0000-0079-000000000013}, !- Handle {00000000-0000-0000-0020-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000014}, !- Handle + {00000000-0000-0000-0079-000000000014}, !- Handle {00000000-0000-0000-0020-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -13826,34 +9890,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000015}, !- Handle + {00000000-0000-0000-0079-000000000015}, !- Handle {00000000-0000-0000-0020-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000016}, !- Handle + {00000000-0000-0000-0079-000000000016}, !- Handle {00000000-0000-0000-0020-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000017}, !- Handle + {00000000-0000-0000-0079-000000000017}, !- Handle {00000000-0000-0000-0020-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000018}, !- Handle + {00000000-0000-0000-0079-000000000018}, !- Handle {00000000-0000-0000-0020-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000019}, !- Handle + {00000000-0000-0000-0079-000000000019}, !- Handle {00000000-0000-0000-0020-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000020}, !- Handle + {00000000-0000-0000-0079-000000000020}, !- Handle {00000000-0000-0000-0020-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13862,7 +9926,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000021}, !- Handle + {00000000-0000-0000-0079-000000000021}, !- Handle {00000000-0000-0000-0020-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13871,7 +9935,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000022}, !- Handle + {00000000-0000-0000-0079-000000000022}, !- Handle {00000000-0000-0000-0020-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -13880,7 +9944,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000023}, !- Handle + {00000000-0000-0000-0079-000000000023}, !- Handle {00000000-0000-0000-0020-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13889,7 +9953,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000024}, !- Handle + {00000000-0000-0000-0079-000000000024}, !- Handle {00000000-0000-0000-0020-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13898,7 +9962,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000025}, !- Handle + {00000000-0000-0000-0079-000000000025}, !- Handle {00000000-0000-0000-0020-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -13907,7 +9971,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000026}, !- Handle + {00000000-0000-0000-0079-000000000026}, !- Handle {00000000-0000-0000-0020-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -13916,7 +9980,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000027}, !- Handle + {00000000-0000-0000-0079-000000000027}, !- Handle {00000000-0000-0000-0020-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -13925,135 +9989,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000001}, !- Handle - {00000000-0000-0000-0047-000000000021}; !- Material Name + {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0043-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000002}, !- Handle - {00000000-0000-0000-0048-000000000013}; !- Material Name + {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0044-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000003}, !- Handle - {00000000-0000-0000-0047-000000000008}; !- Material Name + {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0043-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000004}, !- Handle - {00000000-0000-0000-0048-000000000007}; !- Material Name + {00000000-0000-0000-0080-000000000004}, !- Handle + {00000000-0000-0000-0044-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000005}, !- Handle - {00000000-0000-0000-0047-000000000006}; !- Material Name + {00000000-0000-0000-0080-000000000005}, !- Handle + {00000000-0000-0000-0043-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000006}, !- Handle - {00000000-0000-0000-0047-000000000014}; !- Material Name + {00000000-0000-0000-0080-000000000006}, !- Handle + {00000000-0000-0000-0043-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000007}, !- Handle - {00000000-0000-0000-0047-000000000002}; !- Material Name + {00000000-0000-0000-0080-000000000007}, !- Handle + {00000000-0000-0000-0043-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000008}, !- Handle - {00000000-0000-0000-0047-000000000024}; !- Material Name + {00000000-0000-0000-0080-000000000008}, !- Handle + {00000000-0000-0000-0043-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000009}, !- Handle - {00000000-0000-0000-0047-000000000003}; !- Material Name + {00000000-0000-0000-0080-000000000009}, !- Handle + {00000000-0000-0000-0043-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000010}, !- Handle - {00000000-0000-0000-0047-000000000019}; !- Material Name + {00000000-0000-0000-0080-000000000010}, !- Handle + {00000000-0000-0000-0043-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000011}, !- Handle - {00000000-0000-0000-0047-000000000012}; !- Material Name + {00000000-0000-0000-0080-000000000011}, !- Handle + {00000000-0000-0000-0043-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000012}, !- Handle - {00000000-0000-0000-0100-000000000001}; !- Material Name + {00000000-0000-0000-0080-000000000012}, !- Handle + {00000000-0000-0000-0096-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000013}, !- Handle - {00000000-0000-0000-0047-000000000018}; !- Material Name + {00000000-0000-0000-0080-000000000013}, !- Handle + {00000000-0000-0000-0043-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000014}, !- Handle - {00000000-0000-0000-0048-000000000008}; !- Material Name + {00000000-0000-0000-0080-000000000014}, !- Handle + {00000000-0000-0000-0044-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000015}, !- Handle - {00000000-0000-0000-0047-000000000007}; !- Material Name + {00000000-0000-0000-0080-000000000015}, !- Handle + {00000000-0000-0000-0043-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000016}, !- Handle - {00000000-0000-0000-0048-000000000003}; !- Material Name + {00000000-0000-0000-0080-000000000016}, !- Handle + {00000000-0000-0000-0044-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000017}, !- Handle - {00000000-0000-0000-0047-000000000005}; !- Material Name + {00000000-0000-0000-0080-000000000017}, !- Handle + {00000000-0000-0000-0043-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000018}, !- Handle - {00000000-0000-0000-0047-000000000013}; !- Material Name + {00000000-0000-0000-0080-000000000018}, !- Handle + {00000000-0000-0000-0043-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000019}, !- Handle - {00000000-0000-0000-0048-000000000009}; !- Material Name + {00000000-0000-0000-0080-000000000019}, !- Handle + {00000000-0000-0000-0044-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000020}, !- Handle - {00000000-0000-0000-0047-000000000001}; !- Material Name + {00000000-0000-0000-0080-000000000020}, !- Handle + {00000000-0000-0000-0043-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000021}, !- Handle - {00000000-0000-0000-0047-000000000023}; !- Material Name + {00000000-0000-0000-0080-000000000021}, !- Handle + {00000000-0000-0000-0043-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000022}, !- Handle - {00000000-0000-0000-0048-000000000010}; !- Material Name + {00000000-0000-0000-0080-000000000022}, !- Handle + {00000000-0000-0000-0044-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000023}, !- Handle - {00000000-0000-0000-0047-000000000009}; !- Material Name + {00000000-0000-0000-0080-000000000023}, !- Handle + {00000000-0000-0000-0043-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000024}, !- Handle - {00000000-0000-0000-0048-000000000004}; !- Material Name + {00000000-0000-0000-0080-000000000024}, !- Handle + {00000000-0000-0000-0044-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000025}, !- Handle - {00000000-0000-0000-0047-000000000010}; !- Material Name + {00000000-0000-0000-0080-000000000025}, !- Handle + {00000000-0000-0000-0043-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000026}, !- Handle - {00000000-0000-0000-0048-000000000005}; !- Material Name + {00000000-0000-0000-0080-000000000026}, !- Handle + {00000000-0000-0000-0044-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000027}, !- Handle - {00000000-0000-0000-0047-000000000011}; !- Material Name + {00000000-0000-0000-0080-000000000027}, !- Handle + {00000000-0000-0000-0043-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000028}, !- Handle - {00000000-0000-0000-0048-000000000006}; !- Material Name + {00000000-0000-0000-0080-000000000028}, !- Handle + {00000000-0000-0000-0044-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000029}, !- Handle - {00000000-0000-0000-0047-000000000017}; !- Material Name + {00000000-0000-0000-0080-000000000029}, !- Handle + {00000000-0000-0000-0043-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000030}, !- Handle - {00000000-0000-0000-0048-000000000011}; !- Material Name + {00000000-0000-0000-0080-000000000030}, !- Handle + {00000000-0000-0000-0044-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000031}, !- Handle - {00000000-0000-0000-0048-000000000012}; !- Material Name + {00000000-0000-0000-0080-000000000031}, !- Handle + {00000000-0000-0000-0044-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000098}, !- Surface Name + {00000000-0000-0000-0082-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14065,11 +10129,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000103}, !- Surface Name + {00000000-0000-0000-0082-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14081,11 +10145,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000003}, !- Handle + {00000000-0000-0000-0081-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000110}, !- Surface Name + {00000000-0000-0000-0082-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14097,11 +10161,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000004}, !- Handle + {00000000-0000-0000-0081-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000119}, !- Surface Name + {00000000-0000-0000-0082-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14113,11 +10177,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000005}, !- Handle + {00000000-0000-0000-0081-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000125}, !- Surface Name + {00000000-0000-0000-0082-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14129,11 +10193,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000006}, !- Handle + {00000000-0000-0000-0081-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000129}, !- Surface Name + {00000000-0000-0000-0082-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14145,11 +10209,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000007}, !- Handle + {00000000-0000-0000-0081-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000135}, !- Surface Name + {00000000-0000-0000-0082-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14161,11 +10225,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000008}, !- Handle + {00000000-0000-0000-0081-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000143}, !- Surface Name + {00000000-0000-0000-0082-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14177,11 +10241,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000009}, !- Handle + {00000000-0000-0000-0081-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000147}, !- Surface Name + {00000000-0000-0000-0082-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14193,11 +10257,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000010}, !- Handle + {00000000-0000-0000-0081-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000151}, !- Surface Name + {00000000-0000-0000-0082-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14209,11 +10273,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000011}, !- Handle + {00000000-0000-0000-0081-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000157}, !- Surface Name + {00000000-0000-0000-0082-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14225,11 +10289,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000012}, !- Handle + {00000000-0000-0000-0081-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000165}, !- Surface Name + {00000000-0000-0000-0082-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -14241,13 +10305,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0082-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14258,13 +10322,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000002}, !- Handle + {00000000-0000-0000-0082-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14275,13 +10339,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000003}, !- Handle + {00000000-0000-0000-0082-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14292,13 +10356,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000004}, !- Handle + {00000000-0000-0000-0082-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14309,13 +10373,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000005}, !- Handle + {00000000-0000-0000-0082-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14326,11 +10390,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000006}, !- Handle + {00000000-0000-0000-0082-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14343,13 +10407,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000007}, !- Handle + {00000000-0000-0000-0082-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14360,13 +10424,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000008}, !- Handle + {00000000-0000-0000-0082-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14377,13 +10441,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000009}, !- Handle + {00000000-0000-0000-0082-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14394,13 +10458,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000010}, !- Handle + {00000000-0000-0000-0082-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14411,13 +10475,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000011}, !- Handle + {00000000-0000-0000-0082-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14428,13 +10492,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000012}, !- Handle + {00000000-0000-0000-0082-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14445,13 +10509,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000013}, !- Handle + {00000000-0000-0000-0082-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14462,13 +10526,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000014}, !- Handle + {00000000-0000-0000-0082-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14479,13 +10543,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000015}, !- Handle + {00000000-0000-0000-0082-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14496,13 +10560,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000016}, !- Handle + {00000000-0000-0000-0082-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14513,13 +10577,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000017}, !- Handle + {00000000-0000-0000-0082-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14530,13 +10594,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000018}, !- Handle + {00000000-0000-0000-0082-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14547,13 +10611,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000019}, !- Handle + {00000000-0000-0000-0082-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14564,11 +10628,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000020}, !- Handle + {00000000-0000-0000-0082-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14581,13 +10645,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000021}, !- Handle + {00000000-0000-0000-0082-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14598,13 +10662,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000022}, !- Handle + {00000000-0000-0000-0082-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14615,13 +10679,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000023}, !- Handle + {00000000-0000-0000-0082-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14632,13 +10696,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000024}, !- Handle + {00000000-0000-0000-0082-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14649,13 +10713,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000025}, !- Handle + {00000000-0000-0000-0082-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14666,13 +10730,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000026}, !- Handle + {00000000-0000-0000-0082-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14683,13 +10747,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000027}, !- Handle + {00000000-0000-0000-0082-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0076-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14700,13 +10764,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000028}, !- Handle + {00000000-0000-0000-0082-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14717,13 +10781,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000029}, !- Handle + {00000000-0000-0000-0082-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14734,11 +10798,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000030}, !- Handle + {00000000-0000-0000-0082-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -14751,13 +10815,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000031}, !- Handle + {00000000-0000-0000-0082-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14768,13 +10832,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000032}, !- Handle + {00000000-0000-0000-0082-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14785,13 +10849,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000033}, !- Handle + {00000000-0000-0000-0082-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14802,13 +10866,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000034}, !- Handle + {00000000-0000-0000-0082-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14819,13 +10883,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000035}, !- Handle + {00000000-0000-0000-0082-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14836,13 +10900,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000036}, !- Handle + {00000000-0000-0000-0082-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14853,13 +10917,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000037}, !- Handle + {00000000-0000-0000-0082-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0076-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -14870,13 +10934,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000038}, !- Handle + {00000000-0000-0000-0082-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14887,13 +10951,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000039}, !- Handle + {00000000-0000-0000-0082-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14904,13 +10968,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000040}, !- Handle + {00000000-0000-0000-0082-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0076-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14921,13 +10985,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000041}, !- Handle + {00000000-0000-0000-0082-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14938,13 +11002,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000042}, !- Handle + {00000000-0000-0000-0082-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14955,13 +11019,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000043}, !- Handle + {00000000-0000-0000-0082-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14972,13 +11036,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000044}, !- Handle + {00000000-0000-0000-0082-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -14989,13 +11053,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000045}, !- Handle + {00000000-0000-0000-0082-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15006,13 +11070,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000046}, !- Handle + {00000000-0000-0000-0082-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15023,13 +11087,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000047}, !- Handle + {00000000-0000-0000-0082-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15040,13 +11104,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000048}, !- Handle + {00000000-0000-0000-0082-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15057,13 +11121,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000049}, !- Handle + {00000000-0000-0000-0082-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15074,13 +11138,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000050}, !- Handle + {00000000-0000-0000-0082-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15091,13 +11155,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000051}, !- Handle + {00000000-0000-0000-0082-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15108,13 +11172,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000052}, !- Handle + {00000000-0000-0000-0082-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15125,13 +11189,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000053}, !- Handle + {00000000-0000-0000-0082-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15142,13 +11206,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000054}, !- Handle + {00000000-0000-0000-0082-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15159,13 +11223,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000055}, !- Handle + {00000000-0000-0000-0082-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15176,13 +11240,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000056}, !- Handle + {00000000-0000-0000-0082-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15193,13 +11257,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000057}, !- Handle + {00000000-0000-0000-0082-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15210,13 +11274,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000058}, !- Handle + {00000000-0000-0000-0082-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0076-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15227,13 +11291,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000059}, !- Handle + {00000000-0000-0000-0082-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15244,11 +11308,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000060}, !- Handle + {00000000-0000-0000-0082-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15261,13 +11325,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000061}, !- Handle + {00000000-0000-0000-0082-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15278,13 +11342,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000062}, !- Handle + {00000000-0000-0000-0082-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15295,13 +11359,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000063}, !- Handle + {00000000-0000-0000-0082-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15312,13 +11376,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000064}, !- Handle + {00000000-0000-0000-0082-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15329,13 +11393,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000065}, !- Handle + {00000000-0000-0000-0082-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15346,13 +11410,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000066}, !- Handle + {00000000-0000-0000-0082-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15363,13 +11427,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000067}, !- Handle + {00000000-0000-0000-0082-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15380,13 +11444,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000068}, !- Handle + {00000000-0000-0000-0082-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15397,13 +11461,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000069}, !- Handle + {00000000-0000-0000-0082-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0076-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15414,11 +11478,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000070}, !- Handle + {00000000-0000-0000-0082-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15431,13 +11495,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000071}, !- Handle + {00000000-0000-0000-0082-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15448,13 +11512,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000072}, !- Handle + {00000000-0000-0000-0082-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15465,13 +11529,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000073}, !- Handle + {00000000-0000-0000-0082-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15482,13 +11546,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000074}, !- Handle + {00000000-0000-0000-0082-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15499,13 +11563,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000075}, !- Handle + {00000000-0000-0000-0082-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15516,13 +11580,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000076}, !- Handle + {00000000-0000-0000-0082-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15533,13 +11597,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000077}, !- Handle + {00000000-0000-0000-0082-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15550,13 +11614,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000078}, !- Handle + {00000000-0000-0000-0082-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15567,13 +11631,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000079}, !- Handle + {00000000-0000-0000-0082-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0076-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15584,11 +11648,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000080}, !- Handle + {00000000-0000-0000-0082-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15601,11 +11665,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000081}, !- Handle + {00000000-0000-0000-0082-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15618,11 +11682,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000082}, !- Handle + {00000000-0000-0000-0082-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15635,11 +11699,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000083}, !- Handle + {00000000-0000-0000-0082-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15652,11 +11716,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000084}, !- Handle + {00000000-0000-0000-0082-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15669,13 +11733,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000085}, !- Handle + {00000000-0000-0000-0082-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15686,13 +11750,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000086}, !- Handle + {00000000-0000-0000-0082-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15703,11 +11767,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000087}, !- Handle + {00000000-0000-0000-0082-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -15720,11 +11784,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000088}, !- Handle + {00000000-0000-0000-0082-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15737,11 +11801,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000089}, !- Handle + {00000000-0000-0000-0082-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15754,11 +11818,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000090}, !- Handle + {00000000-0000-0000-0082-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15771,11 +11835,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000091}, !- Handle + {00000000-0000-0000-0082-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15788,13 +11852,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000092}, !- Handle + {00000000-0000-0000-0082-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15805,13 +11869,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000093}, !- Handle + {00000000-0000-0000-0082-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15822,13 +11886,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000094}, !- Handle + {00000000-0000-0000-0082-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15839,13 +11903,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000095}, !- Handle + {00000000-0000-0000-0082-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -15856,13 +11920,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000096}, !- Handle + {00000000-0000-0000-0082-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15873,13 +11937,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000097}, !- Handle + {00000000-0000-0000-0082-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15890,11 +11954,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000098}, !- Handle + {00000000-0000-0000-0082-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15907,13 +11971,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000099}, !- Handle + {00000000-0000-0000-0082-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15924,13 +11988,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000100}, !- Handle + {00000000-0000-0000-0082-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15941,13 +12005,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000101}, !- Handle + {00000000-0000-0000-0082-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15958,13 +12022,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000102}, !- Handle + {00000000-0000-0000-0082-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -15975,11 +12039,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000103}, !- Handle + {00000000-0000-0000-0082-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -15992,13 +12056,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000104}, !- Handle + {00000000-0000-0000-0082-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0076-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16009,13 +12073,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000105}, !- Handle + {00000000-0000-0000-0082-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16026,13 +12090,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000106}, !- Handle + {00000000-0000-0000-0082-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16043,13 +12107,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000107}, !- Handle + {00000000-0000-0000-0082-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16060,13 +12124,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000108}, !- Handle + {00000000-0000-0000-0082-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16077,13 +12141,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000109}, !- Handle + {00000000-0000-0000-0082-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0076-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16094,11 +12158,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000110}, !- Handle + {00000000-0000-0000-0082-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16111,13 +12175,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000111}, !- Handle + {00000000-0000-0000-0082-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0076-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16128,13 +12192,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000112}, !- Handle + {00000000-0000-0000-0082-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16145,13 +12209,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000113}, !- Handle + {00000000-0000-0000-0082-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0076-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16162,13 +12226,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000114}, !- Handle + {00000000-0000-0000-0082-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16179,13 +12243,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000115}, !- Handle + {00000000-0000-0000-0082-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16196,13 +12260,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000116}, !- Handle + {00000000-0000-0000-0082-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0076-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -16213,13 +12277,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000117}, !- Handle + {00000000-0000-0000-0082-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16230,13 +12294,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000118}, !- Handle + {00000000-0000-0000-0082-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0076-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16247,11 +12311,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000119}, !- Handle + {00000000-0000-0000-0082-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0076-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16264,13 +12328,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000120}, !- Handle + {00000000-0000-0000-0082-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16281,13 +12345,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000121}, !- Handle + {00000000-0000-0000-0082-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16298,11 +12362,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000122}, !- Handle + {00000000-0000-0000-0082-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16315,13 +12379,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000123}, !- Handle + {00000000-0000-0000-0082-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16332,13 +12396,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000124}, !- Handle + {00000000-0000-0000-0082-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16349,11 +12413,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000125}, !- Handle + {00000000-0000-0000-0082-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16366,13 +12430,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000126}, !- Handle + {00000000-0000-0000-0082-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16383,13 +12447,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000127}, !- Handle + {00000000-0000-0000-0082-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16400,11 +12464,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000128}, !- Handle + {00000000-0000-0000-0082-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16417,11 +12481,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000129}, !- Handle + {00000000-0000-0000-0082-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16434,13 +12498,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000130}, !- Handle + {00000000-0000-0000-0082-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0076-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16451,13 +12515,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000131}, !- Handle + {00000000-0000-0000-0082-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16468,13 +12532,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000132}, !- Handle + {00000000-0000-0000-0082-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16485,13 +12549,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000133}, !- Handle + {00000000-0000-0000-0082-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16502,11 +12566,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000134}, !- Handle + {00000000-0000-0000-0082-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16519,11 +12583,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000135}, !- Handle + {00000000-0000-0000-0082-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16536,13 +12600,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000136}, !- Handle + {00000000-0000-0000-0082-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0076-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16553,13 +12617,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000137}, !- Handle + {00000000-0000-0000-0082-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16570,13 +12634,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000138}, !- Handle + {00000000-0000-0000-0082-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0076-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16587,13 +12651,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000139}, !- Handle + {00000000-0000-0000-0082-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16604,11 +12668,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000140}, !- Handle + {00000000-0000-0000-0082-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16621,13 +12685,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000141}, !- Handle + {00000000-0000-0000-0082-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16638,13 +12702,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000142}, !- Handle + {00000000-0000-0000-0082-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0076-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16655,11 +12719,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000143}, !- Handle + {00000000-0000-0000-0082-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0076-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16672,13 +12736,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000144}, !- Handle + {00000000-0000-0000-0082-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16689,13 +12753,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000145}, !- Handle + {00000000-0000-0000-0082-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16706,11 +12770,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000146}, !- Handle + {00000000-0000-0000-0082-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16723,11 +12787,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000147}, !- Handle + {00000000-0000-0000-0082-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16740,13 +12804,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000148}, !- Handle + {00000000-0000-0000-0082-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16757,13 +12821,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000149}, !- Handle + {00000000-0000-0000-0082-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16774,11 +12838,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000150}, !- Handle + {00000000-0000-0000-0082-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16791,11 +12855,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000151}, !- Handle + {00000000-0000-0000-0082-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16808,13 +12872,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000152}, !- Handle + {00000000-0000-0000-0082-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0076-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16825,13 +12889,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000153}, !- Handle + {00000000-0000-0000-0082-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16842,13 +12906,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000154}, !- Handle + {00000000-0000-0000-0082-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16859,13 +12923,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000155}, !- Handle + {00000000-0000-0000-0082-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16876,11 +12940,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000156}, !- Handle + {00000000-0000-0000-0082-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16893,11 +12957,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000157}, !- Handle + {00000000-0000-0000-0082-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -16910,13 +12974,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000158}, !- Handle + {00000000-0000-0000-0082-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0076-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16927,13 +12991,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000159}, !- Handle + {00000000-0000-0000-0082-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16944,13 +13008,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000160}, !- Handle + {00000000-0000-0000-0082-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16961,13 +13025,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000161}, !- Handle + {00000000-0000-0000-0082-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -16978,11 +13042,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000162}, !- Handle + {00000000-0000-0000-0082-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -16995,13 +13059,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000163}, !- Handle + {00000000-0000-0000-0082-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17012,13 +13076,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000164}, !- Handle + {00000000-0000-0000-0082-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0076-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0082-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17029,11 +13093,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000165}, !- Handle + {00000000-0000-0000-0082-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0076-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17046,11 +13110,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000166}, !- Handle + {00000000-0000-0000-0082-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17063,11 +13127,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000167}, !- Handle + {00000000-0000-0000-0082-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17080,11 +13144,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000168}, !- Handle + {00000000-0000-0000-0082-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17097,11 +13161,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000169}, !- Handle + {00000000-0000-0000-0082-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0076-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17114,27 +13178,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0089-000000000001}, !- Handle - {00000000-0000-0000-0086-000000000044}, !- Surface Name + {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0082-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0089-000000000002}, !- Handle - {00000000-0000-0000-0086-000000000001}, !- Surface Name + {00000000-0000-0000-0085-000000000002}, !- Handle + {00000000-0000-0000-0082-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17143,21 +13207,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000007}, !- Thermostat Name + {00000000-0000-0000-0055-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17166,21 +13230,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000009}, !- Thermostat Name + {00000000-0000-0000-0055-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17189,21 +13253,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000008}, !- Thermostat Name + {00000000-0000-0000-0055-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000004}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17212,21 +13276,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000058}, !- Thermostat Name + {00000000-0000-0000-0055-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000005}, !- Handle + {00000000-0000-0000-0086-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17235,21 +13299,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000052}, !- Thermostat Name + {00000000-0000-0000-0055-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000006}, !- Handle + {00000000-0000-0000-0086-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17258,21 +13322,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000053}, !- Thermostat Name + {00000000-0000-0000-0055-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000007}, !- Handle + {00000000-0000-0000-0086-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17281,21 +13345,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000060}, !- Thermostat Name + {00000000-0000-0000-0055-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000008}, !- Handle + {00000000-0000-0000-0086-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17304,21 +13368,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000065}, !- Thermostat Name + {00000000-0000-0000-0055-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000009}, !- Handle + {00000000-0000-0000-0086-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17327,21 +13391,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000067}, !- Thermostat Name + {00000000-0000-0000-0055-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000010}, !- Handle + {00000000-0000-0000-0086-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17350,21 +13414,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000047}, !- Thermostat Name + {00000000-0000-0000-0055-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000011}, !- Handle + {00000000-0000-0000-0086-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17373,21 +13437,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000055}, !- Thermostat Name + {00000000-0000-0000-0055-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000012}, !- Handle + {00000000-0000-0000-0086-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17396,21 +13460,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000057}, !- Thermostat Name + {00000000-0000-0000-0055-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000013}, !- Handle + {00000000-0000-0000-0086-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17419,21 +13483,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000062}, !- Thermostat Name + {00000000-0000-0000-0055-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000014}, !- Handle + {00000000-0000-0000-0086-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17442,21 +13506,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000064}, !- Thermostat Name + {00000000-0000-0000-0055-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000015}, !- Handle + {00000000-0000-0000-0086-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17465,21 +13529,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000066}, !- Thermostat Name + {00000000-0000-0000-0055-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000016}, !- Handle + {00000000-0000-0000-0086-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -17488,21 +13552,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000050}, !- Thermostat Name + {00000000-0000-0000-0055-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000017}, !- Handle + {00000000-0000-0000-0086-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17511,21 +13575,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000051}, !- Thermostat Name + {00000000-0000-0000-0055-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000018}, !- Handle + {00000000-0000-0000-0086-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17534,21 +13598,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000054}, !- Thermostat Name + {00000000-0000-0000-0055-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000019}, !- Handle + {00000000-0000-0000-0086-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17557,21 +13621,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000056}, !- Thermostat Name + {00000000-0000-0000-0055-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000020}, !- Handle + {00000000-0000-0000-0086-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17580,21 +13644,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000061}, !- Thermostat Name + {00000000-0000-0000-0055-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000021}, !- Handle + {00000000-0000-0000-0086-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17603,21 +13667,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000063}, !- Thermostat Name + {00000000-0000-0000-0055-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000022}, !- Handle + {00000000-0000-0000-0086-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17626,21 +13690,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000049}, !- Thermostat Name + {00000000-0000-0000-0055-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000023}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -17649,444 +13713,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0056-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0056-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0052-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0052-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0056-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0052-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0059-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000013}, !- Thermostat Name + {00000000-0000-0000-0055-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0087-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0087-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000002}, !- Handle + {00000000-0000-0000-0087-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000003}, !- Handle + {00000000-0000-0000-0087-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000004}, !- Handle + {00000000-0000-0000-0087-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000005}, !- Handle + {00000000-0000-0000-0087-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000006}, !- Handle + {00000000-0000-0000-0087-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000007}, !- Handle + {00000000-0000-0000-0087-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000008}, !- Handle + {00000000-0000-0000-0087-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000009}, !- Handle + {00000000-0000-0000-0087-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000010}, !- Handle + {00000000-0000-0000-0087-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000011}, !- Handle + {00000000-0000-0000-0087-000000000011}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000012}, !- Handle + {00000000-0000-0000-0087-000000000012}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000013}, !- Handle + {00000000-0000-0000-0087-000000000013}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000014}, !- Handle + {00000000-0000-0000-0087-000000000014}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000015}, !- Handle + {00000000-0000-0000-0087-000000000015}, !- Handle Space Function Office open plan Thermostat 1, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000016}, !- Handle + {00000000-0000-0000-0087-000000000016}, !- Handle Space Function Office open plan Thermostat 10, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000017}, !- Handle + {00000000-0000-0000-0087-000000000017}, !- Handle Space Function Office open plan Thermostat 11, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000018}, !- Handle + {00000000-0000-0000-0087-000000000018}, !- Handle Space Function Office open plan Thermostat 12, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000019}, !- Handle + {00000000-0000-0000-0087-000000000019}, !- Handle Space Function Office open plan Thermostat 13, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000020}, !- Handle + {00000000-0000-0000-0087-000000000020}, !- Handle Space Function Office open plan Thermostat 14, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000021}, !- Handle + {00000000-0000-0000-0087-000000000021}, !- Handle Space Function Office open plan Thermostat 15, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000022}, !- Handle + {00000000-0000-0000-0087-000000000022}, !- Handle Space Function Office open plan Thermostat 16, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000023}, !- Handle + {00000000-0000-0000-0087-000000000023}, !- Handle Space Function Office open plan Thermostat 17, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000024}, !- Handle + {00000000-0000-0000-0087-000000000024}, !- Handle Space Function Office open plan Thermostat 18, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000025}, !- Handle + {00000000-0000-0000-0087-000000000025}, !- Handle Space Function Office open plan Thermostat 19, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000026}, !- Handle + {00000000-0000-0000-0087-000000000026}, !- Handle Space Function Office open plan Thermostat 2, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000027}, !- Handle + {00000000-0000-0000-0087-000000000027}, !- Handle Space Function Office open plan Thermostat 20, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000028}, !- Handle + {00000000-0000-0000-0087-000000000028}, !- Handle Space Function Office open plan Thermostat 21, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000029}, !- Handle + {00000000-0000-0000-0087-000000000029}, !- Handle Space Function Office open plan Thermostat 22, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000030}, !- Handle + {00000000-0000-0000-0087-000000000030}, !- Handle Space Function Office open plan Thermostat 23, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000031}, !- Handle + {00000000-0000-0000-0087-000000000031}, !- Handle Space Function Office open plan Thermostat 24, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000032}, !- Handle + {00000000-0000-0000-0087-000000000032}, !- Handle Space Function Office open plan Thermostat 25, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000033}, !- Handle + {00000000-0000-0000-0087-000000000033}, !- Handle Space Function Office open plan Thermostat 26, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000034}, !- Handle + {00000000-0000-0000-0087-000000000034}, !- Handle Space Function Office open plan Thermostat 27, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000035}, !- Handle + {00000000-0000-0000-0087-000000000035}, !- Handle Space Function Office open plan Thermostat 28, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000036}, !- Handle + {00000000-0000-0000-0087-000000000036}, !- Handle Space Function Office open plan Thermostat 29, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000037}, !- Handle + {00000000-0000-0000-0087-000000000037}, !- Handle Space Function Office open plan Thermostat 3, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000038}, !- Handle + {00000000-0000-0000-0087-000000000038}, !- Handle Space Function Office open plan Thermostat 30, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000039}, !- Handle + {00000000-0000-0000-0087-000000000039}, !- Handle Space Function Office open plan Thermostat 31, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000040}, !- Handle + {00000000-0000-0000-0087-000000000040}, !- Handle Space Function Office open plan Thermostat 32, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000041}, !- Handle + {00000000-0000-0000-0087-000000000041}, !- Handle Space Function Office open plan Thermostat 33, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000042}, !- Handle + {00000000-0000-0000-0087-000000000042}, !- Handle Space Function Office open plan Thermostat 34, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000043}, !- Handle + {00000000-0000-0000-0087-000000000043}, !- Handle Space Function Office open plan Thermostat 35, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000044}, !- Handle + {00000000-0000-0000-0087-000000000044}, !- Handle Space Function Office open plan Thermostat 36, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000045}, !- Handle + {00000000-0000-0000-0087-000000000045}, !- Handle Space Function Office open plan Thermostat 37, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000046}, !- Handle + {00000000-0000-0000-0087-000000000046}, !- Handle Space Function Office open plan Thermostat 38, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000047}, !- Handle + {00000000-0000-0000-0087-000000000047}, !- Handle Space Function Office open plan Thermostat 39, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000048}, !- Handle + {00000000-0000-0000-0087-000000000048}, !- Handle Space Function Office open plan Thermostat 4, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000049}, !- Handle + {00000000-0000-0000-0087-000000000049}, !- Handle Space Function Office open plan Thermostat 40, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000050}, !- Handle + {00000000-0000-0000-0087-000000000050}, !- Handle Space Function Office open plan Thermostat 41, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000051}, !- Handle + {00000000-0000-0000-0087-000000000051}, !- Handle Space Function Office open plan Thermostat 42, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000052}, !- Handle + {00000000-0000-0000-0087-000000000052}, !- Handle Space Function Office open plan Thermostat 43, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000053}, !- Handle + {00000000-0000-0000-0087-000000000053}, !- Handle Space Function Office open plan Thermostat 44, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000054}, !- Handle + {00000000-0000-0000-0087-000000000054}, !- Handle Space Function Office open plan Thermostat 45, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000055}, !- Handle + {00000000-0000-0000-0087-000000000055}, !- Handle Space Function Office open plan Thermostat 46, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000056}, !- Handle + {00000000-0000-0000-0087-000000000056}, !- Handle Space Function Office open plan Thermostat 47, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000057}, !- Handle + {00000000-0000-0000-0087-000000000057}, !- Handle Space Function Office open plan Thermostat 48, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000058}, !- Handle + {00000000-0000-0000-0087-000000000058}, !- Handle Space Function Office open plan Thermostat 49, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000059}, !- Handle + {00000000-0000-0000-0087-000000000059}, !- Handle Space Function Office open plan Thermostat 5, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000060}, !- Handle + {00000000-0000-0000-0087-000000000060}, !- Handle Space Function Office open plan Thermostat 50, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000061}, !- Handle + {00000000-0000-0000-0087-000000000061}, !- Handle Space Function Office open plan Thermostat 51, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000062}, !- Handle + {00000000-0000-0000-0087-000000000062}, !- Handle Space Function Office open plan Thermostat 52, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000063}, !- Handle + {00000000-0000-0000-0087-000000000063}, !- Handle Space Function Office open plan Thermostat 53, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000064}, !- Handle + {00000000-0000-0000-0087-000000000064}, !- Handle Space Function Office open plan Thermostat 54, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000065}, !- Handle + {00000000-0000-0000-0087-000000000065}, !- Handle Space Function Office open plan Thermostat 55, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000066}, !- Handle + {00000000-0000-0000-0087-000000000066}, !- Handle Space Function Office open plan Thermostat 56, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000067}, !- Handle + {00000000-0000-0000-0087-000000000067}, !- Handle Space Function Office open plan Thermostat 57, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000068}, !- Handle + {00000000-0000-0000-0087-000000000068}, !- Handle Space Function Office open plan Thermostat 6, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000069}, !- Handle + {00000000-0000-0000-0087-000000000069}, !- Handle Space Function Office open plan Thermostat 7, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000070}, !- Handle + {00000000-0000-0000-0087-000000000070}, !- Handle Space Function Office open plan Thermostat 8, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000071}, !- Handle + {00000000-0000-0000-0087-000000000071}, !- Handle Space Function Office open plan Thermostat 9, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000072}, !- Handle + {00000000-0000-0000-0087-000000000072}, !- Handle Space Function Office open plan Thermostat, !- Name - {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0089-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff, !- Name 4.12098554344306, !- Tank Volume {m3} - {00000000-0000-0000-0063-000000000019}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0059-000000000019}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -18104,7 +14168,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0063-000000000024}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0059-000000000021}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 0.00835199724525224, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -18114,8 +14178,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000323}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000324}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000155}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000156}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -18128,18 +14192,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0095-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle Core_bottom WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000340}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000341}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000172}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000173}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18147,13 +14211,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000002}, !- Handle + {00000000-0000-0000-0092-000000000002}, !- Handle Core_mid WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000344}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000345}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000176}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000177}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18161,13 +14225,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000003}, !- Handle + {00000000-0000-0000-0092-000000000003}, !- Handle Core_top WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000348}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000349}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000180}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000181}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18175,13 +14239,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000004}, !- Handle + {00000000-0000-0000-0092-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0017-000000000352}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000353}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000184}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000185}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18189,13 +14253,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000005}, !- Handle + {00000000-0000-0000-0092-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000356}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000357}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000188}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000189}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18203,13 +14267,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000006}, !- Handle + {00000000-0000-0000-0092-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000360}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000361}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000192}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000193}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18217,13 +14281,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000007}, !- Handle + {00000000-0000-0000-0092-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000364}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000365}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000196}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000197}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18231,13 +14295,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000008}, !- Handle + {00000000-0000-0000-0092-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000368}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000369}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000200}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000201}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18245,13 +14309,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000009}, !- Handle + {00000000-0000-0000-0092-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000372}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000373}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000204}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000205}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18259,13 +14323,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000010}, !- Handle + {00000000-0000-0000-0092-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000376}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000377}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000208}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18273,13 +14337,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000011}, !- Handle + {00000000-0000-0000-0092-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000380}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000381}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000212}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000213}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18287,13 +14351,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000012}, !- Handle + {00000000-0000-0000-0092-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000384}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000385}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000216}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000217}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18301,13 +14365,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000013}, !- Handle + {00000000-0000-0000-0092-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000388}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000389}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000220}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000221}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18315,13 +14379,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000014}, !- Handle + {00000000-0000-0000-0092-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000392}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000393}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000225}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18329,13 +14393,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000015}, !- Handle + {00000000-0000-0000-0092-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000396}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000397}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000228}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000229}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18343,13 +14407,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000016}, !- Handle + {00000000-0000-0000-0092-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000400}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000401}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000232}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000233}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18357,13 +14421,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000017}, !- Handle + {00000000-0000-0000-0092-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000404}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000405}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000236}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000237}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18371,13 +14435,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000018}, !- Handle + {00000000-0000-0000-0092-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000408}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000409}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000240}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000241}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18385,13 +14449,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000019}, !- Handle + {00000000-0000-0000-0092-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000412}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000413}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000244}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000245}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -18399,314 +14463,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0093-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0093-000000000001}, !- Handle Core_bottom Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000002}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000002}, !- Handle + {00000000-0000-0000-0093-000000000002}, !- Handle Core_mid Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000003}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000003}, !- Handle + {00000000-0000-0000-0093-000000000003}, !- Handle Core_top Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000004}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000004}, !- Handle + {00000000-0000-0000-0093-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0098-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000005}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000005}, !- Handle + {00000000-0000-0000-0093-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000006}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000006}, !- Handle + {00000000-0000-0000-0093-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000007}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000007}, !- Handle + {00000000-0000-0000-0093-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000008}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000008}, !- Handle + {00000000-0000-0000-0093-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000011}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000009}, !- Handle + {00000000-0000-0000-0093-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000012}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000010}, !- Handle + {00000000-0000-0000-0093-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000013}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000011}, !- Handle + {00000000-0000-0000-0093-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000014}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000012}, !- Handle + {00000000-0000-0000-0093-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000015}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000013}, !- Handle + {00000000-0000-0000-0093-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000016}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000014}, !- Handle + {00000000-0000-0000-0093-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000017}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000015}, !- Handle + {00000000-0000-0000-0093-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000018}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000016}, !- Handle + {00000000-0000-0000-0093-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000019}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000017}, !- Handle + {00000000-0000-0000-0093-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000020}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000018}, !- Handle + {00000000-0000-0000-0093-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000021}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000019}, !- Handle + {00000000-0000-0000-0093-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000022}, !- Space Name - {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0094-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle Core_bottom 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Handle Core_mid 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000003}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Handle Core_top 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000004}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.87303728009577e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000005}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000006}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000007}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000008}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000009}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000010}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000011}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000013}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000014}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000015}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000016}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000017}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000018}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000019}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0095-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -18722,195 +14786,69 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0100-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0100-000000000002}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Handle SimpleGlazing:U=0.173 SHGC=0.600, !- Name 1.73, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0100-000000000003}, !- Handle + {00000000-0000-0000-0096-000000000003}, !- Handle SimpleGlazing:U=0.241 SHGC=0.600, !- Name 2.41, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0101-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle Zone HVAC Baseboard Convective Electric 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000002}, !- Handle - Zone HVAC Baseboard Convective Electric 10, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000003}, !- Handle - Zone HVAC Baseboard Convective Electric 11, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000004}, !- Handle - Zone HVAC Baseboard Convective Electric 12, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000005}, !- Handle - Zone HVAC Baseboard Convective Electric 13, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000006}, !- Handle - Zone HVAC Baseboard Convective Electric 14, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000007}, !- Handle - Zone HVAC Baseboard Convective Electric 15, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000008}, !- Handle - Zone HVAC Baseboard Convective Electric 16, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000009}, !- Handle - Zone HVAC Baseboard Convective Electric 17, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000010}, !- Handle - Zone HVAC Baseboard Convective Electric 18, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000011}, !- Handle - Zone HVAC Baseboard Convective Electric 19, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000012}, !- Handle + {00000000-0000-0000-0098-000000000002}, !- Handle Zone HVAC Baseboard Convective Electric 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000013}, !- Handle - Zone HVAC Baseboard Convective Electric 20, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000014}, !- Handle - Zone HVAC Baseboard Convective Electric 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000015}, !- Handle - Zone HVAC Baseboard Convective Electric 4, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000016}, !- Handle - Zone HVAC Baseboard Convective Electric 5, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000017}, !- Handle - Zone HVAC Baseboard Convective Electric 6, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000018}, !- Handle - Zone HVAC Baseboard Convective Electric 7, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000019}, !- Handle - Zone HVAC Baseboard Convective Electric 8, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0102-000000000020}, !- Handle - Zone HVAC Baseboard Convective Electric 9, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000001}, !- Handle + {00000000-0000-0000-0099-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000001}, !- Thermal Zone + {00000000-0000-0000-0086-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000002}, !- Handle + {00000000-0000-0000-0099-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000002}, !- Thermal Zone + {00000000-0000-0000-0086-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000003}, !- Handle + {00000000-0000-0000-0099-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000003}, !- Thermal Zone + {00000000-0000-0000-0086-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000004}, !- Handle + {00000000-0000-0000-0099-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000004}, !- Thermal Zone + {00000000-0000-0000-0086-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000012}, !- Zone Equipment 1 + {00000000-0000-0000-0098-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -18922,299 +14860,119 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000005}, !- Handle + {00000000-0000-0000-0099-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000005}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000005}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000006}, !- Handle + {00000000-0000-0000-0099-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000006}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000017}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000006}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000007}, !- Handle + {00000000-0000-0000-0099-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000007}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000007}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000008}, !- Handle + {00000000-0000-0000-0099-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000008}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000018}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000008}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000009}, !- Handle + {00000000-0000-0000-0099-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000016}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000009}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000010}, !- Handle + {00000000-0000-0000-0099-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000019}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000010}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000011}, !- Handle + {00000000-0000-0000-0099-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000011}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000012}, !- Handle + {00000000-0000-0000-0099-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000012}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000013}, !- Handle + {00000000-0000-0000-0099-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000013}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000014}, !- Handle + {00000000-0000-0000-0099-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000020}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000014}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000015}, !- Handle + {00000000-0000-0000-0099-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000015}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000016}, !- Handle + {00000000-0000-0000-0099-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000016}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000017}, !- Handle + {00000000-0000-0000-0099-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000009}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000017}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000018}, !- Handle + {00000000-0000-0000-0099-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000010}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000018}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000019}, !- Handle + {00000000-0000-0000-0099-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000019}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000008}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000019}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000020}, !- Handle + {00000000-0000-0000-0099-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000020}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000011}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000020}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000021}, !- Handle + {00000000-0000-0000-0099-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000021}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000021}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000022}, !- Handle + {00000000-0000-0000-0099-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000022}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0086-000000000022}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000023}, !- Handle + {00000000-0000-0000-0099-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000023}, !- Thermal Zone + {00000000-0000-0000-0086-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0098-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index ac005ce95e..05cce32176 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000024}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -5269,61 +5269,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {735dc137-ac1b-4586-abab-9e60cbd93915}<23.9 && {735dc137-ac1b-4586-abab-9e60cbd93915}>1.7, !- Program Line 1 - SET {6af0d557-c902-4cc7-a258-8ba8687d25cb} = 29.4, !- Program Line 2 - SET {fcbf8670-f98b-4686-9d30-8c028ebc4a7d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {735dc137-ac1b-4586-abab-9e60cbd93915}<23.9 && {735dc137-ac1b-4586-abab-9e60cbd93915}>1.7, !- Program Line 4 - SET {6af0d557-c902-4cc7-a258-8ba8687d25cb} = 29.4, !- Program Line 5 - SET {fcbf8670-f98b-4686-9d30-8c028ebc4a7d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {735dc137-ac1b-4586-abab-9e60cbd93915}<23.9 && {735dc137-ac1b-4586-abab-9e60cbd93915}>1.7, !- Program Line 7 - SET {6af0d557-c902-4cc7-a258-8ba8687d25cb} = 29.4, !- Program Line 8 - SET {fcbf8670-f98b-4686-9d30-8c028ebc4a7d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {735dc137-ac1b-4586-abab-9e60cbd93915}<23.9 && {735dc137-ac1b-4586-abab-9e60cbd93915}>1.7, !- Program Line 10 - SET {6af0d557-c902-4cc7-a258-8ba8687d25cb} = 29.4, !- Program Line 11 - SET {fcbf8670-f98b-4686-9d30-8c028ebc4a7d} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {33847014-bf7d-45b7-b02a-6879965f9890}<23.9 && {33847014-bf7d-45b7-b02a-6879965f9890}>1.7, !- Program Line 1 + SET {6d88643e-6f3c-44ca-8837-46fee6b93cc2} = 29.4, !- Program Line 2 + SET {fced0120-0c61-4277-be7a-adea57619176} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {33847014-bf7d-45b7-b02a-6879965f9890}<23.9 && {33847014-bf7d-45b7-b02a-6879965f9890}>1.7, !- Program Line 4 + SET {6d88643e-6f3c-44ca-8837-46fee6b93cc2} = 29.4, !- Program Line 5 + SET {fced0120-0c61-4277-be7a-adea57619176} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {33847014-bf7d-45b7-b02a-6879965f9890}<23.9 && {33847014-bf7d-45b7-b02a-6879965f9890}>1.7, !- Program Line 7 + SET {6d88643e-6f3c-44ca-8837-46fee6b93cc2} = 29.4, !- Program Line 8 + SET {fced0120-0c61-4277-be7a-adea57619176} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {33847014-bf7d-45b7-b02a-6879965f9890}<23.9 && {33847014-bf7d-45b7-b02a-6879965f9890}>1.7, !- Program Line 10 + SET {6d88643e-6f3c-44ca-8837-46fee6b93cc2} = 29.4, !- Program Line 11 + SET {fced0120-0c61-4277-be7a-adea57619176} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6af0d557-c902-4cc7-a258-8ba8687d25cb} = NULL, !- Program Line 14 - SET {fcbf8670-f98b-4686-9d30-8c028ebc4a7d} = NULL, !- Program Line 15 + SET {6d88643e-6f3c-44ca-8837-46fee6b93cc2} = NULL, !- Program Line 14 + SET {fced0120-0c61-4277-be7a-adea57619176} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {962a2499-86b1-4ddf-b604-79c06a1a3604}<23.9 && {962a2499-86b1-4ddf-b604-79c06a1a3604}>1.7, !- Program Line 1 - SET {a9a568f6-1379-4a69-a4b0-f6a1fd3b0450} = 29.4, !- Program Line 2 - SET {f3104e4a-3fdf-410b-9350-b76348902045} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {962a2499-86b1-4ddf-b604-79c06a1a3604}<23.9 && {962a2499-86b1-4ddf-b604-79c06a1a3604}>1.7, !- Program Line 4 - SET {a9a568f6-1379-4a69-a4b0-f6a1fd3b0450} = 29.4, !- Program Line 5 - SET {f3104e4a-3fdf-410b-9350-b76348902045} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {962a2499-86b1-4ddf-b604-79c06a1a3604}<23.9 && {962a2499-86b1-4ddf-b604-79c06a1a3604}>1.7, !- Program Line 7 - SET {a9a568f6-1379-4a69-a4b0-f6a1fd3b0450} = 29.4, !- Program Line 8 - SET {f3104e4a-3fdf-410b-9350-b76348902045} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {962a2499-86b1-4ddf-b604-79c06a1a3604}<23.9 && {962a2499-86b1-4ddf-b604-79c06a1a3604}>1.7, !- Program Line 10 - SET {a9a568f6-1379-4a69-a4b0-f6a1fd3b0450} = 29.4, !- Program Line 11 - SET {f3104e4a-3fdf-410b-9350-b76348902045} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fdbedeef-356f-41d6-8be9-453997f64d4e}<23.9 && {fdbedeef-356f-41d6-8be9-453997f64d4e}>1.7, !- Program Line 1 + SET {58902126-15ab-4526-bc23-66f1542ba786} = 29.4, !- Program Line 2 + SET {83723681-644a-4229-88b2-4f878ffd84fd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fdbedeef-356f-41d6-8be9-453997f64d4e}<23.9 && {fdbedeef-356f-41d6-8be9-453997f64d4e}>1.7, !- Program Line 4 + SET {58902126-15ab-4526-bc23-66f1542ba786} = 29.4, !- Program Line 5 + SET {83723681-644a-4229-88b2-4f878ffd84fd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fdbedeef-356f-41d6-8be9-453997f64d4e}<23.9 && {fdbedeef-356f-41d6-8be9-453997f64d4e}>1.7, !- Program Line 7 + SET {58902126-15ab-4526-bc23-66f1542ba786} = 29.4, !- Program Line 8 + SET {83723681-644a-4229-88b2-4f878ffd84fd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fdbedeef-356f-41d6-8be9-453997f64d4e}<23.9 && {fdbedeef-356f-41d6-8be9-453997f64d4e}>1.7, !- Program Line 10 + SET {58902126-15ab-4526-bc23-66f1542ba786} = 29.4, !- Program Line 11 + SET {83723681-644a-4229-88b2-4f878ffd84fd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a9a568f6-1379-4a69-a4b0-f6a1fd3b0450} = NULL, !- Program Line 14 - SET {f3104e4a-3fdf-410b-9350-b76348902045} = NULL, !- Program Line 15 + SET {58902126-15ab-4526-bc23-66f1542ba786} = NULL, !- Program Line 14 + SET {83723681-644a-4229-88b2-4f878ffd84fd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8eb46ed8-8664-497f-be38-bcc2dce39967}<23.9 && {8eb46ed8-8664-497f-be38-bcc2dce39967}>1.7, !- Program Line 1 - SET {b70673f4-148a-4dcc-b5cf-176fe52aee6e} = 29.4, !- Program Line 2 - SET {77ff3ed1-8266-4663-9a56-247aac653b41} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8eb46ed8-8664-497f-be38-bcc2dce39967}<23.9 && {8eb46ed8-8664-497f-be38-bcc2dce39967}>1.7, !- Program Line 4 - SET {b70673f4-148a-4dcc-b5cf-176fe52aee6e} = 29.4, !- Program Line 5 - SET {77ff3ed1-8266-4663-9a56-247aac653b41} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8eb46ed8-8664-497f-be38-bcc2dce39967}<23.9 && {8eb46ed8-8664-497f-be38-bcc2dce39967}>1.7, !- Program Line 7 - SET {b70673f4-148a-4dcc-b5cf-176fe52aee6e} = 29.4, !- Program Line 8 - SET {77ff3ed1-8266-4663-9a56-247aac653b41} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8eb46ed8-8664-497f-be38-bcc2dce39967}<23.9 && {8eb46ed8-8664-497f-be38-bcc2dce39967}>1.7, !- Program Line 10 - SET {b70673f4-148a-4dcc-b5cf-176fe52aee6e} = 29.4, !- Program Line 11 - SET {77ff3ed1-8266-4663-9a56-247aac653b41} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4d552e81-ca4d-47fc-af60-43905099706d}<23.9 && {4d552e81-ca4d-47fc-af60-43905099706d}>1.7, !- Program Line 1 + SET {ad22317a-ece0-4b12-b79f-b6ab0f269591} = 29.4, !- Program Line 2 + SET {9aa542f8-0b8b-4c46-bcb2-f5d1eb293b36} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4d552e81-ca4d-47fc-af60-43905099706d}<23.9 && {4d552e81-ca4d-47fc-af60-43905099706d}>1.7, !- Program Line 4 + SET {ad22317a-ece0-4b12-b79f-b6ab0f269591} = 29.4, !- Program Line 5 + SET {9aa542f8-0b8b-4c46-bcb2-f5d1eb293b36} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4d552e81-ca4d-47fc-af60-43905099706d}<23.9 && {4d552e81-ca4d-47fc-af60-43905099706d}>1.7, !- Program Line 7 + SET {ad22317a-ece0-4b12-b79f-b6ab0f269591} = 29.4, !- Program Line 8 + SET {9aa542f8-0b8b-4c46-bcb2-f5d1eb293b36} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4d552e81-ca4d-47fc-af60-43905099706d}<23.9 && {4d552e81-ca4d-47fc-af60-43905099706d}>1.7, !- Program Line 10 + SET {ad22317a-ece0-4b12-b79f-b6ab0f269591} = 29.4, !- Program Line 11 + SET {9aa542f8-0b8b-4c46-bcb2-f5d1eb293b36} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b70673f4-148a-4dcc-b5cf-176fe52aee6e} = NULL, !- Program Line 14 - SET {77ff3ed1-8266-4663-9a56-247aac653b41} = NULL, !- Program Line 15 + SET {ad22317a-ece0-4b12-b79f-b6ab0f269591} = NULL, !- Program Line 14 + SET {9aa542f8-0b8b-4c46-bcb2-f5d1eb293b36} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -5521,7 +5521,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -7037,55 +7037,55 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000147}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000148}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000149}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000150}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000343}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000151}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000348}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000152}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000153}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000154}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000344}, !- Inlet Port {00000000-0000-0000-0017-000000000345}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000155}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000346}, !- Inlet Port {00000000-0000-0000-0017-000000000347}; !- Outlet Port @@ -8753,7 +8753,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -8768,7 +8768,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8777,7 +8777,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9609,7 +9609,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000024}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000057}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000058}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index c3e207d1c8..b2aaa979e1 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000024}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -5359,61 +5359,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {edc40cc4-9d5f-4ed0-97ae-886b5653ec92}<23.9 && {edc40cc4-9d5f-4ed0-97ae-886b5653ec92}>1.7, !- Program Line 1 - SET {a2b56e16-47af-4081-bfc8-8064dbba773b} = 29.4, !- Program Line 2 - SET {52a212ee-7515-42b4-8848-557bfbcd2946} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {edc40cc4-9d5f-4ed0-97ae-886b5653ec92}<23.9 && {edc40cc4-9d5f-4ed0-97ae-886b5653ec92}>1.7, !- Program Line 4 - SET {a2b56e16-47af-4081-bfc8-8064dbba773b} = 29.4, !- Program Line 5 - SET {52a212ee-7515-42b4-8848-557bfbcd2946} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {edc40cc4-9d5f-4ed0-97ae-886b5653ec92}<23.9 && {edc40cc4-9d5f-4ed0-97ae-886b5653ec92}>1.7, !- Program Line 7 - SET {a2b56e16-47af-4081-bfc8-8064dbba773b} = 29.4, !- Program Line 8 - SET {52a212ee-7515-42b4-8848-557bfbcd2946} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {edc40cc4-9d5f-4ed0-97ae-886b5653ec92}<23.9 && {edc40cc4-9d5f-4ed0-97ae-886b5653ec92}>1.7, !- Program Line 10 - SET {a2b56e16-47af-4081-bfc8-8064dbba773b} = 29.4, !- Program Line 11 - SET {52a212ee-7515-42b4-8848-557bfbcd2946} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {29c51f60-20ff-4e46-a546-f5828d8921f2}<23.9 && {29c51f60-20ff-4e46-a546-f5828d8921f2}>1.7, !- Program Line 1 + SET {dd6113a0-b565-4be5-9980-09afbac0f244} = 29.4, !- Program Line 2 + SET {4b51a69f-c1b2-4f6b-bfc7-19957bf82df0} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {29c51f60-20ff-4e46-a546-f5828d8921f2}<23.9 && {29c51f60-20ff-4e46-a546-f5828d8921f2}>1.7, !- Program Line 4 + SET {dd6113a0-b565-4be5-9980-09afbac0f244} = 29.4, !- Program Line 5 + SET {4b51a69f-c1b2-4f6b-bfc7-19957bf82df0} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {29c51f60-20ff-4e46-a546-f5828d8921f2}<23.9 && {29c51f60-20ff-4e46-a546-f5828d8921f2}>1.7, !- Program Line 7 + SET {dd6113a0-b565-4be5-9980-09afbac0f244} = 29.4, !- Program Line 8 + SET {4b51a69f-c1b2-4f6b-bfc7-19957bf82df0} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {29c51f60-20ff-4e46-a546-f5828d8921f2}<23.9 && {29c51f60-20ff-4e46-a546-f5828d8921f2}>1.7, !- Program Line 10 + SET {dd6113a0-b565-4be5-9980-09afbac0f244} = 29.4, !- Program Line 11 + SET {4b51a69f-c1b2-4f6b-bfc7-19957bf82df0} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a2b56e16-47af-4081-bfc8-8064dbba773b} = NULL, !- Program Line 14 - SET {52a212ee-7515-42b4-8848-557bfbcd2946} = NULL, !- Program Line 15 + SET {dd6113a0-b565-4be5-9980-09afbac0f244} = NULL, !- Program Line 14 + SET {4b51a69f-c1b2-4f6b-bfc7-19957bf82df0} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {89043bdc-a7c1-4e8c-8a70-fc6432b96da3}<23.9 && {89043bdc-a7c1-4e8c-8a70-fc6432b96da3}>1.7, !- Program Line 1 - SET {6780a9fc-4fbd-4e23-bf09-0a538045539d} = 29.4, !- Program Line 2 - SET {0b8ad742-0b4e-4fa4-abc2-b020861c1563} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {89043bdc-a7c1-4e8c-8a70-fc6432b96da3}<23.9 && {89043bdc-a7c1-4e8c-8a70-fc6432b96da3}>1.7, !- Program Line 4 - SET {6780a9fc-4fbd-4e23-bf09-0a538045539d} = 29.4, !- Program Line 5 - SET {0b8ad742-0b4e-4fa4-abc2-b020861c1563} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {89043bdc-a7c1-4e8c-8a70-fc6432b96da3}<23.9 && {89043bdc-a7c1-4e8c-8a70-fc6432b96da3}>1.7, !- Program Line 7 - SET {6780a9fc-4fbd-4e23-bf09-0a538045539d} = 29.4, !- Program Line 8 - SET {0b8ad742-0b4e-4fa4-abc2-b020861c1563} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {89043bdc-a7c1-4e8c-8a70-fc6432b96da3}<23.9 && {89043bdc-a7c1-4e8c-8a70-fc6432b96da3}>1.7, !- Program Line 10 - SET {6780a9fc-4fbd-4e23-bf09-0a538045539d} = 29.4, !- Program Line 11 - SET {0b8ad742-0b4e-4fa4-abc2-b020861c1563} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f7a04b8b-1402-41d2-9876-dd2827aa85a5}<23.9 && {f7a04b8b-1402-41d2-9876-dd2827aa85a5}>1.7, !- Program Line 1 + SET {b901c104-b80b-40a1-9611-9bfbb4762bae} = 29.4, !- Program Line 2 + SET {7de86148-5a04-45ea-b800-75c0a60054c9} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f7a04b8b-1402-41d2-9876-dd2827aa85a5}<23.9 && {f7a04b8b-1402-41d2-9876-dd2827aa85a5}>1.7, !- Program Line 4 + SET {b901c104-b80b-40a1-9611-9bfbb4762bae} = 29.4, !- Program Line 5 + SET {7de86148-5a04-45ea-b800-75c0a60054c9} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f7a04b8b-1402-41d2-9876-dd2827aa85a5}<23.9 && {f7a04b8b-1402-41d2-9876-dd2827aa85a5}>1.7, !- Program Line 7 + SET {b901c104-b80b-40a1-9611-9bfbb4762bae} = 29.4, !- Program Line 8 + SET {7de86148-5a04-45ea-b800-75c0a60054c9} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f7a04b8b-1402-41d2-9876-dd2827aa85a5}<23.9 && {f7a04b8b-1402-41d2-9876-dd2827aa85a5}>1.7, !- Program Line 10 + SET {b901c104-b80b-40a1-9611-9bfbb4762bae} = 29.4, !- Program Line 11 + SET {7de86148-5a04-45ea-b800-75c0a60054c9} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6780a9fc-4fbd-4e23-bf09-0a538045539d} = NULL, !- Program Line 14 - SET {0b8ad742-0b4e-4fa4-abc2-b020861c1563} = NULL, !- Program Line 15 + SET {b901c104-b80b-40a1-9611-9bfbb4762bae} = NULL, !- Program Line 14 + SET {7de86148-5a04-45ea-b800-75c0a60054c9} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b68109cc-a866-4954-afa3-5ad01975bd3b}<23.9 && {b68109cc-a866-4954-afa3-5ad01975bd3b}>1.7, !- Program Line 1 - SET {34adb52f-8cf1-42ed-bfe3-4022c49c02d1} = 29.4, !- Program Line 2 - SET {b233413c-c487-437f-b208-75ff83b0b289} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b68109cc-a866-4954-afa3-5ad01975bd3b}<23.9 && {b68109cc-a866-4954-afa3-5ad01975bd3b}>1.7, !- Program Line 4 - SET {34adb52f-8cf1-42ed-bfe3-4022c49c02d1} = 29.4, !- Program Line 5 - SET {b233413c-c487-437f-b208-75ff83b0b289} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b68109cc-a866-4954-afa3-5ad01975bd3b}<23.9 && {b68109cc-a866-4954-afa3-5ad01975bd3b}>1.7, !- Program Line 7 - SET {34adb52f-8cf1-42ed-bfe3-4022c49c02d1} = 29.4, !- Program Line 8 - SET {b233413c-c487-437f-b208-75ff83b0b289} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b68109cc-a866-4954-afa3-5ad01975bd3b}<23.9 && {b68109cc-a866-4954-afa3-5ad01975bd3b}>1.7, !- Program Line 10 - SET {34adb52f-8cf1-42ed-bfe3-4022c49c02d1} = 29.4, !- Program Line 11 - SET {b233413c-c487-437f-b208-75ff83b0b289} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {20010106-5db2-4d44-92c4-80c748c83ba4}<23.9 && {20010106-5db2-4d44-92c4-80c748c83ba4}>1.7, !- Program Line 1 + SET {b6695149-3ce7-4802-bb81-1fa79f6730e5} = 29.4, !- Program Line 2 + SET {f934c7fe-aa2c-4086-ab64-dd11651c7214} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {20010106-5db2-4d44-92c4-80c748c83ba4}<23.9 && {20010106-5db2-4d44-92c4-80c748c83ba4}>1.7, !- Program Line 4 + SET {b6695149-3ce7-4802-bb81-1fa79f6730e5} = 29.4, !- Program Line 5 + SET {f934c7fe-aa2c-4086-ab64-dd11651c7214} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {20010106-5db2-4d44-92c4-80c748c83ba4}<23.9 && {20010106-5db2-4d44-92c4-80c748c83ba4}>1.7, !- Program Line 7 + SET {b6695149-3ce7-4802-bb81-1fa79f6730e5} = 29.4, !- Program Line 8 + SET {f934c7fe-aa2c-4086-ab64-dd11651c7214} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {20010106-5db2-4d44-92c4-80c748c83ba4}<23.9 && {20010106-5db2-4d44-92c4-80c748c83ba4}>1.7, !- Program Line 10 + SET {b6695149-3ce7-4802-bb81-1fa79f6730e5} = 29.4, !- Program Line 11 + SET {f934c7fe-aa2c-4086-ab64-dd11651c7214} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {34adb52f-8cf1-42ed-bfe3-4022c49c02d1} = NULL, !- Program Line 14 - SET {b233413c-c487-437f-b208-75ff83b0b289} = NULL, !- Program Line 15 + SET {b6695149-3ce7-4802-bb81-1fa79f6730e5} = NULL, !- Program Line 14 + SET {f934c7fe-aa2c-4086-ab64-dd11651c7214} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -5611,7 +5611,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -7127,55 +7127,55 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000147}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000148}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000149}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000150}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000343}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000151}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000348}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000152}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000153}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000154}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000344}, !- Inlet Port {00000000-0000-0000-0017-000000000345}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000155}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000346}, !- Inlet Port {00000000-0000-0000-0017-000000000347}; !- Outlet Port @@ -8843,7 +8843,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -8858,7 +8858,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8867,7 +8867,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9699,7 +9699,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000024}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000057}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000058}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm index 5f9af1a7e0..c69b6a3383 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0066-000000000026}, !- Object Name + {00000000-0000-0000-0062-000000000023}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.902183614624489, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0066-000000000030}, !- Object Name + {00000000-0000-0000-0062-000000000024}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.198210559234802, !- Feature Value 1 @@ -32,66 +32,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0066-000000000027}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle - {00000000-0000-0000-0066-000000000028}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle - {00000000-0000-0000-0066-000000000029}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 178.22004670547969, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 6, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000006}, !- Handle {00000000-0000-0000-0013-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000007}, !- Handle + {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0013-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0066-000000000026}, !- Availability Schedule - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0062-000000000023}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -110,75 +62,9 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0066-000000000027}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0020-000000000185}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0020-000000000188}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0020-000000000187}, !- Demand Side Inlet Node A - {00000000-0000-0000-0020-000000000186}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0066-000000000028}, !- Availability Schedule - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0020-000000000293}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0020-000000000296}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0020-000000000295}, !- Demand Side Inlet Node A - {00000000-0000-0000-0020-000000000294}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000004}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3, !- Name - , !- Controller List Name - {00000000-0000-0000-0066-000000000029}, !- Availability Schedule - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0020-000000000401}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0020-000000000404}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0020-000000000403}, !- Demand Side Inlet Node A - {00000000-0000-0000-0020-000000000402}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0066-000000000030}, !- Availability Schedule + {00000000-0000-0000-0062-000000000024}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -203,8 +89,8 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0020-000000000084}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000613}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000614}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000289}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000290}, !- Relief Air Stream Node Name {00000000-0000-0000-0020-000000000083}; !- Return Air Stream Node Name OS:AirLoopHVAC:OutdoorAirSystem, @@ -214,43 +100,10 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0020-000000000166}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000619}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000620}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000295}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000296}, !- Relief Air Stream Node Name {00000000-0000-0000-0020-000000000170}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0025-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0020-000000000204}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000625}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000626}, !- Relief Air Stream Node Name - {00000000-0000-0000-0020-000000000208}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000004}, !- Handle - Air Loop HVAC Outdoor Air System 4, !- Name - {00000000-0000-0000-0025-000000000004}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0020-000000000312}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000631}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000632}, !- Relief Air Stream Node Name - {00000000-0000-0000-0020-000000000316}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000005}, !- Handle - Air Loop HVAC Outdoor Air System 5, !- Name - {00000000-0000-0000-0025-000000000005}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0020-000000000420}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000637}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000638}, !- Relief Air Stream Node Name - {00000000-0000-0000-0020-000000000424}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -263,39 +116,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0020-000000000153}, !- Outlet Node Name {00000000-0000-0000-0020-000000000181}; !- Inlet Node Name 1 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0020-000000000190}, !- Outlet Node Name - {00000000-0000-0000-0020-000000000219}, !- Inlet Node Name 1 - {00000000-0000-0000-0020-000000000233}, !- Inlet Node Name 2 - {00000000-0000-0000-0020-000000000247}, !- Inlet Node Name 3 - {00000000-0000-0000-0020-000000000261}, !- Inlet Node Name 4 - {00000000-0000-0000-0020-000000000275}, !- Inlet Node Name 5 - {00000000-0000-0000-0020-000000000289}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000004}, !- Handle - Air Loop HVAC Zone Mixer 4, !- Name - {00000000-0000-0000-0020-000000000298}, !- Outlet Node Name - {00000000-0000-0000-0020-000000000327}, !- Inlet Node Name 1 - {00000000-0000-0000-0020-000000000341}, !- Inlet Node Name 2 - {00000000-0000-0000-0020-000000000355}, !- Inlet Node Name 3 - {00000000-0000-0000-0020-000000000369}, !- Inlet Node Name 4 - {00000000-0000-0000-0020-000000000383}, !- Inlet Node Name 5 - {00000000-0000-0000-0020-000000000397}; !- Inlet Node Name 6 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000005}, !- Handle - Air Loop HVAC Zone Mixer 5, !- Name - {00000000-0000-0000-0020-000000000406}, !- Outlet Node Name - {00000000-0000-0000-0020-000000000435}, !- Inlet Node Name 1 - {00000000-0000-0000-0020-000000000449}, !- Inlet Node Name 2 - {00000000-0000-0000-0020-000000000463}, !- Inlet Node Name 3 - {00000000-0000-0000-0020-000000000477}, !- Inlet Node Name 4 - {00000000-0000-0000-0020-000000000491}, !- Inlet Node Name 5 - {00000000-0000-0000-0020-000000000505}; !- Inlet Node Name 6 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -308,43 +128,10 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0020-000000000152}, !- Inlet Node Name {00000000-0000-0000-0020-000000000182}; !- Outlet Node Name 1 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0020-000000000189}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000220}, !- Outlet Node Name 1 - {00000000-0000-0000-0020-000000000234}, !- Outlet Node Name 2 - {00000000-0000-0000-0020-000000000248}, !- Outlet Node Name 3 - {00000000-0000-0000-0020-000000000262}, !- Outlet Node Name 4 - {00000000-0000-0000-0020-000000000276}, !- Outlet Node Name 5 - {00000000-0000-0000-0020-000000000290}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000004}, !- Handle - Air Loop HVAC Zone Splitter 4, !- Name - {00000000-0000-0000-0020-000000000297}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000328}, !- Outlet Node Name 1 - {00000000-0000-0000-0020-000000000342}, !- Outlet Node Name 2 - {00000000-0000-0000-0020-000000000356}, !- Outlet Node Name 3 - {00000000-0000-0000-0020-000000000370}, !- Outlet Node Name 4 - {00000000-0000-0000-0020-000000000384}, !- Outlet Node Name 5 - {00000000-0000-0000-0020-000000000398}; !- Outlet Node Name 6 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000005}, !- Handle - Air Loop HVAC Zone Splitter 5, !- Name - {00000000-0000-0000-0020-000000000405}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000436}, !- Outlet Node Name 1 - {00000000-0000-0000-0020-000000000450}, !- Outlet Node Name 2 - {00000000-0000-0000-0020-000000000464}, !- Outlet Node Name 3 - {00000000-0000-0000-0020-000000000478}, !- Outlet Node Name 4 - {00000000-0000-0000-0020-000000000492}, !- Outlet Node Name 5 - {00000000-0000-0000-0020-000000000506}; !- Outlet Node Name 6 - OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000093}, !- Air Inlet Node Name {00000000-0000-0000-0020-000000000094}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -352,14 +139,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000183}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000012}, !- Reheat Coil Name + {00000000-0000-0000-0018-000000000002}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0020-000000000184}, !- Air Outlet Node Name @@ -370,511 +157,76 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000357}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000005}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000358}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000371}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000372}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000385}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000386}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000399}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000400}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000437}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000010}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000438}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000451}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000011}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000452}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000008}, !- Handle - Air Terminal Single Duct VAV Reheat 16, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000465}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000013}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000466}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000009}, !- Handle - Air Terminal Single Duct VAV Reheat 17, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000479}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000014}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000480}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000010}, !- Handle - Air Terminal Single Duct VAV Reheat 18, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000493}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000015}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000494}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000011}, !- Handle - Air Terminal Single Duct VAV Reheat 19, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000507}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000016}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000508}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000221}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000018}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000222}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000235}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000019}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000236}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000249}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000020}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000250}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 5, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000263}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000021}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000264}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000016}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000277}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000022}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000278}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000017}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000291}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000023}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000292}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000018}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000329}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000003}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000330}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0007-000000000019}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0020-000000000343}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000344}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0052-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0052-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0052-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000004}, !- Handle - Availability Manager Night Cycle 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0052-000000000013}, !- Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000014}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000015}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000005}, !- Handle - Availability Manager Night Cycle 5, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0052-000000000017}, !- Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000018}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000019}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0052-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name - {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name - {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000006}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000007}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000008}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000009}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Boiler:HotWater, {00000000-0000-0000-0010-000000000001}, !- Handle - Primary Boiler 8382kBtu/hr 0.9 Combustion Eff, !- Name + Primary Boiler 323kBtu/hr 0.9 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 2456409.84259427, !- Nominal Capacity {W} - 0.893, !- Nominal Thermal Efficiency + 94575.1619916586, !- Nominal Capacity {W} + 0.9, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0029-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} - 0.25, !- Minimum Part Load Ratio + , !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio {00000000-0000-0000-0020-000000000058}, !- Boiler Water Inlet Node Name {00000000-0000-0000-0020-000000000059}, !- Boiler Water Outlet Node Name 99, !- Water Outlet Upper Temperature Limit {C} - LeavingSetpointModulated, !- Boiler Flow Mode + ConstantFlow, !- Boiler Flow Mode 0, !- On Cycle Parasitic Electric Load {W} 0, !- Off Cycle Parasitic Fuel Load {W} 1, !- Sizing Factor @@ -925,7 +277,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000023}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000023}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -935,7 +287,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -945,7 +297,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -955,14 +307,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0013-000000000001}, !- Handle - Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton, !- Name - 1889395.58683074, !- Reference Capacity {W} - 6.0222602739726, !- Reference COP {W/W} + Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton, !- Name + 14417.1813010444, !- Reference Capacity {W} + 4.51476251604621, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -1004,9 +356,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0028-000000000011}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0030-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0028-000000000009}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0030-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -1041,8 +393,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0015-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 114kBtu/hr 9.26EER, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 115kBtu/hr 9.26EER, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.22027057931225, !- Rated COP {W/W} @@ -1077,7 +429,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0016-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -1092,64 +444,10 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0020-000000000196}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000197}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000205}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000202}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0020-000000000304}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000305}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000313}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000310}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Cooling Water 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0020-000000000412}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000413}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000421}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000418}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Gas, {00000000-0000-0000-0017-000000000001}, !- Handle Coil Heating Gas 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name 0.81, !- Gas Burner Efficiency AutoSize, !- Nominal Capacity {W} {00000000-0000-0000-0020-000000000082}, !- Air Inlet Node Name @@ -1162,7 +460,7 @@ OS:Coil:Heating:Gas, OS:Coil:Heating:Water, {00000000-0000-0000-0018-000000000001}, !- Handle Coil Heating Water 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} {00000000-0000-0000-0020-000000000155}, !- Water Inlet Node Name @@ -1179,1013 +477,401 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0018-000000000002}, !- Handle - Coil Heating Water 10, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000300}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000301}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000311}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000308}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000003}, !- Handle - Coil Heating Water 11, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + Coil Heating Water 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000318}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000319}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000172}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000173}, !- Water Outlet Node Name , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 439554.281616211, !- Rated Capacity {W} + 10239.3805503845, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} , !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000004}, !- Handle - Coil Heating Water 12, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000001}, !- Handle + Coil Heating Water Baseboard 1, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000332}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000333}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 27241.1902427673, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000086}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000087}; !- Water Outlet Node Name -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000005}, !- Handle - Coil Heating Water 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000346}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000347}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 228709.210968018, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000006}, !- Handle - Coil Heating Water 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000002}, !- Handle + Coil Heating Water Baseboard 2, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000360}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000361}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 198246.10748291, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000177}; !- Water Outlet Node Name -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000007}, !- Handle - Coil Heating Water 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000374}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000375}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 97192.5842285156, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000001}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000008}, !- Handle - Coil Heating Water 16, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000388}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000389}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 210911.380004883, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000002}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000009}, !- Handle - Coil Heating Water 17, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000408}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000409}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000419}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000416}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000003}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000010}, !- Handle - Coil Heating Water 18, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000426}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000427}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 43752.7582168579, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000004}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000011}, !- Handle - Coil Heating Water 19, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000440}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000441}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 2747.42392301559, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000005}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000012}, !- Handle - Coil Heating Water 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000172}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000173}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 6004.63063716888, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000006}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000013}, !- Handle - Coil Heating Water 20, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000454}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000455}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 22545.1478004456, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000007}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000014}, !- Handle - Coil Heating Water 21, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000468}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000469}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 19216.4242744446, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000008}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000015}, !- Handle - Coil Heating Water 22, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000482}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000483}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 11536.5702152252, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000009}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000016}, !- Handle - Coil Heating Water 23, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000496}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000497}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 21139.2771720886, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000010}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000017}, !- Handle - Coil Heating Water 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000192}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000193}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000203}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000200}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000011}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000018}, !- Handle - Coil Heating Water 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000210}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000211}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 27449.1485595703, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection +OS:Connection, + {00000000-0000-0000-0020-000000000012}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000019}, !- Handle - Coil Heating Water 5, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000224}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000225}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 2077.9649913311, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000020}, !- Handle - Coil Heating Water 6, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000238}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000239}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 15907.886838913, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000021}, !- Handle - Coil Heating Water 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000252}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000253}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 13996.6197967529, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000022}, !- Handle - Coil Heating Water 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000266}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000267}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 6564.07399177551, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000023}, !- Handle - Coil Heating Water 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000280}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000281}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 15649.9596118927, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000001}, !- Handle - Coil Heating Water Baseboard 1, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000086}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000087}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000002}, !- Handle - Coil Heating Water Baseboard 10, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000336}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000337}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000003}, !- Handle - Coil Heating Water Baseboard 11, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000350}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000351}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000004}, !- Handle - Coil Heating Water Baseboard 12, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000364}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000365}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000005}, !- Handle - Coil Heating Water Baseboard 13, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000378}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000379}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000006}, !- Handle - Coil Heating Water Baseboard 14, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000392}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000393}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000007}, !- Handle - Coil Heating Water Baseboard 15, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000430}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000431}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000008}, !- Handle - Coil Heating Water Baseboard 16, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000444}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000445}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000009}, !- Handle - Coil Heating Water Baseboard 17, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000458}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000459}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000010}, !- Handle - Coil Heating Water Baseboard 18, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000472}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000473}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000011}, !- Handle - Coil Heating Water Baseboard 19, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000486}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000487}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000012}, !- Handle - Coil Heating Water Baseboard 2, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000177}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000013}, !- Handle - Coil Heating Water Baseboard 20, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000500}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000501}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000014}, !- Handle - Coil Heating Water Baseboard 3, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000214}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000215}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000015}, !- Handle - Coil Heating Water Baseboard 4, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000228}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000229}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000016}, !- Handle - Coil Heating Water Baseboard 5, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000242}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000243}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000017}, !- Handle - Coil Heating Water Baseboard 6, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000256}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000257}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000018}, !- Handle - Coil Heating Water Baseboard 7, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000270}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000271}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000019}, !- Handle - Coil Heating Water Baseboard 8, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000284}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000285}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000020}, !- Handle - Coil Heating Water Baseboard 9, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000322}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000323}; !- Water Outlet Node Name +OS:Connection, + {00000000-0000-0000-0020-000000000013}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000001}, !- Handle + {00000000-0000-0000-0020-000000000014}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000002}, !- Handle + {00000000-0000-0000-0020-000000000015}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000003}, !- Handle + {00000000-0000-0000-0020-000000000016}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000004}, !- Handle + {00000000-0000-0000-0020-000000000017}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000005}, !- Handle + {00000000-0000-0000-0020-000000000018}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000006}, !- Handle + {00000000-0000-0000-0020-000000000019}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000007}, !- Handle + {00000000-0000-0000-0020-000000000020}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000008}, !- Handle + {00000000-0000-0000-0020-000000000021}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000009}, !- Handle + {00000000-0000-0000-0020-000000000022}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000010}, !- Handle + {00000000-0000-0000-0020-000000000023}, !- Handle , !- Source Object 11, !- Outlet Port , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000011}, !- Handle - , !- Source Object + {00000000-0000-0000-0020-000000000024}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Source Object 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000012}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000013}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000014}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000015}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000016}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000017}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000018}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000019}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000020}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000021}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000022}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000023}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000024}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000019}, !- Target Object + {00000000-0000-0000-0049-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000025}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- Source Object + {00000000-0000-0000-0090-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000003}, !- Target Object + {00000000-0000-0000-0049-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000026}, !- Handle - {00000000-0000-0000-0094-000000000022}, !- Source Object + {00000000-0000-0000-0090-000000000022}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000043}, !- Target Object + {00000000-0000-0000-0049-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000027}, !- Handle - {00000000-0000-0000-0094-000000000003}, !- Source Object + {00000000-0000-0000-0090-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000005}, !- Target Object + {00000000-0000-0000-0049-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000028}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- Source Object + {00000000-0000-0000-0090-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000031}, !- Target Object + {00000000-0000-0000-0049-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000029}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- Source Object + {00000000-0000-0000-0090-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000033}, !- Target Object + {00000000-0000-0000-0049-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000030}, !- Handle - {00000000-0000-0000-0094-000000000005}, !- Source Object + {00000000-0000-0000-0090-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000009}, !- Target Object + {00000000-0000-0000-0049-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000031}, !- Handle - {00000000-0000-0000-0094-000000000006}, !- Source Object + {00000000-0000-0000-0090-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000011}, !- Target Object + {00000000-0000-0000-0049-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000032}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- Source Object + {00000000-0000-0000-0090-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000035}, !- Target Object + {00000000-0000-0000-0049-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000033}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- Source Object + {00000000-0000-0000-0090-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000021}, !- Target Object + {00000000-0000-0000-0049-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000034}, !- Handle - {00000000-0000-0000-0094-000000000019}, !- Source Object + {00000000-0000-0000-0090-000000000019}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000037}, !- Target Object + {00000000-0000-0000-0049-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000035}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- Source Object + {00000000-0000-0000-0090-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000023}, !- Target Object + {00000000-0000-0000-0049-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000036}, !- Handle - {00000000-0000-0000-0094-000000000004}, !- Source Object + {00000000-0000-0000-0090-000000000004}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000007}, !- Target Object + {00000000-0000-0000-0049-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000037}, !- Handle - {00000000-0000-0000-0094-000000000002}, !- Source Object + {00000000-0000-0000-0090-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000004}, !- Target Object + {00000000-0000-0000-0049-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000038}, !- Handle - {00000000-0000-0000-0094-000000000007}, !- Source Object + {00000000-0000-0000-0090-000000000007}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000013}, !- Target Object + {00000000-0000-0000-0049-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000039}, !- Handle - {00000000-0000-0000-0094-000000000020}, !- Source Object + {00000000-0000-0000-0090-000000000020}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000039}, !- Target Object + {00000000-0000-0000-0049-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000040}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- Source Object + {00000000-0000-0000-0090-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000025}, !- Target Object + {00000000-0000-0000-0049-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000041}, !- Handle - {00000000-0000-0000-0094-000000000021}, !- Source Object + {00000000-0000-0000-0090-000000000021}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000041}, !- Target Object + {00000000-0000-0000-0049-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000042}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- Source Object + {00000000-0000-0000-0090-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000027}, !- Target Object + {00000000-0000-0000-0049-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000043}, !- Handle - {00000000-0000-0000-0094-000000000008}, !- Source Object + {00000000-0000-0000-0090-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000015}, !- Target Object + {00000000-0000-0000-0049-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000044}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- Source Object + {00000000-0000-0000-0090-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000029}, !- Target Object + {00000000-0000-0000-0049-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000045}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- Source Object + {00000000-0000-0000-0090-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000017}, !- Target Object + {00000000-0000-0000-0049-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000046}, !- Handle - {00000000-0000-0000-0094-000000000023}, !- Source Object + {00000000-0000-0000-0090-000000000023}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000280}, !- Target Object + {00000000-0000-0000-0049-000000000133}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000047}, !- Handle - {00000000-0000-0000-0058-000000000003}, !- Source Object + {00000000-0000-0000-0054-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0053-000000000214}, !- Target Object + {00000000-0000-0000-0049-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000048}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000260}, !- Target Object + {00000000-0000-0000-0049-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000049}, !- Handle - {00000000-0000-0000-0053-000000000215}, !- Source Object + {00000000-0000-0000-0049-000000000071}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000003}, !- Target Object + {00000000-0000-0000-0054-000000000003}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000050}, !- Handle - {00000000-0000-0000-0058-000000000003}, !- Source Object + {00000000-0000-0000-0054-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000212}, !- Target Object + {00000000-0000-0000-0049-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000051}, !- Handle - {00000000-0000-0000-0053-000000000212}, !- Source Object + {00000000-0000-0000-0049-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000002}, !- Target Object 2; !- Inlet Port @@ -2194,47 +880,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000052}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000151}, !- Target Object + {00000000-0000-0000-0049-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000053}, !- Handle {00000000-0000-0000-0021-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000213}, !- Target Object + {00000000-0000-0000-0049-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000054}, !- Handle - {00000000-0000-0000-0053-000000000213}, !- Source Object + {00000000-0000-0000-0049-000000000069}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000003}, !- Target Object + {00000000-0000-0000-0054-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000055}, !- Handle - {00000000-0000-0000-0053-000000000214}, !- Source Object + {00000000-0000-0000-0049-000000000070}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0061-000000000001}, !- Target Object + {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000056}, !- Handle - {00000000-0000-0000-0061-000000000001}, !- Source Object + {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000266}, !- Target Object + {00000000-0000-0000-0049-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000057}, !- Handle - {00000000-0000-0000-0053-000000000266}, !- Source Object + {00000000-0000-0000-0049-000000000122}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000058}, !- Handle - {00000000-0000-0000-0053-000000000260}, !- Source Object + {00000000-0000-0000-0049-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000001}, !- Target Object 11; !- Inlet Port @@ -2243,12 +929,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000059}, !- Handle {00000000-0000-0000-0010-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0053-000000000261}, !- Target Object + {00000000-0000-0000-0049-000000000117}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000060}, !- Handle - {00000000-0000-0000-0053-000000000261}, !- Source Object + {00000000-0000-0000-0049-000000000117}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 3; !- Inlet Port @@ -2257,12 +943,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000061}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000269}, !- Target Object + {00000000-0000-0000-0049-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000062}, !- Handle - {00000000-0000-0000-0053-000000000269}, !- Source Object + {00000000-0000-0000-0049-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000002}, !- Target Object 11; !- Inlet Port @@ -2271,12 +957,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000063}, !- Handle {00000000-0000-0000-0010-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0053-000000000270}, !- Target Object + {00000000-0000-0000-0049-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000064}, !- Handle - {00000000-0000-0000-0053-000000000270}, !- Source Object + {00000000-0000-0000-0049-000000000126}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 4; !- Inlet Port @@ -2285,26 +971,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000065}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0053-000000000245}, !- Target Object + {00000000-0000-0000-0049-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000066}, !- Handle - {00000000-0000-0000-0053-000000000245}, !- Source Object + {00000000-0000-0000-0049-000000000101}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000001}, !- Target Object + {00000000-0000-0000-0053-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000067}, !- Handle - {00000000-0000-0000-0057-000000000001}, !- Source Object + {00000000-0000-0000-0053-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000246}, !- Target Object + {00000000-0000-0000-0049-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000068}, !- Handle - {00000000-0000-0000-0053-000000000246}, !- Source Object + {00000000-0000-0000-0049-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 5; !- Inlet Port @@ -2313,33 +999,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000069}, !- Handle {00000000-0000-0000-0021-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000248}, !- Target Object + {00000000-0000-0000-0049-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000070}, !- Handle - {00000000-0000-0000-0053-000000000248}, !- Source Object + {00000000-0000-0000-0049-000000000104}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000003}, !- Target Object + {00000000-0000-0000-0053-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000071}, !- Handle - {00000000-0000-0000-0057-000000000003}, !- Source Object + {00000000-0000-0000-0053-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000215}, !- Target Object + {00000000-0000-0000-0049-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000072}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0053-000000000286}, !- Target Object + {00000000-0000-0000-0049-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000073}, !- Handle - {00000000-0000-0000-0053-000000000287}, !- Source Object + {00000000-0000-0000-0049-000000000140}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -2348,19 +1034,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000074}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000281}, !- Target Object + {00000000-0000-0000-0049-000000000134}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000075}, !- Handle - {00000000-0000-0000-0053-000000000282}, !- Source Object + {00000000-0000-0000-0049-000000000135}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000076}, !- Handle - {00000000-0000-0000-0053-000000000281}, !- Source Object + {00000000-0000-0000-0049-000000000134}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -2369,47 +1055,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000077}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000282}, !- Target Object + {00000000-0000-0000-0049-000000000135}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000078}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object + {00000000-0000-0000-0039-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0053-000000000287}, !- Target Object + {00000000-0000-0000-0049-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000079}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0053-000000000100}, !- Target Object + {00000000-0000-0000-0049-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000080}, !- Handle - {00000000-0000-0000-0053-000000000100}, !- Source Object + {00000000-0000-0000-0049-000000000037}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object + {00000000-0000-0000-0039-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000081}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0053-000000000191}, !- Target Object + {00000000-0000-0000-0049-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000082}, !- Handle - {00000000-0000-0000-0053-000000000191}, !- Source Object + {00000000-0000-0000-0049-000000000047}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000083}, !- Handle - {00000000-0000-0000-0053-000000000286}, !- Source Object + {00000000-0000-0000-0049-000000000139}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -2418,19 +1104,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000084}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0053-000000000283}, !- Target Object + {00000000-0000-0000-0049-000000000136}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000085}, !- Handle - {00000000-0000-0000-0053-000000000283}, !- Source Object + {00000000-0000-0000-0049-000000000136}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000086}, !- Handle - {00000000-0000-0000-0053-000000000151}, !- Source Object + {00000000-0000-0000-0049-000000000043}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 9; !- Inlet Port @@ -2439,33 +1125,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000087}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0053-000000000152}, !- Target Object + {00000000-0000-0000-0049-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000088}, !- Handle - {00000000-0000-0000-0053-000000000152}, !- Source Object + {00000000-0000-0000-0049-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000089}, !- Handle - {00000000-0000-0000-0053-000000000045}, !- Source Object + {00000000-0000-0000-0049-000000000027}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0059-000000000067}, !- Target Object + {00000000-0000-0000-0055-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000090}, !- Handle - {00000000-0000-0000-0059-000000000069}, !- Source Object + {00000000-0000-0000-0055-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000279}, !- Target Object + {00000000-0000-0000-0049-000000000132}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000091}, !- Handle - {00000000-0000-0000-0053-000000000279}, !- Source Object + {00000000-0000-0000-0049-000000000132}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -2474,12 +1160,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000092}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000044}, !- Target Object + {00000000-0000-0000-0049-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000093}, !- Handle - {00000000-0000-0000-0053-000000000044}, !- Source Object + {00000000-0000-0000-0049-000000000026}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -2488,40 +1174,40 @@ OS:Connection, {00000000-0000-0000-0020-000000000094}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000045}, !- Target Object + {00000000-0000-0000-0049-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000095}, !- Handle - {00000000-0000-0000-0058-000000000001}, !- Source Object + {00000000-0000-0000-0054-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0053-000000000086}, !- Target Object + {00000000-0000-0000-0049-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000096}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000264}, !- Target Object + {00000000-0000-0000-0049-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000097}, !- Handle - {00000000-0000-0000-0053-000000000087}, !- Source Object + {00000000-0000-0000-0049-000000000033}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000001}, !- Target Object + {00000000-0000-0000-0054-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000098}, !- Handle - {00000000-0000-0000-0058-000000000001}, !- Source Object + {00000000-0000-0000-0054-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000084}, !- Target Object + {00000000-0000-0000-0049-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000099}, !- Handle - {00000000-0000-0000-0053-000000000084}, !- Source Object + {00000000-0000-0000-0049-000000000030}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000004}, !- Target Object 2; !- Inlet Port @@ -2530,47 +1216,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000100}, !- Handle {00000000-0000-0000-0022-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000088}, !- Target Object + {00000000-0000-0000-0049-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000101}, !- Handle {00000000-0000-0000-0021-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000085}, !- Target Object + {00000000-0000-0000-0049-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000102}, !- Handle - {00000000-0000-0000-0053-000000000085}, !- Source Object + {00000000-0000-0000-0049-000000000031}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000001}, !- Target Object + {00000000-0000-0000-0054-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000103}, !- Handle - {00000000-0000-0000-0053-000000000086}, !- Source Object + {00000000-0000-0000-0049-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0061-000000000002}, !- Target Object + {00000000-0000-0000-0057-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000104}, !- Handle - {00000000-0000-0000-0061-000000000002}, !- Source Object + {00000000-0000-0000-0057-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000267}, !- Target Object + {00000000-0000-0000-0049-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000105}, !- Handle - {00000000-0000-0000-0053-000000000267}, !- Source Object + {00000000-0000-0000-0049-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000106}, !- Handle - {00000000-0000-0000-0053-000000000264}, !- Source Object + {00000000-0000-0000-0049-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 15; !- Inlet Port @@ -2579,12 +1265,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000107}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0053-000000000265}, !- Target Object + {00000000-0000-0000-0049-000000000121}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000108}, !- Handle - {00000000-0000-0000-0053-000000000265}, !- Source Object + {00000000-0000-0000-0049-000000000121}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 3; !- Inlet Port @@ -2593,12 +1279,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000109}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000273}, !- Target Object + {00000000-0000-0000-0049-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000110}, !- Handle - {00000000-0000-0000-0053-000000000273}, !- Source Object + {00000000-0000-0000-0049-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 15; !- Inlet Port @@ -2607,12 +1293,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000111}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0053-000000000274}, !- Target Object + {00000000-0000-0000-0049-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000112}, !- Handle - {00000000-0000-0000-0053-000000000274}, !- Source Object + {00000000-0000-0000-0049-000000000130}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 4; !- Inlet Port @@ -2621,26 +1307,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000113}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0053-000000000249}, !- Target Object + {00000000-0000-0000-0049-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000114}, !- Handle - {00000000-0000-0000-0053-000000000249}, !- Source Object + {00000000-0000-0000-0049-000000000105}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000004}, !- Target Object + {00000000-0000-0000-0053-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000115}, !- Handle - {00000000-0000-0000-0057-000000000004}, !- Source Object + {00000000-0000-0000-0053-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000250}, !- Target Object + {00000000-0000-0000-0049-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000116}, !- Handle - {00000000-0000-0000-0053-000000000250}, !- Source Object + {00000000-0000-0000-0049-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 5; !- Inlet Port @@ -2649,54 +1335,54 @@ OS:Connection, {00000000-0000-0000-0020-000000000117}, !- Handle {00000000-0000-0000-0021-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000251}, !- Target Object + {00000000-0000-0000-0049-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000118}, !- Handle - {00000000-0000-0000-0053-000000000251}, !- Source Object + {00000000-0000-0000-0049-000000000107}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000005}, !- Target Object + {00000000-0000-0000-0053-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000119}, !- Handle - {00000000-0000-0000-0057-000000000005}, !- Source Object + {00000000-0000-0000-0053-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000087}, !- Target Object + {00000000-0000-0000-0049-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000120}, !- Handle - {00000000-0000-0000-0058-000000000002}, !- Source Object + {00000000-0000-0000-0054-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0053-000000000194}, !- Target Object + {00000000-0000-0000-0049-000000000050}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000121}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000196}, !- Target Object + {00000000-0000-0000-0049-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000122}, !- Handle - {00000000-0000-0000-0053-000000000195}, !- Source Object + {00000000-0000-0000-0049-000000000051}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000002}, !- Target Object + {00000000-0000-0000-0054-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000123}, !- Handle - {00000000-0000-0000-0058-000000000002}, !- Source Object + {00000000-0000-0000-0054-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000192}, !- Target Object + {00000000-0000-0000-0049-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000124}, !- Handle - {00000000-0000-0000-0053-000000000192}, !- Source Object + {00000000-0000-0000-0049-000000000048}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000006}, !- Target Object 2; !- Inlet Port @@ -2705,47 +1391,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000125}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000262}, !- Target Object + {00000000-0000-0000-0049-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000126}, !- Handle {00000000-0000-0000-0021-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000193}, !- Target Object + {00000000-0000-0000-0049-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000127}, !- Handle - {00000000-0000-0000-0053-000000000193}, !- Source Object + {00000000-0000-0000-0049-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000002}, !- Target Object + {00000000-0000-0000-0054-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000128}, !- Handle - {00000000-0000-0000-0053-000000000194}, !- Source Object + {00000000-0000-0000-0049-000000000050}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0061-000000000003}, !- Target Object + {00000000-0000-0000-0057-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000129}, !- Handle - {00000000-0000-0000-0061-000000000003}, !- Source Object + {00000000-0000-0000-0057-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000268}, !- Target Object + {00000000-0000-0000-0049-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000130}, !- Handle - {00000000-0000-0000-0053-000000000268}, !- Source Object + {00000000-0000-0000-0049-000000000124}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000131}, !- Handle - {00000000-0000-0000-0053-000000000196}, !- Source Object + {00000000-0000-0000-0049-000000000052}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0027-000000000001}, !- Target Object 2; !- Inlet Port @@ -2754,12 +1440,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000132}, !- Handle {00000000-0000-0000-0027-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000197}, !- Target Object + {00000000-0000-0000-0049-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000133}, !- Handle - {00000000-0000-0000-0053-000000000197}, !- Source Object + {00000000-0000-0000-0049-000000000053}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 3; !- Inlet Port @@ -2768,26 +1454,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000134}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000252}, !- Target Object + {00000000-0000-0000-0049-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000135}, !- Handle - {00000000-0000-0000-0053-000000000252}, !- Source Object + {00000000-0000-0000-0049-000000000108}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000006}, !- Target Object + {00000000-0000-0000-0053-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000136}, !- Handle - {00000000-0000-0000-0057-000000000006}, !- Source Object + {00000000-0000-0000-0053-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000253}, !- Target Object + {00000000-0000-0000-0049-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000137}, !- Handle - {00000000-0000-0000-0053-000000000253}, !- Source Object + {00000000-0000-0000-0049-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 4; !- Inlet Port @@ -2796,26 +1482,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000138}, !- Handle {00000000-0000-0000-0021-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000254}, !- Target Object + {00000000-0000-0000-0049-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000139}, !- Handle - {00000000-0000-0000-0053-000000000254}, !- Source Object + {00000000-0000-0000-0049-000000000110}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000007}, !- Target Object + {00000000-0000-0000-0053-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000140}, !- Handle - {00000000-0000-0000-0057-000000000007}, !- Source Object + {00000000-0000-0000-0053-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000195}, !- Target Object + {00000000-0000-0000-0049-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000141}, !- Handle - {00000000-0000-0000-0053-000000000262}, !- Source Object + {00000000-0000-0000-0049-000000000118}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 17; !- Inlet Port @@ -2824,12 +1510,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000142}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0053-000000000263}, !- Target Object + {00000000-0000-0000-0049-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000143}, !- Handle - {00000000-0000-0000-0053-000000000263}, !- Source Object + {00000000-0000-0000-0049-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 3; !- Inlet Port @@ -2838,12 +1524,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000144}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000271}, !- Target Object + {00000000-0000-0000-0049-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000145}, !- Handle - {00000000-0000-0000-0053-000000000271}, !- Source Object + {00000000-0000-0000-0049-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 17; !- Inlet Port @@ -2852,47 +1538,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000146}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0053-000000000272}, !- Target Object + {00000000-0000-0000-0049-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000147}, !- Handle - {00000000-0000-0000-0053-000000000272}, !- Source Object + {00000000-0000-0000-0049-000000000128}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000148}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0053-000000000316}, !- Target Object + {00000000-0000-0000-0049-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000149}, !- Handle - {00000000-0000-0000-0053-000000000317}, !- Source Object + {00000000-0000-0000-0049-000000000149}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000150}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- Source Object + {00000000-0000-0000-0002-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000311}, !- Target Object + {00000000-0000-0000-0049-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000151}, !- Handle - {00000000-0000-0000-0053-000000000312}, !- Source Object + {00000000-0000-0000-0049-000000000144}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000005}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000152}, !- Handle - {00000000-0000-0000-0053-000000000311}, !- Source Object + {00000000-0000-0000-0049-000000000143}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -2901,19 +1587,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000153}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000312}, !- Target Object + {00000000-0000-0000-0049-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000154}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0053-000000000101}, !- Target Object + {00000000-0000-0000-0049-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000155}, !- Handle - {00000000-0000-0000-0053-000000000101}, !- Source Object + {00000000-0000-0000-0049-000000000038}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -2922,19 +1608,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000156}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0053-000000000103}, !- Target Object + {00000000-0000-0000-0049-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000157}, !- Handle - {00000000-0000-0000-0053-000000000103}, !- Source Object + {00000000-0000-0000-0049-000000000040}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000158}, !- Handle - {00000000-0000-0000-0053-000000000088}, !- Source Object + {00000000-0000-0000-0049-000000000034}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 10; !- Inlet Port @@ -2943,47 +1629,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000159}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0053-000000000090}, !- Target Object + {00000000-0000-0000-0049-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000160}, !- Handle - {00000000-0000-0000-0053-000000000090}, !- Source Object + {00000000-0000-0000-0049-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000161}, !- Handle - {00000000-0000-0000-0044-000000000008}, !- Source Object + {00000000-0000-0000-0040-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000317}, !- Target Object + {00000000-0000-0000-0049-000000000149}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000162}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0053-000000000102}, !- Target Object + {00000000-0000-0000-0049-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000163}, !- Handle - {00000000-0000-0000-0053-000000000102}, !- Source Object + {00000000-0000-0000-0049-000000000039}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000008}, !- Target Object + {00000000-0000-0000-0040-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000164}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0053-000000000089}, !- Target Object + {00000000-0000-0000-0049-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000165}, !- Handle - {00000000-0000-0000-0053-000000000089}, !- Source Object + {00000000-0000-0000-0049-000000000035}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 7; !- Inlet Port @@ -2992,33 +1678,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000166}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0053-000000000313}, !- Target Object + {00000000-0000-0000-0049-000000000145}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000167}, !- Handle - {00000000-0000-0000-0053-000000000313}, !- Source Object + {00000000-0000-0000-0049-000000000145}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000168}, !- Handle - {00000000-0000-0000-0053-000000000316}, !- Source Object + {00000000-0000-0000-0049-000000000148}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000004}, !- Target Object + {00000000-0000-0000-0040-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000169}, !- Handle - {00000000-0000-0000-0044-000000000004}, !- Source Object + {00000000-0000-0000-0040-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000278}, !- Target Object + {00000000-0000-0000-0049-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000170}, !- Handle - {00000000-0000-0000-0053-000000000278}, !- Source Object + {00000000-0000-0000-0049-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port @@ -3027,26 +1713,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000171}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0053-000000000126}, !- Target Object + {00000000-0000-0000-0049-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000172}, !- Handle - {00000000-0000-0000-0053-000000000126}, !- Source Object + {00000000-0000-0000-0049-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000012}, !- Target Object + {00000000-0000-0000-0018-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000173}, !- Handle - {00000000-0000-0000-0018-000000000012}, !- Source Object + {00000000-0000-0000-0018-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0053-000000000127}, !- Target Object + {00000000-0000-0000-0049-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000174}, !- Handle - {00000000-0000-0000-0053-000000000127}, !- Source Object + {00000000-0000-0000-0049-000000000042}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 5; !- Inlet Port @@ -3055,47 +1741,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000175}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0053-000000000173}, !- Target Object + {00000000-0000-0000-0049-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000176}, !- Handle - {00000000-0000-0000-0053-000000000173}, !- Source Object + {00000000-0000-0000-0049-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000012}, !- Target Object + {00000000-0000-0000-0019-000000000002}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000177}, !- Handle - {00000000-0000-0000-0019-000000000012}, !- Source Object + {00000000-0000-0000-0019-000000000002}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0053-000000000174}, !- Target Object + {00000000-0000-0000-0049-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000178}, !- Handle - {00000000-0000-0000-0053-000000000174}, !- Source Object + {00000000-0000-0000-0049-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000179}, !- Handle - {00000000-0000-0000-0053-000000000047}, !- Source Object + {00000000-0000-0000-0049-000000000029}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0059-000000000037}, !- Target Object + {00000000-0000-0000-0055-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000180}, !- Handle - {00000000-0000-0000-0059-000000000039}, !- Source Object + {00000000-0000-0000-0055-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0053-000000000006}, !- Target Object + {00000000-0000-0000-0049-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000181}, !- Handle - {00000000-0000-0000-0053-000000000006}, !- Source Object + {00000000-0000-0000-0049-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -3104,12 +1790,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000182}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000046}, !- Target Object + {00000000-0000-0000-0049-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000183}, !- Handle - {00000000-0000-0000-0053-000000000046}, !- Source Object + {00000000-0000-0000-0049-000000000028}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -3118,7773 +1804,3375 @@ OS:Connection, {00000000-0000-0000-0020-000000000184}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0053-000000000047}, !- Target Object + {00000000-0000-0000-0049-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000185}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0053-000000000295}, !- Target Object + {00000000-0000-0000-0054-000000000004}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0049-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000186}, !- Handle - {00000000-0000-0000-0053-000000000296}, !- Source Object + {00000000-0000-0000-0022-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0049-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000187}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000290}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000076}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000004}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000188}, !- Handle - {00000000-0000-0000-0053-000000000291}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0054-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000073}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000189}, !- Handle - {00000000-0000-0000-0053-000000000290}, !- Source Object + {00000000-0000-0000-0049-000000000073}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000190}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000291}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000191}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000136}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000004}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000192}, !- Handle - {00000000-0000-0000-0053-000000000136}, !- Source Object + {00000000-0000-0000-0049-000000000075}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000017}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0056-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000193}, !- Handle - {00000000-0000-0000-0018-000000000017}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000138}, !- Target Object + {00000000-0000-0000-0056-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000194}, !- Handle - {00000000-0000-0000-0053-000000000138}, !- Source Object + {00000000-0000-0000-0049-000000000072}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0022-000000000007}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000195}, !- Handle - {00000000-0000-0000-0022-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000091}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000001}, !- Target Object + 31; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000196}, !- Handle - {00000000-0000-0000-0053-000000000091}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0094-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0049-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000197}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000093}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000198}, !- Handle - {00000000-0000-0000-0053-000000000093}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000004}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0022-000000000007}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000111}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000199}, !- Handle - {00000000-0000-0000-0044-000000000005}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000296}, !- Target Object + {00000000-0000-0000-0049-000000000111}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000200}, !- Handle - {00000000-0000-0000-0018-000000000017}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000137}, !- Target Object + {00000000-0000-0000-0053-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000201}, !- Handle - {00000000-0000-0000-0053-000000000137}, !- Source Object + {00000000-0000-0000-0049-000000000112}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000005}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000202}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000092}, !- Target Object + {00000000-0000-0000-0049-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000203}, !- Handle - {00000000-0000-0000-0053-000000000092}, !- Source Object + {00000000-0000-0000-0053-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000017}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0049-000000000114}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000204}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000292}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000205}, !- Handle - {00000000-0000-0000-0053-000000000292}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0021-000000000007}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000115}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000206}, !- Handle - {00000000-0000-0000-0053-000000000295}, !- Source Object + {00000000-0000-0000-0049-000000000115}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0044-000000000001}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0053-000000000010}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000207}, !- Handle - {00000000-0000-0000-0044-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000275}, !- Target Object + {00000000-0000-0000-0053-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000208}, !- Handle - {00000000-0000-0000-0053-000000000275}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000103}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000209}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000139}, !- Target Object + {00000000-0000-0000-0049-000000000103}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000210}, !- Handle - {00000000-0000-0000-0053-000000000139}, !- Source Object + {00000000-0000-0000-0053-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000018}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0049-000000000074}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000211}, !- Handle - {00000000-0000-0000-0018-000000000018}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000140}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000212}, !- Handle - {00000000-0000-0000-0053-000000000140}, !- Source Object + {00000000-0000-0000-0049-000000000054}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0096-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000213}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0053-000000000177}, !- Target Object + {00000000-0000-0000-0096-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000214}, !- Handle - {00000000-0000-0000-0053-000000000177}, !- Source Object + {00000000-0000-0000-0049-000000000055}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000014}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000215}, !- Handle - {00000000-0000-0000-0019-000000000014}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000178}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000056}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000216}, !- Handle - {00000000-0000-0000-0053-000000000178}, !- Source Object + {00000000-0000-0000-0049-000000000056}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0096-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000217}, !- Handle - {00000000-0000-0000-0053-000000000069}, !- Source Object + {00000000-0000-0000-0096-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0059-000000000043}, !- Target Object + {00000000-0000-0000-0049-000000000057}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000218}, !- Handle - {00000000-0000-0000-0059-000000000045}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000012}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000219}, !- Handle - {00000000-0000-0000-0053-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000058}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000220}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0049-000000000058}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000068}, !- Target Object + {00000000-0000-0000-0096-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000221}, !- Handle - {00000000-0000-0000-0053-000000000068}, !- Source Object + {00000000-0000-0000-0096-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000012}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0049-000000000059}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000222}, !- Handle - {00000000-0000-0000-0007-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000069}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000223}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000141}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000224}, !- Handle - {00000000-0000-0000-0053-000000000141}, !- Source Object + {00000000-0000-0000-0049-000000000060}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000019}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0096-000000000004}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000225}, !- Handle - {00000000-0000-0000-0018-000000000019}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000142}, !- Target Object + {00000000-0000-0000-0096-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000226}, !- Handle - {00000000-0000-0000-0053-000000000142}, !- Source Object + {00000000-0000-0000-0049-000000000061}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000227}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000179}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0049-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000228}, !- Handle - {00000000-0000-0000-0053-000000000179}, !- Source Object + {00000000-0000-0000-0049-000000000062}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000015}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0096-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000229}, !- Handle - {00000000-0000-0000-0019-000000000015}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000180}, !- Target Object + {00000000-0000-0000-0096-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000230}, !- Handle - {00000000-0000-0000-0053-000000000180}, !- Source Object + {00000000-0000-0000-0049-000000000063}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 11; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000231}, !- Handle - {00000000-0000-0000-0053-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000019}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0049-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000232}, !- Handle - {00000000-0000-0000-0059-000000000021}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000008}, !- Target Object + {00000000-0000-0000-0049-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000233}, !- Handle - {00000000-0000-0000-0053-000000000008}, !- Source Object + {00000000-0000-0000-0096-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0049-000000000065}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000234}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000070}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000235}, !- Handle - {00000000-0000-0000-0053-000000000070}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000013}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0049-000000000066}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000236}, !- Handle - {00000000-0000-0000-0007-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000071}, !- Target Object + {00000000-0000-0000-0049-000000000066}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000237}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000143}, !- Target Object + {00000000-0000-0000-0096-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000238}, !- Handle - {00000000-0000-0000-0053-000000000143}, !- Source Object + {00000000-0000-0000-0049-000000000067}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000020}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000239}, !- Handle - {00000000-0000-0000-0018-000000000020}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000144}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000240}, !- Handle - {00000000-0000-0000-0053-000000000144}, !- Source Object + {00000000-0000-0000-0049-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0096-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000241}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000181}, !- Target Object + {00000000-0000-0000-0096-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000242}, !- Handle - {00000000-0000-0000-0053-000000000181}, !- Source Object + {00000000-0000-0000-0049-000000000078}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000016}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000243}, !- Handle - {00000000-0000-0000-0019-000000000016}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000182}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000244}, !- Handle - {00000000-0000-0000-0053-000000000182}, !- Source Object + {00000000-0000-0000-0049-000000000079}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 13; !- Inlet Port + {00000000-0000-0000-0096-000000000009}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000245}, !- Handle - {00000000-0000-0000-0053-000000000073}, !- Source Object + {00000000-0000-0000-0096-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0059-000000000064}, !- Target Object + {00000000-0000-0000-0049-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000246}, !- Handle - {00000000-0000-0000-0059-000000000066}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000016}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000247}, !- Handle - {00000000-0000-0000-0053-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0022-000000000008}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000081}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000248}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000072}, !- Target Object + {00000000-0000-0000-0049-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000249}, !- Handle - {00000000-0000-0000-0053-000000000072}, !- Source Object + {00000000-0000-0000-0096-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000014}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0049-000000000082}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000250}, !- Handle - {00000000-0000-0000-0007-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000251}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object + {00000000-0000-0000-0022-000000000008}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0053-000000000145}, !- Target Object + {00000000-0000-0000-0049-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000252}, !- Handle - {00000000-0000-0000-0053-000000000145}, !- Source Object + {00000000-0000-0000-0049-000000000083}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000021}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0096-000000000011}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000253}, !- Handle - {00000000-0000-0000-0018-000000000021}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000146}, !- Target Object + {00000000-0000-0000-0096-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000254}, !- Handle - {00000000-0000-0000-0053-000000000146}, !- Source Object + {00000000-0000-0000-0049-000000000084}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object + {00000000-0000-0000-0021-000000000008}, !- Target Object 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000255}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object + {00000000-0000-0000-0022-000000000008}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0053-000000000183}, !- Target Object + {00000000-0000-0000-0049-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000256}, !- Handle - {00000000-0000-0000-0053-000000000183}, !- Source Object + {00000000-0000-0000-0049-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000017}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0096-000000000012}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000257}, !- Handle - {00000000-0000-0000-0019-000000000017}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000184}, !- Target Object + {00000000-0000-0000-0096-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000258}, !- Handle - {00000000-0000-0000-0053-000000000184}, !- Source Object + {00000000-0000-0000-0049-000000000086}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object + {00000000-0000-0000-0021-000000000008}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000259}, !- Handle - {00000000-0000-0000-0053-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000022}, !- Target Object + {00000000-0000-0000-0022-000000000008}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0049-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000260}, !- Handle - {00000000-0000-0000-0059-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000261}, !- Handle - {00000000-0000-0000-0053-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000262}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000074}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000263}, !- Handle - {00000000-0000-0000-0053-000000000074}, !- Source Object + {00000000-0000-0000-0049-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0007-000000000015}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000264}, !- Handle - {00000000-0000-0000-0007-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000075}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000265}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0053-000000000147}, !- Target Object + {00000000-0000-0000-0096-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000266}, !- Handle - {00000000-0000-0000-0053-000000000147}, !- Source Object + {00000000-0000-0000-0020-000000000261}, !- Handle + {00000000-0000-0000-0096-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000022}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000267}, !- Handle - {00000000-0000-0000-0018-000000000022}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000148}, !- Target Object + {00000000-0000-0000-0049-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000268}, !- Handle - {00000000-0000-0000-0053-000000000148}, !- Source Object + {00000000-0000-0000-0020-000000000262}, !- Handle + {00000000-0000-0000-0049-000000000088}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object + {00000000-0000-0000-0021-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000269}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object + {00000000-0000-0000-0020-000000000263}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0053-000000000185}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000270}, !- Handle - {00000000-0000-0000-0053-000000000185}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000018}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000271}, !- Handle - {00000000-0000-0000-0019-000000000018}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000186}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000272}, !- Handle - {00000000-0000-0000-0053-000000000186}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000273}, !- Handle - {00000000-0000-0000-0053-000000000077}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000274}, !- Handle - {00000000-0000-0000-0059-000000000060}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000275}, !- Handle - {00000000-0000-0000-0053-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000276}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000076}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000277}, !- Handle - {00000000-0000-0000-0053-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000016}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000278}, !- Handle - {00000000-0000-0000-0007-000000000016}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000077}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000279}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0053-000000000149}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000280}, !- Handle - {00000000-0000-0000-0053-000000000149}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000023}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000281}, !- Handle - {00000000-0000-0000-0018-000000000023}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000150}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000282}, !- Handle - {00000000-0000-0000-0053-000000000150}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000283}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0053-000000000187}, !- Target Object + {00000000-0000-0000-0049-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000284}, !- Handle - {00000000-0000-0000-0053-000000000187}, !- Source Object + {00000000-0000-0000-0020-000000000264}, !- Handle + {00000000-0000-0000-0049-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000019}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000285}, !- Handle - {00000000-0000-0000-0019-000000000019}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000188}, !- Target Object + {00000000-0000-0000-0096-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000286}, !- Handle - {00000000-0000-0000-0053-000000000188}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 19; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000287}, !- Handle - {00000000-0000-0000-0053-000000000079}, !- Source Object + {00000000-0000-0000-0020-000000000265}, !- Handle + {00000000-0000-0000-0096-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0059-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000288}, !- Handle - {00000000-0000-0000-0059-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000018}, !- Target Object + {00000000-0000-0000-0049-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000289}, !- Handle - {00000000-0000-0000-0053-000000000018}, !- Source Object + {00000000-0000-0000-0020-000000000266}, !- Handle + {00000000-0000-0000-0049-000000000090}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000290}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000078}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000291}, !- Handle - {00000000-0000-0000-0053-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000017}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000292}, !- Handle - {00000000-0000-0000-0007-000000000017}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000079}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000293}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0053-000000000302}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000294}, !- Handle - {00000000-0000-0000-0053-000000000303}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000295}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000297}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000296}, !- Handle - {00000000-0000-0000-0053-000000000298}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000297}, !- Handle - {00000000-0000-0000-0053-000000000297}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000298}, !- Handle - {00000000-0000-0000-0004-000000000004}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000298}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000299}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0053-000000000104}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000300}, !- Handle - {00000000-0000-0000-0053-000000000104}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000301}, !- Handle - {00000000-0000-0000-0018-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000106}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000302}, !- Handle - {00000000-0000-0000-0053-000000000106}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 20; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000303}, !- Handle - {00000000-0000-0000-0022-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000094}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000304}, !- Handle - {00000000-0000-0000-0053-000000000094}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000305}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000096}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000306}, !- Handle - {00000000-0000-0000-0053-000000000096}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000307}, !- Handle - {00000000-0000-0000-0044-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000303}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000308}, !- Handle - {00000000-0000-0000-0018-000000000002}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000105}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000309}, !- Handle - {00000000-0000-0000-0053-000000000105}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000006}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000310}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000095}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000311}, !- Handle - {00000000-0000-0000-0053-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000312}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000299}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000313}, !- Handle - {00000000-0000-0000-0053-000000000299}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000314}, !- Handle - {00000000-0000-0000-0053-000000000302}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000002}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000315}, !- Handle - {00000000-0000-0000-0044-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000276}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000316}, !- Handle - {00000000-0000-0000-0053-000000000276}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000317}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0053-000000000107}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000318}, !- Handle - {00000000-0000-0000-0053-000000000107}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000003}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000319}, !- Handle - {00000000-0000-0000-0018-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000108}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000320}, !- Handle - {00000000-0000-0000-0053-000000000108}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000321}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0053-000000000189}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000322}, !- Handle - {00000000-0000-0000-0053-000000000189}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000020}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000323}, !- Handle - {00000000-0000-0000-0019-000000000020}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000190}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000324}, !- Handle - {00000000-0000-0000-0053-000000000190}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 22; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000325}, !- Handle - {00000000-0000-0000-0053-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000055}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000326}, !- Handle - {00000000-0000-0000-0059-000000000057}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000026}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000327}, !- Handle - {00000000-0000-0000-0053-000000000026}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000328}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000080}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000329}, !- Handle - {00000000-0000-0000-0053-000000000080}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000018}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000330}, !- Handle - {00000000-0000-0000-0007-000000000018}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000081}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000331}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 23, !- Outlet Port - {00000000-0000-0000-0053-000000000109}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000332}, !- Handle - {00000000-0000-0000-0053-000000000109}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000333}, !- Handle - {00000000-0000-0000-0018-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000110}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000334}, !- Handle - {00000000-0000-0000-0053-000000000110}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 23; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000335}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 24, !- Outlet Port - {00000000-0000-0000-0053-000000000153}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000336}, !- Handle - {00000000-0000-0000-0053-000000000153}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000002}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000337}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000338}, !- Handle - {00000000-0000-0000-0053-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 24; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000339}, !- Handle - {00000000-0000-0000-0053-000000000083}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000340}, !- Handle - {00000000-0000-0000-0059-000000000051}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000024}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000341}, !- Handle - {00000000-0000-0000-0053-000000000024}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000342}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000082}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000343}, !- Handle - {00000000-0000-0000-0053-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000019}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000344}, !- Handle - {00000000-0000-0000-0007-000000000019}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000083}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000345}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 25, !- Outlet Port - {00000000-0000-0000-0053-000000000111}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000346}, !- Handle - {00000000-0000-0000-0053-000000000111}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000347}, !- Handle - {00000000-0000-0000-0018-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000112}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000348}, !- Handle - {00000000-0000-0000-0053-000000000112}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 25; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000349}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 26, !- Outlet Port - {00000000-0000-0000-0053-000000000155}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000350}, !- Handle - {00000000-0000-0000-0053-000000000155}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000003}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000351}, !- Handle - {00000000-0000-0000-0019-000000000003}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000156}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000352}, !- Handle - {00000000-0000-0000-0053-000000000156}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 26; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000353}, !- Handle - {00000000-0000-0000-0053-000000000049}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000354}, !- Handle - {00000000-0000-0000-0059-000000000036}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000355}, !- Handle - {00000000-0000-0000-0053-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000356}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000048}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000357}, !- Handle - {00000000-0000-0000-0053-000000000048}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000358}, !- Handle - {00000000-0000-0000-0007-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000359}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 27, !- Outlet Port - {00000000-0000-0000-0053-000000000113}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000360}, !- Handle - {00000000-0000-0000-0053-000000000113}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000361}, !- Handle - {00000000-0000-0000-0018-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000114}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000362}, !- Handle - {00000000-0000-0000-0053-000000000114}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 27; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000363}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 28, !- Outlet Port - {00000000-0000-0000-0053-000000000157}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000364}, !- Handle - {00000000-0000-0000-0053-000000000157}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000004}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000365}, !- Handle - {00000000-0000-0000-0019-000000000004}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000158}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000366}, !- Handle - {00000000-0000-0000-0053-000000000158}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 28; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000367}, !- Handle - {00000000-0000-0000-0053-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000368}, !- Handle - {00000000-0000-0000-0059-000000000030}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000020}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000369}, !- Handle - {00000000-0000-0000-0053-000000000020}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000370}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000050}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000371}, !- Handle - {00000000-0000-0000-0053-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000003}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000372}, !- Handle - {00000000-0000-0000-0007-000000000003}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000051}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000373}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 29, !- Outlet Port - {00000000-0000-0000-0053-000000000115}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000374}, !- Handle - {00000000-0000-0000-0053-000000000115}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000007}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000375}, !- Handle - {00000000-0000-0000-0018-000000000007}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000116}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000376}, !- Handle - {00000000-0000-0000-0053-000000000116}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 29; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000377}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 30, !- Outlet Port - {00000000-0000-0000-0053-000000000159}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000378}, !- Handle - {00000000-0000-0000-0053-000000000159}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000005}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000379}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000160}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000380}, !- Handle - {00000000-0000-0000-0053-000000000160}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 30; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000381}, !- Handle - {00000000-0000-0000-0053-000000000053}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000382}, !- Handle - {00000000-0000-0000-0059-000000000063}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000383}, !- Handle - {00000000-0000-0000-0053-000000000028}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000384}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000385}, !- Handle - {00000000-0000-0000-0053-000000000052}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000004}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000386}, !- Handle - {00000000-0000-0000-0007-000000000004}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000053}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000387}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 31, !- Outlet Port - {00000000-0000-0000-0053-000000000117}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000388}, !- Handle - {00000000-0000-0000-0053-000000000117}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000389}, !- Handle - {00000000-0000-0000-0018-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000118}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000390}, !- Handle - {00000000-0000-0000-0053-000000000118}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000391}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0053-000000000161}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000392}, !- Handle - {00000000-0000-0000-0053-000000000161}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000006}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000393}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000162}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000394}, !- Handle - {00000000-0000-0000-0053-000000000162}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 32; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000395}, !- Handle - {00000000-0000-0000-0053-000000000055}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000396}, !- Handle - {00000000-0000-0000-0059-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000030}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000397}, !- Handle - {00000000-0000-0000-0053-000000000030}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000004}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000398}, !- Handle - {00000000-0000-0000-0005-000000000004}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000054}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000399}, !- Handle - {00000000-0000-0000-0053-000000000054}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000400}, !- Handle - {00000000-0000-0000-0007-000000000005}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000055}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000401}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0053-000000000309}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000402}, !- Handle - {00000000-0000-0000-0053-000000000310}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000403}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000304}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000404}, !- Handle - {00000000-0000-0000-0053-000000000305}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000004}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000405}, !- Handle - {00000000-0000-0000-0053-000000000304}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000406}, !- Handle - {00000000-0000-0000-0004-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000305}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000407}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 33, !- Outlet Port - {00000000-0000-0000-0053-000000000119}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000408}, !- Handle - {00000000-0000-0000-0053-000000000119}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000009}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000409}, !- Handle - {00000000-0000-0000-0018-000000000009}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000121}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000410}, !- Handle - {00000000-0000-0000-0053-000000000121}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 33; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000411}, !- Handle - {00000000-0000-0000-0022-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000097}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000412}, !- Handle - {00000000-0000-0000-0053-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000413}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000099}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000414}, !- Handle - {00000000-0000-0000-0053-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000415}, !- Handle - {00000000-0000-0000-0044-000000000007}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000310}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000416}, !- Handle - {00000000-0000-0000-0018-000000000009}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000120}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000417}, !- Handle - {00000000-0000-0000-0053-000000000120}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000007}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000418}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000098}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000419}, !- Handle - {00000000-0000-0000-0053-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000009}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000420}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000306}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000421}, !- Handle - {00000000-0000-0000-0053-000000000306}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000422}, !- Handle - {00000000-0000-0000-0053-000000000309}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0044-000000000003}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000423}, !- Handle - {00000000-0000-0000-0044-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000277}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000424}, !- Handle - {00000000-0000-0000-0053-000000000277}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000425}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 34, !- Outlet Port - {00000000-0000-0000-0053-000000000122}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000426}, !- Handle - {00000000-0000-0000-0053-000000000122}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000010}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000427}, !- Handle - {00000000-0000-0000-0018-000000000010}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000123}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000428}, !- Handle - {00000000-0000-0000-0053-000000000123}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 34; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000429}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 35, !- Outlet Port - {00000000-0000-0000-0053-000000000163}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000430}, !- Handle - {00000000-0000-0000-0053-000000000163}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000007}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000431}, !- Handle - {00000000-0000-0000-0019-000000000007}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000432}, !- Handle - {00000000-0000-0000-0053-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 35; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000433}, !- Handle - {00000000-0000-0000-0053-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000434}, !- Handle - {00000000-0000-0000-0059-000000000054}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000435}, !- Handle - {00000000-0000-0000-0053-000000000040}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000436}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000056}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000437}, !- Handle - {00000000-0000-0000-0053-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000438}, !- Handle - {00000000-0000-0000-0007-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000057}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000439}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 36, !- Outlet Port - {00000000-0000-0000-0053-000000000124}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000440}, !- Handle - {00000000-0000-0000-0053-000000000124}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000011}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000441}, !- Handle - {00000000-0000-0000-0018-000000000011}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000125}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000442}, !- Handle - {00000000-0000-0000-0053-000000000125}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 36; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000443}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 37, !- Outlet Port - {00000000-0000-0000-0053-000000000165}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000444}, !- Handle - {00000000-0000-0000-0053-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000008}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000445}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000446}, !- Handle - {00000000-0000-0000-0053-000000000166}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 37; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000447}, !- Handle - {00000000-0000-0000-0053-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000031}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000448}, !- Handle - {00000000-0000-0000-0059-000000000033}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000036}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000449}, !- Handle - {00000000-0000-0000-0053-000000000036}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000450}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000451}, !- Handle - {00000000-0000-0000-0053-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000452}, !- Handle - {00000000-0000-0000-0007-000000000007}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000059}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000453}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 38, !- Outlet Port - {00000000-0000-0000-0053-000000000128}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000454}, !- Handle - {00000000-0000-0000-0053-000000000128}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000013}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000455}, !- Handle - {00000000-0000-0000-0018-000000000013}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000129}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000456}, !- Handle - {00000000-0000-0000-0053-000000000129}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 38; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000457}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 39, !- Outlet Port - {00000000-0000-0000-0053-000000000167}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000458}, !- Handle - {00000000-0000-0000-0053-000000000167}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000009}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000459}, !- Handle - {00000000-0000-0000-0019-000000000009}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000168}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000460}, !- Handle - {00000000-0000-0000-0053-000000000168}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 39; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000461}, !- Handle - {00000000-0000-0000-0053-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000462}, !- Handle - {00000000-0000-0000-0059-000000000018}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000032}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000463}, !- Handle - {00000000-0000-0000-0053-000000000032}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000464}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000060}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000465}, !- Handle - {00000000-0000-0000-0053-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000466}, !- Handle - {00000000-0000-0000-0007-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000467}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 40, !- Outlet Port - {00000000-0000-0000-0053-000000000130}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000468}, !- Handle - {00000000-0000-0000-0053-000000000130}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000014}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000469}, !- Handle - {00000000-0000-0000-0018-000000000014}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000131}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000470}, !- Handle - {00000000-0000-0000-0053-000000000131}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 40; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000471}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 41, !- Outlet Port - {00000000-0000-0000-0053-000000000169}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000472}, !- Handle - {00000000-0000-0000-0053-000000000169}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000010}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000473}, !- Handle - {00000000-0000-0000-0019-000000000010}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000170}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000474}, !- Handle - {00000000-0000-0000-0053-000000000170}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 41; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000475}, !- Handle - {00000000-0000-0000-0053-000000000063}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000025}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000476}, !- Handle - {00000000-0000-0000-0059-000000000027}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000477}, !- Handle - {00000000-0000-0000-0053-000000000034}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000478}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000062}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000479}, !- Handle - {00000000-0000-0000-0053-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000009}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000480}, !- Handle - {00000000-0000-0000-0007-000000000009}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000063}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000481}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 42, !- Outlet Port - {00000000-0000-0000-0053-000000000132}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000482}, !- Handle - {00000000-0000-0000-0053-000000000132}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000015}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000483}, !- Handle - {00000000-0000-0000-0018-000000000015}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000133}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000484}, !- Handle - {00000000-0000-0000-0053-000000000133}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 42; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000485}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 43, !- Outlet Port - {00000000-0000-0000-0053-000000000171}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000486}, !- Handle - {00000000-0000-0000-0053-000000000171}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000011}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000487}, !- Handle - {00000000-0000-0000-0019-000000000011}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000172}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000488}, !- Handle - {00000000-0000-0000-0053-000000000172}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 43; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000489}, !- Handle - {00000000-0000-0000-0053-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000490}, !- Handle - {00000000-0000-0000-0059-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000491}, !- Handle - {00000000-0000-0000-0053-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000492}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000493}, !- Handle - {00000000-0000-0000-0053-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000010}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000494}, !- Handle - {00000000-0000-0000-0007-000000000010}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000495}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 44, !- Outlet Port - {00000000-0000-0000-0053-000000000134}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000496}, !- Handle - {00000000-0000-0000-0053-000000000134}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000016}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000497}, !- Handle - {00000000-0000-0000-0018-000000000016}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000135}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000498}, !- Handle - {00000000-0000-0000-0053-000000000135}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 44; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000499}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 45, !- Outlet Port - {00000000-0000-0000-0053-000000000175}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000500}, !- Handle - {00000000-0000-0000-0053-000000000175}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000013}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000501}, !- Handle - {00000000-0000-0000-0019-000000000013}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000176}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000502}, !- Handle - {00000000-0000-0000-0053-000000000176}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000002}, !- Target Object - 45; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000503}, !- Handle - {00000000-0000-0000-0053-000000000067}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000504}, !- Handle - {00000000-0000-0000-0059-000000000009}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000042}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000505}, !- Handle - {00000000-0000-0000-0053-000000000042}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000005}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000506}, !- Handle - {00000000-0000-0000-0005-000000000005}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000066}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000507}, !- Handle - {00000000-0000-0000-0053-000000000066}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0007-000000000011}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000508}, !- Handle - {00000000-0000-0000-0007-000000000011}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000067}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000509}, !- Handle - {00000000-0000-0000-0058-000000000004}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0053-000000000219}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000510}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000511}, !- Handle - {00000000-0000-0000-0053-000000000220}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000004}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000512}, !- Handle - {00000000-0000-0000-0058-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000217}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000513}, !- Handle - {00000000-0000-0000-0053-000000000217}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0022-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000514}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000257}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000515}, !- Handle - {00000000-0000-0000-0053-000000000218}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000004}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000516}, !- Handle - {00000000-0000-0000-0053-000000000219}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0060-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000517}, !- Handle - {00000000-0000-0000-0060-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000216}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000518}, !- Handle - {00000000-0000-0000-0053-000000000216}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0022-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000519}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000001}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000520}, !- Handle - {00000000-0000-0000-0098-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0053-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000521}, !- Handle - {00000000-0000-0000-0053-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000522}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000255}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000523}, !- Handle - {00000000-0000-0000-0053-000000000255}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000524}, !- Handle - {00000000-0000-0000-0057-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000256}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000525}, !- Handle - {00000000-0000-0000-0053-000000000256}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000526}, !- Handle - {00000000-0000-0000-0053-000000000257}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000527}, !- Handle - {00000000-0000-0000-0057-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000258}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000528}, !- Handle - {00000000-0000-0000-0053-000000000258}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000529}, !- Handle - {00000000-0000-0000-0021-000000000007}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000259}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000530}, !- Handle - {00000000-0000-0000-0053-000000000259}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000531}, !- Handle - {00000000-0000-0000-0057-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000220}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000532}, !- Handle - {00000000-0000-0000-0021-000000000008}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0053-000000000247}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000533}, !- Handle - {00000000-0000-0000-0053-000000000247}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000534}, !- Handle - {00000000-0000-0000-0057-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000218}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000535}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0053-000000000198}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000536}, !- Handle - {00000000-0000-0000-0053-000000000198}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000537}, !- Handle - {00000000-0000-0000-0100-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000199}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000538}, !- Handle - {00000000-0000-0000-0053-000000000199}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000539}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0053-000000000200}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000540}, !- Handle - {00000000-0000-0000-0053-000000000200}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000541}, !- Handle - {00000000-0000-0000-0100-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000201}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000542}, !- Handle - {00000000-0000-0000-0053-000000000201}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000543}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0053-000000000202}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000544}, !- Handle - {00000000-0000-0000-0053-000000000202}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000545}, !- Handle - {00000000-0000-0000-0100-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000203}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000546}, !- Handle - {00000000-0000-0000-0053-000000000203}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000547}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000204}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000548}, !- Handle - {00000000-0000-0000-0053-000000000204}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000549}, !- Handle - {00000000-0000-0000-0100-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000205}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000550}, !- Handle - {00000000-0000-0000-0053-000000000205}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000551}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0053-000000000206}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000552}, !- Handle - {00000000-0000-0000-0053-000000000206}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000553}, !- Handle - {00000000-0000-0000-0100-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000207}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000554}, !- Handle - {00000000-0000-0000-0053-000000000207}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000555}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0053-000000000208}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000556}, !- Handle - {00000000-0000-0000-0053-000000000208}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000557}, !- Handle - {00000000-0000-0000-0100-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000209}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000558}, !- Handle - {00000000-0000-0000-0053-000000000209}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000559}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0053-000000000210}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000560}, !- Handle - {00000000-0000-0000-0053-000000000210}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000561}, !- Handle - {00000000-0000-0000-0100-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000211}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000562}, !- Handle - {00000000-0000-0000-0053-000000000211}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000563}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0053-000000000221}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000564}, !- Handle - {00000000-0000-0000-0053-000000000221}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000565}, !- Handle - {00000000-0000-0000-0100-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000222}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000566}, !- Handle - {00000000-0000-0000-0053-000000000222}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 11; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000567}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0053-000000000223}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000568}, !- Handle - {00000000-0000-0000-0053-000000000223}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000569}, !- Handle - {00000000-0000-0000-0100-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000224}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000570}, !- Handle - {00000000-0000-0000-0053-000000000224}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000571}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000225}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000572}, !- Handle - {00000000-0000-0000-0053-000000000225}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000573}, !- Handle - {00000000-0000-0000-0100-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000226}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000574}, !- Handle - {00000000-0000-0000-0053-000000000226}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 13; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000575}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0053-000000000227}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000576}, !- Handle - {00000000-0000-0000-0053-000000000227}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000011}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000577}, !- Handle - {00000000-0000-0000-0100-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000228}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000578}, !- Handle - {00000000-0000-0000-0053-000000000228}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000579}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000229}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000580}, !- Handle - {00000000-0000-0000-0053-000000000229}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000012}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000581}, !- Handle - {00000000-0000-0000-0100-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000230}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000582}, !- Handle - {00000000-0000-0000-0053-000000000230}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000583}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0053-000000000231}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000584}, !- Handle - {00000000-0000-0000-0053-000000000231}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000585}, !- Handle - {00000000-0000-0000-0100-000000000013}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000232}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000586}, !- Handle - {00000000-0000-0000-0053-000000000232}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000587}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0053-000000000233}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000588}, !- Handle - {00000000-0000-0000-0053-000000000233}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000589}, !- Handle - {00000000-0000-0000-0100-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000234}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000590}, !- Handle - {00000000-0000-0000-0053-000000000234}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000591}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0053-000000000235}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000592}, !- Handle - {00000000-0000-0000-0053-000000000235}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000015}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000593}, !- Handle - {00000000-0000-0000-0100-000000000015}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000236}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000594}, !- Handle - {00000000-0000-0000-0053-000000000236}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000595}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0053-000000000237}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000596}, !- Handle - {00000000-0000-0000-0053-000000000237}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000597}, !- Handle - {00000000-0000-0000-0100-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000238}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000598}, !- Handle - {00000000-0000-0000-0053-000000000238}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 19; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000599}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0053-000000000239}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000600}, !- Handle - {00000000-0000-0000-0053-000000000239}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000017}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000601}, !- Handle - {00000000-0000-0000-0100-000000000017}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000240}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000602}, !- Handle - {00000000-0000-0000-0053-000000000240}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 20; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000603}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0053-000000000241}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000604}, !- Handle - {00000000-0000-0000-0053-000000000241}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000605}, !- Handle - {00000000-0000-0000-0100-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000242}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000606}, !- Handle - {00000000-0000-0000-0053-000000000242}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000607}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0053-000000000243}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000608}, !- Handle - {00000000-0000-0000-0053-000000000243}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000019}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000609}, !- Handle - {00000000-0000-0000-0100-000000000019}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000244}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000610}, !- Handle - {00000000-0000-0000-0053-000000000244}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 22; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000611}, !- Handle - {00000000-0000-0000-0053-000000000284}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000612}, !- Handle - {00000000-0000-0000-0047-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000288}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000613}, !- Handle - {00000000-0000-0000-0053-000000000288}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000614}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000289}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000615}, !- Handle - {00000000-0000-0000-0053-000000000289}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000001}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000616}, !- Handle - {00000000-0000-0000-0047-000000000001}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000285}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000617}, !- Handle - {00000000-0000-0000-0053-000000000314}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000005}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000618}, !- Handle - {00000000-0000-0000-0047-000000000005}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000324}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000619}, !- Handle - {00000000-0000-0000-0053-000000000324}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000620}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000325}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000621}, !- Handle - {00000000-0000-0000-0053-000000000325}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000005}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000622}, !- Handle - {00000000-0000-0000-0047-000000000005}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000315}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000623}, !- Handle - {00000000-0000-0000-0053-000000000293}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000624}, !- Handle - {00000000-0000-0000-0047-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000318}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000625}, !- Handle - {00000000-0000-0000-0053-000000000318}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000626}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000319}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000627}, !- Handle - {00000000-0000-0000-0053-000000000319}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000002}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000628}, !- Handle - {00000000-0000-0000-0047-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000294}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000629}, !- Handle - {00000000-0000-0000-0053-000000000300}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000630}, !- Handle - {00000000-0000-0000-0047-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000320}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000631}, !- Handle - {00000000-0000-0000-0053-000000000320}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000004}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000632}, !- Handle - {00000000-0000-0000-0003-000000000004}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000321}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000633}, !- Handle - {00000000-0000-0000-0053-000000000321}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000003}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000634}, !- Handle - {00000000-0000-0000-0047-000000000003}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000301}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000635}, !- Handle - {00000000-0000-0000-0053-000000000307}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000004}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000636}, !- Handle - {00000000-0000-0000-0047-000000000004}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0053-000000000322}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000637}, !- Handle - {00000000-0000-0000-0053-000000000322}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000005}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000638}, !- Handle - {00000000-0000-0000-0003-000000000005}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0053-000000000323}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000639}, !- Handle - {00000000-0000-0000-0053-000000000323}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0047-000000000004}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000640}, !- Handle - {00000000-0000-0000-0047-000000000004}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0053-000000000308}, !- Target Object - 2; !- Inlet Port - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000001}, !- Handle - Connector Mixer 1, !- Name - {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000002}, !- Handle - Connector Mixer 2, !- Name - {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000088}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000157}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000174}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000178}, !- Inlet Branch Name 4 - {00000000-0000-0000-0020-000000000194}, !- Inlet Branch Name 5 - {00000000-0000-0000-0020-000000000212}, !- Inlet Branch Name 6 - {00000000-0000-0000-0020-000000000216}, !- Inlet Branch Name 7 - {00000000-0000-0000-0020-000000000226}, !- Inlet Branch Name 8 - {00000000-0000-0000-0020-000000000230}, !- Inlet Branch Name 9 - {00000000-0000-0000-0020-000000000240}, !- Inlet Branch Name 10 - {00000000-0000-0000-0020-000000000244}, !- Inlet Branch Name 11 - {00000000-0000-0000-0020-000000000254}, !- Inlet Branch Name 12 - {00000000-0000-0000-0020-000000000258}, !- Inlet Branch Name 13 - {00000000-0000-0000-0020-000000000268}, !- Inlet Branch Name 14 - {00000000-0000-0000-0020-000000000272}, !- Inlet Branch Name 15 - {00000000-0000-0000-0020-000000000282}, !- Inlet Branch Name 16 - {00000000-0000-0000-0020-000000000286}, !- Inlet Branch Name 17 - {00000000-0000-0000-0020-000000000302}, !- Inlet Branch Name 18 - {00000000-0000-0000-0020-000000000320}, !- Inlet Branch Name 19 - {00000000-0000-0000-0020-000000000324}, !- Inlet Branch Name 20 - {00000000-0000-0000-0020-000000000334}, !- Inlet Branch Name 21 - {00000000-0000-0000-0020-000000000338}, !- Inlet Branch Name 22 - {00000000-0000-0000-0020-000000000348}, !- Inlet Branch Name 23 - {00000000-0000-0000-0020-000000000352}, !- Inlet Branch Name 24 - {00000000-0000-0000-0020-000000000362}, !- Inlet Branch Name 25 - {00000000-0000-0000-0020-000000000366}, !- Inlet Branch Name 26 - {00000000-0000-0000-0020-000000000376}, !- Inlet Branch Name 27 - {00000000-0000-0000-0020-000000000380}, !- Inlet Branch Name 28 - {00000000-0000-0000-0020-000000000390}, !- Inlet Branch Name 29 - {00000000-0000-0000-0020-000000000394}, !- Inlet Branch Name 30 - {00000000-0000-0000-0020-000000000410}, !- Inlet Branch Name 31 - {00000000-0000-0000-0020-000000000428}, !- Inlet Branch Name 32 - {00000000-0000-0000-0020-000000000432}, !- Inlet Branch Name 33 - {00000000-0000-0000-0020-000000000442}, !- Inlet Branch Name 34 - {00000000-0000-0000-0020-000000000446}, !- Inlet Branch Name 35 - {00000000-0000-0000-0020-000000000456}, !- Inlet Branch Name 36 - {00000000-0000-0000-0020-000000000460}, !- Inlet Branch Name 37 - {00000000-0000-0000-0020-000000000470}, !- Inlet Branch Name 38 - {00000000-0000-0000-0020-000000000474}, !- Inlet Branch Name 39 - {00000000-0000-0000-0020-000000000484}, !- Inlet Branch Name 40 - {00000000-0000-0000-0020-000000000488}, !- Inlet Branch Name 41 - {00000000-0000-0000-0020-000000000498}, !- Inlet Branch Name 42 - {00000000-0000-0000-0020-000000000502}; !- Inlet Branch Name 43 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000003}, !- Handle - Connector Mixer 3, !- Name - {00000000-0000-0000-0020-000000000117}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000108}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000112}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000116}; !- Inlet Branch Name 3 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000004}, !- Handle - Connector Mixer 4, !- Name - {00000000-0000-0000-0020-000000000101}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000160}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000198}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000306}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000414}; !- Inlet Branch Name 4 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000005}, !- Handle - Connector Mixer 5, !- Name - {00000000-0000-0000-0020-000000000138}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000133}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000137}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000006}, !- Handle - Connector Mixer 6, !- Name - {00000000-0000-0000-0020-000000000126}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000143}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000147}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000007}, !- Handle - Connector Mixer 7, !- Name - {00000000-0000-0000-0020-000000000529}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000521}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000525}; !- Inlet Branch Name 2 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000008}, !- Handle - Connector Mixer 8, !- Name - {00000000-0000-0000-0020-000000000532}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000528}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000538}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000542}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000546}, !- Inlet Branch Name 4 - {00000000-0000-0000-0020-000000000550}, !- Inlet Branch Name 5 - {00000000-0000-0000-0020-000000000554}, !- Inlet Branch Name 6 - {00000000-0000-0000-0020-000000000558}, !- Inlet Branch Name 7 - {00000000-0000-0000-0020-000000000562}, !- Inlet Branch Name 8 - {00000000-0000-0000-0020-000000000566}, !- Inlet Branch Name 9 - {00000000-0000-0000-0020-000000000570}, !- Inlet Branch Name 10 - {00000000-0000-0000-0020-000000000574}, !- Inlet Branch Name 11 - {00000000-0000-0000-0020-000000000578}, !- Inlet Branch Name 12 - {00000000-0000-0000-0020-000000000582}, !- Inlet Branch Name 13 - {00000000-0000-0000-0020-000000000586}, !- Inlet Branch Name 14 - {00000000-0000-0000-0020-000000000590}, !- Inlet Branch Name 15 - {00000000-0000-0000-0020-000000000594}, !- Inlet Branch Name 16 - {00000000-0000-0000-0020-000000000598}, !- Inlet Branch Name 17 - {00000000-0000-0000-0020-000000000602}, !- Inlet Branch Name 18 - {00000000-0000-0000-0020-000000000606}, !- Inlet Branch Name 19 - {00000000-0000-0000-0020-000000000610}; !- Inlet Branch Name 20 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000001}, !- Handle - Connector Splitter 1, !- Name - {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000002}, !- Handle - Connector Splitter 2, !- Name - {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000154}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000171}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000175}, !- Outlet Branch Name 4 - {00000000-0000-0000-0020-000000000191}, !- Outlet Branch Name 5 - {00000000-0000-0000-0020-000000000209}, !- Outlet Branch Name 6 - {00000000-0000-0000-0020-000000000213}, !- Outlet Branch Name 7 - {00000000-0000-0000-0020-000000000223}, !- Outlet Branch Name 8 - {00000000-0000-0000-0020-000000000227}, !- Outlet Branch Name 9 - {00000000-0000-0000-0020-000000000237}, !- Outlet Branch Name 10 - {00000000-0000-0000-0020-000000000241}, !- Outlet Branch Name 11 - {00000000-0000-0000-0020-000000000251}, !- Outlet Branch Name 12 - {00000000-0000-0000-0020-000000000255}, !- Outlet Branch Name 13 - {00000000-0000-0000-0020-000000000265}, !- Outlet Branch Name 14 - {00000000-0000-0000-0020-000000000269}, !- Outlet Branch Name 15 - {00000000-0000-0000-0020-000000000279}, !- Outlet Branch Name 16 - {00000000-0000-0000-0020-000000000283}, !- Outlet Branch Name 17 - {00000000-0000-0000-0020-000000000299}, !- Outlet Branch Name 18 - {00000000-0000-0000-0020-000000000317}, !- Outlet Branch Name 19 - {00000000-0000-0000-0020-000000000321}, !- Outlet Branch Name 20 - {00000000-0000-0000-0020-000000000331}, !- Outlet Branch Name 21 - {00000000-0000-0000-0020-000000000335}, !- Outlet Branch Name 22 - {00000000-0000-0000-0020-000000000345}, !- Outlet Branch Name 23 - {00000000-0000-0000-0020-000000000349}, !- Outlet Branch Name 24 - {00000000-0000-0000-0020-000000000359}, !- Outlet Branch Name 25 - {00000000-0000-0000-0020-000000000363}, !- Outlet Branch Name 26 - {00000000-0000-0000-0020-000000000373}, !- Outlet Branch Name 27 - {00000000-0000-0000-0020-000000000377}, !- Outlet Branch Name 28 - {00000000-0000-0000-0020-000000000387}, !- Outlet Branch Name 29 - {00000000-0000-0000-0020-000000000391}, !- Outlet Branch Name 30 - {00000000-0000-0000-0020-000000000407}, !- Outlet Branch Name 31 - {00000000-0000-0000-0020-000000000425}, !- Outlet Branch Name 32 - {00000000-0000-0000-0020-000000000429}, !- Outlet Branch Name 33 - {00000000-0000-0000-0020-000000000439}, !- Outlet Branch Name 34 - {00000000-0000-0000-0020-000000000443}, !- Outlet Branch Name 35 - {00000000-0000-0000-0020-000000000453}, !- Outlet Branch Name 36 - {00000000-0000-0000-0020-000000000457}, !- Outlet Branch Name 37 - {00000000-0000-0000-0020-000000000467}, !- Outlet Branch Name 38 - {00000000-0000-0000-0020-000000000471}, !- Outlet Branch Name 39 - {00000000-0000-0000-0020-000000000481}, !- Outlet Branch Name 40 - {00000000-0000-0000-0020-000000000485}, !- Outlet Branch Name 41 - {00000000-0000-0000-0020-000000000495}, !- Outlet Branch Name 42 - {00000000-0000-0000-0020-000000000499}; !- Outlet Branch Name 43 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000003}, !- Handle - Connector Splitter 3, !- Name - {00000000-0000-0000-0020-000000000105}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000096}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000109}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000113}; !- Outlet Branch Name 3 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000004}, !- Handle - Connector Splitter 4, !- Name - {00000000-0000-0000-0020-000000000099}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000100}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000195}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000303}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000411}; !- Outlet Branch Name 4 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000005}, !- Handle - Connector Splitter 5, !- Name - {00000000-0000-0000-0020-000000000130}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000121}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000134}; !- Outlet Branch Name 2 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000006}, !- Handle - Connector Splitter 6, !- Name - {00000000-0000-0000-0020-000000000124}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000125}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000144}; !- Outlet Branch Name 2 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000007}, !- Handle - Connector Splitter 7, !- Name - {00000000-0000-0000-0020-000000000518}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000510}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000522}; !- Outlet Branch Name 2 - -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000008}, !- Handle - Connector Splitter 8, !- Name - {00000000-0000-0000-0020-000000000513}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000514}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000535}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000539}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000543}, !- Outlet Branch Name 4 - {00000000-0000-0000-0020-000000000547}, !- Outlet Branch Name 5 - {00000000-0000-0000-0020-000000000551}, !- Outlet Branch Name 6 - {00000000-0000-0000-0020-000000000555}, !- Outlet Branch Name 7 - {00000000-0000-0000-0020-000000000559}, !- Outlet Branch Name 8 - {00000000-0000-0000-0020-000000000563}, !- Outlet Branch Name 9 - {00000000-0000-0000-0020-000000000567}, !- Outlet Branch Name 10 - {00000000-0000-0000-0020-000000000571}, !- Outlet Branch Name 11 - {00000000-0000-0000-0020-000000000575}, !- Outlet Branch Name 12 - {00000000-0000-0000-0020-000000000579}, !- Outlet Branch Name 13 - {00000000-0000-0000-0020-000000000583}, !- Outlet Branch Name 14 - {00000000-0000-0000-0020-000000000587}, !- Outlet Branch Name 15 - {00000000-0000-0000-0020-000000000591}, !- Outlet Branch Name 16 - {00000000-0000-0000-0020-000000000595}, !- Outlet Branch Name 17 - {00000000-0000-0000-0020-000000000599}, !- Outlet Branch Name 18 - {00000000-0000-0000-0020-000000000603}, !- Outlet Branch Name 19 - {00000000-0000-0000-0020-000000000607}; !- Outlet Branch Name 20 - -OS:Construction, - {00000000-0000-0000-0023-000000000001}, !- Handle - BTAP-Ext-DaylightDiffuser, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000002}, !- Handle - BTAP-Ext-DaylightDiffuser:U=0.241 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000003}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000003}, !- Handle - BTAP-Ext-DaylightDomes, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000004}, !- Handle - BTAP-Ext-DaylightDomes:U=0.241 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000003}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000005}, !- Handle - BTAP-Ext-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000018}, !- Layer 1 - {00000000-0000-0000-0051-000000000013}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000006}, !- Handle - BTAP-Ext-Door:U-1.73, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000017}, !- Layer 1 - {00000000-0000-0000-0051-000000000011}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000007}, !- Handle - BTAP-Ext-FixedWindow, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000008}, !- Handle - BTAP-Ext-FixedWindow:U=0.173 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000009}, !- Handle - BTAP-Ext-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000013}, !- Layer 1 - {00000000-0000-0000-0050-000000000008}, !- Layer 2 - {00000000-0000-0000-0051-000000000007}; !- Layer 3 - -OS:Construction, - {00000000-0000-0000-0023-000000000010}, !- Handle - BTAP-Ext-Floor-Mass:U-0.138, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000008}, !- Layer 1 - {00000000-0000-0000-0050-000000000007}, !- Layer 2 - {00000000-0000-0000-0051-000000000003}; !- Layer 3 - -OS:Construction, - {00000000-0000-0000-0023-000000000011}, !- Handle - BTAP-Ext-GlassDoors, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000012}, !- Handle - BTAP-Ext-GlassDoors:U=0.173 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000002}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000013}, !- Handle - BTAP-Ext-OverHeadDoor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000013}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000014}, !- Handle - BTAP-Ext-OverHeadDoor:U-1.73, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000012}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000015}, !- Handle - BTAP-Ext-Roof-Metal, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000024}, !- Layer 1 - {00000000-0000-0000-0051-000000000013}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000016}, !- Handle - BTAP-Ext-Roof-Metal:U-0.121, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000023}, !- Layer 1 - {00000000-0000-0000-0051-000000000010}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000017}, !- Handle - BTAP-Ext-Skylights, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000018}, !- Handle - BTAP-Ext-Skylights:U=0.241 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000003}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000019}, !- Handle - BTAP-Ext-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000006}, !- Layer 1 - {00000000-0000-0000-0050-000000000014}, !- Layer 2 - {00000000-0000-0000-0051-000000000013}, !- Layer 3 - {00000000-0000-0000-0050-000000000002}; !- Layer 4 - -OS:Construction, - {00000000-0000-0000-0023-000000000020}, !- Handle - BTAP-Ext-Wall-Mass:U-0.215, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000005}, !- Layer 1 - {00000000-0000-0000-0050-000000000013}, !- Layer 2 - {00000000-0000-0000-0051-000000000009}, !- Layer 3 - {00000000-0000-0000-0050-000000000001}; !- Layer 4 - -OS:Construction, - {00000000-0000-0000-0023-000000000021}, !- Handle - BTAP-Grnd-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000012}, !- Layer 1 - {00000000-0000-0000-0051-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000022}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000009}, !- Layer 1 - {00000000-0000-0000-0051-000000000004}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000023}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000009}, !- Layer 1 - {00000000-0000-0000-0050-000000000016}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000024}, !- Handle - BTAP-Grnd-Roof-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000012}, !- Layer 1 - {00000000-0000-0000-0051-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000025}, !- Handle - BTAP-Grnd-Roof-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000011}, !- Layer 1 - {00000000-0000-0000-0051-000000000006}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000026}, !- Handle - BTAP-Grnd-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000012}, !- Layer 1 - {00000000-0000-0000-0051-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000027}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000010}, !- Layer 1 - {00000000-0000-0000-0051-000000000005}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000028}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000010}, !- Layer 1 - {00000000-0000-0000-0050-000000000015}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000029}, !- Handle - BTAP-Int-Ceiling, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000007}, !- Layer 1 - {00000000-0000-0000-0050-000000000003}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000030}, !- Handle - BTAP-Int-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000021}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000031}, !- Handle - BTAP-Int-Floor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000003}, !- Layer 1 - {00000000-0000-0000-0051-000000000007}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000032}, !- Handle - BTAP-Int-Partition, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000021}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000033}, !- Handle - BTAP-Int-Wall, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000019}, !- Layer 1 - {00000000-0000-0000-0050-000000000019}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000034}, !- Handle - BTAP-Int-Window, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0104-000000000001}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000035}, !- Handle - Basement Floor construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000022}, !- Layer 1 - {00000000-0000-0000-0051-000000000001}; !- Layer 2 - -OS:Construction, - {00000000-0000-0000-0023-000000000036}, !- Handle - Basement Wall construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000022}; !- Layer 1 - -OS:Construction, - {00000000-0000-0000-0023-000000000037}, !- Handle - Floor Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0051-000000000001}, !- Layer 1 - {00000000-0000-0000-0050-000000000004}, !- Layer 2 - {00000000-0000-0000-0051-000000000002}; !- Layer 3 - -OS:Construction, - {00000000-0000-0000-0023-000000000038}, !- Handle - Wall Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000020}, !- Layer 1 - {00000000-0000-0000-0050-000000000020}; !- Layer 2 - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000004}, !- Handle - Controller Mechanical Ventilation 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000005}, !- Handle - Controller Mechanical Ventilation 5, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000026}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - NoEconomizer, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} - 64000, !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000030}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000027}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000003}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000004}, !- Handle - Controller Outdoor Air 4, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000028}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000004}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000005}, !- Handle - Controller Outdoor Air 5, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000029}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000005}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000001}, !- Handle - Controller Water Coil 1, !- Name - {00000000-0000-0000-0018-000000000001}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000002}, !- Handle - Controller Water Coil 10, !- Name - {00000000-0000-0000-0018-000000000022}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000003}, !- Handle - Controller Water Coil 11, !- Name - {00000000-0000-0000-0018-000000000023}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000004}, !- Handle - Controller Water Coil 12, !- Name - {00000000-0000-0000-0018-000000000002}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000005}, !- Handle - Controller Water Coil 13, !- Name - {00000000-0000-0000-0016-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000006}, !- Handle - Controller Water Coil 14, !- Name - {00000000-0000-0000-0018-000000000003}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000007}, !- Handle - Controller Water Coil 15, !- Name - {00000000-0000-0000-0018-000000000004}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000008}, !- Handle - Controller Water Coil 16, !- Name - {00000000-0000-0000-0018-000000000005}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000009}, !- Handle - Controller Water Coil 17, !- Name - {00000000-0000-0000-0018-000000000006}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000010}, !- Handle - Controller Water Coil 18, !- Name - {00000000-0000-0000-0018-000000000007}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000011}, !- Handle - Controller Water Coil 19, !- Name - {00000000-0000-0000-0018-000000000008}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000012}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0016-000000000001}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000013}, !- Handle - Controller Water Coil 20, !- Name - {00000000-0000-0000-0018-000000000009}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000014}, !- Handle - Controller Water Coil 21, !- Name - {00000000-0000-0000-0016-000000000004}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000015}, !- Handle - Controller Water Coil 22, !- Name - {00000000-0000-0000-0018-000000000010}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000016}, !- Handle - Controller Water Coil 23, !- Name - {00000000-0000-0000-0018-000000000011}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000017}, !- Handle - Controller Water Coil 24, !- Name - {00000000-0000-0000-0018-000000000013}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000018}, !- Handle - Controller Water Coil 25, !- Name - {00000000-0000-0000-0018-000000000014}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000019}, !- Handle - Controller Water Coil 26, !- Name - {00000000-0000-0000-0018-000000000015}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000020}, !- Handle - Controller Water Coil 27, !- Name - {00000000-0000-0000-0018-000000000016}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000021}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0018-000000000012}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000022}, !- Handle - Controller Water Coil 4, !- Name - {00000000-0000-0000-0018-000000000017}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000023}, !- Handle - Controller Water Coil 5, !- Name - {00000000-0000-0000-0016-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000024}, !- Handle - Controller Water Coil 6, !- Name - {00000000-0000-0000-0018-000000000018}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000025}, !- Handle - Controller Water Coil 7, !- Name - {00000000-0000-0000-0018-000000000019}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000026}, !- Handle - Controller Water Coil 8, !- Name - {00000000-0000-0000-0018-000000000020}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000027}, !- Handle - Controller Water Coil 9, !- Name - {00000000-0000-0000-0018-000000000021}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:CoolingTower:SingleSpeed, - {00000000-0000-0000-0027-000000000001}, !- Handle - Cooling Tower Single Speed 1, !- Name - {00000000-0000-0000-0020-000000000131}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000132}, !- Water Outlet Node Name - autosize, !- Design Water Flow Rate {m3/s} - autosize, !- Design Air Flow Rate {m3/s} - 28640.7014275539, !- Fan Power at Design Air Flow Rate {W} - autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} - autosize, !- Air Flow Rate in Free Convection Regime {m3/s} - autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} - UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method - , !- Nominal Capacity {W} - 0, !- Free Convection Capacity {W} - 0, !- Basin Heater Capacity {W/K} - 2, !- Basin Heater Setpoint Temperature {C} - , !- Basin Heater Operating Schedule Name - LossFactor, !- Evaporation Loss Mode - 0.2, !- Evaporation Loss Factor {percent/K} - 0.008, !- Drift Loss Percent {percent} - ConcentrationRatio, !- Blowdown Calculation Mode - 3, !- Blowdown Concentration Ratio - , !- Blowdown Makeup Water Usage Schedule Name - , !- Outdoor Air Inlet Node Name - FanCycling, !- Capacity Control - 2, !- Number of Cells - MinimalCell, !- Cell Control - 0.33, !- Cell Minimum Water Flow Rate Fraction - 2.5, !- Cell Maximum Water Flow Rate Fraction - 1, !- Sizing Factor - 0.1, !- Free Convection Air Flow Rate Sizing Factor - 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor - 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio - 0.1, !- Free Convection Nominal Capacity Sizing Factor - 35, !- Design Inlet Air Dry-Bulb Temperature {C} - 24, !- Design Inlet Air Wet-Bulb Temperature {C} - 5, !- Design Approach Temperature {deltaC} - 6, !- Design Range Temperature {deltaC} - General; !- End-Use Subcategory - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000001}, !- Handle - Curve Biquadratic 1, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.000554364, !- Coefficient3 x**2 - -0.00755748, !- Coefficient4 y - 3.3048e-05, !- Coefficient5 y**2 - -0.000191808, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000002}, !- Handle - Curve Biquadratic 2, !- Name - 0.116936, !- Coefficient1 Constant - 0.0284933, !- Coefficient2 x - -0.000411156, !- Coefficient3 x**2 - 0.0214108, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000003}, !- Handle - Curve Biquadratic 3, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000004}, !- Handle - Curve Biquadratic 4, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000005}, !- Handle - Curve Biquadratic 5, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000006}, !- Handle - Curve Biquadratic 6, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000007}, !- Handle - DXCOOL-NECB2011-REF-CAPFT, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.00055436, !- Coefficient3 x**2 - -0.0075575, !- Coefficient4 y - 3.3e-05, !- Coefficient5 y**2 - -0.0001918, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000008}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFT, !- Name - 0.1141714, !- Coefficient1 Constant - 0.02818224, !- Coefficient2 x - -0.0004199, !- Coefficient3 x**2 - 0.02141082, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000009}, !- Handle - WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name - 0.707908, !- Coefficient1 Constant - -0.00200657, !- Coefficient2 x - -0.00259605, !- Coefficient3 x**2 - 0.0300588, !- Coefficient4 y - -0.00105643, !- Coefficient5 y**2 - 0.0020457, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000010}, !- Handle - WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name - 0.560523, !- Coefficient1 Constant - -0.0137816, !- Coefficient2 x - 6.56424e-05, !- Coefficient3 x**2 - 0.0132194, !- Coefficient4 y - 0.000268596, !- Coefficient5 y**2 - -0.000501131, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000011}, !- Handle - WaterCooled_Scroll_CAPFT_NECB2011, !- Name - 0.94418, !- Coefficient1 Constant - 0.0337102, !- Coefficient2 x - 9.75564e-05, !- Coefficient3 x**2 - -0.00322114, !- Coefficient4 y - -4.91832e-05, !- Coefficient5 y**2 - -0.000177584, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000012}, !- Handle - WaterCooled_Scroll_EIRFT_NECB2011, !- Name - 0.727393, !- Coefficient1 Constant - -0.0118922, !- Coefficient2 x - 0.000541177, !- Coefficient3 x**2 - 0.00187934, !- Coefficient4 y - 0.000473461, !- Coefficient5 y**2 - -0.000711472, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000001}, !- Handle - BOILER-EFFFPLR-NECB2011, !- Name - 0.3831, !- Coefficient1 Constant - 2.0567, !- Coefficient2 x - -2.6469, !- Coefficient3 x**2 - 1.2148, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000002}, !- Handle - Curve Cubic 1, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000003}, !- Handle - DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000004}, !- Handle - FURNACE-EFFPLR-NECB2011, !- Name - 0.722, !- Coefficient1 Constant - 0.8211, !- Coefficient2 x - -1.0396, !- Coefficient3 x**2 - 0.5, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000005}, !- Handle - SWH-EFFFPLR-NECB2011, !- Name - 0.7576, !- Coefficient1 Constant - 1.0071, !- Coefficient2 x - -1.4443, !- Coefficient3 x**2 - 0.6844, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000006}, !- Handle - VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name - -2.4176, !- Coefficient1 Constant - 9.5874, !- Coefficient2 x - -11.559, !- Coefficient3 x**2 - 5.4009, !- Coefficient4 x**3 - 0.68, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000007}, !- Handle - VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name - -4.1457, !- Coefficient1 Constant - 16.803, !- Coefficient2 x - -19.471, !- Coefficient3 x**2 - 7.8488, !- Coefficient4 x**3 - 0.5, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000008}, !- Handle - VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name - -0.3477, !- Coefficient1 Constant - 4.0976, !- Coefficient2 x - -5.0024, !- Coefficient3 x**2 - 2.268, !- Coefficient4 x**3 - 0.22, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000001}, !- Handle - Curve Quadratic 1, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000002}, !- Handle - Curve Quadratic 2, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000003}, !- Handle - Curve Quadratic 3, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000004}, !- Handle - Curve Quadratic 4, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000005}, !- Handle - DXCOOL-NECB2011-REF-CAPFFLOW, !- Name - 0.8, !- Coefficient1 Constant - 0.2, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000006}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name - 1.1552, !- Coefficient1 Constant - -0.1808, !- Coefficient2 x - 0.0256, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000007}, !- Handle - WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name - 0.171493, !- Coefficient1 Constant - 0.588202, !- Coefficient2 x - 0.237373, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000008}, !- Handle - WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name - 0.04412, !- Coefficient1 Constant - 0.640367, !- Coefficient2 x - 0.319555, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:DefaultConstructionSet, - {00000000-0000-0000-0031-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name - {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name - {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name - {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name - {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name - {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - , !- Site Shading Construction Name - ; !- Adiabatic Surface Construction Name - -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000001}, !- Handle - Space Function - undefined - Schedule Set, !- 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 - {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000002}, !- Handle - Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0066-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0066-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0066-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0066-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000003}, !- Handle - Space Function Office open plan Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0066-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0066-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0066-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0066-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000006}, !- Door Construction Name - {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000002}, !- Handle - Default Sub Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000030}, !- 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:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000003}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000005}, !- Door Construction Name - {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000002}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000003}, !- Handle - Default Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000004}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000005}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name - -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000001}, !- Handle - Space Function - undefined - Ventilation, !- Name - , !- Outdoor Air Method - 0, !- Outdoor Air Flow per Person {m3/s-person} - 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000002}, !- Handle - Space Function Electrical/Mechanical room-sch-A Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.0003048, !- 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:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000003}, !- Handle - Space Function Office open plan Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.002539077244416, !- Outdoor Air Flow per Person {m3/s-person} - 0.0003048, !- 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:ElectricEquipment, - {00000000-0000-0000-0036-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name - {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory - -OS:ElectricEquipment, - {00000000-0000-0000-0036-000000000002}, !- Handle - Space Function Office open plan Elec Equip, !- Name - {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory - -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 1.0003634216273, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant - -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000002}, !- Handle - Space Function Office open plan Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.50272566220473, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name - {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name - {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000005}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_ClgSch0, !- Name - {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0038-000000000006}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_HtgSch0, !- Name - {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {20a6caef-827b-4a16-9c4a-0018e2ce9814}<23.9 && {20a6caef-827b-4a16-9c4a-0018e2ce9814}>1.7, !- Program Line 1 - SET {efd7992e-3c4f-490e-ac65-86c0483a2067} = 29.4, !- Program Line 2 - SET {26c9ca14-6052-41a4-8f54-48c6d78e0ea3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {20a6caef-827b-4a16-9c4a-0018e2ce9814}<23.9 && {20a6caef-827b-4a16-9c4a-0018e2ce9814}>1.7, !- Program Line 4 - SET {efd7992e-3c4f-490e-ac65-86c0483a2067} = 29.4, !- Program Line 5 - SET {26c9ca14-6052-41a4-8f54-48c6d78e0ea3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {20a6caef-827b-4a16-9c4a-0018e2ce9814}<23.9 && {20a6caef-827b-4a16-9c4a-0018e2ce9814}>1.7, !- Program Line 7 - SET {efd7992e-3c4f-490e-ac65-86c0483a2067} = 29.4, !- Program Line 8 - SET {26c9ca14-6052-41a4-8f54-48c6d78e0ea3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {20a6caef-827b-4a16-9c4a-0018e2ce9814}<23.9 && {20a6caef-827b-4a16-9c4a-0018e2ce9814}>1.7, !- Program Line 10 - SET {efd7992e-3c4f-490e-ac65-86c0483a2067} = 29.4, !- Program Line 11 - SET {26c9ca14-6052-41a4-8f54-48c6d78e0ea3} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {efd7992e-3c4f-490e-ac65-86c0483a2067} = NULL, !- Program Line 14 - SET {26c9ca14-6052-41a4-8f54-48c6d78e0ea3} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0039-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4ffe377b-5797-4332-9c28-869b53d26bb7}<23.9 && {4ffe377b-5797-4332-9c28-869b53d26bb7}>1.7, !- Program Line 1 - SET {ca91baa0-58c8-4fa4-9c17-76d274022463} = 29.4, !- Program Line 2 - SET {8c5f1783-4d53-4d2f-b7a7-86423c776bd7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4ffe377b-5797-4332-9c28-869b53d26bb7}<23.9 && {4ffe377b-5797-4332-9c28-869b53d26bb7}>1.7, !- Program Line 4 - SET {ca91baa0-58c8-4fa4-9c17-76d274022463} = 29.4, !- Program Line 5 - SET {8c5f1783-4d53-4d2f-b7a7-86423c776bd7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4ffe377b-5797-4332-9c28-869b53d26bb7}<23.9 && {4ffe377b-5797-4332-9c28-869b53d26bb7}>1.7, !- Program Line 7 - SET {ca91baa0-58c8-4fa4-9c17-76d274022463} = 29.4, !- Program Line 8 - SET {8c5f1783-4d53-4d2f-b7a7-86423c776bd7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4ffe377b-5797-4332-9c28-869b53d26bb7}<23.9 && {4ffe377b-5797-4332-9c28-869b53d26bb7}>1.7, !- Program Line 10 - SET {ca91baa0-58c8-4fa4-9c17-76d274022463} = 29.4, !- Program Line 11 - SET {8c5f1783-4d53-4d2f-b7a7-86423c776bd7} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {ca91baa0-58c8-4fa4-9c17-76d274022463} = NULL, !- Program Line 14 - SET {8c5f1783-4d53-4d2f-b7a7-86423c776bd7} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0039-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e1cff63a-9b36-4aea-8e92-513b27df16ac}<23.9 && {e1cff63a-9b36-4aea-8e92-513b27df16ac}>1.7, !- Program Line 1 - SET {e6610f79-8390-4021-8db2-3fac7586a55f} = 29.4, !- Program Line 2 - SET {e09ced3e-e5fd-4636-8a0b-e9c7ffa17179} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e1cff63a-9b36-4aea-8e92-513b27df16ac}<23.9 && {e1cff63a-9b36-4aea-8e92-513b27df16ac}>1.7, !- Program Line 4 - SET {e6610f79-8390-4021-8db2-3fac7586a55f} = 29.4, !- Program Line 5 - SET {e09ced3e-e5fd-4636-8a0b-e9c7ffa17179} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e1cff63a-9b36-4aea-8e92-513b27df16ac}<23.9 && {e1cff63a-9b36-4aea-8e92-513b27df16ac}>1.7, !- Program Line 7 - SET {e6610f79-8390-4021-8db2-3fac7586a55f} = 29.4, !- Program Line 8 - SET {e09ced3e-e5fd-4636-8a0b-e9c7ffa17179} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e1cff63a-9b36-4aea-8e92-513b27df16ac}<23.9 && {e1cff63a-9b36-4aea-8e92-513b27df16ac}>1.7, !- Program Line 10 - SET {e6610f79-8390-4021-8db2-3fac7586a55f} = 29.4, !- Program Line 11 - SET {e09ced3e-e5fd-4636-8a0b-e9c7ffa17179} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {e6610f79-8390-4021-8db2-3fac7586a55f} = NULL, !- Program Line 14 - SET {e09ced3e-e5fd-4636-8a0b-e9c7ffa17179} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0040-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0039-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0040-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0039-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0040-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0039-000000000003}; !- Program Name 1 - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0041-000000000001}, !- Handle - OAT, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0041-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0041-000000000003}, !- Handle - OAT_2, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:Facility, - {00000000-0000-0000-0042-000000000001}; !- Handle - -OS:Fan:ConstantVolume, - {00000000-0000-0000-0043-000000000001}, !- Handle - Fan Constant Volume 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.39975, !- Fan Total Efficiency - 640, !- Pressure Rise {Pa} - AutoSize, !- Maximum Flow Rate {m3/s} - 0.615, !- Motor Efficiency - , !- Motor In Airstream Fraction - {00000000-0000-0000-0020-000000000080}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000078}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000206}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000207}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000314}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000315}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000003}, !- Handle - Sys6 Return Fan 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000422}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000423}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000004}, !- Handle - Sys6 Return Fan, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000168}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000169}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000005}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000201}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000199}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000006}, !- Handle - Sys6 Supply Fan 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.22, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -0.3477, !- Fan Power Coefficient 1 - 4.0976, !- Fan Power Coefficient 2 - -5.0024, !- Fan Power Coefficient 3 - 2.268, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000309}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000307}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000007}, !- Handle - Sys6 Supply Fan 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000417}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000415}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0044-000000000008}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000163}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000161}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Foundation:Kiva, - {00000000-0000-0000-0045-000000000001}, !- Handle - Bldg Kiva Foundation, !- Name - , !- Initial Indoor Air Temperature {C} - , !- Interior Horizontal Insulation Material Name - , !- Interior Horizontal Insulation Depth {m} - , !- Interior Horizontal Insulation Width {m} - , !- Interior Vertical Insulation Material Name - , !- Interior Vertical Insulation Depth {m} - , !- Exterior Horizontal Insulation Material Name - , !- Exterior Horizontal Insulation Depth {m} - , !- Exterior Horizontal Insulation Width {m} - , !- Exterior Vertical Insulation Material Name - , !- Exterior Vertical Insulation Depth {m} - 0, !- Wall Height Above Grade {m} - 0, !- Wall Depth Below Slab {m} - , !- Footing Wall Construction Name - , !- Footing Material Name - ; !- Footing Depth {m} - -OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0046-000000000001}, !- Handle - , !- Soil Conductivity {W/m-K} - , !- Soil Density {kg/m3} - , !- Soil Specific Heat {J/kg-K} - , !- Ground Solar Absorptivity {dimensionless} - , !- Ground Thermal Absorptivity {dimensionless} - , !- Ground Surface Roughness {m} - , !- Far-Field Width {m} - , !- Deep-Ground Boundary Condition - , !- Deep-Ground Depth {m} - , !- Minimum Cell Dimension {m} - , !- Maximum Cell Growth Coefficient {dimensionless} - ; !- Simulation Timestep - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0047-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000611}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000612}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000615}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000616}, !- Exhaust Air Outlet Node - 657.843925054951, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0047-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000623}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000624}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000627}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000628}, !- Exhaust Air Outlet Node - 1153.90903758374, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0047-000000000003}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000629}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000630}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000633}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000634}, !- Exhaust Air Outlet Node - 11089.0903758374, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0047-000000000004}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000635}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000636}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000639}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000640}, !- Exhaust Air Outlet Node - 1153.90903758374, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0047-000000000005}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000617}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000618}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000621}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000622}, !- Exhaust Air Outlet Node - 292.796810422557, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout + {00000000-0000-0000-0020-000000000267}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0049-000000000091}, !- Target Object + 2; !- Inlet Port -OS:Lights, - {00000000-0000-0000-0048-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Lights, !- Name - {00000000-0000-0000-0049-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory +OS:Connection, + {00000000-0000-0000-0020-000000000268}, !- Handle + {00000000-0000-0000-0049-000000000091}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000015}, !- Target Object + 2; !- Inlet Port -OS:Lights, - {00000000-0000-0000-0048-000000000002}, !- Handle - Space Function Office open plan Lights, !- Name - {00000000-0000-0000-0049-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory +OS:Connection, + {00000000-0000-0000-0020-000000000269}, !- Handle + {00000000-0000-0000-0096-000000000015}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000092}, !- Target Object + 2; !- Inlet Port -OS:Lights:Definition, - {00000000-0000-0000-0049-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.60167173948557, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible +OS:Connection, + {00000000-0000-0000-0020-000000000270}, !- Handle + {00000000-0000-0000-0049-000000000092}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 18; !- Inlet Port -OS:Lights:Definition, - {00000000-0000-0000-0049-000000000002}, !- Handle - Space Function Office open plan Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 6.60000638299888, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible +OS:Connection, + {00000000-0000-0000-0020-000000000271}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0049-000000000093}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000001}, !- Handle - 1/2IN Gypsum 1, !- 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:Connection, + {00000000-0000-0000-0020-000000000272}, !- Handle + {00000000-0000-0000-0049-000000000093}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000016}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000002}, !- 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:Connection, + {00000000-0000-0000-0020-000000000273}, !- Handle + {00000000-0000-0000-0096-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000094}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000003}, !- Handle - 100mm Normalweight concrete floor 1, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} +OS:Connection, + {00000000-0000-0000-0020-000000000274}, !- Handle + {00000000-0000-0000-0049-000000000094}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 19; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000004}, !- Handle - 100mm Normalweight concrete floor, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} +OS:Connection, + {00000000-0000-0000-0020-000000000275}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0049-000000000095}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000005}, !- Handle - 1IN Stucco 1, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000276}, !- Handle + {00000000-0000-0000-0049-000000000095}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000017}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000006}, !- Handle - 1IN Stucco, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000277}, !- Handle + {00000000-0000-0000-0096-000000000017}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000096}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000007}, !- Handle - 4 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000278}, !- Handle + {00000000-0000-0000-0049-000000000096}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 20; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000008}, !- Handle - 4 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000279}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0049-000000000097}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000009}, !- Handle - 6 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000280}, !- Handle + {00000000-0000-0000-0049-000000000097}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000018}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000010}, !- Handle - 6 in. Normalweight Concrete Floor 2, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000281}, !- Handle + {00000000-0000-0000-0096-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000098}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000011}, !- Handle - 6 in. Normalweight Concrete Floor 3, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000282}, !- Handle + {00000000-0000-0000-0049-000000000098}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 21; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000012}, !- Handle - 6 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000283}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0049-000000000099}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000013}, !- Handle - 8IN CONCRETE HW RefBldg 1, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000284}, !- Handle + {00000000-0000-0000-0049-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000019}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000014}, !- Handle - 8IN CONCRETE HW RefBldg, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000285}, !- Handle + {00000000-0000-0000-0096-000000000019}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000100}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000286}, !- Handle + {00000000-0000-0000-0049-000000000100}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 22; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000015}, !- Handle - Expanded Polystyrene 1, !- Name - MediumSmooth, !- Roughness - 0.100199429303091, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} +OS:Connection, + {00000000-0000-0000-0020-000000000287}, !- Handle + {00000000-0000-0000-0049-000000000137}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000001}, !- Target Object + 12; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000016}, !- Handle - Expanded Polystyrene, !- Name - MediumSmooth, !- Roughness - 0.0363958681740979, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} +OS:Connection, + {00000000-0000-0000-0020-000000000288}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000141}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000017}, !- Handle - F08 Metal surface 1, !- 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:Connection, + {00000000-0000-0000-0020-000000000289}, !- Handle + {00000000-0000-0000-0049-000000000141}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 6; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000018}, !- 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:Connection, + {00000000-0000-0000-0020-000000000290}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000142}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000019}, !- Handle - G01 13mm gypsum board 1, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000291}, !- Handle + {00000000-0000-0000-0049-000000000142}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000001}, !- Target Object + 14; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000020}, !- Handle - G01 13mm gypsum board, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000292}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0049-000000000138}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000021}, !- 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:Connection, + {00000000-0000-0000-0020-000000000293}, !- Handle + {00000000-0000-0000-0049-000000000146}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000002}, !- Target Object + 12; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000022}, !- Handle - M10 200mm concrete block basement wall, !- Name - MediumRough, !- Roughness - 0.2032, !- Thickness {m} - 1.326, !- Conductivity {W/m-K} - 1842, !- Density {kg/m3} - 912; !- Specific Heat {J/kg-K} +OS:Connection, + {00000000-0000-0000-0020-000000000294}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000150}, !- Target Object + 2; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000023}, !- Handle - Metal Roof Surface 1, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000295}, !- Handle + {00000000-0000-0000-0049-000000000150}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port -OS:Material, - {00000000-0000-0000-0050-000000000024}, !- Handle - Metal Roof Surface, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000296}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000151}, !- Target Object + 2; !- Inlet Port -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000001}, !- Handle - CP02 CARPET PAD, !- Name - VeryRough, !- Roughness - 0.21648, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000297}, !- Handle + {00000000-0000-0000-0049-000000000151}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000002}, !- Target Object + 14; !- Inlet Port -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000002}, !- Handle - Nonres_Floor_Insulation, !- Name - MediumSmooth, !- Roughness - 2.88291975297193, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connection, + {00000000-0000-0000-0020-000000000298}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0049-000000000147}, !- Target Object + 2; !- Inlet Port -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000003}, !- Handle - Typical Carpet Pad 1, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000001}, !- Handle + Connector Mixer 1, !- Name + {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000004}, !- Handle - Typical Carpet Pad 2, !- Name - Smooth, !- Roughness - 1.25502993703786, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000002}, !- Handle + Connector Mixer 2, !- Name + {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000088}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000157}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000174}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000178}; !- Inlet Branch Name 4 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000005}, !- Handle - Typical Carpet Pad 3, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000003}, !- Handle + Connector Mixer 3, !- Name + {00000000-0000-0000-0020-000000000117}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000108}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000112}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000116}; !- Inlet Branch Name 3 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000006}, !- Handle - Typical Carpet Pad 4, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000004}, !- Handle + Connector Mixer 4, !- Name + {00000000-0000-0000-0020-000000000101}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000160}; !- Inlet Branch Name 1 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000007}, !- Handle - Typical Carpet Pad, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000005}, !- Handle + Connector Mixer 5, !- Name + {00000000-0000-0000-0020-000000000138}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000133}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000137}; !- Inlet Branch Name 2 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000008}, !- Handle - Typical Insulation 1, !- Name - Smooth, !- Roughness - 6.98591414061624, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000006}, !- Handle + Connector Mixer 6, !- Name + {00000000-0000-0000-0020-000000000126}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000143}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000147}; !- Inlet Branch Name 2 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000009}, !- Handle - Typical Insulation 2, !- Name - Smooth, !- Roughness - 4.38022034120929, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000007}, !- Handle + Connector Mixer 7, !- Name + {00000000-0000-0000-0020-000000000205}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000197}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000201}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000008}, !- Handle + Connector Mixer 8, !- Name + {00000000-0000-0000-0020-000000000208}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000204}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000214}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000218}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000222}, !- Inlet Branch Name 4 + {00000000-0000-0000-0020-000000000226}, !- Inlet Branch Name 5 + {00000000-0000-0000-0020-000000000230}, !- Inlet Branch Name 6 + {00000000-0000-0000-0020-000000000234}, !- Inlet Branch Name 7 + {00000000-0000-0000-0020-000000000238}, !- Inlet Branch Name 8 + {00000000-0000-0000-0020-000000000242}, !- Inlet Branch Name 9 + {00000000-0000-0000-0020-000000000246}, !- Inlet Branch Name 10 + {00000000-0000-0000-0020-000000000250}, !- Inlet Branch Name 11 + {00000000-0000-0000-0020-000000000254}, !- Inlet Branch Name 12 + {00000000-0000-0000-0020-000000000258}, !- Inlet Branch Name 13 + {00000000-0000-0000-0020-000000000262}, !- Inlet Branch Name 14 + {00000000-0000-0000-0020-000000000266}, !- Inlet Branch Name 15 + {00000000-0000-0000-0020-000000000270}, !- Inlet Branch Name 16 + {00000000-0000-0000-0020-000000000274}, !- Inlet Branch Name 17 + {00000000-0000-0000-0020-000000000278}, !- Inlet Branch Name 18 + {00000000-0000-0000-0020-000000000282}, !- Inlet Branch Name 19 + {00000000-0000-0000-0020-000000000286}; !- Inlet Branch Name 20 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000010}, !- Handle - Typical Insulation 3, !- Name - Smooth, !- Roughness - 8.26444514207283, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000001}, !- Handle + Connector Splitter 1, !- Name + {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000011}, !- Handle - Typical Insulation 4, !- Name - Smooth, !- Roughness - 0.578017014236402, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000002}, !- Handle + Connector Splitter 2, !- Name + {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000154}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000171}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000175}; !- Outlet Branch Name 4 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000012}, !- Handle - Typical Insulation 5, !- Name - Smooth, !- Roughness - 0.578034682080925, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000003}, !- Handle + Connector Splitter 3, !- Name + {00000000-0000-0000-0020-000000000105}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000096}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000109}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000113}; !- Outlet Branch Name 3 -OS:Material:NoMass, - {00000000-0000-0000-0051-000000000013}, !- Handle - Typical Insulation, !- Name - Smooth, !- Roughness - 0.101874652714525, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000004}, !- Handle + Connector Splitter 4, !- Name + {00000000-0000-0000-0020-000000000099}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000100}; !- Outlet Branch Name 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000001}, !- Handle - Availability Manager Night Cycle 1 Control Zone List; !- Name +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000005}, !- Handle + Connector Splitter 5, !- Name + {00000000-0000-0000-0020-000000000130}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000121}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000134}; !- Outlet Branch Name 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000002}, !- Handle - Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000006}, !- Handle + Connector Splitter 6, !- Name + {00000000-0000-0000-0020-000000000124}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000125}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000144}; !- Outlet Branch Name 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000003}, !- Handle - Availability Manager Night Cycle 1 Heating Control Zone List; !- Name +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000007}, !- Handle + Connector Splitter 7, !- Name + {00000000-0000-0000-0020-000000000194}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000186}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000198}; !- Outlet Branch Name 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000004}, !- Handle - Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000008}, !- Handle + Connector Splitter 8, !- Name + {00000000-0000-0000-0020-000000000189}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000190}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000211}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000215}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000219}, !- Outlet Branch Name 4 + {00000000-0000-0000-0020-000000000223}, !- Outlet Branch Name 5 + {00000000-0000-0000-0020-000000000227}, !- Outlet Branch Name 6 + {00000000-0000-0000-0020-000000000231}, !- Outlet Branch Name 7 + {00000000-0000-0000-0020-000000000235}, !- Outlet Branch Name 8 + {00000000-0000-0000-0020-000000000239}, !- Outlet Branch Name 9 + {00000000-0000-0000-0020-000000000243}, !- Outlet Branch Name 10 + {00000000-0000-0000-0020-000000000247}, !- Outlet Branch Name 11 + {00000000-0000-0000-0020-000000000251}, !- Outlet Branch Name 12 + {00000000-0000-0000-0020-000000000255}, !- Outlet Branch Name 13 + {00000000-0000-0000-0020-000000000259}, !- Outlet Branch Name 14 + {00000000-0000-0000-0020-000000000263}, !- Outlet Branch Name 15 + {00000000-0000-0000-0020-000000000267}, !- Outlet Branch Name 16 + {00000000-0000-0000-0020-000000000271}, !- Outlet Branch Name 17 + {00000000-0000-0000-0020-000000000275}, !- Outlet Branch Name 18 + {00000000-0000-0000-0020-000000000279}, !- Outlet Branch Name 19 + {00000000-0000-0000-0020-000000000283}; !- Outlet Branch Name 20 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000001}, !- Handle + BTAP-Ext-DaylightDiffuser, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000002}, !- Handle + BTAP-Ext-DaylightDiffuser:U=0.241 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000003}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000003}, !- Handle + BTAP-Ext-DaylightDomes, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000004}, !- Handle + BTAP-Ext-DaylightDomes:U=0.241 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000003}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000005}, !- Handle + BTAP-Ext-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000018}, !- Layer 1 + {00000000-0000-0000-0047-000000000013}; !- Layer 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000006}, !- Handle + BTAP-Ext-Door:U-1.73, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000017}, !- Layer 1 + {00000000-0000-0000-0047-000000000011}; !- Layer 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000007}, !- Handle + BTAP-Ext-FixedWindow, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000008}, !- Handle + BTAP-Ext-FixedWindow:U=0.173 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000002}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000013}, !- Handle - Availability Manager Night Cycle 4 Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000009}, !- Handle + BTAP-Ext-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000013}, !- Layer 1 + {00000000-0000-0000-0046-000000000008}, !- Layer 2 + {00000000-0000-0000-0047-000000000007}; !- Layer 3 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000014}, !- Handle - Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000010}, !- Handle + BTAP-Ext-Floor-Mass:U-0.138, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000008}, !- Layer 1 + {00000000-0000-0000-0046-000000000007}, !- Layer 2 + {00000000-0000-0000-0047-000000000003}; !- Layer 3 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000015}, !- Handle - Availability Manager Night Cycle 4 Heating Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000011}, !- Handle + BTAP-Ext-GlassDoors, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000016}, !- Handle - Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000012}, !- Handle + BTAP-Ext-GlassDoors:U=0.173 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000002}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000017}, !- Handle - Availability Manager Night Cycle 5 Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000013}, !- Handle + BTAP-Ext-OverHeadDoor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000013}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000018}, !- Handle - Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000014}, !- Handle + BTAP-Ext-OverHeadDoor:U-1.73, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000012}; !- Layer 1 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000019}, !- Handle - Availability Manager Night Cycle 5 Heating Control Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000015}, !- Handle + BTAP-Ext-Roof-Metal, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000024}, !- Layer 1 + {00000000-0000-0000-0047-000000000013}; !- Layer 2 -OS:ModelObjectList, - {00000000-0000-0000-0052-000000000020}, !- Handle - Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name +OS:Construction, + {00000000-0000-0000-0023-000000000016}, !- Handle + BTAP-Ext-Roof-Metal:U-0.121, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000023}, !- Layer 1 + {00000000-0000-0000-0047-000000000010}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000001}, !- Handle - 1089gal NaturalGas Water Heater - 735kBtu/hr 0.905 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000510}, !- Inlet Port - {00000000-0000-0000-0020-000000000519}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000017}, !- Handle + BTAP-Ext-Skylights, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000002}, !- Handle - 1089gal NaturalGas Water Heater - 735kBtu/hr 0.905 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000520}, !- Inlet Port - {00000000-0000-0000-0020-000000000521}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000018}, !- Handle + BTAP-Ext-Skylights:U=0.241 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000003}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000003}, !- Handle - ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000025}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000019}, !- Handle + BTAP-Ext-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000006}, !- Layer 1 + {00000000-0000-0000-0046-000000000014}, !- Layer 2 + {00000000-0000-0000-0047-000000000013}, !- Layer 3 + {00000000-0000-0000-0046-000000000002}; !- Layer 4 -OS:Node, - {00000000-0000-0000-0053-000000000004}, !- Handle - ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000037}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000020}, !- Handle + BTAP-Ext-Wall-Mass:U-0.215, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000005}, !- Layer 1 + {00000000-0000-0000-0046-000000000013}, !- Layer 2 + {00000000-0000-0000-0047-000000000009}, !- Layer 3 + {00000000-0000-0000-0046-000000000001}; !- Layer 4 -OS:Node, - {00000000-0000-0000-0053-000000000005}, !- Handle - ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000027}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000021}, !- Handle + BTAP-Grnd-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000012}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000006}, !- Handle - ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000180}, !- Inlet Port - {00000000-0000-0000-0020-000000000181}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000022}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000009}, !- Layer 1 + {00000000-0000-0000-0047-000000000004}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000007}, !- Handle - ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000036}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000023}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000009}, !- Layer 1 + {00000000-0000-0000-0046-000000000016}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000008}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000232}, !- Inlet Port - {00000000-0000-0000-0020-000000000233}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000024}, !- Handle + BTAP-Grnd-Roof-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000012}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000009}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000030}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000025}, !- Handle + BTAP-Grnd-Roof-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000011}, !- Layer 1 + {00000000-0000-0000-0047-000000000006}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000010}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000260}, !- Inlet Port - {00000000-0000-0000-0020-000000000261}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000026}, !- Handle + BTAP-Grnd-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000012}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000011}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000031}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000027}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000010}, !- Layer 1 + {00000000-0000-0000-0047-000000000005}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000012}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000218}, !- Inlet Port - {00000000-0000-0000-0020-000000000219}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000028}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000010}, !- Layer 1 + {00000000-0000-0000-0046-000000000015}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000013}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000038}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000029}, !- Handle + BTAP-Int-Ceiling, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000007}, !- Layer 1 + {00000000-0000-0000-0046-000000000003}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000014}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000274}, !- Inlet Port - {00000000-0000-0000-0020-000000000275}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000030}, !- Handle + BTAP-Int-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000021}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000015}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000043}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000031}, !- Handle + BTAP-Int-Floor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000003}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000016}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000246}, !- Inlet Port - {00000000-0000-0000-0020-000000000247}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000032}, !- Handle + BTAP-Int-Partition, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000021}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000017}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000045}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000033}, !- Handle + BTAP-Int-Wall, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000019}, !- Layer 1 + {00000000-0000-0000-0046-000000000019}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000018}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000288}, !- Inlet Port - {00000000-0000-0000-0020-000000000289}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000034}, !- Handle + BTAP-Int-Window, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0100-000000000001}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000019}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000024}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000035}, !- Handle + Basement Floor construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000022}, !- Layer 1 + {00000000-0000-0000-0047-000000000001}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000020}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000368}, !- Inlet Port - {00000000-0000-0000-0020-000000000369}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000036}, !- Handle + Basement Wall construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000022}; !- Layer 1 -OS:Node, - {00000000-0000-0000-0053-000000000021}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000033}, !- Inlet Port - ; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000037}, !- Handle + Floor Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0047-000000000001}, !- Layer 1 + {00000000-0000-0000-0046-000000000004}, !- Layer 2 + {00000000-0000-0000-0047-000000000002}; !- Layer 3 -OS:Node, - {00000000-0000-0000-0053-000000000022}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000354}, !- Inlet Port - {00000000-0000-0000-0020-000000000355}; !- Outlet Port +OS:Construction, + {00000000-0000-0000-0023-000000000038}, !- Handle + Wall Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000020}, !- Layer 1 + {00000000-0000-0000-0046-000000000020}; !- Layer 2 -OS:Node, - {00000000-0000-0000-0053-000000000023}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000035}, !- Inlet Port - ; !- Outlet Port +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method -OS:Node, - {00000000-0000-0000-0053-000000000024}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000340}, !- Inlet Port - {00000000-0000-0000-0020-000000000341}; !- Outlet Port +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method -OS:Node, - {00000000-0000-0000-0053-000000000025}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000040}, !- Inlet Port - ; !- Outlet Port +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0062-000000000023}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Node, - {00000000-0000-0000-0053-000000000026}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000326}, !- Inlet Port - {00000000-0000-0000-0020-000000000327}; !- Outlet Port +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0062-000000000024}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Node, - {00000000-0000-0000-0053-000000000027}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000042}, !- Inlet Port - ; !- Outlet Port +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000001}, !- Handle + Controller Water Coil 1, !- Name + {00000000-0000-0000-0018-000000000001}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Node, - {00000000-0000-0000-0053-000000000028}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000382}, !- Inlet Port - {00000000-0000-0000-0020-000000000383}; !- Outlet Port +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000002}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0016-000000000001}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Node, - {00000000-0000-0000-0053-000000000029}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000044}, !- Inlet Port - ; !- Outlet Port +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000003}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0018-000000000002}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Node, - {00000000-0000-0000-0053-000000000030}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000396}, !- Inlet Port - {00000000-0000-0000-0020-000000000397}; !- Outlet Port +OS:CoolingTower:SingleSpeed, + {00000000-0000-0000-0027-000000000001}, !- Handle + Cooling Tower Single Speed 1, !- Name + {00000000-0000-0000-0020-000000000131}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000132}, !- Water Outlet Node Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + 228.936804464239, !- Fan Power at Design Air Flow Rate {W} + autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} + autosize, !- Air Flow Rate in Free Convection Regime {m3/s} + autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + , !- Nominal Capacity {W} + 0, !- Free Convection Capacity {W} + 0, !- Basin Heater Capacity {W/K} + 2, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + LossFactor, !- Evaporation Loss Mode + 0.2, !- Evaporation Loss Factor {percent/K} + 0.008, !- Drift Loss Percent {percent} + ConcentrationRatio, !- Blowdown Calculation Mode + 3, !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Outdoor Air Inlet Node Name + FanCycling, !- Capacity Control + 1, !- Number of Cells + MinimalCell, !- Cell Control + 0.33, !- Cell Minimum Water Flow Rate Fraction + 2.5, !- Cell Maximum Water Flow Rate Fraction + 1, !- Sizing Factor + 0.1, !- Free Convection Air Flow Rate Sizing Factor + 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor + 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + 0.1, !- Free Convection Nominal Capacity Sizing Factor + 35, !- Design Inlet Air Dry-Bulb Temperature {C} + 24, !- Design Inlet Air Wet-Bulb Temperature {C} + 5, !- Design Approach Temperature {deltaC} + 6, !- Design Range Temperature {deltaC} + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000031}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000028}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000001}, !- Handle + Curve Biquadratic 1, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.000554364, !- Coefficient3 x**2 + -0.00755748, !- Coefficient4 y + 3.3048e-05, !- Coefficient5 y**2 + -0.000191808, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000002}, !- Handle + Curve Biquadratic 2, !- Name + 0.116936, !- Coefficient1 Constant + 0.0284933, !- Coefficient2 x + -0.000411156, !- Coefficient3 x**2 + 0.0214108, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000032}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000462}, !- Inlet Port - {00000000-0000-0000-0020-000000000463}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000003}, !- Handle + Curve Biquadratic 3, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000033}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000029}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000004}, !- Handle + Curve Biquadratic 4, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000034}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000476}, !- Inlet Port - {00000000-0000-0000-0020-000000000477}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000005}, !- Handle + Curve Biquadratic 5, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000035}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000032}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000006}, !- Handle + Curve Biquadratic 6, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000036}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000448}, !- Inlet Port - {00000000-0000-0000-0020-000000000449}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000007}, !- Handle + DXCOOL-NECB2011-REF-CAPFT, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.00055436, !- Coefficient3 x**2 + -0.0075575, !- Coefficient4 y + 3.3e-05, !- Coefficient5 y**2 + -0.0001918, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000037}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000034}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000008}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFT, !- Name + 0.1141714, !- Coefficient1 Constant + 0.02818224, !- Coefficient2 x + -0.0004199, !- Coefficient3 x**2 + 0.02141082, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000038}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000490}, !- Inlet Port - {00000000-0000-0000-0020-000000000491}; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000009}, !- Handle + WaterCooled_Scroll_CAPFT_NECB2011, !- Name + 0.94418, !- Coefficient1 Constant + 0.0337102, !- Coefficient2 x + 9.75564e-05, !- Coefficient3 x**2 + -0.00322114, !- Coefficient4 y + -4.91832e-05, !- Coefficient5 y**2 + -0.000177584, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000039}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000039}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000010}, !- Handle + WaterCooled_Scroll_EIRFT_NECB2011, !- Name + 0.727393, !- Coefficient1 Constant + -0.0118922, !- Coefficient2 x + 0.000541177, !- Coefficient3 x**2 + 0.00187934, !- Coefficient4 y + 0.000473461, !- Coefficient5 y**2 + -0.000711472, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y -OS:Node, - {00000000-0000-0000-0053-000000000040}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name - {00000000-0000-0000-0020-000000000434}, !- Inlet Port - {00000000-0000-0000-0020-000000000435}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000001}, !- Handle + BOILER-EFFFPLR-NECB2011, !- Name + 0.3831, !- Coefficient1 Constant + 2.0567, !- Coefficient2 x + -2.6469, !- Coefficient3 x**2 + 1.2148, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000041}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000041}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000002}, !- Handle + Curve Cubic 1, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000042}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000504}, !- Inlet Port - {00000000-0000-0000-0020-000000000505}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000003}, !- Handle + DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000043}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000026}, !- Inlet Port - ; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000004}, !- Handle + FURNACE-EFFPLR-NECB2011, !- Name + 0.722, !- Coefficient1 Constant + 0.8211, !- Coefficient2 x + -1.0396, !- Coefficient3 x**2 + 0.5, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000044}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000092}, !- Inlet Port - {00000000-0000-0000-0020-000000000093}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000005}, !- Handle + SWH-EFFFPLR-NECB2011, !- Name + 0.7576, !- Coefficient1 Constant + 1.0071, !- Coefficient2 x + -1.4443, !- Coefficient3 x**2 + 0.6844, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000045}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000094}, !- Inlet Port - {00000000-0000-0000-0020-000000000089}; !- Outlet Port +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000006}, !- Handle + VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name + -2.4176, !- Coefficient1 Constant + 9.5874, !- Coefficient2 x + -11.559, !- Coefficient3 x**2 + 5.4009, !- Coefficient4 x**3 + 0.68, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000182}, !- Inlet Port - {00000000-0000-0000-0020-000000000183}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000001}, !- Handle + Curve Quadratic 1, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000184}, !- Inlet Port - {00000000-0000-0000-0020-000000000179}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000002}, !- Handle + Curve Quadratic 2, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000356}, !- Inlet Port - {00000000-0000-0000-0020-000000000357}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000003}, !- Handle + Curve Quadratic 3, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000358}, !- Inlet Port - {00000000-0000-0000-0020-000000000353}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000004}, !- Handle + Curve Quadratic 4, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000050}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000370}, !- Inlet Port - {00000000-0000-0000-0020-000000000371}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000005}, !- Handle + DXCOOL-NECB2011-REF-CAPFFLOW, !- Name + 0.8, !- Coefficient1 Constant + 0.2, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000051}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000372}, !- Inlet Port - {00000000-0000-0000-0020-000000000367}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000006}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name + 1.1552, !- Coefficient1 Constant + -0.1808, !- Coefficient2 x + 0.0256, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000052}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000384}, !- Inlet Port - {00000000-0000-0000-0020-000000000385}; !- Outlet Port +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000007}, !- Handle + WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name + 0.04412, !- Coefficient1 Constant + 0.640367, !- Coefficient2 x + 0.319555, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x -OS:Node, - {00000000-0000-0000-0053-000000000053}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000386}, !- Inlet Port - {00000000-0000-0000-0020-000000000381}; !- Outlet Port +OS:DefaultConstructionSet, + {00000000-0000-0000-0031-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name + {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name + {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name + {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name + {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name + {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000054}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000398}, !- Inlet Port - {00000000-0000-0000-0020-000000000399}; !- Outlet Port +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000001}, !- Handle + Space Function - undefined - Schedule Set, !- 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 + {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name -OS:Node, - {00000000-0000-0000-0053-000000000055}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000400}, !- Inlet Port - {00000000-0000-0000-0020-000000000395}; !- Outlet Port +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000002}, !- Handle + Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0062-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0062-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name -OS:Node, - {00000000-0000-0000-0053-000000000056}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000436}, !- Inlet Port - {00000000-0000-0000-0020-000000000437}; !- Outlet Port +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000003}, !- Handle + Space Function Office open plan Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0062-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0062-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name -OS:Node, - {00000000-0000-0000-0053-000000000057}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000438}, !- Inlet Port - {00000000-0000-0000-0020-000000000433}; !- Outlet Port +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000006}, !- Door Construction Name + {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000450}, !- Inlet Port - {00000000-0000-0000-0020-000000000451}; !- Outlet Port +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000002}, !- Handle + Default Sub Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000030}, !- 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:Node, - {00000000-0000-0000-0053-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000452}, !- Inlet Port - {00000000-0000-0000-0020-000000000447}; !- Outlet Port +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000003}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000005}, !- Door Construction Name + {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000464}, !- Inlet Port - {00000000-0000-0000-0020-000000000465}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000466}, !- Inlet Port - {00000000-0000-0000-0020-000000000461}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000002}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000478}, !- Inlet Port - {00000000-0000-0000-0020-000000000479}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000003}, !- Handle + Default Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000480}, !- Inlet Port - {00000000-0000-0000-0020-000000000475}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000004}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000492}, !- Inlet Port - {00000000-0000-0000-0020-000000000493}; !- Outlet Port +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000005}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name -OS:Node, - {00000000-0000-0000-0053-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000494}, !- Inlet Port - {00000000-0000-0000-0020-000000000489}; !- Outlet Port +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000001}, !- Handle + Space Function - undefined - Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name -OS:Node, - {00000000-0000-0000-0053-000000000066}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000506}, !- Inlet Port - {00000000-0000-0000-0020-000000000507}; !- Outlet Port +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000002}, !- Handle + Space Function Electrical/Mechanical room-sch-A Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.0003048, !- 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:Node, - {00000000-0000-0000-0053-000000000067}, !- Handle - Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000508}, !- Inlet Port - {00000000-0000-0000-0020-000000000503}; !- Outlet Port +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000003}, !- Handle + Space Function Office open plan Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.002539077244416, !- Outdoor Air Flow per Person {m3/s-person} + 0.0003048, !- 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:Node, - {00000000-0000-0000-0053-000000000068}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000220}, !- Inlet Port - {00000000-0000-0000-0020-000000000221}; !- Outlet Port +OS:ElectricEquipment, + {00000000-0000-0000-0036-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name + {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000069}, !- Handle - Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000222}, !- Inlet Port - {00000000-0000-0000-0020-000000000217}; !- Outlet Port +OS:ElectricEquipment, + {00000000-0000-0000-0036-000000000002}, !- Handle + Space Function Office open plan Elec Equip, !- Name + {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000070}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000234}, !- Inlet Port - {00000000-0000-0000-0020-000000000235}; !- Outlet Port +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 1.0003634216273, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant -OS:Node, - {00000000-0000-0000-0053-000000000071}, !- Handle - Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000236}, !- Inlet Port - {00000000-0000-0000-0020-000000000231}; !- Outlet Port +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000002}, !- Handle + Space Function Office open plan Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.50272566220473, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant -OS:Node, - {00000000-0000-0000-0053-000000000072}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000248}, !- Inlet Port - {00000000-0000-0000-0020-000000000249}; !- Outlet Port +OS:Facility, + {00000000-0000-0000-0038-000000000001}; !- Handle -OS:Node, - {00000000-0000-0000-0053-000000000073}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000250}, !- Inlet Port - {00000000-0000-0000-0020-000000000245}; !- Outlet Port +OS:Fan:ConstantVolume, + {00000000-0000-0000-0039-000000000001}, !- Handle + Fan Constant Volume 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.39975, !- Fan Total Efficiency + 640, !- Pressure Rise {Pa} + AutoSize, !- Maximum Flow Rate {m3/s} + 0.615, !- Motor Efficiency + , !- Motor In Airstream Fraction + {00000000-0000-0000-0020-000000000080}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000078}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000074}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000262}, !- Inlet Port - {00000000-0000-0000-0020-000000000263}; !- Outlet Port +OS:Fan:VariableVolume, + {00000000-0000-0000-0040-000000000001}, !- Handle + Sys6 Return Fan, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000168}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000169}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000075}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000264}, !- Inlet Port - {00000000-0000-0000-0020-000000000259}; !- Outlet Port +OS:Fan:VariableVolume, + {00000000-0000-0000-0040-000000000002}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000163}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000161}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000076}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000276}, !- Inlet Port - {00000000-0000-0000-0020-000000000277}; !- Outlet Port +OS:Foundation:Kiva, + {00000000-0000-0000-0041-000000000001}, !- Handle + Bldg Kiva Foundation, !- Name + , !- Initial Indoor Air Temperature {C} + , !- Interior Horizontal Insulation Material Name + , !- Interior Horizontal Insulation Depth {m} + , !- Interior Horizontal Insulation Width {m} + , !- Interior Vertical Insulation Material Name + , !- Interior Vertical Insulation Depth {m} + , !- Exterior Horizontal Insulation Material Name + , !- Exterior Horizontal Insulation Depth {m} + , !- Exterior Horizontal Insulation Width {m} + , !- Exterior Vertical Insulation Material Name + , !- Exterior Vertical Insulation Depth {m} + 0, !- Wall Height Above Grade {m} + 0, !- Wall Depth Below Slab {m} + , !- Footing Wall Construction Name + , !- Footing Material Name + ; !- Footing Depth {m} -OS:Node, - {00000000-0000-0000-0053-000000000077}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000278}, !- Inlet Port - {00000000-0000-0000-0020-000000000273}; !- Outlet Port +OS:Foundation:Kiva:Settings, + {00000000-0000-0000-0042-000000000001}, !- Handle + , !- Soil Conductivity {W/m-K} + , !- Soil Density {kg/m3} + , !- Soil Specific Heat {J/kg-K} + , !- Ground Solar Absorptivity {dimensionless} + , !- Ground Thermal Absorptivity {dimensionless} + , !- Ground Surface Roughness {m} + , !- Far-Field Width {m} + , !- Deep-Ground Boundary Condition + , !- Deep-Ground Depth {m} + , !- Minimum Cell Dimension {m} + , !- Maximum Cell Growth Coefficient {dimensionless} + ; !- Simulation Timestep -OS:Node, - {00000000-0000-0000-0053-000000000078}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000290}, !- Inlet Port - {00000000-0000-0000-0020-000000000291}; !- Outlet Port +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0043-000000000001}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000287}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000288}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000291}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000292}, !- Exhaust Air Outlet Node + 657.843925054951, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout -OS:Node, - {00000000-0000-0000-0053-000000000079}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000292}, !- Inlet Port - {00000000-0000-0000-0020-000000000287}; !- Outlet Port +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0043-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000293}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000294}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000297}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000298}, !- Exhaust Air Outlet Node + 292.796810422557, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout -OS:Node, - {00000000-0000-0000-0053-000000000080}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000328}, !- Inlet Port - {00000000-0000-0000-0020-000000000329}; !- Outlet Port +OS:Lights, + {00000000-0000-0000-0044-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Lights, !- Name + {00000000-0000-0000-0045-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000081}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000330}, !- Inlet Port - {00000000-0000-0000-0020-000000000325}; !- Outlet Port +OS:Lights, + {00000000-0000-0000-0044-000000000002}, !- Handle + Space Function Office open plan Lights, !- Name + {00000000-0000-0000-0045-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:Node, - {00000000-0000-0000-0053-000000000082}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000342}, !- Inlet Port - {00000000-0000-0000-0020-000000000343}; !- Outlet Port +OS:Lights:Definition, + {00000000-0000-0000-0045-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.60167173948557, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible -OS:Node, - {00000000-0000-0000-0053-000000000083}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000344}, !- Inlet Port - {00000000-0000-0000-0020-000000000339}; !- Outlet Port +OS:Lights:Definition, + {00000000-0000-0000-0045-000000000002}, !- Handle + Space Function Office open plan Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.60000638299888, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible -OS:Node, - {00000000-0000-0000-0053-000000000084}, !- Handle - Chilled Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000098}, !- Inlet Port - {00000000-0000-0000-0020-000000000099}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000001}, !- Handle + 1/2IN Gypsum 1, !- 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:Node, - {00000000-0000-0000-0053-000000000085}, !- Handle - Chilled Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000101}, !- Inlet Port - {00000000-0000-0000-0020-000000000102}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000002}, !- 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:Node, - {00000000-0000-0000-0053-000000000086}, !- Handle - Chilled Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000095}, !- Inlet Port - {00000000-0000-0000-0020-000000000103}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000003}, !- Handle + 100mm Normalweight concrete floor 1, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0053-000000000087}, !- Handle - Chilled Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000119}, !- Inlet Port - {00000000-0000-0000-0020-000000000097}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000004}, !- Handle + 100mm Normalweight concrete floor, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0053-000000000088}, !- Handle - Coil Cooling Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000100}, !- Inlet Port - {00000000-0000-0000-0020-000000000158}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000005}, !- Handle + 1IN Stucco 1, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000089}, !- Handle - Coil Cooling Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000164}, !- Inlet Port - {00000000-0000-0000-0020-000000000165}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000006}, !- Handle + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000090}, !- Handle - Coil Cooling Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000159}, !- Inlet Port - {00000000-0000-0000-0020-000000000160}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000007}, !- Handle + 4 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000091}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000195}, !- Inlet Port - {00000000-0000-0000-0020-000000000196}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000008}, !- Handle + 4 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000092}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000202}, !- Inlet Port - {00000000-0000-0000-0020-000000000203}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000009}, !- Handle + 6 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000093}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000197}, !- Inlet Port - {00000000-0000-0000-0020-000000000198}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000010}, !- Handle + 6 in. Normalweight Concrete Floor 2, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000094}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000303}, !- Inlet Port - {00000000-0000-0000-0020-000000000304}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000011}, !- Handle + 6 in. Normalweight Concrete Floor 3, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000095}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000310}, !- Inlet Port - {00000000-0000-0000-0020-000000000311}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000012}, !- Handle + 6 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000096}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000305}, !- Inlet Port - {00000000-0000-0000-0020-000000000306}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000013}, !- Handle + 8IN CONCRETE HW RefBldg 1, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000097}, !- Handle - Coil Cooling Water 4 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000411}, !- Inlet Port - {00000000-0000-0000-0020-000000000412}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000014}, !- Handle + 8IN CONCRETE HW RefBldg, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000098}, !- Handle - Coil Cooling Water 4 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000418}, !- Inlet Port - {00000000-0000-0000-0020-000000000419}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000015}, !- Handle + Expanded Polystyrene 1, !- Name + MediumSmooth, !- Roughness + 0.100199429303091, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0053-000000000099}, !- Handle - Coil Cooling Water 4 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000413}, !- Inlet Port - {00000000-0000-0000-0020-000000000414}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000016}, !- Handle + Expanded Polystyrene, !- Name + MediumSmooth, !- Roughness + 0.0363958681740979, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0053-000000000100}, !- Handle - Coil Heating Gas 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000079}, !- Inlet Port - {00000000-0000-0000-0020-000000000080}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000017}, !- Handle + F08 Metal surface 1, !- 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:Node, - {00000000-0000-0000-0053-000000000101}, !- Handle - Coil Heating Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000154}, !- Inlet Port - {00000000-0000-0000-0020-000000000155}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000018}, !- 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:Node, - {00000000-0000-0000-0053-000000000102}, !- Handle - Coil Heating Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000162}, !- Inlet Port - {00000000-0000-0000-0020-000000000163}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000019}, !- Handle + G01 13mm gypsum board 1, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000103}, !- Handle - Coil Heating Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000156}, !- Inlet Port - {00000000-0000-0000-0020-000000000157}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000020}, !- Handle + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000104}, !- Handle - Coil Heating Water 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000299}, !- Inlet Port - {00000000-0000-0000-0020-000000000300}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000021}, !- 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:Node, - {00000000-0000-0000-0053-000000000105}, !- Handle - Coil Heating Water 10 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000308}, !- Inlet Port - {00000000-0000-0000-0020-000000000309}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000022}, !- Handle + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1842, !- Density {kg/m3} + 912; !- Specific Heat {J/kg-K} -OS:Node, - {00000000-0000-0000-0053-000000000106}, !- Handle - Coil Heating Water 10 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000301}, !- Inlet Port - {00000000-0000-0000-0020-000000000302}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000023}, !- Handle + Metal Roof Surface 1, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000107}, !- Handle - Coil Heating Water 11 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000317}, !- Inlet Port - {00000000-0000-0000-0020-000000000318}; !- Outlet Port +OS:Material, + {00000000-0000-0000-0046-000000000024}, !- Handle + Metal Roof Surface, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000108}, !- Handle - Coil Heating Water 11 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000319}, !- Inlet Port - {00000000-0000-0000-0020-000000000320}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000001}, !- Handle + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000109}, !- Handle - Coil Heating Water 12 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000331}, !- Inlet Port - {00000000-0000-0000-0020-000000000332}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000002}, !- Handle + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 2.88291975297193, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000110}, !- Handle - Coil Heating Water 12 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000333}, !- Inlet Port - {00000000-0000-0000-0020-000000000334}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000003}, !- Handle + Typical Carpet Pad 1, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000111}, !- Handle - Coil Heating Water 13 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000345}, !- Inlet Port - {00000000-0000-0000-0020-000000000346}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000004}, !- Handle + Typical Carpet Pad 2, !- Name + Smooth, !- Roughness + 1.25502993703786, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000112}, !- Handle - Coil Heating Water 13 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000347}, !- Inlet Port - {00000000-0000-0000-0020-000000000348}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000005}, !- Handle + Typical Carpet Pad 3, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000113}, !- Handle - Coil Heating Water 14 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000359}, !- Inlet Port - {00000000-0000-0000-0020-000000000360}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000006}, !- Handle + Typical Carpet Pad 4, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000114}, !- Handle - Coil Heating Water 14 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000361}, !- Inlet Port - {00000000-0000-0000-0020-000000000362}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000007}, !- Handle + Typical Carpet Pad, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000115}, !- Handle - Coil Heating Water 15 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000373}, !- Inlet Port - {00000000-0000-0000-0020-000000000374}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000008}, !- Handle + Typical Insulation 1, !- Name + Smooth, !- Roughness + 6.98591414061624, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000116}, !- Handle - Coil Heating Water 15 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000375}, !- Inlet Port - {00000000-0000-0000-0020-000000000376}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000009}, !- Handle + Typical Insulation 2, !- Name + Smooth, !- Roughness + 4.38022034120929, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000117}, !- Handle - Coil Heating Water 16 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000387}, !- Inlet Port - {00000000-0000-0000-0020-000000000388}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000010}, !- Handle + Typical Insulation 3, !- Name + Smooth, !- Roughness + 8.26444514207283, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000118}, !- Handle - Coil Heating Water 16 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000389}, !- Inlet Port - {00000000-0000-0000-0020-000000000390}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000011}, !- Handle + Typical Insulation 4, !- Name + Smooth, !- Roughness + 0.578017014236402, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000119}, !- Handle - Coil Heating Water 17 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000407}, !- Inlet Port - {00000000-0000-0000-0020-000000000408}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000012}, !- Handle + Typical Insulation 5, !- Name + Smooth, !- Roughness + 0.578034682080925, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000120}, !- Handle - Coil Heating Water 17 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000416}, !- Inlet Port - {00000000-0000-0000-0020-000000000417}; !- Outlet Port +OS:Material:NoMass, + {00000000-0000-0000-0047-000000000013}, !- Handle + Typical Insulation, !- Name + Smooth, !- Roughness + 0.101874652714525, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Node, - {00000000-0000-0000-0053-000000000121}, !- Handle - Coil Heating Water 17 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000409}, !- Inlet Port - {00000000-0000-0000-0020-000000000410}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000001}, !- Handle + Availability Manager Night Cycle 1 Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000122}, !- Handle - Coil Heating Water 18 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000425}, !- Inlet Port - {00000000-0000-0000-0020-000000000426}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000002}, !- Handle + Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000123}, !- Handle - Coil Heating Water 18 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000427}, !- Inlet Port - {00000000-0000-0000-0020-000000000428}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000003}, !- Handle + Availability Manager Night Cycle 1 Heating Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000124}, !- Handle - Coil Heating Water 19 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000439}, !- Inlet Port - {00000000-0000-0000-0020-000000000440}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000004}, !- Handle + Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000125}, !- Handle - Coil Heating Water 19 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000441}, !- Inlet Port - {00000000-0000-0000-0020-000000000442}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000126}, !- Handle - Coil Heating Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000171}, !- Inlet Port - {00000000-0000-0000-0020-000000000172}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000127}, !- Handle - Coil Heating Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000173}, !- Inlet Port - {00000000-0000-0000-0020-000000000174}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name -OS:Node, - {00000000-0000-0000-0053-000000000128}, !- Handle - Coil Heating Water 20 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000453}, !- Inlet Port - {00000000-0000-0000-0020-000000000454}; !- Outlet Port +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name OS:Node, - {00000000-0000-0000-0053-000000000129}, !- Handle - Coil Heating Water 20 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000455}, !- Inlet Port - {00000000-0000-0000-0020-000000000456}; !- Outlet Port + {00000000-0000-0000-0049-000000000001}, !- Handle + 1089gal NaturalGas Water Heater - 735kBtu/hr 0.905 Therm Eff Supply Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000186}, !- Inlet Port + {00000000-0000-0000-0020-000000000195}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000130}, !- Handle - Coil Heating Water 21 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000467}, !- Inlet Port - {00000000-0000-0000-0020-000000000468}; !- Outlet Port + {00000000-0000-0000-0049-000000000002}, !- Handle + 1089gal NaturalGas Water Heater - 735kBtu/hr 0.905 Therm Eff Supply Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000196}, !- Inlet Port + {00000000-0000-0000-0020-000000000197}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000131}, !- Handle - Coil Heating Water 21 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000469}, !- Inlet Port - {00000000-0000-0000-0020-000000000470}; !- Outlet Port + {00000000-0000-0000-0049-000000000003}, !- Handle + ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000025}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000132}, !- Handle - Coil Heating Water 22 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000481}, !- Inlet Port - {00000000-0000-0000-0020-000000000482}; !- Outlet Port + {00000000-0000-0000-0049-000000000004}, !- Handle + ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000037}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000133}, !- Handle - Coil Heating Water 22 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000483}, !- Inlet Port - {00000000-0000-0000-0020-000000000484}; !- Outlet Port + {00000000-0000-0000-0049-000000000005}, !- Handle + ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000027}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000134}, !- Handle - Coil Heating Water 23 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000495}, !- Inlet Port - {00000000-0000-0000-0020-000000000496}; !- Outlet Port + {00000000-0000-0000-0049-000000000006}, !- Handle + ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000180}, !- Inlet Port + {00000000-0000-0000-0020-000000000181}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000135}, !- Handle - Coil Heating Water 23 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000497}, !- Inlet Port - {00000000-0000-0000-0020-000000000498}; !- Outlet Port + {00000000-0000-0000-0049-000000000007}, !- Handle + ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000036}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000136}, !- Handle - Coil Heating Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000191}, !- Inlet Port - {00000000-0000-0000-0020-000000000192}; !- Outlet Port + {00000000-0000-0000-0049-000000000008}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000030}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000137}, !- Handle - Coil Heating Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000200}, !- Inlet Port - {00000000-0000-0000-0020-000000000201}; !- Outlet Port + {00000000-0000-0000-0049-000000000009}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000031}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000138}, !- Handle - Coil Heating Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000193}, !- Inlet Port - {00000000-0000-0000-0020-000000000194}; !- Outlet Port + {00000000-0000-0000-0049-000000000010}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000038}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000139}, !- Handle - Coil Heating Water 4 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000209}, !- Inlet Port - {00000000-0000-0000-0020-000000000210}; !- Outlet Port + {00000000-0000-0000-0049-000000000011}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000043}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000140}, !- Handle - Coil Heating Water 4 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000211}, !- Inlet Port - {00000000-0000-0000-0020-000000000212}; !- Outlet Port + {00000000-0000-0000-0049-000000000012}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000045}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000141}, !- Handle - Coil Heating Water 5 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000223}, !- Inlet Port - {00000000-0000-0000-0020-000000000224}; !- Outlet Port + {00000000-0000-0000-0049-000000000013}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000024}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000142}, !- Handle - Coil Heating Water 5 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000225}, !- Inlet Port - {00000000-0000-0000-0020-000000000226}; !- Outlet Port + {00000000-0000-0000-0049-000000000014}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000033}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000143}, !- Handle - Coil Heating Water 6 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000237}, !- Inlet Port - {00000000-0000-0000-0020-000000000238}; !- Outlet Port + {00000000-0000-0000-0049-000000000015}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000035}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000144}, !- Handle - Coil Heating Water 6 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000239}, !- Inlet Port - {00000000-0000-0000-0020-000000000240}; !- Outlet Port + {00000000-0000-0000-0049-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000040}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000145}, !- Handle - Coil Heating Water 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000251}, !- Inlet Port - {00000000-0000-0000-0020-000000000252}; !- Outlet Port + {00000000-0000-0000-0049-000000000017}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000042}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000146}, !- Handle - Coil Heating Water 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000253}, !- Inlet Port - {00000000-0000-0000-0020-000000000254}; !- Outlet Port + {00000000-0000-0000-0049-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000044}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000147}, !- Handle - Coil Heating Water 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000265}, !- Inlet Port - {00000000-0000-0000-0020-000000000266}; !- Outlet Port + {00000000-0000-0000-0049-000000000019}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000028}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000148}, !- Handle - Coil Heating Water 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000267}, !- Inlet Port - {00000000-0000-0000-0020-000000000268}; !- Outlet Port + {00000000-0000-0000-0049-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000029}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000149}, !- Handle - Coil Heating Water 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000279}, !- Inlet Port - {00000000-0000-0000-0020-000000000280}; !- Outlet Port + {00000000-0000-0000-0049-000000000021}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000032}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000150}, !- Handle - Coil Heating Water 9 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000281}, !- Inlet Port - {00000000-0000-0000-0020-000000000282}; !- Outlet Port + {00000000-0000-0000-0049-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000034}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000151}, !- Handle - Coil Heating Water Baseboard 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000052}, !- Inlet Port - {00000000-0000-0000-0020-000000000086}; !- Outlet Port + {00000000-0000-0000-0049-000000000023}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000039}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000152}, !- Handle - Coil Heating Water Baseboard 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000087}, !- Inlet Port - {00000000-0000-0000-0020-000000000088}; !- Outlet Port + {00000000-0000-0000-0049-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000041}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000153}, !- Handle - Coil Heating Water Baseboard 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000335}, !- Inlet Port - {00000000-0000-0000-0020-000000000336}; !- Outlet Port + {00000000-0000-0000-0049-000000000025}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000026}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000154}, !- Handle - Coil Heating Water Baseboard 10 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000337}, !- Inlet Port - {00000000-0000-0000-0020-000000000338}; !- Outlet Port + {00000000-0000-0000-0049-000000000026}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000092}, !- Inlet Port + {00000000-0000-0000-0020-000000000093}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000155}, !- Handle - Coil Heating Water Baseboard 11 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000349}, !- Inlet Port - {00000000-0000-0000-0020-000000000350}; !- Outlet Port + {00000000-0000-0000-0049-000000000027}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000094}, !- Inlet Port + {00000000-0000-0000-0020-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000156}, !- Handle - Coil Heating Water Baseboard 11 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000351}, !- Inlet Port - {00000000-0000-0000-0020-000000000352}; !- Outlet Port + {00000000-0000-0000-0049-000000000028}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000182}, !- Inlet Port + {00000000-0000-0000-0020-000000000183}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000157}, !- Handle - Coil Heating Water Baseboard 12 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000363}, !- Inlet Port - {00000000-0000-0000-0020-000000000364}; !- Outlet Port + {00000000-0000-0000-0049-000000000029}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000184}, !- Inlet Port + {00000000-0000-0000-0020-000000000179}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000158}, !- Handle - Coil Heating Water Baseboard 12 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000365}, !- Inlet Port - {00000000-0000-0000-0020-000000000366}; !- Outlet Port + {00000000-0000-0000-0049-000000000030}, !- Handle + Chilled Water Loop Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000098}, !- Inlet Port + {00000000-0000-0000-0020-000000000099}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000159}, !- Handle - Coil Heating Water Baseboard 13 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000377}, !- Inlet Port - {00000000-0000-0000-0020-000000000378}; !- Outlet Port + {00000000-0000-0000-0049-000000000031}, !- Handle + Chilled Water Loop Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000101}, !- Inlet Port + {00000000-0000-0000-0020-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000160}, !- Handle - Coil Heating Water Baseboard 13 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000379}, !- Inlet Port - {00000000-0000-0000-0020-000000000380}; !- Outlet Port + {00000000-0000-0000-0049-000000000032}, !- Handle + Chilled Water Loop Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000095}, !- Inlet Port + {00000000-0000-0000-0020-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000161}, !- Handle - Coil Heating Water Baseboard 14 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000391}, !- Inlet Port - {00000000-0000-0000-0020-000000000392}; !- Outlet Port + {00000000-0000-0000-0049-000000000033}, !- Handle + Chilled Water Loop Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000119}, !- Inlet Port + {00000000-0000-0000-0020-000000000097}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000162}, !- Handle - Coil Heating Water Baseboard 14 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000393}, !- Inlet Port - {00000000-0000-0000-0020-000000000394}; !- Outlet Port + {00000000-0000-0000-0049-000000000034}, !- Handle + Coil Cooling Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000100}, !- Inlet Port + {00000000-0000-0000-0020-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000163}, !- Handle - Coil Heating Water Baseboard 15 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000429}, !- Inlet Port - {00000000-0000-0000-0020-000000000430}; !- Outlet Port + {00000000-0000-0000-0049-000000000035}, !- Handle + Coil Cooling Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000164}, !- Inlet Port + {00000000-0000-0000-0020-000000000165}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000164}, !- Handle - Coil Heating Water Baseboard 15 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000431}, !- Inlet Port - {00000000-0000-0000-0020-000000000432}; !- Outlet Port + {00000000-0000-0000-0049-000000000036}, !- Handle + Coil Cooling Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000159}, !- Inlet Port + {00000000-0000-0000-0020-000000000160}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000165}, !- Handle - Coil Heating Water Baseboard 16 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000443}, !- Inlet Port - {00000000-0000-0000-0020-000000000444}; !- Outlet Port + {00000000-0000-0000-0049-000000000037}, !- Handle + Coil Heating Gas 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000079}, !- Inlet Port + {00000000-0000-0000-0020-000000000080}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000166}, !- Handle - Coil Heating Water Baseboard 16 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000445}, !- Inlet Port - {00000000-0000-0000-0020-000000000446}; !- Outlet Port + {00000000-0000-0000-0049-000000000038}, !- Handle + Coil Heating Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000154}, !- Inlet Port + {00000000-0000-0000-0020-000000000155}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000167}, !- Handle - Coil Heating Water Baseboard 17 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000457}, !- Inlet Port - {00000000-0000-0000-0020-000000000458}; !- Outlet Port + {00000000-0000-0000-0049-000000000039}, !- Handle + Coil Heating Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000162}, !- Inlet Port + {00000000-0000-0000-0020-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000168}, !- Handle - Coil Heating Water Baseboard 17 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000459}, !- Inlet Port - {00000000-0000-0000-0020-000000000460}; !- Outlet Port + {00000000-0000-0000-0049-000000000040}, !- Handle + Coil Heating Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000156}, !- Inlet Port + {00000000-0000-0000-0020-000000000157}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000169}, !- Handle - Coil Heating Water Baseboard 18 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000471}, !- Inlet Port - {00000000-0000-0000-0020-000000000472}; !- Outlet Port + {00000000-0000-0000-0049-000000000041}, !- Handle + Coil Heating Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000171}, !- Inlet Port + {00000000-0000-0000-0020-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000170}, !- Handle - Coil Heating Water Baseboard 18 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000473}, !- Inlet Port - {00000000-0000-0000-0020-000000000474}; !- Outlet Port + {00000000-0000-0000-0049-000000000042}, !- Handle + Coil Heating Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000173}, !- Inlet Port + {00000000-0000-0000-0020-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000171}, !- Handle - Coil Heating Water Baseboard 19 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000485}, !- Inlet Port - {00000000-0000-0000-0020-000000000486}; !- Outlet Port + {00000000-0000-0000-0049-000000000043}, !- Handle + Coil Heating Water Baseboard 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000052}, !- Inlet Port + {00000000-0000-0000-0020-000000000086}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000172}, !- Handle - Coil Heating Water Baseboard 19 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000487}, !- Inlet Port - {00000000-0000-0000-0020-000000000488}; !- Outlet Port + {00000000-0000-0000-0049-000000000044}, !- Handle + Coil Heating Water Baseboard 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000087}, !- Inlet Port + {00000000-0000-0000-0020-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000173}, !- Handle + {00000000-0000-0000-0049-000000000045}, !- Handle Coil Heating Water Baseboard 2 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000175}, !- Inlet Port {00000000-0000-0000-0020-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000174}, !- Handle + {00000000-0000-0000-0049-000000000046}, !- Handle Coil Heating Water Baseboard 2 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000177}, !- Inlet Port {00000000-0000-0000-0020-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000175}, !- Handle - Coil Heating Water Baseboard 20 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000499}, !- Inlet Port - {00000000-0000-0000-0020-000000000500}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000176}, !- Handle - Coil Heating Water Baseboard 20 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000501}, !- Inlet Port - {00000000-0000-0000-0020-000000000502}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000177}, !- Handle - Coil Heating Water Baseboard 3 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000213}, !- Inlet Port - {00000000-0000-0000-0020-000000000214}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000178}, !- Handle - Coil Heating Water Baseboard 3 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000215}, !- Inlet Port - {00000000-0000-0000-0020-000000000216}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000179}, !- Handle - Coil Heating Water Baseboard 4 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000227}, !- Inlet Port - {00000000-0000-0000-0020-000000000228}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000180}, !- Handle - Coil Heating Water Baseboard 4 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000229}, !- Inlet Port - {00000000-0000-0000-0020-000000000230}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000181}, !- Handle - Coil Heating Water Baseboard 5 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000241}, !- Inlet Port - {00000000-0000-0000-0020-000000000242}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000182}, !- Handle - Coil Heating Water Baseboard 5 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000243}, !- Inlet Port - {00000000-0000-0000-0020-000000000244}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000183}, !- Handle - Coil Heating Water Baseboard 6 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000255}, !- Inlet Port - {00000000-0000-0000-0020-000000000256}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000184}, !- Handle - Coil Heating Water Baseboard 6 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000257}, !- Inlet Port - {00000000-0000-0000-0020-000000000258}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000185}, !- Handle - Coil Heating Water Baseboard 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000269}, !- Inlet Port - {00000000-0000-0000-0020-000000000270}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000186}, !- Handle - Coil Heating Water Baseboard 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000271}, !- Inlet Port - {00000000-0000-0000-0020-000000000272}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000187}, !- Handle - Coil Heating Water Baseboard 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000283}, !- Inlet Port - {00000000-0000-0000-0020-000000000284}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000188}, !- Handle - Coil Heating Water Baseboard 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000285}, !- Inlet Port - {00000000-0000-0000-0020-000000000286}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000189}, !- Handle - Coil Heating Water Baseboard 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000321}, !- Inlet Port - {00000000-0000-0000-0020-000000000322}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000190}, !- Handle - Coil Heating Water Baseboard 9 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000323}, !- Inlet Port - {00000000-0000-0000-0020-000000000324}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000191}, !- Handle - CoilCoolingDXSingleSpeed_dx 114kBtu/hr 9.26EER Outlet Air Node, !- Name + {00000000-0000-0000-0049-000000000047}, !- Handle + CoilCoolingDXSingleSpeed_dx 115kBtu/hr 9.26EER Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000081}, !- Inlet Port {00000000-0000-0000-0020-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000192}, !- Handle + {00000000-0000-0000-0049-000000000048}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000123}, !- Inlet Port {00000000-0000-0000-0020-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000193}, !- Handle + {00000000-0000-0000-0049-000000000049}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000126}, !- Inlet Port {00000000-0000-0000-0020-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000194}, !- Handle + {00000000-0000-0000-0049-000000000050}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000120}, !- Inlet Port {00000000-0000-0000-0020-000000000128}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000195}, !- Handle + {00000000-0000-0000-0049-000000000051}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000140}, !- Inlet Port {00000000-0000-0000-0020-000000000122}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000196}, !- Handle + {00000000-0000-0000-0049-000000000052}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000121}, !- Inlet Port {00000000-0000-0000-0020-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000197}, !- Handle + {00000000-0000-0000-0049-000000000053}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000132}, !- Inlet Port {00000000-0000-0000-0020-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000198}, !- Handle + {00000000-0000-0000-0049-000000000054}, !- Handle Core_bottom WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000535}, !- Inlet Port - {00000000-0000-0000-0020-000000000536}; !- Outlet Port + {00000000-0000-0000-0020-000000000211}, !- Inlet Port + {00000000-0000-0000-0020-000000000212}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000199}, !- Handle + {00000000-0000-0000-0049-000000000055}, !- Handle Core_bottom WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000537}, !- Inlet Port - {00000000-0000-0000-0020-000000000538}; !- Outlet Port + {00000000-0000-0000-0020-000000000213}, !- Inlet Port + {00000000-0000-0000-0020-000000000214}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000200}, !- Handle + {00000000-0000-0000-0049-000000000056}, !- Handle Core_mid WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000539}, !- Inlet Port - {00000000-0000-0000-0020-000000000540}; !- Outlet Port + {00000000-0000-0000-0020-000000000215}, !- Inlet Port + {00000000-0000-0000-0020-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000201}, !- Handle + {00000000-0000-0000-0049-000000000057}, !- Handle Core_mid WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000541}, !- Inlet Port - {00000000-0000-0000-0020-000000000542}; !- Outlet Port + {00000000-0000-0000-0020-000000000217}, !- Inlet Port + {00000000-0000-0000-0020-000000000218}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000202}, !- Handle + {00000000-0000-0000-0049-000000000058}, !- Handle Core_top WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000543}, !- Inlet Port - {00000000-0000-0000-0020-000000000544}; !- Outlet Port + {00000000-0000-0000-0020-000000000219}, !- Inlet Port + {00000000-0000-0000-0020-000000000220}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000203}, !- Handle + {00000000-0000-0000-0049-000000000059}, !- Handle Core_top WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000545}, !- Inlet Port - {00000000-0000-0000-0020-000000000546}; !- Outlet Port + {00000000-0000-0000-0020-000000000221}, !- Inlet Port + {00000000-0000-0000-0020-000000000222}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000204}, !- Handle + {00000000-0000-0000-0049-000000000060}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000547}, !- Inlet Port - {00000000-0000-0000-0020-000000000548}; !- Outlet Port + {00000000-0000-0000-0020-000000000223}, !- Inlet Port + {00000000-0000-0000-0020-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000205}, !- Handle + {00000000-0000-0000-0049-000000000061}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000549}, !- Inlet Port - {00000000-0000-0000-0020-000000000550}; !- Outlet Port + {00000000-0000-0000-0020-000000000225}, !- Inlet Port + {00000000-0000-0000-0020-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000206}, !- Handle + {00000000-0000-0000-0049-000000000062}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000551}, !- Inlet Port - {00000000-0000-0000-0020-000000000552}; !- Outlet Port + {00000000-0000-0000-0020-000000000227}, !- Inlet Port + {00000000-0000-0000-0020-000000000228}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000207}, !- Handle + {00000000-0000-0000-0049-000000000063}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000553}, !- Inlet Port - {00000000-0000-0000-0020-000000000554}; !- Outlet Port + {00000000-0000-0000-0020-000000000229}, !- Inlet Port + {00000000-0000-0000-0020-000000000230}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000208}, !- Handle + {00000000-0000-0000-0049-000000000064}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000555}, !- Inlet Port - {00000000-0000-0000-0020-000000000556}; !- Outlet Port + {00000000-0000-0000-0020-000000000231}, !- Inlet Port + {00000000-0000-0000-0020-000000000232}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000209}, !- Handle + {00000000-0000-0000-0049-000000000065}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000557}, !- Inlet Port - {00000000-0000-0000-0020-000000000558}; !- Outlet Port + {00000000-0000-0000-0020-000000000233}, !- Inlet Port + {00000000-0000-0000-0020-000000000234}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000210}, !- Handle + {00000000-0000-0000-0049-000000000066}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000559}, !- Inlet Port - {00000000-0000-0000-0020-000000000560}; !- Outlet Port + {00000000-0000-0000-0020-000000000235}, !- Inlet Port + {00000000-0000-0000-0020-000000000236}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000211}, !- Handle + {00000000-0000-0000-0049-000000000067}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000561}, !- Inlet Port - {00000000-0000-0000-0020-000000000562}; !- Outlet Port + {00000000-0000-0000-0020-000000000237}, !- Inlet Port + {00000000-0000-0000-0020-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000212}, !- Handle + {00000000-0000-0000-0049-000000000068}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000050}, !- Inlet Port {00000000-0000-0000-0020-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000213}, !- Handle + {00000000-0000-0000-0049-000000000069}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000053}, !- Inlet Port {00000000-0000-0000-0020-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000214}, !- Handle + {00000000-0000-0000-0049-000000000070}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000047}, !- Inlet Port {00000000-0000-0000-0020-000000000055}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000215}, !- Handle + {00000000-0000-0000-0049-000000000071}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000071}, !- Inlet Port {00000000-0000-0000-0020-000000000049}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000216}, !- Handle + {00000000-0000-0000-0049-000000000072}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000517}, !- Inlet Port - {00000000-0000-0000-0020-000000000518}; !- Outlet Port + {00000000-0000-0000-0020-000000000193}, !- Inlet Port + {00000000-0000-0000-0020-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000217}, !- Handle + {00000000-0000-0000-0049-000000000073}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000512}, !- Inlet Port - {00000000-0000-0000-0020-000000000513}; !- Outlet Port + {00000000-0000-0000-0020-000000000188}, !- Inlet Port + {00000000-0000-0000-0020-000000000189}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000218}, !- Handle + {00000000-0000-0000-0049-000000000074}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000534}, !- Inlet Port - {00000000-0000-0000-0020-000000000515}; !- Outlet Port + {00000000-0000-0000-0020-000000000210}, !- Inlet Port + {00000000-0000-0000-0020-000000000191}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000219}, !- Handle + {00000000-0000-0000-0049-000000000075}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000509}, !- Inlet Port - {00000000-0000-0000-0020-000000000516}; !- Outlet Port + {00000000-0000-0000-0020-000000000185}, !- Inlet Port + {00000000-0000-0000-0020-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000220}, !- Handle + {00000000-0000-0000-0049-000000000076}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000531}, !- Inlet Port - {00000000-0000-0000-0020-000000000511}; !- Outlet Port + {00000000-0000-0000-0020-000000000207}, !- Inlet Port + {00000000-0000-0000-0020-000000000187}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000221}, !- Handle + {00000000-0000-0000-0049-000000000077}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000563}, !- Inlet Port - {00000000-0000-0000-0020-000000000564}; !- Outlet Port + {00000000-0000-0000-0020-000000000239}, !- Inlet Port + {00000000-0000-0000-0020-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000222}, !- Handle + {00000000-0000-0000-0049-000000000078}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000565}, !- Inlet Port - {00000000-0000-0000-0020-000000000566}; !- Outlet Port + {00000000-0000-0000-0020-000000000241}, !- Inlet Port + {00000000-0000-0000-0020-000000000242}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000223}, !- Handle + {00000000-0000-0000-0049-000000000079}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000567}, !- Inlet Port - {00000000-0000-0000-0020-000000000568}; !- Outlet Port + {00000000-0000-0000-0020-000000000243}, !- Inlet Port + {00000000-0000-0000-0020-000000000244}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000224}, !- Handle + {00000000-0000-0000-0049-000000000080}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000569}, !- Inlet Port - {00000000-0000-0000-0020-000000000570}; !- Outlet Port + {00000000-0000-0000-0020-000000000245}, !- Inlet Port + {00000000-0000-0000-0020-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000225}, !- Handle + {00000000-0000-0000-0049-000000000081}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000571}, !- Inlet Port - {00000000-0000-0000-0020-000000000572}; !- Outlet Port + {00000000-0000-0000-0020-000000000247}, !- Inlet Port + {00000000-0000-0000-0020-000000000248}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000226}, !- Handle + {00000000-0000-0000-0049-000000000082}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000573}, !- Inlet Port - {00000000-0000-0000-0020-000000000574}; !- Outlet Port + {00000000-0000-0000-0020-000000000249}, !- Inlet Port + {00000000-0000-0000-0020-000000000250}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000227}, !- Handle + {00000000-0000-0000-0049-000000000083}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000575}, !- Inlet Port - {00000000-0000-0000-0020-000000000576}; !- Outlet Port + {00000000-0000-0000-0020-000000000251}, !- Inlet Port + {00000000-0000-0000-0020-000000000252}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000228}, !- Handle + {00000000-0000-0000-0049-000000000084}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000577}, !- Inlet Port - {00000000-0000-0000-0020-000000000578}; !- Outlet Port + {00000000-0000-0000-0020-000000000253}, !- Inlet Port + {00000000-0000-0000-0020-000000000254}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000229}, !- Handle + {00000000-0000-0000-0049-000000000085}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000579}, !- Inlet Port - {00000000-0000-0000-0020-000000000580}; !- Outlet Port + {00000000-0000-0000-0020-000000000255}, !- Inlet Port + {00000000-0000-0000-0020-000000000256}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000230}, !- Handle + {00000000-0000-0000-0049-000000000086}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000581}, !- Inlet Port - {00000000-0000-0000-0020-000000000582}; !- Outlet Port + {00000000-0000-0000-0020-000000000257}, !- Inlet Port + {00000000-0000-0000-0020-000000000258}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000231}, !- Handle + {00000000-0000-0000-0049-000000000087}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000583}, !- Inlet Port - {00000000-0000-0000-0020-000000000584}; !- Outlet Port + {00000000-0000-0000-0020-000000000259}, !- Inlet Port + {00000000-0000-0000-0020-000000000260}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000232}, !- Handle + {00000000-0000-0000-0049-000000000088}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000585}, !- Inlet Port - {00000000-0000-0000-0020-000000000586}; !- Outlet Port + {00000000-0000-0000-0020-000000000261}, !- Inlet Port + {00000000-0000-0000-0020-000000000262}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000233}, !- Handle + {00000000-0000-0000-0049-000000000089}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000587}, !- Inlet Port - {00000000-0000-0000-0020-000000000588}; !- Outlet Port + {00000000-0000-0000-0020-000000000263}, !- Inlet Port + {00000000-0000-0000-0020-000000000264}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000234}, !- Handle + {00000000-0000-0000-0049-000000000090}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000589}, !- Inlet Port - {00000000-0000-0000-0020-000000000590}; !- Outlet Port + {00000000-0000-0000-0020-000000000265}, !- Inlet Port + {00000000-0000-0000-0020-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000235}, !- Handle + {00000000-0000-0000-0049-000000000091}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000591}, !- Inlet Port - {00000000-0000-0000-0020-000000000592}; !- Outlet Port + {00000000-0000-0000-0020-000000000267}, !- Inlet Port + {00000000-0000-0000-0020-000000000268}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000236}, !- Handle + {00000000-0000-0000-0049-000000000092}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000593}, !- Inlet Port - {00000000-0000-0000-0020-000000000594}; !- Outlet Port + {00000000-0000-0000-0020-000000000269}, !- Inlet Port + {00000000-0000-0000-0020-000000000270}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000237}, !- Handle + {00000000-0000-0000-0049-000000000093}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000595}, !- Inlet Port - {00000000-0000-0000-0020-000000000596}; !- Outlet Port + {00000000-0000-0000-0020-000000000271}, !- Inlet Port + {00000000-0000-0000-0020-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000238}, !- Handle + {00000000-0000-0000-0049-000000000094}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000597}, !- Inlet Port - {00000000-0000-0000-0020-000000000598}; !- Outlet Port + {00000000-0000-0000-0020-000000000273}, !- Inlet Port + {00000000-0000-0000-0020-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000239}, !- Handle + {00000000-0000-0000-0049-000000000095}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000599}, !- Inlet Port - {00000000-0000-0000-0020-000000000600}; !- Outlet Port + {00000000-0000-0000-0020-000000000275}, !- Inlet Port + {00000000-0000-0000-0020-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000240}, !- Handle + {00000000-0000-0000-0049-000000000096}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000601}, !- Inlet Port - {00000000-0000-0000-0020-000000000602}; !- Outlet Port + {00000000-0000-0000-0020-000000000277}, !- Inlet Port + {00000000-0000-0000-0020-000000000278}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000241}, !- Handle + {00000000-0000-0000-0049-000000000097}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000603}, !- Inlet Port - {00000000-0000-0000-0020-000000000604}; !- Outlet Port + {00000000-0000-0000-0020-000000000279}, !- Inlet Port + {00000000-0000-0000-0020-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000242}, !- Handle + {00000000-0000-0000-0049-000000000098}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000605}, !- Inlet Port - {00000000-0000-0000-0020-000000000606}; !- Outlet Port + {00000000-0000-0000-0020-000000000281}, !- Inlet Port + {00000000-0000-0000-0020-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000243}, !- Handle + {00000000-0000-0000-0049-000000000099}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000607}, !- Inlet Port - {00000000-0000-0000-0020-000000000608}; !- Outlet Port + {00000000-0000-0000-0020-000000000283}, !- Inlet Port + {00000000-0000-0000-0020-000000000284}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000244}, !- Handle + {00000000-0000-0000-0049-000000000100}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000609}, !- Inlet Port - {00000000-0000-0000-0020-000000000610}; !- Outlet Port + {00000000-0000-0000-0020-000000000285}, !- Inlet Port + {00000000-0000-0000-0020-000000000286}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000245}, !- Handle + {00000000-0000-0000-0049-000000000101}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000065}, !- Inlet Port {00000000-0000-0000-0020-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000246}, !- Handle + {00000000-0000-0000-0049-000000000102}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000067}, !- Inlet Port {00000000-0000-0000-0020-000000000068}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000247}, !- Handle + {00000000-0000-0000-0049-000000000103}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000532}, !- Inlet Port - {00000000-0000-0000-0020-000000000533}; !- Outlet Port + {00000000-0000-0000-0020-000000000208}, !- Inlet Port + {00000000-0000-0000-0020-000000000209}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000248}, !- Handle + {00000000-0000-0000-0049-000000000104}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000069}, !- Inlet Port {00000000-0000-0000-0020-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000249}, !- Handle + {00000000-0000-0000-0049-000000000105}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000113}, !- Inlet Port {00000000-0000-0000-0020-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000250}, !- Handle + {00000000-0000-0000-0049-000000000106}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000115}, !- Inlet Port {00000000-0000-0000-0020-000000000116}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000251}, !- Handle + {00000000-0000-0000-0049-000000000107}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000117}, !- Inlet Port {00000000-0000-0000-0020-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000252}, !- Handle + {00000000-0000-0000-0049-000000000108}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000134}, !- Inlet Port {00000000-0000-0000-0020-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000253}, !- Handle + {00000000-0000-0000-0049-000000000109}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000136}, !- Inlet Port {00000000-0000-0000-0020-000000000137}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000254}, !- Handle + {00000000-0000-0000-0049-000000000110}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000138}, !- Inlet Port {00000000-0000-0000-0020-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000255}, !- Handle + {00000000-0000-0000-0049-000000000111}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000522}, !- Inlet Port - {00000000-0000-0000-0020-000000000523}; !- Outlet Port + {00000000-0000-0000-0020-000000000198}, !- Inlet Port + {00000000-0000-0000-0020-000000000199}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000256}, !- Handle + {00000000-0000-0000-0049-000000000112}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000524}, !- Inlet Port - {00000000-0000-0000-0020-000000000525}; !- Outlet Port + {00000000-0000-0000-0020-000000000200}, !- Inlet Port + {00000000-0000-0000-0020-000000000201}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000257}, !- Handle + {00000000-0000-0000-0049-000000000113}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000514}, !- Inlet Port - {00000000-0000-0000-0020-000000000526}; !- Outlet Port + {00000000-0000-0000-0020-000000000190}, !- Inlet Port + {00000000-0000-0000-0020-000000000202}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000258}, !- Handle + {00000000-0000-0000-0049-000000000114}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000527}, !- Inlet Port - {00000000-0000-0000-0020-000000000528}; !- Outlet Port + {00000000-0000-0000-0020-000000000203}, !- Inlet Port + {00000000-0000-0000-0020-000000000204}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000259}, !- Handle + {00000000-0000-0000-0049-000000000115}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000529}, !- Inlet Port - {00000000-0000-0000-0020-000000000530}; !- Outlet Port + {00000000-0000-0000-0020-000000000205}, !- Inlet Port + {00000000-0000-0000-0020-000000000206}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000260}, !- Handle - Primary Boiler 8382kBtu/hr 0.9 Combustion Eff Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000116}, !- Handle + Primary Boiler 323kBtu/hr 0.9 Thermal Eff Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000048}, !- Inlet Port {00000000-0000-0000-0020-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000261}, !- Handle - Primary Boiler 8382kBtu/hr 0.9 Combustion Eff Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000117}, !- Handle + Primary Boiler 323kBtu/hr 0.9 Thermal Eff Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000059}, !- Inlet Port {00000000-0000-0000-0020-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000262}, !- Handle - Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000118}, !- Handle + Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000125}, !- Inlet Port {00000000-0000-0000-0020-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000263}, !- Handle - Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000119}, !- Handle + Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000142}, !- Inlet Port {00000000-0000-0000-0020-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000264}, !- Handle - Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000120}, !- Handle + Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000096}, !- Inlet Port {00000000-0000-0000-0020-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000265}, !- Handle - Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000121}, !- Handle + Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000107}, !- Inlet Port {00000000-0000-0000-0020-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000266}, !- Handle + {00000000-0000-0000-0049-000000000122}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000056}, !- Inlet Port {00000000-0000-0000-0020-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000267}, !- Handle + {00000000-0000-0000-0049-000000000123}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000104}, !- Inlet Port {00000000-0000-0000-0020-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000268}, !- Handle + {00000000-0000-0000-0049-000000000124}, !- Handle Pump Variable Speed 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000129}, !- Inlet Port {00000000-0000-0000-0020-000000000130}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000269}, !- Handle + {00000000-0000-0000-0049-000000000125}, !- Handle Secondary Boiler 0kBtu/hr 0.9 AFUE Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000061}, !- Inlet Port {00000000-0000-0000-0020-000000000062}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000270}, !- Handle + {00000000-0000-0000-0049-000000000126}, !- Handle Secondary Boiler 0kBtu/hr 0.9 AFUE Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000063}, !- Inlet Port {00000000-0000-0000-0020-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000271}, !- Handle + {00000000-0000-0000-0049-000000000127}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000144}, !- Inlet Port {00000000-0000-0000-0020-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000272}, !- Handle + {00000000-0000-0000-0049-000000000128}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000146}, !- Inlet Port {00000000-0000-0000-0020-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000273}, !- Handle + {00000000-0000-0000-0049-000000000129}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000109}, !- Inlet Port {00000000-0000-0000-0020-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000274}, !- Handle + {00000000-0000-0000-0049-000000000130}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000111}, !- Inlet Port {00000000-0000-0000-0020-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000275}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000207}, !- Inlet Port - {00000000-0000-0000-0020-000000000208}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000276}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000315}, !- Inlet Port - {00000000-0000-0000-0020-000000000316}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000277}, !- Handle - Sys6 Return Fan 3 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000423}, !- Inlet Port - {00000000-0000-0000-0020-000000000424}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000278}, !- Handle + {00000000-0000-0000-0049-000000000131}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000169}, !- Inlet Port {00000000-0000-0000-0020-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000279}, !- Handle + {00000000-0000-0000-0049-000000000132}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0020-000000000090}, !- Inlet Port {00000000-0000-0000-0020-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000280}, !- Handle + {00000000-0000-0000-0049-000000000133}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0020-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000281}, !- Handle + {00000000-0000-0000-0049-000000000134}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000074}, !- Inlet Port {00000000-0000-0000-0020-000000000076}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000282}, !- Handle + {00000000-0000-0000-0049-000000000135}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000077}, !- Inlet Port {00000000-0000-0000-0020-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000283}, !- Handle + {00000000-0000-0000-0049-000000000136}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000084}, !- Inlet Port {00000000-0000-0000-0020-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000284}, !- Handle + {00000000-0000-0000-0049-000000000137}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0020-000000000611}; !- Outlet Port + {00000000-0000-0000-0020-000000000287}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000285}, !- Handle + {00000000-0000-0000-0049-000000000138}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000616}, !- Inlet Port + {00000000-0000-0000-0020-000000000292}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000286}, !- Handle + {00000000-0000-0000-0049-000000000139}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000072}, !- Inlet Port {00000000-0000-0000-0020-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000287}, !- Handle + {00000000-0000-0000-0049-000000000140}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000078}, !- Inlet Port {00000000-0000-0000-0020-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000288}, !- Handle + {00000000-0000-0000-0049-000000000141}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000612}, !- Inlet Port - {00000000-0000-0000-0020-000000000613}; !- Outlet Port + {00000000-0000-0000-0020-000000000288}, !- Inlet Port + {00000000-0000-0000-0020-000000000289}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000289}, !- Handle + {00000000-0000-0000-0049-000000000142}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000614}, !- Inlet Port - {00000000-0000-0000-0020-000000000615}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000290}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000187}, !- Inlet Port - {00000000-0000-0000-0020-000000000189}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000291}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000190}, !- Inlet Port - {00000000-0000-0000-0020-000000000188}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000292}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0020-000000000204}, !- Inlet Port - {00000000-0000-0000-0020-000000000205}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000293}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0020-000000000623}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000294}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000628}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000295}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000185}, !- Inlet Port - {00000000-0000-0000-0020-000000000206}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000296}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000199}, !- Inlet Port - {00000000-0000-0000-0020-000000000186}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000297}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000295}, !- Inlet Port - {00000000-0000-0000-0020-000000000297}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000298}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000298}, !- Inlet Port - {00000000-0000-0000-0020-000000000296}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000299}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0020-000000000312}, !- Inlet Port - {00000000-0000-0000-0020-000000000313}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000300}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0020-000000000629}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000301}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000634}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000302}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000293}, !- Inlet Port - {00000000-0000-0000-0020-000000000314}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000303}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000307}, !- Inlet Port - {00000000-0000-0000-0020-000000000294}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000304}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000403}, !- Inlet Port - {00000000-0000-0000-0020-000000000405}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000305}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000406}, !- Inlet Port - {00000000-0000-0000-0020-000000000404}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000306}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Mixed Air Node, !- Name - {00000000-0000-0000-0020-000000000420}, !- Inlet Port - {00000000-0000-0000-0020-000000000421}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000307}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0020-000000000635}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000308}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000640}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000309}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000401}, !- Inlet Port - {00000000-0000-0000-0020-000000000422}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000310}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000415}, !- Inlet Port - {00000000-0000-0000-0020-000000000402}; !- Outlet Port + {00000000-0000-0000-0020-000000000290}, !- Inlet Port + {00000000-0000-0000-0020-000000000291}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000311}, !- Handle + {00000000-0000-0000-0049-000000000143}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000150}, !- Inlet Port {00000000-0000-0000-0020-000000000152}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000312}, !- Handle + {00000000-0000-0000-0049-000000000144}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000153}, !- Inlet Port {00000000-0000-0000-0020-000000000151}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000313}, !- Handle + {00000000-0000-0000-0049-000000000145}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000166}, !- Inlet Port {00000000-0000-0000-0020-000000000167}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000314}, !- Handle + {00000000-0000-0000-0049-000000000146}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0020-000000000617}; !- Outlet Port + {00000000-0000-0000-0020-000000000293}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000315}, !- Handle + {00000000-0000-0000-0049-000000000147}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000622}, !- Inlet Port + {00000000-0000-0000-0020-000000000298}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000316}, !- Handle + {00000000-0000-0000-0049-000000000148}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000148}, !- Inlet Port {00000000-0000-0000-0020-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000317}, !- Handle + {00000000-0000-0000-0049-000000000149}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000161}, !- Inlet Port {00000000-0000-0000-0020-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000318}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000624}, !- Inlet Port - {00000000-0000-0000-0020-000000000625}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000319}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000626}, !- Inlet Port - {00000000-0000-0000-0020-000000000627}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000320}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000630}, !- Inlet Port - {00000000-0000-0000-0020-000000000631}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000321}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000632}, !- Inlet Port - {00000000-0000-0000-0020-000000000633}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000322}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000636}, !- Inlet Port - {00000000-0000-0000-0020-000000000637}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000323}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000638}, !- Inlet Port - {00000000-0000-0000-0020-000000000639}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0053-000000000324}, !- Handle + {00000000-0000-0000-0049-000000000150}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000618}, !- Inlet Port - {00000000-0000-0000-0020-000000000619}; !- Outlet Port + {00000000-0000-0000-0020-000000000294}, !- Inlet Port + {00000000-0000-0000-0020-000000000295}; !- Outlet Port OS:Node, - {00000000-0000-0000-0053-000000000325}, !- Handle + {00000000-0000-0000-0049-000000000151}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000620}, !- Inlet Port - {00000000-0000-0000-0020-000000000621}; !- Outlet Port + {00000000-0000-0000-0020-000000000296}, !- Inlet Port + {00000000-0000-0000-0020-000000000297}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0051-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People, !- Name - {00000000-0000-0000-0056-000000000001}, !- People Definition Name - {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0052-000000000001}, !- People Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0066-000000000025}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0062-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0055-000000000002}, !- Handle + {00000000-0000-0000-0051-000000000002}, !- Handle Space Function Office open plan People, !- Name - {00000000-0000-0000-0056-000000000002}, !- People Definition Name - {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0052-000000000002}, !- People Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0066-000000000025}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0062-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0052-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -10893,7 +5181,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0056-000000000002}, !- Handle + {00000000-0000-0000-0052-000000000002}, !- Handle Space Function Office open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -10902,67 +5190,67 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0020-000000000066}, !- Inlet Node Name {00000000-0000-0000-0020-000000000067}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000002}, !- Handle + {00000000-0000-0000-0053-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0020-000000000533}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000534}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000209}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000210}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000003}, !- Handle + {00000000-0000-0000-0053-000000000003}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0020-000000000070}, !- Inlet Node Name {00000000-0000-0000-0020-000000000071}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000004}, !- Handle + {00000000-0000-0000-0053-000000000004}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0020-000000000114}, !- Inlet Node Name {00000000-0000-0000-0020-000000000115}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000005}, !- Handle + {00000000-0000-0000-0053-000000000005}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0020-000000000118}, !- Inlet Node Name {00000000-0000-0000-0020-000000000119}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000006}, !- Handle + {00000000-0000-0000-0053-000000000006}, !- Handle Pipe Adiabatic 5, !- Name {00000000-0000-0000-0020-000000000135}, !- Inlet Node Name {00000000-0000-0000-0020-000000000136}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000007}, !- Handle + {00000000-0000-0000-0053-000000000007}, !- Handle Pipe Adiabatic 6, !- Name {00000000-0000-0000-0020-000000000139}, !- Inlet Node Name {00000000-0000-0000-0020-000000000140}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000008}, !- Handle + {00000000-0000-0000-0053-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0020-000000000523}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000524}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000199}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000200}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000009}, !- Handle + {00000000-0000-0000-0053-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0020-000000000526}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000527}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000202}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000203}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0057-000000000010}, !- Handle + {00000000-0000-0000-0053-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0020-000000000530}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000531}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000206}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000207}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -10970,7 +5258,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0053-000000000087}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000033}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -10984,7 +5272,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -10998,7 +5286,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -11006,7 +5294,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0053-000000000195}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000051}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -11020,7 +5308,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -11034,7 +5322,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000005}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0058-000000000003}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Handle Hot Water Loop, !- Name Water, !- Fluid Type 0, !- Glycol Concentration @@ -11042,7 +5330,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0053-000000000215}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000071}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -11056,7 +5344,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -11070,7 +5358,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0058-000000000004}, !- Handle + {00000000-0000-0000-0054-000000000004}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -11078,21 +5366,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0053-000000000220}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000076}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0020-000000000509}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0020-000000000511}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0020-000000000185}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0020-000000000187}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0020-000000000512}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0020-000000000515}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000188}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0020-000000000191}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -11106,326 +5394,290 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000007}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0059-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- HVAC Component - {00000000-0000-0000-0020-000000000287}; !- Port 1 + {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000002}, !- Handle - {00000000-0000-0000-0094-000000000010}; !- HVAC Component + {00000000-0000-0000-0055-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000003}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- HVAC Component - {00000000-0000-0000-0020-000000000288}; !- Port 1 + {00000000-0000-0000-0055-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000004}, !- Handle - {00000000-0000-0000-0094-000000000001}; !- HVAC Component + {00000000-0000-0000-0055-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000005}, !- Handle - {00000000-0000-0000-0094-000000000001}; !- HVAC Component + {00000000-0000-0000-0055-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000006}, !- Handle - {00000000-0000-0000-0094-000000000001}; !- HVAC Component + {00000000-0000-0000-0055-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000007}, !- Handle - {00000000-0000-0000-0094-000000000022}, !- HVAC Component - {00000000-0000-0000-0020-000000000503}; !- Port 1 + {00000000-0000-0000-0055-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000008}, !- Handle - {00000000-0000-0000-0094-000000000022}; !- HVAC Component + {00000000-0000-0000-0055-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000009}, !- Handle - {00000000-0000-0000-0094-000000000022}, !- HVAC Component - {00000000-0000-0000-0020-000000000504}; !- Port 1 + {00000000-0000-0000-0055-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000010}, !- Handle - {00000000-0000-0000-0094-000000000003}; !- HVAC Component + {00000000-0000-0000-0055-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000011}, !- Handle - {00000000-0000-0000-0094-000000000003}; !- HVAC Component + {00000000-0000-0000-0055-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000012}, !- Handle - {00000000-0000-0000-0094-000000000003}; !- HVAC Component + {00000000-0000-0000-0055-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000013}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- HVAC Component - {00000000-0000-0000-0020-000000000395}; !- Port 1 + {00000000-0000-0000-0055-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000014}, !- Handle - {00000000-0000-0000-0094-000000000016}; !- HVAC Component + {00000000-0000-0000-0055-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000015}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- HVAC Component - {00000000-0000-0000-0020-000000000396}; !- Port 1 + {00000000-0000-0000-0055-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000016}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- HVAC Component - {00000000-0000-0000-0020-000000000461}; !- Port 1 + {00000000-0000-0000-0055-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000017}, !- Handle - {00000000-0000-0000-0094-000000000017}; !- HVAC Component + {00000000-0000-0000-0055-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000018}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- HVAC Component - {00000000-0000-0000-0020-000000000462}; !- Port 1 + {00000000-0000-0000-0055-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000019}, !- Handle - {00000000-0000-0000-0094-000000000005}, !- HVAC Component - {00000000-0000-0000-0020-000000000231}; !- Port 1 + {00000000-0000-0000-0055-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000020}, !- Handle - {00000000-0000-0000-0094-000000000005}; !- HVAC Component + {00000000-0000-0000-0055-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000021}, !- Handle - {00000000-0000-0000-0094-000000000005}, !- HVAC Component - {00000000-0000-0000-0020-000000000232}; !- Port 1 + {00000000-0000-0000-0055-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000022}, !- Handle - {00000000-0000-0000-0094-000000000006}, !- HVAC Component - {00000000-0000-0000-0020-000000000259}; !- Port 1 + {00000000-0000-0000-0055-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000023}, !- Handle - {00000000-0000-0000-0094-000000000006}; !- HVAC Component + {00000000-0000-0000-0055-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000024}, !- Handle - {00000000-0000-0000-0094-000000000006}, !- HVAC Component - {00000000-0000-0000-0020-000000000260}; !- Port 1 + {00000000-0000-0000-0055-000000000024}, !- Handle + {00000000-0000-0000-0090-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000025}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- HVAC Component - {00000000-0000-0000-0020-000000000475}; !- Port 1 + {00000000-0000-0000-0055-000000000025}, !- Handle + {00000000-0000-0000-0090-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000026}, !- Handle - {00000000-0000-0000-0094-000000000018}; !- HVAC Component + {00000000-0000-0000-0055-000000000026}, !- Handle + {00000000-0000-0000-0090-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000027}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- HVAC Component - {00000000-0000-0000-0020-000000000476}; !- Port 1 + {00000000-0000-0000-0055-000000000027}, !- Handle + {00000000-0000-0000-0090-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000028}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- HVAC Component - {00000000-0000-0000-0020-000000000367}; !- Port 1 + {00000000-0000-0000-0055-000000000028}, !- Handle + {00000000-0000-0000-0090-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000029}, !- Handle - {00000000-0000-0000-0094-000000000011}; !- HVAC Component + {00000000-0000-0000-0055-000000000029}, !- Handle + {00000000-0000-0000-0090-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000030}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- HVAC Component - {00000000-0000-0000-0020-000000000368}; !- Port 1 + {00000000-0000-0000-0055-000000000030}, !- Handle + {00000000-0000-0000-0090-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000031}, !- Handle - {00000000-0000-0000-0094-000000000019}, !- HVAC Component - {00000000-0000-0000-0020-000000000447}; !- Port 1 + {00000000-0000-0000-0055-000000000031}, !- Handle + {00000000-0000-0000-0090-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000032}, !- Handle - {00000000-0000-0000-0094-000000000019}; !- HVAC Component + {00000000-0000-0000-0055-000000000032}, !- Handle + {00000000-0000-0000-0090-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000033}, !- Handle - {00000000-0000-0000-0094-000000000019}, !- HVAC Component - {00000000-0000-0000-0020-000000000448}; !- Port 1 + {00000000-0000-0000-0055-000000000033}, !- Handle + {00000000-0000-0000-0090-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000034}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- HVAC Component - {00000000-0000-0000-0020-000000000353}; !- Port 1 + {00000000-0000-0000-0055-000000000034}, !- Handle + {00000000-0000-0000-0090-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000035}, !- Handle - {00000000-0000-0000-0094-000000000012}; !- HVAC Component + {00000000-0000-0000-0055-000000000035}, !- Handle + {00000000-0000-0000-0090-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000036}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- HVAC Component - {00000000-0000-0000-0020-000000000354}; !- Port 1 + {00000000-0000-0000-0055-000000000036}, !- Handle + {00000000-0000-0000-0090-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000037}, !- Handle - {00000000-0000-0000-0094-000000000004}, !- HVAC Component + {00000000-0000-0000-0055-000000000037}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000179}; !- Port 1 OS:PortList, - {00000000-0000-0000-0059-000000000038}, !- Handle - {00000000-0000-0000-0094-000000000004}; !- HVAC Component + {00000000-0000-0000-0055-000000000038}, !- Handle + {00000000-0000-0000-0090-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000039}, !- Handle - {00000000-0000-0000-0094-000000000004}, !- HVAC Component + {00000000-0000-0000-0055-000000000039}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000180}; !- Port 1 OS:PortList, - {00000000-0000-0000-0059-000000000040}, !- Handle - {00000000-0000-0000-0094-000000000002}; !- HVAC Component + {00000000-0000-0000-0055-000000000040}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000041}, !- Handle - {00000000-0000-0000-0094-000000000002}; !- HVAC Component + {00000000-0000-0000-0055-000000000041}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000042}, !- Handle - {00000000-0000-0000-0094-000000000002}; !- HVAC Component + {00000000-0000-0000-0055-000000000042}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000043}, !- Handle - {00000000-0000-0000-0094-000000000007}, !- HVAC Component - {00000000-0000-0000-0020-000000000217}; !- Port 1 + {00000000-0000-0000-0055-000000000043}, !- Handle + {00000000-0000-0000-0090-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000044}, !- Handle - {00000000-0000-0000-0094-000000000007}; !- HVAC Component + {00000000-0000-0000-0055-000000000044}, !- Handle + {00000000-0000-0000-0090-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000045}, !- Handle - {00000000-0000-0000-0094-000000000007}, !- HVAC Component - {00000000-0000-0000-0020-000000000218}; !- Port 1 + {00000000-0000-0000-0055-000000000045}, !- Handle + {00000000-0000-0000-0090-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000046}, !- Handle - {00000000-0000-0000-0094-000000000020}, !- HVAC Component - {00000000-0000-0000-0020-000000000489}; !- Port 1 + {00000000-0000-0000-0055-000000000046}, !- Handle + {00000000-0000-0000-0090-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000047}, !- Handle - {00000000-0000-0000-0094-000000000020}; !- HVAC Component + {00000000-0000-0000-0055-000000000047}, !- Handle + {00000000-0000-0000-0090-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000048}, !- Handle - {00000000-0000-0000-0094-000000000020}, !- HVAC Component - {00000000-0000-0000-0020-000000000490}; !- Port 1 + {00000000-0000-0000-0055-000000000048}, !- Handle + {00000000-0000-0000-0090-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000049}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- HVAC Component - {00000000-0000-0000-0020-000000000339}; !- Port 1 + {00000000-0000-0000-0055-000000000049}, !- Handle + {00000000-0000-0000-0090-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000050}, !- Handle - {00000000-0000-0000-0094-000000000013}; !- HVAC Component + {00000000-0000-0000-0055-000000000050}, !- Handle + {00000000-0000-0000-0090-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000051}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- HVAC Component - {00000000-0000-0000-0020-000000000340}; !- Port 1 + {00000000-0000-0000-0055-000000000051}, !- Handle + {00000000-0000-0000-0090-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000052}, !- Handle - {00000000-0000-0000-0094-000000000021}, !- HVAC Component - {00000000-0000-0000-0020-000000000433}; !- Port 1 + {00000000-0000-0000-0055-000000000052}, !- Handle + {00000000-0000-0000-0090-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000053}, !- Handle - {00000000-0000-0000-0094-000000000021}; !- HVAC Component + {00000000-0000-0000-0055-000000000053}, !- Handle + {00000000-0000-0000-0090-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000054}, !- Handle - {00000000-0000-0000-0094-000000000021}, !- HVAC Component - {00000000-0000-0000-0020-000000000434}; !- Port 1 + {00000000-0000-0000-0055-000000000054}, !- Handle + {00000000-0000-0000-0090-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000055}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- HVAC Component - {00000000-0000-0000-0020-000000000325}; !- Port 1 + {00000000-0000-0000-0055-000000000055}, !- Handle + {00000000-0000-0000-0090-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000056}, !- Handle - {00000000-0000-0000-0094-000000000014}; !- HVAC Component + {00000000-0000-0000-0055-000000000056}, !- Handle + {00000000-0000-0000-0090-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000057}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- HVAC Component - {00000000-0000-0000-0020-000000000326}; !- Port 1 + {00000000-0000-0000-0055-000000000057}, !- Handle + {00000000-0000-0000-0090-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000058}, !- Handle - {00000000-0000-0000-0094-000000000008}, !- HVAC Component - {00000000-0000-0000-0020-000000000273}; !- Port 1 + {00000000-0000-0000-0055-000000000058}, !- Handle + {00000000-0000-0000-0090-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000059}, !- Handle - {00000000-0000-0000-0094-000000000008}; !- HVAC Component + {00000000-0000-0000-0055-000000000059}, !- Handle + {00000000-0000-0000-0090-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000060}, !- Handle - {00000000-0000-0000-0094-000000000008}, !- HVAC Component - {00000000-0000-0000-0020-000000000274}; !- Port 1 + {00000000-0000-0000-0055-000000000060}, !- Handle + {00000000-0000-0000-0090-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000061}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- HVAC Component - {00000000-0000-0000-0020-000000000381}; !- Port 1 + {00000000-0000-0000-0055-000000000061}, !- Handle + {00000000-0000-0000-0090-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000062}, !- Handle - {00000000-0000-0000-0094-000000000015}; !- HVAC Component + {00000000-0000-0000-0055-000000000062}, !- Handle + {00000000-0000-0000-0090-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000063}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- HVAC Component - {00000000-0000-0000-0020-000000000382}; !- Port 1 + {00000000-0000-0000-0055-000000000063}, !- Handle + {00000000-0000-0000-0090-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000064}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- HVAC Component - {00000000-0000-0000-0020-000000000245}; !- Port 1 + {00000000-0000-0000-0055-000000000064}, !- Handle + {00000000-0000-0000-0090-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000065}, !- Handle - {00000000-0000-0000-0094-000000000009}; !- HVAC Component + {00000000-0000-0000-0055-000000000065}, !- Handle + {00000000-0000-0000-0090-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000066}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- HVAC Component - {00000000-0000-0000-0020-000000000246}; !- Port 1 + {00000000-0000-0000-0055-000000000066}, !- Handle + {00000000-0000-0000-0090-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000067}, !- Handle - {00000000-0000-0000-0094-000000000023}, !- HVAC Component + {00000000-0000-0000-0055-000000000067}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000089}; !- Port 1 OS:PortList, - {00000000-0000-0000-0059-000000000068}, !- Handle - {00000000-0000-0000-0094-000000000023}; !- HVAC Component + {00000000-0000-0000-0055-000000000068}, !- Handle + {00000000-0000-0000-0090-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0059-000000000069}, !- Handle - {00000000-0000-0000-0094-000000000023}, !- HVAC Component + {00000000-0000-0000-0055-000000000069}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000090}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0020-000000000516}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000517}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000192}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000193}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 742176.159809915, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -11444,14 +5696,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0020-000000000055}, !- Inlet Node Name {00000000-0000-0000-0020-000000000056}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 216907.891208676, !- Rated Pump Head {Pa} + 200710.224008028, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.924, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -11477,14 +5729,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0020-000000000103}, !- Inlet Node Name {00000000-0000-0000-0020-000000000104}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 256345.689610254, !- Rated Pump Head {Pa} + 234161.928009366, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.936, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -11510,14 +5762,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0061-000000000003}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Handle Pump Variable Speed 3, !- Name {00000000-0000-0000-0020-000000000128}, !- Inlet Node Name {00000000-0000-0000-0020-000000000129}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 223011.36000892, !- Rated Pump Head {Pa} + 200710.224008028, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.95, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -11543,322 +5795,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000003}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000004}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000005}, !- Handle + {00000000-0000-0000-0058-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000006}, !- Handle + {00000000-0000-0000-0058-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000007}, !- Handle + {00000000-0000-0000-0058-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000008}, !- Handle + {00000000-0000-0000-0058-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000009}, !- Handle + {00000000-0000-0000-0058-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000010}, !- Handle + {00000000-0000-0000-0058-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000011}, !- Handle + {00000000-0000-0000-0058-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000012}, !- Handle + {00000000-0000-0000-0058-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000013}, !- Handle + {00000000-0000-0000-0058-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000014}, !- Handle + {00000000-0000-0000-0058-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000015}, !- Handle + {00000000-0000-0000-0058-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000016}, !- Handle + {00000000-0000-0000-0058-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000017}, !- Handle + {00000000-0000-0000-0058-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000018}, !- Handle + {00000000-0000-0000-0058-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000019}, !- Handle + {00000000-0000-0000-0058-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000020}, !- Handle + {00000000-0000-0000-0058-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000021}, !- Handle + {00000000-0000-0000-0058-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000022}, !- Handle + {00000000-0000-0000-0058-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000023}, !- Handle + {00000000-0000-0000-0058-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000024}, !- Handle + {00000000-0000-0000-0058-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000025}, !- Handle + {00000000-0000-0000-0058-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000026}, !- Handle + {00000000-0000-0000-0058-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000027}, !- Handle + {00000000-0000-0000-0058-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000028}, !- Handle + {00000000-0000-0000-0058-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000029}, !- Handle + {00000000-0000-0000-0058-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000030}, !- Handle + {00000000-0000-0000-0058-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000031}, !- Handle + {00000000-0000-0000-0058-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000032}, !- Handle + {00000000-0000-0000-0058-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000033}, !- Handle + {00000000-0000-0000-0058-000000000033}, !- Handle Space Function Electrical/Mechanical room-sch-A 1, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000034}, !- Handle + {00000000-0000-0000-0058-000000000034}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000035}, !- Handle + {00000000-0000-0000-0058-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000036}, !- Handle + {00000000-0000-0000-0058-000000000036}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000037}, !- Handle + {00000000-0000-0000-0058-000000000037}, !- Handle Space Function Office open plan 1, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000038}, !- Handle + {00000000-0000-0000-0058-000000000038}, !- Handle Space Function Office open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0062-000000000039}, !- Handle + {00000000-0000-0000-0058-000000000039}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0067-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000002}, !- Handle + {00000000-0000-0000-0060-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000003}, !- Handle + {00000000-0000-0000-0060-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000004}, !- Handle + {00000000-0000-0000-0060-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000005}, !- Handle + {00000000-0000-0000-0060-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -11867,36 +6119,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000006}, !- Handle + {00000000-0000-0000-0060-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000007}, !- Handle + {00000000-0000-0000-0060-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000008}, !- Handle + {00000000-0000-0000-0060-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000009}, !- Handle + {00000000-0000-0000-0060-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11921,9 +6173,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000010}, !- Handle + {00000000-0000-0000-0060-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11948,27 +6200,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000011}, !- Handle + {00000000-0000-0000-0060-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000012}, !- Handle + {00000000-0000-0000-0060-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000013}, !- Handle + {00000000-0000-0000-0060-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -11999,9 +6251,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000014}, !- Handle + {00000000-0000-0000-0060-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12032,27 +6284,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000015}, !- Handle + {00000000-0000-0000-0060-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000016}, !- Handle + {00000000-0000-0000-0060-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000017}, !- Handle + {00000000-0000-0000-0060-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12086,9 +6338,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000018}, !- Handle + {00000000-0000-0000-0060-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12122,27 +6374,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000019}, !- Handle + {00000000-0000-0000-0060-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000020}, !- Handle + {00000000-0000-0000-0060-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000021}, !- Handle + {00000000-0000-0000-0060-000000000021}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12173,9 +6425,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000022}, !- Handle + {00000000-0000-0000-0060-000000000022}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -12206,27 +6458,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000023}, !- Handle + {00000000-0000-0000-0060-000000000023}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000024}, !- Handle + {00000000-0000-0000-0060-000000000024}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000025}, !- Handle + {00000000-0000-0000-0060-000000000025}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -12239,9 +6491,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000026}, !- Handle + {00000000-0000-0000-0060-000000000026}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -12254,27 +6506,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000027}, !- Handle + {00000000-0000-0000-0060-000000000027}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000028}, !- Handle + {00000000-0000-0000-0060-000000000028}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000029}, !- Handle + {00000000-0000-0000-0060-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -12290,9 +6542,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000030}, !- Handle + {00000000-0000-0000-0060-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -12308,52 +6560,52 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000031}, !- Handle + {00000000-0000-0000-0060-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000032}, !- Handle + {00000000-0000-0000-0060-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000033}, !- Handle + {00000000-0000-0000-0060-000000000033}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000034}, !- Handle + {00000000-0000-0000-0060-000000000034}, !- Handle NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000035}, !- Handle + {00000000-0000-0000-0060-000000000035}, !- Handle NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000036}, !- Handle + {00000000-0000-0000-0060-000000000036}, !- Handle Schedule Day 1, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -12362,70 +6614,16 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000037}, !- Handle + {00000000-0000-0000-0060-000000000037}, !- Handle Schedule Day 10, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000038}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000039}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000040}, !- Handle - Schedule Day 13, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000041}, !- Handle - Schedule Day 14, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000042}, !- Handle - Schedule Day 15, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000043}, !- Handle - Schedule Day 16, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000044}, !- Handle + {00000000-0000-0000-0060-000000000038}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -12434,9 +6632,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000045}, !- Handle + {00000000-0000-0000-0060-000000000039}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12512,9 +6710,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000046}, !- Handle + {00000000-0000-0000-0060-000000000040}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12590,117 +6788,90 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000047}, !- Handle + {00000000-0000-0000-0060-000000000041}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000048}, !- Handle + {00000000-0000-0000-0060-000000000042}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000049}, !- Handle + {00000000-0000-0000-0060-000000000043}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000050}, !- Handle + {00000000-0000-0000-0060-000000000044}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000051}, !- Handle - Schedule Day 9, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000052}, !- Handle - Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 60; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000053}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 13; !- Value Until Time 1 + 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000054}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000045}, !- Handle + Schedule Day 9, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 13; !- Value Until Time 1 + 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000055}, !- Handle - Supply Air Temp Default 3, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000046}, !- Handle + Service Water Loop Temp - 140F Default, !- Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 13; !- Value Until Time 1 + 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000056}, !- Handle + {00000000-0000-0000-0060-000000000047}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000057}, !- Handle + {00000000-0000-0000-0060-000000000048}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000058}, !- Handle + {00000000-0000-0000-0060-000000000049}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000059}, !- Handle + {00000000-0000-0000-0060-000000000050}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12776,9 +6947,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000060}, !- Handle + {00000000-0000-0000-0060-000000000051}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12854,9 +7025,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000061}, !- Handle + {00000000-0000-0000-0060-000000000052}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -12932,9 +7103,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000062}, !- Handle + {00000000-0000-0000-0060-000000000053}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13010,9 +7181,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000063}, !- Handle + {00000000-0000-0000-0060-000000000054}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13088,9 +7259,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000064}, !- Handle + {00000000-0000-0000-0060-000000000055}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13166,9 +7337,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000065}, !- Handle + {00000000-0000-0000-0060-000000000056}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13244,9 +7415,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000066}, !- Handle + {00000000-0000-0000-0060-000000000057}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13322,9 +7493,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000067}, !- Handle + {00000000-0000-0000-0060-000000000058}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -13337,126 +7508,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000068}, !- Handle + {00000000-0000-0000-0060-000000000059}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000069}, !- Handle + {00000000-0000-0000-0060-000000000060}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000070}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000071}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000072}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000073}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000074}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000075}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000076}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000077}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000078}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000079}, !- Handle + {00000000-0000-0000-0060-000000000061}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -13469,27 +7541,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000080}, !- Handle + {00000000-0000-0000-0060-000000000062}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000081}, !- Handle + {00000000-0000-0000-0060-000000000063}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000082}, !- Handle + {00000000-0000-0000-0060-000000000064}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13565,9 +7637,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000083}, !- Handle + {00000000-0000-0000-0060-000000000065}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13643,9 +7715,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000084}, !- Handle + {00000000-0000-0000-0060-000000000066}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13721,9 +7793,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000085}, !- Handle + {00000000-0000-0000-0060-000000000067}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -13799,11 +7871,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0066-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13818,11 +7890,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13837,11 +7909,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000003}, !- Handle + {00000000-0000-0000-0061-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -13856,11 +7928,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000004}, !- Handle + {00000000-0000-0000-0061-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13875,11 +7947,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000005}, !- Handle + {00000000-0000-0000-0061-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13894,11 +7966,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000006}, !- Handle + {00000000-0000-0000-0061-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -13913,11 +7985,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000007}, !- Handle + {00000000-0000-0000-0061-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13932,11 +8004,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000008}, !- Handle + {00000000-0000-0000-0061-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000028}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13951,11 +8023,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000009}, !- Handle + {00000000-0000-0000-0061-000000000009}, !- Handle Schedule Rule 17, !- Name - {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000022}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000022}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -13970,11 +8042,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000010}, !- Handle + {00000000-0000-0000-0061-000000000010}, !- Handle Schedule Rule 18, !- Name - {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000023}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -13989,11 +8061,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000011}, !- Handle + {00000000-0000-0000-0061-000000000011}, !- Handle Schedule Rule 19, !- Name - {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000024}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14008,11 +8080,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000012}, !- Handle + {00000000-0000-0000-0061-000000000012}, !- Handle Schedule Rule 2, !- Name - {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000018}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000018}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14027,11 +8099,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000013}, !- Handle + {00000000-0000-0000-0061-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000023}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000049}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000043}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14046,11 +8118,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000014}, !- Handle + {00000000-0000-0000-0061-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000023}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000044}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14065,11 +8137,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000015}, !- Handle + {00000000-0000-0000-0061-000000000015}, !- Handle Schedule Rule 22, !- Name - {00000000-0000-0000-0066-000000000030}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000024}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000051}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000045}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14084,125 +8156,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000016}, !- Handle + {00000000-0000-0000-0061-000000000016}, !- Handle Schedule Rule 23, !- Name - {00000000-0000-0000-0066-000000000030}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0064-000000000037}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0064-000000000038}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0064-000000000039}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000019}, !- Handle - Schedule Rule 26, !- Name - {00000000-0000-0000-0066-000000000028}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0064-000000000040}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000020}, !- Handle - Schedule Rule 27, !- Name - {00000000-0000-0000-0066-000000000028}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0064-000000000041}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000021}, !- Handle - Schedule Rule 28, !- Name - {00000000-0000-0000-0066-000000000029}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0064-000000000042}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000022}, !- Handle - Schedule Rule 29, !- Name - {00000000-0000-0000-0066-000000000029}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000024}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000037}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14217,11 +8175,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000023}, !- Handle + {00000000-0000-0000-0061-000000000017}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000019}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14236,11 +8194,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000024}, !- Handle + {00000000-0000-0000-0061-000000000018}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14255,11 +8213,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000025}, !- Handle + {00000000-0000-0000-0061-000000000019}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14274,11 +8232,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000026}, !- Handle + {00000000-0000-0000-0061-000000000020}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14293,11 +8251,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000027}, !- Handle + {00000000-0000-0000-0061-000000000021}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14312,11 +8270,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000028}, !- Handle + {00000000-0000-0000-0061-000000000022}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14331,11 +8289,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000029}, !- Handle + {00000000-0000-0000-0061-000000000023}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -14350,11 +8308,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000030}, !- Handle + {00000000-0000-0000-0061-000000000024}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000059}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000050}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14369,11 +8327,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000031}, !- Handle + {00000000-0000-0000-0061-000000000025}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000061}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000052}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14388,11 +8346,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000032}, !- Handle + {00000000-0000-0000-0061-000000000026}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000063}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14407,11 +8365,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000033}, !- Handle + {00000000-0000-0000-0061-000000000027}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000065}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000056}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -14426,11 +8384,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000034}, !- Handle + {00000000-0000-0000-0061-000000000028}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000082}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000064}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14445,11 +8403,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000035}, !- Handle + {00000000-0000-0000-0061-000000000029}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000084}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000066}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -14464,199 +8422,157 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0067-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000002}, !- Handle + {00000000-0000-0000-0062-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000003}, !- Handle + {00000000-0000-0000-0062-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000045}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000039}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000040}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000005}, !- Handle + {00000000-0000-0000-0062-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000006}, !- Handle + {00000000-0000-0000-0062-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000007}, !- Handle + {00000000-0000-0000-0062-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000008}, !- Handle + {00000000-0000-0000-0062-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000009}, !- Handle + {00000000-0000-0000-0062-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000010}, !- Handle + {00000000-0000-0000-0062-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000011}, !- Handle + {00000000-0000-0000-0062-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000012}, !- Handle + {00000000-0000-0000-0062-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000013}, !- Handle + {00000000-0000-0000-0062-000000000013}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000021}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000021}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000014}, !- Handle + {00000000-0000-0000-0062-000000000014}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000015}, !- Handle + {00000000-0000-0000-0062-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000016}, !- Handle + {00000000-0000-0000-0062-000000000016}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000033}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000034}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000035}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000033}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000034}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000035}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000017}, !- Handle + {00000000-0000-0000-0062-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000018}, !- Handle + {00000000-0000-0000-0062-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000019}, !- Handle + {00000000-0000-0000-0062-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000052}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000020}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000053}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000021}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000054}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000022}, !- Handle - Supply Air Temp 3, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000055}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000023}, !- Handle + {00000000-0000-0000-0062-000000000020}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000056}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000024}, !- Handle + {00000000-0000-0000-0062-000000000021}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000057}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000025}, !- Handle + {00000000-0000-0000-0062-000000000022}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000058}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000026}, !- Handle + {00000000-0000-0000-0062-000000000023}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000067}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000068}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000069}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000027}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000070}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000071}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000072}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000058}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000059}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000060}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000028}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000073}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000074}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000075}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000029}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000076}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000077}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000078}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000030}, !- Handle + {00000000-0000-0000-0062-000000000024}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000079}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000080}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000081}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000061}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000062}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000063}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -14664,7 +8580,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000002}, !- Handle + {00000000-0000-0000-0063-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -14672,7 +8588,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000003}, !- Handle + {00000000-0000-0000-0063-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -14680,14 +8596,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000004}, !- Handle + {00000000-0000-0000-0063-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000005}, !- Handle + {00000000-0000-0000-0063-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -14695,7 +8611,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000006}, !- Handle + {00000000-0000-0000-0063-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -14703,7 +8619,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000007}, !- Handle + {00000000-0000-0000-0063-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -14711,7 +8627,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000008}, !- Handle + {00000000-0000-0000-0063-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -14719,7 +8635,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0067-000000000009}, !- Handle + {00000000-0000-0000-0063-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -14727,84 +8643,42 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle Setpoint Manager Outdoor Air Pretreat 1, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0053-000000000283}, !- Reference Setpoint Node Name - {00000000-0000-0000-0053-000000000283}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0053-000000000284}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0053-000000000286}, !- Return Air Stream Node Name - {00000000-0000-0000-0053-000000000288}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000136}, !- Reference Setpoint Node Name + {00000000-0000-0000-0049-000000000136}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0049-000000000137}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0049-000000000139}, !- Return Air Stream Node Name + {00000000-0000-0000-0049-000000000141}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000002}, !- Handle + {00000000-0000-0000-0064-000000000002}, !- Handle Setpoint Manager Outdoor Air Pretreat 2, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0053-000000000313}, !- Reference Setpoint Node Name - {00000000-0000-0000-0053-000000000313}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0053-000000000314}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0053-000000000278}, !- Return Air Stream Node Name - {00000000-0000-0000-0053-000000000324}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000003}, !- Handle - Setpoint Manager Outdoor Air Pretreat 3, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0053-000000000292}, !- Reference Setpoint Node Name - {00000000-0000-0000-0053-000000000292}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0053-000000000293}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0053-000000000275}, !- Return Air Stream Node Name - {00000000-0000-0000-0053-000000000318}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000004}, !- Handle - Setpoint Manager Outdoor Air Pretreat 4, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0053-000000000299}, !- Reference Setpoint Node Name - {00000000-0000-0000-0053-000000000299}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0053-000000000300}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0053-000000000276}, !- Return Air Stream Node Name - {00000000-0000-0000-0053-000000000320}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000005}, !- Handle - Setpoint Manager Outdoor Air Pretreat 5, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0053-000000000306}, !- Reference Setpoint Node Name - {00000000-0000-0000-0053-000000000306}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0053-000000000307}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0053-000000000277}, !- Return Air Stream Node Name - {00000000-0000-0000-0053-000000000322}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000145}, !- Reference Setpoint Node Name + {00000000-0000-0000-0049-000000000145}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0049-000000000146}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0049-000000000131}, !- Return Air Stream Node Name + {00000000-0000-0000-0049-000000000150}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirReset, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Setpoint Manager Outdoor Air Reset 1, !- Name Temperature, !- Control Variable 82, !- Setpoint at Outdoor Low Temperature {C} -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0053-000000000215}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000071}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -14812,64 +8686,43 @@ OS:SetpointManager:OutdoorAirReset, ; !- Outdoor High Temperature 2 {C} OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000019}, !- Schedule Name - {00000000-0000-0000-0053-000000000220}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000019}, !- Schedule Name + {00000000-0000-0000-0049-000000000076}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000002}, !- Handle + {00000000-0000-0000-0066-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000003}, !- Schedule Name - {00000000-0000-0000-0053-000000000087}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000003}, !- Handle - Setpoint Manager Scheduled 2, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000004}, !- Schedule Name - {00000000-0000-0000-0053-000000000195}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Name + {00000000-0000-0000-0049-000000000033}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000004}, !- Handle - Setpoint Manager Scheduled 3, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000023}, !- Schedule Name - {00000000-0000-0000-0053-000000000317}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000020}, !- Schedule Name - {00000000-0000-0000-0053-000000000296}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name + {00000000-0000-0000-0066-000000000003}, !- Handle + Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000021}, !- Schedule Name - {00000000-0000-0000-0053-000000000303}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Name + {00000000-0000-0000-0049-000000000051}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000007}, !- Handle - Setpoint Manager Scheduled 6, !- Name + {00000000-0000-0000-0066-000000000004}, !- Handle + Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000022}, !- Schedule Name - {00000000-0000-0000-0053-000000000310}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000020}, !- Schedule Name + {00000000-0000-0000-0049-000000000149}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0094-000000000023}, !- Control Zone Name - {00000000-0000-0000-0053-000000000287}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0090-000000000023}, !- Control Zone Name + {00000000-0000-0000-0049-000000000140}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -14884,7 +8737,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0073-000000000001}, !- Handle + {00000000-0000-0000-0069-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -14893,7 +8746,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0074-000000000001}, !- Handle + {00000000-0000-0000-0070-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -14908,7 +8761,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0075-000000000001}, !- Handle + {00000000-0000-0000-0071-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -14923,7 +8776,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0072-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -14938,7 +8791,7 @@ OS:Site:GroundTemperature:FCfactorMethod, 11.1; !- December Ground Temperature {C} OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0073-000000000001}, !- Handle -1.6, !- January Surface Ground Temperature {C} -5.4, !- February Surface Ground Temperature {C} -6.4, !- March Surface Ground Temperature {C} @@ -14953,20 +8806,20 @@ OS:Site:GroundTemperature:Shallow, 4; !- December Surface Ground Temperature {C} OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0074-000000000001}, !- Handle Correlation, !- Calculation Method , !- Temperature Schedule Name 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} OS:Sizing:Parameters, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle 1.3, !- Heating Sizing Factor 1.1; !- Cooling Sizing Factor OS:Sizing:Plant, - {00000000-0000-0000-0080-000000000001}, !- Handle - {00000000-0000-0000-0058-000000000003}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Plant or Condenser Loop Name Heating, !- Loop Type 82, !- Design Loop Exit Temperature {C} 16, !- Loop Design Temperature Difference {deltaC} @@ -14975,8 +8828,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0080-000000000002}, !- Handle - {00000000-0000-0000-0058-000000000001}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Plant or Condenser Loop Name Cooling, !- Loop Type 7, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -14985,8 +8838,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0080-000000000003}, !- Handle - {00000000-0000-0000-0058-000000000002}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000003}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Plant or Condenser Loop Name Condenser, !- Loop Type 29, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -14995,8 +8848,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0080-000000000004}, !- Handle - {00000000-0000-0000-0058-000000000004}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000004}, !- Handle + {00000000-0000-0000-0054-000000000004}, !- Plant or Condenser Loop Name Heating, !- Loop Type 60, !- Design Loop Exit Temperature {C} 5, !- Loop Design Temperature Difference {deltaC} @@ -15005,7 +8858,7 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0077-000000000001}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name Sensible, !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -15046,48 +8899,7 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0081-000000000002}, !- Handle - {00000000-0000-0000-0002-000000000005}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0077-000000000002}, !- Handle {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -15127,101 +8939,19 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity -OS:Sizing:System, - {00000000-0000-0000-0081-000000000004}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0081-000000000005}, !- Handle - {00000000-0000-0000-0002-000000000004}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15245,8 +8975,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000002}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15280,18 +9010,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000003}, !- Handle - {00000000-0000-0000-0094-000000000022}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15315,8 +9045,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000004}, !- Handle - {00000000-0000-0000-0094-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15350,18 +9080,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000005}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15385,18 +9115,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000006}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15420,18 +9150,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000007}, !- Handle - {00000000-0000-0000-0094-000000000005}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15455,18 +9185,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000008}, !- Handle - {00000000-0000-0000-0094-000000000006}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15490,18 +9220,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000009}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15525,18 +9255,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000010}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15560,18 +9290,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000011}, !- Handle - {00000000-0000-0000-0094-000000000019}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15595,18 +9325,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000012}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15630,8 +9360,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000013}, !- Handle - {00000000-0000-0000-0094-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15665,8 +9395,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000014}, !- Handle - {00000000-0000-0000-0094-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -15700,18 +9430,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000015}, !- Handle - {00000000-0000-0000-0094-000000000007}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15735,18 +9465,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000016}, !- Handle - {00000000-0000-0000-0094-000000000020}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15770,18 +9500,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000017}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15805,18 +9535,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000018}, !- Handle - {00000000-0000-0000-0094-000000000021}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15840,18 +9570,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000019}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15875,18 +9605,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000020}, !- Handle - {00000000-0000-0000-0094-000000000008}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15910,18 +9640,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000021}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15945,18 +9675,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000022}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -15980,8 +9710,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0082-000000000023}, !- Handle - {00000000-0000-0000-0094-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -16015,7 +9745,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -16043,7 +9773,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0083-000000000002}, !- Handle + {00000000-0000-0000-0079-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -16071,7 +9801,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0083-000000000003}, !- Handle + {00000000-0000-0000-0079-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -16095,9 +9825,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0080-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0086-000000000002}, !- Space Type Name + {00000000-0000-0000-0082-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16105,16 +9835,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0094-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000002}, !- Handle + {00000000-0000-0000-0080-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16122,16 +9852,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000003}, !- Handle + {00000000-0000-0000-0080-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16139,16 +9869,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000004}, !- Handle + {00000000-0000-0000-0080-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16156,16 +9886,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000005}, !- Handle + {00000000-0000-0000-0080-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16173,16 +9903,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0094-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000006}, !- Handle + {00000000-0000-0000-0080-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16190,16 +9920,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000007}, !- Handle + {00000000-0000-0000-0080-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16207,16 +9937,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000008}, !- Handle + {00000000-0000-0000-0080-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16224,16 +9954,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000009}, !- Handle + {00000000-0000-0000-0080-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0086-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16241,16 +9971,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000010}, !- Handle + {00000000-0000-0000-0080-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0086-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16258,16 +9988,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000011}, !- Handle + {00000000-0000-0000-0080-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16275,16 +10005,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000012}, !- Handle + {00000000-0000-0000-0080-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16292,16 +10022,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000013}, !- Handle + {00000000-0000-0000-0080-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16309,16 +10039,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000014}, !- Handle + {00000000-0000-0000-0080-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16326,16 +10056,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0094-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000015}, !- Handle + {00000000-0000-0000-0080-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16343,16 +10073,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000016}, !- Handle + {00000000-0000-0000-0080-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16360,16 +10090,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000017}, !- Handle + {00000000-0000-0000-0080-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16377,16 +10107,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000018}, !- Handle + {00000000-0000-0000-0080-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16394,16 +10124,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0094-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000019}, !- Handle + {00000000-0000-0000-0080-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16411,16 +10141,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000020}, !- Handle + {00000000-0000-0000-0080-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16428,16 +10158,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000021}, !- Handle + {00000000-0000-0000-0080-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16445,16 +10175,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000022}, !- Handle + {00000000-0000-0000-0080-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0086-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16462,16 +10192,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0084-000000000023}, !- Handle + {00000000-0000-0000-0080-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0086-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -16479,17 +10209,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0094-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0084-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16501,10 +10231,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0084-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16516,10 +10246,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000003}, !- Handle + {00000000-0000-0000-0081-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0084-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16531,10 +10261,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000004}, !- Handle + {00000000-0000-0000-0081-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0084-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16546,10 +10276,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000005}, !- Handle + {00000000-0000-0000-0081-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0084-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16561,10 +10291,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000006}, !- Handle + {00000000-0000-0000-0081-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0084-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16576,10 +10306,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000007}, !- Handle + {00000000-0000-0000-0081-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0084-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16591,10 +10321,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000008}, !- Handle + {00000000-0000-0000-0081-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0084-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16606,10 +10336,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000009}, !- Handle + {00000000-0000-0000-0081-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0084-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16621,10 +10351,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000010}, !- Handle + {00000000-0000-0000-0081-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0084-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16636,10 +10366,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000011}, !- Handle + {00000000-0000-0000-0081-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0084-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16651,10 +10381,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000012}, !- Handle + {00000000-0000-0000-0081-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0084-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16666,10 +10396,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000013}, !- Handle + {00000000-0000-0000-0081-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0084-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16681,10 +10411,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000014}, !- Handle + {00000000-0000-0000-0081-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0084-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16696,10 +10426,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0085-000000000015}, !- Handle + {00000000-0000-0000-0081-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0084-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -16711,46 +10441,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0082-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000031}, !- Group Rendering Name {00000000-0000-0000-0035-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0086-000000000002}, !- Handle + {00000000-0000-0000-0082-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000033}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000033}, !- Group Rendering Name {00000000-0000-0000-0035-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical room-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0086-000000000003}, !- Handle + {00000000-0000-0000-0082-000000000003}, !- Handle Space Function Office open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0062-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000037}, !- Group Rendering Name {00000000-0000-0000-0035-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle {00000000-0000-0000-0023-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000002}, !- Handle + {00000000-0000-0000-0083-000000000002}, !- Handle {00000000-0000-0000-0023-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16759,7 +10489,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000003}, !- Handle + {00000000-0000-0000-0083-000000000003}, !- Handle {00000000-0000-0000-0023-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16768,7 +10498,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000004}, !- Handle + {00000000-0000-0000-0083-000000000004}, !- Handle {00000000-0000-0000-0023-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -16777,25 +10507,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000005}, !- Handle + {00000000-0000-0000-0083-000000000005}, !- Handle {00000000-0000-0000-0023-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000006}, !- Handle + {00000000-0000-0000-0083-000000000006}, !- Handle {00000000-0000-0000-0023-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000007}, !- Handle + {00000000-0000-0000-0083-000000000007}, !- Handle {00000000-0000-0000-0023-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000008}, !- Handle + {00000000-0000-0000-0083-000000000008}, !- Handle {00000000-0000-0000-0023-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16804,7 +10534,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000009}, !- Handle + {00000000-0000-0000-0083-000000000009}, !- Handle {00000000-0000-0000-0023-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16813,7 +10543,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000010}, !- Handle + {00000000-0000-0000-0083-000000000010}, !- Handle {00000000-0000-0000-0023-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16822,12 +10552,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000011}, !- Handle + {00000000-0000-0000-0083-000000000011}, !- Handle {00000000-0000-0000-0023-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000012}, !- Handle + {00000000-0000-0000-0083-000000000012}, !- Handle {00000000-0000-0000-0023-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -16836,12 +10566,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000013}, !- Handle + {00000000-0000-0000-0083-000000000013}, !- Handle {00000000-0000-0000-0023-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000014}, !- Handle + {00000000-0000-0000-0083-000000000014}, !- Handle {00000000-0000-0000-0023-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -16850,34 +10580,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000015}, !- Handle + {00000000-0000-0000-0083-000000000015}, !- Handle {00000000-0000-0000-0023-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000016}, !- Handle + {00000000-0000-0000-0083-000000000016}, !- Handle {00000000-0000-0000-0023-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000017}, !- Handle + {00000000-0000-0000-0083-000000000017}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000018}, !- Handle + {00000000-0000-0000-0083-000000000018}, !- Handle {00000000-0000-0000-0023-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000019}, !- Handle + {00000000-0000-0000-0083-000000000019}, !- Handle {00000000-0000-0000-0023-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000020}, !- Handle + {00000000-0000-0000-0083-000000000020}, !- Handle {00000000-0000-0000-0023-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16886,7 +10616,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000021}, !- Handle + {00000000-0000-0000-0083-000000000021}, !- Handle {00000000-0000-0000-0023-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16895,7 +10625,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000022}, !- Handle + {00000000-0000-0000-0083-000000000022}, !- Handle {00000000-0000-0000-0023-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -16904,7 +10634,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000023}, !- Handle + {00000000-0000-0000-0083-000000000023}, !- Handle {00000000-0000-0000-0023-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16913,7 +10643,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000024}, !- Handle + {00000000-0000-0000-0083-000000000024}, !- Handle {00000000-0000-0000-0023-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16922,7 +10652,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000025}, !- Handle + {00000000-0000-0000-0083-000000000025}, !- Handle {00000000-0000-0000-0023-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -16931,7 +10661,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000026}, !- Handle + {00000000-0000-0000-0083-000000000026}, !- Handle {00000000-0000-0000-0023-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -16940,7 +10670,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0087-000000000027}, !- Handle + {00000000-0000-0000-0083-000000000027}, !- Handle {00000000-0000-0000-0023-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -16949,135 +10679,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000001}, !- Handle - {00000000-0000-0000-0050-000000000021}; !- Material Name + {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0046-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000002}, !- Handle - {00000000-0000-0000-0051-000000000013}; !- Material Name + {00000000-0000-0000-0084-000000000002}, !- Handle + {00000000-0000-0000-0047-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000003}, !- Handle - {00000000-0000-0000-0050-000000000008}; !- Material Name + {00000000-0000-0000-0084-000000000003}, !- Handle + {00000000-0000-0000-0046-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000004}, !- Handle - {00000000-0000-0000-0051-000000000007}; !- Material Name + {00000000-0000-0000-0084-000000000004}, !- Handle + {00000000-0000-0000-0047-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000005}, !- Handle - {00000000-0000-0000-0050-000000000006}; !- Material Name + {00000000-0000-0000-0084-000000000005}, !- Handle + {00000000-0000-0000-0046-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000006}, !- Handle - {00000000-0000-0000-0050-000000000014}; !- Material Name + {00000000-0000-0000-0084-000000000006}, !- Handle + {00000000-0000-0000-0046-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000007}, !- Handle - {00000000-0000-0000-0050-000000000002}; !- Material Name + {00000000-0000-0000-0084-000000000007}, !- Handle + {00000000-0000-0000-0046-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000008}, !- Handle - {00000000-0000-0000-0050-000000000024}; !- Material Name + {00000000-0000-0000-0084-000000000008}, !- Handle + {00000000-0000-0000-0046-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000009}, !- Handle - {00000000-0000-0000-0050-000000000003}; !- Material Name + {00000000-0000-0000-0084-000000000009}, !- Handle + {00000000-0000-0000-0046-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000010}, !- Handle - {00000000-0000-0000-0050-000000000019}; !- Material Name + {00000000-0000-0000-0084-000000000010}, !- Handle + {00000000-0000-0000-0046-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000011}, !- Handle - {00000000-0000-0000-0050-000000000012}; !- Material Name + {00000000-0000-0000-0084-000000000011}, !- Handle + {00000000-0000-0000-0046-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000012}, !- Handle - {00000000-0000-0000-0104-000000000001}; !- Material Name + {00000000-0000-0000-0084-000000000012}, !- Handle + {00000000-0000-0000-0100-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000013}, !- Handle - {00000000-0000-0000-0050-000000000018}; !- Material Name + {00000000-0000-0000-0084-000000000013}, !- Handle + {00000000-0000-0000-0046-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000014}, !- Handle - {00000000-0000-0000-0051-000000000008}; !- Material Name + {00000000-0000-0000-0084-000000000014}, !- Handle + {00000000-0000-0000-0047-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000015}, !- Handle - {00000000-0000-0000-0050-000000000007}; !- Material Name + {00000000-0000-0000-0084-000000000015}, !- Handle + {00000000-0000-0000-0046-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000016}, !- Handle - {00000000-0000-0000-0051-000000000003}; !- Material Name + {00000000-0000-0000-0084-000000000016}, !- Handle + {00000000-0000-0000-0047-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000017}, !- Handle - {00000000-0000-0000-0050-000000000005}; !- Material Name + {00000000-0000-0000-0084-000000000017}, !- Handle + {00000000-0000-0000-0046-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000018}, !- Handle - {00000000-0000-0000-0050-000000000013}; !- Material Name + {00000000-0000-0000-0084-000000000018}, !- Handle + {00000000-0000-0000-0046-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000019}, !- Handle - {00000000-0000-0000-0051-000000000009}; !- Material Name + {00000000-0000-0000-0084-000000000019}, !- Handle + {00000000-0000-0000-0047-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000020}, !- Handle - {00000000-0000-0000-0050-000000000001}; !- Material Name + {00000000-0000-0000-0084-000000000020}, !- Handle + {00000000-0000-0000-0046-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000021}, !- Handle - {00000000-0000-0000-0050-000000000023}; !- Material Name + {00000000-0000-0000-0084-000000000021}, !- Handle + {00000000-0000-0000-0046-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000022}, !- Handle - {00000000-0000-0000-0051-000000000010}; !- Material Name + {00000000-0000-0000-0084-000000000022}, !- Handle + {00000000-0000-0000-0047-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000023}, !- Handle - {00000000-0000-0000-0050-000000000009}; !- Material Name + {00000000-0000-0000-0084-000000000023}, !- Handle + {00000000-0000-0000-0046-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000024}, !- Handle - {00000000-0000-0000-0051-000000000004}; !- Material Name + {00000000-0000-0000-0084-000000000024}, !- Handle + {00000000-0000-0000-0047-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000025}, !- Handle - {00000000-0000-0000-0050-000000000010}; !- Material Name + {00000000-0000-0000-0084-000000000025}, !- Handle + {00000000-0000-0000-0046-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000026}, !- Handle - {00000000-0000-0000-0051-000000000005}; !- Material Name + {00000000-0000-0000-0084-000000000026}, !- Handle + {00000000-0000-0000-0047-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000027}, !- Handle - {00000000-0000-0000-0050-000000000011}; !- Material Name + {00000000-0000-0000-0084-000000000027}, !- Handle + {00000000-0000-0000-0046-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000028}, !- Handle - {00000000-0000-0000-0051-000000000006}; !- Material Name + {00000000-0000-0000-0084-000000000028}, !- Handle + {00000000-0000-0000-0047-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000029}, !- Handle - {00000000-0000-0000-0050-000000000017}; !- Material Name + {00000000-0000-0000-0084-000000000029}, !- Handle + {00000000-0000-0000-0046-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000030}, !- Handle - {00000000-0000-0000-0051-000000000011}; !- Material Name + {00000000-0000-0000-0084-000000000030}, !- Handle + {00000000-0000-0000-0047-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0088-000000000031}, !- Handle - {00000000-0000-0000-0051-000000000012}; !- Material Name + {00000000-0000-0000-0084-000000000031}, !- Handle + {00000000-0000-0000-0047-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0085-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000098}, !- Surface Name + {00000000-0000-0000-0086-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17089,11 +10819,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000002}, !- Handle + {00000000-0000-0000-0085-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000103}, !- Surface Name + {00000000-0000-0000-0086-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17105,11 +10835,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000003}, !- Handle + {00000000-0000-0000-0085-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000110}, !- Surface Name + {00000000-0000-0000-0086-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17121,11 +10851,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000004}, !- Handle + {00000000-0000-0000-0085-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000119}, !- Surface Name + {00000000-0000-0000-0086-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17137,11 +10867,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000005}, !- Handle + {00000000-0000-0000-0085-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000125}, !- Surface Name + {00000000-0000-0000-0086-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17153,11 +10883,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000006}, !- Handle + {00000000-0000-0000-0085-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000129}, !- Surface Name + {00000000-0000-0000-0086-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17169,11 +10899,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000007}, !- Handle + {00000000-0000-0000-0085-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000135}, !- Surface Name + {00000000-0000-0000-0086-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17185,11 +10915,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000008}, !- Handle + {00000000-0000-0000-0085-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000143}, !- Surface Name + {00000000-0000-0000-0086-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17201,11 +10931,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000009}, !- Handle + {00000000-0000-0000-0085-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000147}, !- Surface Name + {00000000-0000-0000-0086-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17217,11 +10947,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000010}, !- Handle + {00000000-0000-0000-0085-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000151}, !- Surface Name + {00000000-0000-0000-0086-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17233,11 +10963,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000011}, !- Handle + {00000000-0000-0000-0085-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000157}, !- Surface Name + {00000000-0000-0000-0086-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17249,11 +10979,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0089-000000000012}, !- Handle + {00000000-0000-0000-0085-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0090-000000000165}, !- Surface Name + {00000000-0000-0000-0086-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -17265,13 +10995,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17282,13 +11012,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17299,13 +11029,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17316,13 +11046,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000004}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17333,13 +11063,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000005}, !- Handle + {00000000-0000-0000-0086-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17350,11 +11080,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000006}, !- Handle + {00000000-0000-0000-0086-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -17367,13 +11097,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000007}, !- Handle + {00000000-0000-0000-0086-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17384,13 +11114,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000008}, !- Handle + {00000000-0000-0000-0086-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17401,13 +11131,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000009}, !- Handle + {00000000-0000-0000-0086-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17418,13 +11148,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000010}, !- Handle + {00000000-0000-0000-0086-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17435,13 +11165,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000011}, !- Handle + {00000000-0000-0000-0086-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17452,13 +11182,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000012}, !- Handle + {00000000-0000-0000-0086-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17469,13 +11199,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000013}, !- Handle + {00000000-0000-0000-0086-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17486,13 +11216,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000014}, !- Handle + {00000000-0000-0000-0086-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17503,13 +11233,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000015}, !- Handle + {00000000-0000-0000-0086-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17520,13 +11250,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000016}, !- Handle + {00000000-0000-0000-0086-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17537,13 +11267,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000017}, !- Handle + {00000000-0000-0000-0086-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17554,13 +11284,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000018}, !- Handle + {00000000-0000-0000-0086-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17571,13 +11301,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000019}, !- Handle + {00000000-0000-0000-0086-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17588,11 +11318,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000020}, !- Handle + {00000000-0000-0000-0086-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17605,13 +11335,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000021}, !- Handle + {00000000-0000-0000-0086-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17622,13 +11352,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000022}, !- Handle + {00000000-0000-0000-0086-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17639,13 +11369,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000023}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17656,13 +11386,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000024}, !- Handle + {00000000-0000-0000-0086-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17673,13 +11403,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000025}, !- Handle + {00000000-0000-0000-0086-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17690,13 +11420,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000026}, !- Handle + {00000000-0000-0000-0086-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17707,13 +11437,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000027}, !- Handle + {00000000-0000-0000-0086-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17724,13 +11454,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000028}, !- Handle + {00000000-0000-0000-0086-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17741,13 +11471,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000029}, !- Handle + {00000000-0000-0000-0086-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17758,11 +11488,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000030}, !- Handle + {00000000-0000-0000-0086-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -17775,13 +11505,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000031}, !- Handle + {00000000-0000-0000-0086-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17792,13 +11522,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000032}, !- Handle + {00000000-0000-0000-0086-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17809,13 +11539,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000033}, !- Handle + {00000000-0000-0000-0086-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17826,13 +11556,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000034}, !- Handle + {00000000-0000-0000-0086-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17843,13 +11573,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000035}, !- Handle + {00000000-0000-0000-0086-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17860,13 +11590,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000036}, !- Handle + {00000000-0000-0000-0086-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17877,13 +11607,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000037}, !- Handle + {00000000-0000-0000-0086-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -17894,13 +11624,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000038}, !- Handle + {00000000-0000-0000-0086-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17911,13 +11641,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000039}, !- Handle + {00000000-0000-0000-0086-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17928,13 +11658,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000040}, !- Handle + {00000000-0000-0000-0086-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17945,13 +11675,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000041}, !- Handle + {00000000-0000-0000-0086-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17962,13 +11692,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000042}, !- Handle + {00000000-0000-0000-0086-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17979,13 +11709,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000043}, !- Handle + {00000000-0000-0000-0086-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -17996,13 +11726,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000044}, !- Handle + {00000000-0000-0000-0086-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18013,13 +11743,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000045}, !- Handle + {00000000-0000-0000-0086-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18030,13 +11760,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000046}, !- Handle + {00000000-0000-0000-0086-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18047,13 +11777,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000047}, !- Handle + {00000000-0000-0000-0086-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18064,13 +11794,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000048}, !- Handle + {00000000-0000-0000-0086-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18081,13 +11811,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000049}, !- Handle + {00000000-0000-0000-0086-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18098,13 +11828,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000050}, !- Handle + {00000000-0000-0000-0086-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18115,13 +11845,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000051}, !- Handle + {00000000-0000-0000-0086-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18132,13 +11862,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000052}, !- Handle + {00000000-0000-0000-0086-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18149,13 +11879,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000053}, !- Handle + {00000000-0000-0000-0086-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18166,13 +11896,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000054}, !- Handle + {00000000-0000-0000-0086-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18183,13 +11913,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000055}, !- Handle + {00000000-0000-0000-0086-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18200,13 +11930,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000056}, !- Handle + {00000000-0000-0000-0086-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18217,13 +11947,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000057}, !- Handle + {00000000-0000-0000-0086-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18234,13 +11964,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000058}, !- Handle + {00000000-0000-0000-0086-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18251,13 +11981,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000059}, !- Handle + {00000000-0000-0000-0086-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18268,11 +11998,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000060}, !- Handle + {00000000-0000-0000-0086-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18285,13 +12015,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000061}, !- Handle + {00000000-0000-0000-0086-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18302,13 +12032,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000062}, !- Handle + {00000000-0000-0000-0086-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18319,13 +12049,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000063}, !- Handle + {00000000-0000-0000-0086-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18336,13 +12066,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000064}, !- Handle + {00000000-0000-0000-0086-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18353,13 +12083,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000065}, !- Handle + {00000000-0000-0000-0086-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18370,13 +12100,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000066}, !- Handle + {00000000-0000-0000-0086-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18387,13 +12117,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000067}, !- Handle + {00000000-0000-0000-0086-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18404,13 +12134,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000068}, !- Handle + {00000000-0000-0000-0086-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18421,13 +12151,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000069}, !- Handle + {00000000-0000-0000-0086-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18438,11 +12168,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000070}, !- Handle + {00000000-0000-0000-0086-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18455,13 +12185,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000071}, !- Handle + {00000000-0000-0000-0086-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18472,13 +12202,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000072}, !- Handle + {00000000-0000-0000-0086-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18489,13 +12219,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000073}, !- Handle + {00000000-0000-0000-0086-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18506,13 +12236,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000074}, !- Handle + {00000000-0000-0000-0086-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18523,13 +12253,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000075}, !- Handle + {00000000-0000-0000-0086-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18540,13 +12270,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000076}, !- Handle + {00000000-0000-0000-0086-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18557,13 +12287,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000077}, !- Handle + {00000000-0000-0000-0086-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18574,13 +12304,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000078}, !- Handle + {00000000-0000-0000-0086-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18591,13 +12321,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000079}, !- Handle + {00000000-0000-0000-0086-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18608,11 +12338,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000080}, !- Handle + {00000000-0000-0000-0086-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18625,11 +12355,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000081}, !- Handle + {00000000-0000-0000-0086-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18642,11 +12372,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000082}, !- Handle + {00000000-0000-0000-0086-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18659,11 +12389,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000083}, !- Handle + {00000000-0000-0000-0086-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18676,11 +12406,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000084}, !- Handle + {00000000-0000-0000-0086-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18693,13 +12423,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000085}, !- Handle + {00000000-0000-0000-0086-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18710,13 +12440,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000086}, !- Handle + {00000000-0000-0000-0086-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18727,11 +12457,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000087}, !- Handle + {00000000-0000-0000-0086-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -18744,11 +12474,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000088}, !- Handle + {00000000-0000-0000-0086-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18761,11 +12491,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000089}, !- Handle + {00000000-0000-0000-0086-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18778,11 +12508,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000090}, !- Handle + {00000000-0000-0000-0086-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18795,11 +12525,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000091}, !- Handle + {00000000-0000-0000-0086-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18812,13 +12542,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000092}, !- Handle + {00000000-0000-0000-0086-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18829,13 +12559,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000093}, !- Handle + {00000000-0000-0000-0086-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18846,13 +12576,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000094}, !- Handle + {00000000-0000-0000-0086-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18863,13 +12593,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000095}, !- Handle + {00000000-0000-0000-0086-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -18880,13 +12610,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000096}, !- Handle + {00000000-0000-0000-0086-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18897,13 +12627,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000097}, !- Handle + {00000000-0000-0000-0086-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18914,11 +12644,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000098}, !- Handle + {00000000-0000-0000-0086-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -18931,13 +12661,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000099}, !- Handle + {00000000-0000-0000-0086-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18948,13 +12678,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000100}, !- Handle + {00000000-0000-0000-0086-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18965,13 +12695,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000101}, !- Handle + {00000000-0000-0000-0086-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18982,13 +12712,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000102}, !- Handle + {00000000-0000-0000-0086-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -18999,11 +12729,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000103}, !- Handle + {00000000-0000-0000-0086-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19016,13 +12746,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000104}, !- Handle + {00000000-0000-0000-0086-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19033,13 +12763,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000105}, !- Handle + {00000000-0000-0000-0086-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19050,13 +12780,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000106}, !- Handle + {00000000-0000-0000-0086-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19067,13 +12797,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000107}, !- Handle + {00000000-0000-0000-0086-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19084,13 +12814,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000108}, !- Handle + {00000000-0000-0000-0086-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19101,13 +12831,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000109}, !- Handle + {00000000-0000-0000-0086-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -19118,11 +12848,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000110}, !- Handle + {00000000-0000-0000-0086-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19135,13 +12865,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000111}, !- Handle + {00000000-0000-0000-0086-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19152,13 +12882,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000112}, !- Handle + {00000000-0000-0000-0086-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19169,13 +12899,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000113}, !- Handle + {00000000-0000-0000-0086-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19186,13 +12916,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000114}, !- Handle + {00000000-0000-0000-0086-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19203,13 +12933,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000115}, !- Handle + {00000000-0000-0000-0086-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -19220,13 +12950,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000116}, !- Handle + {00000000-0000-0000-0086-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -19237,13 +12967,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000117}, !- Handle + {00000000-0000-0000-0086-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19254,13 +12984,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000118}, !- Handle + {00000000-0000-0000-0086-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19271,11 +13001,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000119}, !- Handle + {00000000-0000-0000-0086-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19288,13 +13018,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000120}, !- Handle + {00000000-0000-0000-0086-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19305,13 +13035,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000121}, !- Handle + {00000000-0000-0000-0086-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19322,11 +13052,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000122}, !- Handle + {00000000-0000-0000-0086-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19339,13 +13069,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000123}, !- Handle + {00000000-0000-0000-0086-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19356,13 +13086,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000124}, !- Handle + {00000000-0000-0000-0086-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19373,11 +13103,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000125}, !- Handle + {00000000-0000-0000-0086-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19390,13 +13120,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000126}, !- Handle + {00000000-0000-0000-0086-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19407,13 +13137,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000127}, !- Handle + {00000000-0000-0000-0086-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19424,11 +13154,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000128}, !- Handle + {00000000-0000-0000-0086-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19441,11 +13171,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000129}, !- Handle + {00000000-0000-0000-0086-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19458,13 +13188,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000130}, !- Handle + {00000000-0000-0000-0086-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19475,13 +13205,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000131}, !- Handle + {00000000-0000-0000-0086-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19492,13 +13222,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000132}, !- Handle + {00000000-0000-0000-0086-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19509,13 +13239,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000133}, !- Handle + {00000000-0000-0000-0086-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19526,11 +13256,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000134}, !- Handle + {00000000-0000-0000-0086-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19543,11 +13273,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000135}, !- Handle + {00000000-0000-0000-0086-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19560,13 +13290,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000136}, !- Handle + {00000000-0000-0000-0086-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19577,13 +13307,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000137}, !- Handle + {00000000-0000-0000-0086-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19594,13 +13324,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000138}, !- Handle + {00000000-0000-0000-0086-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19611,13 +13341,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000139}, !- Handle + {00000000-0000-0000-0086-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19628,11 +13358,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000140}, !- Handle + {00000000-0000-0000-0086-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19645,13 +13375,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000141}, !- Handle + {00000000-0000-0000-0086-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19662,13 +13392,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000142}, !- Handle + {00000000-0000-0000-0086-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19679,11 +13409,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000143}, !- Handle + {00000000-0000-0000-0086-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19696,13 +13426,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000144}, !- Handle + {00000000-0000-0000-0086-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19713,13 +13443,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000145}, !- Handle + {00000000-0000-0000-0086-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19730,11 +13460,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000146}, !- Handle + {00000000-0000-0000-0086-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19747,11 +13477,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000147}, !- Handle + {00000000-0000-0000-0086-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19764,13 +13494,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000148}, !- Handle + {00000000-0000-0000-0086-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19781,13 +13511,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000149}, !- Handle + {00000000-0000-0000-0086-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19798,11 +13528,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000150}, !- Handle + {00000000-0000-0000-0086-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19815,11 +13545,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000151}, !- Handle + {00000000-0000-0000-0086-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19832,13 +13562,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000152}, !- Handle + {00000000-0000-0000-0086-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19849,13 +13579,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000153}, !- Handle + {00000000-0000-0000-0086-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19866,13 +13596,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000154}, !- Handle + {00000000-0000-0000-0086-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19883,13 +13613,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000155}, !- Handle + {00000000-0000-0000-0086-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19900,11 +13630,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000156}, !- Handle + {00000000-0000-0000-0086-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -19917,11 +13647,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000157}, !- Handle + {00000000-0000-0000-0086-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -19934,13 +13664,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000158}, !- Handle + {00000000-0000-0000-0086-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19951,13 +13681,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000159}, !- Handle + {00000000-0000-0000-0086-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19968,13 +13698,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000160}, !- Handle + {00000000-0000-0000-0086-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -19985,13 +13715,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000161}, !- Handle + {00000000-0000-0000-0086-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20002,11 +13732,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000162}, !- Handle + {00000000-0000-0000-0086-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -20019,13 +13749,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000163}, !- Handle + {00000000-0000-0000-0086-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20036,13 +13766,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000164}, !- Handle + {00000000-0000-0000-0086-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0090-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -20053,11 +13783,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000165}, !- Handle + {00000000-0000-0000-0086-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20070,11 +13800,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000166}, !- Handle + {00000000-0000-0000-0086-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20087,11 +13817,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000167}, !- Handle + {00000000-0000-0000-0086-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20104,11 +13834,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000168}, !- Handle + {00000000-0000-0000-0086-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20121,11 +13851,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0090-000000000169}, !- Handle + {00000000-0000-0000-0086-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0084-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -20138,27 +13868,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0087-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0093-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000044}, !- Surface Name + {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0093-000000000002}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Surface Name + {00000000-0000-0000-0089-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20167,21 +13897,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000007}, !- Thermostat Name + {00000000-0000-0000-0058-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20190,21 +13920,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000009}, !- Thermostat Name + {00000000-0000-0000-0058-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20213,21 +13943,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000008}, !- Thermostat Name + {00000000-0000-0000-0058-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20236,21 +13966,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000058}, !- Thermostat Name + {00000000-0000-0000-0058-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20259,21 +13989,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000052}, !- Thermostat Name + {00000000-0000-0000-0058-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20282,21 +14012,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000053}, !- Thermostat Name + {00000000-0000-0000-0058-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20305,21 +14035,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000060}, !- Thermostat Name + {00000000-0000-0000-0058-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20328,21 +14058,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000065}, !- Thermostat Name + {00000000-0000-0000-0058-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20351,21 +14081,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000067}, !- Thermostat Name + {00000000-0000-0000-0058-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20374,21 +14104,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000047}, !- Thermostat Name + {00000000-0000-0000-0058-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20397,21 +14127,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000055}, !- Thermostat Name + {00000000-0000-0000-0058-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20420,21 +14150,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000057}, !- Thermostat Name + {00000000-0000-0000-0058-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20443,21 +14173,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000062}, !- Thermostat Name + {00000000-0000-0000-0058-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20466,21 +14196,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000064}, !- Thermostat Name + {00000000-0000-0000-0058-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20489,21 +14219,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000066}, !- Thermostat Name + {00000000-0000-0000-0058-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -20512,21 +14242,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000050}, !- Thermostat Name + {00000000-0000-0000-0058-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20535,21 +14265,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000051}, !- Thermostat Name + {00000000-0000-0000-0058-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20558,21 +14288,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000054}, !- Thermostat Name + {00000000-0000-0000-0058-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20581,21 +14311,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000056}, !- Thermostat Name + {00000000-0000-0000-0058-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20604,21 +14334,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000061}, !- Thermostat Name + {00000000-0000-0000-0058-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20627,21 +14357,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000063}, !- Thermostat Name + {00000000-0000-0000-0058-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20650,21 +14380,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000049}, !- Thermostat Name + {00000000-0000-0000-0058-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0094-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -20673,444 +14403,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0059-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0059-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0059-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0062-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0095-000000000013}, !- Thermostat Name + {00000000-0000-0000-0058-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0091-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000002}, !- Handle + {00000000-0000-0000-0091-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000003}, !- Handle + {00000000-0000-0000-0091-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000004}, !- Handle + {00000000-0000-0000-0091-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000005}, !- Handle + {00000000-0000-0000-0091-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000006}, !- Handle + {00000000-0000-0000-0091-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000007}, !- Handle + {00000000-0000-0000-0091-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000008}, !- Handle + {00000000-0000-0000-0091-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000009}, !- Handle + {00000000-0000-0000-0091-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000010}, !- Handle + {00000000-0000-0000-0091-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000011}, !- Handle + {00000000-0000-0000-0091-000000000011}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000012}, !- Handle + {00000000-0000-0000-0091-000000000012}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000013}, !- Handle + {00000000-0000-0000-0091-000000000013}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000014}, !- Handle + {00000000-0000-0000-0091-000000000014}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000015}, !- Handle + {00000000-0000-0000-0091-000000000015}, !- Handle Space Function Office open plan Thermostat 1, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000016}, !- Handle + {00000000-0000-0000-0091-000000000016}, !- Handle Space Function Office open plan Thermostat 10, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000017}, !- Handle + {00000000-0000-0000-0091-000000000017}, !- Handle Space Function Office open plan Thermostat 11, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000018}, !- Handle + {00000000-0000-0000-0091-000000000018}, !- Handle Space Function Office open plan Thermostat 12, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000019}, !- Handle + {00000000-0000-0000-0091-000000000019}, !- Handle Space Function Office open plan Thermostat 13, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000020}, !- Handle + {00000000-0000-0000-0091-000000000020}, !- Handle Space Function Office open plan Thermostat 14, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000021}, !- Handle + {00000000-0000-0000-0091-000000000021}, !- Handle Space Function Office open plan Thermostat 15, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000022}, !- Handle + {00000000-0000-0000-0091-000000000022}, !- Handle Space Function Office open plan Thermostat 16, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000023}, !- Handle + {00000000-0000-0000-0091-000000000023}, !- Handle Space Function Office open plan Thermostat 17, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000024}, !- Handle + {00000000-0000-0000-0091-000000000024}, !- Handle Space Function Office open plan Thermostat 18, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000025}, !- Handle + {00000000-0000-0000-0091-000000000025}, !- Handle Space Function Office open plan Thermostat 19, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000026}, !- Handle + {00000000-0000-0000-0091-000000000026}, !- Handle Space Function Office open plan Thermostat 2, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000027}, !- Handle + {00000000-0000-0000-0091-000000000027}, !- Handle Space Function Office open plan Thermostat 20, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000028}, !- Handle + {00000000-0000-0000-0091-000000000028}, !- Handle Space Function Office open plan Thermostat 21, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000029}, !- Handle + {00000000-0000-0000-0091-000000000029}, !- Handle Space Function Office open plan Thermostat 22, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000030}, !- Handle + {00000000-0000-0000-0091-000000000030}, !- Handle Space Function Office open plan Thermostat 23, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000031}, !- Handle + {00000000-0000-0000-0091-000000000031}, !- Handle Space Function Office open plan Thermostat 24, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000032}, !- Handle + {00000000-0000-0000-0091-000000000032}, !- Handle Space Function Office open plan Thermostat 25, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000033}, !- Handle + {00000000-0000-0000-0091-000000000033}, !- Handle Space Function Office open plan Thermostat 26, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000034}, !- Handle + {00000000-0000-0000-0091-000000000034}, !- Handle Space Function Office open plan Thermostat 27, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000035}, !- Handle + {00000000-0000-0000-0091-000000000035}, !- Handle Space Function Office open plan Thermostat 28, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000036}, !- Handle + {00000000-0000-0000-0091-000000000036}, !- Handle Space Function Office open plan Thermostat 29, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000037}, !- Handle + {00000000-0000-0000-0091-000000000037}, !- Handle Space Function Office open plan Thermostat 3, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000038}, !- Handle + {00000000-0000-0000-0091-000000000038}, !- Handle Space Function Office open plan Thermostat 30, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000039}, !- Handle + {00000000-0000-0000-0091-000000000039}, !- Handle Space Function Office open plan Thermostat 31, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000040}, !- Handle + {00000000-0000-0000-0091-000000000040}, !- Handle Space Function Office open plan Thermostat 32, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000041}, !- Handle + {00000000-0000-0000-0091-000000000041}, !- Handle Space Function Office open plan Thermostat 33, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000042}, !- Handle + {00000000-0000-0000-0091-000000000042}, !- Handle Space Function Office open plan Thermostat 34, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000043}, !- Handle + {00000000-0000-0000-0091-000000000043}, !- Handle Space Function Office open plan Thermostat 35, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000044}, !- Handle + {00000000-0000-0000-0091-000000000044}, !- Handle Space Function Office open plan Thermostat 36, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000045}, !- Handle + {00000000-0000-0000-0091-000000000045}, !- Handle Space Function Office open plan Thermostat 37, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000046}, !- Handle + {00000000-0000-0000-0091-000000000046}, !- Handle Space Function Office open plan Thermostat 38, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000047}, !- Handle + {00000000-0000-0000-0091-000000000047}, !- Handle Space Function Office open plan Thermostat 39, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000048}, !- Handle + {00000000-0000-0000-0091-000000000048}, !- Handle Space Function Office open plan Thermostat 4, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000049}, !- Handle + {00000000-0000-0000-0091-000000000049}, !- Handle Space Function Office open plan Thermostat 40, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000050}, !- Handle + {00000000-0000-0000-0091-000000000050}, !- Handle Space Function Office open plan Thermostat 41, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000051}, !- Handle + {00000000-0000-0000-0091-000000000051}, !- Handle Space Function Office open plan Thermostat 42, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000052}, !- Handle + {00000000-0000-0000-0091-000000000052}, !- Handle Space Function Office open plan Thermostat 43, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000053}, !- Handle + {00000000-0000-0000-0091-000000000053}, !- Handle Space Function Office open plan Thermostat 44, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000054}, !- Handle + {00000000-0000-0000-0091-000000000054}, !- Handle Space Function Office open plan Thermostat 45, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000055}, !- Handle + {00000000-0000-0000-0091-000000000055}, !- Handle Space Function Office open plan Thermostat 46, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000056}, !- Handle + {00000000-0000-0000-0091-000000000056}, !- Handle Space Function Office open plan Thermostat 47, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000057}, !- Handle + {00000000-0000-0000-0091-000000000057}, !- Handle Space Function Office open plan Thermostat 48, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000058}, !- Handle + {00000000-0000-0000-0091-000000000058}, !- Handle Space Function Office open plan Thermostat 49, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000059}, !- Handle + {00000000-0000-0000-0091-000000000059}, !- Handle Space Function Office open plan Thermostat 5, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000060}, !- Handle + {00000000-0000-0000-0091-000000000060}, !- Handle Space Function Office open plan Thermostat 50, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000061}, !- Handle + {00000000-0000-0000-0091-000000000061}, !- Handle Space Function Office open plan Thermostat 51, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000062}, !- Handle + {00000000-0000-0000-0091-000000000062}, !- Handle Space Function Office open plan Thermostat 52, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000063}, !- Handle + {00000000-0000-0000-0091-000000000063}, !- Handle Space Function Office open plan Thermostat 53, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000064}, !- Handle + {00000000-0000-0000-0091-000000000064}, !- Handle Space Function Office open plan Thermostat 54, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000065}, !- Handle + {00000000-0000-0000-0091-000000000065}, !- Handle Space Function Office open plan Thermostat 55, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000066}, !- Handle + {00000000-0000-0000-0091-000000000066}, !- Handle Space Function Office open plan Thermostat 56, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000067}, !- Handle + {00000000-0000-0000-0091-000000000067}, !- Handle Space Function Office open plan Thermostat 57, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000068}, !- Handle + {00000000-0000-0000-0091-000000000068}, !- Handle Space Function Office open plan Thermostat 6, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000069}, !- Handle + {00000000-0000-0000-0091-000000000069}, !- Handle Space Function Office open plan Thermostat 7, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000070}, !- Handle + {00000000-0000-0000-0091-000000000070}, !- Handle Space Function Office open plan Thermostat 8, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000071}, !- Handle + {00000000-0000-0000-0091-000000000071}, !- Handle Space Function Office open plan Thermostat 9, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0095-000000000072}, !- Handle + {00000000-0000-0000-0091-000000000072}, !- Handle Space Function Office open plan Thermostat, !- Name - {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0093-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle 1089gal NaturalGas Water Heater - 735kBtu/hr 0.905 Therm Eff, !- Name 4.12098554344306, !- Tank Volume {m3} - {00000000-0000-0000-0066-000000000019}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000019}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -21128,7 +14858,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0066-000000000024}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0062-000000000021}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 25.910825760565, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -21138,8 +14868,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0020-000000000519}, !- Use Side Inlet Node Name - {00000000-0000-0000-0020-000000000520}, !- Use Side Outlet Node Name + {00000000-0000-0000-0020-000000000195}, !- Use Side Inlet Node Name + {00000000-0000-0000-0020-000000000196}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -21152,18 +14882,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0099-000000000001}, !- Handle - {00000000-0000-0000-0098-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle Core_bottom WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000536}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000537}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000212}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000213}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21171,13 +14901,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000002}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Handle Core_mid WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000540}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000541}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000216}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000217}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21185,13 +14915,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000003}, !- Handle + {00000000-0000-0000-0096-000000000003}, !- Handle Core_top WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000544}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000545}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000220}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000221}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21199,13 +14929,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000004}, !- Handle + {00000000-0000-0000-0096-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0020-000000000548}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000549}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000224}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000225}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21213,13 +14943,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000005}, !- Handle + {00000000-0000-0000-0096-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000552}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000553}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000228}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000229}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21227,13 +14957,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000006}, !- Handle + {00000000-0000-0000-0096-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000556}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000557}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000232}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000233}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21241,13 +14971,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000007}, !- Handle + {00000000-0000-0000-0096-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000560}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000561}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000236}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000237}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21255,13 +14985,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000008}, !- Handle + {00000000-0000-0000-0096-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000564}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000565}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000240}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000241}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21269,13 +14999,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000009}, !- Handle + {00000000-0000-0000-0096-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000568}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000569}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000244}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000245}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21283,13 +15013,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000010}, !- Handle + {00000000-0000-0000-0096-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000572}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000573}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000248}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000249}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21297,13 +15027,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000011}, !- Handle + {00000000-0000-0000-0096-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000576}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000577}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000252}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000253}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21311,13 +15041,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000012}, !- Handle + {00000000-0000-0000-0096-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000580}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000581}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000256}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000257}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21325,13 +15055,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000013}, !- Handle + {00000000-0000-0000-0096-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000584}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000585}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000260}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000261}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21339,13 +15069,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000014}, !- Handle + {00000000-0000-0000-0096-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000588}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000589}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000264}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000265}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21353,13 +15083,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000015}, !- Handle + {00000000-0000-0000-0096-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000592}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000593}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000268}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000269}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21367,13 +15097,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000016}, !- Handle + {00000000-0000-0000-0096-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000596}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000597}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000272}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000273}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21381,13 +15111,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000017}, !- Handle + {00000000-0000-0000-0096-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000600}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000601}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000276}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000277}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21395,13 +15125,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000018}, !- Handle + {00000000-0000-0000-0096-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000604}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000605}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000280}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000281}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21409,13 +15139,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0100-000000000019}, !- Handle + {00000000-0000-0000-0096-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000608}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000609}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000284}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000285}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -21423,314 +15153,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0101-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle Core_bottom Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0102-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000002}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000002}, !- Handle + {00000000-0000-0000-0097-000000000002}, !- Handle Core_mid Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0102-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000003}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000003}, !- Handle + {00000000-0000-0000-0097-000000000003}, !- Handle Core_top Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0102-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000004}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000004}, !- Handle + {00000000-0000-0000-0097-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0102-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000005}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000005}, !- Handle + {00000000-0000-0000-0097-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0102-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000006}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000006}, !- Handle + {00000000-0000-0000-0097-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0102-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000007}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000007}, !- Handle + {00000000-0000-0000-0097-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0102-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000008}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000008}, !- Handle + {00000000-0000-0000-0097-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000011}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000009}, !- Handle + {00000000-0000-0000-0097-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000012}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000010}, !- Handle + {00000000-0000-0000-0097-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000013}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000011}, !- Handle + {00000000-0000-0000-0097-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000014}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000012}, !- Handle + {00000000-0000-0000-0097-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000015}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000013}, !- Handle + {00000000-0000-0000-0097-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000016}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000014}, !- Handle + {00000000-0000-0000-0097-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000017}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000015}, !- Handle + {00000000-0000-0000-0097-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000018}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000016}, !- Handle + {00000000-0000-0000-0097-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000019}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000017}, !- Handle + {00000000-0000-0000-0097-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000020}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000018}, !- Handle + {00000000-0000-0000-0097-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0102-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000021}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0101-000000000019}, !- Handle + {00000000-0000-0000-0097-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0102-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0084-000000000022}, !- Space Name - {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle Core_bottom 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000002}, !- Handle + {00000000-0000-0000-0098-000000000002}, !- Handle Core_mid 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000003}, !- Handle + {00000000-0000-0000-0098-000000000003}, !- Handle Core_top 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000004}, !- Handle + {00000000-0000-0000-0098-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.87303728009577e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000005}, !- Handle + {00000000-0000-0000-0098-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000006}, !- Handle + {00000000-0000-0000-0098-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000007}, !- Handle + {00000000-0000-0000-0098-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000008}, !- Handle + {00000000-0000-0000-0098-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000009}, !- Handle + {00000000-0000-0000-0098-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000010}, !- Handle + {00000000-0000-0000-0098-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000011}, !- Handle + {00000000-0000-0000-0098-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000012}, !- Handle + {00000000-0000-0000-0098-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000013}, !- Handle + {00000000-0000-0000-0098-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000014}, !- Handle + {00000000-0000-0000-0098-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000015}, !- Handle + {00000000-0000-0000-0098-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000016}, !- Handle + {00000000-0000-0000-0098-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000017}, !- Handle + {00000000-0000-0000-0098-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000018}, !- Handle + {00000000-0000-0000-0098-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0102-000000000019}, !- Handle + {00000000-0000-0000-0098-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0103-000000000001}, !- Handle + {00000000-0000-0000-0099-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -21746,175 +15476,67 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0104-000000000001}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0104-000000000002}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Handle SimpleGlazing:U=0.173 SHGC=0.600, !- Name 1.73, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0104-000000000003}, !- Handle + {00000000-0000-0000-0100-000000000003}, !- Handle SimpleGlazing:U=0.241 SHGC=0.600, !- Name 2.41, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0105-000000000001}, !- Handle + {00000000-0000-0000-0101-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000001}, !- Handle + {00000000-0000-0000-0102-000000000001}, !- Handle Zone HVAC Baseboard Convective Water 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0019-000000000001}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 10, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000002}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000003}, !- Handle - Zone HVAC Baseboard Convective Water 11, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000003}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000004}, !- Handle - Zone HVAC Baseboard Convective Water 12, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000004}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000005}, !- Handle - Zone HVAC Baseboard Convective Water 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000005}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000006}, !- Handle - Zone HVAC Baseboard Convective Water 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000006}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000007}, !- Handle - Zone HVAC Baseboard Convective Water 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000007}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000008}, !- Handle - Zone HVAC Baseboard Convective Water 16, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000008}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000009}, !- Handle - Zone HVAC Baseboard Convective Water 17, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000009}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000010}, !- Handle - Zone HVAC Baseboard Convective Water 18, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000010}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000011}, !- Handle - Zone HVAC Baseboard Convective Water 19, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000011}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000012}, !- Handle + {00000000-0000-0000-0102-000000000002}, !- Handle Zone HVAC Baseboard Convective Water 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000012}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000013}, !- Handle - Zone HVAC Baseboard Convective Water 20, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000013}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000014}, !- Handle - Zone HVAC Baseboard Convective Water 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000014}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000015}, !- Handle - Zone HVAC Baseboard Convective Water 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000015}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000016}, !- Handle - Zone HVAC Baseboard Convective Water 5, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000016}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000017}, !- Handle - Zone HVAC Baseboard Convective Water 6, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000017}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000018}, !- Handle - Zone HVAC Baseboard Convective Water 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000018}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000019}, !- Handle - Zone HVAC Baseboard Convective Water 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000019}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000020}, !- Handle - Zone HVAC Baseboard Convective Water 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0019-000000000020}; !- Heating Coil Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000002}; !- Heating Coil Name OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000001}, !- Handle + {00000000-0000-0000-0103-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000001}, !- Thermal Zone + {00000000-0000-0000-0090-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000002}, !- Handle + {00000000-0000-0000-0103-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000002}, !- Thermal Zone + {00000000-0000-0000-0090-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000003}, !- Handle + {00000000-0000-0000-0103-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000003}, !- Thermal Zone + {00000000-0000-0000-0090-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000004}, !- Handle + {00000000-0000-0000-0103-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000004}, !- Thermal Zone + {00000000-0000-0000-0090-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000012}, !- Zone Equipment 1 + {00000000-0000-0000-0102-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -21926,299 +15548,119 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000005}, !- Handle + {00000000-0000-0000-0103-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000005}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000005}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000006}, !- Handle + {00000000-0000-0000-0103-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000006}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000017}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000006}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000007}, !- Handle + {00000000-0000-0000-0103-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000007}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000007}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000008}, !- Handle + {00000000-0000-0000-0103-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000008}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000018}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000008}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000009}, !- Handle + {00000000-0000-0000-0103-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000016}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000009}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000010}, !- Handle + {00000000-0000-0000-0103-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000019}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000010}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000011}, !- Handle + {00000000-0000-0000-0103-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000011}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000012}, !- Handle + {00000000-0000-0000-0103-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000012}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000013}, !- Handle + {00000000-0000-0000-0103-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000013}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000014}, !- Handle + {00000000-0000-0000-0103-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000020}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000014}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000015}, !- Handle + {00000000-0000-0000-0103-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000015}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000016}, !- Handle + {00000000-0000-0000-0103-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000016}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000017}, !- Handle + {00000000-0000-0000-0103-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000009}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000017}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000018}, !- Handle + {00000000-0000-0000-0103-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000010}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000018}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000019}, !- Handle + {00000000-0000-0000-0103-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000019}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000008}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000019}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000020}, !- Handle + {00000000-0000-0000-0103-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000020}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000011}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000020}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000021}, !- Handle + {00000000-0000-0000-0103-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000021}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000021}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000022}, !- Handle + {00000000-0000-0000-0103-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000022}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {00000000-0000-0000-0090-000000000022}, !- Thermal Zone + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0107-000000000023}, !- Handle + {00000000-0000-0000-0103-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0094-000000000023}, !- Thermal Zone + {00000000-0000-0000-0090-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0102-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 3060afbfa3..38b0b090ec 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000024}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -6389,61 +6389,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {07f0fd7d-4fb8-482b-a250-ae507aad78e2}<23.9 && {07f0fd7d-4fb8-482b-a250-ae507aad78e2}>1.7, !- Program Line 1 - SET {7d14d790-cd00-48f7-bb86-c5c0cfd68e59} = 29.4, !- Program Line 2 - SET {851f06af-7d6a-4b3f-8458-c69cf0ec1eb1} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {07f0fd7d-4fb8-482b-a250-ae507aad78e2}<23.9 && {07f0fd7d-4fb8-482b-a250-ae507aad78e2}>1.7, !- Program Line 4 - SET {7d14d790-cd00-48f7-bb86-c5c0cfd68e59} = 29.4, !- Program Line 5 - SET {851f06af-7d6a-4b3f-8458-c69cf0ec1eb1} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {07f0fd7d-4fb8-482b-a250-ae507aad78e2}<23.9 && {07f0fd7d-4fb8-482b-a250-ae507aad78e2}>1.7, !- Program Line 7 - SET {7d14d790-cd00-48f7-bb86-c5c0cfd68e59} = 29.4, !- Program Line 8 - SET {851f06af-7d6a-4b3f-8458-c69cf0ec1eb1} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {07f0fd7d-4fb8-482b-a250-ae507aad78e2}<23.9 && {07f0fd7d-4fb8-482b-a250-ae507aad78e2}>1.7, !- Program Line 10 - SET {7d14d790-cd00-48f7-bb86-c5c0cfd68e59} = 29.4, !- Program Line 11 - SET {851f06af-7d6a-4b3f-8458-c69cf0ec1eb1} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3080263c-3944-4471-ac44-23a0769fcfcf}<23.9 && {3080263c-3944-4471-ac44-23a0769fcfcf}>1.7, !- Program Line 1 + SET {8f20921a-341b-4ae5-8a8a-85a349b545ab} = 29.4, !- Program Line 2 + SET {358a9251-1748-488b-9187-5d0592b89a5f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3080263c-3944-4471-ac44-23a0769fcfcf}<23.9 && {3080263c-3944-4471-ac44-23a0769fcfcf}>1.7, !- Program Line 4 + SET {8f20921a-341b-4ae5-8a8a-85a349b545ab} = 29.4, !- Program Line 5 + SET {358a9251-1748-488b-9187-5d0592b89a5f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3080263c-3944-4471-ac44-23a0769fcfcf}<23.9 && {3080263c-3944-4471-ac44-23a0769fcfcf}>1.7, !- Program Line 7 + SET {8f20921a-341b-4ae5-8a8a-85a349b545ab} = 29.4, !- Program Line 8 + SET {358a9251-1748-488b-9187-5d0592b89a5f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3080263c-3944-4471-ac44-23a0769fcfcf}<23.9 && {3080263c-3944-4471-ac44-23a0769fcfcf}>1.7, !- Program Line 10 + SET {8f20921a-341b-4ae5-8a8a-85a349b545ab} = 29.4, !- Program Line 11 + SET {358a9251-1748-488b-9187-5d0592b89a5f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7d14d790-cd00-48f7-bb86-c5c0cfd68e59} = NULL, !- Program Line 14 - SET {851f06af-7d6a-4b3f-8458-c69cf0ec1eb1} = NULL, !- Program Line 15 + SET {8f20921a-341b-4ae5-8a8a-85a349b545ab} = NULL, !- Program Line 14 + SET {358a9251-1748-488b-9187-5d0592b89a5f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {be151168-c6a4-4570-89dd-50f9b2bedb43}<23.9 && {be151168-c6a4-4570-89dd-50f9b2bedb43}>1.7, !- Program Line 1 - SET {2e9b43c0-a6d3-4625-b138-192e8ba407c1} = 29.4, !- Program Line 2 - SET {3ee341c4-3b8c-49e7-bc3e-1e96807fe9c6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {be151168-c6a4-4570-89dd-50f9b2bedb43}<23.9 && {be151168-c6a4-4570-89dd-50f9b2bedb43}>1.7, !- Program Line 4 - SET {2e9b43c0-a6d3-4625-b138-192e8ba407c1} = 29.4, !- Program Line 5 - SET {3ee341c4-3b8c-49e7-bc3e-1e96807fe9c6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {be151168-c6a4-4570-89dd-50f9b2bedb43}<23.9 && {be151168-c6a4-4570-89dd-50f9b2bedb43}>1.7, !- Program Line 7 - SET {2e9b43c0-a6d3-4625-b138-192e8ba407c1} = 29.4, !- Program Line 8 - SET {3ee341c4-3b8c-49e7-bc3e-1e96807fe9c6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {be151168-c6a4-4570-89dd-50f9b2bedb43}<23.9 && {be151168-c6a4-4570-89dd-50f9b2bedb43}>1.7, !- Program Line 10 - SET {2e9b43c0-a6d3-4625-b138-192e8ba407c1} = 29.4, !- Program Line 11 - SET {3ee341c4-3b8c-49e7-bc3e-1e96807fe9c6} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {37eb9403-ac7c-4c91-9702-ebf8d4d8e3d6}<23.9 && {37eb9403-ac7c-4c91-9702-ebf8d4d8e3d6}>1.7, !- Program Line 1 + SET {958c1395-73b2-4397-8ca5-3edf5a6386a3} = 29.4, !- Program Line 2 + SET {ccc49ced-eec9-4119-aee9-1ee41de49344} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {37eb9403-ac7c-4c91-9702-ebf8d4d8e3d6}<23.9 && {37eb9403-ac7c-4c91-9702-ebf8d4d8e3d6}>1.7, !- Program Line 4 + SET {958c1395-73b2-4397-8ca5-3edf5a6386a3} = 29.4, !- Program Line 5 + SET {ccc49ced-eec9-4119-aee9-1ee41de49344} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {37eb9403-ac7c-4c91-9702-ebf8d4d8e3d6}<23.9 && {37eb9403-ac7c-4c91-9702-ebf8d4d8e3d6}>1.7, !- Program Line 7 + SET {958c1395-73b2-4397-8ca5-3edf5a6386a3} = 29.4, !- Program Line 8 + SET {ccc49ced-eec9-4119-aee9-1ee41de49344} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {37eb9403-ac7c-4c91-9702-ebf8d4d8e3d6}<23.9 && {37eb9403-ac7c-4c91-9702-ebf8d4d8e3d6}>1.7, !- Program Line 10 + SET {958c1395-73b2-4397-8ca5-3edf5a6386a3} = 29.4, !- Program Line 11 + SET {ccc49ced-eec9-4119-aee9-1ee41de49344} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {2e9b43c0-a6d3-4625-b138-192e8ba407c1} = NULL, !- Program Line 14 - SET {3ee341c4-3b8c-49e7-bc3e-1e96807fe9c6} = NULL, !- Program Line 15 + SET {958c1395-73b2-4397-8ca5-3edf5a6386a3} = NULL, !- Program Line 14 + SET {ccc49ced-eec9-4119-aee9-1ee41de49344} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {83c4f737-6821-43ae-9825-13abfb44fda5}<23.9 && {83c4f737-6821-43ae-9825-13abfb44fda5}>1.7, !- Program Line 1 - SET {b7dfad4d-0e53-4409-be74-972e2d2ecd06} = 29.4, !- Program Line 2 - SET {8d8e49e0-ed71-49c5-9f0a-76085944d296} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {83c4f737-6821-43ae-9825-13abfb44fda5}<23.9 && {83c4f737-6821-43ae-9825-13abfb44fda5}>1.7, !- Program Line 4 - SET {b7dfad4d-0e53-4409-be74-972e2d2ecd06} = 29.4, !- Program Line 5 - SET {8d8e49e0-ed71-49c5-9f0a-76085944d296} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {83c4f737-6821-43ae-9825-13abfb44fda5}<23.9 && {83c4f737-6821-43ae-9825-13abfb44fda5}>1.7, !- Program Line 7 - SET {b7dfad4d-0e53-4409-be74-972e2d2ecd06} = 29.4, !- Program Line 8 - SET {8d8e49e0-ed71-49c5-9f0a-76085944d296} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {83c4f737-6821-43ae-9825-13abfb44fda5}<23.9 && {83c4f737-6821-43ae-9825-13abfb44fda5}>1.7, !- Program Line 10 - SET {b7dfad4d-0e53-4409-be74-972e2d2ecd06} = 29.4, !- Program Line 11 - SET {8d8e49e0-ed71-49c5-9f0a-76085944d296} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {86e8b681-f983-41d4-b349-09670fcf8129}<23.9 && {86e8b681-f983-41d4-b349-09670fcf8129}>1.7, !- Program Line 1 + SET {960c7af2-84aa-442a-ae35-5a76e337516e} = 29.4, !- Program Line 2 + SET {e05b9924-9b9d-488a-9c0d-a7b2c02b7336} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {86e8b681-f983-41d4-b349-09670fcf8129}<23.9 && {86e8b681-f983-41d4-b349-09670fcf8129}>1.7, !- Program Line 4 + SET {960c7af2-84aa-442a-ae35-5a76e337516e} = 29.4, !- Program Line 5 + SET {e05b9924-9b9d-488a-9c0d-a7b2c02b7336} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {86e8b681-f983-41d4-b349-09670fcf8129}<23.9 && {86e8b681-f983-41d4-b349-09670fcf8129}>1.7, !- Program Line 7 + SET {960c7af2-84aa-442a-ae35-5a76e337516e} = 29.4, !- Program Line 8 + SET {e05b9924-9b9d-488a-9c0d-a7b2c02b7336} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {86e8b681-f983-41d4-b349-09670fcf8129}<23.9 && {86e8b681-f983-41d4-b349-09670fcf8129}>1.7, !- Program Line 10 + SET {960c7af2-84aa-442a-ae35-5a76e337516e} = 29.4, !- Program Line 11 + SET {e05b9924-9b9d-488a-9c0d-a7b2c02b7336} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b7dfad4d-0e53-4409-be74-972e2d2ecd06} = NULL, !- Program Line 14 - SET {8d8e49e0-ed71-49c5-9f0a-76085944d296} = NULL, !- Program Line 15 + SET {960c7af2-84aa-442a-ae35-5a76e337516e} = NULL, !- Program Line 14 + SET {e05b9924-9b9d-488a-9c0d-a7b2c02b7336} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -6641,7 +6641,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8469,55 +8469,55 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000199}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000074}, !- Inlet Port {00000000-0000-0000-0019-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000200}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000077}, !- Inlet Port {00000000-0000-0000-0019-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000201}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000080}, !- Inlet Port {00000000-0000-0000-0019-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000202}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000447}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000203}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000452}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000204}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000072}, !- Inlet Port {00000000-0000-0000-0019-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000205}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000078}, !- Inlet Port {00000000-0000-0000-0019-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000206}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000448}, !- Inlet Port {00000000-0000-0000-0019-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000207}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000450}, !- Inlet Port {00000000-0000-0000-0019-000000000451}; !- Outlet Port @@ -10266,7 +10266,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -10281,7 +10281,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10290,7 +10290,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -11122,7 +11122,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000024}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000057}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000058}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index d30a2c4c70..e229ad2beb 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000024}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -6479,61 +6479,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {65baa216-7e59-4021-888b-e8956543a348}<23.9 && {65baa216-7e59-4021-888b-e8956543a348}>1.7, !- Program Line 1 - SET {eb6d7d4f-64bc-4d42-be87-8169396d1551} = 29.4, !- Program Line 2 - SET {60f4825b-efb1-4a3e-b006-32ca0ca6105d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {65baa216-7e59-4021-888b-e8956543a348}<23.9 && {65baa216-7e59-4021-888b-e8956543a348}>1.7, !- Program Line 4 - SET {eb6d7d4f-64bc-4d42-be87-8169396d1551} = 29.4, !- Program Line 5 - SET {60f4825b-efb1-4a3e-b006-32ca0ca6105d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {65baa216-7e59-4021-888b-e8956543a348}<23.9 && {65baa216-7e59-4021-888b-e8956543a348}>1.7, !- Program Line 7 - SET {eb6d7d4f-64bc-4d42-be87-8169396d1551} = 29.4, !- Program Line 8 - SET {60f4825b-efb1-4a3e-b006-32ca0ca6105d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {65baa216-7e59-4021-888b-e8956543a348}<23.9 && {65baa216-7e59-4021-888b-e8956543a348}>1.7, !- Program Line 10 - SET {eb6d7d4f-64bc-4d42-be87-8169396d1551} = 29.4, !- Program Line 11 - SET {60f4825b-efb1-4a3e-b006-32ca0ca6105d} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {218ab130-692f-45ba-a375-fd3e998103fc}<23.9 && {218ab130-692f-45ba-a375-fd3e998103fc}>1.7, !- Program Line 1 + SET {887ce12b-06c3-4c1e-bf74-3768d89ff4f5} = 29.4, !- Program Line 2 + SET {3d4e57d8-7665-4b7f-b941-864b460e4871} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {218ab130-692f-45ba-a375-fd3e998103fc}<23.9 && {218ab130-692f-45ba-a375-fd3e998103fc}>1.7, !- Program Line 4 + SET {887ce12b-06c3-4c1e-bf74-3768d89ff4f5} = 29.4, !- Program Line 5 + SET {3d4e57d8-7665-4b7f-b941-864b460e4871} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {218ab130-692f-45ba-a375-fd3e998103fc}<23.9 && {218ab130-692f-45ba-a375-fd3e998103fc}>1.7, !- Program Line 7 + SET {887ce12b-06c3-4c1e-bf74-3768d89ff4f5} = 29.4, !- Program Line 8 + SET {3d4e57d8-7665-4b7f-b941-864b460e4871} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {218ab130-692f-45ba-a375-fd3e998103fc}<23.9 && {218ab130-692f-45ba-a375-fd3e998103fc}>1.7, !- Program Line 10 + SET {887ce12b-06c3-4c1e-bf74-3768d89ff4f5} = 29.4, !- Program Line 11 + SET {3d4e57d8-7665-4b7f-b941-864b460e4871} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {eb6d7d4f-64bc-4d42-be87-8169396d1551} = NULL, !- Program Line 14 - SET {60f4825b-efb1-4a3e-b006-32ca0ca6105d} = NULL, !- Program Line 15 + SET {887ce12b-06c3-4c1e-bf74-3768d89ff4f5} = NULL, !- Program Line 14 + SET {3d4e57d8-7665-4b7f-b941-864b460e4871} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {734d44a9-2e92-457f-94bf-6843f9dfb776}<23.9 && {734d44a9-2e92-457f-94bf-6843f9dfb776}>1.7, !- Program Line 1 - SET {9459939a-2c1f-4f81-b3fd-7d3d6c7a7572} = 29.4, !- Program Line 2 - SET {910037ac-8ba7-4e93-851a-6aa7c06ae323} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {734d44a9-2e92-457f-94bf-6843f9dfb776}<23.9 && {734d44a9-2e92-457f-94bf-6843f9dfb776}>1.7, !- Program Line 4 - SET {9459939a-2c1f-4f81-b3fd-7d3d6c7a7572} = 29.4, !- Program Line 5 - SET {910037ac-8ba7-4e93-851a-6aa7c06ae323} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {734d44a9-2e92-457f-94bf-6843f9dfb776}<23.9 && {734d44a9-2e92-457f-94bf-6843f9dfb776}>1.7, !- Program Line 7 - SET {9459939a-2c1f-4f81-b3fd-7d3d6c7a7572} = 29.4, !- Program Line 8 - SET {910037ac-8ba7-4e93-851a-6aa7c06ae323} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {734d44a9-2e92-457f-94bf-6843f9dfb776}<23.9 && {734d44a9-2e92-457f-94bf-6843f9dfb776}>1.7, !- Program Line 10 - SET {9459939a-2c1f-4f81-b3fd-7d3d6c7a7572} = 29.4, !- Program Line 11 - SET {910037ac-8ba7-4e93-851a-6aa7c06ae323} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {583e4349-7680-4bcf-b2f3-3e274a3225fb}<23.9 && {583e4349-7680-4bcf-b2f3-3e274a3225fb}>1.7, !- Program Line 1 + SET {70d52feb-1e6d-492b-98a8-47c98e05f108} = 29.4, !- Program Line 2 + SET {105beaed-c1ba-4cf4-a44d-9f14ab7dffad} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {583e4349-7680-4bcf-b2f3-3e274a3225fb}<23.9 && {583e4349-7680-4bcf-b2f3-3e274a3225fb}>1.7, !- Program Line 4 + SET {70d52feb-1e6d-492b-98a8-47c98e05f108} = 29.4, !- Program Line 5 + SET {105beaed-c1ba-4cf4-a44d-9f14ab7dffad} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {583e4349-7680-4bcf-b2f3-3e274a3225fb}<23.9 && {583e4349-7680-4bcf-b2f3-3e274a3225fb}>1.7, !- Program Line 7 + SET {70d52feb-1e6d-492b-98a8-47c98e05f108} = 29.4, !- Program Line 8 + SET {105beaed-c1ba-4cf4-a44d-9f14ab7dffad} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {583e4349-7680-4bcf-b2f3-3e274a3225fb}<23.9 && {583e4349-7680-4bcf-b2f3-3e274a3225fb}>1.7, !- Program Line 10 + SET {70d52feb-1e6d-492b-98a8-47c98e05f108} = 29.4, !- Program Line 11 + SET {105beaed-c1ba-4cf4-a44d-9f14ab7dffad} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {9459939a-2c1f-4f81-b3fd-7d3d6c7a7572} = NULL, !- Program Line 14 - SET {910037ac-8ba7-4e93-851a-6aa7c06ae323} = NULL, !- Program Line 15 + SET {70d52feb-1e6d-492b-98a8-47c98e05f108} = NULL, !- Program Line 14 + SET {105beaed-c1ba-4cf4-a44d-9f14ab7dffad} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4eca451c-6076-494d-979a-d6bd8a6dd503}<23.9 && {4eca451c-6076-494d-979a-d6bd8a6dd503}>1.7, !- Program Line 1 - SET {98fe27c4-827a-47cc-ab08-4f6c87de224a} = 29.4, !- Program Line 2 - SET {a909121c-4a44-49d5-9495-207572dd9d81} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4eca451c-6076-494d-979a-d6bd8a6dd503}<23.9 && {4eca451c-6076-494d-979a-d6bd8a6dd503}>1.7, !- Program Line 4 - SET {98fe27c4-827a-47cc-ab08-4f6c87de224a} = 29.4, !- Program Line 5 - SET {a909121c-4a44-49d5-9495-207572dd9d81} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4eca451c-6076-494d-979a-d6bd8a6dd503}<23.9 && {4eca451c-6076-494d-979a-d6bd8a6dd503}>1.7, !- Program Line 7 - SET {98fe27c4-827a-47cc-ab08-4f6c87de224a} = 29.4, !- Program Line 8 - SET {a909121c-4a44-49d5-9495-207572dd9d81} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4eca451c-6076-494d-979a-d6bd8a6dd503}<23.9 && {4eca451c-6076-494d-979a-d6bd8a6dd503}>1.7, !- Program Line 10 - SET {98fe27c4-827a-47cc-ab08-4f6c87de224a} = 29.4, !- Program Line 11 - SET {a909121c-4a44-49d5-9495-207572dd9d81} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {04402393-d05d-4611-92d5-677d6d301afb}<23.9 && {04402393-d05d-4611-92d5-677d6d301afb}>1.7, !- Program Line 1 + SET {707a6ca4-bb10-4d56-93f1-6b8de47af79f} = 29.4, !- Program Line 2 + SET {02cb752b-559a-498c-a8e7-5964e0ccda61} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {04402393-d05d-4611-92d5-677d6d301afb}<23.9 && {04402393-d05d-4611-92d5-677d6d301afb}>1.7, !- Program Line 4 + SET {707a6ca4-bb10-4d56-93f1-6b8de47af79f} = 29.4, !- Program Line 5 + SET {02cb752b-559a-498c-a8e7-5964e0ccda61} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {04402393-d05d-4611-92d5-677d6d301afb}<23.9 && {04402393-d05d-4611-92d5-677d6d301afb}>1.7, !- Program Line 7 + SET {707a6ca4-bb10-4d56-93f1-6b8de47af79f} = 29.4, !- Program Line 8 + SET {02cb752b-559a-498c-a8e7-5964e0ccda61} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {04402393-d05d-4611-92d5-677d6d301afb}<23.9 && {04402393-d05d-4611-92d5-677d6d301afb}>1.7, !- Program Line 10 + SET {707a6ca4-bb10-4d56-93f1-6b8de47af79f} = 29.4, !- Program Line 11 + SET {02cb752b-559a-498c-a8e7-5964e0ccda61} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {98fe27c4-827a-47cc-ab08-4f6c87de224a} = NULL, !- Program Line 14 - SET {a909121c-4a44-49d5-9495-207572dd9d81} = NULL, !- Program Line 15 + SET {707a6ca4-bb10-4d56-93f1-6b8de47af79f} = NULL, !- Program Line 14 + SET {02cb752b-559a-498c-a8e7-5964e0ccda61} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -6731,7 +6731,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8559,55 +8559,55 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000199}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000074}, !- Inlet Port {00000000-0000-0000-0019-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000200}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000077}, !- Inlet Port {00000000-0000-0000-0019-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000201}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000080}, !- Inlet Port {00000000-0000-0000-0019-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000202}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000447}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000203}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000452}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000204}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000072}, !- Inlet Port {00000000-0000-0000-0019-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000205}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000078}, !- Inlet Port {00000000-0000-0000-0019-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000206}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000448}, !- Inlet Port {00000000-0000-0000-0019-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000207}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000450}, !- Inlet Port {00000000-0000-0000-0019-000000000451}; !- Outlet Port @@ -10356,7 +10356,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -10371,7 +10371,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10380,7 +10380,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -11212,7 +11212,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000024}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000057}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000058}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MediumOffice-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm index c82c6a8470..7b961ab95e 100644 --- a/test/necb/regression_tests/expected/MediumOffice-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm @@ -4130,41 +4130,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8333375a-2836-499c-8463-2b9b92fccd0c}<23.9 && {8333375a-2836-499c-8463-2b9b92fccd0c}>1.7, !- Program Line 1 - SET {a5ef3972-3420-4fde-a27a-858832b39445} = 29.4, !- Program Line 2 - SET {0d7751fd-9e3c-4a3d-a0fb-6a985e684ed7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8333375a-2836-499c-8463-2b9b92fccd0c}<23.9 && {8333375a-2836-499c-8463-2b9b92fccd0c}>1.7, !- Program Line 4 - SET {a5ef3972-3420-4fde-a27a-858832b39445} = 29.4, !- Program Line 5 - SET {0d7751fd-9e3c-4a3d-a0fb-6a985e684ed7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8333375a-2836-499c-8463-2b9b92fccd0c}<23.9 && {8333375a-2836-499c-8463-2b9b92fccd0c}>1.7, !- Program Line 7 - SET {a5ef3972-3420-4fde-a27a-858832b39445} = 29.4, !- Program Line 8 - SET {0d7751fd-9e3c-4a3d-a0fb-6a985e684ed7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8333375a-2836-499c-8463-2b9b92fccd0c}<23.9 && {8333375a-2836-499c-8463-2b9b92fccd0c}>1.7, !- Program Line 10 - SET {a5ef3972-3420-4fde-a27a-858832b39445} = 29.4, !- Program Line 11 - SET {0d7751fd-9e3c-4a3d-a0fb-6a985e684ed7} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {593e1f7e-4c7d-4106-a647-9bc5234dd99b}<23.9 && {593e1f7e-4c7d-4106-a647-9bc5234dd99b}>1.7, !- Program Line 1 + SET {0533e827-d819-4c14-a230-c14ab748ef04} = 29.4, !- Program Line 2 + SET {1fa9ff3a-c078-410b-922c-59726484a8b3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {593e1f7e-4c7d-4106-a647-9bc5234dd99b}<23.9 && {593e1f7e-4c7d-4106-a647-9bc5234dd99b}>1.7, !- Program Line 4 + SET {0533e827-d819-4c14-a230-c14ab748ef04} = 29.4, !- Program Line 5 + SET {1fa9ff3a-c078-410b-922c-59726484a8b3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {593e1f7e-4c7d-4106-a647-9bc5234dd99b}<23.9 && {593e1f7e-4c7d-4106-a647-9bc5234dd99b}>1.7, !- Program Line 7 + SET {0533e827-d819-4c14-a230-c14ab748ef04} = 29.4, !- Program Line 8 + SET {1fa9ff3a-c078-410b-922c-59726484a8b3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {593e1f7e-4c7d-4106-a647-9bc5234dd99b}<23.9 && {593e1f7e-4c7d-4106-a647-9bc5234dd99b}>1.7, !- Program Line 10 + SET {0533e827-d819-4c14-a230-c14ab748ef04} = 29.4, !- Program Line 11 + SET {1fa9ff3a-c078-410b-922c-59726484a8b3} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a5ef3972-3420-4fde-a27a-858832b39445} = NULL, !- Program Line 14 - SET {0d7751fd-9e3c-4a3d-a0fb-6a985e684ed7} = NULL, !- Program Line 15 + SET {0533e827-d819-4c14-a230-c14ab748ef04} = NULL, !- Program Line 14 + SET {1fa9ff3a-c078-410b-922c-59726484a8b3} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {43564420-72a8-4205-9d52-bfb75f0b6363}<23.9 && {43564420-72a8-4205-9d52-bfb75f0b6363}>1.7, !- Program Line 1 - SET {66eaadc9-ad3f-4046-b0e1-5ee42e148c1b} = 29.4, !- Program Line 2 - SET {fbbeb0a2-35c9-4725-922f-38e326f9a586} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {43564420-72a8-4205-9d52-bfb75f0b6363}<23.9 && {43564420-72a8-4205-9d52-bfb75f0b6363}>1.7, !- Program Line 4 - SET {66eaadc9-ad3f-4046-b0e1-5ee42e148c1b} = 29.4, !- Program Line 5 - SET {fbbeb0a2-35c9-4725-922f-38e326f9a586} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {43564420-72a8-4205-9d52-bfb75f0b6363}<23.9 && {43564420-72a8-4205-9d52-bfb75f0b6363}>1.7, !- Program Line 7 - SET {66eaadc9-ad3f-4046-b0e1-5ee42e148c1b} = 29.4, !- Program Line 8 - SET {fbbeb0a2-35c9-4725-922f-38e326f9a586} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {43564420-72a8-4205-9d52-bfb75f0b6363}<23.9 && {43564420-72a8-4205-9d52-bfb75f0b6363}>1.7, !- Program Line 10 - SET {66eaadc9-ad3f-4046-b0e1-5ee42e148c1b} = 29.4, !- Program Line 11 - SET {fbbeb0a2-35c9-4725-922f-38e326f9a586} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5d37d47f-18de-4339-85c6-c3a3bb940dc5}<23.9 && {5d37d47f-18de-4339-85c6-c3a3bb940dc5}>1.7, !- Program Line 1 + SET {fa16854e-2a06-4ecd-9273-782fc784a799} = 29.4, !- Program Line 2 + SET {a5cbd82c-b0dd-4f22-a97d-e7275853676d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5d37d47f-18de-4339-85c6-c3a3bb940dc5}<23.9 && {5d37d47f-18de-4339-85c6-c3a3bb940dc5}>1.7, !- Program Line 4 + SET {fa16854e-2a06-4ecd-9273-782fc784a799} = 29.4, !- Program Line 5 + SET {a5cbd82c-b0dd-4f22-a97d-e7275853676d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5d37d47f-18de-4339-85c6-c3a3bb940dc5}<23.9 && {5d37d47f-18de-4339-85c6-c3a3bb940dc5}>1.7, !- Program Line 7 + SET {fa16854e-2a06-4ecd-9273-782fc784a799} = 29.4, !- Program Line 8 + SET {a5cbd82c-b0dd-4f22-a97d-e7275853676d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5d37d47f-18de-4339-85c6-c3a3bb940dc5}<23.9 && {5d37d47f-18de-4339-85c6-c3a3bb940dc5}>1.7, !- Program Line 10 + SET {fa16854e-2a06-4ecd-9273-782fc784a799} = 29.4, !- Program Line 11 + SET {a5cbd82c-b0dd-4f22-a97d-e7275853676d} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {66eaadc9-ad3f-4046-b0e1-5ee42e148c1b} = NULL, !- Program Line 14 - SET {fbbeb0a2-35c9-4725-922f-38e326f9a586} = NULL, !- Program Line 15 + SET {fa16854e-2a06-4ecd-9273-782fc784a799} = NULL, !- Program Line 14 + SET {a5cbd82c-b0dd-4f22-a97d-e7275853676d} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -7160,7 +7160,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000041}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7238,7 +7238,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000042}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7316,7 +7316,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000043}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -7325,7 +7325,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000044}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -7388,7 +7388,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000051}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7544,7 +7544,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000053}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7700,7 +7700,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000055}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7856,7 +7856,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000057}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -8111,7 +8111,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000068}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -8267,7 +8267,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000070}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9024,13 +9024,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -9110,13 +9110,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000043}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/MediumOffice-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm index c35eef6eca..6b74419c45 100644 --- a/test/necb/regression_tests/expected/MediumOffice-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm @@ -5971,41 +5971,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fc5aa251-2c6f-488c-83b6-a97888631f0b}<23.9 && {fc5aa251-2c6f-488c-83b6-a97888631f0b}>1.7, !- Program Line 1 - SET {3771051b-f7e4-4444-9f31-450666f1da98} = 29.4, !- Program Line 2 - SET {24b59190-2eed-4c3d-9be7-40abdcd634de} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fc5aa251-2c6f-488c-83b6-a97888631f0b}<23.9 && {fc5aa251-2c6f-488c-83b6-a97888631f0b}>1.7, !- Program Line 4 - SET {3771051b-f7e4-4444-9f31-450666f1da98} = 29.4, !- Program Line 5 - SET {24b59190-2eed-4c3d-9be7-40abdcd634de} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fc5aa251-2c6f-488c-83b6-a97888631f0b}<23.9 && {fc5aa251-2c6f-488c-83b6-a97888631f0b}>1.7, !- Program Line 7 - SET {3771051b-f7e4-4444-9f31-450666f1da98} = 29.4, !- Program Line 8 - SET {24b59190-2eed-4c3d-9be7-40abdcd634de} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fc5aa251-2c6f-488c-83b6-a97888631f0b}<23.9 && {fc5aa251-2c6f-488c-83b6-a97888631f0b}>1.7, !- Program Line 10 - SET {3771051b-f7e4-4444-9f31-450666f1da98} = 29.4, !- Program Line 11 - SET {24b59190-2eed-4c3d-9be7-40abdcd634de} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {723e5d19-8233-4c54-b2a2-0a187e89dc02}<23.9 && {723e5d19-8233-4c54-b2a2-0a187e89dc02}>1.7, !- Program Line 1 + SET {32bbeeea-df4c-4f15-af6f-6d489097ed16} = 29.4, !- Program Line 2 + SET {5a7852d9-19d4-4f2a-8600-333bb54f2ada} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {723e5d19-8233-4c54-b2a2-0a187e89dc02}<23.9 && {723e5d19-8233-4c54-b2a2-0a187e89dc02}>1.7, !- Program Line 4 + SET {32bbeeea-df4c-4f15-af6f-6d489097ed16} = 29.4, !- Program Line 5 + SET {5a7852d9-19d4-4f2a-8600-333bb54f2ada} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {723e5d19-8233-4c54-b2a2-0a187e89dc02}<23.9 && {723e5d19-8233-4c54-b2a2-0a187e89dc02}>1.7, !- Program Line 7 + SET {32bbeeea-df4c-4f15-af6f-6d489097ed16} = 29.4, !- Program Line 8 + SET {5a7852d9-19d4-4f2a-8600-333bb54f2ada} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {723e5d19-8233-4c54-b2a2-0a187e89dc02}<23.9 && {723e5d19-8233-4c54-b2a2-0a187e89dc02}>1.7, !- Program Line 10 + SET {32bbeeea-df4c-4f15-af6f-6d489097ed16} = 29.4, !- Program Line 11 + SET {5a7852d9-19d4-4f2a-8600-333bb54f2ada} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3771051b-f7e4-4444-9f31-450666f1da98} = NULL, !- Program Line 14 - SET {24b59190-2eed-4c3d-9be7-40abdcd634de} = NULL, !- Program Line 15 + SET {32bbeeea-df4c-4f15-af6f-6d489097ed16} = NULL, !- Program Line 14 + SET {5a7852d9-19d4-4f2a-8600-333bb54f2ada} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {190a9a23-0942-4750-97a5-4a085acfe442}<23.9 && {190a9a23-0942-4750-97a5-4a085acfe442}>1.7, !- Program Line 1 - SET {7c4d5616-86cb-4945-8934-3df41550b2f0} = 29.4, !- Program Line 2 - SET {a9c34bc4-998f-42ba-84c5-91bcaa363b93} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {190a9a23-0942-4750-97a5-4a085acfe442}<23.9 && {190a9a23-0942-4750-97a5-4a085acfe442}>1.7, !- Program Line 4 - SET {7c4d5616-86cb-4945-8934-3df41550b2f0} = 29.4, !- Program Line 5 - SET {a9c34bc4-998f-42ba-84c5-91bcaa363b93} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {190a9a23-0942-4750-97a5-4a085acfe442}<23.9 && {190a9a23-0942-4750-97a5-4a085acfe442}>1.7, !- Program Line 7 - SET {7c4d5616-86cb-4945-8934-3df41550b2f0} = 29.4, !- Program Line 8 - SET {a9c34bc4-998f-42ba-84c5-91bcaa363b93} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {190a9a23-0942-4750-97a5-4a085acfe442}<23.9 && {190a9a23-0942-4750-97a5-4a085acfe442}>1.7, !- Program Line 10 - SET {7c4d5616-86cb-4945-8934-3df41550b2f0} = 29.4, !- Program Line 11 - SET {a9c34bc4-998f-42ba-84c5-91bcaa363b93} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {aa8436e0-c1de-498c-9403-c411f7572672}<23.9 && {aa8436e0-c1de-498c-9403-c411f7572672}>1.7, !- Program Line 1 + SET {91af73fc-3bd3-4e2e-b417-7b715f98ca12} = 29.4, !- Program Line 2 + SET {e6970b6f-61fa-47c8-b4df-80d58bc7b264} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {aa8436e0-c1de-498c-9403-c411f7572672}<23.9 && {aa8436e0-c1de-498c-9403-c411f7572672}>1.7, !- Program Line 4 + SET {91af73fc-3bd3-4e2e-b417-7b715f98ca12} = 29.4, !- Program Line 5 + SET {e6970b6f-61fa-47c8-b4df-80d58bc7b264} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {aa8436e0-c1de-498c-9403-c411f7572672}<23.9 && {aa8436e0-c1de-498c-9403-c411f7572672}>1.7, !- Program Line 7 + SET {91af73fc-3bd3-4e2e-b417-7b715f98ca12} = 29.4, !- Program Line 8 + SET {e6970b6f-61fa-47c8-b4df-80d58bc7b264} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {aa8436e0-c1de-498c-9403-c411f7572672}<23.9 && {aa8436e0-c1de-498c-9403-c411f7572672}>1.7, !- Program Line 10 + SET {91af73fc-3bd3-4e2e-b417-7b715f98ca12} = 29.4, !- Program Line 11 + SET {e6970b6f-61fa-47c8-b4df-80d58bc7b264} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7c4d5616-86cb-4945-8934-3df41550b2f0} = NULL, !- Program Line 14 - SET {a9c34bc4-998f-42ba-84c5-91bcaa363b93} = NULL, !- Program Line 15 + SET {91af73fc-3bd3-4e2e-b417-7b715f98ca12} = NULL, !- Program Line 14 + SET {e6970b6f-61fa-47c8-b4df-80d58bc7b264} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, @@ -9550,7 +9550,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000041}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9628,7 +9628,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000042}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9706,7 +9706,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000043}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -9715,7 +9715,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000044}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -9778,7 +9778,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000051}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9934,7 +9934,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000053}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10090,7 +10090,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000055}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10246,7 +10246,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000057}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10501,7 +10501,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000068}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10657,7 +10657,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000070}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -11414,13 +11414,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -11500,13 +11500,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000043}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2011-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2011-Electricity-CAN_AB_Calgary.osm index c6b07fe82a..96b59ba392 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2011-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2011-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0063-000000000027}, !- Object Name + {00000000-0000-0000-0063-000000000023}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.123094119094475, !- Feature Value 1 @@ -16,94 +16,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0063-000000000025}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.123094119094475, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0063-000000000026}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.123094119094475, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0011-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0001-000000000003}, !- Handle {00000000-0000-0000-0011-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0063-000000000025}, !- Availability Schedule - {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0015-000000000141}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0015-000000000144}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0015-000000000143}, !- Demand Side Inlet Node A - {00000000-0000-0000-0015-000000000142}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0063-000000000026}, !- Availability Schedule - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0015-000000000193}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0015-000000000196}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0015-000000000195}, !- Demand Side Inlet Node A - {00000000-0000-0000-0015-000000000194}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0063-000000000027}, !- Availability Schedule - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0063-000000000023}, !- Availability Schedule + {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -131,28 +55,6 @@ OS:AirLoopHVAC:OutdoorAirSystem, {00000000-0000-0000-0015-000000000100}, !- Relief Air Stream Node Name {00000000-0000-0000-0015-000000000110}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000002}, !- Handle - Air Loop HVAC Outdoor Air System 2, !- Name - {00000000-0000-0000-0020-000000000002}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0015-000000000158}, !- Mixed Air Node Name - {00000000-0000-0000-0015-000000000151}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0015-000000000152}, !- Relief Air Stream Node Name - {00000000-0000-0000-0015-000000000162}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0020-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0015-000000000210}, !- Mixed Air Node Name - {00000000-0000-0000-0015-000000000203}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0015-000000000204}, !- Relief Air Stream Node Name - {00000000-0000-0000-0015-000000000214}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -163,26 +65,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0015-000000000131}, !- Inlet Node Name 4 {00000000-0000-0000-0015-000000000137}; !- Inlet Node Name 5 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000002}, !- Handle - Air Loop HVAC Zone Mixer 2, !- Name - {00000000-0000-0000-0015-000000000146}, !- Outlet Node Name - {00000000-0000-0000-0015-000000000165}, !- Inlet Node Name 1 - {00000000-0000-0000-0015-000000000171}, !- Inlet Node Name 2 - {00000000-0000-0000-0015-000000000177}, !- Inlet Node Name 3 - {00000000-0000-0000-0015-000000000183}, !- Inlet Node Name 4 - {00000000-0000-0000-0015-000000000189}; !- Inlet Node Name 5 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0015-000000000198}, !- Outlet Node Name - {00000000-0000-0000-0015-000000000217}, !- Inlet Node Name 1 - {00000000-0000-0000-0015-000000000223}, !- Inlet Node Name 2 - {00000000-0000-0000-0015-000000000229}, !- Inlet Node Name 3 - {00000000-0000-0000-0015-000000000235}, !- Inlet Node Name 4 - {00000000-0000-0000-0015-000000000241}; !- Inlet Node Name 5 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -193,26 +75,6 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0015-000000000132}, !- Outlet Node Name 4 {00000000-0000-0000-0015-000000000138}; !- Outlet Node Name 5 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000002}, !- Handle - Air Loop HVAC Zone Splitter 2, !- Name - {00000000-0000-0000-0015-000000000145}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000166}, !- Outlet Node Name 1 - {00000000-0000-0000-0015-000000000172}, !- Outlet Node Name 2 - {00000000-0000-0000-0015-000000000178}, !- Outlet Node Name 3 - {00000000-0000-0000-0015-000000000184}, !- Outlet Node Name 4 - {00000000-0000-0000-0015-000000000190}; !- Outlet Node Name 5 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0015-000000000197}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000218}, !- Outlet Node Name 1 - {00000000-0000-0000-0015-000000000224}, !- Outlet Node Name 2 - {00000000-0000-0000-0015-000000000230}, !- Outlet Node Name 3 - {00000000-0000-0000-0015-000000000236}, !- Outlet Node Name 4 - {00000000-0000-0000-0015-000000000242}; !- Outlet Node Name 5 - OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -223,7 +85,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000011}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000116}, !- Air Outlet Node Name @@ -236,132 +98,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000191}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000192}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000219}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000220}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000225}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000226}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000231}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000232}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000237}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000009}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000238}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000243}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000010}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000244}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000121}, !- Air Inlet Node Name @@ -370,7 +106,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000012}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000122}, !- Air Outlet Node Name @@ -382,7 +118,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000009}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000127}, !- Air Inlet Node Name @@ -391,7 +127,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000013}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000128}, !- Air Outlet Node Name @@ -403,7 +139,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000010}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000133}, !- Air Inlet Node Name @@ -412,7 +148,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000014}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000005}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000134}, !- Air Outlet Node Name @@ -424,7 +160,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000011}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000139}, !- Air Inlet Node Name @@ -433,7 +169,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000015}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000140}, !- Air Outlet Node Name @@ -444,90 +180,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000167}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000017}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000168}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000173}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000018}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000174}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000179}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000180}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000185}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000186}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -542,59 +194,21 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0048-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0048-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000003}, !- Handle Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000004}, !- Handle + {00000000-0000-0000-0008-000000000002}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000005}, !- Handle + {00000000-0000-0000-0008-000000000003}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000006}, !- Handle + {00000000-0000-0000-0008-000000000004}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Building, @@ -646,8 +260,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0011-000000000001}, !- Handle - Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton, !- Name - 248661.151059467, !- Reference Capacity {W} + Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton, !- Name + 98998.1003686864, !- Reference Capacity {W} 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -690,9 +304,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0024-000000000007}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0024-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0024-000000000005}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0024-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -743,42 +357,6 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0013-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0015-000000000148}, !- Water Inlet Node Name - {00000000-0000-0000-0015-000000000149}, !- Water Outlet Node Name - {00000000-0000-0000-0015-000000000159}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000156}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0013-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0015-000000000200}, !- Water Inlet Node Name - {00000000-0000-0000-0015-000000000201}, !- Water Outlet Node Name - {00000000-0000-0000-0015-000000000211}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000208}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000001}, !- Handle Coil Heating Electric 1, !- Name @@ -790,154 +368,46 @@ OS:Coil:Heating:Electric, OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000002}, !- Handle - Coil Heating Electric 10, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11197.9591369629, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000003}, !- Handle - Coil Heating Electric 11, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 6543.26219558716, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000004}, !- Handle - Coil Heating Electric 12, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 12108.2193374634, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000005}, !- Handle - Coil Heating Electric 13, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0015-000000000209}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000206}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000006}, !- Handle - Coil Heating Electric 14, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 24091.289806366, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000007}, !- Handle - Coil Heating Electric 15, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 14241.6543960571, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000008}, !- Handle - Coil Heating Electric 16, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11677.5599956512, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000009}, !- Handle - Coil Heating Electric 17, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 7499.4943857193, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000010}, !- Handle - Coil Heating Electric 18, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 12827.5813579559, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000011}, !- Handle Coil Heating Electric 2, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Efficiency - 14499.383354187, !- Nominal Capacity {W} + 26665.4019355774, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000012}, !- Handle + {00000000-0000-0000-0014-000000000003}, !- Handle Coil Heating Electric 3, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Efficiency - 11646.1575508118, !- Nominal Capacity {W} + 14999.2591381073, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000013}, !- Handle + {00000000-0000-0000-0014-000000000004}, !- Handle Coil Heating Electric 4, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Efficiency - 10310.8687162399, !- Nominal Capacity {W} + 12592.0353412628, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000014}, !- Handle + {00000000-0000-0000-0014-000000000005}, !- Handle Coil Heating Electric 5, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Efficiency - 5860.14540195465, !- Nominal Capacity {W} + 6863.41495513916, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000015}, !- Handle + {00000000-0000-0000-0014-000000000006}, !- Handle Coil Heating Electric 6, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Efficiency - 11752.9098987579, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000016}, !- Handle - Coil Heating Electric 7, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0015-000000000157}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000154}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000017}, !- Handle - Coil Heating Electric 8, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 20076.7271518707, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000018}, !- Handle - Coil Heating Electric 9, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - , !- Efficiency - 13291.9927597046, !- Nominal Capacity {W} + 13941.654253006, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name @@ -1071,35 +541,35 @@ OS:Connection, {00000000-0000-0000-0015-000000000019}, !- Handle {00000000-0000-0000-0089-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000025}, !- Target Object + {00000000-0000-0000-0049-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000020}, !- Handle {00000000-0000-0000-0089-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000035}, !- Target Object + {00000000-0000-0000-0049-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000021}, !- Handle {00000000-0000-0000-0089-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000027}, !- Target Object + {00000000-0000-0000-0049-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000022}, !- Handle {00000000-0000-0000-0089-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000029}, !- Target Object + {00000000-0000-0000-0049-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000023}, !- Handle {00000000-0000-0000-0089-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000017}, !- Target Object + {00000000-0000-0000-0049-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1113,14 +583,14 @@ OS:Connection, {00000000-0000-0000-0015-000000000025}, !- Handle {00000000-0000-0000-0089-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000031}, !- Target Object + {00000000-0000-0000-0049-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000026}, !- Handle {00000000-0000-0000-0089-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000019}, !- Target Object + {00000000-0000-0000-0049-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1134,7 +604,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000028}, !- Handle {00000000-0000-0000-0089-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000033}, !- Target Object + {00000000-0000-0000-0049-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1155,7 +625,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000031}, !- Handle {00000000-0000-0000-0089-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000021}, !- Target Object + {00000000-0000-0000-0049-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1176,7 +646,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000034}, !- Handle {00000000-0000-0000-0089-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000023}, !- Target Object + {00000000-0000-0000-0049-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1197,19 +667,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000037}, !- Handle {00000000-0000-0000-0054-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000068}, !- Target Object + {00000000-0000-0000-0049-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000038}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000137}, !- Target Object + {00000000-0000-0000-0049-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000039}, !- Handle - {00000000-0000-0000-0049-000000000069}, !- Source Object + {00000000-0000-0000-0049-000000000039}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000001}, !- Target Object 15; !- Inlet Port @@ -1218,12 +688,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000040}, !- Handle {00000000-0000-0000-0054-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000066}, !- Target Object + {00000000-0000-0000-0049-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000041}, !- Handle - {00000000-0000-0000-0049-000000000066}, !- Source Object + {00000000-0000-0000-0049-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000002}, !- Target Object 2; !- Inlet Port @@ -1232,26 +702,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000042}, !- Handle {00000000-0000-0000-0017-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000070}, !- Target Object + {00000000-0000-0000-0049-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000043}, !- Handle {00000000-0000-0000-0016-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000067}, !- Target Object + {00000000-0000-0000-0049-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000044}, !- Handle - {00000000-0000-0000-0049-000000000067}, !- Source Object + {00000000-0000-0000-0049-000000000037}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000045}, !- Handle - {00000000-0000-0000-0049-000000000068}, !- Source Object + {00000000-0000-0000-0049-000000000038}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port @@ -1260,19 +730,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000046}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000139}, !- Target Object + {00000000-0000-0000-0049-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000047}, !- Handle - {00000000-0000-0000-0049-000000000139}, !- Source Object + {00000000-0000-0000-0049-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000048}, !- Handle - {00000000-0000-0000-0049-000000000137}, !- Source Object + {00000000-0000-0000-0049-000000000099}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000001}, !- Target Object 15; !- Inlet Port @@ -1281,12 +751,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000049}, !- Handle {00000000-0000-0000-0011-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000138}, !- Target Object + {00000000-0000-0000-0049-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000050}, !- Handle - {00000000-0000-0000-0049-000000000138}, !- Source Object + {00000000-0000-0000-0049-000000000100}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 3; !- Inlet Port @@ -1295,12 +765,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000051}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000143}, !- Target Object + {00000000-0000-0000-0049-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000052}, !- Handle - {00000000-0000-0000-0049-000000000143}, !- Source Object + {00000000-0000-0000-0049-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000002}, !- Target Object 15; !- Inlet Port @@ -1309,12 +779,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000053}, !- Handle {00000000-0000-0000-0011-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000144}, !- Target Object + {00000000-0000-0000-0049-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000054}, !- Handle - {00000000-0000-0000-0049-000000000144}, !- Source Object + {00000000-0000-0000-0049-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 4; !- Inlet Port @@ -1323,12 +793,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000055}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000123}, !- Target Object + {00000000-0000-0000-0049-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000056}, !- Handle - {00000000-0000-0000-0049-000000000123}, !- Source Object + {00000000-0000-0000-0049-000000000085}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000001}, !- Target Object 2; !- Inlet Port @@ -1337,12 +807,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000057}, !- Handle {00000000-0000-0000-0053-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000124}, !- Target Object + {00000000-0000-0000-0049-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000058}, !- Handle - {00000000-0000-0000-0049-000000000124}, !- Source Object + {00000000-0000-0000-0049-000000000086}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port @@ -1351,12 +821,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000059}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000125}, !- Target Object + {00000000-0000-0000-0049-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000060}, !- Handle - {00000000-0000-0000-0049-000000000125}, !- Source Object + {00000000-0000-0000-0049-000000000087}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000002}, !- Target Object 2; !- Inlet Port @@ -1365,26 +835,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000061}, !- Handle {00000000-0000-0000-0053-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000069}, !- Target Object + {00000000-0000-0000-0049-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000062}, !- Handle {00000000-0000-0000-0054-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000084}, !- Target Object + {00000000-0000-0000-0049-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000063}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000086}, !- Target Object + {00000000-0000-0000-0049-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000064}, !- Handle - {00000000-0000-0000-0049-000000000085}, !- Source Object + {00000000-0000-0000-0049-000000000047}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000002}, !- Target Object 15; !- Inlet Port @@ -1393,12 +863,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000065}, !- Handle {00000000-0000-0000-0054-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000082}, !- Target Object + {00000000-0000-0000-0049-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000066}, !- Handle - {00000000-0000-0000-0049-000000000082}, !- Source Object + {00000000-0000-0000-0049-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000004}, !- Target Object 2; !- Inlet Port @@ -1407,26 +877,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000067}, !- Handle {00000000-0000-0000-0017-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000135}, !- Target Object + {00000000-0000-0000-0049-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000068}, !- Handle {00000000-0000-0000-0016-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000083}, !- Target Object + {00000000-0000-0000-0049-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000069}, !- Handle - {00000000-0000-0000-0049-000000000083}, !- Source Object + {00000000-0000-0000-0049-000000000045}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000070}, !- Handle - {00000000-0000-0000-0049-000000000084}, !- Source Object + {00000000-0000-0000-0049-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000002}, !- Target Object 2; !- Inlet Port @@ -1435,19 +905,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000071}, !- Handle {00000000-0000-0000-0057-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000140}, !- Target Object + {00000000-0000-0000-0049-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000072}, !- Handle - {00000000-0000-0000-0049-000000000140}, !- Source Object + {00000000-0000-0000-0049-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000073}, !- Handle - {00000000-0000-0000-0049-000000000086}, !- Source Object + {00000000-0000-0000-0049-000000000048}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0023-000000000001}, !- Target Object 2; !- Inlet Port @@ -1456,12 +926,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000074}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000087}, !- Target Object + {00000000-0000-0000-0049-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000075}, !- Handle - {00000000-0000-0000-0049-000000000087}, !- Source Object + {00000000-0000-0000-0049-000000000049}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000003}, !- Target Object 3; !- Inlet Port @@ -1470,12 +940,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000076}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000126}, !- Target Object + {00000000-0000-0000-0049-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000077}, !- Handle - {00000000-0000-0000-0049-000000000126}, !- Source Object + {00000000-0000-0000-0049-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000003}, !- Target Object 2; !- Inlet Port @@ -1484,12 +954,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000078}, !- Handle {00000000-0000-0000-0053-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000127}, !- Target Object + {00000000-0000-0000-0049-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000079}, !- Handle - {00000000-0000-0000-0049-000000000127}, !- Source Object + {00000000-0000-0000-0049-000000000089}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000003}, !- Target Object 4; !- Inlet Port @@ -1498,12 +968,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000080}, !- Handle {00000000-0000-0000-0016-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000128}, !- Target Object + {00000000-0000-0000-0049-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000081}, !- Handle - {00000000-0000-0000-0049-000000000128}, !- Source Object + {00000000-0000-0000-0049-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000004}, !- Target Object 2; !- Inlet Port @@ -1512,12 +982,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000082}, !- Handle {00000000-0000-0000-0053-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000085}, !- Target Object + {00000000-0000-0000-0049-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000083}, !- Handle - {00000000-0000-0000-0049-000000000135}, !- Source Object + {00000000-0000-0000-0049-000000000097}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000001}, !- Target Object 17; !- Inlet Port @@ -1526,12 +996,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000084}, !- Handle {00000000-0000-0000-0011-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0049-000000000136}, !- Target Object + {00000000-0000-0000-0049-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000085}, !- Handle - {00000000-0000-0000-0049-000000000136}, !- Source Object + {00000000-0000-0000-0049-000000000098}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000004}, !- Target Object 3; !- Inlet Port @@ -1540,12 +1010,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000086}, !- Handle {00000000-0000-0000-0017-000000000004}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000141}, !- Target Object + {00000000-0000-0000-0049-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000087}, !- Handle - {00000000-0000-0000-0049-000000000141}, !- Source Object + {00000000-0000-0000-0049-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000002}, !- Target Object 17; !- Inlet Port @@ -1554,1699 +1024,971 @@ OS:Connection, {00000000-0000-0000-0015-000000000088}, !- Handle {00000000-0000-0000-0011-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0049-000000000142}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000089}, !- Handle - {00000000-0000-0000-0049-000000000142}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000090}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0049-000000000167}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000091}, !- Handle - {00000000-0000-0000-0049-000000000168}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000092}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000162}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000093}, !- Handle - {00000000-0000-0000-0049-000000000163}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000094}, !- Handle - {00000000-0000-0000-0049-000000000162}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000095}, !- Handle - {00000000-0000-0000-0004-000000000001}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000163}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000096}, !- Handle - {00000000-0000-0000-0049-000000000070}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000097}, !- Handle - {00000000-0000-0000-0013-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000072}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000098}, !- Handle - {00000000-0000-0000-0049-000000000072}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000099}, !- Handle - {00000000-0000-0000-0049-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000100}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000101}, !- Handle - {00000000-0000-0000-0039-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000168}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000102}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000079}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000103}, !- Handle - {00000000-0000-0000-0049-000000000079}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000006}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000104}, !- Handle - {00000000-0000-0000-0013-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000071}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000105}, !- Handle - {00000000-0000-0000-0049-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000106}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000107}, !- Handle - {00000000-0000-0000-0049-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000108}, !- Handle - {00000000-0000-0000-0049-000000000167}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000003}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000109}, !- Handle - {00000000-0000-0000-0039-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000147}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000110}, !- Handle - {00000000-0000-0000-0049-000000000147}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000111}, !- Handle - {00000000-0000-0000-0049-000000000037}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000112}, !- Handle - {00000000-0000-0000-0055-000000000018}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000113}, !- Handle - {00000000-0000-0000-0049-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000114}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000036}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000115}, !- Handle - {00000000-0000-0000-0049-000000000036}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000001}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000116}, !- Handle - {00000000-0000-0000-0006-000000000001}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000037}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000117}, !- Handle - {00000000-0000-0000-0049-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000118}, !- Handle - {00000000-0000-0000-0055-000000000042}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000119}, !- Handle - {00000000-0000-0000-0049-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000120}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000050}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000121}, !- Handle - {00000000-0000-0000-0049-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000122}, !- Handle - {00000000-0000-0000-0006-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000051}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000123}, !- Handle - {00000000-0000-0000-0049-000000000053}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000031}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000124}, !- Handle - {00000000-0000-0000-0055-000000000033}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000125}, !- Handle - {00000000-0000-0000-0049-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000126}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000127}, !- Handle - {00000000-0000-0000-0049-000000000052}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000009}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000128}, !- Handle - {00000000-0000-0000-0006-000000000009}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000053}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000129}, !- Handle - {00000000-0000-0000-0049-000000000055}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000130}, !- Handle - {00000000-0000-0000-0055-000000000051}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000131}, !- Handle - {00000000-0000-0000-0049-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000132}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000054}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000133}, !- Handle - {00000000-0000-0000-0049-000000000054}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000010}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000134}, !- Handle - {00000000-0000-0000-0006-000000000010}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000055}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000135}, !- Handle - {00000000-0000-0000-0049-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000136}, !- Handle - {00000000-0000-0000-0055-000000000054}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000012}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000137}, !- Handle - {00000000-0000-0000-0049-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000138}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000056}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000139}, !- Handle - {00000000-0000-0000-0049-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000011}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000140}, !- Handle - {00000000-0000-0000-0006-000000000011}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000057}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000141}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0049-000000000153}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000142}, !- Handle - {00000000-0000-0000-0049-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000143}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000148}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000144}, !- Handle - {00000000-0000-0000-0049-000000000149}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000145}, !- Handle - {00000000-0000-0000-0049-000000000148}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000146}, !- Handle - {00000000-0000-0000-0004-000000000002}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000149}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000147}, !- Handle - {00000000-0000-0000-0017-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000073}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000148}, !- Handle - {00000000-0000-0000-0049-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000002}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000149}, !- Handle - {00000000-0000-0000-0013-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000075}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000150}, !- Handle - {00000000-0000-0000-0049-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000151}, !- Handle - {00000000-0000-0000-0049-000000000151}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000152}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000152}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000153}, !- Handle - {00000000-0000-0000-0039-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000154}, !- Handle - {00000000-0000-0000-0014-000000000016}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000081}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000155}, !- Handle - {00000000-0000-0000-0049-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000004}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000156}, !- Handle - {00000000-0000-0000-0013-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000074}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000157}, !- Handle - {00000000-0000-0000-0049-000000000074}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000016}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000158}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000150}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000159}, !- Handle - {00000000-0000-0000-0049-000000000150}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000160}, !- Handle - {00000000-0000-0000-0049-000000000153}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000001}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000161}, !- Handle - {00000000-0000-0000-0039-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000145}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000162}, !- Handle - {00000000-0000-0000-0049-000000000145}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000163}, !- Handle - {00000000-0000-0000-0049-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000164}, !- Handle - {00000000-0000-0000-0055-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000024}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000165}, !- Handle - {00000000-0000-0000-0049-000000000024}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000166}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000167}, !- Handle - {00000000-0000-0000-0049-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000012}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000168}, !- Handle - {00000000-0000-0000-0006-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000059}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000169}, !- Handle - {00000000-0000-0000-0049-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000037}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000170}, !- Handle - {00000000-0000-0000-0055-000000000039}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000020}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000171}, !- Handle - {00000000-0000-0000-0049-000000000020}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000172}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000060}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000173}, !- Handle - {00000000-0000-0000-0049-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000013}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000174}, !- Handle - {00000000-0000-0000-0006-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000175}, !- Handle - {00000000-0000-0000-0049-000000000063}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000176}, !- Handle - {00000000-0000-0000-0055-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000177}, !- Handle - {00000000-0000-0000-0049-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000178}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000062}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000179}, !- Handle - {00000000-0000-0000-0049-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000014}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000180}, !- Handle - {00000000-0000-0000-0006-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000063}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000181}, !- Handle - {00000000-0000-0000-0049-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000182}, !- Handle - {00000000-0000-0000-0055-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000183}, !- Handle - {00000000-0000-0000-0049-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000184}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000185}, !- Handle - {00000000-0000-0000-0049-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000015}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000186}, !- Handle - {00000000-0000-0000-0006-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000187}, !- Handle - {00000000-0000-0000-0049-000000000039}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000188}, !- Handle - {00000000-0000-0000-0055-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000189}, !- Handle - {00000000-0000-0000-0049-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000190}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000191}, !- Handle - {00000000-0000-0000-0049-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000192}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000039}, !- Target Object + {00000000-0000-0000-0049-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000193}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000089}, !- Handle + {00000000-0000-0000-0049-000000000104}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000090}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000160}, !- Target Object + {00000000-0000-0000-0049-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000194}, !- Handle - {00000000-0000-0000-0049-000000000161}, !- Source Object + {00000000-0000-0000-0015-000000000091}, !- Handle + {00000000-0000-0000-0049-000000000114}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000195}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000092}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000155}, !- Target Object + {00000000-0000-0000-0049-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000196}, !- Handle - {00000000-0000-0000-0049-000000000156}, !- Source Object + {00000000-0000-0000-0015-000000000093}, !- Handle + {00000000-0000-0000-0049-000000000109}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000197}, !- Handle - {00000000-0000-0000-0049-000000000155}, !- Source Object + {00000000-0000-0000-0015-000000000094}, !- Handle + {00000000-0000-0000-0049-000000000108}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object + {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000198}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000095}, !- Handle + {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000156}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000199}, !- Handle - {00000000-0000-0000-0017-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000076}, !- Target Object + {00000000-0000-0000-0049-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000200}, !- Handle - {00000000-0000-0000-0049-000000000076}, !- Source Object + {00000000-0000-0000-0015-000000000096}, !- Handle + {00000000-0000-0000-0049-000000000040}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000003}, !- Target Object + {00000000-0000-0000-0013-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000201}, !- Handle - {00000000-0000-0000-0013-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000097}, !- Handle + {00000000-0000-0000-0013-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000078}, !- Target Object + {00000000-0000-0000-0049-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000202}, !- Handle - {00000000-0000-0000-0049-000000000078}, !- Source Object + {00000000-0000-0000-0015-000000000098}, !- Handle + {00000000-0000-0000-0049-000000000042}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000002}, !- Target Object - 5; !- Inlet Port + 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000203}, !- Handle - {00000000-0000-0000-0049-000000000158}, !- Source Object + {00000000-0000-0000-0015-000000000099}, !- Handle + {00000000-0000-0000-0049-000000000111}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object + {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000204}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000100}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0049-000000000159}, !- Target Object + {00000000-0000-0000-0049-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000205}, !- Handle - {00000000-0000-0000-0039-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000101}, !- Handle + {00000000-0000-0000-0039-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000161}, !- Target Object + {00000000-0000-0000-0049-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000206}, !- Handle - {00000000-0000-0000-0014-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000102}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000080}, !- Target Object + {00000000-0000-0000-0049-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000207}, !- Handle - {00000000-0000-0000-0049-000000000080}, !- Source Object + {00000000-0000-0000-0015-000000000103}, !- Handle + {00000000-0000-0000-0049-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000005}, !- Target Object + {00000000-0000-0000-0039-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000208}, !- Handle - {00000000-0000-0000-0013-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000104}, !- Handle + {00000000-0000-0000-0013-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0049-000000000077}, !- Target Object + {00000000-0000-0000-0049-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000209}, !- Handle - {00000000-0000-0000-0049-000000000077}, !- Source Object + {00000000-0000-0000-0015-000000000105}, !- Handle + {00000000-0000-0000-0049-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000005}, !- Target Object + {00000000-0000-0000-0014-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000210}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000106}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000157}, !- Target Object + {00000000-0000-0000-0049-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000211}, !- Handle - {00000000-0000-0000-0049-000000000157}, !- Source Object + {00000000-0000-0000-0015-000000000107}, !- Handle + {00000000-0000-0000-0049-000000000110}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000003}, !- Target Object + {00000000-0000-0000-0013-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000212}, !- Handle - {00000000-0000-0000-0049-000000000160}, !- Source Object + {00000000-0000-0000-0015-000000000108}, !- Handle + {00000000-0000-0000-0049-000000000113}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000002}, !- Target Object + {00000000-0000-0000-0039-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000213}, !- Handle - {00000000-0000-0000-0039-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000109}, !- Handle + {00000000-0000-0000-0039-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000146}, !- Target Object + {00000000-0000-0000-0049-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000214}, !- Handle - {00000000-0000-0000-0049-000000000146}, !- Source Object + {00000000-0000-0000-0015-000000000110}, !- Handle + {00000000-0000-0000-0049-000000000107}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object + {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000215}, !- Handle - {00000000-0000-0000-0049-000000000041}, !- Source Object + {00000000-0000-0000-0015-000000000111}, !- Handle + {00000000-0000-0000-0049-000000000027}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000010}, !- Target Object + {00000000-0000-0000-0055-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000216}, !- Handle - {00000000-0000-0000-0055-000000000012}, !- Source Object + {00000000-0000-0000-0015-000000000112}, !- Handle + {00000000-0000-0000-0055-000000000018}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000028}, !- Target Object + {00000000-0000-0000-0049-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000217}, !- Handle - {00000000-0000-0000-0049-000000000028}, !- Source Object + {00000000-0000-0000-0015-000000000113}, !- Handle + {00000000-0000-0000-0049-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000218}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000114}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000040}, !- Target Object + {00000000-0000-0000-0049-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000219}, !- Handle - {00000000-0000-0000-0049-000000000040}, !- Source Object + {00000000-0000-0000-0015-000000000115}, !- Handle + {00000000-0000-0000-0049-000000000026}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object + {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000220}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000116}, !- Handle + {00000000-0000-0000-0006-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000041}, !- Target Object + {00000000-0000-0000-0049-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000221}, !- Handle - {00000000-0000-0000-0049-000000000043}, !- Source Object + {00000000-0000-0000-0015-000000000117}, !- Handle + {00000000-0000-0000-0049-000000000029}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000004}, !- Target Object + {00000000-0000-0000-0055-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000222}, !- Handle - {00000000-0000-0000-0055-000000000006}, !- Source Object + {00000000-0000-0000-0015-000000000118}, !- Handle + {00000000-0000-0000-0055-000000000042}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000034}, !- Target Object + {00000000-0000-0000-0049-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000223}, !- Handle - {00000000-0000-0000-0049-000000000034}, !- Source Object + {00000000-0000-0000-0015-000000000119}, !- Handle + {00000000-0000-0000-0049-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000224}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000120}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000042}, !- Target Object + {00000000-0000-0000-0049-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000225}, !- Handle - {00000000-0000-0000-0049-000000000042}, !- Source Object + {00000000-0000-0000-0015-000000000121}, !- Handle + {00000000-0000-0000-0049-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object + {00000000-0000-0000-0006-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000226}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object + {00000000-0000-0000-0015-000000000122}, !- Handle + {00000000-0000-0000-0006-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000043}, !- Target Object + {00000000-0000-0000-0049-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000227}, !- Handle - {00000000-0000-0000-0049-000000000045}, !- Source Object + {00000000-0000-0000-0015-000000000123}, !- Handle + {00000000-0000-0000-0049-000000000031}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000007}, !- Target Object + {00000000-0000-0000-0055-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000228}, !- Handle - {00000000-0000-0000-0055-000000000009}, !- Source Object + {00000000-0000-0000-0015-000000000124}, !- Handle + {00000000-0000-0000-0055-000000000033}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000026}, !- Target Object + {00000000-0000-0000-0049-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000229}, !- Handle - {00000000-0000-0000-0049-000000000026}, !- Source Object + {00000000-0000-0000-0015-000000000125}, !- Handle + {00000000-0000-0000-0049-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000230}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000126}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000044}, !- Target Object + {00000000-0000-0000-0049-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000231}, !- Handle - {00000000-0000-0000-0049-000000000044}, !- Source Object + {00000000-0000-0000-0015-000000000127}, !- Handle + {00000000-0000-0000-0049-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000232}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000128}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000045}, !- Target Object + {00000000-0000-0000-0049-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000233}, !- Handle - {00000000-0000-0000-0049-000000000047}, !- Source Object + {00000000-0000-0000-0015-000000000129}, !- Handle + {00000000-0000-0000-0049-000000000033}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000019}, !- Target Object + {00000000-0000-0000-0055-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000234}, !- Handle - {00000000-0000-0000-0055-000000000021}, !- Source Object + {00000000-0000-0000-0015-000000000130}, !- Handle + {00000000-0000-0000-0055-000000000051}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000030}, !- Target Object + {00000000-0000-0000-0049-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000235}, !- Handle - {00000000-0000-0000-0049-000000000030}, !- Source Object + {00000000-0000-0000-0015-000000000131}, !- Handle + {00000000-0000-0000-0049-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000236}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000132}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000046}, !- Target Object + {00000000-0000-0000-0049-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000237}, !- Handle - {00000000-0000-0000-0049-000000000046}, !- Source Object + {00000000-0000-0000-0015-000000000133}, !- Handle + {00000000-0000-0000-0049-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000006}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000238}, !- Handle - {00000000-0000-0000-0006-000000000006}, !- Source Object + {00000000-0000-0000-0015-000000000134}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000047}, !- Target Object + {00000000-0000-0000-0049-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000239}, !- Handle - {00000000-0000-0000-0049-000000000049}, !- Source Object + {00000000-0000-0000-0015-000000000135}, !- Handle + {00000000-0000-0000-0049-000000000035}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000028}, !- Target Object + {00000000-0000-0000-0055-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000240}, !- Handle - {00000000-0000-0000-0055-000000000030}, !- Source Object + {00000000-0000-0000-0015-000000000136}, !- Handle + {00000000-0000-0000-0055-000000000054}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000032}, !- Target Object + {00000000-0000-0000-0049-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000241}, !- Handle - {00000000-0000-0000-0049-000000000032}, !- Source Object + {00000000-0000-0000-0015-000000000137}, !- Handle + {00000000-0000-0000-0049-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000242}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000138}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0049-000000000048}, !- Target Object + {00000000-0000-0000-0049-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000243}, !- Handle - {00000000-0000-0000-0049-000000000048}, !- Source Object + {00000000-0000-0000-0015-000000000139}, !- Handle + {00000000-0000-0000-0049-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000007}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000244}, !- Handle - {00000000-0000-0000-0006-000000000007}, !- Source Object + {00000000-0000-0000-0015-000000000140}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000049}, !- Target Object + {00000000-0000-0000-0049-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000245}, !- Handle + {00000000-0000-0000-0015-000000000141}, !- Handle {00000000-0000-0000-0054-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000097}, !- Target Object + {00000000-0000-0000-0049-000000000059}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000246}, !- Handle + {00000000-0000-0000-0015-000000000142}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0049-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000247}, !- Handle - {00000000-0000-0000-0049-000000000098}, !- Source Object + {00000000-0000-0000-0015-000000000143}, !- Handle + {00000000-0000-0000-0049-000000000060}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000003}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000248}, !- Handle + {00000000-0000-0000-0015-000000000144}, !- Handle {00000000-0000-0000-0054-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000095}, !- Target Object + {00000000-0000-0000-0049-000000000057}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000249}, !- Handle - {00000000-0000-0000-0049-000000000095}, !- Source Object + {00000000-0000-0000-0015-000000000145}, !- Handle + {00000000-0000-0000-0049-000000000057}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000250}, !- Handle + {00000000-0000-0000-0015-000000000146}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000131}, !- Target Object + {00000000-0000-0000-0049-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000251}, !- Handle - {00000000-0000-0000-0049-000000000096}, !- Source Object + {00000000-0000-0000-0015-000000000147}, !- Handle + {00000000-0000-0000-0049-000000000058}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000252}, !- Handle - {00000000-0000-0000-0049-000000000097}, !- Source Object + {00000000-0000-0000-0015-000000000148}, !- Handle + {00000000-0000-0000-0049-000000000059}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000253}, !- Handle + {00000000-0000-0000-0015-000000000149}, !- Handle {00000000-0000-0000-0056-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000094}, !- Target Object + {00000000-0000-0000-0049-000000000056}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000254}, !- Handle - {00000000-0000-0000-0049-000000000094}, !- Source Object + {00000000-0000-0000-0015-000000000150}, !- Handle + {00000000-0000-0000-0049-000000000056}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000255}, !- Handle + {00000000-0000-0000-0015-000000000151}, !- Handle {00000000-0000-0000-0049-000000000001}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0093-000000000001}, !- Target Object 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000256}, !- Handle + {00000000-0000-0000-0015-000000000152}, !- Handle {00000000-0000-0000-0093-000000000001}, !- Source Object 32, !- Outlet Port {00000000-0000-0000-0049-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000257}, !- Handle + {00000000-0000-0000-0015-000000000153}, !- Handle {00000000-0000-0000-0049-000000000002}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000258}, !- Handle + {00000000-0000-0000-0015-000000000154}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000129}, !- Target Object + {00000000-0000-0000-0049-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000259}, !- Handle - {00000000-0000-0000-0049-000000000129}, !- Source Object + {00000000-0000-0000-0015-000000000155}, !- Handle + {00000000-0000-0000-0049-000000000091}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000260}, !- Handle + {00000000-0000-0000-0015-000000000156}, !- Handle {00000000-0000-0000-0053-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000130}, !- Target Object + {00000000-0000-0000-0049-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000261}, !- Handle - {00000000-0000-0000-0049-000000000130}, !- Source Object + {00000000-0000-0000-0015-000000000157}, !- Handle + {00000000-0000-0000-0049-000000000092}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000262}, !- Handle - {00000000-0000-0000-0049-000000000131}, !- Source Object + {00000000-0000-0000-0015-000000000158}, !- Handle + {00000000-0000-0000-0049-000000000093}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000263}, !- Handle + {00000000-0000-0000-0015-000000000159}, !- Handle {00000000-0000-0000-0053-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000132}, !- Target Object + {00000000-0000-0000-0049-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000264}, !- Handle - {00000000-0000-0000-0049-000000000132}, !- Source Object + {00000000-0000-0000-0015-000000000160}, !- Handle + {00000000-0000-0000-0049-000000000094}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000265}, !- Handle + {00000000-0000-0000-0015-000000000161}, !- Handle {00000000-0000-0000-0016-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000133}, !- Target Object + {00000000-0000-0000-0049-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000266}, !- Handle - {00000000-0000-0000-0049-000000000133}, !- Source Object + {00000000-0000-0000-0015-000000000162}, !- Handle + {00000000-0000-0000-0049-000000000095}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000267}, !- Handle + {00000000-0000-0000-0015-000000000163}, !- Handle {00000000-0000-0000-0053-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000098}, !- Target Object + {00000000-0000-0000-0049-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000268}, !- Handle + {00000000-0000-0000-0015-000000000164}, !- Handle {00000000-0000-0000-0016-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000134}, !- Target Object + {00000000-0000-0000-0049-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000269}, !- Handle - {00000000-0000-0000-0049-000000000134}, !- Source Object + {00000000-0000-0000-0015-000000000165}, !- Handle + {00000000-0000-0000-0049-000000000096}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000270}, !- Handle + {00000000-0000-0000-0015-000000000166}, !- Handle {00000000-0000-0000-0053-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000096}, !- Target Object + {00000000-0000-0000-0049-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000271}, !- Handle + {00000000-0000-0000-0015-000000000167}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000088}, !- Target Object + {00000000-0000-0000-0049-000000000050}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000272}, !- Handle - {00000000-0000-0000-0049-000000000088}, !- Source Object + {00000000-0000-0000-0015-000000000168}, !- Handle + {00000000-0000-0000-0049-000000000050}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000273}, !- Handle + {00000000-0000-0000-0015-000000000169}, !- Handle {00000000-0000-0000-0095-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000089}, !- Target Object + {00000000-0000-0000-0049-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000274}, !- Handle - {00000000-0000-0000-0049-000000000089}, !- Source Object + {00000000-0000-0000-0015-000000000170}, !- Handle + {00000000-0000-0000-0049-000000000051}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000275}, !- Handle + {00000000-0000-0000-0015-000000000171}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000090}, !- Target Object + {00000000-0000-0000-0049-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000276}, !- Handle - {00000000-0000-0000-0049-000000000090}, !- Source Object + {00000000-0000-0000-0015-000000000172}, !- Handle + {00000000-0000-0000-0049-000000000052}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000277}, !- Handle + {00000000-0000-0000-0015-000000000173}, !- Handle {00000000-0000-0000-0095-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000091}, !- Target Object + {00000000-0000-0000-0049-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000278}, !- Handle - {00000000-0000-0000-0049-000000000091}, !- Source Object + {00000000-0000-0000-0015-000000000174}, !- Handle + {00000000-0000-0000-0049-000000000053}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000279}, !- Handle + {00000000-0000-0000-0015-000000000175}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000092}, !- Target Object + {00000000-0000-0000-0049-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000280}, !- Handle - {00000000-0000-0000-0049-000000000092}, !- Source Object + {00000000-0000-0000-0015-000000000176}, !- Handle + {00000000-0000-0000-0049-000000000054}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000281}, !- Handle + {00000000-0000-0000-0015-000000000177}, !- Handle {00000000-0000-0000-0095-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000093}, !- Target Object + {00000000-0000-0000-0049-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000282}, !- Handle - {00000000-0000-0000-0049-000000000093}, !- Source Object + {00000000-0000-0000-0015-000000000178}, !- Handle + {00000000-0000-0000-0049-000000000055}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000283}, !- Handle + {00000000-0000-0000-0015-000000000179}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0049-000000000099}, !- Target Object + {00000000-0000-0000-0049-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000284}, !- Handle - {00000000-0000-0000-0049-000000000099}, !- Source Object + {00000000-0000-0000-0015-000000000180}, !- Handle + {00000000-0000-0000-0049-000000000061}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000285}, !- Handle + {00000000-0000-0000-0015-000000000181}, !- Handle {00000000-0000-0000-0095-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000100}, !- Target Object + {00000000-0000-0000-0049-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000286}, !- Handle - {00000000-0000-0000-0049-000000000100}, !- Source Object + {00000000-0000-0000-0015-000000000182}, !- Handle + {00000000-0000-0000-0049-000000000062}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000287}, !- Handle + {00000000-0000-0000-0015-000000000183}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0049-000000000101}, !- Target Object + {00000000-0000-0000-0049-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000288}, !- Handle - {00000000-0000-0000-0049-000000000101}, !- Source Object + {00000000-0000-0000-0015-000000000184}, !- Handle + {00000000-0000-0000-0049-000000000063}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000289}, !- Handle + {00000000-0000-0000-0015-000000000185}, !- Handle {00000000-0000-0000-0095-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000102}, !- Target Object + {00000000-0000-0000-0049-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000290}, !- Handle - {00000000-0000-0000-0049-000000000102}, !- Source Object + {00000000-0000-0000-0015-000000000186}, !- Handle + {00000000-0000-0000-0049-000000000064}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000291}, !- Handle + {00000000-0000-0000-0015-000000000187}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000103}, !- Target Object + {00000000-0000-0000-0049-000000000065}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000292}, !- Handle - {00000000-0000-0000-0049-000000000103}, !- Source Object + {00000000-0000-0000-0015-000000000188}, !- Handle + {00000000-0000-0000-0049-000000000065}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000293}, !- Handle + {00000000-0000-0000-0015-000000000189}, !- Handle {00000000-0000-0000-0095-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000104}, !- Target Object + {00000000-0000-0000-0049-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000294}, !- Handle - {00000000-0000-0000-0049-000000000104}, !- Source Object + {00000000-0000-0000-0015-000000000190}, !- Handle + {00000000-0000-0000-0049-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000295}, !- Handle + {00000000-0000-0000-0015-000000000191}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0049-000000000105}, !- Target Object + {00000000-0000-0000-0049-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000296}, !- Handle - {00000000-0000-0000-0049-000000000105}, !- Source Object + {00000000-0000-0000-0015-000000000192}, !- Handle + {00000000-0000-0000-0049-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000297}, !- Handle + {00000000-0000-0000-0015-000000000193}, !- Handle {00000000-0000-0000-0095-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000106}, !- Target Object + {00000000-0000-0000-0049-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000298}, !- Handle - {00000000-0000-0000-0049-000000000106}, !- Source Object + {00000000-0000-0000-0015-000000000194}, !- Handle + {00000000-0000-0000-0049-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000299}, !- Handle + {00000000-0000-0000-0015-000000000195}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000107}, !- Target Object + {00000000-0000-0000-0049-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000300}, !- Handle - {00000000-0000-0000-0049-000000000107}, !- Source Object + {00000000-0000-0000-0015-000000000196}, !- Handle + {00000000-0000-0000-0049-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000301}, !- Handle + {00000000-0000-0000-0015-000000000197}, !- Handle {00000000-0000-0000-0095-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000108}, !- Target Object + {00000000-0000-0000-0049-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000302}, !- Handle - {00000000-0000-0000-0049-000000000108}, !- Source Object + {00000000-0000-0000-0015-000000000198}, !- Handle + {00000000-0000-0000-0049-000000000070}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 11; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000303}, !- Handle + {00000000-0000-0000-0015-000000000199}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000109}, !- Target Object + {00000000-0000-0000-0049-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000304}, !- Handle - {00000000-0000-0000-0049-000000000109}, !- Source Object + {00000000-0000-0000-0015-000000000200}, !- Handle + {00000000-0000-0000-0049-000000000071}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000305}, !- Handle + {00000000-0000-0000-0015-000000000201}, !- Handle {00000000-0000-0000-0095-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000110}, !- Target Object + {00000000-0000-0000-0049-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000306}, !- Handle - {00000000-0000-0000-0049-000000000110}, !- Source Object + {00000000-0000-0000-0015-000000000202}, !- Handle + {00000000-0000-0000-0049-000000000072}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000307}, !- Handle + {00000000-0000-0000-0015-000000000203}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0049-000000000111}, !- Target Object + {00000000-0000-0000-0049-000000000073}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000308}, !- Handle - {00000000-0000-0000-0049-000000000111}, !- Source Object + {00000000-0000-0000-0015-000000000204}, !- Handle + {00000000-0000-0000-0049-000000000073}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000309}, !- Handle + {00000000-0000-0000-0015-000000000205}, !- Handle {00000000-0000-0000-0095-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000112}, !- Target Object + {00000000-0000-0000-0049-000000000074}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000310}, !- Handle - {00000000-0000-0000-0049-000000000112}, !- Source Object + {00000000-0000-0000-0015-000000000206}, !- Handle + {00000000-0000-0000-0049-000000000074}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 13; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000311}, !- Handle + {00000000-0000-0000-0015-000000000207}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000113}, !- Target Object + {00000000-0000-0000-0049-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000312}, !- Handle - {00000000-0000-0000-0049-000000000113}, !- Source Object + {00000000-0000-0000-0015-000000000208}, !- Handle + {00000000-0000-0000-0049-000000000075}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000313}, !- Handle + {00000000-0000-0000-0015-000000000209}, !- Handle {00000000-0000-0000-0095-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000114}, !- Target Object + {00000000-0000-0000-0049-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000314}, !- Handle - {00000000-0000-0000-0049-000000000114}, !- Source Object + {00000000-0000-0000-0015-000000000210}, !- Handle + {00000000-0000-0000-0049-000000000076}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000315}, !- Handle + {00000000-0000-0000-0015-000000000211}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0049-000000000115}, !- Target Object + {00000000-0000-0000-0049-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000316}, !- Handle - {00000000-0000-0000-0049-000000000115}, !- Source Object + {00000000-0000-0000-0015-000000000212}, !- Handle + {00000000-0000-0000-0049-000000000077}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000317}, !- Handle + {00000000-0000-0000-0015-000000000213}, !- Handle {00000000-0000-0000-0095-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000116}, !- Target Object + {00000000-0000-0000-0049-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000318}, !- Handle - {00000000-0000-0000-0049-000000000116}, !- Source Object + {00000000-0000-0000-0015-000000000214}, !- Handle + {00000000-0000-0000-0049-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000319}, !- Handle + {00000000-0000-0000-0015-000000000215}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000117}, !- Target Object + {00000000-0000-0000-0049-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000320}, !- Handle - {00000000-0000-0000-0049-000000000117}, !- Source Object + {00000000-0000-0000-0015-000000000216}, !- Handle + {00000000-0000-0000-0049-000000000079}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000321}, !- Handle + {00000000-0000-0000-0015-000000000217}, !- Handle {00000000-0000-0000-0095-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000118}, !- Target Object + {00000000-0000-0000-0049-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000322}, !- Handle - {00000000-0000-0000-0049-000000000118}, !- Source Object + {00000000-0000-0000-0015-000000000218}, !- Handle + {00000000-0000-0000-0049-000000000080}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000323}, !- Handle + {00000000-0000-0000-0015-000000000219}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000119}, !- Target Object + {00000000-0000-0000-0049-000000000081}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000324}, !- Handle - {00000000-0000-0000-0049-000000000119}, !- Source Object + {00000000-0000-0000-0015-000000000220}, !- Handle + {00000000-0000-0000-0049-000000000081}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000325}, !- Handle + {00000000-0000-0000-0015-000000000221}, !- Handle {00000000-0000-0000-0095-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000120}, !- Target Object + {00000000-0000-0000-0049-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000326}, !- Handle - {00000000-0000-0000-0049-000000000120}, !- Source Object + {00000000-0000-0000-0015-000000000222}, !- Handle + {00000000-0000-0000-0049-000000000082}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000327}, !- Handle + {00000000-0000-0000-0015-000000000223}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0049-000000000121}, !- Target Object + {00000000-0000-0000-0049-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000328}, !- Handle - {00000000-0000-0000-0049-000000000121}, !- Source Object + {00000000-0000-0000-0015-000000000224}, !- Handle + {00000000-0000-0000-0049-000000000083}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000329}, !- Handle + {00000000-0000-0000-0015-000000000225}, !- Handle {00000000-0000-0000-0095-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000122}, !- Target Object + {00000000-0000-0000-0049-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000330}, !- Handle - {00000000-0000-0000-0049-000000000122}, !- Source Object + {00000000-0000-0000-0015-000000000226}, !- Handle + {00000000-0000-0000-0049-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 18; !- Inlet Port @@ -3263,9 +2005,7 @@ OS:Connector:Mixer, {00000000-0000-0000-0016-000000000002}, !- Handle Connector Mixer 2, !- Name {00000000-0000-0000-0015-000000000043}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000098}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000150}, !- Inlet Branch Name 2 - {00000000-0000-0000-0015-000000000202}; !- Inlet Branch Name 3 + {00000000-0000-0000-0015-000000000098}; !- Inlet Branch Name 1 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000003}, !- Handle @@ -3284,30 +2024,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0016-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0015-000000000265}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000257}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000261}; !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000161}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000153}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000157}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0015-000000000268}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000264}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000274}, !- Inlet Branch Name 2 - {00000000-0000-0000-0015-000000000278}, !- Inlet Branch Name 3 - {00000000-0000-0000-0015-000000000282}, !- Inlet Branch Name 4 - {00000000-0000-0000-0015-000000000286}, !- Inlet Branch Name 5 - {00000000-0000-0000-0015-000000000290}, !- Inlet Branch Name 6 - {00000000-0000-0000-0015-000000000294}, !- Inlet Branch Name 7 - {00000000-0000-0000-0015-000000000298}, !- Inlet Branch Name 8 - {00000000-0000-0000-0015-000000000302}, !- Inlet Branch Name 9 - {00000000-0000-0000-0015-000000000306}, !- Inlet Branch Name 10 - {00000000-0000-0000-0015-000000000310}, !- Inlet Branch Name 11 - {00000000-0000-0000-0015-000000000314}, !- Inlet Branch Name 12 - {00000000-0000-0000-0015-000000000318}, !- Inlet Branch Name 13 - {00000000-0000-0000-0015-000000000322}, !- Inlet Branch Name 14 - {00000000-0000-0000-0015-000000000326}, !- Inlet Branch Name 15 - {00000000-0000-0000-0015-000000000330}; !- Inlet Branch Name 16 + {00000000-0000-0000-0015-000000000164}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000160}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000170}, !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000174}, !- Inlet Branch Name 3 + {00000000-0000-0000-0015-000000000178}, !- Inlet Branch Name 4 + {00000000-0000-0000-0015-000000000182}, !- Inlet Branch Name 5 + {00000000-0000-0000-0015-000000000186}, !- Inlet Branch Name 6 + {00000000-0000-0000-0015-000000000190}, !- Inlet Branch Name 7 + {00000000-0000-0000-0015-000000000194}, !- Inlet Branch Name 8 + {00000000-0000-0000-0015-000000000198}, !- Inlet Branch Name 9 + {00000000-0000-0000-0015-000000000202}, !- Inlet Branch Name 10 + {00000000-0000-0000-0015-000000000206}, !- Inlet Branch Name 11 + {00000000-0000-0000-0015-000000000210}, !- Inlet Branch Name 12 + {00000000-0000-0000-0015-000000000214}, !- Inlet Branch Name 13 + {00000000-0000-0000-0015-000000000218}, !- Inlet Branch Name 14 + {00000000-0000-0000-0015-000000000222}, !- Inlet Branch Name 15 + {00000000-0000-0000-0015-000000000226}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000001}, !- Handle @@ -3321,9 +2061,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0015-000000000041}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000042}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000147}, !- Outlet Branch Name 2 - {00000000-0000-0000-0015-000000000199}; !- Outlet Branch Name 3 + {00000000-0000-0000-0015-000000000042}; !- Outlet Branch Name 1 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000003}, !- Handle @@ -3342,30 +2080,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0017-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0015-000000000254}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000246}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000258}; !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000150}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000142}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000154}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0015-000000000249}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000250}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000271}, !- Outlet Branch Name 2 - {00000000-0000-0000-0015-000000000275}, !- Outlet Branch Name 3 - {00000000-0000-0000-0015-000000000279}, !- Outlet Branch Name 4 - {00000000-0000-0000-0015-000000000283}, !- Outlet Branch Name 5 - {00000000-0000-0000-0015-000000000287}, !- Outlet Branch Name 6 - {00000000-0000-0000-0015-000000000291}, !- Outlet Branch Name 7 - {00000000-0000-0000-0015-000000000295}, !- Outlet Branch Name 8 - {00000000-0000-0000-0015-000000000299}, !- Outlet Branch Name 9 - {00000000-0000-0000-0015-000000000303}, !- Outlet Branch Name 10 - {00000000-0000-0000-0015-000000000307}, !- Outlet Branch Name 11 - {00000000-0000-0000-0015-000000000311}, !- Outlet Branch Name 12 - {00000000-0000-0000-0015-000000000315}, !- Outlet Branch Name 13 - {00000000-0000-0000-0015-000000000319}, !- Outlet Branch Name 14 - {00000000-0000-0000-0015-000000000323}, !- Outlet Branch Name 15 - {00000000-0000-0000-0015-000000000327}; !- Outlet Branch Name 16 + {00000000-0000-0000-0015-000000000145}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000146}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000167}, !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000171}, !- Outlet Branch Name 3 + {00000000-0000-0000-0015-000000000175}, !- Outlet Branch Name 4 + {00000000-0000-0000-0015-000000000179}, !- Outlet Branch Name 5 + {00000000-0000-0000-0015-000000000183}, !- Outlet Branch Name 6 + {00000000-0000-0000-0015-000000000187}, !- Outlet Branch Name 7 + {00000000-0000-0000-0015-000000000191}, !- Outlet Branch Name 8 + {00000000-0000-0000-0015-000000000195}, !- Outlet Branch Name 9 + {00000000-0000-0000-0015-000000000199}, !- Outlet Branch Name 10 + {00000000-0000-0000-0015-000000000203}, !- Outlet Branch Name 11 + {00000000-0000-0000-0015-000000000207}, !- Outlet Branch Name 12 + {00000000-0000-0000-0015-000000000211}, !- Outlet Branch Name 13 + {00000000-0000-0000-0015-000000000215}, !- Outlet Branch Name 14 + {00000000-0000-0000-0015-000000000219}, !- Outlet Branch Name 15 + {00000000-0000-0000-0015-000000000223}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0018-000000000001}, !- Handle @@ -3612,95 +2350,21 @@ OS:Construction, OS:Construction, {00000000-0000-0000-0018-000000000037}, !- Handle - Wall Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000019}, !- Layer 1 - {00000000-0000-0000-0046-000000000019}; !- Layer 2 - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0019-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0019-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0019-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0020-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000027}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0019-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging + Wall Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0046-000000000019}, !- Layer 1 + {00000000-0000-0000-0046-000000000019}; !- Layer 2 -OS:Controller:OutdoorAir, - {00000000-0000-0000-0020-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000025}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0019-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0019-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method OS:Controller:OutdoorAir, - {00000000-0000-0000-0020-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name + {00000000-0000-0000-0020-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name @@ -3716,10 +2380,10 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000026}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0063-000000000023}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0019-000000000003}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0019-000000000001}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -3741,32 +2405,6 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} -OS:Controller:WaterCoil, - {00000000-0000-0000-0021-000000000002}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0013-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0021-000000000003}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0013-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - OS:ConvergenceLimits, {00000000-0000-0000-0022-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -3779,7 +2417,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0015-000000000074}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 4558.19858083704, !- Fan Power at Design Air Flow Rate {W} + 1814.73060300518, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -3870,34 +2508,6 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0024-000000000005}, !- Handle - WaterCooled_Screw_CAPFT_NECB2011, !- Name - 0.812998, !- Coefficient1 Constant - -0.0142532, !- Coefficient2 x - -0.00161799, !- Coefficient3 x**2 - 0.0263844, !- Coefficient4 y - -0.00091543, !- Coefficient5 y**2 - 0.00169601, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000006}, !- Handle - WaterCooled_Screw_EIRFT_NECB2011, !- Name - 0.638103, !- Coefficient1 Constant - 0.00630158, !- Coefficient2 x - 0.00092327, !- Coefficient3 x**2 - -0.00455294, !- Coefficient4 y - 0.000825682, !- Coefficient5 y**2 - -0.00156152, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -3911,7 +2521,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000008}, !- Handle + {00000000-0000-0000-0024-000000000006}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -3964,15 +2574,6 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0026-000000000003}, !- Handle - WaterCooled_Screw_EIRFPLR_NECB2011, !- Name - 0.330188, !- Coefficient1 Constant - 0.235543, !- Coefficient2 x - 0.460708, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0026-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -4134,38 +2735,6 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name - {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name - {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000005}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__ClgSch0, !- Name {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -4173,7 +2742,7 @@ OS:EnergyManagementSystem:Actuator, ; !- Zone or Space Name OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000006}, !- Handle + {00000000-0000-0000-0034-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__HtgSch0, !- Name {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -4182,81 +2751,29 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3b8012a9-cf9d-4325-99c6-01eb1c513999}<23.9 && {3b8012a9-cf9d-4325-99c6-01eb1c513999}>1.7, !- Program Line 1 - SET {d1b391cb-5aae-448b-9347-c03185543366} = 29.4, !- Program Line 2 - SET {319b8e72-c621-4203-86ce-e8d5b0cc2b2a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3b8012a9-cf9d-4325-99c6-01eb1c513999}<23.9 && {3b8012a9-cf9d-4325-99c6-01eb1c513999}>1.7, !- Program Line 4 - SET {d1b391cb-5aae-448b-9347-c03185543366} = 29.4, !- Program Line 5 - SET {319b8e72-c621-4203-86ce-e8d5b0cc2b2a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3b8012a9-cf9d-4325-99c6-01eb1c513999}<23.9 && {3b8012a9-cf9d-4325-99c6-01eb1c513999}>1.7, !- Program Line 7 - SET {d1b391cb-5aae-448b-9347-c03185543366} = 29.4, !- Program Line 8 - SET {319b8e72-c621-4203-86ce-e8d5b0cc2b2a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3b8012a9-cf9d-4325-99c6-01eb1c513999}<23.9 && {3b8012a9-cf9d-4325-99c6-01eb1c513999}>1.7, !- Program Line 10 - SET {d1b391cb-5aae-448b-9347-c03185543366} = 29.4, !- Program Line 11 - SET {319b8e72-c621-4203-86ce-e8d5b0cc2b2a} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {d1b391cb-5aae-448b-9347-c03185543366} = NULL, !- Program Line 14 - SET {319b8e72-c621-4203-86ce-e8d5b0cc2b2a} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8bb80c26-9d99-4719-8f66-095b8da3fe51}<23.9 && {8bb80c26-9d99-4719-8f66-095b8da3fe51}>1.7, !- Program Line 1 - SET {0a741147-ee0f-49fb-8b20-41245befefb9} = 29.4, !- Program Line 2 - SET {9336fd6e-fea0-49a0-8499-63a1fca60463} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8bb80c26-9d99-4719-8f66-095b8da3fe51}<23.9 && {8bb80c26-9d99-4719-8f66-095b8da3fe51}>1.7, !- Program Line 4 - SET {0a741147-ee0f-49fb-8b20-41245befefb9} = 29.4, !- Program Line 5 - SET {9336fd6e-fea0-49a0-8499-63a1fca60463} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8bb80c26-9d99-4719-8f66-095b8da3fe51}<23.9 && {8bb80c26-9d99-4719-8f66-095b8da3fe51}>1.7, !- Program Line 7 - SET {0a741147-ee0f-49fb-8b20-41245befefb9} = 29.4, !- Program Line 8 - SET {9336fd6e-fea0-49a0-8499-63a1fca60463} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8bb80c26-9d99-4719-8f66-095b8da3fe51}<23.9 && {8bb80c26-9d99-4719-8f66-095b8da3fe51}>1.7, !- Program Line 10 - SET {0a741147-ee0f-49fb-8b20-41245befefb9} = 29.4, !- Program Line 11 - SET {9336fd6e-fea0-49a0-8499-63a1fca60463} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {0a741147-ee0f-49fb-8b20-41245befefb9} = NULL, !- Program Line 14 - SET {9336fd6e-fea0-49a0-8499-63a1fca60463} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9b1d4279-1942-45c3-989f-34d44c02f393}<23.9 && {9b1d4279-1942-45c3-989f-34d44c02f393}>1.7, !- Program Line 1 - SET {7939a6e0-e7cf-48cb-905a-044bb6201ff5} = 29.4, !- Program Line 2 - SET {a372736c-97aa-4f74-8ebe-9cfc1cb0560a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9b1d4279-1942-45c3-989f-34d44c02f393}<23.9 && {9b1d4279-1942-45c3-989f-34d44c02f393}>1.7, !- Program Line 4 - SET {7939a6e0-e7cf-48cb-905a-044bb6201ff5} = 29.4, !- Program Line 5 - SET {a372736c-97aa-4f74-8ebe-9cfc1cb0560a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9b1d4279-1942-45c3-989f-34d44c02f393}<23.9 && {9b1d4279-1942-45c3-989f-34d44c02f393}>1.7, !- Program Line 7 - SET {7939a6e0-e7cf-48cb-905a-044bb6201ff5} = 29.4, !- Program Line 8 - SET {a372736c-97aa-4f74-8ebe-9cfc1cb0560a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9b1d4279-1942-45c3-989f-34d44c02f393}<23.9 && {9b1d4279-1942-45c3-989f-34d44c02f393}>1.7, !- Program Line 10 - SET {7939a6e0-e7cf-48cb-905a-044bb6201ff5} = 29.4, !- Program Line 11 - SET {a372736c-97aa-4f74-8ebe-9cfc1cb0560a} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {360dab31-168c-4262-9028-aff9c08d77d3}<23.9 && {360dab31-168c-4262-9028-aff9c08d77d3}>1.7, !- Program Line 1 + SET {db472e4a-f29e-4800-b423-c9a54a423283} = 29.4, !- Program Line 2 + SET {ffbceb59-fb15-45a3-a227-37446d6fae3d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {360dab31-168c-4262-9028-aff9c08d77d3}<23.9 && {360dab31-168c-4262-9028-aff9c08d77d3}>1.7, !- Program Line 4 + SET {db472e4a-f29e-4800-b423-c9a54a423283} = 29.4, !- Program Line 5 + SET {ffbceb59-fb15-45a3-a227-37446d6fae3d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {360dab31-168c-4262-9028-aff9c08d77d3}<23.9 && {360dab31-168c-4262-9028-aff9c08d77d3}>1.7, !- Program Line 7 + SET {db472e4a-f29e-4800-b423-c9a54a423283} = 29.4, !- Program Line 8 + SET {ffbceb59-fb15-45a3-a227-37446d6fae3d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {360dab31-168c-4262-9028-aff9c08d77d3}<23.9 && {360dab31-168c-4262-9028-aff9c08d77d3}>1.7, !- Program Line 10 + SET {db472e4a-f29e-4800-b423-c9a54a423283} = 29.4, !- Program Line 11 + SET {ffbceb59-fb15-45a3-a227-37446d6fae3d} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7939a6e0-e7cf-48cb-905a-044bb6201ff5} = NULL, !- Program Line 14 - SET {a372736c-97aa-4f74-8ebe-9cfc1cb0560a} = NULL, !- Program Line 15 + SET {db472e4a-f29e-4800-b423-c9a54a423283} = NULL, !- Program Line 14 + SET {ffbceb59-fb15-45a3-a227-37446d6fae3d} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0035-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0035-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0036-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0035-000000000003}; !- Program Name 1 + {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:Sensor, {00000000-0000-0000-0037-000000000001}, !- Handle @@ -4264,65 +2781,11 @@ OS:EnergyManagementSystem:Sensor, Environment, !- Output Variable or Output Meter Index Key Name Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0037-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0037-000000000003}, !- Handle - OAT_2, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - OS:Facility, {00000000-0000-0000-0038-000000000001}; !- Handle OS:Fan:VariableVolume, {00000000-0000-0000-0039-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000160}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000161}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000212}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000213}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000003}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -4343,29 +2806,8 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000004}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000155}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000153}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000005}, !- Handle - Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0039-000000000002}, !- Handle + Sys6 Supply Fan, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -4380,27 +2822,6 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000207}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000205}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000006}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0015-000000000103}, !- Air Inlet Node Name {00000000-0000-0000-0015-000000000101}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -4879,49 +3300,17 @@ OS:ModelObjectList, {00000000-0000-0000-0048-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name - OS:Node, {00000000-0000-0000-0049-000000000001}, !- Handle 126gal Electricity Water Heater - 85kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000246}, !- Inlet Port - {00000000-0000-0000-0015-000000000255}; !- Outlet Port + {00000000-0000-0000-0015-000000000142}, !- Inlet Port + {00000000-0000-0000-0015-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000002}, !- Handle 126gal Electricity Water Heater - 85kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000256}, !- Inlet Port - {00000000-0000-0000-0015-000000000257}; !- Outlet Port + {00000000-0000-0000-0015-000000000152}, !- Inlet Port + {00000000-0000-0000-0015-000000000153}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000003}, !- Handle @@ -5003,918 +3392,594 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000016}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000188}, !- Inlet Port - {00000000-0000-0000-0015-000000000189}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000018}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000182}, !- Inlet Port - {00000000-0000-0000-0015-000000000183}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000019}, !- Handle + {00000000-0000-0000-0049-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000020}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000170}, !- Inlet Port - {00000000-0000-0000-0015-000000000171}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000021}, !- Handle + {00000000-0000-0000-0049-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000022}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000176}, !- Inlet Port - {00000000-0000-0000-0015-000000000177}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000023}, !- Handle + {00000000-0000-0000-0049-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000024}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0015-000000000164}, !- Inlet Port - {00000000-0000-0000-0015-000000000165}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000025}, !- Handle + {00000000-0000-0000-0049-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000026}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000228}, !- Inlet Port - {00000000-0000-0000-0015-000000000229}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000027}, !- Handle + {00000000-0000-0000-0049-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000028}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000216}, !- Inlet Port - {00000000-0000-0000-0015-000000000217}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000029}, !- Handle + {00000000-0000-0000-0049-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000030}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000234}, !- Inlet Port - {00000000-0000-0000-0015-000000000235}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000031}, !- Handle + {00000000-0000-0000-0049-000000000023}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000032}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000240}, !- Inlet Port - {00000000-0000-0000-0015-000000000241}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000033}, !- Handle + {00000000-0000-0000-0049-000000000024}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000034}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0015-000000000222}, !- Inlet Port - {00000000-0000-0000-0015-000000000223}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000035}, !- Handle + {00000000-0000-0000-0049-000000000025}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000036}, !- Handle + {00000000-0000-0000-0049-000000000026}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000114}, !- Inlet Port {00000000-0000-0000-0015-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000037}, !- Handle + {00000000-0000-0000-0049-000000000027}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000116}, !- Inlet Port {00000000-0000-0000-0015-000000000111}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000038}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000190}, !- Inlet Port - {00000000-0000-0000-0015-000000000191}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000039}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000192}, !- Inlet Port - {00000000-0000-0000-0015-000000000187}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000040}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000218}, !- Inlet Port - {00000000-0000-0000-0015-000000000219}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000041}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000220}, !- Inlet Port - {00000000-0000-0000-0015-000000000215}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000042}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000224}, !- Inlet Port - {00000000-0000-0000-0015-000000000225}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000043}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000226}, !- Inlet Port - {00000000-0000-0000-0015-000000000221}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000044}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000230}, !- Inlet Port - {00000000-0000-0000-0015-000000000231}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000045}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000232}, !- Inlet Port - {00000000-0000-0000-0015-000000000227}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000236}, !- Inlet Port - {00000000-0000-0000-0015-000000000237}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000238}, !- Inlet Port - {00000000-0000-0000-0015-000000000233}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000242}, !- Inlet Port - {00000000-0000-0000-0015-000000000243}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000244}, !- Inlet Port - {00000000-0000-0000-0015-000000000239}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000050}, !- Handle + {00000000-0000-0000-0049-000000000028}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000120}, !- Inlet Port {00000000-0000-0000-0015-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000051}, !- Handle + {00000000-0000-0000-0049-000000000029}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000122}, !- Inlet Port {00000000-0000-0000-0015-000000000117}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000052}, !- Handle + {00000000-0000-0000-0049-000000000030}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000126}, !- Inlet Port {00000000-0000-0000-0015-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000053}, !- Handle + {00000000-0000-0000-0049-000000000031}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000128}, !- Inlet Port {00000000-0000-0000-0015-000000000123}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000054}, !- Handle + {00000000-0000-0000-0049-000000000032}, !- Handle Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000132}, !- Inlet Port {00000000-0000-0000-0015-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000055}, !- Handle + {00000000-0000-0000-0049-000000000033}, !- Handle Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000134}, !- Inlet Port {00000000-0000-0000-0015-000000000129}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000056}, !- Handle + {00000000-0000-0000-0049-000000000034}, !- Handle Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000138}, !- Inlet Port {00000000-0000-0000-0015-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000057}, !- Handle + {00000000-0000-0000-0049-000000000035}, !- Handle Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000140}, !- Inlet Port {00000000-0000-0000-0015-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000166}, !- Inlet Port - {00000000-0000-0000-0015-000000000167}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000168}, !- Inlet Port - {00000000-0000-0000-0015-000000000163}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000172}, !- Inlet Port - {00000000-0000-0000-0015-000000000173}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000174}, !- Inlet Port - {00000000-0000-0000-0015-000000000169}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000178}, !- Inlet Port - {00000000-0000-0000-0015-000000000179}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000180}, !- Inlet Port - {00000000-0000-0000-0015-000000000175}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000184}, !- Inlet Port - {00000000-0000-0000-0015-000000000185}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000186}, !- Inlet Port - {00000000-0000-0000-0015-000000000181}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000066}, !- Handle + {00000000-0000-0000-0049-000000000036}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000040}, !- Inlet Port {00000000-0000-0000-0015-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000067}, !- Handle + {00000000-0000-0000-0049-000000000037}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000043}, !- Inlet Port {00000000-0000-0000-0015-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000068}, !- Handle + {00000000-0000-0000-0049-000000000038}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000037}, !- Inlet Port {00000000-0000-0000-0015-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000069}, !- Handle + {00000000-0000-0000-0049-000000000039}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000061}, !- Inlet Port {00000000-0000-0000-0015-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000070}, !- Handle + {00000000-0000-0000-0049-000000000040}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000042}, !- Inlet Port {00000000-0000-0000-0015-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000071}, !- Handle + {00000000-0000-0000-0049-000000000041}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000104}, !- Inlet Port {00000000-0000-0000-0015-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000072}, !- Handle + {00000000-0000-0000-0049-000000000042}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000097}, !- Inlet Port {00000000-0000-0000-0015-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000073}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000147}, !- Inlet Port - {00000000-0000-0000-0015-000000000148}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000074}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000156}, !- Inlet Port - {00000000-0000-0000-0015-000000000157}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000075}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000149}, !- Inlet Port - {00000000-0000-0000-0015-000000000150}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000076}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000199}, !- Inlet Port - {00000000-0000-0000-0015-000000000200}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000077}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000208}, !- Inlet Port - {00000000-0000-0000-0015-000000000209}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000078}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000201}, !- Inlet Port - {00000000-0000-0000-0015-000000000202}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000079}, !- Handle + {00000000-0000-0000-0049-000000000043}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000102}, !- Inlet Port {00000000-0000-0000-0015-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000080}, !- Handle - Coil Heating Electric 13 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000206}, !- Inlet Port - {00000000-0000-0000-0015-000000000207}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000081}, !- Handle - Coil Heating Electric 7 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000154}, !- Inlet Port - {00000000-0000-0000-0015-000000000155}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000082}, !- Handle + {00000000-0000-0000-0049-000000000044}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000065}, !- Inlet Port {00000000-0000-0000-0015-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000083}, !- Handle + {00000000-0000-0000-0049-000000000045}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000068}, !- Inlet Port {00000000-0000-0000-0015-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000084}, !- Handle + {00000000-0000-0000-0049-000000000046}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000062}, !- Inlet Port {00000000-0000-0000-0015-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000085}, !- Handle + {00000000-0000-0000-0049-000000000047}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000082}, !- Inlet Port {00000000-0000-0000-0015-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000086}, !- Handle + {00000000-0000-0000-0049-000000000048}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000063}, !- Inlet Port {00000000-0000-0000-0015-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000087}, !- Handle + {00000000-0000-0000-0049-000000000049}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000074}, !- Inlet Port {00000000-0000-0000-0015-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000088}, !- Handle + {00000000-0000-0000-0049-000000000050}, !- Handle Core_bottom WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000271}, !- Inlet Port - {00000000-0000-0000-0015-000000000272}; !- Outlet Port + {00000000-0000-0000-0015-000000000167}, !- Inlet Port + {00000000-0000-0000-0015-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000089}, !- Handle + {00000000-0000-0000-0049-000000000051}, !- Handle Core_bottom WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000273}, !- Inlet Port - {00000000-0000-0000-0015-000000000274}; !- Outlet Port + {00000000-0000-0000-0015-000000000169}, !- Inlet Port + {00000000-0000-0000-0015-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000090}, !- Handle + {00000000-0000-0000-0049-000000000052}, !- Handle Core_mid WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000275}, !- Inlet Port - {00000000-0000-0000-0015-000000000276}; !- Outlet Port + {00000000-0000-0000-0015-000000000171}, !- Inlet Port + {00000000-0000-0000-0015-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000091}, !- Handle + {00000000-0000-0000-0049-000000000053}, !- Handle Core_mid WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000277}, !- Inlet Port - {00000000-0000-0000-0015-000000000278}; !- Outlet Port + {00000000-0000-0000-0015-000000000173}, !- Inlet Port + {00000000-0000-0000-0015-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000092}, !- Handle + {00000000-0000-0000-0049-000000000054}, !- Handle Core_top WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000279}, !- Inlet Port - {00000000-0000-0000-0015-000000000280}; !- Outlet Port + {00000000-0000-0000-0015-000000000175}, !- Inlet Port + {00000000-0000-0000-0015-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000093}, !- Handle + {00000000-0000-0000-0049-000000000055}, !- Handle Core_top WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000281}, !- Inlet Port - {00000000-0000-0000-0015-000000000282}; !- Outlet Port + {00000000-0000-0000-0015-000000000177}, !- Inlet Port + {00000000-0000-0000-0015-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000094}, !- Handle + {00000000-0000-0000-0049-000000000056}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000253}, !- Inlet Port - {00000000-0000-0000-0015-000000000254}; !- Outlet Port + {00000000-0000-0000-0015-000000000149}, !- Inlet Port + {00000000-0000-0000-0015-000000000150}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000095}, !- Handle + {00000000-0000-0000-0049-000000000057}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000248}, !- Inlet Port - {00000000-0000-0000-0015-000000000249}; !- Outlet Port + {00000000-0000-0000-0015-000000000144}, !- Inlet Port + {00000000-0000-0000-0015-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000096}, !- Handle + {00000000-0000-0000-0049-000000000058}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000270}, !- Inlet Port - {00000000-0000-0000-0015-000000000251}; !- Outlet Port + {00000000-0000-0000-0015-000000000166}, !- Inlet Port + {00000000-0000-0000-0015-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000097}, !- Handle + {00000000-0000-0000-0049-000000000059}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000245}, !- Inlet Port - {00000000-0000-0000-0015-000000000252}; !- Outlet Port + {00000000-0000-0000-0015-000000000141}, !- Inlet Port + {00000000-0000-0000-0015-000000000148}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000098}, !- Handle + {00000000-0000-0000-0049-000000000060}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000267}, !- Inlet Port - {00000000-0000-0000-0015-000000000247}; !- Outlet Port + {00000000-0000-0000-0015-000000000163}, !- Inlet Port + {00000000-0000-0000-0015-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000099}, !- Handle + {00000000-0000-0000-0049-000000000061}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000283}, !- Inlet Port - {00000000-0000-0000-0015-000000000284}; !- Outlet Port + {00000000-0000-0000-0015-000000000179}, !- Inlet Port + {00000000-0000-0000-0015-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000100}, !- Handle + {00000000-0000-0000-0049-000000000062}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000285}, !- Inlet Port - {00000000-0000-0000-0015-000000000286}; !- Outlet Port + {00000000-0000-0000-0015-000000000181}, !- Inlet Port + {00000000-0000-0000-0015-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000101}, !- Handle + {00000000-0000-0000-0049-000000000063}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000287}, !- Inlet Port - {00000000-0000-0000-0015-000000000288}; !- Outlet Port + {00000000-0000-0000-0015-000000000183}, !- Inlet Port + {00000000-0000-0000-0015-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000102}, !- Handle + {00000000-0000-0000-0049-000000000064}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000289}, !- Inlet Port - {00000000-0000-0000-0015-000000000290}; !- Outlet Port + {00000000-0000-0000-0015-000000000185}, !- Inlet Port + {00000000-0000-0000-0015-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000103}, !- Handle + {00000000-0000-0000-0049-000000000065}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000291}, !- Inlet Port - {00000000-0000-0000-0015-000000000292}; !- Outlet Port + {00000000-0000-0000-0015-000000000187}, !- Inlet Port + {00000000-0000-0000-0015-000000000188}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000104}, !- Handle + {00000000-0000-0000-0049-000000000066}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000293}, !- Inlet Port - {00000000-0000-0000-0015-000000000294}; !- Outlet Port + {00000000-0000-0000-0015-000000000189}, !- Inlet Port + {00000000-0000-0000-0015-000000000190}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000105}, !- Handle + {00000000-0000-0000-0049-000000000067}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000295}, !- Inlet Port - {00000000-0000-0000-0015-000000000296}; !- Outlet Port + {00000000-0000-0000-0015-000000000191}, !- Inlet Port + {00000000-0000-0000-0015-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000106}, !- Handle + {00000000-0000-0000-0049-000000000068}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000297}, !- Inlet Port - {00000000-0000-0000-0015-000000000298}; !- Outlet Port + {00000000-0000-0000-0015-000000000193}, !- Inlet Port + {00000000-0000-0000-0015-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000107}, !- Handle + {00000000-0000-0000-0049-000000000069}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000299}, !- Inlet Port - {00000000-0000-0000-0015-000000000300}; !- Outlet Port + {00000000-0000-0000-0015-000000000195}, !- Inlet Port + {00000000-0000-0000-0015-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000108}, !- Handle + {00000000-0000-0000-0049-000000000070}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000301}, !- Inlet Port - {00000000-0000-0000-0015-000000000302}; !- Outlet Port + {00000000-0000-0000-0015-000000000197}, !- Inlet Port + {00000000-0000-0000-0015-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000109}, !- Handle + {00000000-0000-0000-0049-000000000071}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000303}, !- Inlet Port - {00000000-0000-0000-0015-000000000304}; !- Outlet Port + {00000000-0000-0000-0015-000000000199}, !- Inlet Port + {00000000-0000-0000-0015-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000110}, !- Handle + {00000000-0000-0000-0049-000000000072}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000305}, !- Inlet Port - {00000000-0000-0000-0015-000000000306}; !- Outlet Port + {00000000-0000-0000-0015-000000000201}, !- Inlet Port + {00000000-0000-0000-0015-000000000202}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000111}, !- Handle + {00000000-0000-0000-0049-000000000073}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000307}, !- Inlet Port - {00000000-0000-0000-0015-000000000308}; !- Outlet Port + {00000000-0000-0000-0015-000000000203}, !- Inlet Port + {00000000-0000-0000-0015-000000000204}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000112}, !- Handle + {00000000-0000-0000-0049-000000000074}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000309}, !- Inlet Port - {00000000-0000-0000-0015-000000000310}; !- Outlet Port + {00000000-0000-0000-0015-000000000205}, !- Inlet Port + {00000000-0000-0000-0015-000000000206}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000113}, !- Handle + {00000000-0000-0000-0049-000000000075}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000311}, !- Inlet Port - {00000000-0000-0000-0015-000000000312}; !- Outlet Port + {00000000-0000-0000-0015-000000000207}, !- Inlet Port + {00000000-0000-0000-0015-000000000208}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000114}, !- Handle + {00000000-0000-0000-0049-000000000076}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000313}, !- Inlet Port - {00000000-0000-0000-0015-000000000314}; !- Outlet Port + {00000000-0000-0000-0015-000000000209}, !- Inlet Port + {00000000-0000-0000-0015-000000000210}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000115}, !- Handle + {00000000-0000-0000-0049-000000000077}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000315}, !- Inlet Port - {00000000-0000-0000-0015-000000000316}; !- Outlet Port + {00000000-0000-0000-0015-000000000211}, !- Inlet Port + {00000000-0000-0000-0015-000000000212}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000116}, !- Handle + {00000000-0000-0000-0049-000000000078}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000317}, !- Inlet Port - {00000000-0000-0000-0015-000000000318}; !- Outlet Port + {00000000-0000-0000-0015-000000000213}, !- Inlet Port + {00000000-0000-0000-0015-000000000214}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000117}, !- Handle + {00000000-0000-0000-0049-000000000079}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000319}, !- Inlet Port - {00000000-0000-0000-0015-000000000320}; !- Outlet Port + {00000000-0000-0000-0015-000000000215}, !- Inlet Port + {00000000-0000-0000-0015-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000118}, !- Handle + {00000000-0000-0000-0049-000000000080}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000321}, !- Inlet Port - {00000000-0000-0000-0015-000000000322}; !- Outlet Port + {00000000-0000-0000-0015-000000000217}, !- Inlet Port + {00000000-0000-0000-0015-000000000218}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000119}, !- Handle + {00000000-0000-0000-0049-000000000081}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000323}, !- Inlet Port - {00000000-0000-0000-0015-000000000324}; !- Outlet Port + {00000000-0000-0000-0015-000000000219}, !- Inlet Port + {00000000-0000-0000-0015-000000000220}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000120}, !- Handle + {00000000-0000-0000-0049-000000000082}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000325}, !- Inlet Port - {00000000-0000-0000-0015-000000000326}; !- Outlet Port + {00000000-0000-0000-0015-000000000221}, !- Inlet Port + {00000000-0000-0000-0015-000000000222}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000121}, !- Handle + {00000000-0000-0000-0049-000000000083}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000327}, !- Inlet Port - {00000000-0000-0000-0015-000000000328}; !- Outlet Port + {00000000-0000-0000-0015-000000000223}, !- Inlet Port + {00000000-0000-0000-0015-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000122}, !- Handle + {00000000-0000-0000-0049-000000000084}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000329}, !- Inlet Port - {00000000-0000-0000-0015-000000000330}; !- Outlet Port + {00000000-0000-0000-0015-000000000225}, !- Inlet Port + {00000000-0000-0000-0015-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000123}, !- Handle + {00000000-0000-0000-0049-000000000085}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000055}, !- Inlet Port {00000000-0000-0000-0015-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000124}, !- Handle + {00000000-0000-0000-0049-000000000086}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000057}, !- Inlet Port {00000000-0000-0000-0015-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000125}, !- Handle + {00000000-0000-0000-0049-000000000087}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000059}, !- Inlet Port {00000000-0000-0000-0015-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000126}, !- Handle + {00000000-0000-0000-0049-000000000088}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000076}, !- Inlet Port {00000000-0000-0000-0015-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000127}, !- Handle + {00000000-0000-0000-0049-000000000089}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000078}, !- Inlet Port {00000000-0000-0000-0015-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000128}, !- Handle + {00000000-0000-0000-0049-000000000090}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000080}, !- Inlet Port {00000000-0000-0000-0015-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000129}, !- Handle + {00000000-0000-0000-0049-000000000091}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000258}, !- Inlet Port - {00000000-0000-0000-0015-000000000259}; !- Outlet Port + {00000000-0000-0000-0015-000000000154}, !- Inlet Port + {00000000-0000-0000-0015-000000000155}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000130}, !- Handle + {00000000-0000-0000-0049-000000000092}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000260}, !- Inlet Port - {00000000-0000-0000-0015-000000000261}; !- Outlet Port + {00000000-0000-0000-0015-000000000156}, !- Inlet Port + {00000000-0000-0000-0015-000000000157}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000131}, !- Handle + {00000000-0000-0000-0049-000000000093}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000250}, !- Inlet Port - {00000000-0000-0000-0015-000000000262}; !- Outlet Port + {00000000-0000-0000-0015-000000000146}, !- Inlet Port + {00000000-0000-0000-0015-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000132}, !- Handle + {00000000-0000-0000-0049-000000000094}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000263}, !- Inlet Port - {00000000-0000-0000-0015-000000000264}; !- Outlet Port + {00000000-0000-0000-0015-000000000159}, !- Inlet Port + {00000000-0000-0000-0015-000000000160}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000133}, !- Handle + {00000000-0000-0000-0049-000000000095}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000265}, !- Inlet Port - {00000000-0000-0000-0015-000000000266}; !- Outlet Port + {00000000-0000-0000-0015-000000000161}, !- Inlet Port + {00000000-0000-0000-0015-000000000162}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000134}, !- Handle + {00000000-0000-0000-0049-000000000096}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000268}, !- Inlet Port - {00000000-0000-0000-0015-000000000269}; !- Outlet Port + {00000000-0000-0000-0015-000000000164}, !- Inlet Port + {00000000-0000-0000-0015-000000000165}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000135}, !- Handle - Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000097}, !- Handle + Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000067}, !- Inlet Port {00000000-0000-0000-0015-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000136}, !- Handle - Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000098}, !- Handle + Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000084}, !- Inlet Port {00000000-0000-0000-0015-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000137}, !- Handle - Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000099}, !- Handle + Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000038}, !- Inlet Port {00000000-0000-0000-0015-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000138}, !- Handle - Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000100}, !- Handle + Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000049}, !- Inlet Port {00000000-0000-0000-0015-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000139}, !- Handle + {00000000-0000-0000-0049-000000000101}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000046}, !- Inlet Port {00000000-0000-0000-0015-000000000047}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000140}, !- Handle + {00000000-0000-0000-0049-000000000102}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000071}, !- Inlet Port {00000000-0000-0000-0015-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000141}, !- Handle + {00000000-0000-0000-0049-000000000103}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000086}, !- Inlet Port {00000000-0000-0000-0015-000000000087}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000142}, !- Handle + {00000000-0000-0000-0049-000000000104}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000088}, !- Inlet Port {00000000-0000-0000-0015-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000143}, !- Handle + {00000000-0000-0000-0049-000000000105}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000051}, !- Inlet Port {00000000-0000-0000-0015-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000144}, !- Handle + {00000000-0000-0000-0049-000000000106}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000053}, !- Inlet Port {00000000-0000-0000-0015-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000145}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000161}, !- Inlet Port - {00000000-0000-0000-0015-000000000162}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000146}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000213}, !- Inlet Port - {00000000-0000-0000-0015-000000000214}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000147}, !- Handle + {00000000-0000-0000-0049-000000000107}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000109}, !- Inlet Port {00000000-0000-0000-0015-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000148}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000143}, !- Inlet Port - {00000000-0000-0000-0015-000000000145}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000149}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000146}, !- Inlet Port - {00000000-0000-0000-0015-000000000144}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000150}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0015-000000000158}, !- Inlet Port - {00000000-0000-0000-0015-000000000159}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000151}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0015-000000000151}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000152}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0015-000000000152}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000153}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000141}, !- Inlet Port - {00000000-0000-0000-0015-000000000160}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000154}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000153}, !- Inlet Port - {00000000-0000-0000-0015-000000000142}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000155}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000195}, !- Inlet Port - {00000000-0000-0000-0015-000000000197}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000156}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000198}, !- Inlet Port - {00000000-0000-0000-0015-000000000196}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000157}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0015-000000000210}, !- Inlet Port - {00000000-0000-0000-0015-000000000211}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000158}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0015-000000000203}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000159}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0015-000000000204}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000160}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000193}, !- Inlet Port - {00000000-0000-0000-0015-000000000212}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000161}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000205}, !- Inlet Port - {00000000-0000-0000-0015-000000000194}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0049-000000000162}, !- Handle + {00000000-0000-0000-0049-000000000108}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000092}, !- Inlet Port {00000000-0000-0000-0015-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000163}, !- Handle + {00000000-0000-0000-0049-000000000109}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000095}, !- Inlet Port {00000000-0000-0000-0015-000000000093}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000164}, !- Handle + {00000000-0000-0000-0049-000000000110}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0015-000000000106}, !- Inlet Port {00000000-0000-0000-0015-000000000107}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000165}, !- Handle + {00000000-0000-0000-0049-000000000111}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0015-000000000099}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000166}, !- Handle + {00000000-0000-0000-0049-000000000112}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name {00000000-0000-0000-0015-000000000100}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000167}, !- Handle + {00000000-0000-0000-0049-000000000113}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000090}, !- Inlet Port {00000000-0000-0000-0015-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000168}, !- Handle + {00000000-0000-0000-0049-000000000114}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000101}, !- Inlet Port {00000000-0000-0000-0015-000000000091}; !- Outlet Port @@ -5932,7 +3997,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0063-000000000024}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0063-000000000022}, !- Work Efficiency Schedule Name {00000000-0000-0000-0063-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0063-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -5973,26 +4038,26 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0053-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0015-000000000259}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000260}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000155}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000156}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0053-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0015-000000000262}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000263}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000158}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000159}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0053-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0015-000000000266}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000267}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000162}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000163}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0053-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0015-000000000269}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000270}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000165}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000166}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0054-000000000001}, !- Handle @@ -6003,7 +4068,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000069}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000039}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -6017,7 +4082,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -6039,7 +4104,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000085}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000047}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -6053,7 +4118,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -6075,21 +4140,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000098}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000060}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0015-000000000245}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0015-000000000247}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0015-000000000141}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0015-000000000143}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0015-000000000248}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0015-000000000251}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000144}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0015-000000000147}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -6104,8 +4169,7 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0055-000000000001}, !- Handle - {00000000-0000-0000-0089-000000000013}, !- HVAC Component - {00000000-0000-0000-0015-000000000163}; !- Port 1 + {00000000-0000-0000-0089-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000002}, !- Handle @@ -6113,13 +4177,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000003}, !- Handle - {00000000-0000-0000-0089-000000000013}, !- HVAC Component - {00000000-0000-0000-0015-000000000164}; !- Port 1 + {00000000-0000-0000-0089-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000004}, !- Handle - {00000000-0000-0000-0089-000000000018}, !- HVAC Component - {00000000-0000-0000-0015-000000000221}; !- Port 1 + {00000000-0000-0000-0089-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000005}, !- Handle @@ -6127,13 +4189,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000006}, !- Handle - {00000000-0000-0000-0089-000000000018}, !- HVAC Component - {00000000-0000-0000-0015-000000000222}; !- Port 1 + {00000000-0000-0000-0089-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000007}, !- Handle - {00000000-0000-0000-0089-000000000014}, !- HVAC Component - {00000000-0000-0000-0015-000000000227}; !- Port 1 + {00000000-0000-0000-0089-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000008}, !- Handle @@ -6141,13 +4201,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000009}, !- Handle - {00000000-0000-0000-0089-000000000014}, !- HVAC Component - {00000000-0000-0000-0015-000000000228}; !- Port 1 + {00000000-0000-0000-0089-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000010}, !- Handle - {00000000-0000-0000-0089-000000000015}, !- HVAC Component - {00000000-0000-0000-0015-000000000215}; !- Port 1 + {00000000-0000-0000-0089-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000011}, !- Handle @@ -6155,13 +4213,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000012}, !- Handle - {00000000-0000-0000-0089-000000000015}, !- HVAC Component - {00000000-0000-0000-0015-000000000216}; !- Port 1 + {00000000-0000-0000-0089-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000013}, !- Handle - {00000000-0000-0000-0089-000000000009}, !- HVAC Component - {00000000-0000-0000-0015-000000000187}; !- Port 1 + {00000000-0000-0000-0089-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000014}, !- Handle @@ -6169,8 +4225,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000015}, !- Handle - {00000000-0000-0000-0089-000000000009}, !- HVAC Component - {00000000-0000-0000-0015-000000000188}; !- Port 1 + {00000000-0000-0000-0089-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000016}, !- Handle @@ -6188,8 +4243,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000019}, !- Handle - {00000000-0000-0000-0089-000000000016}, !- HVAC Component - {00000000-0000-0000-0015-000000000233}; !- Port 1 + {00000000-0000-0000-0089-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000020}, !- Handle @@ -6197,13 +4251,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000021}, !- Handle - {00000000-0000-0000-0089-000000000016}, !- HVAC Component - {00000000-0000-0000-0015-000000000234}; !- Port 1 + {00000000-0000-0000-0089-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000022}, !- Handle - {00000000-0000-0000-0089-000000000010}, !- HVAC Component - {00000000-0000-0000-0015-000000000181}; !- Port 1 + {00000000-0000-0000-0089-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000023}, !- Handle @@ -6211,8 +4263,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000024}, !- Handle - {00000000-0000-0000-0089-000000000010}, !- HVAC Component - {00000000-0000-0000-0015-000000000182}; !- Port 1 + {00000000-0000-0000-0089-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000025}, !- Handle @@ -6228,8 +4279,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000028}, !- Handle - {00000000-0000-0000-0089-000000000017}, !- HVAC Component - {00000000-0000-0000-0015-000000000239}; !- Port 1 + {00000000-0000-0000-0089-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000029}, !- Handle @@ -6237,8 +4287,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000030}, !- Handle - {00000000-0000-0000-0089-000000000017}, !- HVAC Component - {00000000-0000-0000-0015-000000000240}; !- Port 1 + {00000000-0000-0000-0089-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000031}, !- Handle @@ -6268,8 +4317,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000037}, !- Handle - {00000000-0000-0000-0089-000000000011}, !- HVAC Component - {00000000-0000-0000-0015-000000000169}; !- Port 1 + {00000000-0000-0000-0089-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000038}, !- Handle @@ -6277,8 +4325,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000039}, !- Handle - {00000000-0000-0000-0089-000000000011}, !- HVAC Component - {00000000-0000-0000-0015-000000000170}; !- Port 1 + {00000000-0000-0000-0089-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000040}, !- Handle @@ -6308,8 +4355,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000046}, !- Handle - {00000000-0000-0000-0089-000000000012}, !- HVAC Component - {00000000-0000-0000-0015-000000000175}; !- Port 1 + {00000000-0000-0000-0089-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000047}, !- Handle @@ -6317,8 +4363,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000048}, !- Handle - {00000000-0000-0000-0089-000000000012}, !- HVAC Component - {00000000-0000-0000-0015-000000000176}; !- Port 1 + {00000000-0000-0000-0089-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0055-000000000049}, !- Handle @@ -6351,8 +4396,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0056-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0015-000000000252}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000253}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000148}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000149}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 445102.517395202, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -6378,7 +4423,7 @@ OS:Pump:VariableSpeed, , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.865, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -6411,7 +4456,7 @@ OS:Pump:VariableSpeed, , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.917, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -7208,33 +5253,6 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000037}, !- Handle - Schedule Day 10, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000038}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000039}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7243,7 +5261,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000041}, !- Handle + {00000000-0000-0000-0061-000000000038}, !- Handle Schedule Day 3, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7321,7 +5339,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000042}, !- Handle + {00000000-0000-0000-0061-000000000039}, !- Handle Schedule Day 4, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7399,7 +5417,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000043}, !- Handle + {00000000-0000-0000-0061-000000000040}, !- Handle Schedule Day 5, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7408,7 +5426,7 @@ OS:Schedule:Day, 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000044}, !- Handle + {00000000-0000-0000-0061-000000000041}, !- Handle Schedule Day 6, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7417,7 +5435,7 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000045}, !- Handle + {00000000-0000-0000-0061-000000000042}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7426,7 +5444,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000046}, !- Handle + {00000000-0000-0000-0061-000000000043}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7435,16 +5453,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000047}, !- Handle - Schedule Day 9, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000048}, !- Handle + {00000000-0000-0000-0061-000000000044}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7453,25 +5462,7 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000049}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000050}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000051}, !- Handle + {00000000-0000-0000-0061-000000000045}, !- Handle Supply Air Temp Default, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7480,7 +5471,7 @@ OS:Schedule:Day, 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000052}, !- Handle + {00000000-0000-0000-0061-000000000046}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7489,7 +5480,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000053}, !- Handle + {00000000-0000-0000-0061-000000000047}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7498,7 +5489,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000054}, !- Handle + {00000000-0000-0000-0061-000000000048}, !- Handle satCHW Temp 1, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7576,7 +5567,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000055}, !- Handle + {00000000-0000-0000-0061-000000000049}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7654,7 +5645,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000056}, !- Handle + {00000000-0000-0000-0061-000000000050}, !- Handle satCW Temp 1, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7732,7 +5723,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000057}, !- Handle + {00000000-0000-0000-0061-000000000051}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7810,7 +5801,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000058}, !- Handle + {00000000-0000-0000-0061-000000000052}, !- Handle sunCHW Temp 1, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7888,7 +5879,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000059}, !- Handle + {00000000-0000-0000-0061-000000000053}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7966,7 +5957,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000060}, !- Handle + {00000000-0000-0000-0061-000000000054}, !- Handle sunCW Temp 1, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8044,7 +6035,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000061}, !- Handle + {00000000-0000-0000-0061-000000000055}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8099,96 +6090,30 @@ OS:Schedule:Day, 17, !- Hour 17 0, !- Minute 17 29, !- Value Until Time 17 - 18, !- Hour 18 - 0, !- Minute 18 - 29, !- Value Until Time 18 - 19, !- Hour 19 - 0, !- Minute 19 - 29, !- Value Until Time 19 - 20, !- Hour 20 - 0, !- Minute 20 - 29, !- Value Until Time 20 - 21, !- Hour 21 - 0, !- Minute 21 - 29, !- Value Until Time 21 - 22, !- Hour 22 - 0, !- Minute 22 - 29, !- Value Until Time 22 - 23, !- Hour 23 - 0, !- Minute 23 - 29, !- Value Until Time 23 - 24, !- Hour 24 - 0, !- Minute 24 - 29; !- Value Until Time 24 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000062}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000063}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000064}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000065}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000066}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0061-000000000067}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 + 18, !- Hour 18 + 0, !- Minute 18 + 29, !- Value Until Time 18 + 19, !- Hour 19 + 0, !- Minute 19 + 29, !- Value Until Time 19 + 20, !- Hour 20 + 0, !- Minute 20 + 29, !- Value Until Time 20 + 21, !- Hour 21 + 0, !- Minute 21 + 29, !- Value Until Time 21 + 22, !- Hour 22 + 0, !- Minute 22 + 29, !- Value Until Time 22 + 23, !- Hour 23 + 0, !- Minute 23 + 29, !- Value Until Time 23 + 24, !- Hour 24 + 0, !- Minute 24 + 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000068}, !- Handle + {00000000-0000-0000-0061-000000000056}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8203,7 +6128,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000069}, !- Handle + {00000000-0000-0000-0061-000000000057}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8212,7 +6137,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000070}, !- Handle + {00000000-0000-0000-0061-000000000058}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8221,7 +6146,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000071}, !- Handle + {00000000-0000-0000-0061-000000000059}, !- Handle wkdCHW Temp 1, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8299,7 +6224,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000072}, !- Handle + {00000000-0000-0000-0061-000000000060}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8377,7 +6302,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000073}, !- Handle + {00000000-0000-0000-0061-000000000061}, !- Handle wkdCW Temp 1, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8455,7 +6380,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000074}, !- Handle + {00000000-0000-0000-0061-000000000062}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8763,9 +6688,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0062-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000023}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000042}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8782,9 +6707,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0062-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000023}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000046}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8800,82 +6725,6 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0062-000000000015}, !- Handle - Schedule Rule 22, !- Name - {00000000-0000-0000-0063-000000000025}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0061-000000000047}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000016}, !- Handle - Schedule Rule 23, !- Name - {00000000-0000-0000-0063-000000000025}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0061-000000000037}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0063-000000000026}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0061-000000000038}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0063-000000000026}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0061-000000000039}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -8894,7 +6743,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000020}, !- Handle + {00000000-0000-0000-0062-000000000016}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -8913,7 +6762,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000021}, !- Handle + {00000000-0000-0000-0062-000000000017}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order @@ -8932,7 +6781,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000022}, !- Handle + {00000000-0000-0000-0062-000000000018}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -8951,7 +6800,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000023}, !- Handle + {00000000-0000-0000-0062-000000000019}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -8970,7 +6819,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000024}, !- Handle + {00000000-0000-0000-0062-000000000020}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -8989,7 +6838,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000025}, !- Handle + {00000000-0000-0000-0062-000000000021}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -9008,11 +6857,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000026}, !- Handle + {00000000-0000-0000-0062-000000000022}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000048}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9027,11 +6876,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000027}, !- Handle + {00000000-0000-0000-0062-000000000023}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000050}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9046,11 +6895,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000028}, !- Handle + {00000000-0000-0000-0062-000000000024}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000058}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000052}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9065,11 +6914,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000029}, !- Handle + {00000000-0000-0000-0062-000000000025}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000060}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9084,11 +6933,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000030}, !- Handle + {00000000-0000-0000-0062-000000000026}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000071}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000059}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -9103,11 +6952,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000031}, !- Handle + {00000000-0000-0000-0062-000000000027}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000073}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000061}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -9137,13 +6986,13 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000003}, !- Handle CHW Temp, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000038}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000004}, !- Handle CW Temp, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000042}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000039}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000005}, !- Handle @@ -9223,73 +7072,45 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000017}, !- Handle Schedule Ruleset 1, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000043}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000040}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000018}, !- Handle Schedule Ruleset 2, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000020}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000049}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000021}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000050}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000022}, !- Handle Supply Air Temp, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000051}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000023}, !- Handle + {00000000-0000-0000-0063-000000000021}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000052}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000024}, !- Handle + {00000000-0000-0000-0063-000000000022}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000053}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000025}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000062}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000063}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000064}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0061-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000026}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000065}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000066}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000067}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000027}, !- Handle + {00000000-0000-0000-0063-000000000023}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000068}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000069}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000070}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0061-000000000056}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000057}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000058}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0064-000000000001}, !- Handle @@ -9367,42 +7188,28 @@ OS:SetpointManager:Scheduled, Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0063-000000000019}, !- Schedule Name - {00000000-0000-0000-0049-000000000098}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000060}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0065-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0063-000000000003}, !- Schedule Name - {00000000-0000-0000-0049-000000000069}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000039}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0065-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0063-000000000004}, !- Schedule Name - {00000000-0000-0000-0049-000000000085}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000047}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0065-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000022}, !- Schedule Name - {00000000-0000-0000-0049-000000000168}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0065-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name - Temperature, !- Control Variable {00000000-0000-0000-0063-000000000020}, !- Schedule Name - {00000000-0000-0000-0049-000000000154}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0065-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0063-000000000021}, !- Schedule Name - {00000000-0000-0000-0049-000000000161}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000114}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0066-000000000001}, !- Handle @@ -9545,47 +7352,6 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0076-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0076-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -9625,60 +7391,19 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity -OS:Sizing:System, - {00000000-0000-0000-0076-000000000003}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - OS:Sizing:Zone, {00000000-0000-0000-0077-000000000001}, !- Handle {00000000-0000-0000-0089-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9704,16 +7429,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000002}, !- Handle {00000000-0000-0000-0089-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9739,16 +7464,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000003}, !- Handle {00000000-0000-0000-0089-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9774,16 +7499,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000004}, !- Handle {00000000-0000-0000-0089-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9809,16 +7534,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000005}, !- Handle {00000000-0000-0000-0089-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9879,16 +7604,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000007}, !- Handle {00000000-0000-0000-0089-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9914,16 +7639,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000008}, !- Handle {00000000-0000-0000-0089-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9984,16 +7709,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000010}, !- Handle {00000000-0000-0000-0089-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10089,16 +7814,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000013}, !- Handle {00000000-0000-0000-0089-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10194,16 +7919,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000016}, !- Handle {00000000-0000-0000-0089-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -14424,7 +12149,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0063-000000000023}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0063-000000000021}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 3.11340391204849, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -14434,8 +12159,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0015-000000000255}, !- Use Side Inlet Node Name - {00000000-0000-0000-0015-000000000256}, !- Use Side Outlet Node Name + {00000000-0000-0000-0015-000000000151}, !- Use Side Inlet Node Name + {00000000-0000-0000-0015-000000000152}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -14458,8 +12183,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000001}, !- Handle Core_bottom WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0015-000000000272}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000273}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000168}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000169}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14472,8 +12197,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000002}, !- Handle Core_mid WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0015-000000000276}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000277}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000172}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000173}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14486,8 +12211,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000003}, !- Handle Core_top WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0015-000000000280}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000281}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000176}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000177}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14500,8 +12225,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000284}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000285}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000180}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000181}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14514,8 +12239,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000288}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000289}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000184}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000185}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14528,8 +12253,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000292}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000293}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000188}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000189}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14542,8 +12267,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000296}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000297}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000192}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000193}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14556,8 +12281,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000300}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000301}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000196}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000197}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14570,8 +12295,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000304}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000305}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000200}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000201}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14584,8 +12309,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000308}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000309}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000204}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000205}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14598,8 +12323,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000312}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000313}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000208}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000209}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14612,8 +12337,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000316}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000317}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000212}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000213}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14626,8 +12351,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000320}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000321}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000216}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000217}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14640,8 +12365,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000324}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000325}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000220}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000221}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14654,8 +12379,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000328}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000329}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000224}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000225}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14949,102 +12674,32 @@ OS:ZoneHVAC:Baseboard:Convective:Electric, OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0101-000000000002}, !- Handle - Zone HVAC Baseboard Convective Electric 10, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000003}, !- Handle - Zone HVAC Baseboard Convective Electric 11, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000004}, !- Handle - Zone HVAC Baseboard Convective Electric 12, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000005}, !- Handle - Zone HVAC Baseboard Convective Electric 13, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000006}, !- Handle - Zone HVAC Baseboard Convective Electric 14, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000007}, !- Handle - Zone HVAC Baseboard Convective Electric 15, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000008}, !- Handle Zone HVAC Baseboard Convective Electric 2, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000009}, !- Handle + {00000000-0000-0000-0101-000000000003}, !- Handle Zone HVAC Baseboard Convective Electric 3, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000010}, !- Handle + {00000000-0000-0000-0101-000000000004}, !- Handle Zone HVAC Baseboard Convective Electric 4, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000011}, !- Handle + {00000000-0000-0000-0101-000000000005}, !- Handle Zone HVAC Baseboard Convective Electric 5, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000012}, !- Handle - Zone HVAC Baseboard Convective Electric 6, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000013}, !- Handle - Zone HVAC Baseboard Convective Electric 7, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000014}, !- Handle - Zone HVAC Baseboard Convective Electric 8, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0101-000000000015}, !- Handle - Zone HVAC Baseboard Convective Electric 9, !- Name - {00000000-0000-0000-0060-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name @@ -15068,12 +12723,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000009}, !- Zone Equipment 1 + {00000000-0000-0000-0101-000000000003}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15084,12 +12739,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000008}, !- Zone Equipment 1 + {00000000-0000-0000-0101-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15100,12 +12755,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000010}, !- Zone Equipment 1 + {00000000-0000-0000-0101-000000000004}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15116,12 +12771,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000011}, !- Zone Equipment 1 + {00000000-0000-0000-0101-000000000005}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15147,159 +12802,59 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000012}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index a21a7c8337..d539128f37 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -3727,41 +3727,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5b59cf23-8018-40b8-8389-17b5b84c33e6}<23.9 && {5b59cf23-8018-40b8-8389-17b5b84c33e6}>1.7, !- Program Line 1 - SET {0c3cddbf-296a-44e7-9992-c0c0f2105bdf} = 29.4, !- Program Line 2 - SET {8b5fa26d-f026-4b10-8dd9-b2c1b56f53c2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5b59cf23-8018-40b8-8389-17b5b84c33e6}<23.9 && {5b59cf23-8018-40b8-8389-17b5b84c33e6}>1.7, !- Program Line 4 - SET {0c3cddbf-296a-44e7-9992-c0c0f2105bdf} = 29.4, !- Program Line 5 - SET {8b5fa26d-f026-4b10-8dd9-b2c1b56f53c2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5b59cf23-8018-40b8-8389-17b5b84c33e6}<23.9 && {5b59cf23-8018-40b8-8389-17b5b84c33e6}>1.7, !- Program Line 7 - SET {0c3cddbf-296a-44e7-9992-c0c0f2105bdf} = 29.4, !- Program Line 8 - SET {8b5fa26d-f026-4b10-8dd9-b2c1b56f53c2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5b59cf23-8018-40b8-8389-17b5b84c33e6}<23.9 && {5b59cf23-8018-40b8-8389-17b5b84c33e6}>1.7, !- Program Line 10 - SET {0c3cddbf-296a-44e7-9992-c0c0f2105bdf} = 29.4, !- Program Line 11 - SET {8b5fa26d-f026-4b10-8dd9-b2c1b56f53c2} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {08821ec9-7138-4634-8d3b-3ddcc55e889d}<23.9 && {08821ec9-7138-4634-8d3b-3ddcc55e889d}>1.7, !- Program Line 1 + SET {c1879a9e-a1d4-445b-a73f-1d0a99b436e2} = 29.4, !- Program Line 2 + SET {af16cdde-58ab-4f83-8e2b-859adc87b565} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {08821ec9-7138-4634-8d3b-3ddcc55e889d}<23.9 && {08821ec9-7138-4634-8d3b-3ddcc55e889d}>1.7, !- Program Line 4 + SET {c1879a9e-a1d4-445b-a73f-1d0a99b436e2} = 29.4, !- Program Line 5 + SET {af16cdde-58ab-4f83-8e2b-859adc87b565} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {08821ec9-7138-4634-8d3b-3ddcc55e889d}<23.9 && {08821ec9-7138-4634-8d3b-3ddcc55e889d}>1.7, !- Program Line 7 + SET {c1879a9e-a1d4-445b-a73f-1d0a99b436e2} = 29.4, !- Program Line 8 + SET {af16cdde-58ab-4f83-8e2b-859adc87b565} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {08821ec9-7138-4634-8d3b-3ddcc55e889d}<23.9 && {08821ec9-7138-4634-8d3b-3ddcc55e889d}>1.7, !- Program Line 10 + SET {c1879a9e-a1d4-445b-a73f-1d0a99b436e2} = 29.4, !- Program Line 11 + SET {af16cdde-58ab-4f83-8e2b-859adc87b565} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0c3cddbf-296a-44e7-9992-c0c0f2105bdf} = NULL, !- Program Line 14 - SET {8b5fa26d-f026-4b10-8dd9-b2c1b56f53c2} = NULL, !- Program Line 15 + SET {c1879a9e-a1d4-445b-a73f-1d0a99b436e2} = NULL, !- Program Line 14 + SET {af16cdde-58ab-4f83-8e2b-859adc87b565} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {af87a68b-de2d-481e-b129-64eb235ef610}<23.9 && {af87a68b-de2d-481e-b129-64eb235ef610}>1.7, !- Program Line 1 - SET {7a197dbf-44d4-4d86-8203-b21e8bd36532} = 29.4, !- Program Line 2 - SET {297f26ac-8d24-4863-88e1-2aece569b263} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {af87a68b-de2d-481e-b129-64eb235ef610}<23.9 && {af87a68b-de2d-481e-b129-64eb235ef610}>1.7, !- Program Line 4 - SET {7a197dbf-44d4-4d86-8203-b21e8bd36532} = 29.4, !- Program Line 5 - SET {297f26ac-8d24-4863-88e1-2aece569b263} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {af87a68b-de2d-481e-b129-64eb235ef610}<23.9 && {af87a68b-de2d-481e-b129-64eb235ef610}>1.7, !- Program Line 7 - SET {7a197dbf-44d4-4d86-8203-b21e8bd36532} = 29.4, !- Program Line 8 - SET {297f26ac-8d24-4863-88e1-2aece569b263} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {af87a68b-de2d-481e-b129-64eb235ef610}<23.9 && {af87a68b-de2d-481e-b129-64eb235ef610}>1.7, !- Program Line 10 - SET {7a197dbf-44d4-4d86-8203-b21e8bd36532} = 29.4, !- Program Line 11 - SET {297f26ac-8d24-4863-88e1-2aece569b263} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {75fe2c7a-0d1d-47bc-8350-d7f0f7b67a72}<23.9 && {75fe2c7a-0d1d-47bc-8350-d7f0f7b67a72}>1.7, !- Program Line 1 + SET {ba36f50b-5e79-4fec-a326-3c73579dbef5} = 29.4, !- Program Line 2 + SET {56afd664-2573-4a24-ae23-083c3a3abc6e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {75fe2c7a-0d1d-47bc-8350-d7f0f7b67a72}<23.9 && {75fe2c7a-0d1d-47bc-8350-d7f0f7b67a72}>1.7, !- Program Line 4 + SET {ba36f50b-5e79-4fec-a326-3c73579dbef5} = 29.4, !- Program Line 5 + SET {56afd664-2573-4a24-ae23-083c3a3abc6e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {75fe2c7a-0d1d-47bc-8350-d7f0f7b67a72}<23.9 && {75fe2c7a-0d1d-47bc-8350-d7f0f7b67a72}>1.7, !- Program Line 7 + SET {ba36f50b-5e79-4fec-a326-3c73579dbef5} = 29.4, !- Program Line 8 + SET {56afd664-2573-4a24-ae23-083c3a3abc6e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {75fe2c7a-0d1d-47bc-8350-d7f0f7b67a72}<23.9 && {75fe2c7a-0d1d-47bc-8350-d7f0f7b67a72}>1.7, !- Program Line 10 + SET {ba36f50b-5e79-4fec-a326-3c73579dbef5} = 29.4, !- Program Line 11 + SET {56afd664-2573-4a24-ae23-083c3a3abc6e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7a197dbf-44d4-4d86-8203-b21e8bd36532} = NULL, !- Program Line 14 - SET {297f26ac-8d24-4863-88e1-2aece569b263} = NULL, !- Program Line 15 + SET {ba36f50b-5e79-4fec-a326-3c73579dbef5} = NULL, !- Program Line 14 + SET {56afd664-2573-4a24-ae23-083c3a3abc6e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 711628b5b5..7e3d0febcb 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -3797,41 +3797,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {951a3ef8-cfc2-4c80-b084-4174a69f4f23}<23.9 && {951a3ef8-cfc2-4c80-b084-4174a69f4f23}>1.7, !- Program Line 1 - SET {4a5febe8-ea5f-4331-9e56-abcba5c4ae9c} = 29.4, !- Program Line 2 - SET {e7ac3fc8-4b5b-4f79-9836-cdb64e556624} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {951a3ef8-cfc2-4c80-b084-4174a69f4f23}<23.9 && {951a3ef8-cfc2-4c80-b084-4174a69f4f23}>1.7, !- Program Line 4 - SET {4a5febe8-ea5f-4331-9e56-abcba5c4ae9c} = 29.4, !- Program Line 5 - SET {e7ac3fc8-4b5b-4f79-9836-cdb64e556624} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {951a3ef8-cfc2-4c80-b084-4174a69f4f23}<23.9 && {951a3ef8-cfc2-4c80-b084-4174a69f4f23}>1.7, !- Program Line 7 - SET {4a5febe8-ea5f-4331-9e56-abcba5c4ae9c} = 29.4, !- Program Line 8 - SET {e7ac3fc8-4b5b-4f79-9836-cdb64e556624} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {951a3ef8-cfc2-4c80-b084-4174a69f4f23}<23.9 && {951a3ef8-cfc2-4c80-b084-4174a69f4f23}>1.7, !- Program Line 10 - SET {4a5febe8-ea5f-4331-9e56-abcba5c4ae9c} = 29.4, !- Program Line 11 - SET {e7ac3fc8-4b5b-4f79-9836-cdb64e556624} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2f383ae8-81dc-488d-b1f1-93d0a9be8f71}<23.9 && {2f383ae8-81dc-488d-b1f1-93d0a9be8f71}>1.7, !- Program Line 1 + SET {99326cf6-edb5-4738-976f-7cce3100a26c} = 29.4, !- Program Line 2 + SET {98f178a0-5cd8-4e95-8481-37845a1f1a6a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2f383ae8-81dc-488d-b1f1-93d0a9be8f71}<23.9 && {2f383ae8-81dc-488d-b1f1-93d0a9be8f71}>1.7, !- Program Line 4 + SET {99326cf6-edb5-4738-976f-7cce3100a26c} = 29.4, !- Program Line 5 + SET {98f178a0-5cd8-4e95-8481-37845a1f1a6a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2f383ae8-81dc-488d-b1f1-93d0a9be8f71}<23.9 && {2f383ae8-81dc-488d-b1f1-93d0a9be8f71}>1.7, !- Program Line 7 + SET {99326cf6-edb5-4738-976f-7cce3100a26c} = 29.4, !- Program Line 8 + SET {98f178a0-5cd8-4e95-8481-37845a1f1a6a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2f383ae8-81dc-488d-b1f1-93d0a9be8f71}<23.9 && {2f383ae8-81dc-488d-b1f1-93d0a9be8f71}>1.7, !- Program Line 10 + SET {99326cf6-edb5-4738-976f-7cce3100a26c} = 29.4, !- Program Line 11 + SET {98f178a0-5cd8-4e95-8481-37845a1f1a6a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4a5febe8-ea5f-4331-9e56-abcba5c4ae9c} = NULL, !- Program Line 14 - SET {e7ac3fc8-4b5b-4f79-9836-cdb64e556624} = NULL, !- Program Line 15 + SET {99326cf6-edb5-4738-976f-7cce3100a26c} = NULL, !- Program Line 14 + SET {98f178a0-5cd8-4e95-8481-37845a1f1a6a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b3412a30-656d-4786-a7e6-6ed398bb5ff0}<23.9 && {b3412a30-656d-4786-a7e6-6ed398bb5ff0}>1.7, !- Program Line 1 - SET {6341d8a5-b177-4e80-bbc9-764be3412f3b} = 29.4, !- Program Line 2 - SET {7f48c026-bd90-4dba-b4d9-815ec4ed8275} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b3412a30-656d-4786-a7e6-6ed398bb5ff0}<23.9 && {b3412a30-656d-4786-a7e6-6ed398bb5ff0}>1.7, !- Program Line 4 - SET {6341d8a5-b177-4e80-bbc9-764be3412f3b} = 29.4, !- Program Line 5 - SET {7f48c026-bd90-4dba-b4d9-815ec4ed8275} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b3412a30-656d-4786-a7e6-6ed398bb5ff0}<23.9 && {b3412a30-656d-4786-a7e6-6ed398bb5ff0}>1.7, !- Program Line 7 - SET {6341d8a5-b177-4e80-bbc9-764be3412f3b} = 29.4, !- Program Line 8 - SET {7f48c026-bd90-4dba-b4d9-815ec4ed8275} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b3412a30-656d-4786-a7e6-6ed398bb5ff0}<23.9 && {b3412a30-656d-4786-a7e6-6ed398bb5ff0}>1.7, !- Program Line 10 - SET {6341d8a5-b177-4e80-bbc9-764be3412f3b} = 29.4, !- Program Line 11 - SET {7f48c026-bd90-4dba-b4d9-815ec4ed8275} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {813c2bde-0973-419b-b1c3-518ed66e1226}<23.9 && {813c2bde-0973-419b-b1c3-518ed66e1226}>1.7, !- Program Line 1 + SET {2b8eb57a-37a3-481d-b2e6-b825d0d52f39} = 29.4, !- Program Line 2 + SET {80375912-b15d-4275-9ea0-c9b997ae1b8e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {813c2bde-0973-419b-b1c3-518ed66e1226}<23.9 && {813c2bde-0973-419b-b1c3-518ed66e1226}>1.7, !- Program Line 4 + SET {2b8eb57a-37a3-481d-b2e6-b825d0d52f39} = 29.4, !- Program Line 5 + SET {80375912-b15d-4275-9ea0-c9b997ae1b8e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {813c2bde-0973-419b-b1c3-518ed66e1226}<23.9 && {813c2bde-0973-419b-b1c3-518ed66e1226}>1.7, !- Program Line 7 + SET {2b8eb57a-37a3-481d-b2e6-b825d0d52f39} = 29.4, !- Program Line 8 + SET {80375912-b15d-4275-9ea0-c9b997ae1b8e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {813c2bde-0973-419b-b1c3-518ed66e1226}<23.9 && {813c2bde-0973-419b-b1c3-518ed66e1226}>1.7, !- Program Line 10 + SET {2b8eb57a-37a3-481d-b2e6-b825d0d52f39} = 29.4, !- Program Line 11 + SET {80375912-b15d-4275-9ea0-c9b997ae1b8e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6341d8a5-b177-4e80-bbc9-764be3412f3b} = NULL, !- Program Line 14 - SET {7f48c026-bd90-4dba-b4d9-815ec4ed8275} = NULL, !- Program Line 15 + SET {2b8eb57a-37a3-481d-b2e6-b825d0d52f39} = NULL, !- Program Line 14 + SET {80375912-b15d-4275-9ea0-c9b997ae1b8e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm index 26b739a93b..aa445facea 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0065-000000000027}, !- Object Name + {00000000-0000-0000-0065-000000000023}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.123094119094475, !- Feature Value 1 @@ -16,94 +16,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0065-000000000025}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.123094119094475, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0065-000000000026}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.123094119094475, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0012-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0001-000000000003}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0065-000000000025}, !- Availability Schedule - {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000209}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000212}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000211}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000210}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0065-000000000026}, !- Availability Schedule - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000305}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000308}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000307}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000306}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0065-000000000027}, !- Availability Schedule - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0065-000000000023}, !- Availability Schedule + {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -131,28 +55,6 @@ OS:AirLoopHVAC:OutdoorAirSystem, {00000000-0000-0000-0017-000000000128}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000138}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000002}, !- Handle - Air Loop HVAC Outdoor Air System 2, !- Name - {00000000-0000-0000-0022-000000000002}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000230}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000223}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000224}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000234}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0022-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000326}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000319}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000320}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000330}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -163,26 +65,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000191}, !- Inlet Node Name 4 {00000000-0000-0000-0017-000000000205}; !- Inlet Node Name 5 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000002}, !- Handle - Air Loop HVAC Zone Mixer 2, !- Name - {00000000-0000-0000-0017-000000000214}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000245}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000259}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000273}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000287}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000301}; !- Inlet Node Name 5 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0017-000000000310}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000341}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000355}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000369}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000383}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000397}; !- Inlet Node Name 5 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -193,26 +75,6 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000192}, !- Outlet Node Name 4 {00000000-0000-0000-0017-000000000206}; !- Outlet Node Name 5 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000002}, !- Handle - Air Loop HVAC Zone Splitter 2, !- Name - {00000000-0000-0000-0017-000000000213}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000246}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000260}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000274}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000288}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000302}; !- Outlet Node Name 5 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0017-000000000309}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000342}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000356}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000370}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000384}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000398}; !- Outlet Node Name 5 - OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -223,7 +85,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000011}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000152}, !- Air Outlet Node Name @@ -236,132 +98,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000303}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000304}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000343}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000344}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000357}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000358}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000371}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000372}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000385}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000009}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000386}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000399}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000010}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000400}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000165}, !- Air Inlet Node Name @@ -370,7 +106,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000012}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000166}, !- Air Outlet Node Name @@ -382,7 +118,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000009}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000179}, !- Air Inlet Node Name @@ -391,7 +127,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000013}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000180}, !- Air Outlet Node Name @@ -403,7 +139,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000010}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000193}, !- Air Inlet Node Name @@ -412,7 +148,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000014}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000005}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000194}, !- Air Outlet Node Name @@ -424,7 +160,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000011}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000207}, !- Air Inlet Node Name @@ -433,7 +169,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000015}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000208}, !- Air Outlet Node Name @@ -444,90 +180,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000247}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000017}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000248}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000261}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000018}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000262}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000275}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000276}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000289}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000290}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -542,81 +194,43 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0050-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0050-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0050-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0050-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0050-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0050-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0050-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0050-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0050-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0050-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000003}, !- Handle Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000004}, !- Handle + {00000000-0000-0000-0008-000000000002}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000005}, !- Handle + {00000000-0000-0000-0008-000000000003}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000006}, !- Handle + {00000000-0000-0000-0008-000000000004}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000007}, !- Handle + {00000000-0000-0000-0008-000000000005}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000001}, !- Handle - Primary Boiler 1880kBtu/hr 0.83 Thermal Eff, !- Name + Primary Boiler 363kBtu/hr 0.83 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 550992.050051934, !- Nominal Capacity {W} + 106307.519374649, !- Nominal Capacity {W} 0.83, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} - 0.25, !- Minimum Part Load Ratio + , !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio {00000000-0000-0000-0017-000000000048}, !- Boiler Water Inlet Node Name {00000000-0000-0000-0017-000000000049}, !- Boiler Water Outlet Node Name 99, !- Water Outlet Upper Temperature Limit {C} - LeavingSetpointModulated, !- Boiler Flow Mode + ConstantFlow, !- Boiler Flow Mode 0, !- On Cycle Parasitic Electric Load {W} 0, !- Off Cycle Parasitic Fuel Load {W} 1, !- Sizing Factor @@ -624,10 +238,10 @@ OS:Boiler:HotWater, OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000002}, !- Handle - Secondary Boiler 0kBtu/hr 0.85 AFUE, !- Name + Secondary Boiler 363kBtu/hr 0.83 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 0.001, !- Nominal Capacity {W} - 0.85, !- Nominal Thermal Efficiency + 106307.519374649, !- Nominal Capacity {W} + 0.83, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} @@ -692,8 +306,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton, !- Name - 248661.151059467, !- Reference Capacity {W} + Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton, !- Name + 98998.1003686864, !- Reference Capacity {W} 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -736,9 +350,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0026-000000000007}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0026-000000000005}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -789,42 +403,6 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0014-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000220}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000221}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000231}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000228}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0014-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000316}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000317}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000327}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000324}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Heating Water 1, !- Name @@ -845,168 +423,6 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000002}, !- Handle - Coil Heating Water 10, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000264}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000265}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 11197.9591369629, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000003}, !- Handle - Coil Heating Water 11, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000278}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000279}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 6543.26219558716, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000004}, !- Handle - Coil Heating Water 12, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000292}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000293}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 12108.2193374634, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000005}, !- Handle - Coil Heating Water 13, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000312}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000313}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000325}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000322}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000006}, !- Handle - Coil Heating Water 14, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000332}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000333}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 24091.289806366, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000007}, !- Handle - Coil Heating Water 15, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000346}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000347}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 14241.6543960571, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000008}, !- Handle - Coil Heating Water 16, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000360}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000361}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 11677.5599956512, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000009}, !- Handle - Coil Heating Water 17, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000374}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000375}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 7499.4943857193, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000010}, !- Handle - Coil Heating Water 18, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000388}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000389}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 12827.5813579559, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000011}, !- Handle Coil Heating Water 2, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1016,7 +432,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 14499.383354187, !- Rated Capacity {W} + 26665.4019355774, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1024,7 +440,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000012}, !- Handle + {00000000-0000-0000-0015-000000000003}, !- Handle Coil Heating Water 3, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1034,7 +450,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 11646.1575508118, !- Rated Capacity {W} + 14999.2591381073, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1042,7 +458,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000013}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Handle Coil Heating Water 4, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1052,7 +468,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 10310.8687162399, !- Rated Capacity {W} + 12592.0353412628, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1060,7 +476,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000014}, !- Handle + {00000000-0000-0000-0015-000000000005}, !- Handle Coil Heating Water 5, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1070,7 +486,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 5860.14540195465, !- Rated Capacity {W} + 6863.41495513916, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1078,7 +494,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000015}, !- Handle + {00000000-0000-0000-0015-000000000006}, !- Handle Coil Heating Water 6, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1088,61 +504,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 11752.9098987579, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000016}, !- Handle - Coil Heating Water 7, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000216}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000217}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000229}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000226}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000017}, !- Handle - Coil Heating Water 8, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000236}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000237}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 20076.7271518707, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000018}, !- Handle - Coil Heating Water 9, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000250}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000251}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 13291.9927597046, !- Rated Capacity {W} + 13941.654253006, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1164,7 +526,7 @@ OS:Coil:Heating:Water:Baseboard, OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Water Baseboard 10, !- Name + Coil Heating Water Baseboard 2, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1172,12 +534,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000296}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000297}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000158}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000159}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Water Baseboard 11, !- Name + Coil Heating Water Baseboard 3, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1185,12 +547,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000336}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000337}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000172}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000173}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Heating Water Baseboard 12, !- Name + Coil Heating Water Baseboard 4, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1198,12 +560,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000350}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000351}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000186}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000187}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000005}, !- Handle - Coil Heating Water Baseboard 13, !- Name + Coil Heating Water Baseboard 5, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1211,152 +573,22 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000364}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000365}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000200}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000201}; !- Water Outlet Node Name -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000006}, !- Handle - Coil Heating Water Baseboard 14, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000378}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000379}; !- Water Outlet Node Name +OS:Connection, + {00000000-0000-0000-0017-000000000001}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000007}, !- Handle - Coil Heating Water Baseboard 15, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000392}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000393}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000008}, !- Handle - Coil Heating Water Baseboard 2, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000158}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000159}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000009}, !- Handle - Coil Heating Water Baseboard 3, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000172}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000173}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000010}, !- Handle - Coil Heating Water Baseboard 4, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000186}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000187}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000011}, !- Handle - Coil Heating Water Baseboard 5, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000200}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000201}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000012}, !- Handle - Coil Heating Water Baseboard 6, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000240}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000241}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000013}, !- Handle - Coil Heating Water Baseboard 7, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000254}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000255}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000014}, !- Handle - Coil Heating Water Baseboard 8, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000268}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000269}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000015}, !- Handle - Coil Heating Water Baseboard 9, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000282}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000283}; !- Water Outlet Node Name - -OS:Connection, - {00000000-0000-0000-0017-000000000001}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000002}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Connection, + {00000000-0000-0000-0017-000000000002}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000003}, !- Handle @@ -1474,35 +706,35 @@ OS:Connection, {00000000-0000-0000-0017-000000000019}, !- Handle {00000000-0000-0000-0092-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000025}, !- Target Object + {00000000-0000-0000-0051-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000020}, !- Handle {00000000-0000-0000-0092-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000035}, !- Target Object + {00000000-0000-0000-0051-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000021}, !- Handle {00000000-0000-0000-0092-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000027}, !- Target Object + {00000000-0000-0000-0051-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000022}, !- Handle {00000000-0000-0000-0092-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000029}, !- Target Object + {00000000-0000-0000-0051-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000023}, !- Handle {00000000-0000-0000-0092-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000017}, !- Target Object + {00000000-0000-0000-0051-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1516,14 +748,14 @@ OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle {00000000-0000-0000-0092-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000031}, !- Target Object + {00000000-0000-0000-0051-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle {00000000-0000-0000-0092-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000019}, !- Target Object + {00000000-0000-0000-0051-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1537,7 +769,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle {00000000-0000-0000-0092-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000033}, !- Target Object + {00000000-0000-0000-0051-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1558,7 +790,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle {00000000-0000-0000-0092-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000021}, !- Target Object + {00000000-0000-0000-0051-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1579,7 +811,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle {00000000-0000-0000-0092-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000023}, !- Target Object + {00000000-0000-0000-0051-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1600,19 +832,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle {00000000-0000-0000-0056-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0051-000000000162}, !- Target Object + {00000000-0000-0000-0051-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000208}, !- Target Object + {00000000-0000-0000-0051-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0051-000000000163}, !- Source Object + {00000000-0000-0000-0051-000000000081}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000003}, !- Target Object 15; !- Inlet Port @@ -1621,12 +853,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle {00000000-0000-0000-0056-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000160}, !- Target Object + {00000000-0000-0000-0051-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0051-000000000160}, !- Source Object + {00000000-0000-0000-0051-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -1635,26 +867,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000079}, !- Target Object + {00000000-0000-0000-0051-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000161}, !- Target Object + {00000000-0000-0000-0051-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0051-000000000161}, !- Source Object + {00000000-0000-0000-0051-000000000079}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0051-000000000162}, !- Source Object + {00000000-0000-0000-0051-000000000080}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0059-000000000001}, !- Target Object 2; !- Inlet Port @@ -1663,19 +895,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle {00000000-0000-0000-0059-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000214}, !- Target Object + {00000000-0000-0000-0051-000000000132}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle - {00000000-0000-0000-0051-000000000214}, !- Source Object + {00000000-0000-0000-0051-000000000132}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0051-000000000208}, !- Source Object + {00000000-0000-0000-0051-000000000126}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000001}, !- Target Object 11; !- Inlet Port @@ -1684,12 +916,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0009-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000209}, !- Target Object + {00000000-0000-0000-0051-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0051-000000000209}, !- Source Object + {00000000-0000-0000-0051-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -1698,12 +930,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000217}, !- Target Object + {00000000-0000-0000-0051-000000000135}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle - {00000000-0000-0000-0051-000000000217}, !- Source Object + {00000000-0000-0000-0051-000000000135}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000002}, !- Target Object 11; !- Inlet Port @@ -1712,12 +944,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle {00000000-0000-0000-0009-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000218}, !- Target Object + {00000000-0000-0000-0051-000000000136}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle - {00000000-0000-0000-0051-000000000218}, !- Source Object + {00000000-0000-0000-0051-000000000136}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -1726,12 +958,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0051-000000000193}, !- Target Object + {00000000-0000-0000-0051-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle - {00000000-0000-0000-0051-000000000193}, !- Source Object + {00000000-0000-0000-0051-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000001}, !- Target Object 2; !- Inlet Port @@ -1740,12 +972,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle {00000000-0000-0000-0055-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000194}, !- Target Object + {00000000-0000-0000-0051-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle - {00000000-0000-0000-0051-000000000194}, !- Source Object + {00000000-0000-0000-0051-000000000112}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1754,12 +986,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000196}, !- Target Object + {00000000-0000-0000-0051-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0051-000000000196}, !- Source Object + {00000000-0000-0000-0051-000000000114}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000003}, !- Target Object 2; !- Inlet Port @@ -1768,26 +1000,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle {00000000-0000-0000-0055-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000163}, !- Target Object + {00000000-0000-0000-0051-000000000081}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle {00000000-0000-0000-0056-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0051-000000000068}, !- Target Object + {00000000-0000-0000-0051-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000212}, !- Target Object + {00000000-0000-0000-0051-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle - {00000000-0000-0000-0051-000000000069}, !- Source Object + {00000000-0000-0000-0051-000000000039}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000001}, !- Target Object 15; !- Inlet Port @@ -1796,12 +1028,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle {00000000-0000-0000-0056-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000066}, !- Target Object + {00000000-0000-0000-0051-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle - {00000000-0000-0000-0051-000000000066}, !- Source Object + {00000000-0000-0000-0051-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1810,26 +1042,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000070}, !- Target Object + {00000000-0000-0000-0051-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000067}, !- Target Object + {00000000-0000-0000-0051-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0051-000000000067}, !- Source Object + {00000000-0000-0000-0051-000000000037}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle - {00000000-0000-0000-0051-000000000068}, !- Source Object + {00000000-0000-0000-0051-000000000038}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0059-000000000002}, !- Target Object 2; !- Inlet Port @@ -1838,19 +1070,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle {00000000-0000-0000-0059-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000215}, !- Target Object + {00000000-0000-0000-0051-000000000133}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle - {00000000-0000-0000-0051-000000000215}, !- Source Object + {00000000-0000-0000-0051-000000000133}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle - {00000000-0000-0000-0051-000000000212}, !- Source Object + {00000000-0000-0000-0051-000000000130}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -1859,12 +1091,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0051-000000000213}, !- Target Object + {00000000-0000-0000-0051-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle - {00000000-0000-0000-0051-000000000213}, !- Source Object + {00000000-0000-0000-0051-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -1873,12 +1105,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000221}, !- Target Object + {00000000-0000-0000-0051-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0051-000000000221}, !- Source Object + {00000000-0000-0000-0051-000000000139}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1887,12 +1119,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0051-000000000222}, !- Target Object + {00000000-0000-0000-0051-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle - {00000000-0000-0000-0051-000000000222}, !- Source Object + {00000000-0000-0000-0051-000000000140}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -1901,12 +1133,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0051-000000000197}, !- Target Object + {00000000-0000-0000-0051-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle - {00000000-0000-0000-0051-000000000197}, !- Source Object + {00000000-0000-0000-0051-000000000115}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000004}, !- Target Object 2; !- Inlet Port @@ -1915,12 +1147,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle {00000000-0000-0000-0055-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000198}, !- Target Object + {00000000-0000-0000-0051-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle - {00000000-0000-0000-0051-000000000198}, !- Source Object + {00000000-0000-0000-0051-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 5; !- Inlet Port @@ -1929,12 +1161,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000199}, !- Target Object + {00000000-0000-0000-0051-000000000117}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle - {00000000-0000-0000-0051-000000000199}, !- Source Object + {00000000-0000-0000-0051-000000000117}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000005}, !- Target Object 2; !- Inlet Port @@ -1943,26 +1175,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle {00000000-0000-0000-0055-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000069}, !- Target Object + {00000000-0000-0000-0051-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle {00000000-0000-0000-0056-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0051-000000000150}, !- Target Object + {00000000-0000-0000-0051-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000152}, !- Target Object + {00000000-0000-0000-0051-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle - {00000000-0000-0000-0051-000000000151}, !- Source Object + {00000000-0000-0000-0051-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000002}, !- Target Object 15; !- Inlet Port @@ -1971,12 +1203,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle {00000000-0000-0000-0056-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000148}, !- Target Object + {00000000-0000-0000-0051-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle - {00000000-0000-0000-0051-000000000148}, !- Source Object + {00000000-0000-0000-0051-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000006}, !- Target Object 2; !- Inlet Port @@ -1985,26 +1217,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000210}, !- Target Object + {00000000-0000-0000-0051-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle {00000000-0000-0000-0018-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000149}, !- Target Object + {00000000-0000-0000-0051-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0051-000000000149}, !- Source Object + {00000000-0000-0000-0051-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle - {00000000-0000-0000-0051-000000000150}, !- Source Object + {00000000-0000-0000-0051-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0059-000000000003}, !- Target Object 2; !- Inlet Port @@ -2013,19 +1245,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle {00000000-0000-0000-0059-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000216}, !- Target Object + {00000000-0000-0000-0051-000000000134}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle - {00000000-0000-0000-0051-000000000216}, !- Source Object + {00000000-0000-0000-0051-000000000134}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle - {00000000-0000-0000-0051-000000000152}, !- Source Object + {00000000-0000-0000-0051-000000000070}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0025-000000000001}, !- Target Object 2; !- Inlet Port @@ -2034,12 +1266,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle {00000000-0000-0000-0025-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000153}, !- Target Object + {00000000-0000-0000-0051-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle - {00000000-0000-0000-0051-000000000153}, !- Source Object + {00000000-0000-0000-0051-000000000071}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 3; !- Inlet Port @@ -2048,12 +1280,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000200}, !- Target Object + {00000000-0000-0000-0051-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0051-000000000200}, !- Source Object + {00000000-0000-0000-0051-000000000118}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000006}, !- Target Object 2; !- Inlet Port @@ -2062,12 +1294,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle {00000000-0000-0000-0055-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000201}, !- Target Object + {00000000-0000-0000-0051-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle - {00000000-0000-0000-0051-000000000201}, !- Source Object + {00000000-0000-0000-0051-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 4; !- Inlet Port @@ -2076,12 +1308,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle {00000000-0000-0000-0018-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000202}, !- Target Object + {00000000-0000-0000-0051-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle - {00000000-0000-0000-0051-000000000202}, !- Source Object + {00000000-0000-0000-0051-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000007}, !- Target Object 2; !- Inlet Port @@ -2090,12 +1322,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle {00000000-0000-0000-0055-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000151}, !- Target Object + {00000000-0000-0000-0051-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle - {00000000-0000-0000-0051-000000000210}, !- Source Object + {00000000-0000-0000-0051-000000000128}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -2104,12 +1336,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0051-000000000211}, !- Target Object + {00000000-0000-0000-0051-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle - {00000000-0000-0000-0051-000000000211}, !- Source Object + {00000000-0000-0000-0051-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 3; !- Inlet Port @@ -2118,12 +1350,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000219}, !- Target Object + {00000000-0000-0000-0051-000000000137}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle - {00000000-0000-0000-0051-000000000219}, !- Source Object + {00000000-0000-0000-0051-000000000137}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -2132,47 +1364,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0051-000000000220}, !- Target Object + {00000000-0000-0000-0051-000000000138}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle - {00000000-0000-0000-0051-000000000220}, !- Source Object + {00000000-0000-0000-0051-000000000138}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object + {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0051-000000000245}, !- Target Object + {00000000-0000-0000-0051-000000000147}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle - {00000000-0000-0000-0051-000000000246}, !- Source Object + {00000000-0000-0000-0051-000000000148}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object + {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000240}, !- Target Object + {00000000-0000-0000-0051-000000000142}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle - {00000000-0000-0000-0051-000000000241}, !- Source Object + {00000000-0000-0000-0051-000000000143}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0051-000000000240}, !- Source Object + {00000000-0000-0000-0051-000000000142}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -2181,12 +1413,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000241}, !- Target Object + {00000000-0000-0000-0051-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0051-000000000079}, !- Source Object + {00000000-0000-0000-0051-000000000043}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 5; !- Inlet Port @@ -2195,19 +1427,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000122}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000081}, !- Target Object + {00000000-0000-0000-0051-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0051-000000000081}, !- Source Object + {00000000-0000-0000-0051-000000000045}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0051-000000000070}, !- Source Object + {00000000-0000-0000-0051-000000000040}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 10; !- Inlet Port @@ -2216,19 +1448,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000125}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000072}, !- Target Object + {00000000-0000-0000-0051-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0051-000000000072}, !- Source Object + {00000000-0000-0000-0051-000000000042}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000127}, !- Handle - {00000000-0000-0000-0051-000000000243}, !- Source Object + {00000000-0000-0000-0051-000000000145}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port @@ -2237,40 +1469,40 @@ OS:Connection, {00000000-0000-0000-0017-000000000128}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0051-000000000244}, !- Target Object + {00000000-0000-0000-0051-000000000146}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000129}, !- Handle - {00000000-0000-0000-0041-000000000006}, !- Source Object + {00000000-0000-0000-0041-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000246}, !- Target Object + {00000000-0000-0000-0051-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000130}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0051-000000000080}, !- Target Object + {00000000-0000-0000-0051-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0051-000000000080}, !- Source Object + {00000000-0000-0000-0051-000000000044}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000006}, !- Target Object + {00000000-0000-0000-0041-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000132}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0051-000000000071}, !- Target Object + {00000000-0000-0000-0051-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0051-000000000071}, !- Source Object + {00000000-0000-0000-0051-000000000041}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 7; !- Inlet Port @@ -2279,33 +1511,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000134}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0051-000000000242}, !- Target Object + {00000000-0000-0000-0051-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0051-000000000242}, !- Source Object + {00000000-0000-0000-0051-000000000144}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000136}, !- Handle - {00000000-0000-0000-0051-000000000245}, !- Source Object + {00000000-0000-0000-0051-000000000147}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000003}, !- Target Object + {00000000-0000-0000-0041-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000137}, !- Handle - {00000000-0000-0000-0041-000000000003}, !- Source Object + {00000000-0000-0000-0041-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000225}, !- Target Object + {00000000-0000-0000-0051-000000000141}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000138}, !- Handle - {00000000-0000-0000-0051-000000000225}, !- Source Object + {00000000-0000-0000-0051-000000000141}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -2314,26 +1546,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000139}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000101}, !- Target Object + {00000000-0000-0000-0051-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0051-000000000101}, !- Source Object + {00000000-0000-0000-0051-000000000046}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000011}, !- Target Object + {00000000-0000-0000-0015-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000141}, !- Handle - {00000000-0000-0000-0015-000000000011}, !- Source Object + {00000000-0000-0000-0015-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000102}, !- Target Object + {00000000-0000-0000-0051-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000142}, !- Handle - {00000000-0000-0000-0051-000000000102}, !- Source Object + {00000000-0000-0000-0051-000000000047}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 4; !- Inlet Port @@ -2342,12 +1574,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000143}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0051-000000000118}, !- Target Object + {00000000-0000-0000-0051-000000000056}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000144}, !- Handle - {00000000-0000-0000-0051-000000000118}, !- Source Object + {00000000-0000-0000-0051-000000000056}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 9; !- Inlet Port @@ -2356,19 +1588,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000145}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000119}, !- Target Object + {00000000-0000-0000-0051-000000000057}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000146}, !- Handle - {00000000-0000-0000-0051-000000000119}, !- Source Object + {00000000-0000-0000-0051-000000000057}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000147}, !- Handle - {00000000-0000-0000-0051-000000000037}, !- Source Object + {00000000-0000-0000-0051-000000000027}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000016}, !- Target Object 2; !- Inlet Port @@ -2391,12 +1623,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000150}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000036}, !- Target Object + {00000000-0000-0000-0051-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000151}, !- Handle - {00000000-0000-0000-0051-000000000036}, !- Source Object + {00000000-0000-0000-0051-000000000026}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -2405,33 +1637,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000152}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000037}, !- Target Object + {00000000-0000-0000-0051-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000153}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000103}, !- Target Object + {00000000-0000-0000-0051-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0051-000000000103}, !- Source Object + {00000000-0000-0000-0051-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000012}, !- Target Object + {00000000-0000-0000-0015-000000000003}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000155}, !- Handle - {00000000-0000-0000-0015-000000000012}, !- Source Object + {00000000-0000-0000-0015-000000000003}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000104}, !- Target Object + {00000000-0000-0000-0051-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0051-000000000104}, !- Source Object + {00000000-0000-0000-0051-000000000049}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 6; !- Inlet Port @@ -2440,33 +1672,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000157}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0051-000000000132}, !- Target Object + {00000000-0000-0000-0051-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0051-000000000132}, !- Source Object + {00000000-0000-0000-0051-000000000058}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000008}, !- Target Object + {00000000-0000-0000-0016-000000000002}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0016-000000000008}, !- Source Object + {00000000-0000-0000-0016-000000000002}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000133}, !- Target Object + {00000000-0000-0000-0051-000000000059}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000160}, !- Handle - {00000000-0000-0000-0051-000000000133}, !- Source Object + {00000000-0000-0000-0051-000000000059}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000161}, !- Handle - {00000000-0000-0000-0051-000000000051}, !- Source Object + {00000000-0000-0000-0051-000000000029}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000040}, !- Target Object 2; !- Inlet Port @@ -2489,47 +1721,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000164}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000050}, !- Target Object + {00000000-0000-0000-0051-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000165}, !- Handle - {00000000-0000-0000-0051-000000000050}, !- Source Object + {00000000-0000-0000-0051-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000008}, !- Target Object + {00000000-0000-0000-0006-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0006-000000000008}, !- Source Object + {00000000-0000-0000-0006-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000051}, !- Target Object + {00000000-0000-0000-0051-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000167}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0051-000000000105}, !- Target Object + {00000000-0000-0000-0051-000000000050}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0051-000000000105}, !- Source Object + {00000000-0000-0000-0051-000000000050}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000013}, !- Target Object + {00000000-0000-0000-0015-000000000004}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000169}, !- Handle - {00000000-0000-0000-0015-000000000013}, !- Source Object + {00000000-0000-0000-0015-000000000004}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000106}, !- Target Object + {00000000-0000-0000-0051-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0051-000000000106}, !- Source Object + {00000000-0000-0000-0051-000000000051}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 8; !- Inlet Port @@ -2538,33 +1770,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000171}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0051-000000000134}, !- Target Object + {00000000-0000-0000-0051-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0051-000000000134}, !- Source Object + {00000000-0000-0000-0051-000000000060}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000009}, !- Target Object + {00000000-0000-0000-0016-000000000003}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0016-000000000009}, !- Source Object + {00000000-0000-0000-0016-000000000003}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000135}, !- Target Object + {00000000-0000-0000-0051-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000174}, !- Handle - {00000000-0000-0000-0051-000000000135}, !- Source Object + {00000000-0000-0000-0051-000000000061}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000175}, !- Handle - {00000000-0000-0000-0051-000000000053}, !- Source Object + {00000000-0000-0000-0051-000000000031}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000031}, !- Target Object 2; !- Inlet Port @@ -2587,47 +1819,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000178}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0051-000000000052}, !- Target Object + {00000000-0000-0000-0051-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000179}, !- Handle - {00000000-0000-0000-0051-000000000052}, !- Source Object + {00000000-0000-0000-0051-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000009}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0006-000000000009}, !- Source Object + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000053}, !- Target Object + {00000000-0000-0000-0051-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000181}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000107}, !- Target Object + {00000000-0000-0000-0051-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0051-000000000107}, !- Source Object + {00000000-0000-0000-0051-000000000052}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000014}, !- Target Object + {00000000-0000-0000-0015-000000000005}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000183}, !- Handle - {00000000-0000-0000-0015-000000000014}, !- Source Object + {00000000-0000-0000-0015-000000000005}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000108}, !- Target Object + {00000000-0000-0000-0051-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0051-000000000108}, !- Source Object + {00000000-0000-0000-0051-000000000053}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 10; !- Inlet Port @@ -2636,33 +1868,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000185}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000136}, !- Target Object + {00000000-0000-0000-0051-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0051-000000000136}, !- Source Object + {00000000-0000-0000-0051-000000000062}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000010}, !- Target Object + {00000000-0000-0000-0016-000000000004}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0016-000000000010}, !- Source Object + {00000000-0000-0000-0016-000000000004}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000137}, !- Target Object + {00000000-0000-0000-0051-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000188}, !- Handle - {00000000-0000-0000-0051-000000000137}, !- Source Object + {00000000-0000-0000-0051-000000000063}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000189}, !- Handle - {00000000-0000-0000-0051-000000000055}, !- Source Object + {00000000-0000-0000-0051-000000000033}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000049}, !- Target Object 2; !- Inlet Port @@ -2685,47 +1917,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000192}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000054}, !- Target Object + {00000000-0000-0000-0051-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000193}, !- Handle - {00000000-0000-0000-0051-000000000054}, !- Source Object + {00000000-0000-0000-0051-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000010}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0006-000000000010}, !- Source Object + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000055}, !- Target Object + {00000000-0000-0000-0051-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000195}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000109}, !- Target Object + {00000000-0000-0000-0051-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0051-000000000109}, !- Source Object + {00000000-0000-0000-0051-000000000054}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000015}, !- Target Object + {00000000-0000-0000-0015-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000197}, !- Handle - {00000000-0000-0000-0015-000000000015}, !- Source Object + {00000000-0000-0000-0015-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000110}, !- Target Object + {00000000-0000-0000-0051-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0051-000000000110}, !- Source Object + {00000000-0000-0000-0051-000000000055}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 12; !- Inlet Port @@ -2734,33 +1966,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000199}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0051-000000000138}, !- Target Object + {00000000-0000-0000-0051-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0051-000000000138}, !- Source Object + {00000000-0000-0000-0051-000000000064}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000011}, !- Target Object + {00000000-0000-0000-0016-000000000005}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0016-000000000011}, !- Source Object + {00000000-0000-0000-0016-000000000005}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000139}, !- Target Object + {00000000-0000-0000-0051-000000000065}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000202}, !- Handle - {00000000-0000-0000-0051-000000000139}, !- Source Object + {00000000-0000-0000-0051-000000000065}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000203}, !- Handle - {00000000-0000-0000-0051-000000000057}, !- Source Object + {00000000-0000-0000-0051-000000000035}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000052}, !- Target Object 2; !- Inlet Port @@ -2783,1965 +2015,621 @@ OS:Connection, {00000000-0000-0000-0017-000000000206}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0051-000000000056}, !- Target Object + {00000000-0000-0000-0051-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000207}, !- Handle - {00000000-0000-0000-0051-000000000056}, !- Source Object + {00000000-0000-0000-0051-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000011}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000208}, !- Handle - {00000000-0000-0000-0006-000000000011}, !- Source Object + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000057}, !- Target Object + {00000000-0000-0000-0051-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0051-000000000231}, !- Target Object + {00000000-0000-0000-0056-000000000004}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0051-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000210}, !- Handle - {00000000-0000-0000-0051-000000000232}, !- Source Object + {00000000-0000-0000-0019-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0051-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0051-000000000226}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0051-000000000086}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000004}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000212}, !- Handle - {00000000-0000-0000-0051-000000000227}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0056-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0051-000000000083}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0051-000000000226}, !- Source Object + {00000000-0000-0000-0051-000000000083}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000002}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0004-000000000002}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000227}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000215}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0051-000000000111}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0051-000000000084}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000004}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0051-000000000111}, !- Source Object + {00000000-0000-0000-0051-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000016}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0058-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000217}, !- Handle - {00000000-0000-0000-0015-000000000016}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000113}, !- Target Object + {00000000-0000-0000-0058-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000218}, !- Handle - {00000000-0000-0000-0051-000000000113}, !- Source Object + {00000000-0000-0000-0051-000000000082}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0019-000000000007}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000219}, !- Handle - {00000000-0000-0000-0019-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0051-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0051-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000001}, !- Target Object + 31; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000220}, !- Handle - {00000000-0000-0000-0051-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0096-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0051-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0014-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0051-000000000075}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0051-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000007}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000222}, !- Handle - {00000000-0000-0000-0051-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000004}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0019-000000000007}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0051-000000000121}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0051-000000000229}, !- Source Object + {00000000-0000-0000-0051-000000000121}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0055-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0051-000000000230}, !- Target Object + {00000000-0000-0000-0055-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000225}, !- Handle - {00000000-0000-0000-0041-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0051-000000000232}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0051-000000000122}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000007}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0015-000000000016}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0051-000000000112}, !- Target Object + {00000000-0000-0000-0051-000000000123}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000227}, !- Handle - {00000000-0000-0000-0051-000000000112}, !- Source Object + {00000000-0000-0000-0055-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000004}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0051-000000000124}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0014-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0051-000000000074}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0051-000000000124}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000229}, !- Handle - {00000000-0000-0000-0051-000000000074}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000016}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0018-000000000007}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000125}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000230}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0051-000000000228}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0051-000000000125}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000010}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0051-000000000228}, !- Source Object + {00000000-0000-0000-0055-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0051-000000000086}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000232}, !- Handle - {00000000-0000-0000-0051-000000000231}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000001}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000113}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000233}, !- Handle - {00000000-0000-0000-0041-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0051-000000000223}, !- Target Object + {00000000-0000-0000-0051-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0051-000000000223}, !- Source Object + {00000000-0000-0000-0055-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0051-000000000084}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000235}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0051-000000000114}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0051-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0051-000000000114}, !- Source Object + {00000000-0000-0000-0051-000000000072}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000017}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0098-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000237}, !- Handle - {00000000-0000-0000-0015-000000000017}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000115}, !- Target Object + {00000000-0000-0000-0098-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000073}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0051-000000000115}, !- Source Object + {00000000-0000-0000-0051-000000000073}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000239}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0051-000000000140}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0051-000000000074}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0051-000000000140}, !- Source Object + {00000000-0000-0000-0051-000000000074}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000012}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0098-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000241}, !- Handle - {00000000-0000-0000-0016-000000000012}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000141}, !- Target Object + {00000000-0000-0000-0098-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0051-000000000141}, !- Source Object + {00000000-0000-0000-0051-000000000075}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000243}, !- Handle - {00000000-0000-0000-0051-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000001}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0057-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000024}, !- Target Object + {00000000-0000-0000-0051-000000000076}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000245}, !- Handle - {00000000-0000-0000-0051-000000000024}, !- Source Object + {00000000-0000-0000-0098-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0051-000000000077}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object + {00000000-0000-0000-0051-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000058}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000247}, !- Handle - {00000000-0000-0000-0051-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000012}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000008}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0051-000000000087}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0006-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000059}, !- Target Object + {00000000-0000-0000-0051-000000000087}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000249}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0051-000000000116}, !- Target Object + {00000000-0000-0000-0098-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0051-000000000116}, !- Source Object + {00000000-0000-0000-0051-000000000088}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000018}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000251}, !- Handle - {00000000-0000-0000-0015-000000000018}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000117}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0051-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0051-000000000117}, !- Source Object + {00000000-0000-0000-0051-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0098-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000253}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0051-000000000142}, !- Target Object + {00000000-0000-0000-0098-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0051-000000000142}, !- Source Object + {00000000-0000-0000-0051-000000000090}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000013}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000255}, !- Handle - {00000000-0000-0000-0016-000000000013}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000143}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0051-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0051-000000000143}, !- Source Object + {00000000-0000-0000-0051-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0098-000000000006}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000257}, !- Handle - {00000000-0000-0000-0051-000000000061}, !- Source Object + {00000000-0000-0000-0098-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000037}, !- Target Object + {00000000-0000-0000-0051-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0057-000000000039}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000020}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0051-000000000092}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000259}, !- Handle - {00000000-0000-0000-0051-000000000020}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0019-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000093}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000260}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0051-000000000060}, !- Target Object + {00000000-0000-0000-0051-000000000093}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000261}, !- Handle - {00000000-0000-0000-0051-000000000060}, !- Source Object + {00000000-0000-0000-0098-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000013}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0051-000000000094}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000262}, !- Handle - {00000000-0000-0000-0006-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000061}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0051-000000000094}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000263}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0051-000000000082}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0051-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000264}, !- Handle - {00000000-0000-0000-0051-000000000082}, !- Source Object + {00000000-0000-0000-0051-000000000095}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0098-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000265}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000083}, !- Target Object + {00000000-0000-0000-0098-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000266}, !- Handle - {00000000-0000-0000-0051-000000000083}, !- Source Object + {00000000-0000-0000-0051-000000000096}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 19; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000267}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0051-000000000144}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000268}, !- Handle - {00000000-0000-0000-0051-000000000144}, !- Source Object + {00000000-0000-0000-0051-000000000097}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000014}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0098-000000000009}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000269}, !- Handle - {00000000-0000-0000-0016-000000000014}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000145}, !- Target Object + {00000000-0000-0000-0098-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000270}, !- Handle - {00000000-0000-0000-0051-000000000145}, !- Source Object + {00000000-0000-0000-0051-000000000098}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 20; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000271}, !- Handle - {00000000-0000-0000-0051-000000000063}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000046}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0051-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000272}, !- Handle - {00000000-0000-0000-0057-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000022}, !- Target Object + {00000000-0000-0000-0051-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000273}, !- Handle - {00000000-0000-0000-0051-000000000022}, !- Source Object + {00000000-0000-0000-0098-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0051-000000000100}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000274}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0051-000000000062}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0051-000000000100}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000275}, !- Handle - {00000000-0000-0000-0051-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000014}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000008}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0051-000000000101}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000276}, !- Handle - {00000000-0000-0000-0006-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000063}, !- Target Object + {00000000-0000-0000-0051-000000000101}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000277}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0051-000000000084}, !- Target Object + {00000000-0000-0000-0098-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000278}, !- Handle - {00000000-0000-0000-0051-000000000084}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000279}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000085}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000280}, !- Handle - {00000000-0000-0000-0051-000000000085}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000281}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0051-000000000146}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000282}, !- Handle - {00000000-0000-0000-0051-000000000146}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000015}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000283}, !- Handle - {00000000-0000-0000-0016-000000000015}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000147}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000284}, !- Handle - {00000000-0000-0000-0051-000000000147}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 22; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000285}, !- Handle - {00000000-0000-0000-0051-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000286}, !- Handle - {00000000-0000-0000-0057-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000287}, !- Handle - {00000000-0000-0000-0051-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000288}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000289}, !- Handle - {00000000-0000-0000-0051-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000015}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000290}, !- Handle - {00000000-0000-0000-0006-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000291}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 23, !- Outlet Port - {00000000-0000-0000-0051-000000000086}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000292}, !- Handle - {00000000-0000-0000-0051-000000000086}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000293}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000087}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000294}, !- Handle - {00000000-0000-0000-0051-000000000087}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 23; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000295}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 24, !- Outlet Port - {00000000-0000-0000-0051-000000000120}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000296}, !- Handle - {00000000-0000-0000-0051-000000000120}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000297}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000121}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000298}, !- Handle - {00000000-0000-0000-0051-000000000121}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 24; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000299}, !- Handle - {00000000-0000-0000-0051-000000000039}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000300}, !- Handle - {00000000-0000-0000-0057-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000301}, !- Handle - {00000000-0000-0000-0051-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000302}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0051-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000303}, !- Handle - {00000000-0000-0000-0051-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000304}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000039}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000305}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0051-000000000238}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000306}, !- Handle - {00000000-0000-0000-0051-000000000239}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000307}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0051-000000000233}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000308}, !- Handle - {00000000-0000-0000-0051-000000000234}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000309}, !- Handle - {00000000-0000-0000-0051-000000000233}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000310}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000234}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000311}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 25, !- Outlet Port - {00000000-0000-0000-0051-000000000088}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000312}, !- Handle - {00000000-0000-0000-0051-000000000088}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000313}, !- Handle - {00000000-0000-0000-0015-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000090}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000314}, !- Handle - {00000000-0000-0000-0051-000000000090}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 25; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000315}, !- Handle - {00000000-0000-0000-0019-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0051-000000000076}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000316}, !- Handle - {00000000-0000-0000-0051-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000003}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000317}, !- Handle - {00000000-0000-0000-0014-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0051-000000000078}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000318}, !- Handle - {00000000-0000-0000-0051-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000319}, !- Handle - {00000000-0000-0000-0051-000000000236}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000320}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0051-000000000237}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000321}, !- Handle - {00000000-0000-0000-0041-000000000005}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0051-000000000239}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000322}, !- Handle - {00000000-0000-0000-0015-000000000005}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0051-000000000089}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000323}, !- Handle - {00000000-0000-0000-0051-000000000089}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000005}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000324}, !- Handle - {00000000-0000-0000-0014-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0051-000000000077}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000325}, !- Handle - {00000000-0000-0000-0051-000000000077}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000005}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000326}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0051-000000000235}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000327}, !- Handle - {00000000-0000-0000-0051-000000000235}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000328}, !- Handle - {00000000-0000-0000-0051-000000000238}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000002}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000329}, !- Handle - {00000000-0000-0000-0041-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0051-000000000224}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000330}, !- Handle - {00000000-0000-0000-0051-000000000224}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000331}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 26, !- Outlet Port - {00000000-0000-0000-0051-000000000091}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000332}, !- Handle - {00000000-0000-0000-0051-000000000091}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000006}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000333}, !- Handle - {00000000-0000-0000-0015-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000092}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000334}, !- Handle - {00000000-0000-0000-0051-000000000092}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 26; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000335}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 27, !- Outlet Port - {00000000-0000-0000-0051-000000000122}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000336}, !- Handle - {00000000-0000-0000-0051-000000000122}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000337}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000123}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000338}, !- Handle - {00000000-0000-0000-0051-000000000123}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 27; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000339}, !- Handle - {00000000-0000-0000-0051-000000000041}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000340}, !- Handle - {00000000-0000-0000-0057-000000000012}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000341}, !- Handle - {00000000-0000-0000-0051-000000000028}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000342}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000343}, !- Handle - {00000000-0000-0000-0051-000000000040}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000344}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000041}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000345}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 28, !- Outlet Port - {00000000-0000-0000-0051-000000000093}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000346}, !- Handle - {00000000-0000-0000-0051-000000000093}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000007}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000347}, !- Handle - {00000000-0000-0000-0015-000000000007}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000094}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000348}, !- Handle - {00000000-0000-0000-0051-000000000094}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 28; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000349}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 29, !- Outlet Port - {00000000-0000-0000-0051-000000000124}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000350}, !- Handle - {00000000-0000-0000-0051-000000000124}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000351}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000125}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000352}, !- Handle - {00000000-0000-0000-0051-000000000125}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 29; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000353}, !- Handle - {00000000-0000-0000-0051-000000000043}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000354}, !- Handle - {00000000-0000-0000-0057-000000000006}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000355}, !- Handle - {00000000-0000-0000-0051-000000000034}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000356}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0051-000000000042}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000357}, !- Handle - {00000000-0000-0000-0051-000000000042}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000358}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000043}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000359}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 30, !- Outlet Port - {00000000-0000-0000-0051-000000000095}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000360}, !- Handle - {00000000-0000-0000-0051-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000361}, !- Handle - {00000000-0000-0000-0015-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000096}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000362}, !- Handle - {00000000-0000-0000-0051-000000000096}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 30; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000363}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 31, !- Outlet Port - {00000000-0000-0000-0051-000000000126}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000364}, !- Handle - {00000000-0000-0000-0051-000000000126}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000005}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000365}, !- Handle - {00000000-0000-0000-0016-000000000005}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000127}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000366}, !- Handle - {00000000-0000-0000-0051-000000000127}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000367}, !- Handle - {00000000-0000-0000-0051-000000000045}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000368}, !- Handle - {00000000-0000-0000-0057-000000000009}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000026}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000369}, !- Handle - {00000000-0000-0000-0051-000000000026}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000370}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0051-000000000044}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000371}, !- Handle - {00000000-0000-0000-0051-000000000044}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000372}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000045}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000373}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0051-000000000097}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000374}, !- Handle - {00000000-0000-0000-0051-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000009}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000375}, !- Handle - {00000000-0000-0000-0015-000000000009}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000098}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000376}, !- Handle - {00000000-0000-0000-0051-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 32; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000377}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 33, !- Outlet Port - {00000000-0000-0000-0051-000000000128}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000378}, !- Handle - {00000000-0000-0000-0051-000000000128}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000006}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000379}, !- Handle - {00000000-0000-0000-0016-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000129}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000380}, !- Handle - {00000000-0000-0000-0051-000000000129}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 33; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000381}, !- Handle - {00000000-0000-0000-0051-000000000047}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000019}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000382}, !- Handle - {00000000-0000-0000-0057-000000000021}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000030}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000383}, !- Handle - {00000000-0000-0000-0051-000000000030}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000384}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000385}, !- Handle - {00000000-0000-0000-0051-000000000046}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000386}, !- Handle - {00000000-0000-0000-0006-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000047}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000387}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 34, !- Outlet Port - {00000000-0000-0000-0051-000000000099}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000388}, !- Handle - {00000000-0000-0000-0051-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000010}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000389}, !- Handle - {00000000-0000-0000-0015-000000000010}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000100}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000390}, !- Handle - {00000000-0000-0000-0051-000000000100}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 34; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000391}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 35, !- Outlet Port - {00000000-0000-0000-0051-000000000130}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000392}, !- Handle - {00000000-0000-0000-0051-000000000130}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000007}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000393}, !- Handle - {00000000-0000-0000-0016-000000000007}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000131}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000394}, !- Handle - {00000000-0000-0000-0051-000000000131}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 35; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000395}, !- Handle - {00000000-0000-0000-0051-000000000049}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000396}, !- Handle - {00000000-0000-0000-0057-000000000030}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000032}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000397}, !- Handle - {00000000-0000-0000-0051-000000000032}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000398}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0051-000000000048}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000399}, !- Handle - {00000000-0000-0000-0051-000000000048}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000400}, !- Handle - {00000000-0000-0000-0006-000000000007}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000401}, !- Handle - {00000000-0000-0000-0056-000000000004}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0051-000000000167}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000402}, !- Handle - {00000000-0000-0000-0019-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000403}, !- Handle - {00000000-0000-0000-0051-000000000168}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000004}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000404}, !- Handle - {00000000-0000-0000-0056-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0051-000000000165}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000405}, !- Handle - {00000000-0000-0000-0051-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000406}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000205}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000407}, !- Handle - {00000000-0000-0000-0051-000000000166}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000004}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000408}, !- Handle - {00000000-0000-0000-0051-000000000167}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000409}, !- Handle - {00000000-0000-0000-0058-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000410}, !- Handle - {00000000-0000-0000-0051-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000411}, !- Handle - {00000000-0000-0000-0051-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000001}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000412}, !- Handle - {00000000-0000-0000-0096-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0051-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000413}, !- Handle - {00000000-0000-0000-0051-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000414}, !- Handle - {00000000-0000-0000-0019-000000000007}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0051-000000000203}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000415}, !- Handle - {00000000-0000-0000-0051-000000000203}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000416}, !- Handle - {00000000-0000-0000-0055-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000204}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000417}, !- Handle - {00000000-0000-0000-0051-000000000204}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000007}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000418}, !- Handle - {00000000-0000-0000-0051-000000000205}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000419}, !- Handle - {00000000-0000-0000-0055-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000206}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000420}, !- Handle - {00000000-0000-0000-0051-000000000206}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000421}, !- Handle - {00000000-0000-0000-0018-000000000007}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000207}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000422}, !- Handle - {00000000-0000-0000-0051-000000000207}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000423}, !- Handle - {00000000-0000-0000-0055-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000168}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000424}, !- Handle - {00000000-0000-0000-0018-000000000008}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0051-000000000195}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000425}, !- Handle - {00000000-0000-0000-0051-000000000195}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0055-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000426}, !- Handle - {00000000-0000-0000-0055-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000427}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0051-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000428}, !- Handle - {00000000-0000-0000-0051-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000429}, !- Handle - {00000000-0000-0000-0098-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000155}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000430}, !- Handle - {00000000-0000-0000-0051-000000000155}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000431}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0051-000000000156}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000432}, !- Handle - {00000000-0000-0000-0051-000000000156}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000433}, !- Handle - {00000000-0000-0000-0098-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000157}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000434}, !- Handle - {00000000-0000-0000-0051-000000000157}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000435}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000158}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000436}, !- Handle - {00000000-0000-0000-0051-000000000158}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000437}, !- Handle - {00000000-0000-0000-0098-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000159}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000438}, !- Handle - {00000000-0000-0000-0051-000000000159}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000439}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0051-000000000169}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000440}, !- Handle - {00000000-0000-0000-0051-000000000169}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000441}, !- Handle - {00000000-0000-0000-0098-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000170}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000442}, !- Handle - {00000000-0000-0000-0051-000000000170}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000443}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0051-000000000171}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000444}, !- Handle - {00000000-0000-0000-0051-000000000171}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000445}, !- Handle - {00000000-0000-0000-0098-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000172}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000446}, !- Handle - {00000000-0000-0000-0051-000000000172}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000447}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0051-000000000173}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000448}, !- Handle - {00000000-0000-0000-0051-000000000173}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000449}, !- Handle - {00000000-0000-0000-0098-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000174}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000450}, !- Handle - {00000000-0000-0000-0051-000000000174}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000451}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000175}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000452}, !- Handle - {00000000-0000-0000-0051-000000000175}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000453}, !- Handle - {00000000-0000-0000-0098-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000176}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000454}, !- Handle - {00000000-0000-0000-0051-000000000176}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000455}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0051-000000000177}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000456}, !- Handle - {00000000-0000-0000-0051-000000000177}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000457}, !- Handle - {00000000-0000-0000-0098-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000178}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000458}, !- Handle - {00000000-0000-0000-0051-000000000178}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 11; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000459}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000179}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000460}, !- Handle - {00000000-0000-0000-0051-000000000179}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000461}, !- Handle - {00000000-0000-0000-0098-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000180}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000462}, !- Handle - {00000000-0000-0000-0051-000000000180}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000463}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0051-000000000181}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000464}, !- Handle - {00000000-0000-0000-0051-000000000181}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000465}, !- Handle - {00000000-0000-0000-0098-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000182}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000466}, !- Handle - {00000000-0000-0000-0051-000000000182}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 13; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000467}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0051-000000000183}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000468}, !- Handle - {00000000-0000-0000-0051-000000000183}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000011}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000469}, !- Handle - {00000000-0000-0000-0098-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000184}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000470}, !- Handle - {00000000-0000-0000-0051-000000000184}, !- Source Object + {00000000-0000-0000-0051-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000471}, !- Handle + {00000000-0000-0000-0017-000000000279}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0051-000000000185}, !- Target Object + {00000000-0000-0000-0051-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000472}, !- Handle - {00000000-0000-0000-0051-000000000185}, !- Source Object + {00000000-0000-0000-0017-000000000280}, !- Handle + {00000000-0000-0000-0051-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000473}, !- Handle + {00000000-0000-0000-0017-000000000281}, !- Handle {00000000-0000-0000-0098-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000186}, !- Target Object + {00000000-0000-0000-0051-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000474}, !- Handle - {00000000-0000-0000-0051-000000000186}, !- Source Object + {00000000-0000-0000-0017-000000000282}, !- Handle + {00000000-0000-0000-0051-000000000104}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000475}, !- Handle + {00000000-0000-0000-0017-000000000283}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0051-000000000187}, !- Target Object + {00000000-0000-0000-0051-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000476}, !- Handle - {00000000-0000-0000-0051-000000000187}, !- Source Object + {00000000-0000-0000-0017-000000000284}, !- Handle + {00000000-0000-0000-0051-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000477}, !- Handle + {00000000-0000-0000-0017-000000000285}, !- Handle {00000000-0000-0000-0098-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000188}, !- Target Object + {00000000-0000-0000-0051-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000478}, !- Handle - {00000000-0000-0000-0051-000000000188}, !- Source Object + {00000000-0000-0000-0017-000000000286}, !- Handle + {00000000-0000-0000-0051-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000479}, !- Handle + {00000000-0000-0000-0017-000000000287}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000189}, !- Target Object + {00000000-0000-0000-0051-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000480}, !- Handle - {00000000-0000-0000-0051-000000000189}, !- Source Object + {00000000-0000-0000-0017-000000000288}, !- Handle + {00000000-0000-0000-0051-000000000107}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000481}, !- Handle + {00000000-0000-0000-0017-000000000289}, !- Handle {00000000-0000-0000-0098-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000190}, !- Target Object + {00000000-0000-0000-0051-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000482}, !- Handle - {00000000-0000-0000-0051-000000000190}, !- Source Object + {00000000-0000-0000-0017-000000000290}, !- Handle + {00000000-0000-0000-0051-000000000108}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000483}, !- Handle + {00000000-0000-0000-0017-000000000291}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0051-000000000191}, !- Target Object + {00000000-0000-0000-0051-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000484}, !- Handle - {00000000-0000-0000-0051-000000000191}, !- Source Object + {00000000-0000-0000-0017-000000000292}, !- Handle + {00000000-0000-0000-0051-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000485}, !- Handle + {00000000-0000-0000-0017-000000000293}, !- Handle {00000000-0000-0000-0098-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000192}, !- Target Object + {00000000-0000-0000-0051-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000486}, !- Handle - {00000000-0000-0000-0051-000000000192}, !- Source Object + {00000000-0000-0000-0017-000000000294}, !- Handle + {00000000-0000-0000-0051-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 18; !- Inlet Port @@ -4768,29 +2656,7 @@ OS:Connector:Mixer, {00000000-0000-0000-0017-000000000184}, !- Inlet Branch Name 8 {00000000-0000-0000-0017-000000000188}, !- Inlet Branch Name 9 {00000000-0000-0000-0017-000000000198}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000202}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000218}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000242}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000252}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000256}, !- Inlet Branch Name 16 - {00000000-0000-0000-0017-000000000266}, !- Inlet Branch Name 17 - {00000000-0000-0000-0017-000000000270}, !- Inlet Branch Name 18 - {00000000-0000-0000-0017-000000000280}, !- Inlet Branch Name 19 - {00000000-0000-0000-0017-000000000284}, !- Inlet Branch Name 20 - {00000000-0000-0000-0017-000000000294}, !- Inlet Branch Name 21 - {00000000-0000-0000-0017-000000000298}, !- Inlet Branch Name 22 - {00000000-0000-0000-0017-000000000314}, !- Inlet Branch Name 23 - {00000000-0000-0000-0017-000000000334}, !- Inlet Branch Name 24 - {00000000-0000-0000-0017-000000000338}, !- Inlet Branch Name 25 - {00000000-0000-0000-0017-000000000348}, !- Inlet Branch Name 26 - {00000000-0000-0000-0017-000000000352}, !- Inlet Branch Name 27 - {00000000-0000-0000-0017-000000000362}, !- Inlet Branch Name 28 - {00000000-0000-0000-0017-000000000366}, !- Inlet Branch Name 29 - {00000000-0000-0000-0017-000000000376}, !- Inlet Branch Name 30 - {00000000-0000-0000-0017-000000000380}, !- Inlet Branch Name 31 - {00000000-0000-0000-0017-000000000390}, !- Inlet Branch Name 32 - {00000000-0000-0000-0017-000000000394}; !- Inlet Branch Name 33 + {00000000-0000-0000-0017-000000000202}; !- Inlet Branch Name 11 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000003}, !- Handle @@ -4804,9 +2670,7 @@ OS:Connector:Mixer, {00000000-0000-0000-0018-000000000004}, !- Handle Connector Mixer 4, !- Name {00000000-0000-0000-0017-000000000068}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000126}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000222}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000318}; !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000126}; !- Inlet Branch Name 1 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle @@ -4825,30 +2689,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0018-000000000007}, !- Handle Connector Mixer 7, !- Name - {00000000-0000-0000-0017-000000000421}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000413}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000417}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000229}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000221}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000225}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000008}, !- Handle Connector Mixer 8, !- Name - {00000000-0000-0000-0017-000000000424}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000420}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000430}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000434}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000438}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000442}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000446}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000450}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000454}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000458}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000462}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000466}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000470}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000474}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000478}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000482}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000486}; !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000232}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000228}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000242}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000246}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000250}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000254}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000258}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000262}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000266}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000270}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000274}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000278}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000282}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000286}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000290}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000294}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -4872,29 +2736,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000181}, !- Outlet Branch Name 8 {00000000-0000-0000-0017-000000000185}, !- Outlet Branch Name 9 {00000000-0000-0000-0017-000000000195}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000199}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000215}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000239}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000249}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000253}, !- Outlet Branch Name 16 - {00000000-0000-0000-0017-000000000263}, !- Outlet Branch Name 17 - {00000000-0000-0000-0017-000000000267}, !- Outlet Branch Name 18 - {00000000-0000-0000-0017-000000000277}, !- Outlet Branch Name 19 - {00000000-0000-0000-0017-000000000281}, !- Outlet Branch Name 20 - {00000000-0000-0000-0017-000000000291}, !- Outlet Branch Name 21 - {00000000-0000-0000-0017-000000000295}, !- Outlet Branch Name 22 - {00000000-0000-0000-0017-000000000311}, !- Outlet Branch Name 23 - {00000000-0000-0000-0017-000000000331}, !- Outlet Branch Name 24 - {00000000-0000-0000-0017-000000000335}, !- Outlet Branch Name 25 - {00000000-0000-0000-0017-000000000345}, !- Outlet Branch Name 26 - {00000000-0000-0000-0017-000000000349}, !- Outlet Branch Name 27 - {00000000-0000-0000-0017-000000000359}, !- Outlet Branch Name 28 - {00000000-0000-0000-0017-000000000363}, !- Outlet Branch Name 29 - {00000000-0000-0000-0017-000000000373}, !- Outlet Branch Name 30 - {00000000-0000-0000-0017-000000000377}, !- Outlet Branch Name 31 - {00000000-0000-0000-0017-000000000387}, !- Outlet Branch Name 32 - {00000000-0000-0000-0017-000000000391}; !- Outlet Branch Name 33 + {00000000-0000-0000-0017-000000000199}; !- Outlet Branch Name 11 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -4908,9 +2750,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000004}, !- Handle Connector Splitter 4, !- Name {00000000-0000-0000-0017-000000000066}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000067}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000219}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000315}; !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000067}; !- Outlet Branch Name 1 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle @@ -4929,30 +2769,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000007}, !- Handle Connector Splitter 7, !- Name - {00000000-0000-0000-0017-000000000410}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000402}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000414}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000218}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000210}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000222}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000008}, !- Handle Connector Splitter 8, !- Name - {00000000-0000-0000-0017-000000000405}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000406}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000427}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000431}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000435}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000439}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000443}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000447}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000451}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000455}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000459}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000463}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000467}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000471}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000475}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000479}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000483}; !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000213}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000214}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000239}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000243}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000247}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000251}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000255}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000259}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000263}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000267}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000271}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000275}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000279}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000283}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000287}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000291}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle @@ -5211,20 +3051,6 @@ OS:Controller:MechanicalVentilation, , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - OS:Controller:OutdoorAir, {00000000-0000-0000-0022-000000000001}, !- Handle Controller Outdoor Air 1, !- Name @@ -5243,7 +3069,7 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0065-000000000027}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0065-000000000023}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation @@ -5255,66 +3081,6 @@ OS:Controller:OutdoorAir, BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0065-000000000025}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0065-000000000026}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - OS:Controller:WaterCoil, {00000000-0000-0000-0023-000000000001}, !- Handle Controller Water Coil 1, !- Name @@ -5330,136 +3096,6 @@ OS:Controller:WaterCoil, OS:Controller:WaterCoil, {00000000-0000-0000-0023-000000000002}, !- Handle - Controller Water Coil 10, !- Name - {00000000-0000-0000-0015-000000000017}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000003}, !- Handle - Controller Water Coil 11, !- Name - {00000000-0000-0000-0015-000000000018}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000004}, !- Handle - Controller Water Coil 12, !- Name - {00000000-0000-0000-0015-000000000002}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000005}, !- Handle - Controller Water Coil 13, !- Name - {00000000-0000-0000-0015-000000000003}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000006}, !- Handle - Controller Water Coil 14, !- Name - {00000000-0000-0000-0015-000000000004}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000007}, !- Handle - Controller Water Coil 15, !- Name - {00000000-0000-0000-0015-000000000005}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000008}, !- Handle - Controller Water Coil 16, !- Name - {00000000-0000-0000-0014-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000009}, !- Handle - Controller Water Coil 17, !- Name - {00000000-0000-0000-0015-000000000006}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000010}, !- Handle - Controller Water Coil 18, !- Name - {00000000-0000-0000-0015-000000000007}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000011}, !- Handle - Controller Water Coil 19, !- Name - {00000000-0000-0000-0015-000000000008}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000012}, !- Handle Controller Water Coil 2, !- Name {00000000-0000-0000-0014-000000000001}, !- Water Coil Name , !- Control Variable @@ -5472,35 +3108,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000013}, !- Handle - Controller Water Coil 20, !- Name - {00000000-0000-0000-0015-000000000009}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000014}, !- Handle - Controller Water Coil 21, !- Name - {00000000-0000-0000-0015-000000000010}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000015}, !- Handle + {00000000-0000-0000-0023-000000000003}, !- Handle Controller Water Coil 3, !- Name - {00000000-0000-0000-0015-000000000011}, !- Water Coil Name + {00000000-0000-0000-0015-000000000002}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5511,9 +3121,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000016}, !- Handle + {00000000-0000-0000-0023-000000000004}, !- Handle Controller Water Coil 4, !- Name - {00000000-0000-0000-0015-000000000012}, !- Water Coil Name + {00000000-0000-0000-0015-000000000003}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5524,9 +3134,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000017}, !- Handle + {00000000-0000-0000-0023-000000000005}, !- Handle Controller Water Coil 5, !- Name - {00000000-0000-0000-0015-000000000013}, !- Water Coil Name + {00000000-0000-0000-0015-000000000004}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5537,35 +3147,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000018}, !- Handle + {00000000-0000-0000-0023-000000000006}, !- Handle Controller Water Coil 6, !- Name - {00000000-0000-0000-0015-000000000014}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000019}, !- Handle - Controller Water Coil 7, !- Name - {00000000-0000-0000-0015-000000000015}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000020}, !- Handle - Controller Water Coil 8, !- Name - {00000000-0000-0000-0015-000000000016}, !- Water Coil Name + {00000000-0000-0000-0015-000000000005}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5576,15 +3160,15 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000021}, !- Handle - Controller Water Coil 9, !- Name - {00000000-0000-0000-0014-000000000002}, !- Water Coil Name + {00000000-0000-0000-0023-000000000007}, !- Handle + Controller Water Coil 7, !- Name + {00000000-0000-0000-0015-000000000006}, !- Water Coil Name , !- Control Variable - Reverse, !- Action + Normal, !- Action , !- Actuator Variable , !- Sensor Node Name , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} + 0.0001, !- Controller Convergence Tolerance {deltaC} , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} @@ -5600,7 +3184,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000099}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 4558.19858083704, !- Fan Power at Design Air Flow Rate {W} + 1814.73060300518, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -5691,34 +3275,6 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0026-000000000005}, !- Handle - WaterCooled_Screw_CAPFT_NECB2011, !- Name - 0.812998, !- Coefficient1 Constant - -0.0142532, !- Coefficient2 x - -0.00161799, !- Coefficient3 x**2 - 0.0263844, !- Coefficient4 y - -0.00091543, !- Coefficient5 y**2 - 0.00169601, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000006}, !- Handle - WaterCooled_Screw_EIRFT_NECB2011, !- Name - 0.638103, !- Coefficient1 Constant - 0.00630158, !- Coefficient2 x - 0.00092327, !- Coefficient3 x**2 - -0.00455294, !- Coefficient4 y - 0.000825682, !- Coefficient5 y**2 - -0.00156152, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -5732,7 +3288,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000008}, !- Handle + {00000000-0000-0000-0026-000000000006}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -5805,15 +3361,6 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0028-000000000003}, !- Handle - WaterCooled_Screw_EIRFPLR_NECB2011, !- Name - 0.330188, !- Coefficient1 Constant - 0.235543, !- Coefficient2 x - 0.460708, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0028-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -5975,38 +3522,6 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name - {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name - {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000005}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__ClgSch0, !- Name {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -6014,7 +3529,7 @@ OS:EnergyManagementSystem:Actuator, ; !- Zone or Space Name OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000006}, !- Handle + {00000000-0000-0000-0036-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__HtgSch0, !- Name {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -6023,81 +3538,29 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f84f862c-df78-4f23-8f8d-49c8fd95a5d5}<23.9 && {f84f862c-df78-4f23-8f8d-49c8fd95a5d5}>1.7, !- Program Line 1 - SET {e1e587e8-11bb-44c6-878c-d58e2a7a4395} = 29.4, !- Program Line 2 - SET {28294047-5429-4fb9-aab2-69b328014fbe} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f84f862c-df78-4f23-8f8d-49c8fd95a5d5}<23.9 && {f84f862c-df78-4f23-8f8d-49c8fd95a5d5}>1.7, !- Program Line 4 - SET {e1e587e8-11bb-44c6-878c-d58e2a7a4395} = 29.4, !- Program Line 5 - SET {28294047-5429-4fb9-aab2-69b328014fbe} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f84f862c-df78-4f23-8f8d-49c8fd95a5d5}<23.9 && {f84f862c-df78-4f23-8f8d-49c8fd95a5d5}>1.7, !- Program Line 7 - SET {e1e587e8-11bb-44c6-878c-d58e2a7a4395} = 29.4, !- Program Line 8 - SET {28294047-5429-4fb9-aab2-69b328014fbe} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f84f862c-df78-4f23-8f8d-49c8fd95a5d5}<23.9 && {f84f862c-df78-4f23-8f8d-49c8fd95a5d5}>1.7, !- Program Line 10 - SET {e1e587e8-11bb-44c6-878c-d58e2a7a4395} = 29.4, !- Program Line 11 - SET {28294047-5429-4fb9-aab2-69b328014fbe} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {e1e587e8-11bb-44c6-878c-d58e2a7a4395} = NULL, !- Program Line 14 - SET {28294047-5429-4fb9-aab2-69b328014fbe} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {068a7828-4bdb-4ef6-bea8-75dc96921b89}<23.9 && {068a7828-4bdb-4ef6-bea8-75dc96921b89}>1.7, !- Program Line 1 - SET {bb3956a7-8b51-4a57-b04b-39d0c44fc866} = 29.4, !- Program Line 2 - SET {83ff957f-f73a-47bb-b684-f985cfaf4bff} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {068a7828-4bdb-4ef6-bea8-75dc96921b89}<23.9 && {068a7828-4bdb-4ef6-bea8-75dc96921b89}>1.7, !- Program Line 4 - SET {bb3956a7-8b51-4a57-b04b-39d0c44fc866} = 29.4, !- Program Line 5 - SET {83ff957f-f73a-47bb-b684-f985cfaf4bff} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {068a7828-4bdb-4ef6-bea8-75dc96921b89}<23.9 && {068a7828-4bdb-4ef6-bea8-75dc96921b89}>1.7, !- Program Line 7 - SET {bb3956a7-8b51-4a57-b04b-39d0c44fc866} = 29.4, !- Program Line 8 - SET {83ff957f-f73a-47bb-b684-f985cfaf4bff} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {068a7828-4bdb-4ef6-bea8-75dc96921b89}<23.9 && {068a7828-4bdb-4ef6-bea8-75dc96921b89}>1.7, !- Program Line 10 - SET {bb3956a7-8b51-4a57-b04b-39d0c44fc866} = 29.4, !- Program Line 11 - SET {83ff957f-f73a-47bb-b684-f985cfaf4bff} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {bb3956a7-8b51-4a57-b04b-39d0c44fc866} = NULL, !- Program Line 14 - SET {83ff957f-f73a-47bb-b684-f985cfaf4bff} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0037-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b1312cd6-be76-4d49-931e-e9686b8ec1b6}<23.9 && {b1312cd6-be76-4d49-931e-e9686b8ec1b6}>1.7, !- Program Line 1 - SET {6fb036fc-066f-4d2a-8e61-15986f80039f} = 29.4, !- Program Line 2 - SET {ee83cb97-c0f9-42f2-a3a3-d92c6771f271} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b1312cd6-be76-4d49-931e-e9686b8ec1b6}<23.9 && {b1312cd6-be76-4d49-931e-e9686b8ec1b6}>1.7, !- Program Line 4 - SET {6fb036fc-066f-4d2a-8e61-15986f80039f} = 29.4, !- Program Line 5 - SET {ee83cb97-c0f9-42f2-a3a3-d92c6771f271} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b1312cd6-be76-4d49-931e-e9686b8ec1b6}<23.9 && {b1312cd6-be76-4d49-931e-e9686b8ec1b6}>1.7, !- Program Line 7 - SET {6fb036fc-066f-4d2a-8e61-15986f80039f} = 29.4, !- Program Line 8 - SET {ee83cb97-c0f9-42f2-a3a3-d92c6771f271} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b1312cd6-be76-4d49-931e-e9686b8ec1b6}<23.9 && {b1312cd6-be76-4d49-931e-e9686b8ec1b6}>1.7, !- Program Line 10 - SET {6fb036fc-066f-4d2a-8e61-15986f80039f} = 29.4, !- Program Line 11 - SET {ee83cb97-c0f9-42f2-a3a3-d92c6771f271} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bd42973c-4e08-4466-b354-1388c0216281}<23.9 && {bd42973c-4e08-4466-b354-1388c0216281}>1.7, !- Program Line 1 + SET {a579354f-aa99-4d31-880b-31f380a940ba} = 29.4, !- Program Line 2 + SET {20e16a8b-80a4-49f1-bfb4-e1366c87a939} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bd42973c-4e08-4466-b354-1388c0216281}<23.9 && {bd42973c-4e08-4466-b354-1388c0216281}>1.7, !- Program Line 4 + SET {a579354f-aa99-4d31-880b-31f380a940ba} = 29.4, !- Program Line 5 + SET {20e16a8b-80a4-49f1-bfb4-e1366c87a939} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bd42973c-4e08-4466-b354-1388c0216281}<23.9 && {bd42973c-4e08-4466-b354-1388c0216281}>1.7, !- Program Line 7 + SET {a579354f-aa99-4d31-880b-31f380a940ba} = 29.4, !- Program Line 8 + SET {20e16a8b-80a4-49f1-bfb4-e1366c87a939} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bd42973c-4e08-4466-b354-1388c0216281}<23.9 && {bd42973c-4e08-4466-b354-1388c0216281}>1.7, !- Program Line 10 + SET {a579354f-aa99-4d31-880b-31f380a940ba} = 29.4, !- Program Line 11 + SET {20e16a8b-80a4-49f1-bfb4-e1366c87a939} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6fb036fc-066f-4d2a-8e61-15986f80039f} = NULL, !- Program Line 14 - SET {ee83cb97-c0f9-42f2-a3a3-d92c6771f271} = NULL, !- Program Line 15 + SET {a579354f-aa99-4d31-880b-31f380a940ba} = NULL, !- Program Line 14 + SET {20e16a8b-80a4-49f1-bfb4-e1366c87a939} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0037-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0037-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0038-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0037-000000000003}; !- Program Name 1 + {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:Sensor, {00000000-0000-0000-0039-000000000001}, !- Handle @@ -6105,65 +3568,11 @@ OS:EnergyManagementSystem:Sensor, Environment, !- Output Variable or Output Meter Index Key Name Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0039-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0039-000000000003}, !- Handle - OAT_2, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - OS:Facility, {00000000-0000-0000-0040-000000000001}; !- Handle OS:Fan:VariableVolume, {00000000-0000-0000-0041-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000232}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000233}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000328}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000329}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000003}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -6184,29 +3593,8 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000004}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000227}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000225}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000005}, !- Handle - Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0041-000000000002}, !- Handle + Sys6 Supply Fan, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -6221,27 +3609,6 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000323}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000321}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000006}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0017-000000000131}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000129}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -6720,49 +4087,17 @@ OS:ModelObjectList, {00000000-0000-0000-0050-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:ModelObjectList, - {00000000-0000-0000-0050-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0050-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0050-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0050-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0050-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0050-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0050-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0050-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name - OS:Node, {00000000-0000-0000-0051-000000000001}, !- Handle 126gal NaturalGas Water Heater - 85kBtu/hr 0.813 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000402}, !- Inlet Port - {00000000-0000-0000-0017-000000000411}; !- Outlet Port + {00000000-0000-0000-0017-000000000210}, !- Inlet Port + {00000000-0000-0000-0017-000000000219}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000002}, !- Handle 126gal NaturalGas Water Heater - 85kBtu/hr 0.813 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000412}, !- Inlet Port - {00000000-0000-0000-0017-000000000413}; !- Outlet Port + {00000000-0000-0000-0017-000000000220}, !- Inlet Port + {00000000-0000-0000-0017-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000003}, !- Handle @@ -6844,1386 +4179,798 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000016}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000300}, !- Inlet Port - {00000000-0000-0000-0017-000000000301}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000018}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000286}, !- Inlet Port - {00000000-0000-0000-0017-000000000287}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000019}, !- Handle + {00000000-0000-0000-0051-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000020}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000258}, !- Inlet Port - {00000000-0000-0000-0017-000000000259}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000021}, !- Handle + {00000000-0000-0000-0051-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000022}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000272}, !- Inlet Port - {00000000-0000-0000-0017-000000000273}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000023}, !- Handle + {00000000-0000-0000-0051-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000024}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000244}, !- Inlet Port - {00000000-0000-0000-0017-000000000245}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000025}, !- Handle + {00000000-0000-0000-0051-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000026}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000368}, !- Inlet Port - {00000000-0000-0000-0017-000000000369}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000027}, !- Handle + {00000000-0000-0000-0051-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000028}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000340}, !- Inlet Port - {00000000-0000-0000-0017-000000000341}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000029}, !- Handle + {00000000-0000-0000-0051-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000030}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000382}, !- Inlet Port - {00000000-0000-0000-0017-000000000383}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000031}, !- Handle + {00000000-0000-0000-0051-000000000023}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000032}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000396}, !- Inlet Port - {00000000-0000-0000-0017-000000000397}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000033}, !- Handle + {00000000-0000-0000-0051-000000000024}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000034}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000354}, !- Inlet Port - {00000000-0000-0000-0017-000000000355}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000035}, !- Handle + {00000000-0000-0000-0051-000000000025}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0017-000000000020}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000036}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000150}, !- Inlet Port - {00000000-0000-0000-0017-000000000151}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000037}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000152}, !- Inlet Port - {00000000-0000-0000-0017-000000000147}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000038}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000302}, !- Inlet Port - {00000000-0000-0000-0017-000000000303}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000039}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000304}, !- Inlet Port - {00000000-0000-0000-0017-000000000299}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000040}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000342}, !- Inlet Port - {00000000-0000-0000-0017-000000000343}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000041}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000344}, !- Inlet Port - {00000000-0000-0000-0017-000000000339}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000042}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000356}, !- Inlet Port - {00000000-0000-0000-0017-000000000357}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000043}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000358}, !- Inlet Port - {00000000-0000-0000-0017-000000000353}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000044}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000370}, !- Inlet Port - {00000000-0000-0000-0017-000000000371}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000045}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000372}, !- Inlet Port - {00000000-0000-0000-0017-000000000367}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000384}, !- Inlet Port - {00000000-0000-0000-0017-000000000385}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000386}, !- Inlet Port - {00000000-0000-0000-0017-000000000381}; !- Outlet Port + {00000000-0000-0000-0017-000000000020}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000398}, !- Inlet Port - {00000000-0000-0000-0017-000000000399}; !- Outlet Port + {00000000-0000-0000-0051-000000000026}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000150}, !- Inlet Port + {00000000-0000-0000-0017-000000000151}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000400}, !- Inlet Port - {00000000-0000-0000-0017-000000000395}; !- Outlet Port + {00000000-0000-0000-0051-000000000027}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000152}, !- Inlet Port + {00000000-0000-0000-0017-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000050}, !- Handle + {00000000-0000-0000-0051-000000000028}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000164}, !- Inlet Port {00000000-0000-0000-0017-000000000165}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000051}, !- Handle + {00000000-0000-0000-0051-000000000029}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000166}, !- Inlet Port {00000000-0000-0000-0017-000000000161}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000052}, !- Handle + {00000000-0000-0000-0051-000000000030}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000178}, !- Inlet Port {00000000-0000-0000-0017-000000000179}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000053}, !- Handle + {00000000-0000-0000-0051-000000000031}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000180}, !- Inlet Port {00000000-0000-0000-0017-000000000175}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000054}, !- Handle + {00000000-0000-0000-0051-000000000032}, !- Handle Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000192}, !- Inlet Port {00000000-0000-0000-0017-000000000193}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000055}, !- Handle + {00000000-0000-0000-0051-000000000033}, !- Handle Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000194}, !- Inlet Port {00000000-0000-0000-0017-000000000189}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000056}, !- Handle + {00000000-0000-0000-0051-000000000034}, !- Handle Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000206}, !- Inlet Port {00000000-0000-0000-0017-000000000207}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000057}, !- Handle + {00000000-0000-0000-0051-000000000035}, !- Handle Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000208}, !- Inlet Port {00000000-0000-0000-0017-000000000203}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000246}, !- Inlet Port - {00000000-0000-0000-0017-000000000247}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000248}, !- Inlet Port - {00000000-0000-0000-0017-000000000243}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000260}, !- Inlet Port - {00000000-0000-0000-0017-000000000261}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000262}, !- Inlet Port - {00000000-0000-0000-0017-000000000257}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000274}, !- Inlet Port - {00000000-0000-0000-0017-000000000275}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000276}, !- Inlet Port - {00000000-0000-0000-0017-000000000271}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000288}, !- Inlet Port - {00000000-0000-0000-0017-000000000289}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000290}, !- Inlet Port - {00000000-0000-0000-0017-000000000285}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000066}, !- Handle + {00000000-0000-0000-0051-000000000036}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000065}, !- Inlet Port {00000000-0000-0000-0017-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000067}, !- Handle + {00000000-0000-0000-0051-000000000037}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000068}, !- Handle + {00000000-0000-0000-0051-000000000038}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000062}, !- Inlet Port {00000000-0000-0000-0017-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000069}, !- Handle + {00000000-0000-0000-0051-000000000039}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000086}, !- Inlet Port {00000000-0000-0000-0017-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000070}, !- Handle + {00000000-0000-0000-0051-000000000040}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000067}, !- Inlet Port {00000000-0000-0000-0017-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000071}, !- Handle + {00000000-0000-0000-0051-000000000041}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port {00000000-0000-0000-0017-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000072}, !- Handle + {00000000-0000-0000-0051-000000000042}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000125}, !- Inlet Port {00000000-0000-0000-0017-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000073}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Port - {00000000-0000-0000-0017-000000000220}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000074}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000228}, !- Inlet Port - {00000000-0000-0000-0017-000000000229}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000075}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000221}, !- Inlet Port - {00000000-0000-0000-0017-000000000222}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000076}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000315}, !- Inlet Port - {00000000-0000-0000-0017-000000000316}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000077}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000324}, !- Inlet Port - {00000000-0000-0000-0017-000000000325}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000078}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000317}, !- Inlet Port - {00000000-0000-0000-0017-000000000318}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000079}, !- Handle + {00000000-0000-0000-0051-000000000043}, !- Handle Coil Heating Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000042}, !- Inlet Port {00000000-0000-0000-0017-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000080}, !- Handle + {00000000-0000-0000-0051-000000000044}, !- Handle Coil Heating Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000130}, !- Inlet Port {00000000-0000-0000-0017-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000081}, !- Handle + {00000000-0000-0000-0051-000000000045}, !- Handle Coil Heating Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000122}, !- Inlet Port {00000000-0000-0000-0017-000000000123}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000082}, !- Handle - Coil Heating Water 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000263}, !- Inlet Port - {00000000-0000-0000-0017-000000000264}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000083}, !- Handle - Coil Heating Water 10 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000265}, !- Inlet Port - {00000000-0000-0000-0017-000000000266}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000084}, !- Handle - Coil Heating Water 11 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000277}, !- Inlet Port - {00000000-0000-0000-0017-000000000278}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000085}, !- Handle - Coil Heating Water 11 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000279}, !- Inlet Port - {00000000-0000-0000-0017-000000000280}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000086}, !- Handle - Coil Heating Water 12 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000291}, !- Inlet Port - {00000000-0000-0000-0017-000000000292}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000087}, !- Handle - Coil Heating Water 12 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000293}, !- Inlet Port - {00000000-0000-0000-0017-000000000294}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000088}, !- Handle - Coil Heating Water 13 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000311}, !- Inlet Port - {00000000-0000-0000-0017-000000000312}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000089}, !- Handle - Coil Heating Water 13 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000322}, !- Inlet Port - {00000000-0000-0000-0017-000000000323}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000090}, !- Handle - Coil Heating Water 13 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000313}, !- Inlet Port - {00000000-0000-0000-0017-000000000314}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000091}, !- Handle - Coil Heating Water 14 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000331}, !- Inlet Port - {00000000-0000-0000-0017-000000000332}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000092}, !- Handle - Coil Heating Water 14 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000333}, !- Inlet Port - {00000000-0000-0000-0017-000000000334}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000093}, !- Handle - Coil Heating Water 15 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000345}, !- Inlet Port - {00000000-0000-0000-0017-000000000346}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000094}, !- Handle - Coil Heating Water 15 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000347}, !- Inlet Port - {00000000-0000-0000-0017-000000000348}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000095}, !- Handle - Coil Heating Water 16 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000359}, !- Inlet Port - {00000000-0000-0000-0017-000000000360}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000096}, !- Handle - Coil Heating Water 16 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000361}, !- Inlet Port - {00000000-0000-0000-0017-000000000362}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000097}, !- Handle - Coil Heating Water 17 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000373}, !- Inlet Port - {00000000-0000-0000-0017-000000000374}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000098}, !- Handle - Coil Heating Water 17 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000375}, !- Inlet Port - {00000000-0000-0000-0017-000000000376}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000099}, !- Handle - Coil Heating Water 18 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000387}, !- Inlet Port - {00000000-0000-0000-0017-000000000388}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000100}, !- Handle - Coil Heating Water 18 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000389}, !- Inlet Port - {00000000-0000-0000-0017-000000000390}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000101}, !- Handle + {00000000-0000-0000-0051-000000000046}, !- Handle Coil Heating Water 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000139}, !- Inlet Port {00000000-0000-0000-0017-000000000140}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000102}, !- Handle + {00000000-0000-0000-0051-000000000047}, !- Handle Coil Heating Water 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000141}, !- Inlet Port {00000000-0000-0000-0017-000000000142}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000103}, !- Handle + {00000000-0000-0000-0051-000000000048}, !- Handle Coil Heating Water 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000153}, !- Inlet Port {00000000-0000-0000-0017-000000000154}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000104}, !- Handle + {00000000-0000-0000-0051-000000000049}, !- Handle Coil Heating Water 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000155}, !- Inlet Port {00000000-0000-0000-0017-000000000156}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000105}, !- Handle + {00000000-0000-0000-0051-000000000050}, !- Handle Coil Heating Water 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000167}, !- Inlet Port {00000000-0000-0000-0017-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000106}, !- Handle + {00000000-0000-0000-0051-000000000051}, !- Handle Coil Heating Water 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000169}, !- Inlet Port {00000000-0000-0000-0017-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000107}, !- Handle + {00000000-0000-0000-0051-000000000052}, !- Handle Coil Heating Water 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000181}, !- Inlet Port {00000000-0000-0000-0017-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000108}, !- Handle - Coil Heating Water 5 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000183}, !- Inlet Port - {00000000-0000-0000-0017-000000000184}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000109}, !- Handle - Coil Heating Water 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000195}, !- Inlet Port - {00000000-0000-0000-0017-000000000196}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000110}, !- Handle - Coil Heating Water 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000197}, !- Inlet Port - {00000000-0000-0000-0017-000000000198}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000111}, !- Handle - Coil Heating Water 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000215}, !- Inlet Port - {00000000-0000-0000-0017-000000000216}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000112}, !- Handle - Coil Heating Water 7 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000226}, !- Inlet Port - {00000000-0000-0000-0017-000000000227}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000113}, !- Handle - Coil Heating Water 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000217}, !- Inlet Port - {00000000-0000-0000-0017-000000000218}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000114}, !- Handle - Coil Heating Water 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000235}, !- Inlet Port - {00000000-0000-0000-0017-000000000236}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000115}, !- Handle - Coil Heating Water 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000237}, !- Inlet Port - {00000000-0000-0000-0017-000000000238}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000116}, !- Handle - Coil Heating Water 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000249}, !- Inlet Port - {00000000-0000-0000-0017-000000000250}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000117}, !- Handle - Coil Heating Water 9 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000251}, !- Inlet Port - {00000000-0000-0000-0017-000000000252}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000118}, !- Handle - Coil Heating Water Baseboard 1 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000143}, !- Inlet Port - {00000000-0000-0000-0017-000000000144}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000119}, !- Handle - Coil Heating Water Baseboard 1 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000145}, !- Inlet Port - {00000000-0000-0000-0017-000000000146}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000120}, !- Handle - Coil Heating Water Baseboard 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000295}, !- Inlet Port - {00000000-0000-0000-0017-000000000296}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000121}, !- Handle - Coil Heating Water Baseboard 10 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000297}, !- Inlet Port - {00000000-0000-0000-0017-000000000298}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000122}, !- Handle - Coil Heating Water Baseboard 11 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000335}, !- Inlet Port - {00000000-0000-0000-0017-000000000336}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000123}, !- Handle - Coil Heating Water Baseboard 11 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000337}, !- Inlet Port - {00000000-0000-0000-0017-000000000338}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000124}, !- Handle - Coil Heating Water Baseboard 12 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000349}, !- Inlet Port - {00000000-0000-0000-0017-000000000350}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000125}, !- Handle - Coil Heating Water Baseboard 12 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000351}, !- Inlet Port - {00000000-0000-0000-0017-000000000352}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000126}, !- Handle - Coil Heating Water Baseboard 13 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000363}, !- Inlet Port - {00000000-0000-0000-0017-000000000364}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000127}, !- Handle - Coil Heating Water Baseboard 13 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000365}, !- Inlet Port - {00000000-0000-0000-0017-000000000366}; !- Outlet Port + {00000000-0000-0000-0051-000000000053}, !- Handle + Coil Heating Water 5 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000183}, !- Inlet Port + {00000000-0000-0000-0017-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000128}, !- Handle - Coil Heating Water Baseboard 14 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000377}, !- Inlet Port - {00000000-0000-0000-0017-000000000378}; !- Outlet Port + {00000000-0000-0000-0051-000000000054}, !- Handle + Coil Heating Water 6 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000195}, !- Inlet Port + {00000000-0000-0000-0017-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000129}, !- Handle - Coil Heating Water Baseboard 14 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000379}, !- Inlet Port - {00000000-0000-0000-0017-000000000380}; !- Outlet Port + {00000000-0000-0000-0051-000000000055}, !- Handle + Coil Heating Water 6 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000197}, !- Inlet Port + {00000000-0000-0000-0017-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000130}, !- Handle - Coil Heating Water Baseboard 15 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000391}, !- Inlet Port - {00000000-0000-0000-0017-000000000392}; !- Outlet Port + {00000000-0000-0000-0051-000000000056}, !- Handle + Coil Heating Water Baseboard 1 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000143}, !- Inlet Port + {00000000-0000-0000-0017-000000000144}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000131}, !- Handle - Coil Heating Water Baseboard 15 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000393}, !- Inlet Port - {00000000-0000-0000-0017-000000000394}; !- Outlet Port + {00000000-0000-0000-0051-000000000057}, !- Handle + Coil Heating Water Baseboard 1 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000145}, !- Inlet Port + {00000000-0000-0000-0017-000000000146}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000132}, !- Handle + {00000000-0000-0000-0051-000000000058}, !- Handle Coil Heating Water Baseboard 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000157}, !- Inlet Port {00000000-0000-0000-0017-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000133}, !- Handle + {00000000-0000-0000-0051-000000000059}, !- Handle Coil Heating Water Baseboard 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000159}, !- Inlet Port {00000000-0000-0000-0017-000000000160}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000134}, !- Handle + {00000000-0000-0000-0051-000000000060}, !- Handle Coil Heating Water Baseboard 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000171}, !- Inlet Port {00000000-0000-0000-0017-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000135}, !- Handle + {00000000-0000-0000-0051-000000000061}, !- Handle Coil Heating Water Baseboard 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000173}, !- Inlet Port {00000000-0000-0000-0017-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000136}, !- Handle + {00000000-0000-0000-0051-000000000062}, !- Handle Coil Heating Water Baseboard 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000185}, !- Inlet Port {00000000-0000-0000-0017-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000137}, !- Handle + {00000000-0000-0000-0051-000000000063}, !- Handle Coil Heating Water Baseboard 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000187}, !- Inlet Port {00000000-0000-0000-0017-000000000188}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000138}, !- Handle + {00000000-0000-0000-0051-000000000064}, !- Handle Coil Heating Water Baseboard 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000199}, !- Inlet Port {00000000-0000-0000-0017-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000139}, !- Handle + {00000000-0000-0000-0051-000000000065}, !- Handle Coil Heating Water Baseboard 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000201}, !- Inlet Port {00000000-0000-0000-0017-000000000202}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000140}, !- Handle - Coil Heating Water Baseboard 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000239}, !- Inlet Port - {00000000-0000-0000-0017-000000000240}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000141}, !- Handle - Coil Heating Water Baseboard 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000241}, !- Inlet Port - {00000000-0000-0000-0017-000000000242}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000142}, !- Handle - Coil Heating Water Baseboard 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000253}, !- Inlet Port - {00000000-0000-0000-0017-000000000254}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000143}, !- Handle - Coil Heating Water Baseboard 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000255}, !- Inlet Port - {00000000-0000-0000-0017-000000000256}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000144}, !- Handle - Coil Heating Water Baseboard 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000267}, !- Inlet Port - {00000000-0000-0000-0017-000000000268}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000145}, !- Handle - Coil Heating Water Baseboard 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000269}, !- Inlet Port - {00000000-0000-0000-0017-000000000270}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000146}, !- Handle - Coil Heating Water Baseboard 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000281}, !- Inlet Port - {00000000-0000-0000-0017-000000000282}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000147}, !- Handle - Coil Heating Water Baseboard 9 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000283}, !- Inlet Port - {00000000-0000-0000-0017-000000000284}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000148}, !- Handle + {00000000-0000-0000-0051-000000000066}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000149}, !- Handle + {00000000-0000-0000-0051-000000000067}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000150}, !- Handle + {00000000-0000-0000-0051-000000000068}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000151}, !- Handle + {00000000-0000-0000-0051-000000000069}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000107}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000152}, !- Handle + {00000000-0000-0000-0051-000000000070}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000153}, !- Handle + {00000000-0000-0000-0051-000000000071}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000099}, !- Inlet Port {00000000-0000-0000-0017-000000000100}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000154}, !- Handle + {00000000-0000-0000-0051-000000000072}, !- Handle Core_bottom WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000427}, !- Inlet Port - {00000000-0000-0000-0017-000000000428}; !- Outlet Port + {00000000-0000-0000-0017-000000000235}, !- Inlet Port + {00000000-0000-0000-0017-000000000236}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000155}, !- Handle + {00000000-0000-0000-0051-000000000073}, !- Handle Core_bottom WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000429}, !- Inlet Port - {00000000-0000-0000-0017-000000000430}; !- Outlet Port + {00000000-0000-0000-0017-000000000237}, !- Inlet Port + {00000000-0000-0000-0017-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000156}, !- Handle + {00000000-0000-0000-0051-000000000074}, !- Handle Core_mid WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000431}, !- Inlet Port - {00000000-0000-0000-0017-000000000432}; !- Outlet Port + {00000000-0000-0000-0017-000000000239}, !- Inlet Port + {00000000-0000-0000-0017-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000157}, !- Handle + {00000000-0000-0000-0051-000000000075}, !- Handle Core_mid WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000433}, !- Inlet Port - {00000000-0000-0000-0017-000000000434}; !- Outlet Port + {00000000-0000-0000-0017-000000000241}, !- Inlet Port + {00000000-0000-0000-0017-000000000242}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000158}, !- Handle + {00000000-0000-0000-0051-000000000076}, !- Handle Core_top WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000435}, !- Inlet Port - {00000000-0000-0000-0017-000000000436}; !- Outlet Port + {00000000-0000-0000-0017-000000000243}, !- Inlet Port + {00000000-0000-0000-0017-000000000244}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000159}, !- Handle + {00000000-0000-0000-0051-000000000077}, !- Handle Core_top WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000437}, !- Inlet Port - {00000000-0000-0000-0017-000000000438}; !- Outlet Port + {00000000-0000-0000-0017-000000000245}, !- Inlet Port + {00000000-0000-0000-0017-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000160}, !- Handle + {00000000-0000-0000-0051-000000000078}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000161}, !- Handle + {00000000-0000-0000-0051-000000000079}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port {00000000-0000-0000-0017-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000162}, !- Handle + {00000000-0000-0000-0051-000000000080}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port {00000000-0000-0000-0017-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000163}, !- Handle + {00000000-0000-0000-0051-000000000081}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000061}, !- Inlet Port {00000000-0000-0000-0017-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000164}, !- Handle + {00000000-0000-0000-0051-000000000082}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000409}, !- Inlet Port - {00000000-0000-0000-0017-000000000410}; !- Outlet Port + {00000000-0000-0000-0017-000000000217}, !- Inlet Port + {00000000-0000-0000-0017-000000000218}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000165}, !- Handle + {00000000-0000-0000-0051-000000000083}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000404}, !- Inlet Port - {00000000-0000-0000-0017-000000000405}; !- Outlet Port + {00000000-0000-0000-0017-000000000212}, !- Inlet Port + {00000000-0000-0000-0017-000000000213}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000166}, !- Handle + {00000000-0000-0000-0051-000000000084}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000426}, !- Inlet Port - {00000000-0000-0000-0017-000000000407}; !- Outlet Port + {00000000-0000-0000-0017-000000000234}, !- Inlet Port + {00000000-0000-0000-0017-000000000215}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000167}, !- Handle + {00000000-0000-0000-0051-000000000085}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000401}, !- Inlet Port - {00000000-0000-0000-0017-000000000408}; !- Outlet Port + {00000000-0000-0000-0017-000000000209}, !- Inlet Port + {00000000-0000-0000-0017-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000168}, !- Handle + {00000000-0000-0000-0051-000000000086}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000423}, !- Inlet Port - {00000000-0000-0000-0017-000000000403}; !- Outlet Port + {00000000-0000-0000-0017-000000000231}, !- Inlet Port + {00000000-0000-0000-0017-000000000211}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000169}, !- Handle + {00000000-0000-0000-0051-000000000087}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000439}, !- Inlet Port - {00000000-0000-0000-0017-000000000440}; !- Outlet Port + {00000000-0000-0000-0017-000000000247}, !- Inlet Port + {00000000-0000-0000-0017-000000000248}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000170}, !- Handle + {00000000-0000-0000-0051-000000000088}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000441}, !- Inlet Port - {00000000-0000-0000-0017-000000000442}; !- Outlet Port + {00000000-0000-0000-0017-000000000249}, !- Inlet Port + {00000000-0000-0000-0017-000000000250}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000171}, !- Handle + {00000000-0000-0000-0051-000000000089}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000443}, !- Inlet Port - {00000000-0000-0000-0017-000000000444}; !- Outlet Port + {00000000-0000-0000-0017-000000000251}, !- Inlet Port + {00000000-0000-0000-0017-000000000252}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000172}, !- Handle + {00000000-0000-0000-0051-000000000090}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000445}, !- Inlet Port - {00000000-0000-0000-0017-000000000446}; !- Outlet Port + {00000000-0000-0000-0017-000000000253}, !- Inlet Port + {00000000-0000-0000-0017-000000000254}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000173}, !- Handle + {00000000-0000-0000-0051-000000000091}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000447}, !- Inlet Port - {00000000-0000-0000-0017-000000000448}; !- Outlet Port + {00000000-0000-0000-0017-000000000255}, !- Inlet Port + {00000000-0000-0000-0017-000000000256}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000174}, !- Handle + {00000000-0000-0000-0051-000000000092}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000449}, !- Inlet Port - {00000000-0000-0000-0017-000000000450}; !- Outlet Port + {00000000-0000-0000-0017-000000000257}, !- Inlet Port + {00000000-0000-0000-0017-000000000258}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000175}, !- Handle + {00000000-0000-0000-0051-000000000093}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000451}, !- Inlet Port - {00000000-0000-0000-0017-000000000452}; !- Outlet Port + {00000000-0000-0000-0017-000000000259}, !- Inlet Port + {00000000-0000-0000-0017-000000000260}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000176}, !- Handle + {00000000-0000-0000-0051-000000000094}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000453}, !- Inlet Port - {00000000-0000-0000-0017-000000000454}; !- Outlet Port + {00000000-0000-0000-0017-000000000261}, !- Inlet Port + {00000000-0000-0000-0017-000000000262}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000177}, !- Handle + {00000000-0000-0000-0051-000000000095}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000455}, !- Inlet Port - {00000000-0000-0000-0017-000000000456}; !- Outlet Port + {00000000-0000-0000-0017-000000000263}, !- Inlet Port + {00000000-0000-0000-0017-000000000264}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000178}, !- Handle + {00000000-0000-0000-0051-000000000096}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000457}, !- Inlet Port - {00000000-0000-0000-0017-000000000458}; !- Outlet Port + {00000000-0000-0000-0017-000000000265}, !- Inlet Port + {00000000-0000-0000-0017-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000179}, !- Handle + {00000000-0000-0000-0051-000000000097}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000459}, !- Inlet Port - {00000000-0000-0000-0017-000000000460}; !- Outlet Port + {00000000-0000-0000-0017-000000000267}, !- Inlet Port + {00000000-0000-0000-0017-000000000268}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000180}, !- Handle + {00000000-0000-0000-0051-000000000098}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000461}, !- Inlet Port - {00000000-0000-0000-0017-000000000462}; !- Outlet Port + {00000000-0000-0000-0017-000000000269}, !- Inlet Port + {00000000-0000-0000-0017-000000000270}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000181}, !- Handle + {00000000-0000-0000-0051-000000000099}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000463}, !- Inlet Port - {00000000-0000-0000-0017-000000000464}; !- Outlet Port + {00000000-0000-0000-0017-000000000271}, !- Inlet Port + {00000000-0000-0000-0017-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000182}, !- Handle + {00000000-0000-0000-0051-000000000100}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000465}, !- Inlet Port - {00000000-0000-0000-0017-000000000466}; !- Outlet Port + {00000000-0000-0000-0017-000000000273}, !- Inlet Port + {00000000-0000-0000-0017-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000183}, !- Handle + {00000000-0000-0000-0051-000000000101}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000467}, !- Inlet Port - {00000000-0000-0000-0017-000000000468}; !- Outlet Port + {00000000-0000-0000-0017-000000000275}, !- Inlet Port + {00000000-0000-0000-0017-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000184}, !- Handle + {00000000-0000-0000-0051-000000000102}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000469}, !- Inlet Port - {00000000-0000-0000-0017-000000000470}; !- Outlet Port + {00000000-0000-0000-0017-000000000277}, !- Inlet Port + {00000000-0000-0000-0017-000000000278}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000185}, !- Handle + {00000000-0000-0000-0051-000000000103}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000471}, !- Inlet Port - {00000000-0000-0000-0017-000000000472}; !- Outlet Port + {00000000-0000-0000-0017-000000000279}, !- Inlet Port + {00000000-0000-0000-0017-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000186}, !- Handle + {00000000-0000-0000-0051-000000000104}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000473}, !- Inlet Port - {00000000-0000-0000-0017-000000000474}; !- Outlet Port + {00000000-0000-0000-0017-000000000281}, !- Inlet Port + {00000000-0000-0000-0017-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000187}, !- Handle + {00000000-0000-0000-0051-000000000105}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000475}, !- Inlet Port - {00000000-0000-0000-0017-000000000476}; !- Outlet Port + {00000000-0000-0000-0017-000000000283}, !- Inlet Port + {00000000-0000-0000-0017-000000000284}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000188}, !- Handle + {00000000-0000-0000-0051-000000000106}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000477}, !- Inlet Port - {00000000-0000-0000-0017-000000000478}; !- Outlet Port + {00000000-0000-0000-0017-000000000285}, !- Inlet Port + {00000000-0000-0000-0017-000000000286}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000189}, !- Handle + {00000000-0000-0000-0051-000000000107}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000479}, !- Inlet Port - {00000000-0000-0000-0017-000000000480}; !- Outlet Port + {00000000-0000-0000-0017-000000000287}, !- Inlet Port + {00000000-0000-0000-0017-000000000288}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000190}, !- Handle + {00000000-0000-0000-0051-000000000108}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000481}, !- Inlet Port - {00000000-0000-0000-0017-000000000482}; !- Outlet Port + {00000000-0000-0000-0017-000000000289}, !- Inlet Port + {00000000-0000-0000-0017-000000000290}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000191}, !- Handle + {00000000-0000-0000-0051-000000000109}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000483}, !- Inlet Port - {00000000-0000-0000-0017-000000000484}; !- Outlet Port + {00000000-0000-0000-0017-000000000291}, !- Inlet Port + {00000000-0000-0000-0017-000000000292}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000192}, !- Handle + {00000000-0000-0000-0051-000000000110}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000485}, !- Inlet Port - {00000000-0000-0000-0017-000000000486}; !- Outlet Port + {00000000-0000-0000-0017-000000000293}, !- Inlet Port + {00000000-0000-0000-0017-000000000294}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000193}, !- Handle + {00000000-0000-0000-0051-000000000111}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000194}, !- Handle + {00000000-0000-0000-0051-000000000112}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000057}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000195}, !- Handle + {00000000-0000-0000-0051-000000000113}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000424}, !- Inlet Port - {00000000-0000-0000-0017-000000000425}; !- Outlet Port + {00000000-0000-0000-0017-000000000232}, !- Inlet Port + {00000000-0000-0000-0017-000000000233}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000196}, !- Handle + {00000000-0000-0000-0051-000000000114}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000059}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000197}, !- Handle + {00000000-0000-0000-0051-000000000115}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000080}, !- Inlet Port {00000000-0000-0000-0017-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000198}, !- Handle + {00000000-0000-0000-0051-000000000116}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000082}, !- Inlet Port {00000000-0000-0000-0017-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000199}, !- Handle + {00000000-0000-0000-0051-000000000117}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000084}, !- Inlet Port {00000000-0000-0000-0017-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000200}, !- Handle + {00000000-0000-0000-0051-000000000118}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000101}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000201}, !- Handle + {00000000-0000-0000-0051-000000000119}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000202}, !- Handle + {00000000-0000-0000-0051-000000000120}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000105}, !- Inlet Port {00000000-0000-0000-0017-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000203}, !- Handle + {00000000-0000-0000-0051-000000000121}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000414}, !- Inlet Port - {00000000-0000-0000-0017-000000000415}; !- Outlet Port + {00000000-0000-0000-0017-000000000222}, !- Inlet Port + {00000000-0000-0000-0017-000000000223}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000204}, !- Handle + {00000000-0000-0000-0051-000000000122}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000416}, !- Inlet Port - {00000000-0000-0000-0017-000000000417}; !- Outlet Port + {00000000-0000-0000-0017-000000000224}, !- Inlet Port + {00000000-0000-0000-0017-000000000225}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000205}, !- Handle + {00000000-0000-0000-0051-000000000123}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000406}, !- Inlet Port - {00000000-0000-0000-0017-000000000418}; !- Outlet Port + {00000000-0000-0000-0017-000000000214}, !- Inlet Port + {00000000-0000-0000-0017-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000206}, !- Handle + {00000000-0000-0000-0051-000000000124}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000419}, !- Inlet Port - {00000000-0000-0000-0017-000000000420}; !- Outlet Port + {00000000-0000-0000-0017-000000000227}, !- Inlet Port + {00000000-0000-0000-0017-000000000228}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000207}, !- Handle + {00000000-0000-0000-0051-000000000125}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000421}, !- Inlet Port - {00000000-0000-0000-0017-000000000422}; !- Outlet Port + {00000000-0000-0000-0017-000000000229}, !- Inlet Port + {00000000-0000-0000-0017-000000000230}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000208}, !- Handle - Primary Boiler 1880kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0051-000000000126}, !- Handle + Primary Boiler 363kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000209}, !- Handle - Primary Boiler 1880kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0051-000000000127}, !- Handle + Primary Boiler 363kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000210}, !- Handle - Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0051-000000000128}, !- Handle + Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Port {00000000-0000-0000-0017-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000211}, !- Handle - Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0051-000000000129}, !- Handle + Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000109}, !- Inlet Port {00000000-0000-0000-0017-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000212}, !- Handle - Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0051-000000000130}, !- Handle + Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000063}, !- Inlet Port {00000000-0000-0000-0017-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000213}, !- Handle - Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0051-000000000131}, !- Handle + Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000074}, !- Inlet Port {00000000-0000-0000-0017-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000214}, !- Handle + {00000000-0000-0000-0051-000000000132}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port {00000000-0000-0000-0017-000000000047}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000215}, !- Handle - Pump Variable Speed 2 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000071}, !- Inlet Port - {00000000-0000-0000-0017-000000000072}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000216}, !- Handle - Pump Variable Speed 3 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000096}, !- Inlet Port - {00000000-0000-0000-0017-000000000097}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000217}, !- Handle - Secondary Boiler 0kBtu/hr 0.85 AFUE Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000051}, !- Inlet Port - {00000000-0000-0000-0017-000000000052}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000218}, !- Handle - Secondary Boiler 0kBtu/hr 0.85 AFUE Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000053}, !- Inlet Port - {00000000-0000-0000-0017-000000000054}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000219}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000111}, !- Inlet Port - {00000000-0000-0000-0017-000000000112}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000220}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000113}, !- Inlet Port - {00000000-0000-0000-0017-000000000114}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000221}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000076}, !- Inlet Port - {00000000-0000-0000-0017-000000000077}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000222}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000078}, !- Inlet Port - {00000000-0000-0000-0017-000000000079}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000223}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000233}, !- Inlet Port - {00000000-0000-0000-0017-000000000234}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000224}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000329}, !- Inlet Port - {00000000-0000-0000-0017-000000000330}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000225}, !- Handle - Sys6 Return Fan Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000137}, !- Inlet Port - {00000000-0000-0000-0017-000000000138}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000226}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Port - {00000000-0000-0000-0017-000000000213}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000227}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000214}, !- Inlet Port - {00000000-0000-0000-0017-000000000212}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000228}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000230}, !- Inlet Port - {00000000-0000-0000-0017-000000000231}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000229}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000223}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000230}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0051-000000000231}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000209}, !- Inlet Port - {00000000-0000-0000-0017-000000000232}; !- Outlet Port + {00000000-0000-0000-0051-000000000133}, !- Handle + Pump Variable Speed 2 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000071}, !- Inlet Port + {00000000-0000-0000-0017-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000232}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000225}, !- Inlet Port - {00000000-0000-0000-0017-000000000210}; !- Outlet Port + {00000000-0000-0000-0051-000000000134}, !- Handle + Pump Variable Speed 3 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000096}, !- Inlet Port + {00000000-0000-0000-0017-000000000097}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000233}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000307}, !- Inlet Port - {00000000-0000-0000-0017-000000000309}; !- Outlet Port + {00000000-0000-0000-0051-000000000135}, !- Handle + Secondary Boiler 363kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000051}, !- Inlet Port + {00000000-0000-0000-0017-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000234}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000310}, !- Inlet Port - {00000000-0000-0000-0017-000000000308}; !- Outlet Port + {00000000-0000-0000-0051-000000000136}, !- Handle + Secondary Boiler 363kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000053}, !- Inlet Port + {00000000-0000-0000-0017-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000235}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000326}, !- Inlet Port - {00000000-0000-0000-0017-000000000327}; !- Outlet Port + {00000000-0000-0000-0051-000000000137}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000111}, !- Inlet Port + {00000000-0000-0000-0017-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000236}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000319}; !- Outlet Port + {00000000-0000-0000-0051-000000000138}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000113}, !- Inlet Port + {00000000-0000-0000-0017-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000237}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000320}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0051-000000000139}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000076}, !- Inlet Port + {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000238}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000305}, !- Inlet Port - {00000000-0000-0000-0017-000000000328}; !- Outlet Port + {00000000-0000-0000-0051-000000000140}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000078}, !- Inlet Port + {00000000-0000-0000-0017-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000239}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000321}, !- Inlet Port - {00000000-0000-0000-0017-000000000306}; !- Outlet Port + {00000000-0000-0000-0051-000000000141}, !- Handle + Sys6 Return Fan Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000137}, !- Inlet Port + {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000240}, !- Handle + {00000000-0000-0000-0051-000000000142}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000117}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000241}, !- Handle + {00000000-0000-0000-0051-000000000143}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000242}, !- Handle + {00000000-0000-0000-0051-000000000144}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000134}, !- Inlet Port {00000000-0000-0000-0017-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000243}, !- Handle + {00000000-0000-0000-0051-000000000145}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000244}, !- Handle + {00000000-0000-0000-0051-000000000146}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000128}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000245}, !- Handle + {00000000-0000-0000-0051-000000000147}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000115}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000246}, !- Handle + {00000000-0000-0000-0051-000000000148}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000129}, !- Inlet Port {00000000-0000-0000-0017-000000000116}; !- Outlet Port @@ -8241,7 +4988,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0065-000000000024}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0065-000000000022}, !- Work Efficiency Schedule Name {00000000-0000-0000-0065-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0065-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -8264,8 +5011,8 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0055-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0017-000000000425}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000426}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000233}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000234}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0055-000000000003}, !- Handle @@ -8300,20 +5047,20 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0055-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000415}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000416}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000223}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000224}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0055-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000418}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000419}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000226}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000227}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0055-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0017-000000000422}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000423}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000230}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000231}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0056-000000000001}, !- Handle @@ -8324,7 +5071,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0051-000000000069}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0051-000000000039}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8338,7 +5085,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8360,7 +5107,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0051-000000000151}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0051-000000000069}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8374,7 +5121,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8396,7 +5143,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0051-000000000163}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0051-000000000081}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8410,7 +5157,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000007}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8432,21 +5179,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0051-000000000168}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0051-000000000086}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000401}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000403}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000211}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000404}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000407}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000212}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000215}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8461,8 +5208,7 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0057-000000000001}, !- Handle - {00000000-0000-0000-0092-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000243}; !- Port 1 + {00000000-0000-0000-0092-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000002}, !- Handle @@ -8470,13 +5216,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000003}, !- Handle - {00000000-0000-0000-0092-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000244}; !- Port 1 + {00000000-0000-0000-0092-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000004}, !- Handle - {00000000-0000-0000-0092-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000353}; !- Port 1 + {00000000-0000-0000-0092-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000005}, !- Handle @@ -8484,13 +5228,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000006}, !- Handle - {00000000-0000-0000-0092-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000354}; !- Port 1 + {00000000-0000-0000-0092-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000007}, !- Handle - {00000000-0000-0000-0092-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000367}; !- Port 1 + {00000000-0000-0000-0092-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000008}, !- Handle @@ -8498,13 +5240,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000009}, !- Handle - {00000000-0000-0000-0092-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000368}; !- Port 1 + {00000000-0000-0000-0092-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000010}, !- Handle - {00000000-0000-0000-0092-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000339}; !- Port 1 + {00000000-0000-0000-0092-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000011}, !- Handle @@ -8512,13 +5252,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000012}, !- Handle - {00000000-0000-0000-0092-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000340}; !- Port 1 + {00000000-0000-0000-0092-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000013}, !- Handle - {00000000-0000-0000-0092-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000299}; !- Port 1 + {00000000-0000-0000-0092-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000014}, !- Handle @@ -8526,8 +5264,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000015}, !- Handle - {00000000-0000-0000-0092-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000300}; !- Port 1 + {00000000-0000-0000-0092-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000016}, !- Handle @@ -8545,8 +5282,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000019}, !- Handle - {00000000-0000-0000-0092-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000381}; !- Port 1 + {00000000-0000-0000-0092-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000020}, !- Handle @@ -8554,13 +5290,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000021}, !- Handle - {00000000-0000-0000-0092-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000382}; !- Port 1 + {00000000-0000-0000-0092-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000022}, !- Handle - {00000000-0000-0000-0092-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000285}; !- Port 1 + {00000000-0000-0000-0092-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000023}, !- Handle @@ -8568,8 +5302,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000024}, !- Handle - {00000000-0000-0000-0092-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000286}; !- Port 1 + {00000000-0000-0000-0092-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000025}, !- Handle @@ -8585,8 +5318,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000028}, !- Handle - {00000000-0000-0000-0092-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000395}; !- Port 1 + {00000000-0000-0000-0092-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000029}, !- Handle @@ -8594,8 +5326,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000030}, !- Handle - {00000000-0000-0000-0092-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000396}; !- Port 1 + {00000000-0000-0000-0092-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000031}, !- Handle @@ -8625,8 +5356,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000037}, !- Handle - {00000000-0000-0000-0092-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000257}; !- Port 1 + {00000000-0000-0000-0092-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000038}, !- Handle @@ -8634,8 +5364,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000039}, !- Handle - {00000000-0000-0000-0092-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000258}; !- Port 1 + {00000000-0000-0000-0092-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000040}, !- Handle @@ -8665,8 +5394,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000046}, !- Handle - {00000000-0000-0000-0092-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000271}; !- Port 1 + {00000000-0000-0000-0092-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000047}, !- Handle @@ -8674,8 +5402,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000048}, !- Handle - {00000000-0000-0000-0092-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000272}; !- Port 1 + {00000000-0000-0000-0092-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0057-000000000049}, !- Handle @@ -8708,8 +5435,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0058-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000408}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000409}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000216}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000217}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 445102.517395202, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -8735,7 +5462,7 @@ OS:Pump:VariableSpeed, , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8768,7 +5495,7 @@ OS:Pump:VariableSpeed, , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.865, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8801,7 +5528,7 @@ OS:Pump:VariableSpeed, , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.917, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -9598,33 +6325,6 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000037}, !- Handle - Schedule Day 10, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000038}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000039}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9633,9 +6333,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000041}, !- Handle + {00000000-0000-0000-0063-000000000038}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9711,9 +6411,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000042}, !- Handle + {00000000-0000-0000-0063-000000000039}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9789,25 +6489,25 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000043}, !- Handle + {00000000-0000-0000-0063-000000000040}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000044}, !- Handle + {00000000-0000-0000-0063-000000000041}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000045}, !- Handle + {00000000-0000-0000-0063-000000000042}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9816,7 +6516,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000046}, !- Handle + {00000000-0000-0000-0063-000000000043}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9825,16 +6525,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000047}, !- Handle - Schedule Day 9, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000048}, !- Handle + {00000000-0000-0000-0063-000000000044}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9843,34 +6534,16 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000049}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000050}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000051}, !- Handle + {00000000-0000-0000-0063-000000000045}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000052}, !- Handle + {00000000-0000-0000-0063-000000000046}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9879,7 +6552,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000053}, !- Handle + {00000000-0000-0000-0063-000000000047}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9888,9 +6561,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000054}, !- Handle + {00000000-0000-0000-0063-000000000048}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9966,7 +6639,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000055}, !- Handle + {00000000-0000-0000-0063-000000000049}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10044,9 +6717,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000056}, !- Handle + {00000000-0000-0000-0063-000000000050}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10122,7 +6795,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000057}, !- Handle + {00000000-0000-0000-0063-000000000051}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10200,9 +6873,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000058}, !- Handle + {00000000-0000-0000-0063-000000000052}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10278,7 +6951,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000059}, !- Handle + {00000000-0000-0000-0063-000000000053}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10356,9 +7029,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000060}, !- Handle + {00000000-0000-0000-0063-000000000054}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10434,7 +7107,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000061}, !- Handle + {00000000-0000-0000-0063-000000000055}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10487,98 +7160,32 @@ OS:Schedule:Day, 0, !- Minute 16 29, !- Value Until Time 16 17, !- Hour 17 - 0, !- Minute 17 - 29, !- Value Until Time 17 - 18, !- Hour 18 - 0, !- Minute 18 - 29, !- Value Until Time 18 - 19, !- Hour 19 - 0, !- Minute 19 - 29, !- Value Until Time 19 - 20, !- Hour 20 - 0, !- Minute 20 - 29, !- Value Until Time 20 - 21, !- Hour 21 - 0, !- Minute 21 - 29, !- Value Until Time 21 - 22, !- Hour 22 - 0, !- Minute 22 - 29, !- Value Until Time 22 - 23, !- Hour 23 - 0, !- Minute 23 - 29, !- Value Until Time 23 - 24, !- Hour 24 - 0, !- Minute 24 - 29; !- Value Until Time 24 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000062}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000063}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000064}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000065}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000066}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0063-000000000067}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 + 0, !- Minute 17 + 29, !- Value Until Time 17 + 18, !- Hour 18 + 0, !- Minute 18 + 29, !- Value Until Time 18 + 19, !- Hour 19 + 0, !- Minute 19 + 29, !- Value Until Time 19 + 20, !- Hour 20 + 0, !- Minute 20 + 29, !- Value Until Time 20 + 21, !- Hour 21 + 0, !- Minute 21 + 29, !- Value Until Time 21 + 22, !- Hour 22 + 0, !- Minute 22 + 29, !- Value Until Time 22 + 23, !- Hour 23 + 0, !- Minute 23 + 29, !- Value Until Time 23 + 24, !- Hour 24 + 0, !- Minute 24 + 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000068}, !- Handle + {00000000-0000-0000-0063-000000000056}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10593,7 +7200,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000069}, !- Handle + {00000000-0000-0000-0063-000000000057}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10602,7 +7209,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000070}, !- Handle + {00000000-0000-0000-0063-000000000058}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10611,9 +7218,9 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000071}, !- Handle + {00000000-0000-0000-0063-000000000059}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10689,7 +7296,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000072}, !- Handle + {00000000-0000-0000-0063-000000000060}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10767,9 +7374,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000073}, !- Handle + {00000000-0000-0000-0063-000000000061}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10845,7 +7452,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000074}, !- Handle + {00000000-0000-0000-0063-000000000062}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -11153,9 +7760,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0064-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0065-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000023}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000042}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11172,9 +7779,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0064-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0065-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000023}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000046}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11190,82 +7797,6 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0064-000000000015}, !- Handle - Schedule Rule 22, !- Name - {00000000-0000-0000-0065-000000000025}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0063-000000000047}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000016}, !- Handle - Schedule Rule 23, !- Name - {00000000-0000-0000-0065-000000000025}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0063-000000000037}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0065-000000000026}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0063-000000000038}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0065-000000000026}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0063-000000000039}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0065-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -11284,7 +7815,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000020}, !- Handle + {00000000-0000-0000-0064-000000000016}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0065-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -11303,7 +7834,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000021}, !- Handle + {00000000-0000-0000-0064-000000000017}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order @@ -11322,7 +7853,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000022}, !- Handle + {00000000-0000-0000-0064-000000000018}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -11341,7 +7872,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000023}, !- Handle + {00000000-0000-0000-0064-000000000019}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -11360,7 +7891,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000024}, !- Handle + {00000000-0000-0000-0064-000000000020}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0065-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -11379,7 +7910,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000025}, !- Handle + {00000000-0000-0000-0064-000000000021}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0065-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -11398,11 +7929,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000026}, !- Handle + {00000000-0000-0000-0064-000000000022}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000048}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11417,11 +7948,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000027}, !- Handle + {00000000-0000-0000-0064-000000000023}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000050}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11436,11 +7967,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000028}, !- Handle + {00000000-0000-0000-0064-000000000024}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000058}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000052}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11455,11 +7986,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000029}, !- Handle + {00000000-0000-0000-0064-000000000025}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000060}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11474,11 +8005,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000030}, !- Handle + {00000000-0000-0000-0064-000000000026}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000071}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000059}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11493,11 +8024,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000031}, !- Handle + {00000000-0000-0000-0064-000000000027}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000073}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000061}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11526,14 +8057,14 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000038}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000042}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000039}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000005}, !- Handle @@ -11612,74 +8143,46 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000043}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000040}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000020}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000049}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000021}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000050}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000022}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000051}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000023}, !- Handle + {00000000-0000-0000-0065-000000000021}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000052}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000024}, !- Handle + {00000000-0000-0000-0065-000000000022}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000053}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000025}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000062}, !- Default Day Schedule Name - {00000000-0000-0000-0063-000000000063}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0063-000000000064}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000026}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000065}, !- Default Day Schedule Name - {00000000-0000-0000-0063-000000000066}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0063-000000000067}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000027}, !- Handle + {00000000-0000-0000-0065-000000000023}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000068}, !- Default Day Schedule Name - {00000000-0000-0000-0063-000000000069}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0063-000000000070}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000056}, !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000057}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0063-000000000058}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0066-000000000001}, !- Handle @@ -11760,7 +8263,7 @@ OS:SetpointManager:OutdoorAirReset, -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0051-000000000163}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0051-000000000081}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -11772,42 +8275,28 @@ OS:SetpointManager:Scheduled, Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0065-000000000019}, !- Schedule Name - {00000000-0000-0000-0051-000000000168}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0051-000000000086}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0068-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0065-000000000003}, !- Schedule Name - {00000000-0000-0000-0051-000000000069}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0051-000000000039}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0068-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0065-000000000004}, !- Schedule Name - {00000000-0000-0000-0051-000000000151}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0051-000000000069}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0068-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0065-000000000022}, !- Schedule Name - {00000000-0000-0000-0051-000000000246}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0068-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name - Temperature, !- Control Variable {00000000-0000-0000-0065-000000000020}, !- Schedule Name - {00000000-0000-0000-0051-000000000232}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0068-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0065-000000000021}, !- Schedule Name - {00000000-0000-0000-0051-000000000239}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0051-000000000148}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0069-000000000001}, !- Handle @@ -11960,47 +8449,6 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0079-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0079-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -12040,60 +8488,19 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity -OS:Sizing:System, - {00000000-0000-0000-0079-000000000003}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - OS:Sizing:Zone, {00000000-0000-0000-0080-000000000001}, !- Handle {00000000-0000-0000-0092-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12119,16 +8526,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000002}, !- Handle {00000000-0000-0000-0092-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12154,16 +8561,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000003}, !- Handle {00000000-0000-0000-0092-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12189,16 +8596,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000004}, !- Handle {00000000-0000-0000-0092-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12224,16 +8631,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000005}, !- Handle {00000000-0000-0000-0092-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12294,16 +8701,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000007}, !- Handle {00000000-0000-0000-0092-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12329,16 +8736,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000008}, !- Handle {00000000-0000-0000-0092-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12399,16 +8806,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000010}, !- Handle {00000000-0000-0000-0092-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12504,16 +8911,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000013}, !- Handle {00000000-0000-0000-0092-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12609,16 +9016,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000016}, !- Handle {00000000-0000-0000-0092-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -16839,7 +13246,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0065-000000000023}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0065-000000000021}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 8.09069992920566, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -16849,8 +13256,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000411}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000412}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000219}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000220}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -16873,8 +13280,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000001}, !- Handle Core_bottom WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0017-000000000428}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000429}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000236}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000237}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -16887,8 +13294,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000002}, !- Handle Core_mid WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0017-000000000432}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000433}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000240}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000241}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -16901,8 +13308,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000003}, !- Handle Core_top WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0017-000000000436}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000437}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000244}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000245}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -16915,8 +13322,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000440}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000441}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000248}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000249}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -16929,8 +13336,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000444}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000445}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000252}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000253}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -16943,8 +13350,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000448}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000449}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000256}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000257}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -16957,8 +13364,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000452}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000453}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000260}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000261}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -16971,8 +13378,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000456}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000457}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000264}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000265}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -16985,8 +13392,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000460}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000461}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000268}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000269}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -16999,8 +13406,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000464}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000465}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000272}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000273}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17013,8 +13420,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000468}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000469}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000276}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000277}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17027,8 +13434,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000472}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000473}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000280}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000281}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17041,8 +13448,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000476}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000477}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000284}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000285}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17055,8 +13462,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000480}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000481}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000288}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000289}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17069,8 +13476,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000484}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000485}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000292}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000293}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17363,87 +13770,27 @@ OS:ZoneHVAC:Baseboard:Convective:Water, OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0104-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 10, !- Name + Zone HVAC Baseboard Convective Water 2, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000002}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0104-000000000003}, !- Handle - Zone HVAC Baseboard Convective Water 11, !- Name + Zone HVAC Baseboard Convective Water 3, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000003}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0104-000000000004}, !- Handle - Zone HVAC Baseboard Convective Water 12, !- Name + Zone HVAC Baseboard Convective Water 4, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000004}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0104-000000000005}, !- Handle - Zone HVAC Baseboard Convective Water 13, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000005}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000006}, !- Handle - Zone HVAC Baseboard Convective Water 14, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000006}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000007}, !- Handle - Zone HVAC Baseboard Convective Water 15, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000007}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000008}, !- Handle - Zone HVAC Baseboard Convective Water 2, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000008}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000009}, !- Handle - Zone HVAC Baseboard Convective Water 3, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000009}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000010}, !- Handle - Zone HVAC Baseboard Convective Water 4, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000010}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000011}, !- Handle Zone HVAC Baseboard Convective Water 5, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000011}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000012}, !- Handle - Zone HVAC Baseboard Convective Water 6, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000012}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000013}, !- Handle - Zone HVAC Baseboard Convective Water 7, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000013}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000014}, !- Handle - Zone HVAC Baseboard Convective Water 8, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000014}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0104-000000000015}, !- Handle - Zone HVAC Baseboard Convective Water 9, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000015}; !- Heating Coil Name + {00000000-0000-0000-0016-000000000005}; !- Heating Coil Name OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000001}, !- Handle @@ -17468,12 +13815,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000009}, !- Zone Equipment 1 + {00000000-0000-0000-0104-000000000003}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17484,12 +13831,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000008}, !- Zone Equipment 1 + {00000000-0000-0000-0104-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17500,12 +13847,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000010}, !- Zone Equipment 1 + {00000000-0000-0000-0104-000000000004}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17516,12 +13863,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000011}, !- Zone Equipment 1 + {00000000-0000-0000-0104-000000000005}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17547,159 +13894,59 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000012}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index dd3a313cce..ad71bea527 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -4632,41 +4632,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {87dec04a-501d-4bb8-8274-3502ca3abeb2}<23.9 && {87dec04a-501d-4bb8-8274-3502ca3abeb2}>1.7, !- Program Line 1 - SET {74fb786c-962a-4e6f-a61f-95db8969ad4b} = 29.4, !- Program Line 2 - SET {06d8e2b4-f484-44df-892f-c788e0b9298a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {87dec04a-501d-4bb8-8274-3502ca3abeb2}<23.9 && {87dec04a-501d-4bb8-8274-3502ca3abeb2}>1.7, !- Program Line 4 - SET {74fb786c-962a-4e6f-a61f-95db8969ad4b} = 29.4, !- Program Line 5 - SET {06d8e2b4-f484-44df-892f-c788e0b9298a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {87dec04a-501d-4bb8-8274-3502ca3abeb2}<23.9 && {87dec04a-501d-4bb8-8274-3502ca3abeb2}>1.7, !- Program Line 7 - SET {74fb786c-962a-4e6f-a61f-95db8969ad4b} = 29.4, !- Program Line 8 - SET {06d8e2b4-f484-44df-892f-c788e0b9298a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {87dec04a-501d-4bb8-8274-3502ca3abeb2}<23.9 && {87dec04a-501d-4bb8-8274-3502ca3abeb2}>1.7, !- Program Line 10 - SET {74fb786c-962a-4e6f-a61f-95db8969ad4b} = 29.4, !- Program Line 11 - SET {06d8e2b4-f484-44df-892f-c788e0b9298a} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a136324e-96c7-423d-842e-4abd4897e57b}<23.9 && {a136324e-96c7-423d-842e-4abd4897e57b}>1.7, !- Program Line 1 + SET {f1bbd5f3-bde3-4b77-9efe-a104531daa48} = 29.4, !- Program Line 2 + SET {1c056931-69f2-4803-bd0a-78d02c09b265} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a136324e-96c7-423d-842e-4abd4897e57b}<23.9 && {a136324e-96c7-423d-842e-4abd4897e57b}>1.7, !- Program Line 4 + SET {f1bbd5f3-bde3-4b77-9efe-a104531daa48} = 29.4, !- Program Line 5 + SET {1c056931-69f2-4803-bd0a-78d02c09b265} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a136324e-96c7-423d-842e-4abd4897e57b}<23.9 && {a136324e-96c7-423d-842e-4abd4897e57b}>1.7, !- Program Line 7 + SET {f1bbd5f3-bde3-4b77-9efe-a104531daa48} = 29.4, !- Program Line 8 + SET {1c056931-69f2-4803-bd0a-78d02c09b265} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a136324e-96c7-423d-842e-4abd4897e57b}<23.9 && {a136324e-96c7-423d-842e-4abd4897e57b}>1.7, !- Program Line 10 + SET {f1bbd5f3-bde3-4b77-9efe-a104531daa48} = 29.4, !- Program Line 11 + SET {1c056931-69f2-4803-bd0a-78d02c09b265} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {74fb786c-962a-4e6f-a61f-95db8969ad4b} = NULL, !- Program Line 14 - SET {06d8e2b4-f484-44df-892f-c788e0b9298a} = NULL, !- Program Line 15 + SET {f1bbd5f3-bde3-4b77-9efe-a104531daa48} = NULL, !- Program Line 14 + SET {1c056931-69f2-4803-bd0a-78d02c09b265} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {681a7781-5805-4610-8786-789976378165}<23.9 && {681a7781-5805-4610-8786-789976378165}>1.7, !- Program Line 1 - SET {c85c54e5-e99b-4d09-84f5-d89d299e5ec2} = 29.4, !- Program Line 2 - SET {6ce5b2aa-446c-4198-a546-b430ba968802} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {681a7781-5805-4610-8786-789976378165}<23.9 && {681a7781-5805-4610-8786-789976378165}>1.7, !- Program Line 4 - SET {c85c54e5-e99b-4d09-84f5-d89d299e5ec2} = 29.4, !- Program Line 5 - SET {6ce5b2aa-446c-4198-a546-b430ba968802} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {681a7781-5805-4610-8786-789976378165}<23.9 && {681a7781-5805-4610-8786-789976378165}>1.7, !- Program Line 7 - SET {c85c54e5-e99b-4d09-84f5-d89d299e5ec2} = 29.4, !- Program Line 8 - SET {6ce5b2aa-446c-4198-a546-b430ba968802} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {681a7781-5805-4610-8786-789976378165}<23.9 && {681a7781-5805-4610-8786-789976378165}>1.7, !- Program Line 10 - SET {c85c54e5-e99b-4d09-84f5-d89d299e5ec2} = 29.4, !- Program Line 11 - SET {6ce5b2aa-446c-4198-a546-b430ba968802} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {88104d2d-e1fc-42d8-8eb0-1cba61e1ca20}<23.9 && {88104d2d-e1fc-42d8-8eb0-1cba61e1ca20}>1.7, !- Program Line 1 + SET {492b0879-a727-4d81-8405-85dd94ac07f1} = 29.4, !- Program Line 2 + SET {535d7b26-9d52-4b9c-8a1f-d4ae5d8aa5c5} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {88104d2d-e1fc-42d8-8eb0-1cba61e1ca20}<23.9 && {88104d2d-e1fc-42d8-8eb0-1cba61e1ca20}>1.7, !- Program Line 4 + SET {492b0879-a727-4d81-8405-85dd94ac07f1} = 29.4, !- Program Line 5 + SET {535d7b26-9d52-4b9c-8a1f-d4ae5d8aa5c5} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {88104d2d-e1fc-42d8-8eb0-1cba61e1ca20}<23.9 && {88104d2d-e1fc-42d8-8eb0-1cba61e1ca20}>1.7, !- Program Line 7 + SET {492b0879-a727-4d81-8405-85dd94ac07f1} = 29.4, !- Program Line 8 + SET {535d7b26-9d52-4b9c-8a1f-d4ae5d8aa5c5} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {88104d2d-e1fc-42d8-8eb0-1cba61e1ca20}<23.9 && {88104d2d-e1fc-42d8-8eb0-1cba61e1ca20}>1.7, !- Program Line 10 + SET {492b0879-a727-4d81-8405-85dd94ac07f1} = 29.4, !- Program Line 11 + SET {535d7b26-9d52-4b9c-8a1f-d4ae5d8aa5c5} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c85c54e5-e99b-4d09-84f5-d89d299e5ec2} = NULL, !- Program Line 14 - SET {6ce5b2aa-446c-4198-a546-b430ba968802} = NULL, !- Program Line 15 + SET {492b0879-a727-4d81-8405-85dd94ac07f1} = NULL, !- Program Line 14 + SET {535d7b26-9d52-4b9c-8a1f-d4ae5d8aa5c5} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 605589ec78..66de795763 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -4702,41 +4702,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e97af78e-1b3e-4b95-b2fb-28ee84d7194e}<23.9 && {e97af78e-1b3e-4b95-b2fb-28ee84d7194e}>1.7, !- Program Line 1 - SET {0c5724e9-8c92-4111-bee6-4d6d5daeb7f7} = 29.4, !- Program Line 2 - SET {df0df545-2dbe-40f4-a6a9-b1a4f222bf64} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e97af78e-1b3e-4b95-b2fb-28ee84d7194e}<23.9 && {e97af78e-1b3e-4b95-b2fb-28ee84d7194e}>1.7, !- Program Line 4 - SET {0c5724e9-8c92-4111-bee6-4d6d5daeb7f7} = 29.4, !- Program Line 5 - SET {df0df545-2dbe-40f4-a6a9-b1a4f222bf64} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e97af78e-1b3e-4b95-b2fb-28ee84d7194e}<23.9 && {e97af78e-1b3e-4b95-b2fb-28ee84d7194e}>1.7, !- Program Line 7 - SET {0c5724e9-8c92-4111-bee6-4d6d5daeb7f7} = 29.4, !- Program Line 8 - SET {df0df545-2dbe-40f4-a6a9-b1a4f222bf64} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e97af78e-1b3e-4b95-b2fb-28ee84d7194e}<23.9 && {e97af78e-1b3e-4b95-b2fb-28ee84d7194e}>1.7, !- Program Line 10 - SET {0c5724e9-8c92-4111-bee6-4d6d5daeb7f7} = 29.4, !- Program Line 11 - SET {df0df545-2dbe-40f4-a6a9-b1a4f222bf64} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1587f656-481f-4a83-830e-277c0708f37d}<23.9 && {1587f656-481f-4a83-830e-277c0708f37d}>1.7, !- Program Line 1 + SET {db8a43f9-98eb-406c-8957-67cea02c6329} = 29.4, !- Program Line 2 + SET {706ed1da-7abb-4580-b15a-3e1495b29dce} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1587f656-481f-4a83-830e-277c0708f37d}<23.9 && {1587f656-481f-4a83-830e-277c0708f37d}>1.7, !- Program Line 4 + SET {db8a43f9-98eb-406c-8957-67cea02c6329} = 29.4, !- Program Line 5 + SET {706ed1da-7abb-4580-b15a-3e1495b29dce} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1587f656-481f-4a83-830e-277c0708f37d}<23.9 && {1587f656-481f-4a83-830e-277c0708f37d}>1.7, !- Program Line 7 + SET {db8a43f9-98eb-406c-8957-67cea02c6329} = 29.4, !- Program Line 8 + SET {706ed1da-7abb-4580-b15a-3e1495b29dce} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1587f656-481f-4a83-830e-277c0708f37d}<23.9 && {1587f656-481f-4a83-830e-277c0708f37d}>1.7, !- Program Line 10 + SET {db8a43f9-98eb-406c-8957-67cea02c6329} = 29.4, !- Program Line 11 + SET {706ed1da-7abb-4580-b15a-3e1495b29dce} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0c5724e9-8c92-4111-bee6-4d6d5daeb7f7} = NULL, !- Program Line 14 - SET {df0df545-2dbe-40f4-a6a9-b1a4f222bf64} = NULL, !- Program Line 15 + SET {db8a43f9-98eb-406c-8957-67cea02c6329} = NULL, !- Program Line 14 + SET {706ed1da-7abb-4580-b15a-3e1495b29dce} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c87f13d6-0cbe-40e7-ae20-533d19c0fd0d}<23.9 && {c87f13d6-0cbe-40e7-ae20-533d19c0fd0d}>1.7, !- Program Line 1 - SET {e8158723-b38a-4f13-95fc-a70ed2bb8a4f} = 29.4, !- Program Line 2 - SET {aa04f5db-f318-4df7-aee8-f9f85a5d6e42} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c87f13d6-0cbe-40e7-ae20-533d19c0fd0d}<23.9 && {c87f13d6-0cbe-40e7-ae20-533d19c0fd0d}>1.7, !- Program Line 4 - SET {e8158723-b38a-4f13-95fc-a70ed2bb8a4f} = 29.4, !- Program Line 5 - SET {aa04f5db-f318-4df7-aee8-f9f85a5d6e42} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c87f13d6-0cbe-40e7-ae20-533d19c0fd0d}<23.9 && {c87f13d6-0cbe-40e7-ae20-533d19c0fd0d}>1.7, !- Program Line 7 - SET {e8158723-b38a-4f13-95fc-a70ed2bb8a4f} = 29.4, !- Program Line 8 - SET {aa04f5db-f318-4df7-aee8-f9f85a5d6e42} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c87f13d6-0cbe-40e7-ae20-533d19c0fd0d}<23.9 && {c87f13d6-0cbe-40e7-ae20-533d19c0fd0d}>1.7, !- Program Line 10 - SET {e8158723-b38a-4f13-95fc-a70ed2bb8a4f} = 29.4, !- Program Line 11 - SET {aa04f5db-f318-4df7-aee8-f9f85a5d6e42} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5f498ea9-65db-4634-8702-4eddc07d8272}<23.9 && {5f498ea9-65db-4634-8702-4eddc07d8272}>1.7, !- Program Line 1 + SET {81b0ed58-d2e4-4646-9c74-4304efaf2462} = 29.4, !- Program Line 2 + SET {bab97f28-3b5c-4880-b3c2-49f494a59bbc} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5f498ea9-65db-4634-8702-4eddc07d8272}<23.9 && {5f498ea9-65db-4634-8702-4eddc07d8272}>1.7, !- Program Line 4 + SET {81b0ed58-d2e4-4646-9c74-4304efaf2462} = 29.4, !- Program Line 5 + SET {bab97f28-3b5c-4880-b3c2-49f494a59bbc} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5f498ea9-65db-4634-8702-4eddc07d8272}<23.9 && {5f498ea9-65db-4634-8702-4eddc07d8272}>1.7, !- Program Line 7 + SET {81b0ed58-d2e4-4646-9c74-4304efaf2462} = 29.4, !- Program Line 8 + SET {bab97f28-3b5c-4880-b3c2-49f494a59bbc} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5f498ea9-65db-4634-8702-4eddc07d8272}<23.9 && {5f498ea9-65db-4634-8702-4eddc07d8272}>1.7, !- Program Line 10 + SET {81b0ed58-d2e4-4646-9c74-4304efaf2462} = 29.4, !- Program Line 11 + SET {bab97f28-3b5c-4880-b3c2-49f494a59bbc} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e8158723-b38a-4f13-95fc-a70ed2bb8a4f} = NULL, !- Program Line 14 - SET {aa04f5db-f318-4df7-aee8-f9f85a5d6e42} = NULL, !- Program Line 15 + SET {81b0ed58-d2e4-4646-9c74-4304efaf2462} = NULL, !- Program Line 14 + SET {bab97f28-3b5c-4880-b3c2-49f494a59bbc} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2017-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2017-Electricity-CAN_AB_Calgary.osm index 26978538cc..efee4101f4 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2017-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2017-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0064-000000000027}, !- Object Name + {00000000-0000-0000-0064-000000000023}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.066608825093468, !- Feature Value 1 @@ -16,94 +16,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0064-000000000025}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.066608825093468, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0064-000000000026}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.066608825093468, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0011-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0001-000000000003}, !- Handle {00000000-0000-0000-0011-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0064-000000000025}, !- Availability Schedule - {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0015-000000000139}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0015-000000000142}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0015-000000000141}, !- Demand Side Inlet Node A - {00000000-0000-0000-0015-000000000140}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0064-000000000026}, !- Availability Schedule - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0015-000000000189}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0015-000000000192}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0015-000000000191}, !- Demand Side Inlet Node A - {00000000-0000-0000-0015-000000000190}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0064-000000000027}, !- Availability Schedule - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0064-000000000023}, !- Availability Schedule + {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -127,32 +51,10 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0015-000000000104}, !- Mixed Air Node Name - {00000000-0000-0000-0015-000000000327}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0015-000000000328}, !- Relief Air Stream Node Name + {00000000-0000-0000-0015-000000000227}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0015-000000000228}, !- Relief Air Stream Node Name {00000000-0000-0000-0015-000000000108}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000002}, !- Handle - Air Loop HVAC Outdoor Air System 2, !- Name - {00000000-0000-0000-0020-000000000002}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0015-000000000154}, !- Mixed Air Node Name - {00000000-0000-0000-0015-000000000333}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0015-000000000334}, !- Relief Air Stream Node Name - {00000000-0000-0000-0015-000000000158}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0020-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0015-000000000204}, !- Mixed Air Node Name - {00000000-0000-0000-0015-000000000339}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0015-000000000340}, !- Relief Air Stream Node Name - {00000000-0000-0000-0015-000000000208}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -163,26 +65,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0015-000000000129}, !- Inlet Node Name 4 {00000000-0000-0000-0015-000000000135}; !- Inlet Node Name 5 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000002}, !- Handle - Air Loop HVAC Zone Mixer 2, !- Name - {00000000-0000-0000-0015-000000000144}, !- Outlet Node Name - {00000000-0000-0000-0015-000000000161}, !- Inlet Node Name 1 - {00000000-0000-0000-0015-000000000167}, !- Inlet Node Name 2 - {00000000-0000-0000-0015-000000000173}, !- Inlet Node Name 3 - {00000000-0000-0000-0015-000000000179}, !- Inlet Node Name 4 - {00000000-0000-0000-0015-000000000185}; !- Inlet Node Name 5 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0015-000000000194}, !- Outlet Node Name - {00000000-0000-0000-0015-000000000211}, !- Inlet Node Name 1 - {00000000-0000-0000-0015-000000000217}, !- Inlet Node Name 2 - {00000000-0000-0000-0015-000000000223}, !- Inlet Node Name 3 - {00000000-0000-0000-0015-000000000229}, !- Inlet Node Name 4 - {00000000-0000-0000-0015-000000000235}; !- Inlet Node Name 5 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -193,26 +75,6 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0015-000000000130}, !- Outlet Node Name 4 {00000000-0000-0000-0015-000000000136}; !- Outlet Node Name 5 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000002}, !- Handle - Air Loop HVAC Zone Splitter 2, !- Name - {00000000-0000-0000-0015-000000000143}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000162}, !- Outlet Node Name 1 - {00000000-0000-0000-0015-000000000168}, !- Outlet Node Name 2 - {00000000-0000-0000-0015-000000000174}, !- Outlet Node Name 3 - {00000000-0000-0000-0015-000000000180}, !- Outlet Node Name 4 - {00000000-0000-0000-0015-000000000186}; !- Outlet Node Name 5 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0015-000000000193}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000212}, !- Outlet Node Name 1 - {00000000-0000-0000-0015-000000000218}, !- Outlet Node Name 2 - {00000000-0000-0000-0015-000000000224}, !- Outlet Node Name 3 - {00000000-0000-0000-0015-000000000230}, !- Outlet Node Name 4 - {00000000-0000-0000-0015-000000000236}; !- Outlet Node Name 5 - OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -223,7 +85,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000011}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000114}, !- Air Outlet Node Name @@ -236,132 +98,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000187}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000188}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000213}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000214}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000219}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000220}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000225}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000226}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000231}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000009}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000232}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000237}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000010}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000238}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000119}, !- Air Inlet Node Name @@ -370,7 +106,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000012}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000120}, !- Air Outlet Node Name @@ -382,7 +118,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000009}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000125}, !- Air Inlet Node Name @@ -391,7 +127,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000013}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000126}, !- Air Outlet Node Name @@ -403,7 +139,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000010}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000131}, !- Air Inlet Node Name @@ -412,7 +148,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000014}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000005}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000132}, !- Air Outlet Node Name @@ -424,7 +160,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000011}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000137}, !- Air Inlet Node Name @@ -433,7 +169,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000015}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000138}, !- Air Outlet Node Name @@ -444,90 +180,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000163}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000017}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000164}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000169}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000018}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000170}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000175}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000176}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000181}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000182}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -542,59 +194,21 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0049-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0049-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0061-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0061-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000003}, !- Handle Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000004}, !- Handle + {00000000-0000-0000-0008-000000000002}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000005}, !- Handle + {00000000-0000-0000-0008-000000000003}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000006}, !- Handle + {00000000-0000-0000-0008-000000000004}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Building, @@ -646,8 +260,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0011-000000000001}, !- Handle - Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton, !- Name - 237968.431950895, !- Reference Capacity {W} + Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton, !- Name + 95292.0324647093, !- Reference Capacity {W} 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -690,9 +304,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0024-000000000007}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0024-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0024-000000000005}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0024-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -743,42 +357,6 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0013-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0015-000000000146}, !- Water Inlet Node Name - {00000000-0000-0000-0015-000000000147}, !- Water Outlet Node Name - {00000000-0000-0000-0015-000000000155}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000152}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0013-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0015-000000000196}, !- Water Inlet Node Name - {00000000-0000-0000-0015-000000000197}, !- Water Outlet Node Name - {00000000-0000-0000-0015-000000000205}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000202}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000001}, !- Handle Coil Heating Electric 1, !- Name @@ -790,154 +368,46 @@ OS:Coil:Heating:Electric, OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000002}, !- Handle - Coil Heating Electric 10, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11020.0849056244, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000003}, !- Handle - Coil Heating Electric 11, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 6187.80405521393, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000004}, !- Handle - Coil Heating Electric 12, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11857.871389389, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000005}, !- Handle - Coil Heating Electric 13, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0015-000000000203}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000200}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000006}, !- Handle - Coil Heating Electric 14, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 22238.1554603577, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000007}, !- Handle - Coil Heating Electric 15, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 13827.2543907166, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000008}, !- Handle - Coil Heating Electric 16, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11500.2985954285, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000009}, !- Handle - Coil Heating Electric 17, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 7091.35980606079, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000010}, !- Handle - Coil Heating Electric 18, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 12537.4444484711, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000011}, !- Handle Coil Heating Electric 2, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 13067.0129299164, !- Nominal Capacity {W} + 24868.4987068176, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000012}, !- Handle + {00000000-0000-0000-0014-000000000003}, !- Handle Coil Heating Electric 3, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 11280.1081180573, !- Nominal Capacity {W} + 14588.2245540619, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000013}, !- Handle + {00000000-0000-0000-0014-000000000004}, !- Handle Coil Heating Electric 4, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 10132.8232526779, !- Nominal Capacity {W} + 12384.0525627136, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000014}, !- Handle + {00000000-0000-0000-0014-000000000005}, !- Handle Coil Heating Electric 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 5639.30861949921, !- Nominal Capacity {W} + 6629.09781932831, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000015}, !- Handle + {00000000-0000-0000-0014-000000000006}, !- Handle Coil Heating Electric 6, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 11510.5686664581, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000016}, !- Handle - Coil Heating Electric 7, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0015-000000000153}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000150}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000017}, !- Handle - Coil Heating Electric 8, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 18493.941450119, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000018}, !- Handle - Coil Heating Electric 9, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 12915.1157855988, !- Nominal Capacity {W} + 13672.8299617767, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name @@ -1071,35 +541,35 @@ OS:Connection, {00000000-0000-0000-0015-000000000019}, !- Handle {00000000-0000-0000-0091-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000025}, !- Target Object + {00000000-0000-0000-0050-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000020}, !- Handle {00000000-0000-0000-0091-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000035}, !- Target Object + {00000000-0000-0000-0050-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000021}, !- Handle {00000000-0000-0000-0091-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000027}, !- Target Object + {00000000-0000-0000-0050-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000022}, !- Handle {00000000-0000-0000-0091-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000029}, !- Target Object + {00000000-0000-0000-0050-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000023}, !- Handle {00000000-0000-0000-0091-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000017}, !- Target Object + {00000000-0000-0000-0050-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1113,14 +583,14 @@ OS:Connection, {00000000-0000-0000-0015-000000000025}, !- Handle {00000000-0000-0000-0091-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000031}, !- Target Object + {00000000-0000-0000-0050-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000026}, !- Handle {00000000-0000-0000-0091-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000019}, !- Target Object + {00000000-0000-0000-0050-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1134,7 +604,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000028}, !- Handle {00000000-0000-0000-0091-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000033}, !- Target Object + {00000000-0000-0000-0050-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1155,7 +625,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000031}, !- Handle {00000000-0000-0000-0091-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000021}, !- Target Object + {00000000-0000-0000-0050-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1176,7 +646,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000034}, !- Handle {00000000-0000-0000-0091-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000023}, !- Target Object + {00000000-0000-0000-0050-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1197,19 +667,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000037}, !- Handle {00000000-0000-0000-0055-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000068}, !- Target Object + {00000000-0000-0000-0050-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000038}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000137}, !- Target Object + {00000000-0000-0000-0050-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000039}, !- Handle - {00000000-0000-0000-0050-000000000069}, !- Source Object + {00000000-0000-0000-0050-000000000039}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000001}, !- Target Object 15; !- Inlet Port @@ -1218,12 +688,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000040}, !- Handle {00000000-0000-0000-0055-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000066}, !- Target Object + {00000000-0000-0000-0050-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000041}, !- Handle - {00000000-0000-0000-0050-000000000066}, !- Source Object + {00000000-0000-0000-0050-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000002}, !- Target Object 2; !- Inlet Port @@ -1232,26 +702,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000042}, !- Handle {00000000-0000-0000-0017-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000070}, !- Target Object + {00000000-0000-0000-0050-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000043}, !- Handle {00000000-0000-0000-0016-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000067}, !- Target Object + {00000000-0000-0000-0050-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000044}, !- Handle - {00000000-0000-0000-0050-000000000067}, !- Source Object + {00000000-0000-0000-0050-000000000037}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000045}, !- Handle - {00000000-0000-0000-0050-000000000068}, !- Source Object + {00000000-0000-0000-0050-000000000038}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000001}, !- Target Object 2; !- Inlet Port @@ -1260,19 +730,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000046}, !- Handle {00000000-0000-0000-0058-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000139}, !- Target Object + {00000000-0000-0000-0050-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000047}, !- Handle - {00000000-0000-0000-0050-000000000139}, !- Source Object + {00000000-0000-0000-0050-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000048}, !- Handle - {00000000-0000-0000-0050-000000000137}, !- Source Object + {00000000-0000-0000-0050-000000000099}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000001}, !- Target Object 15; !- Inlet Port @@ -1281,12 +751,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000049}, !- Handle {00000000-0000-0000-0011-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000138}, !- Target Object + {00000000-0000-0000-0050-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000050}, !- Handle - {00000000-0000-0000-0050-000000000138}, !- Source Object + {00000000-0000-0000-0050-000000000100}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 3; !- Inlet Port @@ -1295,12 +765,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000051}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000143}, !- Target Object + {00000000-0000-0000-0050-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000052}, !- Handle - {00000000-0000-0000-0050-000000000143}, !- Source Object + {00000000-0000-0000-0050-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000002}, !- Target Object 15; !- Inlet Port @@ -1309,12 +779,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000053}, !- Handle {00000000-0000-0000-0011-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000144}, !- Target Object + {00000000-0000-0000-0050-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000054}, !- Handle - {00000000-0000-0000-0050-000000000144}, !- Source Object + {00000000-0000-0000-0050-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 4; !- Inlet Port @@ -1323,12 +793,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000055}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000123}, !- Target Object + {00000000-0000-0000-0050-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000056}, !- Handle - {00000000-0000-0000-0050-000000000123}, !- Source Object + {00000000-0000-0000-0050-000000000085}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000001}, !- Target Object 2; !- Inlet Port @@ -1337,12 +807,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000057}, !- Handle {00000000-0000-0000-0054-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000124}, !- Target Object + {00000000-0000-0000-0050-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000058}, !- Handle - {00000000-0000-0000-0050-000000000124}, !- Source Object + {00000000-0000-0000-0050-000000000086}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port @@ -1351,12 +821,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000059}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000125}, !- Target Object + {00000000-0000-0000-0050-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000060}, !- Handle - {00000000-0000-0000-0050-000000000125}, !- Source Object + {00000000-0000-0000-0050-000000000087}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000002}, !- Target Object 2; !- Inlet Port @@ -1365,26 +835,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000061}, !- Handle {00000000-0000-0000-0054-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000069}, !- Target Object + {00000000-0000-0000-0050-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000062}, !- Handle {00000000-0000-0000-0055-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000084}, !- Target Object + {00000000-0000-0000-0050-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000063}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000086}, !- Target Object + {00000000-0000-0000-0050-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000064}, !- Handle - {00000000-0000-0000-0050-000000000085}, !- Source Object + {00000000-0000-0000-0050-000000000047}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000002}, !- Target Object 15; !- Inlet Port @@ -1393,12 +863,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000065}, !- Handle {00000000-0000-0000-0055-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000082}, !- Target Object + {00000000-0000-0000-0050-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000066}, !- Handle - {00000000-0000-0000-0050-000000000082}, !- Source Object + {00000000-0000-0000-0050-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000004}, !- Target Object 2; !- Inlet Port @@ -1407,26 +877,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000067}, !- Handle {00000000-0000-0000-0017-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000135}, !- Target Object + {00000000-0000-0000-0050-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000068}, !- Handle {00000000-0000-0000-0016-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000083}, !- Target Object + {00000000-0000-0000-0050-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000069}, !- Handle - {00000000-0000-0000-0050-000000000083}, !- Source Object + {00000000-0000-0000-0050-000000000045}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000070}, !- Handle - {00000000-0000-0000-0050-000000000084}, !- Source Object + {00000000-0000-0000-0050-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000002}, !- Target Object 2; !- Inlet Port @@ -1435,19 +905,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000071}, !- Handle {00000000-0000-0000-0058-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000140}, !- Target Object + {00000000-0000-0000-0050-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000072}, !- Handle - {00000000-0000-0000-0050-000000000140}, !- Source Object + {00000000-0000-0000-0050-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000073}, !- Handle - {00000000-0000-0000-0050-000000000086}, !- Source Object + {00000000-0000-0000-0050-000000000048}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0023-000000000001}, !- Target Object 2; !- Inlet Port @@ -1456,12 +926,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000074}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000087}, !- Target Object + {00000000-0000-0000-0050-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000075}, !- Handle - {00000000-0000-0000-0050-000000000087}, !- Source Object + {00000000-0000-0000-0050-000000000049}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000003}, !- Target Object 3; !- Inlet Port @@ -1470,12 +940,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000076}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000126}, !- Target Object + {00000000-0000-0000-0050-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000077}, !- Handle - {00000000-0000-0000-0050-000000000126}, !- Source Object + {00000000-0000-0000-0050-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000003}, !- Target Object 2; !- Inlet Port @@ -1484,12 +954,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000078}, !- Handle {00000000-0000-0000-0054-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000127}, !- Target Object + {00000000-0000-0000-0050-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000079}, !- Handle - {00000000-0000-0000-0050-000000000127}, !- Source Object + {00000000-0000-0000-0050-000000000089}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000003}, !- Target Object 4; !- Inlet Port @@ -1498,12 +968,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000080}, !- Handle {00000000-0000-0000-0016-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000128}, !- Target Object + {00000000-0000-0000-0050-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000081}, !- Handle - {00000000-0000-0000-0050-000000000128}, !- Source Object + {00000000-0000-0000-0050-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000004}, !- Target Object 2; !- Inlet Port @@ -1512,12 +982,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000082}, !- Handle {00000000-0000-0000-0054-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000085}, !- Target Object + {00000000-0000-0000-0050-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000083}, !- Handle - {00000000-0000-0000-0050-000000000135}, !- Source Object + {00000000-0000-0000-0050-000000000097}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000001}, !- Target Object 17; !- Inlet Port @@ -1526,12 +996,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000084}, !- Handle {00000000-0000-0000-0011-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000136}, !- Target Object + {00000000-0000-0000-0050-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000085}, !- Handle - {00000000-0000-0000-0050-000000000136}, !- Source Object + {00000000-0000-0000-0050-000000000098}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000004}, !- Target Object 3; !- Inlet Port @@ -1540,12 +1010,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000086}, !- Handle {00000000-0000-0000-0017-000000000004}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000141}, !- Target Object + {00000000-0000-0000-0050-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000087}, !- Handle - {00000000-0000-0000-0050-000000000141}, !- Source Object + {00000000-0000-0000-0050-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000002}, !- Target Object 17; !- Inlet Port @@ -1554,1785 +1024,1001 @@ OS:Connection, {00000000-0000-0000-0015-000000000088}, !- Handle {00000000-0000-0000-0011-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000142}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000089}, !- Handle - {00000000-0000-0000-0050-000000000142}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000090}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000167}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000091}, !- Handle - {00000000-0000-0000-0050-000000000168}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000092}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000162}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000093}, !- Handle - {00000000-0000-0000-0050-000000000163}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000094}, !- Handle - {00000000-0000-0000-0050-000000000162}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000095}, !- Handle - {00000000-0000-0000-0004-000000000001}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000163}, !- Target Object + {00000000-0000-0000-0050-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000096}, !- Handle - {00000000-0000-0000-0050-000000000070}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000097}, !- Handle - {00000000-0000-0000-0013-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000072}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000098}, !- Handle - {00000000-0000-0000-0050-000000000072}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000099}, !- Handle - {00000000-0000-0000-0039-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000168}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000100}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000079}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000101}, !- Handle - {00000000-0000-0000-0050-000000000079}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000006}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000102}, !- Handle - {00000000-0000-0000-0013-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000071}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000103}, !- Handle - {00000000-0000-0000-0050-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000104}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000105}, !- Handle - {00000000-0000-0000-0050-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000106}, !- Handle - {00000000-0000-0000-0050-000000000167}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000003}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000107}, !- Handle - {00000000-0000-0000-0039-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000147}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000108}, !- Handle - {00000000-0000-0000-0050-000000000147}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000109}, !- Handle - {00000000-0000-0000-0050-000000000037}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000110}, !- Handle - {00000000-0000-0000-0056-000000000018}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000111}, !- Handle - {00000000-0000-0000-0050-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000112}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000036}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000113}, !- Handle - {00000000-0000-0000-0050-000000000036}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000001}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000114}, !- Handle - {00000000-0000-0000-0006-000000000001}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000037}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000115}, !- Handle - {00000000-0000-0000-0050-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000116}, !- Handle - {00000000-0000-0000-0056-000000000042}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000117}, !- Handle - {00000000-0000-0000-0050-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000118}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000050}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000119}, !- Handle - {00000000-0000-0000-0050-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000120}, !- Handle - {00000000-0000-0000-0006-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000051}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000121}, !- Handle - {00000000-0000-0000-0050-000000000053}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000031}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000122}, !- Handle - {00000000-0000-0000-0056-000000000033}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000123}, !- Handle - {00000000-0000-0000-0050-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000124}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000125}, !- Handle - {00000000-0000-0000-0050-000000000052}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000009}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000126}, !- Handle - {00000000-0000-0000-0006-000000000009}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000053}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000127}, !- Handle - {00000000-0000-0000-0050-000000000055}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000128}, !- Handle - {00000000-0000-0000-0056-000000000051}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000129}, !- Handle - {00000000-0000-0000-0050-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000130}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000054}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000131}, !- Handle - {00000000-0000-0000-0050-000000000054}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000010}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000132}, !- Handle - {00000000-0000-0000-0006-000000000010}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000055}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000133}, !- Handle - {00000000-0000-0000-0050-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000134}, !- Handle - {00000000-0000-0000-0056-000000000054}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000012}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000135}, !- Handle - {00000000-0000-0000-0050-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000136}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000056}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000137}, !- Handle - {00000000-0000-0000-0050-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000011}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000138}, !- Handle - {00000000-0000-0000-0006-000000000011}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000057}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000139}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000153}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000140}, !- Handle - {00000000-0000-0000-0050-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000141}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000148}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000142}, !- Handle - {00000000-0000-0000-0050-000000000149}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000143}, !- Handle - {00000000-0000-0000-0050-000000000148}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000144}, !- Handle - {00000000-0000-0000-0004-000000000002}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000149}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000145}, !- Handle - {00000000-0000-0000-0017-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000073}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000146}, !- Handle - {00000000-0000-0000-0050-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000002}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000147}, !- Handle - {00000000-0000-0000-0013-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000075}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000148}, !- Handle - {00000000-0000-0000-0050-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000149}, !- Handle - {00000000-0000-0000-0039-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000150}, !- Handle - {00000000-0000-0000-0014-000000000016}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000081}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000151}, !- Handle - {00000000-0000-0000-0050-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000004}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000152}, !- Handle - {00000000-0000-0000-0013-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000074}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000153}, !- Handle - {00000000-0000-0000-0050-000000000074}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000016}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000154}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000150}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000155}, !- Handle - {00000000-0000-0000-0050-000000000150}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000156}, !- Handle - {00000000-0000-0000-0050-000000000153}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000001}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000157}, !- Handle - {00000000-0000-0000-0039-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000145}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000158}, !- Handle - {00000000-0000-0000-0050-000000000145}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000159}, !- Handle - {00000000-0000-0000-0050-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000160}, !- Handle - {00000000-0000-0000-0056-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000024}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000161}, !- Handle - {00000000-0000-0000-0050-000000000024}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000162}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000163}, !- Handle - {00000000-0000-0000-0050-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000012}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000164}, !- Handle - {00000000-0000-0000-0006-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000059}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000165}, !- Handle - {00000000-0000-0000-0050-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000037}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000166}, !- Handle - {00000000-0000-0000-0056-000000000039}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000020}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000167}, !- Handle - {00000000-0000-0000-0050-000000000020}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000168}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000060}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000169}, !- Handle - {00000000-0000-0000-0050-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000013}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000170}, !- Handle - {00000000-0000-0000-0006-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000171}, !- Handle - {00000000-0000-0000-0050-000000000063}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000172}, !- Handle - {00000000-0000-0000-0056-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000173}, !- Handle - {00000000-0000-0000-0050-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000174}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000062}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000175}, !- Handle - {00000000-0000-0000-0050-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000014}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000176}, !- Handle - {00000000-0000-0000-0006-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000063}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000177}, !- Handle - {00000000-0000-0000-0050-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000178}, !- Handle - {00000000-0000-0000-0056-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000179}, !- Handle - {00000000-0000-0000-0050-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000180}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000181}, !- Handle - {00000000-0000-0000-0050-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000015}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000182}, !- Handle - {00000000-0000-0000-0006-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000183}, !- Handle - {00000000-0000-0000-0050-000000000039}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000184}, !- Handle - {00000000-0000-0000-0056-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000185}, !- Handle - {00000000-0000-0000-0050-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000186}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000187}, !- Handle - {00000000-0000-0000-0050-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000188}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000039}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000089}, !- Handle + {00000000-0000-0000-0050-000000000104}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000189}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000090}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000160}, !- Target Object + {00000000-0000-0000-0050-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000190}, !- Handle - {00000000-0000-0000-0050-000000000161}, !- Source Object + {00000000-0000-0000-0015-000000000091}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000191}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000092}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000155}, !- Target Object + {00000000-0000-0000-0050-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000192}, !- Handle - {00000000-0000-0000-0050-000000000156}, !- Source Object + {00000000-0000-0000-0015-000000000093}, !- Handle + {00000000-0000-0000-0050-000000000109}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000193}, !- Handle - {00000000-0000-0000-0050-000000000155}, !- Source Object + {00000000-0000-0000-0015-000000000094}, !- Handle + {00000000-0000-0000-0050-000000000108}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object + {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000194}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000095}, !- Handle + {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000156}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000195}, !- Handle - {00000000-0000-0000-0017-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000076}, !- Target Object + {00000000-0000-0000-0050-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000196}, !- Handle - {00000000-0000-0000-0050-000000000076}, !- Source Object + {00000000-0000-0000-0015-000000000096}, !- Handle + {00000000-0000-0000-0050-000000000040}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000003}, !- Target Object + {00000000-0000-0000-0013-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000197}, !- Handle - {00000000-0000-0000-0013-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000097}, !- Handle + {00000000-0000-0000-0013-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000078}, !- Target Object + {00000000-0000-0000-0050-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000198}, !- Handle - {00000000-0000-0000-0050-000000000078}, !- Source Object + {00000000-0000-0000-0015-000000000098}, !- Handle + {00000000-0000-0000-0050-000000000042}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000002}, !- Target Object - 5; !- Inlet Port + 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000199}, !- Handle - {00000000-0000-0000-0039-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000099}, !- Handle + {00000000-0000-0000-0039-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000161}, !- Target Object + {00000000-0000-0000-0050-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000200}, !- Handle - {00000000-0000-0000-0014-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000100}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000080}, !- Target Object + {00000000-0000-0000-0050-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000201}, !- Handle - {00000000-0000-0000-0050-000000000080}, !- Source Object + {00000000-0000-0000-0015-000000000101}, !- Handle + {00000000-0000-0000-0050-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000005}, !- Target Object + {00000000-0000-0000-0039-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000202}, !- Handle - {00000000-0000-0000-0013-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000102}, !- Handle + {00000000-0000-0000-0013-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000077}, !- Target Object + {00000000-0000-0000-0050-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000203}, !- Handle - {00000000-0000-0000-0050-000000000077}, !- Source Object + {00000000-0000-0000-0015-000000000103}, !- Handle + {00000000-0000-0000-0050-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000005}, !- Target Object + {00000000-0000-0000-0014-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000204}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000104}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000157}, !- Target Object + {00000000-0000-0000-0050-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000205}, !- Handle - {00000000-0000-0000-0050-000000000157}, !- Source Object + {00000000-0000-0000-0015-000000000105}, !- Handle + {00000000-0000-0000-0050-000000000110}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000003}, !- Target Object + {00000000-0000-0000-0013-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000206}, !- Handle - {00000000-0000-0000-0050-000000000160}, !- Source Object + {00000000-0000-0000-0015-000000000106}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000002}, !- Target Object + {00000000-0000-0000-0039-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000207}, !- Handle - {00000000-0000-0000-0039-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000107}, !- Handle + {00000000-0000-0000-0039-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000146}, !- Target Object + {00000000-0000-0000-0050-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000208}, !- Handle - {00000000-0000-0000-0050-000000000146}, !- Source Object + {00000000-0000-0000-0015-000000000108}, !- Handle + {00000000-0000-0000-0050-000000000107}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object + {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000209}, !- Handle - {00000000-0000-0000-0050-000000000041}, !- Source Object + {00000000-0000-0000-0015-000000000109}, !- Handle + {00000000-0000-0000-0050-000000000027}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000010}, !- Target Object + {00000000-0000-0000-0056-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000210}, !- Handle - {00000000-0000-0000-0056-000000000012}, !- Source Object + {00000000-0000-0000-0015-000000000110}, !- Handle + {00000000-0000-0000-0056-000000000018}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000028}, !- Target Object + {00000000-0000-0000-0050-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000211}, !- Handle - {00000000-0000-0000-0050-000000000028}, !- Source Object + {00000000-0000-0000-0015-000000000111}, !- Handle + {00000000-0000-0000-0050-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000212}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000112}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000040}, !- Target Object + {00000000-0000-0000-0050-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000213}, !- Handle - {00000000-0000-0000-0050-000000000040}, !- Source Object + {00000000-0000-0000-0015-000000000113}, !- Handle + {00000000-0000-0000-0050-000000000026}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object + {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000214}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000114}, !- Handle + {00000000-0000-0000-0006-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000041}, !- Target Object + {00000000-0000-0000-0050-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000215}, !- Handle - {00000000-0000-0000-0050-000000000043}, !- Source Object + {00000000-0000-0000-0015-000000000115}, !- Handle + {00000000-0000-0000-0050-000000000029}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000004}, !- Target Object + {00000000-0000-0000-0056-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000216}, !- Handle - {00000000-0000-0000-0056-000000000006}, !- Source Object + {00000000-0000-0000-0015-000000000116}, !- Handle + {00000000-0000-0000-0056-000000000042}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000034}, !- Target Object + {00000000-0000-0000-0050-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000217}, !- Handle - {00000000-0000-0000-0050-000000000034}, !- Source Object + {00000000-0000-0000-0015-000000000117}, !- Handle + {00000000-0000-0000-0050-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000218}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000118}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000042}, !- Target Object + {00000000-0000-0000-0050-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000219}, !- Handle - {00000000-0000-0000-0050-000000000042}, !- Source Object + {00000000-0000-0000-0015-000000000119}, !- Handle + {00000000-0000-0000-0050-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object + {00000000-0000-0000-0006-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000220}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object + {00000000-0000-0000-0015-000000000120}, !- Handle + {00000000-0000-0000-0006-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000043}, !- Target Object + {00000000-0000-0000-0050-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000221}, !- Handle - {00000000-0000-0000-0050-000000000045}, !- Source Object + {00000000-0000-0000-0015-000000000121}, !- Handle + {00000000-0000-0000-0050-000000000031}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000007}, !- Target Object + {00000000-0000-0000-0056-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000222}, !- Handle - {00000000-0000-0000-0056-000000000009}, !- Source Object + {00000000-0000-0000-0015-000000000122}, !- Handle + {00000000-0000-0000-0056-000000000033}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000026}, !- Target Object + {00000000-0000-0000-0050-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000223}, !- Handle - {00000000-0000-0000-0050-000000000026}, !- Source Object + {00000000-0000-0000-0015-000000000123}, !- Handle + {00000000-0000-0000-0050-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000224}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000124}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000044}, !- Target Object + {00000000-0000-0000-0050-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000225}, !- Handle - {00000000-0000-0000-0050-000000000044}, !- Source Object + {00000000-0000-0000-0015-000000000125}, !- Handle + {00000000-0000-0000-0050-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000226}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000126}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000045}, !- Target Object + {00000000-0000-0000-0050-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000227}, !- Handle - {00000000-0000-0000-0050-000000000047}, !- Source Object + {00000000-0000-0000-0015-000000000127}, !- Handle + {00000000-0000-0000-0050-000000000033}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000019}, !- Target Object + {00000000-0000-0000-0056-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000228}, !- Handle - {00000000-0000-0000-0056-000000000021}, !- Source Object + {00000000-0000-0000-0015-000000000128}, !- Handle + {00000000-0000-0000-0056-000000000051}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000030}, !- Target Object + {00000000-0000-0000-0050-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000229}, !- Handle - {00000000-0000-0000-0050-000000000030}, !- Source Object + {00000000-0000-0000-0015-000000000129}, !- Handle + {00000000-0000-0000-0050-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000230}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000130}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000046}, !- Target Object + {00000000-0000-0000-0050-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000231}, !- Handle - {00000000-0000-0000-0050-000000000046}, !- Source Object + {00000000-0000-0000-0015-000000000131}, !- Handle + {00000000-0000-0000-0050-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000006}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000232}, !- Handle - {00000000-0000-0000-0006-000000000006}, !- Source Object + {00000000-0000-0000-0015-000000000132}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000047}, !- Target Object + {00000000-0000-0000-0050-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000233}, !- Handle - {00000000-0000-0000-0050-000000000049}, !- Source Object + {00000000-0000-0000-0015-000000000133}, !- Handle + {00000000-0000-0000-0050-000000000035}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000028}, !- Target Object + {00000000-0000-0000-0056-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000234}, !- Handle - {00000000-0000-0000-0056-000000000030}, !- Source Object + {00000000-0000-0000-0015-000000000134}, !- Handle + {00000000-0000-0000-0056-000000000054}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000032}, !- Target Object + {00000000-0000-0000-0050-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000235}, !- Handle - {00000000-0000-0000-0050-000000000032}, !- Source Object + {00000000-0000-0000-0015-000000000135}, !- Handle + {00000000-0000-0000-0050-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000236}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000136}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000048}, !- Target Object + {00000000-0000-0000-0050-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000237}, !- Handle - {00000000-0000-0000-0050-000000000048}, !- Source Object + {00000000-0000-0000-0015-000000000137}, !- Handle + {00000000-0000-0000-0050-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000007}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000238}, !- Handle - {00000000-0000-0000-0006-000000000007}, !- Source Object + {00000000-0000-0000-0015-000000000138}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000049}, !- Target Object + {00000000-0000-0000-0050-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000239}, !- Handle + {00000000-0000-0000-0015-000000000139}, !- Handle {00000000-0000-0000-0055-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000097}, !- Target Object + {00000000-0000-0000-0050-000000000059}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000240}, !- Handle + {00000000-0000-0000-0015-000000000140}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0050-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000241}, !- Handle - {00000000-0000-0000-0050-000000000098}, !- Source Object + {00000000-0000-0000-0015-000000000141}, !- Handle + {00000000-0000-0000-0050-000000000060}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000003}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000242}, !- Handle + {00000000-0000-0000-0015-000000000142}, !- Handle {00000000-0000-0000-0055-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000095}, !- Target Object + {00000000-0000-0000-0050-000000000057}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000243}, !- Handle - {00000000-0000-0000-0050-000000000095}, !- Source Object + {00000000-0000-0000-0015-000000000143}, !- Handle + {00000000-0000-0000-0050-000000000057}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000244}, !- Handle + {00000000-0000-0000-0015-000000000144}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000131}, !- Target Object + {00000000-0000-0000-0050-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000245}, !- Handle - {00000000-0000-0000-0050-000000000096}, !- Source Object + {00000000-0000-0000-0015-000000000145}, !- Handle + {00000000-0000-0000-0050-000000000058}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000246}, !- Handle - {00000000-0000-0000-0050-000000000097}, !- Source Object + {00000000-0000-0000-0015-000000000146}, !- Handle + {00000000-0000-0000-0050-000000000059}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000247}, !- Handle + {00000000-0000-0000-0015-000000000147}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000094}, !- Target Object + {00000000-0000-0000-0050-000000000056}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000248}, !- Handle - {00000000-0000-0000-0050-000000000094}, !- Source Object + {00000000-0000-0000-0015-000000000148}, !- Handle + {00000000-0000-0000-0050-000000000056}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000249}, !- Handle + {00000000-0000-0000-0015-000000000149}, !- Handle {00000000-0000-0000-0050-000000000001}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000001}, !- Target Object 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000250}, !- Handle + {00000000-0000-0000-0015-000000000150}, !- Handle {00000000-0000-0000-0095-000000000001}, !- Source Object 32, !- Outlet Port {00000000-0000-0000-0050-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000251}, !- Handle + {00000000-0000-0000-0015-000000000151}, !- Handle {00000000-0000-0000-0050-000000000002}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000252}, !- Handle + {00000000-0000-0000-0015-000000000152}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000129}, !- Target Object + {00000000-0000-0000-0050-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000253}, !- Handle - {00000000-0000-0000-0050-000000000129}, !- Source Object + {00000000-0000-0000-0015-000000000153}, !- Handle + {00000000-0000-0000-0050-000000000091}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000254}, !- Handle + {00000000-0000-0000-0015-000000000154}, !- Handle {00000000-0000-0000-0054-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000130}, !- Target Object + {00000000-0000-0000-0050-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000255}, !- Handle - {00000000-0000-0000-0050-000000000130}, !- Source Object + {00000000-0000-0000-0015-000000000155}, !- Handle + {00000000-0000-0000-0050-000000000092}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000256}, !- Handle - {00000000-0000-0000-0050-000000000131}, !- Source Object + {00000000-0000-0000-0015-000000000156}, !- Handle + {00000000-0000-0000-0050-000000000093}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000257}, !- Handle + {00000000-0000-0000-0015-000000000157}, !- Handle {00000000-0000-0000-0054-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000132}, !- Target Object + {00000000-0000-0000-0050-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000258}, !- Handle - {00000000-0000-0000-0050-000000000132}, !- Source Object + {00000000-0000-0000-0015-000000000158}, !- Handle + {00000000-0000-0000-0050-000000000094}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000259}, !- Handle + {00000000-0000-0000-0015-000000000159}, !- Handle {00000000-0000-0000-0016-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000133}, !- Target Object + {00000000-0000-0000-0050-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000260}, !- Handle - {00000000-0000-0000-0050-000000000133}, !- Source Object + {00000000-0000-0000-0015-000000000160}, !- Handle + {00000000-0000-0000-0050-000000000095}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000261}, !- Handle + {00000000-0000-0000-0015-000000000161}, !- Handle {00000000-0000-0000-0054-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000098}, !- Target Object + {00000000-0000-0000-0050-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000262}, !- Handle + {00000000-0000-0000-0015-000000000162}, !- Handle {00000000-0000-0000-0016-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000134}, !- Target Object + {00000000-0000-0000-0050-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000263}, !- Handle - {00000000-0000-0000-0050-000000000134}, !- Source Object + {00000000-0000-0000-0015-000000000163}, !- Handle + {00000000-0000-0000-0050-000000000096}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000264}, !- Handle + {00000000-0000-0000-0015-000000000164}, !- Handle {00000000-0000-0000-0054-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000096}, !- Target Object + {00000000-0000-0000-0050-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000265}, !- Handle + {00000000-0000-0000-0015-000000000165}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000088}, !- Target Object + {00000000-0000-0000-0050-000000000050}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000266}, !- Handle - {00000000-0000-0000-0050-000000000088}, !- Source Object + {00000000-0000-0000-0015-000000000166}, !- Handle + {00000000-0000-0000-0050-000000000050}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000267}, !- Handle + {00000000-0000-0000-0015-000000000167}, !- Handle {00000000-0000-0000-0097-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000089}, !- Target Object + {00000000-0000-0000-0050-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000268}, !- Handle - {00000000-0000-0000-0050-000000000089}, !- Source Object + {00000000-0000-0000-0015-000000000168}, !- Handle + {00000000-0000-0000-0050-000000000051}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000269}, !- Handle + {00000000-0000-0000-0015-000000000169}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000090}, !- Target Object + {00000000-0000-0000-0050-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000270}, !- Handle - {00000000-0000-0000-0050-000000000090}, !- Source Object + {00000000-0000-0000-0015-000000000170}, !- Handle + {00000000-0000-0000-0050-000000000052}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000271}, !- Handle + {00000000-0000-0000-0015-000000000171}, !- Handle {00000000-0000-0000-0097-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000091}, !- Target Object + {00000000-0000-0000-0050-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000272}, !- Handle - {00000000-0000-0000-0050-000000000091}, !- Source Object + {00000000-0000-0000-0015-000000000172}, !- Handle + {00000000-0000-0000-0050-000000000053}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000273}, !- Handle + {00000000-0000-0000-0015-000000000173}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000092}, !- Target Object + {00000000-0000-0000-0050-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000274}, !- Handle - {00000000-0000-0000-0050-000000000092}, !- Source Object + {00000000-0000-0000-0015-000000000174}, !- Handle + {00000000-0000-0000-0050-000000000054}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000275}, !- Handle + {00000000-0000-0000-0015-000000000175}, !- Handle {00000000-0000-0000-0097-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000093}, !- Target Object + {00000000-0000-0000-0050-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000276}, !- Handle - {00000000-0000-0000-0050-000000000093}, !- Source Object + {00000000-0000-0000-0015-000000000176}, !- Handle + {00000000-0000-0000-0050-000000000055}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000277}, !- Handle + {00000000-0000-0000-0015-000000000177}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000099}, !- Target Object + {00000000-0000-0000-0050-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000278}, !- Handle - {00000000-0000-0000-0050-000000000099}, !- Source Object + {00000000-0000-0000-0015-000000000178}, !- Handle + {00000000-0000-0000-0050-000000000061}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000279}, !- Handle + {00000000-0000-0000-0015-000000000179}, !- Handle {00000000-0000-0000-0097-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000100}, !- Target Object + {00000000-0000-0000-0050-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000280}, !- Handle - {00000000-0000-0000-0050-000000000100}, !- Source Object + {00000000-0000-0000-0015-000000000180}, !- Handle + {00000000-0000-0000-0050-000000000062}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000281}, !- Handle + {00000000-0000-0000-0015-000000000181}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0050-000000000101}, !- Target Object + {00000000-0000-0000-0050-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000282}, !- Handle - {00000000-0000-0000-0050-000000000101}, !- Source Object + {00000000-0000-0000-0015-000000000182}, !- Handle + {00000000-0000-0000-0050-000000000063}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000283}, !- Handle + {00000000-0000-0000-0015-000000000183}, !- Handle {00000000-0000-0000-0097-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000102}, !- Target Object + {00000000-0000-0000-0050-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000284}, !- Handle - {00000000-0000-0000-0050-000000000102}, !- Source Object + {00000000-0000-0000-0015-000000000184}, !- Handle + {00000000-0000-0000-0050-000000000064}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000285}, !- Handle + {00000000-0000-0000-0015-000000000185}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000103}, !- Target Object + {00000000-0000-0000-0050-000000000065}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000286}, !- Handle - {00000000-0000-0000-0050-000000000103}, !- Source Object + {00000000-0000-0000-0015-000000000186}, !- Handle + {00000000-0000-0000-0050-000000000065}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000287}, !- Handle + {00000000-0000-0000-0015-000000000187}, !- Handle {00000000-0000-0000-0097-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000104}, !- Target Object + {00000000-0000-0000-0050-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000288}, !- Handle - {00000000-0000-0000-0050-000000000104}, !- Source Object + {00000000-0000-0000-0015-000000000188}, !- Handle + {00000000-0000-0000-0050-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000289}, !- Handle + {00000000-0000-0000-0015-000000000189}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0050-000000000105}, !- Target Object + {00000000-0000-0000-0050-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000290}, !- Handle - {00000000-0000-0000-0050-000000000105}, !- Source Object + {00000000-0000-0000-0015-000000000190}, !- Handle + {00000000-0000-0000-0050-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000291}, !- Handle + {00000000-0000-0000-0015-000000000191}, !- Handle {00000000-0000-0000-0097-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000106}, !- Target Object + {00000000-0000-0000-0050-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000292}, !- Handle - {00000000-0000-0000-0050-000000000106}, !- Source Object + {00000000-0000-0000-0015-000000000192}, !- Handle + {00000000-0000-0000-0050-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000293}, !- Handle + {00000000-0000-0000-0015-000000000193}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000107}, !- Target Object + {00000000-0000-0000-0050-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000294}, !- Handle - {00000000-0000-0000-0050-000000000107}, !- Source Object + {00000000-0000-0000-0015-000000000194}, !- Handle + {00000000-0000-0000-0050-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000295}, !- Handle + {00000000-0000-0000-0015-000000000195}, !- Handle {00000000-0000-0000-0097-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000108}, !- Target Object + {00000000-0000-0000-0050-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000296}, !- Handle - {00000000-0000-0000-0050-000000000108}, !- Source Object + {00000000-0000-0000-0015-000000000196}, !- Handle + {00000000-0000-0000-0050-000000000070}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 11; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000297}, !- Handle + {00000000-0000-0000-0015-000000000197}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000109}, !- Target Object + {00000000-0000-0000-0050-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000298}, !- Handle - {00000000-0000-0000-0050-000000000109}, !- Source Object + {00000000-0000-0000-0015-000000000198}, !- Handle + {00000000-0000-0000-0050-000000000071}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000299}, !- Handle + {00000000-0000-0000-0015-000000000199}, !- Handle {00000000-0000-0000-0097-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000110}, !- Target Object + {00000000-0000-0000-0050-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000300}, !- Handle - {00000000-0000-0000-0050-000000000110}, !- Source Object + {00000000-0000-0000-0015-000000000200}, !- Handle + {00000000-0000-0000-0050-000000000072}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000301}, !- Handle + {00000000-0000-0000-0015-000000000201}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000111}, !- Target Object + {00000000-0000-0000-0050-000000000073}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000302}, !- Handle - {00000000-0000-0000-0050-000000000111}, !- Source Object + {00000000-0000-0000-0015-000000000202}, !- Handle + {00000000-0000-0000-0050-000000000073}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000303}, !- Handle + {00000000-0000-0000-0015-000000000203}, !- Handle {00000000-0000-0000-0097-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000112}, !- Target Object + {00000000-0000-0000-0050-000000000074}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000304}, !- Handle - {00000000-0000-0000-0050-000000000112}, !- Source Object + {00000000-0000-0000-0015-000000000204}, !- Handle + {00000000-0000-0000-0050-000000000074}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 13; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000305}, !- Handle + {00000000-0000-0000-0015-000000000205}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000113}, !- Target Object + {00000000-0000-0000-0050-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000306}, !- Handle - {00000000-0000-0000-0050-000000000113}, !- Source Object + {00000000-0000-0000-0015-000000000206}, !- Handle + {00000000-0000-0000-0050-000000000075}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000307}, !- Handle + {00000000-0000-0000-0015-000000000207}, !- Handle {00000000-0000-0000-0097-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000114}, !- Target Object + {00000000-0000-0000-0050-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000308}, !- Handle - {00000000-0000-0000-0050-000000000114}, !- Source Object + {00000000-0000-0000-0015-000000000208}, !- Handle + {00000000-0000-0000-0050-000000000076}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000309}, !- Handle + {00000000-0000-0000-0015-000000000209}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0050-000000000115}, !- Target Object + {00000000-0000-0000-0050-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000310}, !- Handle - {00000000-0000-0000-0050-000000000115}, !- Source Object + {00000000-0000-0000-0015-000000000210}, !- Handle + {00000000-0000-0000-0050-000000000077}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000311}, !- Handle + {00000000-0000-0000-0015-000000000211}, !- Handle {00000000-0000-0000-0097-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000116}, !- Target Object + {00000000-0000-0000-0050-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000312}, !- Handle - {00000000-0000-0000-0050-000000000116}, !- Source Object + {00000000-0000-0000-0015-000000000212}, !- Handle + {00000000-0000-0000-0050-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000313}, !- Handle + {00000000-0000-0000-0015-000000000213}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000117}, !- Target Object + {00000000-0000-0000-0050-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000314}, !- Handle - {00000000-0000-0000-0050-000000000117}, !- Source Object + {00000000-0000-0000-0015-000000000214}, !- Handle + {00000000-0000-0000-0050-000000000079}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000315}, !- Handle + {00000000-0000-0000-0015-000000000215}, !- Handle {00000000-0000-0000-0097-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000118}, !- Target Object + {00000000-0000-0000-0050-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000316}, !- Handle - {00000000-0000-0000-0050-000000000118}, !- Source Object + {00000000-0000-0000-0015-000000000216}, !- Handle + {00000000-0000-0000-0050-000000000080}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000317}, !- Handle + {00000000-0000-0000-0015-000000000217}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000119}, !- Target Object + {00000000-0000-0000-0050-000000000081}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000318}, !- Handle - {00000000-0000-0000-0050-000000000119}, !- Source Object + {00000000-0000-0000-0015-000000000218}, !- Handle + {00000000-0000-0000-0050-000000000081}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000319}, !- Handle - {00000000-0000-0000-0097-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000120}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000320}, !- Handle - {00000000-0000-0000-0050-000000000120}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000006}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000321}, !- Handle - {00000000-0000-0000-0017-000000000006}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0050-000000000121}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000322}, !- Handle - {00000000-0000-0000-0050-000000000121}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0097-000000000015}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000323}, !- Handle - {00000000-0000-0000-0097-000000000015}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000122}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000324}, !- Handle - {00000000-0000-0000-0050-000000000122}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000006}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000325}, !- Handle - {00000000-0000-0000-0050-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000326}, !- Handle - {00000000-0000-0000-0043-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000173}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000327}, !- Handle - {00000000-0000-0000-0050-000000000173}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000328}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000174}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000329}, !- Handle - {00000000-0000-0000-0050-000000000174}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000003}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000330}, !- Handle - {00000000-0000-0000-0043-000000000003}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000166}, !- Target Object + {00000000-0000-0000-0015-000000000219}, !- Handle + {00000000-0000-0000-0097-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000331}, !- Handle - {00000000-0000-0000-0050-000000000151}, !- Source Object + {00000000-0000-0000-0015-000000000220}, !- Handle + {00000000-0000-0000-0050-000000000082}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0016-000000000006}, !- Target Object + 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000332}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000169}, !- Target Object + {00000000-0000-0000-0015-000000000221}, !- Handle + {00000000-0000-0000-0017-000000000006}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0050-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000333}, !- Handle - {00000000-0000-0000-0050-000000000169}, !- Source Object + {00000000-0000-0000-0015-000000000222}, !- Handle + {00000000-0000-0000-0050-000000000083}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000334}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000170}, !- Target Object + {00000000-0000-0000-0097-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000335}, !- Handle - {00000000-0000-0000-0050-000000000170}, !- Source Object + {00000000-0000-0000-0015-000000000223}, !- Handle + {00000000-0000-0000-0097-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0050-000000000084}, !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000336}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000152}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000224}, !- Handle + {00000000-0000-0000-0050-000000000084}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000006}, !- Target Object + 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000337}, !- Handle - {00000000-0000-0000-0050-000000000158}, !- Source Object + {00000000-0000-0000-0015-000000000225}, !- Handle + {00000000-0000-0000-0050-000000000111}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0043-000000000002}, !- Target Object + {00000000-0000-0000-0043-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000338}, !- Handle - {00000000-0000-0000-0043-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000226}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000171}, !- Target Object + {00000000-0000-0000-0050-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000339}, !- Handle - {00000000-0000-0000-0050-000000000171}, !- Source Object + {00000000-0000-0000-0015-000000000227}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object + {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000340}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000228}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000172}, !- Target Object + {00000000-0000-0000-0050-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000341}, !- Handle - {00000000-0000-0000-0050-000000000172}, !- Source Object + {00000000-0000-0000-0015-000000000229}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0043-000000000002}, !- Target Object + {00000000-0000-0000-0043-000000000001}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000342}, !- Handle - {00000000-0000-0000-0043-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000230}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0050-000000000159}, !- Target Object + {00000000-0000-0000-0050-000000000112}, !- Target Object 2; !- Inlet Port OS:Connector:Mixer, @@ -3347,9 +2033,7 @@ OS:Connector:Mixer, {00000000-0000-0000-0016-000000000002}, !- Handle Connector Mixer 2, !- Name {00000000-0000-0000-0015-000000000043}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000098}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000148}, !- Inlet Branch Name 2 - {00000000-0000-0000-0015-000000000198}; !- Inlet Branch Name 3 + {00000000-0000-0000-0015-000000000098}; !- Inlet Branch Name 1 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000003}, !- Handle @@ -3368,30 +2052,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0016-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0015-000000000259}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000251}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000255}; !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000159}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000151}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000155}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0015-000000000262}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000258}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000268}, !- Inlet Branch Name 2 - {00000000-0000-0000-0015-000000000272}, !- Inlet Branch Name 3 - {00000000-0000-0000-0015-000000000276}, !- Inlet Branch Name 4 - {00000000-0000-0000-0015-000000000280}, !- Inlet Branch Name 5 - {00000000-0000-0000-0015-000000000284}, !- Inlet Branch Name 6 - {00000000-0000-0000-0015-000000000288}, !- Inlet Branch Name 7 - {00000000-0000-0000-0015-000000000292}, !- Inlet Branch Name 8 - {00000000-0000-0000-0015-000000000296}, !- Inlet Branch Name 9 - {00000000-0000-0000-0015-000000000300}, !- Inlet Branch Name 10 - {00000000-0000-0000-0015-000000000304}, !- Inlet Branch Name 11 - {00000000-0000-0000-0015-000000000308}, !- Inlet Branch Name 12 - {00000000-0000-0000-0015-000000000312}, !- Inlet Branch Name 13 - {00000000-0000-0000-0015-000000000316}, !- Inlet Branch Name 14 - {00000000-0000-0000-0015-000000000320}, !- Inlet Branch Name 15 - {00000000-0000-0000-0015-000000000324}; !- Inlet Branch Name 16 + {00000000-0000-0000-0015-000000000162}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000158}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000168}, !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000172}, !- Inlet Branch Name 3 + {00000000-0000-0000-0015-000000000176}, !- Inlet Branch Name 4 + {00000000-0000-0000-0015-000000000180}, !- Inlet Branch Name 5 + {00000000-0000-0000-0015-000000000184}, !- Inlet Branch Name 6 + {00000000-0000-0000-0015-000000000188}, !- Inlet Branch Name 7 + {00000000-0000-0000-0015-000000000192}, !- Inlet Branch Name 8 + {00000000-0000-0000-0015-000000000196}, !- Inlet Branch Name 9 + {00000000-0000-0000-0015-000000000200}, !- Inlet Branch Name 10 + {00000000-0000-0000-0015-000000000204}, !- Inlet Branch Name 11 + {00000000-0000-0000-0015-000000000208}, !- Inlet Branch Name 12 + {00000000-0000-0000-0015-000000000212}, !- Inlet Branch Name 13 + {00000000-0000-0000-0015-000000000216}, !- Inlet Branch Name 14 + {00000000-0000-0000-0015-000000000220}, !- Inlet Branch Name 15 + {00000000-0000-0000-0015-000000000224}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000001}, !- Handle @@ -3405,9 +2089,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0015-000000000041}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000042}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000145}, !- Outlet Branch Name 2 - {00000000-0000-0000-0015-000000000195}; !- Outlet Branch Name 3 + {00000000-0000-0000-0015-000000000042}; !- Outlet Branch Name 1 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000003}, !- Handle @@ -3426,30 +2108,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0017-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0015-000000000248}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000240}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000252}; !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000148}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000140}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000152}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0015-000000000243}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000244}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000265}, !- Outlet Branch Name 2 - {00000000-0000-0000-0015-000000000269}, !- Outlet Branch Name 3 - {00000000-0000-0000-0015-000000000273}, !- Outlet Branch Name 4 - {00000000-0000-0000-0015-000000000277}, !- Outlet Branch Name 5 - {00000000-0000-0000-0015-000000000281}, !- Outlet Branch Name 6 - {00000000-0000-0000-0015-000000000285}, !- Outlet Branch Name 7 - {00000000-0000-0000-0015-000000000289}, !- Outlet Branch Name 8 - {00000000-0000-0000-0015-000000000293}, !- Outlet Branch Name 9 - {00000000-0000-0000-0015-000000000297}, !- Outlet Branch Name 10 - {00000000-0000-0000-0015-000000000301}, !- Outlet Branch Name 11 - {00000000-0000-0000-0015-000000000305}, !- Outlet Branch Name 12 - {00000000-0000-0000-0015-000000000309}, !- Outlet Branch Name 13 - {00000000-0000-0000-0015-000000000313}, !- Outlet Branch Name 14 - {00000000-0000-0000-0015-000000000317}, !- Outlet Branch Name 15 - {00000000-0000-0000-0015-000000000321}; !- Outlet Branch Name 16 + {00000000-0000-0000-0015-000000000143}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000144}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000165}, !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000169}, !- Outlet Branch Name 3 + {00000000-0000-0000-0015-000000000173}, !- Outlet Branch Name 4 + {00000000-0000-0000-0015-000000000177}, !- Outlet Branch Name 5 + {00000000-0000-0000-0015-000000000181}, !- Outlet Branch Name 6 + {00000000-0000-0000-0015-000000000185}, !- Outlet Branch Name 7 + {00000000-0000-0000-0015-000000000189}, !- Outlet Branch Name 8 + {00000000-0000-0000-0015-000000000193}, !- Outlet Branch Name 9 + {00000000-0000-0000-0015-000000000197}, !- Outlet Branch Name 10 + {00000000-0000-0000-0015-000000000201}, !- Outlet Branch Name 11 + {00000000-0000-0000-0015-000000000205}, !- Outlet Branch Name 12 + {00000000-0000-0000-0015-000000000209}, !- Outlet Branch Name 13 + {00000000-0000-0000-0015-000000000213}, !- Outlet Branch Name 14 + {00000000-0000-0000-0015-000000000217}, !- Outlet Branch Name 15 + {00000000-0000-0000-0015-000000000221}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0018-000000000001}, !- Handle @@ -3708,20 +2390,6 @@ OS:Controller:MechanicalVentilation, , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0019-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0019-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - OS:Controller:OutdoorAir, {00000000-0000-0000-0020-000000000001}, !- Handle Controller Outdoor Air 1, !- Name @@ -3740,7 +2408,7 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0064-000000000027}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0064-000000000023}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0019-000000000001}, !- Controller Mechanical Ventilation @@ -3752,66 +2420,6 @@ OS:Controller:OutdoorAir, BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Controller:OutdoorAir, - {00000000-0000-0000-0020-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0064-000000000025}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0019-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0020-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0064-000000000026}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0019-000000000003}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - OS:Controller:WaterCoil, {00000000-0000-0000-0021-000000000001}, !- Handle Controller Water Coil 1, !- Name @@ -3825,32 +2433,6 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} -OS:Controller:WaterCoil, - {00000000-0000-0000-0021-000000000002}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0013-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0021-000000000003}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0013-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - OS:ConvergenceLimits, {00000000-0000-0000-0022-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -3863,7 +2445,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0015-000000000074}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 3780.56530191195, !- Fan Power at Design Air Flow Rate {W} + 1513.88883194005, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -3954,34 +2536,6 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0024-000000000005}, !- Handle - WaterCooled_Screw_CAPFT_NECB2011, !- Name - 0.812998, !- Coefficient1 Constant - -0.0142532, !- Coefficient2 x - -0.00161799, !- Coefficient3 x**2 - 0.0263844, !- Coefficient4 y - -0.00091543, !- Coefficient5 y**2 - 0.00169601, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000006}, !- Handle - WaterCooled_Screw_EIRFT_NECB2011, !- Name - 0.638103, !- Coefficient1 Constant - 0.00630158, !- Coefficient2 x - 0.00092327, !- Coefficient3 x**2 - -0.00455294, !- Coefficient4 y - 0.000825682, !- Coefficient5 y**2 - -0.00156152, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -3995,7 +2549,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000008}, !- Handle + {00000000-0000-0000-0024-000000000006}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -4048,15 +2602,6 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0026-000000000003}, !- Handle - WaterCooled_Screw_EIRFPLR_NECB2011, !- Name - 0.330188, !- Coefficient1 Constant - 0.235543, !- Coefficient2 x - 0.460708, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0026-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -4218,38 +2763,6 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name - {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0064-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name - {00000000-0000-0000-0064-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000005}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__ClgSch0, !- Name {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -4257,7 +2770,7 @@ OS:EnergyManagementSystem:Actuator, ; !- Zone or Space Name OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000006}, !- Handle + {00000000-0000-0000-0034-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__HtgSch0, !- Name {00000000-0000-0000-0064-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -4266,147 +2779,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2b1e65ae-7ab4-44cd-a4dc-ab2cbc3f4f8d}<23.9 && {2b1e65ae-7ab4-44cd-a4dc-ab2cbc3f4f8d}>1.7, !- Program Line 1 - SET {5bdc3c3f-a6fb-4bd4-b717-15f996751c0a} = 29.4, !- Program Line 2 - SET {ff59a8d3-88d7-4daa-8b27-c5832ff9e24b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2b1e65ae-7ab4-44cd-a4dc-ab2cbc3f4f8d}<23.9 && {2b1e65ae-7ab4-44cd-a4dc-ab2cbc3f4f8d}>1.7, !- Program Line 4 - SET {5bdc3c3f-a6fb-4bd4-b717-15f996751c0a} = 29.4, !- Program Line 5 - SET {ff59a8d3-88d7-4daa-8b27-c5832ff9e24b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2b1e65ae-7ab4-44cd-a4dc-ab2cbc3f4f8d}<23.9 && {2b1e65ae-7ab4-44cd-a4dc-ab2cbc3f4f8d}>1.7, !- Program Line 7 - SET {5bdc3c3f-a6fb-4bd4-b717-15f996751c0a} = 29.4, !- Program Line 8 - SET {ff59a8d3-88d7-4daa-8b27-c5832ff9e24b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2b1e65ae-7ab4-44cd-a4dc-ab2cbc3f4f8d}<23.9 && {2b1e65ae-7ab4-44cd-a4dc-ab2cbc3f4f8d}>1.7, !- Program Line 10 - SET {5bdc3c3f-a6fb-4bd4-b717-15f996751c0a} = 29.4, !- Program Line 11 - SET {ff59a8d3-88d7-4daa-8b27-c5832ff9e24b} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {5bdc3c3f-a6fb-4bd4-b717-15f996751c0a} = NULL, !- Program Line 14 - SET {ff59a8d3-88d7-4daa-8b27-c5832ff9e24b} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1f9fe689-5e67-4d1b-ba7b-a712b8982587}<23.9 && {1f9fe689-5e67-4d1b-ba7b-a712b8982587}>1.7, !- Program Line 1 - SET {f483412a-8e9c-4c8c-b739-32c9f62880fc} = 29.4, !- Program Line 2 - SET {c9df41b4-b7e7-4bb4-a65f-a450323b968d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1f9fe689-5e67-4d1b-ba7b-a712b8982587}<23.9 && {1f9fe689-5e67-4d1b-ba7b-a712b8982587}>1.7, !- Program Line 4 - SET {f483412a-8e9c-4c8c-b739-32c9f62880fc} = 29.4, !- Program Line 5 - SET {c9df41b4-b7e7-4bb4-a65f-a450323b968d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1f9fe689-5e67-4d1b-ba7b-a712b8982587}<23.9 && {1f9fe689-5e67-4d1b-ba7b-a712b8982587}>1.7, !- Program Line 7 - SET {f483412a-8e9c-4c8c-b739-32c9f62880fc} = 29.4, !- Program Line 8 - SET {c9df41b4-b7e7-4bb4-a65f-a450323b968d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1f9fe689-5e67-4d1b-ba7b-a712b8982587}<23.9 && {1f9fe689-5e67-4d1b-ba7b-a712b8982587}>1.7, !- Program Line 10 - SET {f483412a-8e9c-4c8c-b739-32c9f62880fc} = 29.4, !- Program Line 11 - SET {c9df41b4-b7e7-4bb4-a65f-a450323b968d} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {f483412a-8e9c-4c8c-b739-32c9f62880fc} = NULL, !- Program Line 14 - SET {c9df41b4-b7e7-4bb4-a65f-a450323b968d} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b9df6440-b90c-4320-bbe5-433778cef8e3}<23.9 && {b9df6440-b90c-4320-bbe5-433778cef8e3}>1.7, !- Program Line 1 - SET {f4ba6d7f-c996-4dd2-ac85-33a6493a50e8} = 29.4, !- Program Line 2 - SET {997f9e37-251d-4692-9b15-3d2ce40edadf} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b9df6440-b90c-4320-bbe5-433778cef8e3}<23.9 && {b9df6440-b90c-4320-bbe5-433778cef8e3}>1.7, !- Program Line 4 - SET {f4ba6d7f-c996-4dd2-ac85-33a6493a50e8} = 29.4, !- Program Line 5 - SET {997f9e37-251d-4692-9b15-3d2ce40edadf} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b9df6440-b90c-4320-bbe5-433778cef8e3}<23.9 && {b9df6440-b90c-4320-bbe5-433778cef8e3}>1.7, !- Program Line 7 - SET {f4ba6d7f-c996-4dd2-ac85-33a6493a50e8} = 29.4, !- Program Line 8 - SET {997f9e37-251d-4692-9b15-3d2ce40edadf} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b9df6440-b90c-4320-bbe5-433778cef8e3}<23.9 && {b9df6440-b90c-4320-bbe5-433778cef8e3}>1.7, !- Program Line 10 - SET {f4ba6d7f-c996-4dd2-ac85-33a6493a50e8} = 29.4, !- Program Line 11 - SET {997f9e37-251d-4692-9b15-3d2ce40edadf} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {f4ba6d7f-c996-4dd2-ac85-33a6493a50e8} = NULL, !- Program Line 14 - SET {997f9e37-251d-4692-9b15-3d2ce40edadf} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0035-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0035-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0035-000000000003}; !- Program Name 1 - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0037-000000000001}, !- Handle - OAT, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0037-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0037-000000000003}, !- Handle - OAT_2, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:Facility, - {00000000-0000-0000-0038-000000000001}; !- Handle - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000156}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000157}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000206}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000207}, !- Air Outlet Node Name - ; !- End-Use Subcategory + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}<23.9 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}>1.7, !- Program Line 1 + SET {69a5ebb3-9cda-4309-9910-f2594e40e191} = 29.4, !- Program Line 2 + SET {7e3fa8f2-dd28-4a18-b436-0a3bb1661dd3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}<23.9 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}>1.7, !- Program Line 4 + SET {69a5ebb3-9cda-4309-9910-f2594e40e191} = 29.4, !- Program Line 5 + SET {7e3fa8f2-dd28-4a18-b436-0a3bb1661dd3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}<23.9 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}>1.7, !- Program Line 7 + SET {69a5ebb3-9cda-4309-9910-f2594e40e191} = 29.4, !- Program Line 8 + SET {7e3fa8f2-dd28-4a18-b436-0a3bb1661dd3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}<23.9 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}>1.7, !- Program Line 10 + SET {69a5ebb3-9cda-4309-9910-f2594e40e191} = 29.4, !- Program Line 11 + SET {7e3fa8f2-dd28-4a18-b436-0a3bb1661dd3} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {69a5ebb3-9cda-4309-9910-f2594e40e191} = NULL, !- Program Line 14 + SET {7e3fa8f2-dd28-4a18-b436-0a3bb1661dd3} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0036-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0035-000000000001}; !- Program Name 1 + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0037-000000000001}, !- Handle + OAT, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:Facility, + {00000000-0000-0000-0038-000000000001}; !- Handle OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000003}, !- Handle + {00000000-0000-0000-0039-000000000001}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -4427,29 +2834,8 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000004}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000151}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000149}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000005}, !- Handle - Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0039-000000000002}, !- Handle + Sys6 Supply Fan, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -4464,27 +2850,6 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000201}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000199}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000006}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0015-000000000101}, !- Air Inlet Node Name {00000000-0000-0000-0015-000000000099}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -4531,58 +2896,6 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0015-000000000331}, !- Supply Air Inlet Node - {00000000-0000-0000-0015-000000000332}, !- Supply Air Outlet Node - {00000000-0000-0000-0015-000000000335}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0015-000000000336}, !- Exhaust Air Outlet Node - 897.446570606695, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0043-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0015-000000000337}, !- Supply Air Inlet Node - {00000000-0000-0000-0015-000000000338}, !- Supply Air Outlet Node - {00000000-0000-0000-0015-000000000341}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0015-000000000342}, !- Exhaust Air Outlet Node - 897.446570606695, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0043-000000000003}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} @@ -4594,10 +2907,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0015-000000000325}, !- Supply Air Inlet Node - {00000000-0000-0000-0015-000000000326}, !- Supply Air Outlet Node - {00000000-0000-0000-0015-000000000329}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0015-000000000330}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0015-000000000225}, !- Supply Air Inlet Node + {00000000-0000-0000-0015-000000000226}, !- Supply Air Outlet Node + {00000000-0000-0000-0015-000000000229}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0015-000000000230}, !- Exhaust Air Outlet Node 897.446570606695, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -5041,49 +3354,17 @@ OS:ModelObjectList, {00000000-0000-0000-0049-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name - OS:Node, {00000000-0000-0000-0050-000000000001}, !- Handle 125gal Electricity Water Heater - 84kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000240}, !- Inlet Port - {00000000-0000-0000-0015-000000000249}; !- Outlet Port + {00000000-0000-0000-0015-000000000140}, !- Inlet Port + {00000000-0000-0000-0015-000000000149}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000002}, !- Handle 125gal Electricity Water Heater - 84kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000250}, !- Inlet Port - {00000000-0000-0000-0015-000000000251}; !- Outlet Port + {00000000-0000-0000-0015-000000000150}, !- Inlet Port + {00000000-0000-0000-0015-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000003}, !- Handle @@ -5165,957 +3446,609 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000016}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000184}, !- Inlet Port - {00000000-0000-0000-0015-000000000185}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000018}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000178}, !- Inlet Port - {00000000-0000-0000-0015-000000000179}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000019}, !- Handle + {00000000-0000-0000-0050-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000020}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000166}, !- Inlet Port - {00000000-0000-0000-0015-000000000167}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000021}, !- Handle + {00000000-0000-0000-0050-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000022}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000172}, !- Inlet Port - {00000000-0000-0000-0015-000000000173}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000023}, !- Handle + {00000000-0000-0000-0050-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000024}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0015-000000000160}, !- Inlet Port - {00000000-0000-0000-0015-000000000161}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000025}, !- Handle + {00000000-0000-0000-0050-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000026}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000222}, !- Inlet Port - {00000000-0000-0000-0015-000000000223}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000027}, !- Handle + {00000000-0000-0000-0050-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000028}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000210}, !- Inlet Port - {00000000-0000-0000-0015-000000000211}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000029}, !- Handle + {00000000-0000-0000-0050-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000030}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000228}, !- Inlet Port - {00000000-0000-0000-0015-000000000229}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000031}, !- Handle + {00000000-0000-0000-0050-000000000023}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000032}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000234}, !- Inlet Port - {00000000-0000-0000-0015-000000000235}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000033}, !- Handle + {00000000-0000-0000-0050-000000000024}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000034}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0015-000000000216}, !- Inlet Port - {00000000-0000-0000-0015-000000000217}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000035}, !- Handle + {00000000-0000-0000-0050-000000000025}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000036}, !- Handle + {00000000-0000-0000-0050-000000000026}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000112}, !- Inlet Port {00000000-0000-0000-0015-000000000113}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000037}, !- Handle + {00000000-0000-0000-0050-000000000027}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000114}, !- Inlet Port {00000000-0000-0000-0015-000000000109}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000038}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000186}, !- Inlet Port - {00000000-0000-0000-0015-000000000187}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000039}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000188}, !- Inlet Port - {00000000-0000-0000-0015-000000000183}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000040}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000212}, !- Inlet Port - {00000000-0000-0000-0015-000000000213}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000041}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000214}, !- Inlet Port - {00000000-0000-0000-0015-000000000209}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000042}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000218}, !- Inlet Port - {00000000-0000-0000-0015-000000000219}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000043}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000220}, !- Inlet Port - {00000000-0000-0000-0015-000000000215}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000044}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000224}, !- Inlet Port - {00000000-0000-0000-0015-000000000225}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000045}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000226}, !- Inlet Port - {00000000-0000-0000-0015-000000000221}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000230}, !- Inlet Port - {00000000-0000-0000-0015-000000000231}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000232}, !- Inlet Port - {00000000-0000-0000-0015-000000000227}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000236}, !- Inlet Port - {00000000-0000-0000-0015-000000000237}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000238}, !- Inlet Port - {00000000-0000-0000-0015-000000000233}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000050}, !- Handle + {00000000-0000-0000-0050-000000000028}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000118}, !- Inlet Port {00000000-0000-0000-0015-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000051}, !- Handle + {00000000-0000-0000-0050-000000000029}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000120}, !- Inlet Port {00000000-0000-0000-0015-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000052}, !- Handle + {00000000-0000-0000-0050-000000000030}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000124}, !- Inlet Port {00000000-0000-0000-0015-000000000125}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000053}, !- Handle + {00000000-0000-0000-0050-000000000031}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000126}, !- Inlet Port - {00000000-0000-0000-0015-000000000121}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000054}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000130}, !- Inlet Port - {00000000-0000-0000-0015-000000000131}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000055}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000132}, !- Inlet Port - {00000000-0000-0000-0015-000000000127}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000056}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000136}, !- Inlet Port - {00000000-0000-0000-0015-000000000137}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000057}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000138}, !- Inlet Port - {00000000-0000-0000-0015-000000000133}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000162}, !- Inlet Port - {00000000-0000-0000-0015-000000000163}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000164}, !- Inlet Port - {00000000-0000-0000-0015-000000000159}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000168}, !- Inlet Port - {00000000-0000-0000-0015-000000000169}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000170}, !- Inlet Port - {00000000-0000-0000-0015-000000000165}; !- Outlet Port + {00000000-0000-0000-0015-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000174}, !- Inlet Port - {00000000-0000-0000-0015-000000000175}; !- Outlet Port + {00000000-0000-0000-0050-000000000032}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000130}, !- Inlet Port + {00000000-0000-0000-0015-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000176}, !- Inlet Port - {00000000-0000-0000-0015-000000000171}; !- Outlet Port + {00000000-0000-0000-0050-000000000033}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000132}, !- Inlet Port + {00000000-0000-0000-0015-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000180}, !- Inlet Port - {00000000-0000-0000-0015-000000000181}; !- Outlet Port + {00000000-0000-0000-0050-000000000034}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000136}, !- Inlet Port + {00000000-0000-0000-0015-000000000137}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000182}, !- Inlet Port - {00000000-0000-0000-0015-000000000177}; !- Outlet Port + {00000000-0000-0000-0050-000000000035}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000138}, !- Inlet Port + {00000000-0000-0000-0015-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000066}, !- Handle + {00000000-0000-0000-0050-000000000036}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000040}, !- Inlet Port {00000000-0000-0000-0015-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000067}, !- Handle + {00000000-0000-0000-0050-000000000037}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000043}, !- Inlet Port {00000000-0000-0000-0015-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000068}, !- Handle + {00000000-0000-0000-0050-000000000038}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000037}, !- Inlet Port {00000000-0000-0000-0015-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000069}, !- Handle + {00000000-0000-0000-0050-000000000039}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000061}, !- Inlet Port {00000000-0000-0000-0015-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000070}, !- Handle + {00000000-0000-0000-0050-000000000040}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000042}, !- Inlet Port {00000000-0000-0000-0015-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000071}, !- Handle + {00000000-0000-0000-0050-000000000041}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000102}, !- Inlet Port {00000000-0000-0000-0015-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000072}, !- Handle + {00000000-0000-0000-0050-000000000042}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000097}, !- Inlet Port {00000000-0000-0000-0015-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000073}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000145}, !- Inlet Port - {00000000-0000-0000-0015-000000000146}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000074}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000152}, !- Inlet Port - {00000000-0000-0000-0015-000000000153}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000075}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000147}, !- Inlet Port - {00000000-0000-0000-0015-000000000148}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000076}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000195}, !- Inlet Port - {00000000-0000-0000-0015-000000000196}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000077}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000202}, !- Inlet Port - {00000000-0000-0000-0015-000000000203}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000078}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000197}, !- Inlet Port - {00000000-0000-0000-0015-000000000198}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000079}, !- Handle + {00000000-0000-0000-0050-000000000043}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000100}, !- Inlet Port {00000000-0000-0000-0015-000000000101}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000080}, !- Handle - Coil Heating Electric 13 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000200}, !- Inlet Port - {00000000-0000-0000-0015-000000000201}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000081}, !- Handle - Coil Heating Electric 7 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000150}, !- Inlet Port - {00000000-0000-0000-0015-000000000151}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000082}, !- Handle + {00000000-0000-0000-0050-000000000044}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000065}, !- Inlet Port {00000000-0000-0000-0015-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000083}, !- Handle + {00000000-0000-0000-0050-000000000045}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000068}, !- Inlet Port {00000000-0000-0000-0015-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000084}, !- Handle + {00000000-0000-0000-0050-000000000046}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000062}, !- Inlet Port {00000000-0000-0000-0015-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000085}, !- Handle + {00000000-0000-0000-0050-000000000047}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000082}, !- Inlet Port {00000000-0000-0000-0015-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000086}, !- Handle + {00000000-0000-0000-0050-000000000048}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000063}, !- Inlet Port {00000000-0000-0000-0015-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000087}, !- Handle + {00000000-0000-0000-0050-000000000049}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000074}, !- Inlet Port {00000000-0000-0000-0015-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000088}, !- Handle + {00000000-0000-0000-0050-000000000050}, !- Handle Core_bottom WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000265}, !- Inlet Port - {00000000-0000-0000-0015-000000000266}; !- Outlet Port + {00000000-0000-0000-0015-000000000165}, !- Inlet Port + {00000000-0000-0000-0015-000000000166}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000089}, !- Handle + {00000000-0000-0000-0050-000000000051}, !- Handle Core_bottom WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000267}, !- Inlet Port - {00000000-0000-0000-0015-000000000268}; !- Outlet Port + {00000000-0000-0000-0015-000000000167}, !- Inlet Port + {00000000-0000-0000-0015-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000090}, !- Handle + {00000000-0000-0000-0050-000000000052}, !- Handle Core_mid WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000269}, !- Inlet Port - {00000000-0000-0000-0015-000000000270}; !- Outlet Port + {00000000-0000-0000-0015-000000000169}, !- Inlet Port + {00000000-0000-0000-0015-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000091}, !- Handle + {00000000-0000-0000-0050-000000000053}, !- Handle Core_mid WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000271}, !- Inlet Port - {00000000-0000-0000-0015-000000000272}; !- Outlet Port + {00000000-0000-0000-0015-000000000171}, !- Inlet Port + {00000000-0000-0000-0015-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000092}, !- Handle + {00000000-0000-0000-0050-000000000054}, !- Handle Core_top WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000273}, !- Inlet Port - {00000000-0000-0000-0015-000000000274}; !- Outlet Port + {00000000-0000-0000-0015-000000000173}, !- Inlet Port + {00000000-0000-0000-0015-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000093}, !- Handle + {00000000-0000-0000-0050-000000000055}, !- Handle Core_top WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000275}, !- Inlet Port - {00000000-0000-0000-0015-000000000276}; !- Outlet Port + {00000000-0000-0000-0015-000000000175}, !- Inlet Port + {00000000-0000-0000-0015-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000094}, !- Handle + {00000000-0000-0000-0050-000000000056}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000247}, !- Inlet Port - {00000000-0000-0000-0015-000000000248}; !- Outlet Port + {00000000-0000-0000-0015-000000000147}, !- Inlet Port + {00000000-0000-0000-0015-000000000148}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000095}, !- Handle + {00000000-0000-0000-0050-000000000057}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000242}, !- Inlet Port - {00000000-0000-0000-0015-000000000243}; !- Outlet Port + {00000000-0000-0000-0015-000000000142}, !- Inlet Port + {00000000-0000-0000-0015-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000096}, !- Handle + {00000000-0000-0000-0050-000000000058}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000264}, !- Inlet Port - {00000000-0000-0000-0015-000000000245}; !- Outlet Port + {00000000-0000-0000-0015-000000000164}, !- Inlet Port + {00000000-0000-0000-0015-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000097}, !- Handle + {00000000-0000-0000-0050-000000000059}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000239}, !- Inlet Port - {00000000-0000-0000-0015-000000000246}; !- Outlet Port + {00000000-0000-0000-0015-000000000139}, !- Inlet Port + {00000000-0000-0000-0015-000000000146}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000098}, !- Handle + {00000000-0000-0000-0050-000000000060}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000261}, !- Inlet Port - {00000000-0000-0000-0015-000000000241}; !- Outlet Port + {00000000-0000-0000-0015-000000000161}, !- Inlet Port + {00000000-0000-0000-0015-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000099}, !- Handle + {00000000-0000-0000-0050-000000000061}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000277}, !- Inlet Port - {00000000-0000-0000-0015-000000000278}; !- Outlet Port + {00000000-0000-0000-0015-000000000177}, !- Inlet Port + {00000000-0000-0000-0015-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000100}, !- Handle + {00000000-0000-0000-0050-000000000062}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000279}, !- Inlet Port - {00000000-0000-0000-0015-000000000280}; !- Outlet Port + {00000000-0000-0000-0015-000000000179}, !- Inlet Port + {00000000-0000-0000-0015-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000101}, !- Handle + {00000000-0000-0000-0050-000000000063}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000281}, !- Inlet Port - {00000000-0000-0000-0015-000000000282}; !- Outlet Port + {00000000-0000-0000-0015-000000000181}, !- Inlet Port + {00000000-0000-0000-0015-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000102}, !- Handle + {00000000-0000-0000-0050-000000000064}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000283}, !- Inlet Port - {00000000-0000-0000-0015-000000000284}; !- Outlet Port + {00000000-0000-0000-0015-000000000183}, !- Inlet Port + {00000000-0000-0000-0015-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000103}, !- Handle + {00000000-0000-0000-0050-000000000065}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000285}, !- Inlet Port - {00000000-0000-0000-0015-000000000286}; !- Outlet Port + {00000000-0000-0000-0015-000000000185}, !- Inlet Port + {00000000-0000-0000-0015-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000104}, !- Handle + {00000000-0000-0000-0050-000000000066}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000287}, !- Inlet Port - {00000000-0000-0000-0015-000000000288}; !- Outlet Port + {00000000-0000-0000-0015-000000000187}, !- Inlet Port + {00000000-0000-0000-0015-000000000188}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000105}, !- Handle + {00000000-0000-0000-0050-000000000067}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000289}, !- Inlet Port - {00000000-0000-0000-0015-000000000290}; !- Outlet Port + {00000000-0000-0000-0015-000000000189}, !- Inlet Port + {00000000-0000-0000-0015-000000000190}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000106}, !- Handle + {00000000-0000-0000-0050-000000000068}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000291}, !- Inlet Port - {00000000-0000-0000-0015-000000000292}; !- Outlet Port + {00000000-0000-0000-0015-000000000191}, !- Inlet Port + {00000000-0000-0000-0015-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000107}, !- Handle + {00000000-0000-0000-0050-000000000069}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000293}, !- Inlet Port - {00000000-0000-0000-0015-000000000294}; !- Outlet Port + {00000000-0000-0000-0015-000000000193}, !- Inlet Port + {00000000-0000-0000-0015-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000108}, !- Handle + {00000000-0000-0000-0050-000000000070}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000295}, !- Inlet Port - {00000000-0000-0000-0015-000000000296}; !- Outlet Port + {00000000-0000-0000-0015-000000000195}, !- Inlet Port + {00000000-0000-0000-0015-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000109}, !- Handle + {00000000-0000-0000-0050-000000000071}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000297}, !- Inlet Port - {00000000-0000-0000-0015-000000000298}; !- Outlet Port + {00000000-0000-0000-0015-000000000197}, !- Inlet Port + {00000000-0000-0000-0015-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000110}, !- Handle + {00000000-0000-0000-0050-000000000072}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000299}, !- Inlet Port - {00000000-0000-0000-0015-000000000300}; !- Outlet Port + {00000000-0000-0000-0015-000000000199}, !- Inlet Port + {00000000-0000-0000-0015-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000111}, !- Handle + {00000000-0000-0000-0050-000000000073}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000301}, !- Inlet Port - {00000000-0000-0000-0015-000000000302}; !- Outlet Port + {00000000-0000-0000-0015-000000000201}, !- Inlet Port + {00000000-0000-0000-0015-000000000202}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000112}, !- Handle + {00000000-0000-0000-0050-000000000074}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000303}, !- Inlet Port - {00000000-0000-0000-0015-000000000304}; !- Outlet Port + {00000000-0000-0000-0015-000000000203}, !- Inlet Port + {00000000-0000-0000-0015-000000000204}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000113}, !- Handle + {00000000-0000-0000-0050-000000000075}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000305}, !- Inlet Port - {00000000-0000-0000-0015-000000000306}; !- Outlet Port + {00000000-0000-0000-0015-000000000205}, !- Inlet Port + {00000000-0000-0000-0015-000000000206}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000114}, !- Handle + {00000000-0000-0000-0050-000000000076}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000307}, !- Inlet Port - {00000000-0000-0000-0015-000000000308}; !- Outlet Port + {00000000-0000-0000-0015-000000000207}, !- Inlet Port + {00000000-0000-0000-0015-000000000208}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000115}, !- Handle + {00000000-0000-0000-0050-000000000077}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000309}, !- Inlet Port - {00000000-0000-0000-0015-000000000310}; !- Outlet Port + {00000000-0000-0000-0015-000000000209}, !- Inlet Port + {00000000-0000-0000-0015-000000000210}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000116}, !- Handle + {00000000-0000-0000-0050-000000000078}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000311}, !- Inlet Port - {00000000-0000-0000-0015-000000000312}; !- Outlet Port + {00000000-0000-0000-0015-000000000211}, !- Inlet Port + {00000000-0000-0000-0015-000000000212}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000117}, !- Handle + {00000000-0000-0000-0050-000000000079}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000313}, !- Inlet Port - {00000000-0000-0000-0015-000000000314}; !- Outlet Port + {00000000-0000-0000-0015-000000000213}, !- Inlet Port + {00000000-0000-0000-0015-000000000214}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000118}, !- Handle + {00000000-0000-0000-0050-000000000080}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000315}, !- Inlet Port - {00000000-0000-0000-0015-000000000316}; !- Outlet Port + {00000000-0000-0000-0015-000000000215}, !- Inlet Port + {00000000-0000-0000-0015-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000119}, !- Handle + {00000000-0000-0000-0050-000000000081}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000317}, !- Inlet Port - {00000000-0000-0000-0015-000000000318}; !- Outlet Port + {00000000-0000-0000-0015-000000000217}, !- Inlet Port + {00000000-0000-0000-0015-000000000218}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000120}, !- Handle + {00000000-0000-0000-0050-000000000082}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000319}, !- Inlet Port - {00000000-0000-0000-0015-000000000320}; !- Outlet Port + {00000000-0000-0000-0015-000000000219}, !- Inlet Port + {00000000-0000-0000-0015-000000000220}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000121}, !- Handle + {00000000-0000-0000-0050-000000000083}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000321}, !- Inlet Port - {00000000-0000-0000-0015-000000000322}; !- Outlet Port + {00000000-0000-0000-0015-000000000221}, !- Inlet Port + {00000000-0000-0000-0015-000000000222}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000122}, !- Handle + {00000000-0000-0000-0050-000000000084}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000323}, !- Inlet Port - {00000000-0000-0000-0015-000000000324}; !- Outlet Port + {00000000-0000-0000-0015-000000000223}, !- Inlet Port + {00000000-0000-0000-0015-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000123}, !- Handle + {00000000-0000-0000-0050-000000000085}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000055}, !- Inlet Port {00000000-0000-0000-0015-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000124}, !- Handle + {00000000-0000-0000-0050-000000000086}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000057}, !- Inlet Port {00000000-0000-0000-0015-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000125}, !- Handle + {00000000-0000-0000-0050-000000000087}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000059}, !- Inlet Port {00000000-0000-0000-0015-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000126}, !- Handle + {00000000-0000-0000-0050-000000000088}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000076}, !- Inlet Port {00000000-0000-0000-0015-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000127}, !- Handle + {00000000-0000-0000-0050-000000000089}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000078}, !- Inlet Port {00000000-0000-0000-0015-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000128}, !- Handle + {00000000-0000-0000-0050-000000000090}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000080}, !- Inlet Port {00000000-0000-0000-0015-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000129}, !- Handle + {00000000-0000-0000-0050-000000000091}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000252}, !- Inlet Port - {00000000-0000-0000-0015-000000000253}; !- Outlet Port + {00000000-0000-0000-0015-000000000152}, !- Inlet Port + {00000000-0000-0000-0015-000000000153}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000130}, !- Handle + {00000000-0000-0000-0050-000000000092}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000254}, !- Inlet Port - {00000000-0000-0000-0015-000000000255}; !- Outlet Port + {00000000-0000-0000-0015-000000000154}, !- Inlet Port + {00000000-0000-0000-0015-000000000155}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000131}, !- Handle + {00000000-0000-0000-0050-000000000093}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000244}, !- Inlet Port - {00000000-0000-0000-0015-000000000256}; !- Outlet Port + {00000000-0000-0000-0015-000000000144}, !- Inlet Port + {00000000-0000-0000-0015-000000000156}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000132}, !- Handle + {00000000-0000-0000-0050-000000000094}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000257}, !- Inlet Port - {00000000-0000-0000-0015-000000000258}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000133}, !- Handle - Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000259}, !- Inlet Port - {00000000-0000-0000-0015-000000000260}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000134}, !- Handle - Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000262}, !- Inlet Port - {00000000-0000-0000-0015-000000000263}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000135}, !- Handle - Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Demand Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000067}, !- Inlet Port - {00000000-0000-0000-0015-000000000083}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000136}, !- Handle - Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Demand Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000084}, !- Inlet Port - {00000000-0000-0000-0015-000000000085}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000137}, !- Handle - Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000038}, !- Inlet Port - {00000000-0000-0000-0015-000000000048}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000138}, !- Handle - Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000049}, !- Inlet Port - {00000000-0000-0000-0015-000000000050}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000139}, !- Handle - Pump Variable Speed 1 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000046}, !- Inlet Port - {00000000-0000-0000-0015-000000000047}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000140}, !- Handle - Pump Variable Speed 2 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000071}, !- Inlet Port - {00000000-0000-0000-0015-000000000072}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000141}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000086}, !- Inlet Port - {00000000-0000-0000-0015-000000000087}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000142}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000088}, !- Inlet Port - {00000000-0000-0000-0015-000000000089}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000143}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000051}, !- Inlet Port - {00000000-0000-0000-0015-000000000052}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000144}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000053}, !- Inlet Port - {00000000-0000-0000-0015-000000000054}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000145}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000157}, !- Inlet Port {00000000-0000-0000-0015-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000146}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000207}, !- Inlet Port - {00000000-0000-0000-0015-000000000208}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000147}, !- Handle - Sys6 Return Fan Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000107}, !- Inlet Port - {00000000-0000-0000-0015-000000000108}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000148}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000141}, !- Inlet Port - {00000000-0000-0000-0015-000000000143}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000149}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000144}, !- Inlet Port - {00000000-0000-0000-0015-000000000142}; !- Outlet Port + {00000000-0000-0000-0050-000000000095}, !- Handle + Pipe Adiabatic 7 Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000159}, !- Inlet Port + {00000000-0000-0000-0015-000000000160}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000150}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0015-000000000154}, !- Inlet Port - {00000000-0000-0000-0015-000000000155}; !- Outlet Port + {00000000-0000-0000-0050-000000000096}, !- Handle + Pipe Adiabatic 8 Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000162}, !- Inlet Port + {00000000-0000-0000-0015-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000151}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0015-000000000331}; !- Outlet Port + {00000000-0000-0000-0050-000000000097}, !- Handle + Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000067}, !- Inlet Port + {00000000-0000-0000-0015-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000152}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0015-000000000336}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0050-000000000098}, !- Handle + Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000084}, !- Inlet Port + {00000000-0000-0000-0015-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000153}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000139}, !- Inlet Port - {00000000-0000-0000-0015-000000000156}; !- Outlet Port + {00000000-0000-0000-0050-000000000099}, !- Handle + Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000038}, !- Inlet Port + {00000000-0000-0000-0015-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000154}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000149}, !- Inlet Port - {00000000-0000-0000-0015-000000000140}; !- Outlet Port + {00000000-0000-0000-0050-000000000100}, !- Handle + Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000049}, !- Inlet Port + {00000000-0000-0000-0015-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000155}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000191}, !- Inlet Port - {00000000-0000-0000-0015-000000000193}; !- Outlet Port + {00000000-0000-0000-0050-000000000101}, !- Handle + Pump Variable Speed 1 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000046}, !- Inlet Port + {00000000-0000-0000-0015-000000000047}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000156}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000194}, !- Inlet Port - {00000000-0000-0000-0015-000000000192}; !- Outlet Port + {00000000-0000-0000-0050-000000000102}, !- Handle + Pump Variable Speed 2 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000071}, !- Inlet Port + {00000000-0000-0000-0015-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000157}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0015-000000000204}, !- Inlet Port - {00000000-0000-0000-0015-000000000205}; !- Outlet Port + {00000000-0000-0000-0050-000000000103}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000086}, !- Inlet Port + {00000000-0000-0000-0015-000000000087}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000158}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0015-000000000337}; !- Outlet Port + {00000000-0000-0000-0050-000000000104}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000088}, !- Inlet Port + {00000000-0000-0000-0015-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000159}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0015-000000000342}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0050-000000000105}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000051}, !- Inlet Port + {00000000-0000-0000-0015-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000160}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000189}, !- Inlet Port - {00000000-0000-0000-0015-000000000206}; !- Outlet Port + {00000000-0000-0000-0050-000000000106}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000053}, !- Inlet Port + {00000000-0000-0000-0015-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000161}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000199}, !- Inlet Port - {00000000-0000-0000-0015-000000000190}; !- Outlet Port + {00000000-0000-0000-0050-000000000107}, !- Handle + Sys6 Return Fan Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000107}, !- Inlet Port + {00000000-0000-0000-0015-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000162}, !- Handle + {00000000-0000-0000-0050-000000000108}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000092}, !- Inlet Port {00000000-0000-0000-0015-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000163}, !- Handle + {00000000-0000-0000-0050-000000000109}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000095}, !- Inlet Port {00000000-0000-0000-0015-000000000093}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000164}, !- Handle + {00000000-0000-0000-0050-000000000110}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0015-000000000104}, !- Inlet Port {00000000-0000-0000-0015-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000165}, !- Handle + {00000000-0000-0000-0050-000000000111}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0015-000000000325}; !- Outlet Port + {00000000-0000-0000-0015-000000000225}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000166}, !- Handle + {00000000-0000-0000-0050-000000000112}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0015-000000000330}, !- Inlet Port + {00000000-0000-0000-0015-000000000230}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000167}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000090}, !- Inlet Port {00000000-0000-0000-0015-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000168}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000099}, !- Inlet Port {00000000-0000-0000-0015-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000169}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000332}, !- Inlet Port - {00000000-0000-0000-0015-000000000333}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000170}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000334}, !- Inlet Port - {00000000-0000-0000-0015-000000000335}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000171}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000338}, !- Inlet Port - {00000000-0000-0000-0015-000000000339}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000172}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000340}, !- Inlet Port - {00000000-0000-0000-0015-000000000341}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000173}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000326}, !- Inlet Port - {00000000-0000-0000-0015-000000000327}; !- Outlet Port + {00000000-0000-0000-0015-000000000226}, !- Inlet Port + {00000000-0000-0000-0015-000000000227}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000174}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000328}, !- Inlet Port - {00000000-0000-0000-0015-000000000329}; !- Outlet Port + {00000000-0000-0000-0015-000000000228}, !- Inlet Port + {00000000-0000-0000-0015-000000000229}; !- Outlet Port OS:OutputControl:ReportingTolerances, {00000000-0000-0000-0051-000000000001}, !- Handle @@ -6130,7 +4063,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0064-000000000024}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0064-000000000022}, !- Work Efficiency Schedule Name {00000000-0000-0000-0064-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0064-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -6171,26 +4104,26 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0015-000000000253}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000254}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000153}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000154}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0015-000000000256}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000257}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000156}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000157}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0015-000000000260}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000261}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000160}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000161}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0015-000000000263}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000264}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000163}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000164}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0055-000000000001}, !- Handle @@ -6201,7 +4134,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000069}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000039}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -6215,7 +4148,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -6237,7 +4170,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000085}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000047}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -6251,7 +4184,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -6273,21 +4206,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000098}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000060}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0015-000000000239}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0015-000000000241}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0015-000000000139}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0015-000000000141}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0015-000000000242}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0015-000000000245}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000142}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0015-000000000145}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -6302,8 +4235,7 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0056-000000000001}, !- Handle - {00000000-0000-0000-0091-000000000013}, !- HVAC Component - {00000000-0000-0000-0015-000000000159}; !- Port 1 + {00000000-0000-0000-0091-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000002}, !- Handle @@ -6311,13 +4243,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000003}, !- Handle - {00000000-0000-0000-0091-000000000013}, !- HVAC Component - {00000000-0000-0000-0015-000000000160}; !- Port 1 + {00000000-0000-0000-0091-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000004}, !- Handle - {00000000-0000-0000-0091-000000000018}, !- HVAC Component - {00000000-0000-0000-0015-000000000215}; !- Port 1 + {00000000-0000-0000-0091-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000005}, !- Handle @@ -6325,13 +4255,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000006}, !- Handle - {00000000-0000-0000-0091-000000000018}, !- HVAC Component - {00000000-0000-0000-0015-000000000216}; !- Port 1 + {00000000-0000-0000-0091-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000007}, !- Handle - {00000000-0000-0000-0091-000000000014}, !- HVAC Component - {00000000-0000-0000-0015-000000000221}; !- Port 1 + {00000000-0000-0000-0091-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000008}, !- Handle @@ -6339,13 +4267,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000009}, !- Handle - {00000000-0000-0000-0091-000000000014}, !- HVAC Component - {00000000-0000-0000-0015-000000000222}; !- Port 1 + {00000000-0000-0000-0091-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000010}, !- Handle - {00000000-0000-0000-0091-000000000015}, !- HVAC Component - {00000000-0000-0000-0015-000000000209}; !- Port 1 + {00000000-0000-0000-0091-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000011}, !- Handle @@ -6353,13 +4279,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000012}, !- Handle - {00000000-0000-0000-0091-000000000015}, !- HVAC Component - {00000000-0000-0000-0015-000000000210}; !- Port 1 + {00000000-0000-0000-0091-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000013}, !- Handle - {00000000-0000-0000-0091-000000000009}, !- HVAC Component - {00000000-0000-0000-0015-000000000183}; !- Port 1 + {00000000-0000-0000-0091-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000014}, !- Handle @@ -6367,8 +4291,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000015}, !- Handle - {00000000-0000-0000-0091-000000000009}, !- HVAC Component - {00000000-0000-0000-0015-000000000184}; !- Port 1 + {00000000-0000-0000-0091-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000016}, !- Handle @@ -6386,8 +4309,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000019}, !- Handle - {00000000-0000-0000-0091-000000000016}, !- HVAC Component - {00000000-0000-0000-0015-000000000227}; !- Port 1 + {00000000-0000-0000-0091-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000020}, !- Handle @@ -6395,13 +4317,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000021}, !- Handle - {00000000-0000-0000-0091-000000000016}, !- HVAC Component - {00000000-0000-0000-0015-000000000228}; !- Port 1 + {00000000-0000-0000-0091-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000022}, !- Handle - {00000000-0000-0000-0091-000000000010}, !- HVAC Component - {00000000-0000-0000-0015-000000000177}; !- Port 1 + {00000000-0000-0000-0091-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000023}, !- Handle @@ -6409,8 +4329,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000024}, !- Handle - {00000000-0000-0000-0091-000000000010}, !- HVAC Component - {00000000-0000-0000-0015-000000000178}; !- Port 1 + {00000000-0000-0000-0091-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000025}, !- Handle @@ -6426,8 +4345,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000028}, !- Handle - {00000000-0000-0000-0091-000000000017}, !- HVAC Component - {00000000-0000-0000-0015-000000000233}; !- Port 1 + {00000000-0000-0000-0091-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000029}, !- Handle @@ -6435,8 +4353,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000030}, !- Handle - {00000000-0000-0000-0091-000000000017}, !- HVAC Component - {00000000-0000-0000-0015-000000000234}; !- Port 1 + {00000000-0000-0000-0091-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000031}, !- Handle @@ -6466,8 +4383,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000037}, !- Handle - {00000000-0000-0000-0091-000000000011}, !- HVAC Component - {00000000-0000-0000-0015-000000000165}; !- Port 1 + {00000000-0000-0000-0091-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000038}, !- Handle @@ -6475,8 +4391,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000039}, !- Handle - {00000000-0000-0000-0091-000000000011}, !- HVAC Component - {00000000-0000-0000-0015-000000000166}; !- Port 1 + {00000000-0000-0000-0091-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000040}, !- Handle @@ -6506,8 +4421,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000046}, !- Handle - {00000000-0000-0000-0091-000000000012}, !- HVAC Component - {00000000-0000-0000-0015-000000000171}; !- Port 1 + {00000000-0000-0000-0091-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000047}, !- Handle @@ -6515,8 +4429,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000048}, !- Handle - {00000000-0000-0000-0091-000000000012}, !- HVAC Component - {00000000-0000-0000-0015-000000000172}; !- Port 1 + {00000000-0000-0000-0091-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000049}, !- Handle @@ -6549,8 +4462,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0057-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0015-000000000246}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000247}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000146}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000147}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 446362.499964258, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -6574,9 +4487,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0015-000000000045}, !- Inlet Node Name {00000000-0000-0000-0015-000000000046}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 245116.872009805, !- Rated Pump Head {Pa} + 236900.664009476, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.865, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -6607,9 +4520,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0015-000000000070}, !- Inlet Node Name {00000000-0000-0000-0015-000000000071}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 215264.649608611, !- Rated Pump Head {Pa} + 210100.176008404, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.917, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -7406,33 +5319,6 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000037}, !- Handle - Schedule Day 10, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000038}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000039}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7441,7 +5327,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000041}, !- Handle + {00000000-0000-0000-0062-000000000038}, !- Handle Schedule Day 3, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7519,9 +5405,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000042}, !- Handle + {00000000-0000-0000-0062-000000000039}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7597,25 +5483,25 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000043}, !- Handle + {00000000-0000-0000-0062-000000000040}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000044}, !- Handle + {00000000-0000-0000-0062-000000000041}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000045}, !- Handle + {00000000-0000-0000-0062-000000000042}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7624,7 +5510,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000046}, !- Handle + {00000000-0000-0000-0062-000000000043}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7633,16 +5519,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000047}, !- Handle - Schedule Day 9, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000048}, !- Handle + {00000000-0000-0000-0062-000000000044}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7651,34 +5528,16 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000049}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000050}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000051}, !- Handle + {00000000-0000-0000-0062-000000000045}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000052}, !- Handle + {00000000-0000-0000-0062-000000000046}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7687,7 +5546,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000053}, !- Handle + {00000000-0000-0000-0062-000000000047}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7696,7 +5555,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000054}, !- Handle + {00000000-0000-0000-0062-000000000048}, !- Handle satCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7774,7 +5633,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000055}, !- Handle + {00000000-0000-0000-0062-000000000049}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7852,9 +5711,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000056}, !- Handle + {00000000-0000-0000-0062-000000000050}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7930,7 +5789,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000057}, !- Handle + {00000000-0000-0000-0062-000000000051}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8008,7 +5867,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000058}, !- Handle + {00000000-0000-0000-0062-000000000052}, !- Handle sunCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8086,7 +5945,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000059}, !- Handle + {00000000-0000-0000-0062-000000000053}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8164,9 +6023,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000060}, !- Handle + {00000000-0000-0000-0062-000000000054}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -8242,7 +6101,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000061}, !- Handle + {00000000-0000-0000-0062-000000000055}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8320,73 +6179,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000062}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000063}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000064}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000065}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000066}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000067}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000068}, !- Handle + {00000000-0000-0000-0062-000000000056}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8401,7 +6194,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000069}, !- Handle + {00000000-0000-0000-0062-000000000057}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8410,7 +6203,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000070}, !- Handle + {00000000-0000-0000-0062-000000000058}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8419,7 +6212,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000071}, !- Handle + {00000000-0000-0000-0062-000000000059}, !- Handle wkdCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8497,7 +6290,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000072}, !- Handle + {00000000-0000-0000-0062-000000000060}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8575,9 +6368,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000073}, !- Handle + {00000000-0000-0000-0062-000000000061}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -8653,7 +6446,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000074}, !- Handle + {00000000-0000-0000-0062-000000000062}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8961,9 +6754,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0064-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0064-000000000023}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000042}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8980,9 +6773,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0064-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0064-000000000023}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000046}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8998,82 +6791,6 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000015}, !- Handle - Schedule Rule 22, !- Name - {00000000-0000-0000-0064-000000000025}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0062-000000000047}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000016}, !- Handle - Schedule Rule 23, !- Name - {00000000-0000-0000-0064-000000000025}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0062-000000000037}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0064-000000000026}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0062-000000000038}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0064-000000000026}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0062-000000000039}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0064-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -9092,7 +6809,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000020}, !- Handle + {00000000-0000-0000-0063-000000000016}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0064-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -9111,7 +6828,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000021}, !- Handle + {00000000-0000-0000-0063-000000000017}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0064-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order @@ -9130,7 +6847,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000022}, !- Handle + {00000000-0000-0000-0063-000000000018}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0064-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -9149,7 +6866,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000023}, !- Handle + {00000000-0000-0000-0063-000000000019}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0064-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -9168,7 +6885,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000024}, !- Handle + {00000000-0000-0000-0063-000000000020}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0064-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -9187,7 +6904,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000025}, !- Handle + {00000000-0000-0000-0063-000000000021}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0064-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -9206,11 +6923,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000026}, !- Handle + {00000000-0000-0000-0063-000000000022}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000048}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9225,11 +6942,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000027}, !- Handle + {00000000-0000-0000-0063-000000000023}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000050}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9244,11 +6961,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000028}, !- Handle + {00000000-0000-0000-0063-000000000024}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000058}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000052}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9263,11 +6980,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000029}, !- Handle + {00000000-0000-0000-0063-000000000025}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000060}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9282,11 +6999,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000030}, !- Handle + {00000000-0000-0000-0063-000000000026}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0062-000000000071}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000059}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -9301,11 +7018,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000031}, !- Handle + {00000000-0000-0000-0063-000000000027}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0062-000000000073}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000061}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -9335,13 +7052,13 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000003}, !- Handle CHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000038}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000042}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000039}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000005}, !- Handle @@ -9420,74 +7137,46 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000043}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000040}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000020}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000049}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000021}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000050}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000022}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000051}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000023}, !- Handle + {00000000-0000-0000-0064-000000000021}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000052}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000024}, !- Handle + {00000000-0000-0000-0064-000000000022}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000053}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000025}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000062}, !- Default Day Schedule Name - {00000000-0000-0000-0062-000000000063}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0062-000000000064}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000026}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000065}, !- Default Day Schedule Name - {00000000-0000-0000-0062-000000000066}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0062-000000000067}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0062-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000027}, !- Handle + {00000000-0000-0000-0064-000000000023}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000068}, !- Default Day Schedule Name - {00000000-0000-0000-0062-000000000069}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0062-000000000070}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0062-000000000056}, !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000057}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0062-000000000058}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0065-000000000001}, !- Handle @@ -9568,81 +7257,39 @@ OS:SetpointManager:OutdoorAirPretreat, 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000164}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000164}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000165}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000147}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000173}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0066-000000000002}, !- Handle - Setpoint Manager Outdoor Air Pretreat 2, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000150}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000150}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000151}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000145}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000169}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0066-000000000003}, !- Handle - Setpoint Manager Outdoor Air Pretreat 3, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000157}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000157}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000158}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000146}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000171}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000110}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000110}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000111}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000107}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000115}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000019}, !- Schedule Name - {00000000-0000-0000-0050-000000000098}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000060}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000003}, !- Schedule Name - {00000000-0000-0000-0050-000000000069}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000039}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000004}, !- Schedule Name - {00000000-0000-0000-0050-000000000085}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000047}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0064-000000000022}, !- Schedule Name - {00000000-0000-0000-0050-000000000168}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0067-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name - Temperature, !- Control Variable {00000000-0000-0000-0064-000000000020}, !- Schedule Name - {00000000-0000-0000-0050-000000000154}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0067-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0064-000000000021}, !- Schedule Name - {00000000-0000-0000-0050-000000000161}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000114}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0068-000000000001}, !- Handle @@ -9785,47 +7432,6 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0078-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0078-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -9865,60 +7471,19 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity -OS:Sizing:System, - {00000000-0000-0000-0078-000000000003}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - OS:Sizing:Zone, {00000000-0000-0000-0079-000000000001}, !- Handle {00000000-0000-0000-0091-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9944,16 +7509,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000002}, !- Handle {00000000-0000-0000-0091-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9979,16 +7544,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000003}, !- Handle {00000000-0000-0000-0091-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10014,16 +7579,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000004}, !- Handle {00000000-0000-0000-0091-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10049,16 +7614,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000005}, !- Handle {00000000-0000-0000-0091-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10119,16 +7684,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000007}, !- Handle {00000000-0000-0000-0091-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10154,16 +7719,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000008}, !- Handle {00000000-0000-0000-0091-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10224,16 +7789,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000010}, !- Handle {00000000-0000-0000-0091-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10329,16 +7894,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000013}, !- Handle {00000000-0000-0000-0091-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10434,16 +7999,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000016}, !- Handle {00000000-0000-0000-0091-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -14664,7 +12229,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0064-000000000023}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0064-000000000021}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 3.09460458577128, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -14674,8 +12239,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0015-000000000249}, !- Use Side Inlet Node Name - {00000000-0000-0000-0015-000000000250}, !- Use Side Outlet Node Name + {00000000-0000-0000-0015-000000000149}, !- Use Side Inlet Node Name + {00000000-0000-0000-0015-000000000150}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -14698,8 +12263,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000001}, !- Handle Core_bottom WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000266}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000267}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000166}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000167}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14712,8 +12277,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000002}, !- Handle Core_mid WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000270}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000271}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000170}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000171}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14726,8 +12291,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000003}, !- Handle Core_top WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000274}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000275}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000174}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000175}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14740,8 +12305,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000278}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000279}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000178}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000179}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14754,8 +12319,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000282}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000283}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000182}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000183}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14768,8 +12333,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000286}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000287}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000186}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000187}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14782,8 +12347,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000290}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000291}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000190}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000191}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14796,8 +12361,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000294}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000295}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000194}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000195}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14810,8 +12375,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000298}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000299}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000198}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000199}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14824,8 +12389,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000302}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000303}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000202}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000203}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14838,8 +12403,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000306}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000307}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000206}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000207}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14852,8 +12417,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000310}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000311}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000210}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000211}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14866,8 +12431,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000314}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000315}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000214}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000215}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14880,8 +12445,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000318}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000319}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000218}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000219}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14894,8 +12459,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000322}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000323}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000222}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000223}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15189,102 +12754,32 @@ OS:ZoneHVAC:Baseboard:Convective:Electric, OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0103-000000000002}, !- Handle - Zone HVAC Baseboard Convective Electric 10, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000003}, !- Handle - Zone HVAC Baseboard Convective Electric 11, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000004}, !- Handle - Zone HVAC Baseboard Convective Electric 12, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000005}, !- Handle - Zone HVAC Baseboard Convective Electric 13, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000006}, !- Handle - Zone HVAC Baseboard Convective Electric 14, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000007}, !- Handle - Zone HVAC Baseboard Convective Electric 15, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000008}, !- Handle Zone HVAC Baseboard Convective Electric 2, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000009}, !- Handle + {00000000-0000-0000-0103-000000000003}, !- Handle Zone HVAC Baseboard Convective Electric 3, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000010}, !- Handle + {00000000-0000-0000-0103-000000000004}, !- Handle Zone HVAC Baseboard Convective Electric 4, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000011}, !- Handle + {00000000-0000-0000-0103-000000000005}, !- Handle Zone HVAC Baseboard Convective Electric 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000012}, !- Handle - Zone HVAC Baseboard Convective Electric 6, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000013}, !- Handle - Zone HVAC Baseboard Convective Electric 7, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000014}, !- Handle - Zone HVAC Baseboard Convective Electric 8, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000015}, !- Handle - Zone HVAC Baseboard Convective Electric 9, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name @@ -15308,12 +12803,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000009}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000003}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15324,12 +12819,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000008}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15340,12 +12835,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000010}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000004}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15356,12 +12851,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000011}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000005}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15387,159 +12882,59 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000012}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 174be4cc47..38aaa2d3a0 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -3811,41 +3811,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6cf975b3-d8e3-49f7-a900-69ca89b35c2b}<23.9 && {6cf975b3-d8e3-49f7-a900-69ca89b35c2b}>1.7, !- Program Line 1 - SET {b10c85bd-ad4f-4828-bcbc-119d3b887b03} = 29.4, !- Program Line 2 - SET {1f25cff8-1aa7-407d-a495-052dabfbc246} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6cf975b3-d8e3-49f7-a900-69ca89b35c2b}<23.9 && {6cf975b3-d8e3-49f7-a900-69ca89b35c2b}>1.7, !- Program Line 4 - SET {b10c85bd-ad4f-4828-bcbc-119d3b887b03} = 29.4, !- Program Line 5 - SET {1f25cff8-1aa7-407d-a495-052dabfbc246} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6cf975b3-d8e3-49f7-a900-69ca89b35c2b}<23.9 && {6cf975b3-d8e3-49f7-a900-69ca89b35c2b}>1.7, !- Program Line 7 - SET {b10c85bd-ad4f-4828-bcbc-119d3b887b03} = 29.4, !- Program Line 8 - SET {1f25cff8-1aa7-407d-a495-052dabfbc246} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6cf975b3-d8e3-49f7-a900-69ca89b35c2b}<23.9 && {6cf975b3-d8e3-49f7-a900-69ca89b35c2b}>1.7, !- Program Line 10 - SET {b10c85bd-ad4f-4828-bcbc-119d3b887b03} = 29.4, !- Program Line 11 - SET {1f25cff8-1aa7-407d-a495-052dabfbc246} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3e159e2b-1f60-4502-bc2c-bef080d02655}<23.9 && {3e159e2b-1f60-4502-bc2c-bef080d02655}>1.7, !- Program Line 1 + SET {5125af23-1152-49fb-b139-bff404d2514c} = 29.4, !- Program Line 2 + SET {66f365f8-df3a-464a-8b7a-7f1004ed781b} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3e159e2b-1f60-4502-bc2c-bef080d02655}<23.9 && {3e159e2b-1f60-4502-bc2c-bef080d02655}>1.7, !- Program Line 4 + SET {5125af23-1152-49fb-b139-bff404d2514c} = 29.4, !- Program Line 5 + SET {66f365f8-df3a-464a-8b7a-7f1004ed781b} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3e159e2b-1f60-4502-bc2c-bef080d02655}<23.9 && {3e159e2b-1f60-4502-bc2c-bef080d02655}>1.7, !- Program Line 7 + SET {5125af23-1152-49fb-b139-bff404d2514c} = 29.4, !- Program Line 8 + SET {66f365f8-df3a-464a-8b7a-7f1004ed781b} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3e159e2b-1f60-4502-bc2c-bef080d02655}<23.9 && {3e159e2b-1f60-4502-bc2c-bef080d02655}>1.7, !- Program Line 10 + SET {5125af23-1152-49fb-b139-bff404d2514c} = 29.4, !- Program Line 11 + SET {66f365f8-df3a-464a-8b7a-7f1004ed781b} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b10c85bd-ad4f-4828-bcbc-119d3b887b03} = NULL, !- Program Line 14 - SET {1f25cff8-1aa7-407d-a495-052dabfbc246} = NULL, !- Program Line 15 + SET {5125af23-1152-49fb-b139-bff404d2514c} = NULL, !- Program Line 14 + SET {66f365f8-df3a-464a-8b7a-7f1004ed781b} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b236bd01-5c27-4717-b042-e5cd5bd35005}<23.9 && {b236bd01-5c27-4717-b042-e5cd5bd35005}>1.7, !- Program Line 1 - SET {e8f41d75-0f6a-4fe2-b247-0df489a0782f} = 29.4, !- Program Line 2 - SET {79bdf57d-681d-4df5-8ad9-8ac790ba7959} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b236bd01-5c27-4717-b042-e5cd5bd35005}<23.9 && {b236bd01-5c27-4717-b042-e5cd5bd35005}>1.7, !- Program Line 4 - SET {e8f41d75-0f6a-4fe2-b247-0df489a0782f} = 29.4, !- Program Line 5 - SET {79bdf57d-681d-4df5-8ad9-8ac790ba7959} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b236bd01-5c27-4717-b042-e5cd5bd35005}<23.9 && {b236bd01-5c27-4717-b042-e5cd5bd35005}>1.7, !- Program Line 7 - SET {e8f41d75-0f6a-4fe2-b247-0df489a0782f} = 29.4, !- Program Line 8 - SET {79bdf57d-681d-4df5-8ad9-8ac790ba7959} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b236bd01-5c27-4717-b042-e5cd5bd35005}<23.9 && {b236bd01-5c27-4717-b042-e5cd5bd35005}>1.7, !- Program Line 10 - SET {e8f41d75-0f6a-4fe2-b247-0df489a0782f} = 29.4, !- Program Line 11 - SET {79bdf57d-681d-4df5-8ad9-8ac790ba7959} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {dbed53c6-26e4-48a7-80b1-2b9959f34b79}<23.9 && {dbed53c6-26e4-48a7-80b1-2b9959f34b79}>1.7, !- Program Line 1 + SET {ec834618-4ba2-4060-a30b-b38d0b9076ae} = 29.4, !- Program Line 2 + SET {67cf72d3-1b3c-4a11-82c7-a802b640ec70} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {dbed53c6-26e4-48a7-80b1-2b9959f34b79}<23.9 && {dbed53c6-26e4-48a7-80b1-2b9959f34b79}>1.7, !- Program Line 4 + SET {ec834618-4ba2-4060-a30b-b38d0b9076ae} = 29.4, !- Program Line 5 + SET {67cf72d3-1b3c-4a11-82c7-a802b640ec70} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {dbed53c6-26e4-48a7-80b1-2b9959f34b79}<23.9 && {dbed53c6-26e4-48a7-80b1-2b9959f34b79}>1.7, !- Program Line 7 + SET {ec834618-4ba2-4060-a30b-b38d0b9076ae} = 29.4, !- Program Line 8 + SET {67cf72d3-1b3c-4a11-82c7-a802b640ec70} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {dbed53c6-26e4-48a7-80b1-2b9959f34b79}<23.9 && {dbed53c6-26e4-48a7-80b1-2b9959f34b79}>1.7, !- Program Line 10 + SET {ec834618-4ba2-4060-a30b-b38d0b9076ae} = 29.4, !- Program Line 11 + SET {67cf72d3-1b3c-4a11-82c7-a802b640ec70} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e8f41d75-0f6a-4fe2-b247-0df489a0782f} = NULL, !- Program Line 14 - SET {79bdf57d-681d-4df5-8ad9-8ac790ba7959} = NULL, !- Program Line 15 + SET {ec834618-4ba2-4060-a30b-b38d0b9076ae} = NULL, !- Program Line 14 + SET {67cf72d3-1b3c-4a11-82c7-a802b640ec70} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 33ab4e172d..917a8bb2b6 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -3881,41 +3881,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c1464080-4692-4e61-91af-797a1f054594}<23.9 && {c1464080-4692-4e61-91af-797a1f054594}>1.7, !- Program Line 1 - SET {292c391f-e714-47f0-b6ac-5c611cc96113} = 29.4, !- Program Line 2 - SET {903d7afc-e2a6-4cb6-ae56-95461ac00625} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c1464080-4692-4e61-91af-797a1f054594}<23.9 && {c1464080-4692-4e61-91af-797a1f054594}>1.7, !- Program Line 4 - SET {292c391f-e714-47f0-b6ac-5c611cc96113} = 29.4, !- Program Line 5 - SET {903d7afc-e2a6-4cb6-ae56-95461ac00625} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c1464080-4692-4e61-91af-797a1f054594}<23.9 && {c1464080-4692-4e61-91af-797a1f054594}>1.7, !- Program Line 7 - SET {292c391f-e714-47f0-b6ac-5c611cc96113} = 29.4, !- Program Line 8 - SET {903d7afc-e2a6-4cb6-ae56-95461ac00625} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c1464080-4692-4e61-91af-797a1f054594}<23.9 && {c1464080-4692-4e61-91af-797a1f054594}>1.7, !- Program Line 10 - SET {292c391f-e714-47f0-b6ac-5c611cc96113} = 29.4, !- Program Line 11 - SET {903d7afc-e2a6-4cb6-ae56-95461ac00625} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b4e2cc20-2a96-4bd8-9df4-4a871a7be7dd}<23.9 && {b4e2cc20-2a96-4bd8-9df4-4a871a7be7dd}>1.7, !- Program Line 1 + SET {47dc3d43-243b-4b87-9230-3391dac9cec7} = 29.4, !- Program Line 2 + SET {7f7ec66a-1bfe-44da-8867-0371f3c22e1e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b4e2cc20-2a96-4bd8-9df4-4a871a7be7dd}<23.9 && {b4e2cc20-2a96-4bd8-9df4-4a871a7be7dd}>1.7, !- Program Line 4 + SET {47dc3d43-243b-4b87-9230-3391dac9cec7} = 29.4, !- Program Line 5 + SET {7f7ec66a-1bfe-44da-8867-0371f3c22e1e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b4e2cc20-2a96-4bd8-9df4-4a871a7be7dd}<23.9 && {b4e2cc20-2a96-4bd8-9df4-4a871a7be7dd}>1.7, !- Program Line 7 + SET {47dc3d43-243b-4b87-9230-3391dac9cec7} = 29.4, !- Program Line 8 + SET {7f7ec66a-1bfe-44da-8867-0371f3c22e1e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b4e2cc20-2a96-4bd8-9df4-4a871a7be7dd}<23.9 && {b4e2cc20-2a96-4bd8-9df4-4a871a7be7dd}>1.7, !- Program Line 10 + SET {47dc3d43-243b-4b87-9230-3391dac9cec7} = 29.4, !- Program Line 11 + SET {7f7ec66a-1bfe-44da-8867-0371f3c22e1e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {292c391f-e714-47f0-b6ac-5c611cc96113} = NULL, !- Program Line 14 - SET {903d7afc-e2a6-4cb6-ae56-95461ac00625} = NULL, !- Program Line 15 + SET {47dc3d43-243b-4b87-9230-3391dac9cec7} = NULL, !- Program Line 14 + SET {7f7ec66a-1bfe-44da-8867-0371f3c22e1e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c19e527c-18ab-4c6d-9773-ef6ec8a38583}<23.9 && {c19e527c-18ab-4c6d-9773-ef6ec8a38583}>1.7, !- Program Line 1 - SET {194fdea8-8500-4267-b88c-4b71cd411eb0} = 29.4, !- Program Line 2 - SET {a8c64db9-7b44-493d-901b-bb29292d8015} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c19e527c-18ab-4c6d-9773-ef6ec8a38583}<23.9 && {c19e527c-18ab-4c6d-9773-ef6ec8a38583}>1.7, !- Program Line 4 - SET {194fdea8-8500-4267-b88c-4b71cd411eb0} = 29.4, !- Program Line 5 - SET {a8c64db9-7b44-493d-901b-bb29292d8015} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c19e527c-18ab-4c6d-9773-ef6ec8a38583}<23.9 && {c19e527c-18ab-4c6d-9773-ef6ec8a38583}>1.7, !- Program Line 7 - SET {194fdea8-8500-4267-b88c-4b71cd411eb0} = 29.4, !- Program Line 8 - SET {a8c64db9-7b44-493d-901b-bb29292d8015} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c19e527c-18ab-4c6d-9773-ef6ec8a38583}<23.9 && {c19e527c-18ab-4c6d-9773-ef6ec8a38583}>1.7, !- Program Line 10 - SET {194fdea8-8500-4267-b88c-4b71cd411eb0} = 29.4, !- Program Line 11 - SET {a8c64db9-7b44-493d-901b-bb29292d8015} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {07191eeb-09a5-4d01-a7f0-73b7c7c8ba94}<23.9 && {07191eeb-09a5-4d01-a7f0-73b7c7c8ba94}>1.7, !- Program Line 1 + SET {baf0f692-e180-43b0-9745-323558400170} = 29.4, !- Program Line 2 + SET {114d2caa-47b4-4f85-9de8-084d4b00e3a5} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {07191eeb-09a5-4d01-a7f0-73b7c7c8ba94}<23.9 && {07191eeb-09a5-4d01-a7f0-73b7c7c8ba94}>1.7, !- Program Line 4 + SET {baf0f692-e180-43b0-9745-323558400170} = 29.4, !- Program Line 5 + SET {114d2caa-47b4-4f85-9de8-084d4b00e3a5} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {07191eeb-09a5-4d01-a7f0-73b7c7c8ba94}<23.9 && {07191eeb-09a5-4d01-a7f0-73b7c7c8ba94}>1.7, !- Program Line 7 + SET {baf0f692-e180-43b0-9745-323558400170} = 29.4, !- Program Line 8 + SET {114d2caa-47b4-4f85-9de8-084d4b00e3a5} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {07191eeb-09a5-4d01-a7f0-73b7c7c8ba94}<23.9 && {07191eeb-09a5-4d01-a7f0-73b7c7c8ba94}>1.7, !- Program Line 10 + SET {baf0f692-e180-43b0-9745-323558400170} = 29.4, !- Program Line 11 + SET {114d2caa-47b4-4f85-9de8-084d4b00e3a5} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {194fdea8-8500-4267-b88c-4b71cd411eb0} = NULL, !- Program Line 14 - SET {a8c64db9-7b44-493d-901b-bb29292d8015} = NULL, !- Program Line 15 + SET {baf0f692-e180-43b0-9745-323558400170} = NULL, !- Program Line 14 + SET {114d2caa-47b4-4f85-9de8-084d4b00e3a5} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm index e26458b819..c6a6e6c7bd 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0066-000000000027}, !- Object Name + {00000000-0000-0000-0066-000000000023}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.066608825093468, !- Feature Value 1 @@ -16,94 +16,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0066-000000000025}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.066608825093468, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0066-000000000026}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.066608825093468, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0012-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0001-000000000003}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0066-000000000025}, !- Availability Schedule - {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000207}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000210}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000209}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000208}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0066-000000000026}, !- Availability Schedule - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000301}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000304}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000303}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000302}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0066-000000000027}, !- Availability Schedule - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0066-000000000023}, !- Availability Schedule + {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -127,32 +51,10 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000132}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000483}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000484}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000295}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000296}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000136}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000002}, !- Handle - Air Loop HVAC Outdoor Air System 2, !- Name - {00000000-0000-0000-0022-000000000002}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000226}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000489}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000490}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000230}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0022-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000320}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000495}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000496}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000324}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -163,26 +65,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000189}, !- Inlet Node Name 4 {00000000-0000-0000-0017-000000000203}; !- Inlet Node Name 5 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000002}, !- Handle - Air Loop HVAC Zone Mixer 2, !- Name - {00000000-0000-0000-0017-000000000212}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000241}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000255}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000269}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000283}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000297}; !- Inlet Node Name 5 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0017-000000000306}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000335}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000349}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000363}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000377}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000391}; !- Inlet Node Name 5 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -193,26 +75,6 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000190}, !- Outlet Node Name 4 {00000000-0000-0000-0017-000000000204}; !- Outlet Node Name 5 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000002}, !- Handle - Air Loop HVAC Zone Splitter 2, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000242}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000256}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000270}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000284}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000298}; !- Outlet Node Name 5 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0017-000000000305}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000336}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000350}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000364}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000378}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000392}; !- Outlet Node Name 5 - OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -223,7 +85,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000011}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000150}, !- Air Outlet Node Name @@ -236,132 +98,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000299}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000300}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000337}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000338}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000351}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000352}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000365}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000366}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000379}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000009}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000380}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000393}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000010}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000394}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000163}, !- Air Inlet Node Name @@ -370,7 +106,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000012}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000164}, !- Air Outlet Node Name @@ -382,7 +118,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000009}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000177}, !- Air Inlet Node Name @@ -391,7 +127,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000013}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000178}, !- Air Outlet Node Name @@ -403,7 +139,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000010}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000191}, !- Air Inlet Node Name @@ -412,7 +148,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000014}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000005}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000192}, !- Air Outlet Node Name @@ -424,7 +160,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000011}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000205}, !- Air Inlet Node Name @@ -433,7 +169,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000015}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000206}, !- Air Outlet Node Name @@ -444,90 +180,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000243}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000017}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000244}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000257}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000018}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000258}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000271}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000272}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000285}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000286}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -542,81 +194,43 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0051-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0051-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0051-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0051-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000003}, !- Handle Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000004}, !- Handle + {00000000-0000-0000-0008-000000000002}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000005}, !- Handle + {00000000-0000-0000-0008-000000000003}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000006}, !- Handle + {00000000-0000-0000-0008-000000000004}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000007}, !- Handle + {00000000-0000-0000-0008-000000000005}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000001}, !- Handle - Primary Boiler 1845kBtu/hr 0.83 Thermal Eff, !- Name + Primary Boiler 361kBtu/hr 0.83 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 540792.26829436, !- Nominal Capacity {W} + 105767.86310854, !- Nominal Capacity {W} 0.83, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} - 0.25, !- Minimum Part Load Ratio + , !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio {00000000-0000-0000-0017-000000000048}, !- Boiler Water Inlet Node Name {00000000-0000-0000-0017-000000000049}, !- Boiler Water Outlet Node Name 99, !- Water Outlet Upper Temperature Limit {C} - LeavingSetpointModulated, !- Boiler Flow Mode + ConstantFlow, !- Boiler Flow Mode 0, !- On Cycle Parasitic Electric Load {W} 0, !- Off Cycle Parasitic Fuel Load {W} 1, !- Sizing Factor @@ -624,10 +238,10 @@ OS:Boiler:HotWater, OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000002}, !- Handle - Secondary Boiler 0kBtu/hr 0.85 AFUE, !- Name + Secondary Boiler 361kBtu/hr 0.83 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 0.001, !- Nominal Capacity {W} - 0.85, !- Nominal Thermal Efficiency + 105767.86310854, !- Nominal Capacity {W} + 0.83, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} @@ -692,8 +306,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton, !- Name - 237968.431950895, !- Reference Capacity {W} + Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton, !- Name + 95292.0324647093, !- Reference Capacity {W} 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -736,9 +350,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0026-000000000007}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0026-000000000005}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -789,42 +403,6 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0014-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000218}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000219}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000227}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000224}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0014-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000312}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000313}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000321}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000318}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Heating Water 1, !- Name @@ -845,168 +423,6 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000002}, !- Handle - Coil Heating Water 10, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000260}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000261}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 11020.0849056244, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000003}, !- Handle - Coil Heating Water 11, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000274}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000275}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 6187.80405521393, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000004}, !- Handle - Coil Heating Water 12, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000288}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000289}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 11857.871389389, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000005}, !- Handle - Coil Heating Water 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000308}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000309}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000319}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000316}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000006}, !- Handle - Coil Heating Water 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000326}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000327}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 22238.1554603577, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000007}, !- Handle - Coil Heating Water 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000340}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000341}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 13827.2543907166, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000008}, !- Handle - Coil Heating Water 16, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000354}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000355}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 11500.2985954285, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000009}, !- Handle - Coil Heating Water 17, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000368}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000369}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 7091.35980606079, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000010}, !- Handle - Coil Heating Water 18, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000382}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000383}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 12537.4444484711, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000011}, !- Handle Coil Heating Water 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1016,7 +432,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 13067.0129299164, !- Rated Capacity {W} + 24868.4987068176, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1024,7 +440,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000012}, !- Handle + {00000000-0000-0000-0015-000000000003}, !- Handle Coil Heating Water 3, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1034,7 +450,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 11280.1081180573, !- Rated Capacity {W} + 14588.2245540619, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1042,7 +458,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000013}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Handle Coil Heating Water 4, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1052,7 +468,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 10132.8232526779, !- Rated Capacity {W} + 12384.0525627136, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1060,7 +476,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000014}, !- Handle + {00000000-0000-0000-0015-000000000005}, !- Handle Coil Heating Water 5, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1070,7 +486,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 5639.30861949921, !- Rated Capacity {W} + 6629.09781932831, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1078,7 +494,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000015}, !- Handle + {00000000-0000-0000-0015-000000000006}, !- Handle Coil Heating Water 6, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1088,61 +504,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 11510.5686664581, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000016}, !- Handle - Coil Heating Water 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000214}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000215}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000225}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000222}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000017}, !- Handle - Coil Heating Water 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000232}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000233}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 18493.941450119, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000018}, !- Handle - Coil Heating Water 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000246}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000247}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 12915.1157855988, !- Rated Capacity {W} + 13672.8299617767, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1164,7 +526,7 @@ OS:Coil:Heating:Water:Baseboard, OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Water Baseboard 10, !- Name + Coil Heating Water Baseboard 2, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1172,12 +534,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000292}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000293}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000156}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000157}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Water Baseboard 11, !- Name + Coil Heating Water Baseboard 3, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1185,12 +547,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000330}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000331}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000170}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000171}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Heating Water Baseboard 12, !- Name + Coil Heating Water Baseboard 4, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1198,12 +560,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000344}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000345}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000184}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000185}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000005}, !- Handle - Coil Heating Water Baseboard 13, !- Name + Coil Heating Water Baseboard 5, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1211,152 +573,22 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000358}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000359}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000198}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000199}; !- Water Outlet Node Name -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000006}, !- Handle - Coil Heating Water Baseboard 14, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000372}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000373}; !- Water Outlet Node Name +OS:Connection, + {00000000-0000-0000-0017-000000000001}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000007}, !- Handle - Coil Heating Water Baseboard 15, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000386}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000387}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000008}, !- Handle - Coil Heating Water Baseboard 2, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000156}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000157}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000009}, !- Handle - Coil Heating Water Baseboard 3, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000170}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000171}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000010}, !- Handle - Coil Heating Water Baseboard 4, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000184}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000185}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000011}, !- Handle - Coil Heating Water Baseboard 5, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000198}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000199}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000012}, !- Handle - Coil Heating Water Baseboard 6, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000236}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000237}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000013}, !- Handle - Coil Heating Water Baseboard 7, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000250}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000251}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000014}, !- Handle - Coil Heating Water Baseboard 8, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000264}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000265}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000015}, !- Handle - Coil Heating Water Baseboard 9, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000278}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000279}; !- Water Outlet Node Name - -OS:Connection, - {00000000-0000-0000-0017-000000000001}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000002}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Connection, + {00000000-0000-0000-0017-000000000002}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000003}, !- Handle @@ -1474,35 +706,35 @@ OS:Connection, {00000000-0000-0000-0017-000000000019}, !- Handle {00000000-0000-0000-0094-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000025}, !- Target Object + {00000000-0000-0000-0052-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000020}, !- Handle {00000000-0000-0000-0094-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000035}, !- Target Object + {00000000-0000-0000-0052-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000021}, !- Handle {00000000-0000-0000-0094-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000027}, !- Target Object + {00000000-0000-0000-0052-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000022}, !- Handle {00000000-0000-0000-0094-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000029}, !- Target Object + {00000000-0000-0000-0052-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000023}, !- Handle {00000000-0000-0000-0094-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000017}, !- Target Object + {00000000-0000-0000-0052-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1516,14 +748,14 @@ OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle {00000000-0000-0000-0094-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000031}, !- Target Object + {00000000-0000-0000-0052-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle {00000000-0000-0000-0094-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000019}, !- Target Object + {00000000-0000-0000-0052-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1537,7 +769,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle {00000000-0000-0000-0094-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000033}, !- Target Object + {00000000-0000-0000-0052-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1558,7 +790,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle {00000000-0000-0000-0094-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000021}, !- Target Object + {00000000-0000-0000-0052-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1579,7 +811,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle {00000000-0000-0000-0094-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000023}, !- Target Object + {00000000-0000-0000-0052-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1600,19 +832,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle {00000000-0000-0000-0057-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000162}, !- Target Object + {00000000-0000-0000-0052-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000208}, !- Target Object + {00000000-0000-0000-0052-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0052-000000000163}, !- Source Object + {00000000-0000-0000-0052-000000000081}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000003}, !- Target Object 15; !- Inlet Port @@ -1621,12 +853,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle {00000000-0000-0000-0057-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000160}, !- Target Object + {00000000-0000-0000-0052-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0052-000000000160}, !- Source Object + {00000000-0000-0000-0052-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -1635,26 +867,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000079}, !- Target Object + {00000000-0000-0000-0052-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000161}, !- Target Object + {00000000-0000-0000-0052-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0052-000000000161}, !- Source Object + {00000000-0000-0000-0052-000000000079}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0052-000000000162}, !- Source Object + {00000000-0000-0000-0052-000000000080}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000001}, !- Target Object 2; !- Inlet Port @@ -1663,19 +895,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle {00000000-0000-0000-0060-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000214}, !- Target Object + {00000000-0000-0000-0052-000000000132}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle - {00000000-0000-0000-0052-000000000214}, !- Source Object + {00000000-0000-0000-0052-000000000132}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0052-000000000208}, !- Source Object + {00000000-0000-0000-0052-000000000126}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000001}, !- Target Object 11; !- Inlet Port @@ -1684,12 +916,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0009-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000209}, !- Target Object + {00000000-0000-0000-0052-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0052-000000000209}, !- Source Object + {00000000-0000-0000-0052-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -1698,12 +930,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000217}, !- Target Object + {00000000-0000-0000-0052-000000000135}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle - {00000000-0000-0000-0052-000000000217}, !- Source Object + {00000000-0000-0000-0052-000000000135}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000002}, !- Target Object 11; !- Inlet Port @@ -1712,12 +944,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle {00000000-0000-0000-0009-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000218}, !- Target Object + {00000000-0000-0000-0052-000000000136}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle - {00000000-0000-0000-0052-000000000218}, !- Source Object + {00000000-0000-0000-0052-000000000136}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -1726,12 +958,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000193}, !- Target Object + {00000000-0000-0000-0052-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle - {00000000-0000-0000-0052-000000000193}, !- Source Object + {00000000-0000-0000-0052-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000001}, !- Target Object 2; !- Inlet Port @@ -1740,12 +972,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle {00000000-0000-0000-0056-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000194}, !- Target Object + {00000000-0000-0000-0052-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle - {00000000-0000-0000-0052-000000000194}, !- Source Object + {00000000-0000-0000-0052-000000000112}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1754,12 +986,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000196}, !- Target Object + {00000000-0000-0000-0052-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0052-000000000196}, !- Source Object + {00000000-0000-0000-0052-000000000114}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000003}, !- Target Object 2; !- Inlet Port @@ -1768,26 +1000,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle {00000000-0000-0000-0056-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000163}, !- Target Object + {00000000-0000-0000-0052-000000000081}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000068}, !- Target Object + {00000000-0000-0000-0052-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000212}, !- Target Object + {00000000-0000-0000-0052-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle - {00000000-0000-0000-0052-000000000069}, !- Source Object + {00000000-0000-0000-0052-000000000039}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 15; !- Inlet Port @@ -1796,12 +1028,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000066}, !- Target Object + {00000000-0000-0000-0052-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle - {00000000-0000-0000-0052-000000000066}, !- Source Object + {00000000-0000-0000-0052-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1810,26 +1042,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000070}, !- Target Object + {00000000-0000-0000-0052-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000067}, !- Target Object + {00000000-0000-0000-0052-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0052-000000000067}, !- Source Object + {00000000-0000-0000-0052-000000000037}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle - {00000000-0000-0000-0052-000000000068}, !- Source Object + {00000000-0000-0000-0052-000000000038}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000002}, !- Target Object 2; !- Inlet Port @@ -1838,19 +1070,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle {00000000-0000-0000-0060-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000215}, !- Target Object + {00000000-0000-0000-0052-000000000133}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle - {00000000-0000-0000-0052-000000000215}, !- Source Object + {00000000-0000-0000-0052-000000000133}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle - {00000000-0000-0000-0052-000000000212}, !- Source Object + {00000000-0000-0000-0052-000000000130}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -1859,12 +1091,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000213}, !- Target Object + {00000000-0000-0000-0052-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle - {00000000-0000-0000-0052-000000000213}, !- Source Object + {00000000-0000-0000-0052-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -1873,12 +1105,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000221}, !- Target Object + {00000000-0000-0000-0052-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0052-000000000221}, !- Source Object + {00000000-0000-0000-0052-000000000139}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1887,12 +1119,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000222}, !- Target Object + {00000000-0000-0000-0052-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle - {00000000-0000-0000-0052-000000000222}, !- Source Object + {00000000-0000-0000-0052-000000000140}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -1901,12 +1133,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000197}, !- Target Object + {00000000-0000-0000-0052-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle - {00000000-0000-0000-0052-000000000197}, !- Source Object + {00000000-0000-0000-0052-000000000115}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000004}, !- Target Object 2; !- Inlet Port @@ -1915,12 +1147,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle {00000000-0000-0000-0056-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000198}, !- Target Object + {00000000-0000-0000-0052-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle - {00000000-0000-0000-0052-000000000198}, !- Source Object + {00000000-0000-0000-0052-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 5; !- Inlet Port @@ -1929,12 +1161,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000199}, !- Target Object + {00000000-0000-0000-0052-000000000117}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle - {00000000-0000-0000-0052-000000000199}, !- Source Object + {00000000-0000-0000-0052-000000000117}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000005}, !- Target Object 2; !- Inlet Port @@ -1943,26 +1175,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle {00000000-0000-0000-0056-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000069}, !- Target Object + {00000000-0000-0000-0052-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle {00000000-0000-0000-0057-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000150}, !- Target Object + {00000000-0000-0000-0052-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000152}, !- Target Object + {00000000-0000-0000-0052-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle - {00000000-0000-0000-0052-000000000151}, !- Source Object + {00000000-0000-0000-0052-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000002}, !- Target Object 15; !- Inlet Port @@ -1971,12 +1203,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle {00000000-0000-0000-0057-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000148}, !- Target Object + {00000000-0000-0000-0052-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle - {00000000-0000-0000-0052-000000000148}, !- Source Object + {00000000-0000-0000-0052-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000006}, !- Target Object 2; !- Inlet Port @@ -1985,26 +1217,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000210}, !- Target Object + {00000000-0000-0000-0052-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle {00000000-0000-0000-0018-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000149}, !- Target Object + {00000000-0000-0000-0052-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0052-000000000149}, !- Source Object + {00000000-0000-0000-0052-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle - {00000000-0000-0000-0052-000000000150}, !- Source Object + {00000000-0000-0000-0052-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000003}, !- Target Object 2; !- Inlet Port @@ -2013,19 +1245,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle {00000000-0000-0000-0060-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000216}, !- Target Object + {00000000-0000-0000-0052-000000000134}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle - {00000000-0000-0000-0052-000000000216}, !- Source Object + {00000000-0000-0000-0052-000000000134}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle - {00000000-0000-0000-0052-000000000152}, !- Source Object + {00000000-0000-0000-0052-000000000070}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0025-000000000001}, !- Target Object 2; !- Inlet Port @@ -2034,12 +1266,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle {00000000-0000-0000-0025-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000153}, !- Target Object + {00000000-0000-0000-0052-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle - {00000000-0000-0000-0052-000000000153}, !- Source Object + {00000000-0000-0000-0052-000000000071}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 3; !- Inlet Port @@ -2048,12 +1280,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000200}, !- Target Object + {00000000-0000-0000-0052-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0052-000000000200}, !- Source Object + {00000000-0000-0000-0052-000000000118}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000006}, !- Target Object 2; !- Inlet Port @@ -2062,12 +1294,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle {00000000-0000-0000-0056-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000201}, !- Target Object + {00000000-0000-0000-0052-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle - {00000000-0000-0000-0052-000000000201}, !- Source Object + {00000000-0000-0000-0052-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 4; !- Inlet Port @@ -2076,12 +1308,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle {00000000-0000-0000-0018-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000202}, !- Target Object + {00000000-0000-0000-0052-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle - {00000000-0000-0000-0052-000000000202}, !- Source Object + {00000000-0000-0000-0052-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000007}, !- Target Object 2; !- Inlet Port @@ -2090,12 +1322,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle {00000000-0000-0000-0056-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000151}, !- Target Object + {00000000-0000-0000-0052-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle - {00000000-0000-0000-0052-000000000210}, !- Source Object + {00000000-0000-0000-0052-000000000128}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -2104,12 +1336,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000211}, !- Target Object + {00000000-0000-0000-0052-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle - {00000000-0000-0000-0052-000000000211}, !- Source Object + {00000000-0000-0000-0052-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 3; !- Inlet Port @@ -2118,12 +1350,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000219}, !- Target Object + {00000000-0000-0000-0052-000000000137}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle - {00000000-0000-0000-0052-000000000219}, !- Source Object + {00000000-0000-0000-0052-000000000137}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -2132,47 +1364,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000220}, !- Target Object + {00000000-0000-0000-0052-000000000138}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle - {00000000-0000-0000-0052-000000000220}, !- Source Object + {00000000-0000-0000-0052-000000000138}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object + {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000245}, !- Target Object + {00000000-0000-0000-0052-000000000147}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle - {00000000-0000-0000-0052-000000000246}, !- Source Object + {00000000-0000-0000-0052-000000000148}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object + {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000240}, !- Target Object + {00000000-0000-0000-0052-000000000142}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle - {00000000-0000-0000-0052-000000000241}, !- Source Object + {00000000-0000-0000-0052-000000000143}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0052-000000000240}, !- Source Object + {00000000-0000-0000-0052-000000000142}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -2181,12 +1413,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000241}, !- Target Object + {00000000-0000-0000-0052-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0052-000000000079}, !- Source Object + {00000000-0000-0000-0052-000000000043}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 5; !- Inlet Port @@ -2195,19 +1427,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000122}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000081}, !- Target Object + {00000000-0000-0000-0052-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0052-000000000081}, !- Source Object + {00000000-0000-0000-0052-000000000045}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0052-000000000070}, !- Source Object + {00000000-0000-0000-0052-000000000040}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 10; !- Inlet Port @@ -2216,47 +1448,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000125}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000072}, !- Target Object + {00000000-0000-0000-0052-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0052-000000000072}, !- Source Object + {00000000-0000-0000-0052-000000000042}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000127}, !- Handle - {00000000-0000-0000-0041-000000000006}, !- Source Object + {00000000-0000-0000-0041-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000246}, !- Target Object + {00000000-0000-0000-0052-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000128}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0052-000000000080}, !- Target Object + {00000000-0000-0000-0052-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000129}, !- Handle - {00000000-0000-0000-0052-000000000080}, !- Source Object + {00000000-0000-0000-0052-000000000044}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000006}, !- Target Object + {00000000-0000-0000-0041-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000130}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000071}, !- Target Object + {00000000-0000-0000-0052-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0052-000000000071}, !- Source Object + {00000000-0000-0000-0052-000000000041}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 7; !- Inlet Port @@ -2265,33 +1497,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000132}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000242}, !- Target Object + {00000000-0000-0000-0052-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0052-000000000242}, !- Source Object + {00000000-0000-0000-0052-000000000144}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000134}, !- Handle - {00000000-0000-0000-0052-000000000245}, !- Source Object + {00000000-0000-0000-0052-000000000147}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000003}, !- Target Object + {00000000-0000-0000-0041-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0041-000000000003}, !- Source Object + {00000000-0000-0000-0041-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000225}, !- Target Object + {00000000-0000-0000-0052-000000000141}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000136}, !- Handle - {00000000-0000-0000-0052-000000000225}, !- Source Object + {00000000-0000-0000-0052-000000000141}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -2300,26 +1532,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000137}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000101}, !- Target Object + {00000000-0000-0000-0052-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000138}, !- Handle - {00000000-0000-0000-0052-000000000101}, !- Source Object + {00000000-0000-0000-0052-000000000046}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000011}, !- Target Object + {00000000-0000-0000-0015-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000139}, !- Handle - {00000000-0000-0000-0015-000000000011}, !- Source Object + {00000000-0000-0000-0015-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000102}, !- Target Object + {00000000-0000-0000-0052-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0052-000000000102}, !- Source Object + {00000000-0000-0000-0052-000000000047}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 4; !- Inlet Port @@ -2328,12 +1560,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000141}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000118}, !- Target Object + {00000000-0000-0000-0052-000000000056}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000142}, !- Handle - {00000000-0000-0000-0052-000000000118}, !- Source Object + {00000000-0000-0000-0052-000000000056}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 9; !- Inlet Port @@ -2342,19 +1574,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000143}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000119}, !- Target Object + {00000000-0000-0000-0052-000000000057}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000144}, !- Handle - {00000000-0000-0000-0052-000000000119}, !- Source Object + {00000000-0000-0000-0052-000000000057}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0052-000000000037}, !- Source Object + {00000000-0000-0000-0052-000000000027}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000016}, !- Target Object 2; !- Inlet Port @@ -2377,12 +1609,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000148}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000036}, !- Target Object + {00000000-0000-0000-0052-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0052-000000000036}, !- Source Object + {00000000-0000-0000-0052-000000000026}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -2391,33 +1623,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000150}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000037}, !- Target Object + {00000000-0000-0000-0052-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000151}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000103}, !- Target Object + {00000000-0000-0000-0052-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0052-000000000103}, !- Source Object + {00000000-0000-0000-0052-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000012}, !- Target Object + {00000000-0000-0000-0015-000000000003}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000153}, !- Handle - {00000000-0000-0000-0015-000000000012}, !- Source Object + {00000000-0000-0000-0015-000000000003}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000104}, !- Target Object + {00000000-0000-0000-0052-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0052-000000000104}, !- Source Object + {00000000-0000-0000-0052-000000000049}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 6; !- Inlet Port @@ -2426,33 +1658,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000155}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000132}, !- Target Object + {00000000-0000-0000-0052-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0052-000000000132}, !- Source Object + {00000000-0000-0000-0052-000000000058}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000008}, !- Target Object + {00000000-0000-0000-0016-000000000002}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000157}, !- Handle - {00000000-0000-0000-0016-000000000008}, !- Source Object + {00000000-0000-0000-0016-000000000002}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000133}, !- Target Object + {00000000-0000-0000-0052-000000000059}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0052-000000000133}, !- Source Object + {00000000-0000-0000-0052-000000000059}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0052-000000000051}, !- Source Object + {00000000-0000-0000-0052-000000000029}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000040}, !- Target Object 2; !- Inlet Port @@ -2475,47 +1707,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000162}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000050}, !- Target Object + {00000000-0000-0000-0052-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0052-000000000050}, !- Source Object + {00000000-0000-0000-0052-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000008}, !- Target Object + {00000000-0000-0000-0006-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0006-000000000008}, !- Source Object + {00000000-0000-0000-0006-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000051}, !- Target Object + {00000000-0000-0000-0052-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000165}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0052-000000000105}, !- Target Object + {00000000-0000-0000-0052-000000000050}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0052-000000000105}, !- Source Object + {00000000-0000-0000-0052-000000000050}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000013}, !- Target Object + {00000000-0000-0000-0015-000000000004}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000167}, !- Handle - {00000000-0000-0000-0015-000000000013}, !- Source Object + {00000000-0000-0000-0015-000000000004}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000106}, !- Target Object + {00000000-0000-0000-0052-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0052-000000000106}, !- Source Object + {00000000-0000-0000-0052-000000000051}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 8; !- Inlet Port @@ -2524,33 +1756,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000169}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000134}, !- Target Object + {00000000-0000-0000-0052-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0052-000000000134}, !- Source Object + {00000000-0000-0000-0052-000000000060}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000009}, !- Target Object + {00000000-0000-0000-0016-000000000003}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000171}, !- Handle - {00000000-0000-0000-0016-000000000009}, !- Source Object + {00000000-0000-0000-0016-000000000003}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000135}, !- Target Object + {00000000-0000-0000-0052-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0052-000000000135}, !- Source Object + {00000000-0000-0000-0052-000000000061}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0052-000000000053}, !- Source Object + {00000000-0000-0000-0052-000000000031}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000031}, !- Target Object 2; !- Inlet Port @@ -2573,47 +1805,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000176}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000052}, !- Target Object + {00000000-0000-0000-0052-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0052-000000000052}, !- Source Object + {00000000-0000-0000-0052-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000009}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0006-000000000009}, !- Source Object + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000053}, !- Target Object + {00000000-0000-0000-0052-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000179}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000107}, !- Target Object + {00000000-0000-0000-0052-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0052-000000000107}, !- Source Object + {00000000-0000-0000-0052-000000000052}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000014}, !- Target Object + {00000000-0000-0000-0015-000000000005}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000181}, !- Handle - {00000000-0000-0000-0015-000000000014}, !- Source Object + {00000000-0000-0000-0015-000000000005}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000108}, !- Target Object + {00000000-0000-0000-0052-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0052-000000000108}, !- Source Object + {00000000-0000-0000-0052-000000000053}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 10; !- Inlet Port @@ -2622,33 +1854,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000183}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000136}, !- Target Object + {00000000-0000-0000-0052-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0052-000000000136}, !- Source Object + {00000000-0000-0000-0052-000000000062}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000010}, !- Target Object + {00000000-0000-0000-0016-000000000004}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000185}, !- Handle - {00000000-0000-0000-0016-000000000010}, !- Source Object + {00000000-0000-0000-0016-000000000004}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000137}, !- Target Object + {00000000-0000-0000-0052-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0052-000000000137}, !- Source Object + {00000000-0000-0000-0052-000000000063}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0052-000000000055}, !- Source Object + {00000000-0000-0000-0052-000000000033}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000049}, !- Target Object 2; !- Inlet Port @@ -2671,47 +1903,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000190}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000054}, !- Target Object + {00000000-0000-0000-0052-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0052-000000000054}, !- Source Object + {00000000-0000-0000-0052-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000010}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0006-000000000010}, !- Source Object + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000055}, !- Target Object + {00000000-0000-0000-0052-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000193}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000109}, !- Target Object + {00000000-0000-0000-0052-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0052-000000000109}, !- Source Object + {00000000-0000-0000-0052-000000000054}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000015}, !- Target Object + {00000000-0000-0000-0015-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000195}, !- Handle - {00000000-0000-0000-0015-000000000015}, !- Source Object + {00000000-0000-0000-0015-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000110}, !- Target Object + {00000000-0000-0000-0052-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0052-000000000110}, !- Source Object + {00000000-0000-0000-0052-000000000055}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 12; !- Inlet Port @@ -2720,33 +1952,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000197}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000138}, !- Target Object + {00000000-0000-0000-0052-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0052-000000000138}, !- Source Object + {00000000-0000-0000-0052-000000000064}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000011}, !- Target Object + {00000000-0000-0000-0016-000000000005}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000199}, !- Handle - {00000000-0000-0000-0016-000000000011}, !- Source Object + {00000000-0000-0000-0016-000000000005}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000139}, !- Target Object + {00000000-0000-0000-0052-000000000065}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0052-000000000139}, !- Source Object + {00000000-0000-0000-0052-000000000065}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0052-000000000057}, !- Source Object + {00000000-0000-0000-0052-000000000035}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000052}, !- Target Object 2; !- Inlet Port @@ -2769,2065 +2001,665 @@ OS:Connection, {00000000-0000-0000-0017-000000000204}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000056}, !- Target Object + {00000000-0000-0000-0052-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0052-000000000056}, !- Source Object + {00000000-0000-0000-0052-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000011}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0006-000000000011}, !- Source Object + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000057}, !- Target Object + {00000000-0000-0000-0052-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000207}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000231}, !- Target Object + {00000000-0000-0000-0057-000000000004}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0052-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000208}, !- Handle - {00000000-0000-0000-0052-000000000232}, !- Source Object + {00000000-0000-0000-0019-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0052-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000226}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000086}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000004}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000210}, !- Handle - {00000000-0000-0000-0052-000000000227}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0057-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000083}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0052-000000000226}, !- Source Object + {00000000-0000-0000-0052-000000000083}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000002}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000212}, !- Handle - {00000000-0000-0000-0004-000000000002}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000227}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0052-000000000111}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000084}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000004}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0052-000000000111}, !- Source Object + {00000000-0000-0000-0052-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000016}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0059-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000215}, !- Handle - {00000000-0000-0000-0015-000000000016}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000113}, !- Target Object + {00000000-0000-0000-0059-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0052-000000000113}, !- Source Object + {00000000-0000-0000-0052-000000000082}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0019-000000000007}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000217}, !- Handle - {00000000-0000-0000-0019-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000001}, !- Target Object + 31; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000218}, !- Handle - {00000000-0000-0000-0052-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0098-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0052-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000219}, !- Handle - {00000000-0000-0000-0014-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000075}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000007}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000220}, !- Handle - {00000000-0000-0000-0052-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000004}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0019-000000000007}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000121}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0041-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000232}, !- Target Object + {00000000-0000-0000-0052-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000222}, !- Handle - {00000000-0000-0000-0015-000000000016}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000112}, !- Target Object + {00000000-0000-0000-0056-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0052-000000000112}, !- Source Object + {00000000-0000-0000-0052-000000000122}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000004}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0018-000000000007}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0014-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000074}, !- Target Object + {00000000-0000-0000-0052-000000000123}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000225}, !- Handle - {00000000-0000-0000-0052-000000000074}, !- Source Object + {00000000-0000-0000-0056-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000016}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0052-000000000124}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000228}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000124}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000227}, !- Handle - {00000000-0000-0000-0052-000000000228}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0018-000000000007}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000125}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0052-000000000231}, !- Source Object + {00000000-0000-0000-0052-000000000125}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000001}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0056-000000000010}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000229}, !- Handle - {00000000-0000-0000-0041-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000223}, !- Target Object + {00000000-0000-0000-0056-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000230}, !- Handle - {00000000-0000-0000-0052-000000000223}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000113}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0052-000000000114}, !- Target Object + {00000000-0000-0000-0052-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000232}, !- Handle - {00000000-0000-0000-0052-000000000114}, !- Source Object + {00000000-0000-0000-0056-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000017}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0052-000000000084}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000233}, !- Handle - {00000000-0000-0000-0015-000000000017}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000115}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0052-000000000115}, !- Source Object + {00000000-0000-0000-0052-000000000072}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0100-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000235}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0052-000000000140}, !- Target Object + {00000000-0000-0000-0100-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000073}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0052-000000000140}, !- Source Object + {00000000-0000-0000-0052-000000000073}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000012}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000237}, !- Handle - {00000000-0000-0000-0016-000000000012}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000141}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000074}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0052-000000000141}, !- Source Object + {00000000-0000-0000-0052-000000000074}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0100-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000239}, !- Handle - {00000000-0000-0000-0052-000000000059}, !- Source Object + {00000000-0000-0000-0100-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000001}, !- Target Object + {00000000-0000-0000-0052-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0058-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000024}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000241}, !- Handle - {00000000-0000-0000-0052-000000000024}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000076}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object + {00000000-0000-0000-0052-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000058}, !- Target Object + {00000000-0000-0000-0100-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000243}, !- Handle - {00000000-0000-0000-0052-000000000058}, !- Source Object + {00000000-0000-0000-0100-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000012}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0052-000000000077}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0006-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000059}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000077}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000245}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000116}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0052-000000000116}, !- Source Object + {00000000-0000-0000-0052-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000018}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0100-000000000004}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000247}, !- Handle - {00000000-0000-0000-0015-000000000018}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000117}, !- Target Object + {00000000-0000-0000-0100-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0052-000000000117}, !- Source Object + {00000000-0000-0000-0052-000000000088}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000249}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0052-000000000142}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0052-000000000142}, !- Source Object + {00000000-0000-0000-0052-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000013}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0100-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000251}, !- Handle - {00000000-0000-0000-0016-000000000013}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000143}, !- Target Object + {00000000-0000-0000-0100-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0052-000000000143}, !- Source Object + {00000000-0000-0000-0052-000000000090}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000253}, !- Handle - {00000000-0000-0000-0052-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000037}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0058-000000000039}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000020}, !- Target Object + {00000000-0000-0000-0052-000000000091}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000255}, !- Handle - {00000000-0000-0000-0052-000000000020}, !- Source Object + {00000000-0000-0000-0100-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0052-000000000092}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000060}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000092}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000257}, !- Handle - {00000000-0000-0000-0052-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000013}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000093}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0006-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000061}, !- Target Object + {00000000-0000-0000-0052-000000000093}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000259}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0052-000000000082}, !- Target Object + {00000000-0000-0000-0100-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000260}, !- Handle - {00000000-0000-0000-0052-000000000082}, !- Source Object + {00000000-0000-0000-0052-000000000094}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000261}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000083}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000262}, !- Handle - {00000000-0000-0000-0052-000000000083}, !- Source Object + {00000000-0000-0000-0052-000000000095}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 19; !- Inlet Port + {00000000-0000-0000-0100-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000263}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0052-000000000144}, !- Target Object + {00000000-0000-0000-0100-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000264}, !- Handle - {00000000-0000-0000-0052-000000000144}, !- Source Object + {00000000-0000-0000-0052-000000000096}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000014}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000265}, !- Handle - {00000000-0000-0000-0016-000000000014}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000145}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000266}, !- Handle - {00000000-0000-0000-0052-000000000145}, !- Source Object + {00000000-0000-0000-0052-000000000097}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 20; !- Inlet Port + {00000000-0000-0000-0100-000000000009}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000267}, !- Handle - {00000000-0000-0000-0052-000000000063}, !- Source Object + {00000000-0000-0000-0100-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000046}, !- Target Object + {00000000-0000-0000-0052-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000268}, !- Handle - {00000000-0000-0000-0058-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000022}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000098}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000269}, !- Handle - {00000000-0000-0000-0052-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0019-000000000008}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000099}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000270}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000062}, !- Target Object + {00000000-0000-0000-0052-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000271}, !- Handle - {00000000-0000-0000-0052-000000000062}, !- Source Object + {00000000-0000-0000-0100-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000014}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0052-000000000100}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000272}, !- Handle - {00000000-0000-0000-0006-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000063}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000100}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000273}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0052-000000000084}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0052-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000274}, !- Handle - {00000000-0000-0000-0052-000000000084}, !- Source Object + {00000000-0000-0000-0052-000000000101}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000275}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000085}, !- Target Object + {00000000-0000-0000-0100-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000276}, !- Handle - {00000000-0000-0000-0052-000000000085}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000277}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0052-000000000146}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000278}, !- Handle - {00000000-0000-0000-0052-000000000146}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000015}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000279}, !- Handle - {00000000-0000-0000-0016-000000000015}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000147}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000280}, !- Handle - {00000000-0000-0000-0052-000000000147}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 22; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000281}, !- Handle - {00000000-0000-0000-0052-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000282}, !- Handle - {00000000-0000-0000-0058-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000283}, !- Handle - {00000000-0000-0000-0052-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000284}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000285}, !- Handle - {00000000-0000-0000-0052-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000015}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000286}, !- Handle - {00000000-0000-0000-0006-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000287}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 23, !- Outlet Port - {00000000-0000-0000-0052-000000000086}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000288}, !- Handle - {00000000-0000-0000-0052-000000000086}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000289}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000087}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000290}, !- Handle - {00000000-0000-0000-0052-000000000087}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 23; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000291}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 24, !- Outlet Port - {00000000-0000-0000-0052-000000000120}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000292}, !- Handle - {00000000-0000-0000-0052-000000000120}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000293}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000121}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000294}, !- Handle - {00000000-0000-0000-0052-000000000121}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 24; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000295}, !- Handle - {00000000-0000-0000-0052-000000000039}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000296}, !- Handle - {00000000-0000-0000-0058-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000297}, !- Handle - {00000000-0000-0000-0052-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000298}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000299}, !- Handle - {00000000-0000-0000-0052-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000300}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000039}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000301}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000238}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000302}, !- Handle - {00000000-0000-0000-0052-000000000239}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000303}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000233}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000304}, !- Handle - {00000000-0000-0000-0052-000000000234}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000305}, !- Handle - {00000000-0000-0000-0052-000000000233}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000306}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000234}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000307}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 25, !- Outlet Port - {00000000-0000-0000-0052-000000000088}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000308}, !- Handle - {00000000-0000-0000-0052-000000000088}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000309}, !- Handle - {00000000-0000-0000-0015-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000090}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000310}, !- Handle - {00000000-0000-0000-0052-000000000090}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 25; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000311}, !- Handle - {00000000-0000-0000-0019-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000076}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000312}, !- Handle - {00000000-0000-0000-0052-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000003}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000313}, !- Handle - {00000000-0000-0000-0014-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000078}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000314}, !- Handle - {00000000-0000-0000-0052-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000315}, !- Handle - {00000000-0000-0000-0041-000000000005}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000239}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000316}, !- Handle - {00000000-0000-0000-0015-000000000005}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000089}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000317}, !- Handle - {00000000-0000-0000-0052-000000000089}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000005}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000318}, !- Handle - {00000000-0000-0000-0014-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000077}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000319}, !- Handle - {00000000-0000-0000-0052-000000000077}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000005}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000320}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000235}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000321}, !- Handle - {00000000-0000-0000-0052-000000000235}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000322}, !- Handle - {00000000-0000-0000-0052-000000000238}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000002}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000323}, !- Handle - {00000000-0000-0000-0041-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000224}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000324}, !- Handle - {00000000-0000-0000-0052-000000000224}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000325}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 26, !- Outlet Port - {00000000-0000-0000-0052-000000000091}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000326}, !- Handle - {00000000-0000-0000-0052-000000000091}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000006}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000327}, !- Handle - {00000000-0000-0000-0015-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000092}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000328}, !- Handle - {00000000-0000-0000-0052-000000000092}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 26; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000329}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 27, !- Outlet Port - {00000000-0000-0000-0052-000000000122}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000330}, !- Handle - {00000000-0000-0000-0052-000000000122}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000331}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000123}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000332}, !- Handle - {00000000-0000-0000-0052-000000000123}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 27; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000333}, !- Handle - {00000000-0000-0000-0052-000000000041}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000334}, !- Handle - {00000000-0000-0000-0058-000000000012}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000335}, !- Handle - {00000000-0000-0000-0052-000000000028}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000336}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000337}, !- Handle - {00000000-0000-0000-0052-000000000040}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000338}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000041}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000339}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 28, !- Outlet Port - {00000000-0000-0000-0052-000000000093}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000340}, !- Handle - {00000000-0000-0000-0052-000000000093}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000007}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000341}, !- Handle - {00000000-0000-0000-0015-000000000007}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000094}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000342}, !- Handle - {00000000-0000-0000-0052-000000000094}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 28; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000343}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 29, !- Outlet Port - {00000000-0000-0000-0052-000000000124}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000344}, !- Handle - {00000000-0000-0000-0052-000000000124}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000345}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000125}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000346}, !- Handle - {00000000-0000-0000-0052-000000000125}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 29; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000347}, !- Handle - {00000000-0000-0000-0052-000000000043}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000348}, !- Handle - {00000000-0000-0000-0058-000000000006}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000349}, !- Handle - {00000000-0000-0000-0052-000000000034}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000350}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000042}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000351}, !- Handle - {00000000-0000-0000-0052-000000000042}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000352}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000043}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000353}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 30, !- Outlet Port - {00000000-0000-0000-0052-000000000095}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000354}, !- Handle - {00000000-0000-0000-0052-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000355}, !- Handle - {00000000-0000-0000-0015-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000096}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000356}, !- Handle - {00000000-0000-0000-0052-000000000096}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 30; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000357}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 31, !- Outlet Port - {00000000-0000-0000-0052-000000000126}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000358}, !- Handle - {00000000-0000-0000-0052-000000000126}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000005}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000359}, !- Handle - {00000000-0000-0000-0016-000000000005}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000127}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000360}, !- Handle - {00000000-0000-0000-0052-000000000127}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000361}, !- Handle - {00000000-0000-0000-0052-000000000045}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000362}, !- Handle - {00000000-0000-0000-0058-000000000009}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000026}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000363}, !- Handle - {00000000-0000-0000-0052-000000000026}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000364}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000044}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000365}, !- Handle - {00000000-0000-0000-0052-000000000044}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000366}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000045}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000367}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0052-000000000097}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000368}, !- Handle - {00000000-0000-0000-0052-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000009}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000369}, !- Handle - {00000000-0000-0000-0015-000000000009}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000098}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000370}, !- Handle - {00000000-0000-0000-0052-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 32; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000371}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 33, !- Outlet Port - {00000000-0000-0000-0052-000000000128}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000372}, !- Handle - {00000000-0000-0000-0052-000000000128}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000006}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000373}, !- Handle - {00000000-0000-0000-0016-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000129}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000374}, !- Handle - {00000000-0000-0000-0052-000000000129}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 33; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000375}, !- Handle - {00000000-0000-0000-0052-000000000047}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000019}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000376}, !- Handle - {00000000-0000-0000-0058-000000000021}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000030}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000377}, !- Handle - {00000000-0000-0000-0052-000000000030}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000378}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000379}, !- Handle - {00000000-0000-0000-0052-000000000046}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000380}, !- Handle - {00000000-0000-0000-0006-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000047}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000381}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 34, !- Outlet Port - {00000000-0000-0000-0052-000000000099}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000382}, !- Handle - {00000000-0000-0000-0052-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000010}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000383}, !- Handle - {00000000-0000-0000-0015-000000000010}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000100}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000384}, !- Handle - {00000000-0000-0000-0052-000000000100}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 34; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000385}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 35, !- Outlet Port - {00000000-0000-0000-0052-000000000130}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000386}, !- Handle - {00000000-0000-0000-0052-000000000130}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000007}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000387}, !- Handle - {00000000-0000-0000-0016-000000000007}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000131}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000388}, !- Handle - {00000000-0000-0000-0052-000000000131}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 35; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000389}, !- Handle - {00000000-0000-0000-0052-000000000049}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000390}, !- Handle - {00000000-0000-0000-0058-000000000030}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000032}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000391}, !- Handle - {00000000-0000-0000-0052-000000000032}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000392}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000048}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000393}, !- Handle - {00000000-0000-0000-0052-000000000048}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000394}, !- Handle - {00000000-0000-0000-0006-000000000007}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000395}, !- Handle - {00000000-0000-0000-0057-000000000004}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0052-000000000167}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000396}, !- Handle - {00000000-0000-0000-0019-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000397}, !- Handle - {00000000-0000-0000-0052-000000000168}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000004}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000398}, !- Handle - {00000000-0000-0000-0057-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000165}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000399}, !- Handle - {00000000-0000-0000-0052-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000400}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000205}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000401}, !- Handle - {00000000-0000-0000-0052-000000000166}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000004}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000402}, !- Handle - {00000000-0000-0000-0052-000000000167}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000403}, !- Handle - {00000000-0000-0000-0059-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000404}, !- Handle - {00000000-0000-0000-0052-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000405}, !- Handle - {00000000-0000-0000-0052-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000001}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000406}, !- Handle - {00000000-0000-0000-0098-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0052-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000407}, !- Handle - {00000000-0000-0000-0052-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000408}, !- Handle - {00000000-0000-0000-0019-000000000007}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000203}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000409}, !- Handle - {00000000-0000-0000-0052-000000000203}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000410}, !- Handle - {00000000-0000-0000-0056-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000204}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000411}, !- Handle - {00000000-0000-0000-0052-000000000204}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000007}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000412}, !- Handle - {00000000-0000-0000-0052-000000000205}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000413}, !- Handle - {00000000-0000-0000-0056-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000206}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000414}, !- Handle - {00000000-0000-0000-0052-000000000206}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000415}, !- Handle - {00000000-0000-0000-0018-000000000007}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000207}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000416}, !- Handle - {00000000-0000-0000-0052-000000000207}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000417}, !- Handle - {00000000-0000-0000-0056-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000168}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000418}, !- Handle - {00000000-0000-0000-0018-000000000008}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000195}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000419}, !- Handle - {00000000-0000-0000-0052-000000000195}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000420}, !- Handle - {00000000-0000-0000-0056-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000421}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000422}, !- Handle - {00000000-0000-0000-0052-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000423}, !- Handle - {00000000-0000-0000-0100-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000155}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000424}, !- Handle - {00000000-0000-0000-0052-000000000155}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000425}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000156}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000426}, !- Handle - {00000000-0000-0000-0052-000000000156}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000427}, !- Handle - {00000000-0000-0000-0100-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000157}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000428}, !- Handle - {00000000-0000-0000-0052-000000000157}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000429}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000158}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000430}, !- Handle - {00000000-0000-0000-0052-000000000158}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000431}, !- Handle - {00000000-0000-0000-0100-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000159}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000432}, !- Handle - {00000000-0000-0000-0052-000000000159}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000433}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000169}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000434}, !- Handle - {00000000-0000-0000-0052-000000000169}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000435}, !- Handle - {00000000-0000-0000-0100-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000170}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000436}, !- Handle - {00000000-0000-0000-0052-000000000170}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000437}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000171}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000438}, !- Handle - {00000000-0000-0000-0052-000000000171}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000439}, !- Handle - {00000000-0000-0000-0100-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000172}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000440}, !- Handle - {00000000-0000-0000-0052-000000000172}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000441}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000173}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000442}, !- Handle - {00000000-0000-0000-0052-000000000173}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000443}, !- Handle - {00000000-0000-0000-0100-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000174}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000444}, !- Handle - {00000000-0000-0000-0052-000000000174}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000445}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000175}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000446}, !- Handle - {00000000-0000-0000-0052-000000000175}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000447}, !- Handle - {00000000-0000-0000-0100-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000176}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000448}, !- Handle - {00000000-0000-0000-0052-000000000176}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000449}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000177}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000450}, !- Handle - {00000000-0000-0000-0052-000000000177}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000451}, !- Handle - {00000000-0000-0000-0100-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000178}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000452}, !- Handle - {00000000-0000-0000-0052-000000000178}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 11; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000453}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000179}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000454}, !- Handle - {00000000-0000-0000-0052-000000000179}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000455}, !- Handle - {00000000-0000-0000-0100-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000180}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000456}, !- Handle - {00000000-0000-0000-0052-000000000180}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000457}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000181}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000458}, !- Handle - {00000000-0000-0000-0052-000000000181}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000459}, !- Handle - {00000000-0000-0000-0100-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000182}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000460}, !- Handle - {00000000-0000-0000-0052-000000000182}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 13; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000461}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0052-000000000183}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000462}, !- Handle - {00000000-0000-0000-0052-000000000183}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000011}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000463}, !- Handle + {00000000-0000-0000-0017-000000000275}, !- Handle {00000000-0000-0000-0100-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000184}, !- Target Object + {00000000-0000-0000-0052-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000464}, !- Handle - {00000000-0000-0000-0052-000000000184}, !- Source Object + {00000000-0000-0000-0017-000000000276}, !- Handle + {00000000-0000-0000-0052-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000465}, !- Handle + {00000000-0000-0000-0017-000000000277}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0052-000000000185}, !- Target Object + {00000000-0000-0000-0052-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000466}, !- Handle - {00000000-0000-0000-0052-000000000185}, !- Source Object + {00000000-0000-0000-0017-000000000278}, !- Handle + {00000000-0000-0000-0052-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000467}, !- Handle + {00000000-0000-0000-0017-000000000279}, !- Handle {00000000-0000-0000-0100-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000186}, !- Target Object + {00000000-0000-0000-0052-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000468}, !- Handle - {00000000-0000-0000-0052-000000000186}, !- Source Object + {00000000-0000-0000-0017-000000000280}, !- Handle + {00000000-0000-0000-0052-000000000104}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000469}, !- Handle + {00000000-0000-0000-0017-000000000281}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000187}, !- Target Object + {00000000-0000-0000-0052-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000470}, !- Handle - {00000000-0000-0000-0052-000000000187}, !- Source Object + {00000000-0000-0000-0017-000000000282}, !- Handle + {00000000-0000-0000-0052-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000471}, !- Handle + {00000000-0000-0000-0017-000000000283}, !- Handle {00000000-0000-0000-0100-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000188}, !- Target Object + {00000000-0000-0000-0052-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000472}, !- Handle - {00000000-0000-0000-0052-000000000188}, !- Source Object + {00000000-0000-0000-0017-000000000284}, !- Handle + {00000000-0000-0000-0052-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000473}, !- Handle + {00000000-0000-0000-0017-000000000285}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000189}, !- Target Object + {00000000-0000-0000-0052-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000474}, !- Handle - {00000000-0000-0000-0052-000000000189}, !- Source Object + {00000000-0000-0000-0017-000000000286}, !- Handle + {00000000-0000-0000-0052-000000000107}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000475}, !- Handle + {00000000-0000-0000-0017-000000000287}, !- Handle {00000000-0000-0000-0100-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000190}, !- Target Object + {00000000-0000-0000-0052-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000476}, !- Handle - {00000000-0000-0000-0052-000000000190}, !- Source Object + {00000000-0000-0000-0017-000000000288}, !- Handle + {00000000-0000-0000-0052-000000000108}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000477}, !- Handle + {00000000-0000-0000-0017-000000000289}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000191}, !- Target Object + {00000000-0000-0000-0052-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000478}, !- Handle - {00000000-0000-0000-0052-000000000191}, !- Source Object + {00000000-0000-0000-0017-000000000290}, !- Handle + {00000000-0000-0000-0052-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000479}, !- Handle + {00000000-0000-0000-0017-000000000291}, !- Handle {00000000-0000-0000-0100-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000192}, !- Target Object + {00000000-0000-0000-0052-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000480}, !- Handle - {00000000-0000-0000-0052-000000000192}, !- Source Object + {00000000-0000-0000-0017-000000000292}, !- Handle + {00000000-0000-0000-0052-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000481}, !- Handle - {00000000-0000-0000-0052-000000000243}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000482}, !- Handle - {00000000-0000-0000-0045-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000251}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000483}, !- Handle - {00000000-0000-0000-0052-000000000251}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000484}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000252}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000485}, !- Handle - {00000000-0000-0000-0052-000000000252}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000003}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000486}, !- Handle - {00000000-0000-0000-0045-000000000003}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0052-000000000244}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000487}, !- Handle - {00000000-0000-0000-0052-000000000229}, !- Source Object + {00000000-0000-0000-0017-000000000293}, !- Handle + {00000000-0000-0000-0052-000000000145}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0045-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000488}, !- Handle + {00000000-0000-0000-0017-000000000294}, !- Handle {00000000-0000-0000-0045-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000247}, !- Target Object + {00000000-0000-0000-0052-000000000149}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000489}, !- Handle - {00000000-0000-0000-0052-000000000247}, !- Source Object + {00000000-0000-0000-0017-000000000295}, !- Handle + {00000000-0000-0000-0052-000000000149}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object + {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000490}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000296}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000248}, !- Target Object + {00000000-0000-0000-0052-000000000150}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000491}, !- Handle - {00000000-0000-0000-0052-000000000248}, !- Source Object + {00000000-0000-0000-0017-000000000297}, !- Handle + {00000000-0000-0000-0052-000000000150}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0045-000000000001}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000492}, !- Handle + {00000000-0000-0000-0017-000000000298}, !- Handle {00000000-0000-0000-0045-000000000001}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0052-000000000230}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000493}, !- Handle - {00000000-0000-0000-0052-000000000236}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000494}, !- Handle - {00000000-0000-0000-0045-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000249}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000495}, !- Handle - {00000000-0000-0000-0052-000000000249}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000496}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000250}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000497}, !- Handle - {00000000-0000-0000-0052-000000000250}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000002}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000498}, !- Handle - {00000000-0000-0000-0045-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0052-000000000237}, !- Target Object + {00000000-0000-0000-0052-000000000146}, !- Target Object 2; !- Inlet Port OS:Connector:Mixer, @@ -4852,29 +2684,7 @@ OS:Connector:Mixer, {00000000-0000-0000-0017-000000000182}, !- Inlet Branch Name 8 {00000000-0000-0000-0017-000000000186}, !- Inlet Branch Name 9 {00000000-0000-0000-0017-000000000196}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000200}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000216}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000234}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000248}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000252}, !- Inlet Branch Name 16 - {00000000-0000-0000-0017-000000000262}, !- Inlet Branch Name 17 - {00000000-0000-0000-0017-000000000266}, !- Inlet Branch Name 18 - {00000000-0000-0000-0017-000000000276}, !- Inlet Branch Name 19 - {00000000-0000-0000-0017-000000000280}, !- Inlet Branch Name 20 - {00000000-0000-0000-0017-000000000290}, !- Inlet Branch Name 21 - {00000000-0000-0000-0017-000000000294}, !- Inlet Branch Name 22 - {00000000-0000-0000-0017-000000000310}, !- Inlet Branch Name 23 - {00000000-0000-0000-0017-000000000328}, !- Inlet Branch Name 24 - {00000000-0000-0000-0017-000000000332}, !- Inlet Branch Name 25 - {00000000-0000-0000-0017-000000000342}, !- Inlet Branch Name 26 - {00000000-0000-0000-0017-000000000346}, !- Inlet Branch Name 27 - {00000000-0000-0000-0017-000000000356}, !- Inlet Branch Name 28 - {00000000-0000-0000-0017-000000000360}, !- Inlet Branch Name 29 - {00000000-0000-0000-0017-000000000370}, !- Inlet Branch Name 30 - {00000000-0000-0000-0017-000000000374}, !- Inlet Branch Name 31 - {00000000-0000-0000-0017-000000000384}, !- Inlet Branch Name 32 - {00000000-0000-0000-0017-000000000388}; !- Inlet Branch Name 33 + {00000000-0000-0000-0017-000000000200}; !- Inlet Branch Name 11 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000003}, !- Handle @@ -4888,9 +2698,7 @@ OS:Connector:Mixer, {00000000-0000-0000-0018-000000000004}, !- Handle Connector Mixer 4, !- Name {00000000-0000-0000-0017-000000000068}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000126}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000220}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000314}; !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000126}; !- Inlet Branch Name 1 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle @@ -4909,30 +2717,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0018-000000000007}, !- Handle Connector Mixer 7, !- Name - {00000000-0000-0000-0017-000000000415}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000407}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000411}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000227}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000219}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000223}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000008}, !- Handle Connector Mixer 8, !- Name - {00000000-0000-0000-0017-000000000418}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000414}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000424}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000428}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000432}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000436}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000440}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000444}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000448}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000452}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000456}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000460}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000464}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000468}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000472}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000476}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000480}; !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000230}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000226}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000236}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000240}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000244}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000248}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000252}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000256}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000260}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000264}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000268}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000272}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000276}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000280}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000284}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000288}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000292}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -4956,29 +2764,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000179}, !- Outlet Branch Name 8 {00000000-0000-0000-0017-000000000183}, !- Outlet Branch Name 9 {00000000-0000-0000-0017-000000000193}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000197}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000213}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000231}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000245}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000249}, !- Outlet Branch Name 16 - {00000000-0000-0000-0017-000000000259}, !- Outlet Branch Name 17 - {00000000-0000-0000-0017-000000000263}, !- Outlet Branch Name 18 - {00000000-0000-0000-0017-000000000273}, !- Outlet Branch Name 19 - {00000000-0000-0000-0017-000000000277}, !- Outlet Branch Name 20 - {00000000-0000-0000-0017-000000000287}, !- Outlet Branch Name 21 - {00000000-0000-0000-0017-000000000291}, !- Outlet Branch Name 22 - {00000000-0000-0000-0017-000000000307}, !- Outlet Branch Name 23 - {00000000-0000-0000-0017-000000000325}, !- Outlet Branch Name 24 - {00000000-0000-0000-0017-000000000329}, !- Outlet Branch Name 25 - {00000000-0000-0000-0017-000000000339}, !- Outlet Branch Name 26 - {00000000-0000-0000-0017-000000000343}, !- Outlet Branch Name 27 - {00000000-0000-0000-0017-000000000353}, !- Outlet Branch Name 28 - {00000000-0000-0000-0017-000000000357}, !- Outlet Branch Name 29 - {00000000-0000-0000-0017-000000000367}, !- Outlet Branch Name 30 - {00000000-0000-0000-0017-000000000371}, !- Outlet Branch Name 31 - {00000000-0000-0000-0017-000000000381}, !- Outlet Branch Name 32 - {00000000-0000-0000-0017-000000000385}; !- Outlet Branch Name 33 + {00000000-0000-0000-0017-000000000197}; !- Outlet Branch Name 11 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -4992,9 +2778,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000004}, !- Handle Connector Splitter 4, !- Name {00000000-0000-0000-0017-000000000066}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000067}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000217}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000311}; !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000067}; !- Outlet Branch Name 1 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle @@ -5013,30 +2797,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000007}, !- Handle Connector Splitter 7, !- Name - {00000000-0000-0000-0017-000000000404}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000396}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000408}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000216}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000208}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000220}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000008}, !- Handle Connector Splitter 8, !- Name - {00000000-0000-0000-0017-000000000399}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000400}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000421}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000425}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000429}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000433}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000437}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000441}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000445}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000449}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000453}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000457}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000461}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000465}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000469}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000473}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000477}; !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000211}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000212}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000233}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000237}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000241}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000245}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000249}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000253}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000257}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000261}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000265}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000269}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000273}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000277}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000281}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000285}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000289}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle @@ -5277,101 +3061,27 @@ OS:Construction, {00000000-0000-0000-0020-000000000036}, !- Handle Floor Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0050-000000000001}, !- Layer 1 - {00000000-0000-0000-0049-000000000004}, !- Layer 2 - {00000000-0000-0000-0050-000000000002}; !- Layer 3 - -OS:Construction, - {00000000-0000-0000-0020-000000000037}, !- Handle - Wall Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0049-000000000019}, !- Layer 1 - {00000000-0000-0000-0049-000000000019}; !- Layer 2 - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000027}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging + {00000000-0000-0000-0050-000000000001}, !- Layer 1 + {00000000-0000-0000-0049-000000000004}, !- Layer 2 + {00000000-0000-0000-0050-000000000002}; !- Layer 3 -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000025}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Construction, + {00000000-0000-0000-0020-000000000037}, !- Handle + Wall Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000019}, !- Layer 1 + {00000000-0000-0000-0049-000000000019}; !- Layer 2 + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name + {00000000-0000-0000-0022-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name @@ -5387,10 +3097,10 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000026}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0066-000000000023}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -5414,136 +3124,6 @@ OS:Controller:WaterCoil, OS:Controller:WaterCoil, {00000000-0000-0000-0023-000000000002}, !- Handle - Controller Water Coil 10, !- Name - {00000000-0000-0000-0015-000000000017}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000003}, !- Handle - Controller Water Coil 11, !- Name - {00000000-0000-0000-0015-000000000018}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000004}, !- Handle - Controller Water Coil 12, !- Name - {00000000-0000-0000-0015-000000000002}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000005}, !- Handle - Controller Water Coil 13, !- Name - {00000000-0000-0000-0015-000000000003}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000006}, !- Handle - Controller Water Coil 14, !- Name - {00000000-0000-0000-0015-000000000004}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000007}, !- Handle - Controller Water Coil 15, !- Name - {00000000-0000-0000-0015-000000000005}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000008}, !- Handle - Controller Water Coil 16, !- Name - {00000000-0000-0000-0014-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000009}, !- Handle - Controller Water Coil 17, !- Name - {00000000-0000-0000-0015-000000000006}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000010}, !- Handle - Controller Water Coil 18, !- Name - {00000000-0000-0000-0015-000000000007}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000011}, !- Handle - Controller Water Coil 19, !- Name - {00000000-0000-0000-0015-000000000008}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000012}, !- Handle Controller Water Coil 2, !- Name {00000000-0000-0000-0014-000000000001}, !- Water Coil Name , !- Control Variable @@ -5556,35 +3136,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000013}, !- Handle - Controller Water Coil 20, !- Name - {00000000-0000-0000-0015-000000000009}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000014}, !- Handle - Controller Water Coil 21, !- Name - {00000000-0000-0000-0015-000000000010}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000015}, !- Handle + {00000000-0000-0000-0023-000000000003}, !- Handle Controller Water Coil 3, !- Name - {00000000-0000-0000-0015-000000000011}, !- Water Coil Name + {00000000-0000-0000-0015-000000000002}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5595,9 +3149,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000016}, !- Handle + {00000000-0000-0000-0023-000000000004}, !- Handle Controller Water Coil 4, !- Name - {00000000-0000-0000-0015-000000000012}, !- Water Coil Name + {00000000-0000-0000-0015-000000000003}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5608,9 +3162,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000017}, !- Handle + {00000000-0000-0000-0023-000000000005}, !- Handle Controller Water Coil 5, !- Name - {00000000-0000-0000-0015-000000000013}, !- Water Coil Name + {00000000-0000-0000-0015-000000000004}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5621,9 +3175,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000018}, !- Handle + {00000000-0000-0000-0023-000000000006}, !- Handle Controller Water Coil 6, !- Name - {00000000-0000-0000-0015-000000000014}, !- Water Coil Name + {00000000-0000-0000-0015-000000000005}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5634,22 +3188,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000019}, !- Handle + {00000000-0000-0000-0023-000000000007}, !- Handle Controller Water Coil 7, !- Name - {00000000-0000-0000-0015-000000000015}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000020}, !- Handle - Controller Water Coil 8, !- Name - {00000000-0000-0000-0015-000000000016}, !- Water Coil Name + {00000000-0000-0000-0015-000000000006}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5659,19 +3200,6 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000021}, !- Handle - Controller Water Coil 9, !- Name - {00000000-0000-0000-0014-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - OS:ConvergenceLimits, {00000000-0000-0000-0024-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -5684,7 +3212,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000099}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 3780.56530191195, !- Fan Power at Design Air Flow Rate {W} + 1513.88883194005, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -5775,34 +3303,6 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0026-000000000005}, !- Handle - WaterCooled_Screw_CAPFT_NECB2011, !- Name - 0.812998, !- Coefficient1 Constant - -0.0142532, !- Coefficient2 x - -0.00161799, !- Coefficient3 x**2 - 0.0263844, !- Coefficient4 y - -0.00091543, !- Coefficient5 y**2 - 0.00169601, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000006}, !- Handle - WaterCooled_Screw_EIRFT_NECB2011, !- Name - 0.638103, !- Coefficient1 Constant - 0.00630158, !- Coefficient2 x - 0.00092327, !- Coefficient3 x**2 - -0.00455294, !- Coefficient4 y - 0.000825682, !- Coefficient5 y**2 - -0.00156152, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -5816,7 +3316,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000008}, !- Handle + {00000000-0000-0000-0026-000000000006}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -5889,15 +3389,6 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0028-000000000003}, !- Handle - WaterCooled_Screw_EIRFPLR_NECB2011, !- Name - 0.330188, !- Coefficient1 Constant - 0.235543, !- Coefficient2 x - 0.460708, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0028-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -6048,49 +3539,17 @@ OS:ElectricEquipment, General; !- End-Use Subcategory OS:ElectricEquipment:Definition, - {00000000-0000-0000-0035-000000000001}, !- Handle - Space Function Office open plan Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.50272566220473, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name - {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name - {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name + {00000000-0000-0000-0035-000000000001}, !- Handle + Space Function Office open plan Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.50272566220473, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000005}, !- Handle + {00000000-0000-0000-0036-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__ClgSch0, !- Name {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -6098,7 +3557,7 @@ OS:EnergyManagementSystem:Actuator, ; !- Zone or Space Name OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000006}, !- Handle + {00000000-0000-0000-0036-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__HtgSch0, !- Name {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -6107,81 +3566,29 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f414c77c-a633-41b7-ab9d-fcf6d0011d0e}<23.9 && {f414c77c-a633-41b7-ab9d-fcf6d0011d0e}>1.7, !- Program Line 1 - SET {d258a18a-111a-4163-b99b-ef16b01be4c9} = 29.4, !- Program Line 2 - SET {c006e6b3-ff7d-4088-91b2-7fc9a8e2c0c2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f414c77c-a633-41b7-ab9d-fcf6d0011d0e}<23.9 && {f414c77c-a633-41b7-ab9d-fcf6d0011d0e}>1.7, !- Program Line 4 - SET {d258a18a-111a-4163-b99b-ef16b01be4c9} = 29.4, !- Program Line 5 - SET {c006e6b3-ff7d-4088-91b2-7fc9a8e2c0c2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f414c77c-a633-41b7-ab9d-fcf6d0011d0e}<23.9 && {f414c77c-a633-41b7-ab9d-fcf6d0011d0e}>1.7, !- Program Line 7 - SET {d258a18a-111a-4163-b99b-ef16b01be4c9} = 29.4, !- Program Line 8 - SET {c006e6b3-ff7d-4088-91b2-7fc9a8e2c0c2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f414c77c-a633-41b7-ab9d-fcf6d0011d0e}<23.9 && {f414c77c-a633-41b7-ab9d-fcf6d0011d0e}>1.7, !- Program Line 10 - SET {d258a18a-111a-4163-b99b-ef16b01be4c9} = 29.4, !- Program Line 11 - SET {c006e6b3-ff7d-4088-91b2-7fc9a8e2c0c2} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {d258a18a-111a-4163-b99b-ef16b01be4c9} = NULL, !- Program Line 14 - SET {c006e6b3-ff7d-4088-91b2-7fc9a8e2c0c2} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ffd84c92-5890-44c6-936a-93b3c25efde8}<23.9 && {ffd84c92-5890-44c6-936a-93b3c25efde8}>1.7, !- Program Line 1 - SET {c9a66d4f-cf49-4279-849d-f61fc516d253} = 29.4, !- Program Line 2 - SET {ecdca3b3-5230-4d3f-bb9b-4e22177ee2c6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ffd84c92-5890-44c6-936a-93b3c25efde8}<23.9 && {ffd84c92-5890-44c6-936a-93b3c25efde8}>1.7, !- Program Line 4 - SET {c9a66d4f-cf49-4279-849d-f61fc516d253} = 29.4, !- Program Line 5 - SET {ecdca3b3-5230-4d3f-bb9b-4e22177ee2c6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ffd84c92-5890-44c6-936a-93b3c25efde8}<23.9 && {ffd84c92-5890-44c6-936a-93b3c25efde8}>1.7, !- Program Line 7 - SET {c9a66d4f-cf49-4279-849d-f61fc516d253} = 29.4, !- Program Line 8 - SET {ecdca3b3-5230-4d3f-bb9b-4e22177ee2c6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ffd84c92-5890-44c6-936a-93b3c25efde8}<23.9 && {ffd84c92-5890-44c6-936a-93b3c25efde8}>1.7, !- Program Line 10 - SET {c9a66d4f-cf49-4279-849d-f61fc516d253} = 29.4, !- Program Line 11 - SET {ecdca3b3-5230-4d3f-bb9b-4e22177ee2c6} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {c9a66d4f-cf49-4279-849d-f61fc516d253} = NULL, !- Program Line 14 - SET {ecdca3b3-5230-4d3f-bb9b-4e22177ee2c6} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0037-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {675f5df1-ff74-4146-a6cd-4c9c8846ea5f}<23.9 && {675f5df1-ff74-4146-a6cd-4c9c8846ea5f}>1.7, !- Program Line 1 - SET {aec37e4b-23f3-4428-ae00-1db4998f0da6} = 29.4, !- Program Line 2 - SET {79928523-cf70-4cf0-8c98-7a480b897850} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {675f5df1-ff74-4146-a6cd-4c9c8846ea5f}<23.9 && {675f5df1-ff74-4146-a6cd-4c9c8846ea5f}>1.7, !- Program Line 4 - SET {aec37e4b-23f3-4428-ae00-1db4998f0da6} = 29.4, !- Program Line 5 - SET {79928523-cf70-4cf0-8c98-7a480b897850} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {675f5df1-ff74-4146-a6cd-4c9c8846ea5f}<23.9 && {675f5df1-ff74-4146-a6cd-4c9c8846ea5f}>1.7, !- Program Line 7 - SET {aec37e4b-23f3-4428-ae00-1db4998f0da6} = 29.4, !- Program Line 8 - SET {79928523-cf70-4cf0-8c98-7a480b897850} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {675f5df1-ff74-4146-a6cd-4c9c8846ea5f}<23.9 && {675f5df1-ff74-4146-a6cd-4c9c8846ea5f}>1.7, !- Program Line 10 - SET {aec37e4b-23f3-4428-ae00-1db4998f0da6} = 29.4, !- Program Line 11 - SET {79928523-cf70-4cf0-8c98-7a480b897850} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}<23.9 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}>1.7, !- Program Line 1 + SET {6ddafe64-b010-4c3d-a9d5-f1449e15e3eb} = 29.4, !- Program Line 2 + SET {c1f3db94-28e3-4885-9ac2-bf2b9122a705} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}<23.9 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}>1.7, !- Program Line 4 + SET {6ddafe64-b010-4c3d-a9d5-f1449e15e3eb} = 29.4, !- Program Line 5 + SET {c1f3db94-28e3-4885-9ac2-bf2b9122a705} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}<23.9 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}>1.7, !- Program Line 7 + SET {6ddafe64-b010-4c3d-a9d5-f1449e15e3eb} = 29.4, !- Program Line 8 + SET {c1f3db94-28e3-4885-9ac2-bf2b9122a705} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}<23.9 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}>1.7, !- Program Line 10 + SET {6ddafe64-b010-4c3d-a9d5-f1449e15e3eb} = 29.4, !- Program Line 11 + SET {c1f3db94-28e3-4885-9ac2-bf2b9122a705} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {aec37e4b-23f3-4428-ae00-1db4998f0da6} = NULL, !- Program Line 14 - SET {79928523-cf70-4cf0-8c98-7a480b897850} = NULL, !- Program Line 15 + SET {6ddafe64-b010-4c3d-a9d5-f1449e15e3eb} = NULL, !- Program Line 14 + SET {c1f3db94-28e3-4885-9ac2-bf2b9122a705} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0037-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0037-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0038-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0037-000000000003}; !- Program Name 1 + {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:Sensor, {00000000-0000-0000-0039-000000000001}, !- Handle @@ -6189,65 +3596,11 @@ OS:EnergyManagementSystem:Sensor, Environment, !- Output Variable or Output Meter Index Key Name Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0039-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0039-000000000003}, !- Handle - OAT_2, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - OS:Facility, {00000000-0000-0000-0040-000000000001}; !- Handle OS:Fan:VariableVolume, {00000000-0000-0000-0041-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000228}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000229}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000322}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000323}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000003}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -6268,29 +3621,8 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000004}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000223}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000221}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000005}, !- Handle - Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0041-000000000002}, !- Handle + Sys6 Supply Fan, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -6305,27 +3637,6 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000317}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000315}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000006}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0017-000000000129}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000127}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -6372,58 +3683,6 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000487}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000488}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000491}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000492}, !- Exhaust Air Outlet Node - 897.446570606695, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0045-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000493}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000494}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000497}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000498}, !- Exhaust Air Outlet Node - 897.446570606695, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0045-000000000003}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} @@ -6435,10 +3694,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000481}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000482}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000485}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000486}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0017-000000000293}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000294}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000297}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000298}, !- Exhaust Air Outlet Node 897.446570606695, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -6882,49 +4141,17 @@ OS:ModelObjectList, {00000000-0000-0000-0051-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name - OS:Node, {00000000-0000-0000-0052-000000000001}, !- Handle 125gal NaturalGas Water Heater - 84kBtu/hr 0.813 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000396}, !- Inlet Port - {00000000-0000-0000-0017-000000000405}; !- Outlet Port + {00000000-0000-0000-0017-000000000208}, !- Inlet Port + {00000000-0000-0000-0017-000000000217}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000002}, !- Handle 125gal NaturalGas Water Heater - 84kBtu/hr 0.813 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000406}, !- Inlet Port - {00000000-0000-0000-0017-000000000407}; !- Outlet Port + {00000000-0000-0000-0017-000000000218}, !- Inlet Port + {00000000-0000-0000-0017-000000000219}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000003}, !- Handle @@ -7006,1425 +4233,813 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000016}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000296}, !- Inlet Port - {00000000-0000-0000-0017-000000000297}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000018}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000282}, !- Inlet Port - {00000000-0000-0000-0017-000000000283}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000019}, !- Handle + {00000000-0000-0000-0052-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000020}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000254}, !- Inlet Port - {00000000-0000-0000-0017-000000000255}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000021}, !- Handle + {00000000-0000-0000-0052-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000022}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000268}, !- Inlet Port - {00000000-0000-0000-0017-000000000269}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000023}, !- Handle + {00000000-0000-0000-0052-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000024}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000240}, !- Inlet Port - {00000000-0000-0000-0017-000000000241}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000025}, !- Handle + {00000000-0000-0000-0052-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000026}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000362}, !- Inlet Port - {00000000-0000-0000-0017-000000000363}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000027}, !- Handle + {00000000-0000-0000-0052-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000028}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000334}, !- Inlet Port - {00000000-0000-0000-0017-000000000335}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000029}, !- Handle + {00000000-0000-0000-0052-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000030}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000376}, !- Inlet Port - {00000000-0000-0000-0017-000000000377}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000031}, !- Handle + {00000000-0000-0000-0052-000000000023}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000032}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000390}, !- Inlet Port - {00000000-0000-0000-0017-000000000391}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000033}, !- Handle + {00000000-0000-0000-0052-000000000024}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000034}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000348}, !- Inlet Port - {00000000-0000-0000-0017-000000000349}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000035}, !- Handle + {00000000-0000-0000-0052-000000000025}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000036}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000148}, !- Inlet Port - {00000000-0000-0000-0017-000000000149}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000037}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000150}, !- Inlet Port - {00000000-0000-0000-0017-000000000145}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000038}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000298}, !- Inlet Port - {00000000-0000-0000-0017-000000000299}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000039}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000300}, !- Inlet Port - {00000000-0000-0000-0017-000000000295}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000040}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000336}, !- Inlet Port - {00000000-0000-0000-0017-000000000337}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000041}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000338}, !- Inlet Port - {00000000-0000-0000-0017-000000000333}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000042}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000350}, !- Inlet Port - {00000000-0000-0000-0017-000000000351}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000043}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000352}, !- Inlet Port - {00000000-0000-0000-0017-000000000347}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000044}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000364}, !- Inlet Port - {00000000-0000-0000-0017-000000000365}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000045}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000366}, !- Inlet Port - {00000000-0000-0000-0017-000000000361}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000378}, !- Inlet Port - {00000000-0000-0000-0017-000000000379}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000380}, !- Inlet Port - {00000000-0000-0000-0017-000000000375}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000392}, !- Inlet Port - {00000000-0000-0000-0017-000000000393}; !- Outlet Port + {00000000-0000-0000-0052-000000000026}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000148}, !- Inlet Port + {00000000-0000-0000-0017-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000394}, !- Inlet Port - {00000000-0000-0000-0017-000000000389}; !- Outlet Port + {00000000-0000-0000-0052-000000000027}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000150}, !- Inlet Port + {00000000-0000-0000-0017-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000050}, !- Handle + {00000000-0000-0000-0052-000000000028}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000162}, !- Inlet Port {00000000-0000-0000-0017-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000051}, !- Handle + {00000000-0000-0000-0052-000000000029}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000164}, !- Inlet Port {00000000-0000-0000-0017-000000000159}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000052}, !- Handle + {00000000-0000-0000-0052-000000000030}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000176}, !- Inlet Port {00000000-0000-0000-0017-000000000177}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000053}, !- Handle + {00000000-0000-0000-0052-000000000031}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000178}, !- Inlet Port {00000000-0000-0000-0017-000000000173}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000054}, !- Handle + {00000000-0000-0000-0052-000000000032}, !- Handle Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000190}, !- Inlet Port {00000000-0000-0000-0017-000000000191}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000055}, !- Handle + {00000000-0000-0000-0052-000000000033}, !- Handle Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000192}, !- Inlet Port {00000000-0000-0000-0017-000000000187}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000056}, !- Handle + {00000000-0000-0000-0052-000000000034}, !- Handle Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000204}, !- Inlet Port {00000000-0000-0000-0017-000000000205}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000057}, !- Handle + {00000000-0000-0000-0052-000000000035}, !- Handle Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000206}, !- Inlet Port {00000000-0000-0000-0017-000000000201}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000242}, !- Inlet Port - {00000000-0000-0000-0017-000000000243}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000244}, !- Inlet Port - {00000000-0000-0000-0017-000000000239}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000256}, !- Inlet Port - {00000000-0000-0000-0017-000000000257}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000258}, !- Inlet Port - {00000000-0000-0000-0017-000000000253}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000270}, !- Inlet Port - {00000000-0000-0000-0017-000000000271}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000272}, !- Inlet Port - {00000000-0000-0000-0017-000000000267}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000284}, !- Inlet Port - {00000000-0000-0000-0017-000000000285}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000286}, !- Inlet Port - {00000000-0000-0000-0017-000000000281}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000066}, !- Handle + {00000000-0000-0000-0052-000000000036}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000065}, !- Inlet Port {00000000-0000-0000-0017-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000067}, !- Handle + {00000000-0000-0000-0052-000000000037}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000068}, !- Handle + {00000000-0000-0000-0052-000000000038}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000062}, !- Inlet Port {00000000-0000-0000-0017-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000069}, !- Handle + {00000000-0000-0000-0052-000000000039}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000086}, !- Inlet Port {00000000-0000-0000-0017-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000070}, !- Handle + {00000000-0000-0000-0052-000000000040}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000067}, !- Inlet Port {00000000-0000-0000-0017-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000071}, !- Handle + {00000000-0000-0000-0052-000000000041}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000130}, !- Inlet Port {00000000-0000-0000-0017-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000072}, !- Handle + {00000000-0000-0000-0052-000000000042}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000125}, !- Inlet Port {00000000-0000-0000-0017-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000073}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000217}, !- Inlet Port - {00000000-0000-0000-0017-000000000218}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000074}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Port - {00000000-0000-0000-0017-000000000225}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000075}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Port - {00000000-0000-0000-0017-000000000220}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000076}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000311}, !- Inlet Port - {00000000-0000-0000-0017-000000000312}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000077}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000318}, !- Inlet Port - {00000000-0000-0000-0017-000000000319}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000078}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000313}, !- Inlet Port - {00000000-0000-0000-0017-000000000314}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000079}, !- Handle + {00000000-0000-0000-0052-000000000043}, !- Handle Coil Heating Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000042}, !- Inlet Port {00000000-0000-0000-0017-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000080}, !- Handle + {00000000-0000-0000-0052-000000000044}, !- Handle Coil Heating Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000128}, !- Inlet Port {00000000-0000-0000-0017-000000000129}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000081}, !- Handle + {00000000-0000-0000-0052-000000000045}, !- Handle Coil Heating Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000122}, !- Inlet Port {00000000-0000-0000-0017-000000000123}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000082}, !- Handle - Coil Heating Water 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000259}, !- Inlet Port - {00000000-0000-0000-0017-000000000260}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000083}, !- Handle - Coil Heating Water 10 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000261}, !- Inlet Port - {00000000-0000-0000-0017-000000000262}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000084}, !- Handle - Coil Heating Water 11 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000273}, !- Inlet Port - {00000000-0000-0000-0017-000000000274}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000085}, !- Handle - Coil Heating Water 11 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000275}, !- Inlet Port - {00000000-0000-0000-0017-000000000276}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000086}, !- Handle - Coil Heating Water 12 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000287}, !- Inlet Port - {00000000-0000-0000-0017-000000000288}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000087}, !- Handle - Coil Heating Water 12 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000289}, !- Inlet Port - {00000000-0000-0000-0017-000000000290}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000088}, !- Handle - Coil Heating Water 13 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000307}, !- Inlet Port - {00000000-0000-0000-0017-000000000308}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000089}, !- Handle - Coil Heating Water 13 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000316}, !- Inlet Port - {00000000-0000-0000-0017-000000000317}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000090}, !- Handle - Coil Heating Water 13 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000309}, !- Inlet Port - {00000000-0000-0000-0017-000000000310}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000091}, !- Handle - Coil Heating Water 14 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000325}, !- Inlet Port - {00000000-0000-0000-0017-000000000326}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000092}, !- Handle - Coil Heating Water 14 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000327}, !- Inlet Port - {00000000-0000-0000-0017-000000000328}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000093}, !- Handle - Coil Heating Water 15 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000339}, !- Inlet Port - {00000000-0000-0000-0017-000000000340}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000094}, !- Handle - Coil Heating Water 15 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000341}, !- Inlet Port - {00000000-0000-0000-0017-000000000342}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000095}, !- Handle - Coil Heating Water 16 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000353}, !- Inlet Port - {00000000-0000-0000-0017-000000000354}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000096}, !- Handle - Coil Heating Water 16 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000355}, !- Inlet Port - {00000000-0000-0000-0017-000000000356}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000097}, !- Handle - Coil Heating Water 17 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000367}, !- Inlet Port - {00000000-0000-0000-0017-000000000368}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000098}, !- Handle - Coil Heating Water 17 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000369}, !- Inlet Port - {00000000-0000-0000-0017-000000000370}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000099}, !- Handle - Coil Heating Water 18 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000381}, !- Inlet Port - {00000000-0000-0000-0017-000000000382}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000100}, !- Handle - Coil Heating Water 18 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000383}, !- Inlet Port - {00000000-0000-0000-0017-000000000384}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000101}, !- Handle + {00000000-0000-0000-0052-000000000046}, !- Handle Coil Heating Water 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000102}, !- Handle + {00000000-0000-0000-0052-000000000047}, !- Handle Coil Heating Water 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000139}, !- Inlet Port {00000000-0000-0000-0017-000000000140}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000103}, !- Handle + {00000000-0000-0000-0052-000000000048}, !- Handle Coil Heating Water 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000151}, !- Inlet Port {00000000-0000-0000-0017-000000000152}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000104}, !- Handle + {00000000-0000-0000-0052-000000000049}, !- Handle Coil Heating Water 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000153}, !- Inlet Port {00000000-0000-0000-0017-000000000154}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000105}, !- Handle + {00000000-0000-0000-0052-000000000050}, !- Handle Coil Heating Water 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000165}, !- Inlet Port {00000000-0000-0000-0017-000000000166}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000106}, !- Handle + {00000000-0000-0000-0052-000000000051}, !- Handle Coil Heating Water 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000167}, !- Inlet Port {00000000-0000-0000-0017-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000107}, !- Handle + {00000000-0000-0000-0052-000000000052}, !- Handle Coil Heating Water 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000179}, !- Inlet Port {00000000-0000-0000-0017-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000108}, !- Handle + {00000000-0000-0000-0052-000000000053}, !- Handle Coil Heating Water 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000181}, !- Inlet Port {00000000-0000-0000-0017-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000109}, !- Handle - Coil Heating Water 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000193}, !- Inlet Port - {00000000-0000-0000-0017-000000000194}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000110}, !- Handle - Coil Heating Water 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000195}, !- Inlet Port - {00000000-0000-0000-0017-000000000196}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000111}, !- Handle - Coil Heating Water 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000213}, !- Inlet Port - {00000000-0000-0000-0017-000000000214}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000112}, !- Handle - Coil Heating Water 7 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000222}, !- Inlet Port - {00000000-0000-0000-0017-000000000223}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000113}, !- Handle - Coil Heating Water 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000215}, !- Inlet Port - {00000000-0000-0000-0017-000000000216}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000114}, !- Handle - Coil Heating Water 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000231}, !- Inlet Port - {00000000-0000-0000-0017-000000000232}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000115}, !- Handle - Coil Heating Water 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000233}, !- Inlet Port - {00000000-0000-0000-0017-000000000234}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000116}, !- Handle - Coil Heating Water 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000245}, !- Inlet Port - {00000000-0000-0000-0017-000000000246}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000117}, !- Handle - Coil Heating Water 9 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000247}, !- Inlet Port - {00000000-0000-0000-0017-000000000248}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000118}, !- Handle - Coil Heating Water Baseboard 1 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000141}, !- Inlet Port - {00000000-0000-0000-0017-000000000142}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000119}, !- Handle - Coil Heating Water Baseboard 1 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000143}, !- Inlet Port - {00000000-0000-0000-0017-000000000144}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000120}, !- Handle - Coil Heating Water Baseboard 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000291}, !- Inlet Port - {00000000-0000-0000-0017-000000000292}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000121}, !- Handle - Coil Heating Water Baseboard 10 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000293}, !- Inlet Port - {00000000-0000-0000-0017-000000000294}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000122}, !- Handle - Coil Heating Water Baseboard 11 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000329}, !- Inlet Port - {00000000-0000-0000-0017-000000000330}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000123}, !- Handle - Coil Heating Water Baseboard 11 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000331}, !- Inlet Port - {00000000-0000-0000-0017-000000000332}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000124}, !- Handle - Coil Heating Water Baseboard 12 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000343}, !- Inlet Port - {00000000-0000-0000-0017-000000000344}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000125}, !- Handle - Coil Heating Water Baseboard 12 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000345}, !- Inlet Port - {00000000-0000-0000-0017-000000000346}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000126}, !- Handle - Coil Heating Water Baseboard 13 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000357}, !- Inlet Port - {00000000-0000-0000-0017-000000000358}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000127}, !- Handle - Coil Heating Water Baseboard 13 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000359}, !- Inlet Port - {00000000-0000-0000-0017-000000000360}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000128}, !- Handle - Coil Heating Water Baseboard 14 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000371}, !- Inlet Port - {00000000-0000-0000-0017-000000000372}; !- Outlet Port + {00000000-0000-0000-0052-000000000054}, !- Handle + Coil Heating Water 6 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000193}, !- Inlet Port + {00000000-0000-0000-0017-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000129}, !- Handle - Coil Heating Water Baseboard 14 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000373}, !- Inlet Port - {00000000-0000-0000-0017-000000000374}; !- Outlet Port + {00000000-0000-0000-0052-000000000055}, !- Handle + Coil Heating Water 6 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000195}, !- Inlet Port + {00000000-0000-0000-0017-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000130}, !- Handle - Coil Heating Water Baseboard 15 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000385}, !- Inlet Port - {00000000-0000-0000-0017-000000000386}; !- Outlet Port + {00000000-0000-0000-0052-000000000056}, !- Handle + Coil Heating Water Baseboard 1 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000141}, !- Inlet Port + {00000000-0000-0000-0017-000000000142}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000131}, !- Handle - Coil Heating Water Baseboard 15 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000387}, !- Inlet Port - {00000000-0000-0000-0017-000000000388}; !- Outlet Port + {00000000-0000-0000-0052-000000000057}, !- Handle + Coil Heating Water Baseboard 1 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000143}, !- Inlet Port + {00000000-0000-0000-0017-000000000144}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000132}, !- Handle + {00000000-0000-0000-0052-000000000058}, !- Handle Coil Heating Water Baseboard 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000155}, !- Inlet Port {00000000-0000-0000-0017-000000000156}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000133}, !- Handle + {00000000-0000-0000-0052-000000000059}, !- Handle Coil Heating Water Baseboard 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000157}, !- Inlet Port {00000000-0000-0000-0017-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000134}, !- Handle + {00000000-0000-0000-0052-000000000060}, !- Handle Coil Heating Water Baseboard 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000169}, !- Inlet Port {00000000-0000-0000-0017-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000135}, !- Handle + {00000000-0000-0000-0052-000000000061}, !- Handle Coil Heating Water Baseboard 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000171}, !- Inlet Port {00000000-0000-0000-0017-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000136}, !- Handle + {00000000-0000-0000-0052-000000000062}, !- Handle Coil Heating Water Baseboard 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000183}, !- Inlet Port {00000000-0000-0000-0017-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000137}, !- Handle + {00000000-0000-0000-0052-000000000063}, !- Handle Coil Heating Water Baseboard 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000185}, !- Inlet Port {00000000-0000-0000-0017-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000138}, !- Handle + {00000000-0000-0000-0052-000000000064}, !- Handle Coil Heating Water Baseboard 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000197}, !- Inlet Port {00000000-0000-0000-0017-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000139}, !- Handle + {00000000-0000-0000-0052-000000000065}, !- Handle Coil Heating Water Baseboard 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000199}, !- Inlet Port {00000000-0000-0000-0017-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000140}, !- Handle - Coil Heating Water Baseboard 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000235}, !- Inlet Port - {00000000-0000-0000-0017-000000000236}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000141}, !- Handle - Coil Heating Water Baseboard 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000237}, !- Inlet Port - {00000000-0000-0000-0017-000000000238}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000142}, !- Handle - Coil Heating Water Baseboard 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000249}, !- Inlet Port - {00000000-0000-0000-0017-000000000250}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000143}, !- Handle - Coil Heating Water Baseboard 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000251}, !- Inlet Port - {00000000-0000-0000-0017-000000000252}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000144}, !- Handle - Coil Heating Water Baseboard 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000263}, !- Inlet Port - {00000000-0000-0000-0017-000000000264}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000145}, !- Handle - Coil Heating Water Baseboard 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000265}, !- Inlet Port - {00000000-0000-0000-0017-000000000266}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000146}, !- Handle - Coil Heating Water Baseboard 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000277}, !- Inlet Port - {00000000-0000-0000-0017-000000000278}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000147}, !- Handle - Coil Heating Water Baseboard 9 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000279}, !- Inlet Port - {00000000-0000-0000-0017-000000000280}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000148}, !- Handle + {00000000-0000-0000-0052-000000000066}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000149}, !- Handle + {00000000-0000-0000-0052-000000000067}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000150}, !- Handle + {00000000-0000-0000-0052-000000000068}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000151}, !- Handle + {00000000-0000-0000-0052-000000000069}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000107}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000152}, !- Handle + {00000000-0000-0000-0052-000000000070}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000153}, !- Handle + {00000000-0000-0000-0052-000000000071}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000099}, !- Inlet Port {00000000-0000-0000-0017-000000000100}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000154}, !- Handle + {00000000-0000-0000-0052-000000000072}, !- Handle Core_bottom WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000421}, !- Inlet Port - {00000000-0000-0000-0017-000000000422}; !- Outlet Port + {00000000-0000-0000-0017-000000000233}, !- Inlet Port + {00000000-0000-0000-0017-000000000234}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000155}, !- Handle + {00000000-0000-0000-0052-000000000073}, !- Handle Core_bottom WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000423}, !- Inlet Port - {00000000-0000-0000-0017-000000000424}; !- Outlet Port + {00000000-0000-0000-0017-000000000235}, !- Inlet Port + {00000000-0000-0000-0017-000000000236}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000156}, !- Handle + {00000000-0000-0000-0052-000000000074}, !- Handle Core_mid WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000425}, !- Inlet Port - {00000000-0000-0000-0017-000000000426}; !- Outlet Port + {00000000-0000-0000-0017-000000000237}, !- Inlet Port + {00000000-0000-0000-0017-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000157}, !- Handle + {00000000-0000-0000-0052-000000000075}, !- Handle Core_mid WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000427}, !- Inlet Port - {00000000-0000-0000-0017-000000000428}; !- Outlet Port + {00000000-0000-0000-0017-000000000239}, !- Inlet Port + {00000000-0000-0000-0017-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000158}, !- Handle + {00000000-0000-0000-0052-000000000076}, !- Handle Core_top WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000429}, !- Inlet Port - {00000000-0000-0000-0017-000000000430}; !- Outlet Port + {00000000-0000-0000-0017-000000000241}, !- Inlet Port + {00000000-0000-0000-0017-000000000242}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000159}, !- Handle + {00000000-0000-0000-0052-000000000077}, !- Handle Core_top WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000431}, !- Inlet Port - {00000000-0000-0000-0017-000000000432}; !- Outlet Port + {00000000-0000-0000-0017-000000000243}, !- Inlet Port + {00000000-0000-0000-0017-000000000244}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000160}, !- Handle + {00000000-0000-0000-0052-000000000078}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000161}, !- Handle + {00000000-0000-0000-0052-000000000079}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port {00000000-0000-0000-0017-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000162}, !- Handle + {00000000-0000-0000-0052-000000000080}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port {00000000-0000-0000-0017-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000163}, !- Handle + {00000000-0000-0000-0052-000000000081}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000061}, !- Inlet Port {00000000-0000-0000-0017-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000164}, !- Handle + {00000000-0000-0000-0052-000000000082}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000403}, !- Inlet Port - {00000000-0000-0000-0017-000000000404}; !- Outlet Port + {00000000-0000-0000-0017-000000000215}, !- Inlet Port + {00000000-0000-0000-0017-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000165}, !- Handle + {00000000-0000-0000-0052-000000000083}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000398}, !- Inlet Port - {00000000-0000-0000-0017-000000000399}; !- Outlet Port + {00000000-0000-0000-0017-000000000210}, !- Inlet Port + {00000000-0000-0000-0017-000000000211}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000166}, !- Handle + {00000000-0000-0000-0052-000000000084}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000420}, !- Inlet Port - {00000000-0000-0000-0017-000000000401}; !- Outlet Port + {00000000-0000-0000-0017-000000000232}, !- Inlet Port + {00000000-0000-0000-0017-000000000213}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000167}, !- Handle + {00000000-0000-0000-0052-000000000085}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000395}, !- Inlet Port - {00000000-0000-0000-0017-000000000402}; !- Outlet Port + {00000000-0000-0000-0017-000000000207}, !- Inlet Port + {00000000-0000-0000-0017-000000000214}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000168}, !- Handle + {00000000-0000-0000-0052-000000000086}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000417}, !- Inlet Port - {00000000-0000-0000-0017-000000000397}; !- Outlet Port + {00000000-0000-0000-0017-000000000229}, !- Inlet Port + {00000000-0000-0000-0017-000000000209}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000169}, !- Handle + {00000000-0000-0000-0052-000000000087}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000433}, !- Inlet Port - {00000000-0000-0000-0017-000000000434}; !- Outlet Port + {00000000-0000-0000-0017-000000000245}, !- Inlet Port + {00000000-0000-0000-0017-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000170}, !- Handle + {00000000-0000-0000-0052-000000000088}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000435}, !- Inlet Port - {00000000-0000-0000-0017-000000000436}; !- Outlet Port + {00000000-0000-0000-0017-000000000247}, !- Inlet Port + {00000000-0000-0000-0017-000000000248}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000171}, !- Handle + {00000000-0000-0000-0052-000000000089}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000437}, !- Inlet Port - {00000000-0000-0000-0017-000000000438}; !- Outlet Port + {00000000-0000-0000-0017-000000000249}, !- Inlet Port + {00000000-0000-0000-0017-000000000250}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000172}, !- Handle + {00000000-0000-0000-0052-000000000090}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000439}, !- Inlet Port - {00000000-0000-0000-0017-000000000440}; !- Outlet Port + {00000000-0000-0000-0017-000000000251}, !- Inlet Port + {00000000-0000-0000-0017-000000000252}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000173}, !- Handle + {00000000-0000-0000-0052-000000000091}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000441}, !- Inlet Port - {00000000-0000-0000-0017-000000000442}; !- Outlet Port + {00000000-0000-0000-0017-000000000253}, !- Inlet Port + {00000000-0000-0000-0017-000000000254}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000174}, !- Handle + {00000000-0000-0000-0052-000000000092}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000443}, !- Inlet Port - {00000000-0000-0000-0017-000000000444}; !- Outlet Port + {00000000-0000-0000-0017-000000000255}, !- Inlet Port + {00000000-0000-0000-0017-000000000256}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000175}, !- Handle + {00000000-0000-0000-0052-000000000093}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000445}, !- Inlet Port - {00000000-0000-0000-0017-000000000446}; !- Outlet Port + {00000000-0000-0000-0017-000000000257}, !- Inlet Port + {00000000-0000-0000-0017-000000000258}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000176}, !- Handle + {00000000-0000-0000-0052-000000000094}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000447}, !- Inlet Port - {00000000-0000-0000-0017-000000000448}; !- Outlet Port + {00000000-0000-0000-0017-000000000259}, !- Inlet Port + {00000000-0000-0000-0017-000000000260}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000177}, !- Handle + {00000000-0000-0000-0052-000000000095}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000449}, !- Inlet Port - {00000000-0000-0000-0017-000000000450}; !- Outlet Port + {00000000-0000-0000-0017-000000000261}, !- Inlet Port + {00000000-0000-0000-0017-000000000262}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000178}, !- Handle + {00000000-0000-0000-0052-000000000096}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000451}, !- Inlet Port - {00000000-0000-0000-0017-000000000452}; !- Outlet Port + {00000000-0000-0000-0017-000000000263}, !- Inlet Port + {00000000-0000-0000-0017-000000000264}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000179}, !- Handle + {00000000-0000-0000-0052-000000000097}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000453}, !- Inlet Port - {00000000-0000-0000-0017-000000000454}; !- Outlet Port + {00000000-0000-0000-0017-000000000265}, !- Inlet Port + {00000000-0000-0000-0017-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000180}, !- Handle + {00000000-0000-0000-0052-000000000098}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000455}, !- Inlet Port - {00000000-0000-0000-0017-000000000456}; !- Outlet Port + {00000000-0000-0000-0017-000000000267}, !- Inlet Port + {00000000-0000-0000-0017-000000000268}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000181}, !- Handle + {00000000-0000-0000-0052-000000000099}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000457}, !- Inlet Port - {00000000-0000-0000-0017-000000000458}; !- Outlet Port + {00000000-0000-0000-0017-000000000269}, !- Inlet Port + {00000000-0000-0000-0017-000000000270}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000182}, !- Handle + {00000000-0000-0000-0052-000000000100}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000459}, !- Inlet Port - {00000000-0000-0000-0017-000000000460}; !- Outlet Port + {00000000-0000-0000-0017-000000000271}, !- Inlet Port + {00000000-0000-0000-0017-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000183}, !- Handle + {00000000-0000-0000-0052-000000000101}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000461}, !- Inlet Port - {00000000-0000-0000-0017-000000000462}; !- Outlet Port + {00000000-0000-0000-0017-000000000273}, !- Inlet Port + {00000000-0000-0000-0017-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000184}, !- Handle + {00000000-0000-0000-0052-000000000102}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000463}, !- Inlet Port - {00000000-0000-0000-0017-000000000464}; !- Outlet Port + {00000000-0000-0000-0017-000000000275}, !- Inlet Port + {00000000-0000-0000-0017-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000185}, !- Handle + {00000000-0000-0000-0052-000000000103}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000465}, !- Inlet Port - {00000000-0000-0000-0017-000000000466}; !- Outlet Port + {00000000-0000-0000-0017-000000000277}, !- Inlet Port + {00000000-0000-0000-0017-000000000278}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000186}, !- Handle + {00000000-0000-0000-0052-000000000104}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000467}, !- Inlet Port - {00000000-0000-0000-0017-000000000468}; !- Outlet Port + {00000000-0000-0000-0017-000000000279}, !- Inlet Port + {00000000-0000-0000-0017-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000187}, !- Handle + {00000000-0000-0000-0052-000000000105}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000469}, !- Inlet Port - {00000000-0000-0000-0017-000000000470}; !- Outlet Port + {00000000-0000-0000-0017-000000000281}, !- Inlet Port + {00000000-0000-0000-0017-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000188}, !- Handle + {00000000-0000-0000-0052-000000000106}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000471}, !- Inlet Port - {00000000-0000-0000-0017-000000000472}; !- Outlet Port + {00000000-0000-0000-0017-000000000283}, !- Inlet Port + {00000000-0000-0000-0017-000000000284}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000189}, !- Handle + {00000000-0000-0000-0052-000000000107}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000473}, !- Inlet Port - {00000000-0000-0000-0017-000000000474}; !- Outlet Port + {00000000-0000-0000-0017-000000000285}, !- Inlet Port + {00000000-0000-0000-0017-000000000286}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000190}, !- Handle + {00000000-0000-0000-0052-000000000108}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000475}, !- Inlet Port - {00000000-0000-0000-0017-000000000476}; !- Outlet Port + {00000000-0000-0000-0017-000000000287}, !- Inlet Port + {00000000-0000-0000-0017-000000000288}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000191}, !- Handle + {00000000-0000-0000-0052-000000000109}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000477}, !- Inlet Port - {00000000-0000-0000-0017-000000000478}; !- Outlet Port + {00000000-0000-0000-0017-000000000289}, !- Inlet Port + {00000000-0000-0000-0017-000000000290}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000192}, !- Handle + {00000000-0000-0000-0052-000000000110}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000479}, !- Inlet Port - {00000000-0000-0000-0017-000000000480}; !- Outlet Port + {00000000-0000-0000-0017-000000000291}, !- Inlet Port + {00000000-0000-0000-0017-000000000292}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000193}, !- Handle + {00000000-0000-0000-0052-000000000111}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000194}, !- Handle + {00000000-0000-0000-0052-000000000112}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000057}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000195}, !- Handle + {00000000-0000-0000-0052-000000000113}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000418}, !- Inlet Port - {00000000-0000-0000-0017-000000000419}; !- Outlet Port + {00000000-0000-0000-0017-000000000230}, !- Inlet Port + {00000000-0000-0000-0017-000000000231}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000196}, !- Handle + {00000000-0000-0000-0052-000000000114}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000059}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000197}, !- Handle + {00000000-0000-0000-0052-000000000115}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000080}, !- Inlet Port {00000000-0000-0000-0017-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000198}, !- Handle + {00000000-0000-0000-0052-000000000116}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000082}, !- Inlet Port {00000000-0000-0000-0017-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000199}, !- Handle + {00000000-0000-0000-0052-000000000117}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000084}, !- Inlet Port {00000000-0000-0000-0017-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000200}, !- Handle + {00000000-0000-0000-0052-000000000118}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000101}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000201}, !- Handle + {00000000-0000-0000-0052-000000000119}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000202}, !- Handle + {00000000-0000-0000-0052-000000000120}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000105}, !- Inlet Port {00000000-0000-0000-0017-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000203}, !- Handle + {00000000-0000-0000-0052-000000000121}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000408}, !- Inlet Port - {00000000-0000-0000-0017-000000000409}; !- Outlet Port + {00000000-0000-0000-0017-000000000220}, !- Inlet Port + {00000000-0000-0000-0017-000000000221}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000204}, !- Handle + {00000000-0000-0000-0052-000000000122}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000410}, !- Inlet Port - {00000000-0000-0000-0017-000000000411}; !- Outlet Port + {00000000-0000-0000-0017-000000000222}, !- Inlet Port + {00000000-0000-0000-0017-000000000223}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000205}, !- Handle + {00000000-0000-0000-0052-000000000123}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000400}, !- Inlet Port - {00000000-0000-0000-0017-000000000412}; !- Outlet Port + {00000000-0000-0000-0017-000000000212}, !- Inlet Port + {00000000-0000-0000-0017-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000206}, !- Handle + {00000000-0000-0000-0052-000000000124}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000413}, !- Inlet Port - {00000000-0000-0000-0017-000000000414}; !- Outlet Port + {00000000-0000-0000-0017-000000000225}, !- Inlet Port + {00000000-0000-0000-0017-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000207}, !- Handle + {00000000-0000-0000-0052-000000000125}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000415}, !- Inlet Port - {00000000-0000-0000-0017-000000000416}; !- Outlet Port + {00000000-0000-0000-0017-000000000227}, !- Inlet Port + {00000000-0000-0000-0017-000000000228}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000208}, !- Handle - Primary Boiler 1845kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000126}, !- Handle + Primary Boiler 361kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000209}, !- Handle - Primary Boiler 1845kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000127}, !- Handle + Primary Boiler 361kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000210}, !- Handle - Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000128}, !- Handle + Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Port {00000000-0000-0000-0017-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000211}, !- Handle - Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000129}, !- Handle + Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000109}, !- Inlet Port {00000000-0000-0000-0017-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000212}, !- Handle - Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000130}, !- Handle + Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000063}, !- Inlet Port {00000000-0000-0000-0017-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000213}, !- Handle - Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000131}, !- Handle + Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000074}, !- Inlet Port {00000000-0000-0000-0017-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000214}, !- Handle + {00000000-0000-0000-0052-000000000132}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port {00000000-0000-0000-0017-000000000047}; !- Outlet Port -OS:Node, - {00000000-0000-0000-0052-000000000215}, !- Handle - Pump Variable Speed 2 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000071}, !- Inlet Port - {00000000-0000-0000-0017-000000000072}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000216}, !- Handle - Pump Variable Speed 3 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000096}, !- Inlet Port - {00000000-0000-0000-0017-000000000097}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000217}, !- Handle - Secondary Boiler 0kBtu/hr 0.85 AFUE Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000051}, !- Inlet Port - {00000000-0000-0000-0017-000000000052}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000218}, !- Handle - Secondary Boiler 0kBtu/hr 0.85 AFUE Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000053}, !- Inlet Port - {00000000-0000-0000-0017-000000000054}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000219}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000111}, !- Inlet Port - {00000000-0000-0000-0017-000000000112}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000220}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000113}, !- Inlet Port - {00000000-0000-0000-0017-000000000114}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000221}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000076}, !- Inlet Port - {00000000-0000-0000-0017-000000000077}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000222}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000078}, !- Inlet Port - {00000000-0000-0000-0017-000000000079}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000223}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000229}, !- Inlet Port - {00000000-0000-0000-0017-000000000230}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000224}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000323}, !- Inlet Port - {00000000-0000-0000-0017-000000000324}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000225}, !- Handle - Sys6 Return Fan Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000135}, !- Inlet Port - {00000000-0000-0000-0017-000000000136}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000226}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000209}, !- Inlet Port - {00000000-0000-0000-0017-000000000211}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000227}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Port - {00000000-0000-0000-0017-000000000210}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000228}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000226}, !- Inlet Port - {00000000-0000-0000-0017-000000000227}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000229}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000487}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000230}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000492}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000231}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000207}, !- Inlet Port - {00000000-0000-0000-0017-000000000228}; !- Outlet Port +OS:Node, + {00000000-0000-0000-0052-000000000133}, !- Handle + Pump Variable Speed 2 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000071}, !- Inlet Port + {00000000-0000-0000-0017-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000232}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000221}, !- Inlet Port - {00000000-0000-0000-0017-000000000208}; !- Outlet Port + {00000000-0000-0000-0052-000000000134}, !- Handle + Pump Variable Speed 3 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000096}, !- Inlet Port + {00000000-0000-0000-0017-000000000097}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000233}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000303}, !- Inlet Port - {00000000-0000-0000-0017-000000000305}; !- Outlet Port + {00000000-0000-0000-0052-000000000135}, !- Handle + Secondary Boiler 361kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000051}, !- Inlet Port + {00000000-0000-0000-0017-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000234}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000306}, !- Inlet Port - {00000000-0000-0000-0017-000000000304}; !- Outlet Port + {00000000-0000-0000-0052-000000000136}, !- Handle + Secondary Boiler 361kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000053}, !- Inlet Port + {00000000-0000-0000-0017-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000235}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000320}, !- Inlet Port - {00000000-0000-0000-0017-000000000321}; !- Outlet Port + {00000000-0000-0000-0052-000000000137}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000111}, !- Inlet Port + {00000000-0000-0000-0017-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000236}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000493}; !- Outlet Port + {00000000-0000-0000-0052-000000000138}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000113}, !- Inlet Port + {00000000-0000-0000-0017-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000237}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000498}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000139}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000076}, !- Inlet Port + {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000238}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000301}, !- Inlet Port - {00000000-0000-0000-0017-000000000322}; !- Outlet Port + {00000000-0000-0000-0052-000000000140}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000078}, !- Inlet Port + {00000000-0000-0000-0017-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000239}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000315}, !- Inlet Port - {00000000-0000-0000-0017-000000000302}; !- Outlet Port + {00000000-0000-0000-0052-000000000141}, !- Handle + Sys6 Return Fan Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000135}, !- Inlet Port + {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000240}, !- Handle + {00000000-0000-0000-0052-000000000142}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000117}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000241}, !- Handle + {00000000-0000-0000-0052-000000000143}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000242}, !- Handle + {00000000-0000-0000-0052-000000000144}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port {00000000-0000-0000-0017-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000243}, !- Handle + {00000000-0000-0000-0052-000000000145}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000481}; !- Outlet Port + {00000000-0000-0000-0017-000000000293}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000244}, !- Handle + {00000000-0000-0000-0052-000000000146}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000486}, !- Inlet Port + {00000000-0000-0000-0017-000000000298}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000245}, !- Handle + {00000000-0000-0000-0052-000000000147}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000115}, !- Inlet Port {00000000-0000-0000-0017-000000000134}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000246}, !- Handle + {00000000-0000-0000-0052-000000000148}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000127}, !- Inlet Port {00000000-0000-0000-0017-000000000116}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000247}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000488}, !- Inlet Port - {00000000-0000-0000-0017-000000000489}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000248}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000490}, !- Inlet Port - {00000000-0000-0000-0017-000000000491}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000249}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000494}, !- Inlet Port - {00000000-0000-0000-0017-000000000495}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000250}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000496}, !- Inlet Port - {00000000-0000-0000-0017-000000000497}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000251}, !- Handle + {00000000-0000-0000-0052-000000000149}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000482}, !- Inlet Port - {00000000-0000-0000-0017-000000000483}; !- Outlet Port + {00000000-0000-0000-0017-000000000294}, !- Inlet Port + {00000000-0000-0000-0017-000000000295}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000252}, !- Handle + {00000000-0000-0000-0052-000000000150}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000484}, !- Inlet Port - {00000000-0000-0000-0017-000000000485}; !- Outlet Port + {00000000-0000-0000-0017-000000000296}, !- Inlet Port + {00000000-0000-0000-0017-000000000297}; !- Outlet Port OS:OutputControl:ReportingTolerances, {00000000-0000-0000-0053-000000000001}, !- Handle @@ -8439,7 +5054,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0066-000000000024}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0066-000000000022}, !- Work Efficiency Schedule Name {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -8462,8 +5077,8 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0017-000000000419}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000420}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000231}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000232}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000003}, !- Handle @@ -8498,20 +5113,20 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000409}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000410}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000221}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000222}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000412}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000413}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000225}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0017-000000000416}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000417}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000228}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000229}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0057-000000000001}, !- Handle @@ -8522,7 +5137,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000069}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000039}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8536,7 +5151,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8558,7 +5173,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000151}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000069}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8572,7 +5187,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8594,7 +5209,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000163}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000081}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8608,7 +5223,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000007}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8630,21 +5245,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000168}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000086}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000395}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000397}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000207}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000398}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000401}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000210}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000213}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8659,8 +5274,7 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0058-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000239}; !- Port 1 + {00000000-0000-0000-0094-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000002}, !- Handle @@ -8668,13 +5282,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000003}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000240}; !- Port 1 + {00000000-0000-0000-0094-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000004}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000347}; !- Port 1 + {00000000-0000-0000-0094-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000005}, !- Handle @@ -8682,13 +5294,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000006}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000348}; !- Port 1 + {00000000-0000-0000-0094-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000007}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000361}; !- Port 1 + {00000000-0000-0000-0094-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000008}, !- Handle @@ -8696,13 +5306,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000009}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000362}; !- Port 1 + {00000000-0000-0000-0094-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000010}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000333}; !- Port 1 + {00000000-0000-0000-0094-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000011}, !- Handle @@ -8710,13 +5318,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000012}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000334}; !- Port 1 + {00000000-0000-0000-0094-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000013}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000295}; !- Port 1 + {00000000-0000-0000-0094-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000014}, !- Handle @@ -8724,8 +5330,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000015}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000296}; !- Port 1 + {00000000-0000-0000-0094-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000016}, !- Handle @@ -8743,8 +5348,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000019}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000375}; !- Port 1 + {00000000-0000-0000-0094-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000020}, !- Handle @@ -8752,13 +5356,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000021}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000376}; !- Port 1 + {00000000-0000-0000-0094-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000022}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000281}; !- Port 1 + {00000000-0000-0000-0094-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000023}, !- Handle @@ -8766,8 +5368,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000024}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000282}; !- Port 1 + {00000000-0000-0000-0094-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000025}, !- Handle @@ -8783,8 +5384,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000028}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000389}; !- Port 1 + {00000000-0000-0000-0094-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000029}, !- Handle @@ -8792,8 +5392,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000030}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000390}; !- Port 1 + {00000000-0000-0000-0094-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000031}, !- Handle @@ -8823,8 +5422,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000037}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000253}; !- Port 1 + {00000000-0000-0000-0094-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000038}, !- Handle @@ -8832,8 +5430,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000039}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000254}; !- Port 1 + {00000000-0000-0000-0094-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000040}, !- Handle @@ -8863,8 +5460,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000046}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000267}; !- Port 1 + {00000000-0000-0000-0094-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000047}, !- Handle @@ -8872,8 +5468,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000048}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000268}; !- Port 1 + {00000000-0000-0000-0094-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000049}, !- Handle @@ -8906,8 +5501,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0059-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000402}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000403}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000214}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000215}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 446362.499964258, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -8931,9 +5526,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000045}, !- Inlet Node Name {00000000-0000-0000-0017-000000000046}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 210100.176008404, !- Rated Pump Head {Pa} + 200710.224008028, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8964,9 +5559,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000070}, !- Inlet Node Name {00000000-0000-0000-0017-000000000071}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 245116.872009805, !- Rated Pump Head {Pa} + 236900.664009476, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.865, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8997,9 +5592,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000095}, !- Inlet Node Name {00000000-0000-0000-0017-000000000096}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 215264.649608611, !- Rated Pump Head {Pa} + 210100.176008404, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.917, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -9796,33 +6391,6 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000037}, !- Handle - Schedule Day 10, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000038}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000039}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9831,7 +6399,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000041}, !- Handle + {00000000-0000-0000-0064-000000000038}, !- Handle Schedule Day 3, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9909,9 +6477,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000042}, !- Handle + {00000000-0000-0000-0064-000000000039}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9987,25 +6555,25 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000043}, !- Handle + {00000000-0000-0000-0064-000000000040}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000044}, !- Handle + {00000000-0000-0000-0064-000000000041}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000045}, !- Handle + {00000000-0000-0000-0064-000000000042}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10014,7 +6582,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000046}, !- Handle + {00000000-0000-0000-0064-000000000043}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10023,16 +6591,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000047}, !- Handle - Schedule Day 9, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000048}, !- Handle + {00000000-0000-0000-0064-000000000044}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10041,34 +6600,16 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000049}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000050}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000051}, !- Handle + {00000000-0000-0000-0064-000000000045}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000052}, !- Handle + {00000000-0000-0000-0064-000000000046}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10077,7 +6618,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000053}, !- Handle + {00000000-0000-0000-0064-000000000047}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10086,7 +6627,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000054}, !- Handle + {00000000-0000-0000-0064-000000000048}, !- Handle satCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10164,7 +6705,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000055}, !- Handle + {00000000-0000-0000-0064-000000000049}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10242,9 +6783,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000056}, !- Handle + {00000000-0000-0000-0064-000000000050}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10320,7 +6861,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000057}, !- Handle + {00000000-0000-0000-0064-000000000051}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10398,7 +6939,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000058}, !- Handle + {00000000-0000-0000-0064-000000000052}, !- Handle sunCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10476,7 +7017,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000059}, !- Handle + {00000000-0000-0000-0064-000000000053}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10554,9 +7095,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000060}, !- Handle + {00000000-0000-0000-0064-000000000054}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10632,7 +7173,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000061}, !- Handle + {00000000-0000-0000-0064-000000000055}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10695,88 +7236,22 @@ OS:Schedule:Day, 29, !- Value Until Time 19 20, !- Hour 20 0, !- Minute 20 - 29, !- Value Until Time 20 - 21, !- Hour 21 - 0, !- Minute 21 - 29, !- Value Until Time 21 - 22, !- Hour 22 - 0, !- Minute 22 - 29, !- Value Until Time 22 - 23, !- Hour 23 - 0, !- Minute 23 - 29, !- Value Until Time 23 - 24, !- Hour 24 - 0, !- Minute 24 - 29; !- Value Until Time 24 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000062}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000063}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000064}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000065}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000066}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000067}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 + 29, !- Value Until Time 20 + 21, !- Hour 21 + 0, !- Minute 21 + 29, !- Value Until Time 21 + 22, !- Hour 22 + 0, !- Minute 22 + 29, !- Value Until Time 22 + 23, !- Hour 23 + 0, !- Minute 23 + 29, !- Value Until Time 23 + 24, !- Hour 24 + 0, !- Minute 24 + 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000068}, !- Handle + {00000000-0000-0000-0064-000000000056}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10791,7 +7266,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000069}, !- Handle + {00000000-0000-0000-0064-000000000057}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10800,7 +7275,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000070}, !- Handle + {00000000-0000-0000-0064-000000000058}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10809,7 +7284,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000071}, !- Handle + {00000000-0000-0000-0064-000000000059}, !- Handle wkdCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10887,7 +7362,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000072}, !- Handle + {00000000-0000-0000-0064-000000000060}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10965,9 +7440,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000073}, !- Handle + {00000000-0000-0000-0064-000000000061}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -11043,7 +7518,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000074}, !- Handle + {00000000-0000-0000-0064-000000000062}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -11351,9 +7826,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000023}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000042}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11370,9 +7845,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000023}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000046}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11388,82 +7863,6 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000015}, !- Handle - Schedule Rule 22, !- Name - {00000000-0000-0000-0066-000000000025}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0064-000000000047}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000016}, !- Handle - Schedule Rule 23, !- Name - {00000000-0000-0000-0066-000000000025}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0064-000000000037}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0064-000000000038}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0064-000000000039}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -11482,7 +7881,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000020}, !- Handle + {00000000-0000-0000-0065-000000000016}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -11501,7 +7900,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000021}, !- Handle + {00000000-0000-0000-0065-000000000017}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order @@ -11520,7 +7919,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000022}, !- Handle + {00000000-0000-0000-0065-000000000018}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -11539,7 +7938,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000023}, !- Handle + {00000000-0000-0000-0065-000000000019}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -11558,7 +7957,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000024}, !- Handle + {00000000-0000-0000-0065-000000000020}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -11577,7 +7976,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000025}, !- Handle + {00000000-0000-0000-0065-000000000021}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -11596,11 +7995,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000026}, !- Handle + {00000000-0000-0000-0065-000000000022}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000048}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11615,11 +8014,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000027}, !- Handle + {00000000-0000-0000-0065-000000000023}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000050}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11634,11 +8033,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000028}, !- Handle + {00000000-0000-0000-0065-000000000024}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000058}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000052}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11653,11 +8052,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000029}, !- Handle + {00000000-0000-0000-0065-000000000025}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000060}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11672,11 +8071,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000030}, !- Handle + {00000000-0000-0000-0065-000000000026}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000071}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000059}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11691,11 +8090,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000031}, !- Handle + {00000000-0000-0000-0065-000000000027}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000073}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000061}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11725,13 +8124,13 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000003}, !- Handle CHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000038}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000042}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000039}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000005}, !- Handle @@ -11810,74 +8209,46 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000043}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000040}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000020}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000049}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000021}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000050}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000022}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000051}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000023}, !- Handle + {00000000-0000-0000-0066-000000000021}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000052}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000024}, !- Handle + {00000000-0000-0000-0066-000000000022}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000053}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000025}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000062}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000063}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000064}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000026}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000065}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000066}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000067}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000027}, !- Handle + {00000000-0000-0000-0066-000000000023}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000068}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000069}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000070}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000056}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000057}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000058}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0067-000000000001}, !- Handle @@ -11958,39 +8329,11 @@ OS:SetpointManager:OutdoorAirPretreat, 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0052-000000000242}, !- Reference Setpoint Node Name - {00000000-0000-0000-0052-000000000242}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0052-000000000243}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0052-000000000225}, !- Return Air Stream Node Name - {00000000-0000-0000-0052-000000000251}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000002}, !- Handle - Setpoint Manager Outdoor Air Pretreat 2, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0052-000000000228}, !- Reference Setpoint Node Name - {00000000-0000-0000-0052-000000000228}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0052-000000000229}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0052-000000000223}, !- Return Air Stream Node Name - {00000000-0000-0000-0052-000000000247}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000003}, !- Handle - Setpoint Manager Outdoor Air Pretreat 3, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0052-000000000235}, !- Reference Setpoint Node Name - {00000000-0000-0000-0052-000000000235}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0052-000000000236}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0052-000000000224}, !- Return Air Stream Node Name - {00000000-0000-0000-0052-000000000249}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000144}, !- Reference Setpoint Node Name + {00000000-0000-0000-0052-000000000144}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0052-000000000145}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0052-000000000141}, !- Return Air Stream Node Name + {00000000-0000-0000-0052-000000000149}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirReset, {00000000-0000-0000-0069-000000000001}, !- Handle @@ -12000,7 +8343,7 @@ OS:SetpointManager:OutdoorAirReset, -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0052-000000000163}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000081}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -12012,42 +8355,28 @@ OS:SetpointManager:Scheduled, Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000019}, !- Schedule Name - {00000000-0000-0000-0052-000000000168}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000086}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000003}, !- Schedule Name - {00000000-0000-0000-0052-000000000069}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000039}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000004}, !- Schedule Name - {00000000-0000-0000-0052-000000000151}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000069}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000022}, !- Schedule Name - {00000000-0000-0000-0052-000000000246}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name - Temperature, !- Control Variable {00000000-0000-0000-0066-000000000020}, !- Schedule Name - {00000000-0000-0000-0052-000000000232}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000021}, !- Schedule Name - {00000000-0000-0000-0052-000000000239}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000148}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0071-000000000001}, !- Handle @@ -12200,47 +8529,6 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0081-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0081-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -12280,60 +8568,19 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity -OS:Sizing:System, - {00000000-0000-0000-0081-000000000003}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - OS:Sizing:Zone, {00000000-0000-0000-0082-000000000001}, !- Handle {00000000-0000-0000-0094-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12359,16 +8606,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000002}, !- Handle {00000000-0000-0000-0094-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12394,16 +8641,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000003}, !- Handle {00000000-0000-0000-0094-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12429,16 +8676,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000004}, !- Handle {00000000-0000-0000-0094-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12464,16 +8711,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000005}, !- Handle {00000000-0000-0000-0094-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12534,16 +8781,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000007}, !- Handle {00000000-0000-0000-0094-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12569,16 +8816,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000008}, !- Handle {00000000-0000-0000-0094-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12639,16 +8886,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000010}, !- Handle {00000000-0000-0000-0094-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12744,16 +8991,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000013}, !- Handle {00000000-0000-0000-0094-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12849,16 +9096,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000016}, !- Handle {00000000-0000-0000-0094-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -17079,7 +13326,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0066-000000000023}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0066-000000000021}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 8.03531559151522, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -17089,8 +13336,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000405}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000406}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000217}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000218}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -17113,8 +13360,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000001}, !- Handle Core_bottom WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000422}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000423}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000234}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000235}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17127,8 +13374,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000002}, !- Handle Core_mid WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000426}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000427}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000238}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000239}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17141,8 +13388,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000003}, !- Handle Core_top WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000430}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000431}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000242}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000243}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17155,8 +13402,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000434}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000435}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000246}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000247}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17169,8 +13416,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000438}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000439}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000250}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000251}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17183,8 +13430,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000442}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000443}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000254}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000255}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17197,8 +13444,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000446}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000447}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000258}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000259}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17211,8 +13458,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000450}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000451}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000262}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000263}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17225,8 +13472,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000454}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000455}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000266}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000267}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17239,8 +13486,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000458}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000459}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000270}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000271}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17253,8 +13500,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000462}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000463}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000274}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000275}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17267,8 +13514,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000466}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000467}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000278}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000279}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17281,8 +13528,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000470}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000471}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000282}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000283}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17295,8 +13542,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000474}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000475}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000286}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000287}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17309,8 +13556,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000478}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000479}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000290}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000291}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17603,87 +13850,27 @@ OS:ZoneHVAC:Baseboard:Convective:Water, OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 10, !- Name + Zone HVAC Baseboard Convective Water 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000002}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000003}, !- Handle - Zone HVAC Baseboard Convective Water 11, !- Name + Zone HVAC Baseboard Convective Water 3, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000003}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000004}, !- Handle - Zone HVAC Baseboard Convective Water 12, !- Name + Zone HVAC Baseboard Convective Water 4, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000004}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000005}, !- Handle - Zone HVAC Baseboard Convective Water 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000005}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000006}, !- Handle - Zone HVAC Baseboard Convective Water 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000006}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000007}, !- Handle - Zone HVAC Baseboard Convective Water 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000007}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000008}, !- Handle - Zone HVAC Baseboard Convective Water 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000008}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000009}, !- Handle - Zone HVAC Baseboard Convective Water 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000009}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000010}, !- Handle - Zone HVAC Baseboard Convective Water 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000010}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000011}, !- Handle Zone HVAC Baseboard Convective Water 5, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000011}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000012}, !- Handle - Zone HVAC Baseboard Convective Water 6, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000012}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000013}, !- Handle - Zone HVAC Baseboard Convective Water 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000013}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000014}, !- Handle - Zone HVAC Baseboard Convective Water 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000014}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000015}, !- Handle - Zone HVAC Baseboard Convective Water 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000015}; !- Heating Coil Name + {00000000-0000-0000-0016-000000000005}; !- Heating Coil Name OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000001}, !- Handle @@ -17708,12 +13895,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000009}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17724,12 +13911,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000008}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17740,12 +13927,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000010}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17756,12 +13943,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000011}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17787,159 +13974,59 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000012}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 5fc2d66a77..b981454815 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -4716,41 +4716,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {56f278f7-3a28-4f04-b9f9-5856970e73ee}<23.9 && {56f278f7-3a28-4f04-b9f9-5856970e73ee}>1.7, !- Program Line 1 - SET {a28aced9-3208-4ad8-9fc4-93d20e635b41} = 29.4, !- Program Line 2 - SET {b6a5fd61-bd2d-4363-bd15-1112e4f756b6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {56f278f7-3a28-4f04-b9f9-5856970e73ee}<23.9 && {56f278f7-3a28-4f04-b9f9-5856970e73ee}>1.7, !- Program Line 4 - SET {a28aced9-3208-4ad8-9fc4-93d20e635b41} = 29.4, !- Program Line 5 - SET {b6a5fd61-bd2d-4363-bd15-1112e4f756b6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {56f278f7-3a28-4f04-b9f9-5856970e73ee}<23.9 && {56f278f7-3a28-4f04-b9f9-5856970e73ee}>1.7, !- Program Line 7 - SET {a28aced9-3208-4ad8-9fc4-93d20e635b41} = 29.4, !- Program Line 8 - SET {b6a5fd61-bd2d-4363-bd15-1112e4f756b6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {56f278f7-3a28-4f04-b9f9-5856970e73ee}<23.9 && {56f278f7-3a28-4f04-b9f9-5856970e73ee}>1.7, !- Program Line 10 - SET {a28aced9-3208-4ad8-9fc4-93d20e635b41} = 29.4, !- Program Line 11 - SET {b6a5fd61-bd2d-4363-bd15-1112e4f756b6} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {32b668c4-a0e5-478d-9714-30c883eadae5}<23.9 && {32b668c4-a0e5-478d-9714-30c883eadae5}>1.7, !- Program Line 1 + SET {cb50e8f3-f39e-4073-8764-89fc3173bac5} = 29.4, !- Program Line 2 + SET {9d1ae8ec-e4f3-417c-8df8-085ea88f7299} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {32b668c4-a0e5-478d-9714-30c883eadae5}<23.9 && {32b668c4-a0e5-478d-9714-30c883eadae5}>1.7, !- Program Line 4 + SET {cb50e8f3-f39e-4073-8764-89fc3173bac5} = 29.4, !- Program Line 5 + SET {9d1ae8ec-e4f3-417c-8df8-085ea88f7299} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {32b668c4-a0e5-478d-9714-30c883eadae5}<23.9 && {32b668c4-a0e5-478d-9714-30c883eadae5}>1.7, !- Program Line 7 + SET {cb50e8f3-f39e-4073-8764-89fc3173bac5} = 29.4, !- Program Line 8 + SET {9d1ae8ec-e4f3-417c-8df8-085ea88f7299} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {32b668c4-a0e5-478d-9714-30c883eadae5}<23.9 && {32b668c4-a0e5-478d-9714-30c883eadae5}>1.7, !- Program Line 10 + SET {cb50e8f3-f39e-4073-8764-89fc3173bac5} = 29.4, !- Program Line 11 + SET {9d1ae8ec-e4f3-417c-8df8-085ea88f7299} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a28aced9-3208-4ad8-9fc4-93d20e635b41} = NULL, !- Program Line 14 - SET {b6a5fd61-bd2d-4363-bd15-1112e4f756b6} = NULL, !- Program Line 15 + SET {cb50e8f3-f39e-4073-8764-89fc3173bac5} = NULL, !- Program Line 14 + SET {9d1ae8ec-e4f3-417c-8df8-085ea88f7299} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {45814bdb-9251-493a-9b4a-619cac9d8793}<23.9 && {45814bdb-9251-493a-9b4a-619cac9d8793}>1.7, !- Program Line 1 - SET {d97694e3-9c76-47e8-85a0-ff220ef2b858} = 29.4, !- Program Line 2 - SET {226a65a7-9ec1-475d-b258-958f1d1e1794} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {45814bdb-9251-493a-9b4a-619cac9d8793}<23.9 && {45814bdb-9251-493a-9b4a-619cac9d8793}>1.7, !- Program Line 4 - SET {d97694e3-9c76-47e8-85a0-ff220ef2b858} = 29.4, !- Program Line 5 - SET {226a65a7-9ec1-475d-b258-958f1d1e1794} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {45814bdb-9251-493a-9b4a-619cac9d8793}<23.9 && {45814bdb-9251-493a-9b4a-619cac9d8793}>1.7, !- Program Line 7 - SET {d97694e3-9c76-47e8-85a0-ff220ef2b858} = 29.4, !- Program Line 8 - SET {226a65a7-9ec1-475d-b258-958f1d1e1794} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {45814bdb-9251-493a-9b4a-619cac9d8793}<23.9 && {45814bdb-9251-493a-9b4a-619cac9d8793}>1.7, !- Program Line 10 - SET {d97694e3-9c76-47e8-85a0-ff220ef2b858} = 29.4, !- Program Line 11 - SET {226a65a7-9ec1-475d-b258-958f1d1e1794} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c29c99ff-ce39-403c-97ab-4bcf4dd6fb69}<23.9 && {c29c99ff-ce39-403c-97ab-4bcf4dd6fb69}>1.7, !- Program Line 1 + SET {d59599d6-1b1b-447b-ac92-6985cd60b5df} = 29.4, !- Program Line 2 + SET {60b8e3ec-2ae7-49e5-ac19-cc49ea08cd44} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c29c99ff-ce39-403c-97ab-4bcf4dd6fb69}<23.9 && {c29c99ff-ce39-403c-97ab-4bcf4dd6fb69}>1.7, !- Program Line 4 + SET {d59599d6-1b1b-447b-ac92-6985cd60b5df} = 29.4, !- Program Line 5 + SET {60b8e3ec-2ae7-49e5-ac19-cc49ea08cd44} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c29c99ff-ce39-403c-97ab-4bcf4dd6fb69}<23.9 && {c29c99ff-ce39-403c-97ab-4bcf4dd6fb69}>1.7, !- Program Line 7 + SET {d59599d6-1b1b-447b-ac92-6985cd60b5df} = 29.4, !- Program Line 8 + SET {60b8e3ec-2ae7-49e5-ac19-cc49ea08cd44} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c29c99ff-ce39-403c-97ab-4bcf4dd6fb69}<23.9 && {c29c99ff-ce39-403c-97ab-4bcf4dd6fb69}>1.7, !- Program Line 10 + SET {d59599d6-1b1b-447b-ac92-6985cd60b5df} = 29.4, !- Program Line 11 + SET {60b8e3ec-2ae7-49e5-ac19-cc49ea08cd44} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {d97694e3-9c76-47e8-85a0-ff220ef2b858} = NULL, !- Program Line 14 - SET {226a65a7-9ec1-475d-b258-958f1d1e1794} = NULL, !- Program Line 15 + SET {d59599d6-1b1b-447b-ac92-6985cd60b5df} = NULL, !- Program Line 14 + SET {60b8e3ec-2ae7-49e5-ac19-cc49ea08cd44} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 46f770f39f..0f3c920a88 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -4786,41 +4786,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {60460fdb-6b02-4b6b-864d-8b67f037f698}<23.9 && {60460fdb-6b02-4b6b-864d-8b67f037f698}>1.7, !- Program Line 1 - SET {4040667e-9bc5-4dc7-ac5b-4002e3ccb5f2} = 29.4, !- Program Line 2 - SET {bda2a2a1-81a1-4d14-8c8e-bc1a334b4d7b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {60460fdb-6b02-4b6b-864d-8b67f037f698}<23.9 && {60460fdb-6b02-4b6b-864d-8b67f037f698}>1.7, !- Program Line 4 - SET {4040667e-9bc5-4dc7-ac5b-4002e3ccb5f2} = 29.4, !- Program Line 5 - SET {bda2a2a1-81a1-4d14-8c8e-bc1a334b4d7b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {60460fdb-6b02-4b6b-864d-8b67f037f698}<23.9 && {60460fdb-6b02-4b6b-864d-8b67f037f698}>1.7, !- Program Line 7 - SET {4040667e-9bc5-4dc7-ac5b-4002e3ccb5f2} = 29.4, !- Program Line 8 - SET {bda2a2a1-81a1-4d14-8c8e-bc1a334b4d7b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {60460fdb-6b02-4b6b-864d-8b67f037f698}<23.9 && {60460fdb-6b02-4b6b-864d-8b67f037f698}>1.7, !- Program Line 10 - SET {4040667e-9bc5-4dc7-ac5b-4002e3ccb5f2} = 29.4, !- Program Line 11 - SET {bda2a2a1-81a1-4d14-8c8e-bc1a334b4d7b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {092134d1-2856-4a92-9966-6350d46cef36}<23.9 && {092134d1-2856-4a92-9966-6350d46cef36}>1.7, !- Program Line 1 + SET {329a4f19-4777-4514-84e6-eb2a93c561dd} = 29.4, !- Program Line 2 + SET {3cb76939-ba23-4658-8ca4-3a49f8615163} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {092134d1-2856-4a92-9966-6350d46cef36}<23.9 && {092134d1-2856-4a92-9966-6350d46cef36}>1.7, !- Program Line 4 + SET {329a4f19-4777-4514-84e6-eb2a93c561dd} = 29.4, !- Program Line 5 + SET {3cb76939-ba23-4658-8ca4-3a49f8615163} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {092134d1-2856-4a92-9966-6350d46cef36}<23.9 && {092134d1-2856-4a92-9966-6350d46cef36}>1.7, !- Program Line 7 + SET {329a4f19-4777-4514-84e6-eb2a93c561dd} = 29.4, !- Program Line 8 + SET {3cb76939-ba23-4658-8ca4-3a49f8615163} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {092134d1-2856-4a92-9966-6350d46cef36}<23.9 && {092134d1-2856-4a92-9966-6350d46cef36}>1.7, !- Program Line 10 + SET {329a4f19-4777-4514-84e6-eb2a93c561dd} = 29.4, !- Program Line 11 + SET {3cb76939-ba23-4658-8ca4-3a49f8615163} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4040667e-9bc5-4dc7-ac5b-4002e3ccb5f2} = NULL, !- Program Line 14 - SET {bda2a2a1-81a1-4d14-8c8e-bc1a334b4d7b} = NULL, !- Program Line 15 + SET {329a4f19-4777-4514-84e6-eb2a93c561dd} = NULL, !- Program Line 14 + SET {3cb76939-ba23-4658-8ca4-3a49f8615163} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d29b6f36-c6df-469b-89de-f5cc87dc67fa}<23.9 && {d29b6f36-c6df-469b-89de-f5cc87dc67fa}>1.7, !- Program Line 1 - SET {c5398adc-0a22-42ff-98af-f62ca4399340} = 29.4, !- Program Line 2 - SET {858ecc22-b20b-41ad-8372-0c7c423cd2a0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d29b6f36-c6df-469b-89de-f5cc87dc67fa}<23.9 && {d29b6f36-c6df-469b-89de-f5cc87dc67fa}>1.7, !- Program Line 4 - SET {c5398adc-0a22-42ff-98af-f62ca4399340} = 29.4, !- Program Line 5 - SET {858ecc22-b20b-41ad-8372-0c7c423cd2a0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d29b6f36-c6df-469b-89de-f5cc87dc67fa}<23.9 && {d29b6f36-c6df-469b-89de-f5cc87dc67fa}>1.7, !- Program Line 7 - SET {c5398adc-0a22-42ff-98af-f62ca4399340} = 29.4, !- Program Line 8 - SET {858ecc22-b20b-41ad-8372-0c7c423cd2a0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d29b6f36-c6df-469b-89de-f5cc87dc67fa}<23.9 && {d29b6f36-c6df-469b-89de-f5cc87dc67fa}>1.7, !- Program Line 10 - SET {c5398adc-0a22-42ff-98af-f62ca4399340} = 29.4, !- Program Line 11 - SET {858ecc22-b20b-41ad-8372-0c7c423cd2a0} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bf997a21-64dd-4888-b957-cd3e8ea9fecf}<23.9 && {bf997a21-64dd-4888-b957-cd3e8ea9fecf}>1.7, !- Program Line 1 + SET {e8fdf9dc-6c96-4c7d-8098-f1dfcb3554ff} = 29.4, !- Program Line 2 + SET {6b94ac42-f4d1-4dd8-b771-cdf6e54eeeea} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bf997a21-64dd-4888-b957-cd3e8ea9fecf}<23.9 && {bf997a21-64dd-4888-b957-cd3e8ea9fecf}>1.7, !- Program Line 4 + SET {e8fdf9dc-6c96-4c7d-8098-f1dfcb3554ff} = 29.4, !- Program Line 5 + SET {6b94ac42-f4d1-4dd8-b771-cdf6e54eeeea} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bf997a21-64dd-4888-b957-cd3e8ea9fecf}<23.9 && {bf997a21-64dd-4888-b957-cd3e8ea9fecf}>1.7, !- Program Line 7 + SET {e8fdf9dc-6c96-4c7d-8098-f1dfcb3554ff} = 29.4, !- Program Line 8 + SET {6b94ac42-f4d1-4dd8-b771-cdf6e54eeeea} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bf997a21-64dd-4888-b957-cd3e8ea9fecf}<23.9 && {bf997a21-64dd-4888-b957-cd3e8ea9fecf}>1.7, !- Program Line 10 + SET {e8fdf9dc-6c96-4c7d-8098-f1dfcb3554ff} = 29.4, !- Program Line 11 + SET {6b94ac42-f4d1-4dd8-b771-cdf6e54eeeea} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c5398adc-0a22-42ff-98af-f62ca4399340} = NULL, !- Program Line 14 - SET {858ecc22-b20b-41ad-8372-0c7c423cd2a0} = NULL, !- Program Line 15 + SET {e8fdf9dc-6c96-4c7d-8098-f1dfcb3554ff} = NULL, !- Program Line 14 + SET {6b94ac42-f4d1-4dd8-b771-cdf6e54eeeea} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2020-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2020-Electricity-CAN_AB_Calgary.osm index fb4e06bb39..5e0573a59c 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2020-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2020-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0064-000000000027}, !- Object Name + {00000000-0000-0000-0064-000000000023}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.066608825093468, !- Feature Value 1 @@ -16,94 +16,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0064-000000000025}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.066608825093468, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0064-000000000026}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.066608825093468, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0011-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0001-000000000003}, !- Handle {00000000-0000-0000-0011-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0064-000000000025}, !- Availability Schedule - {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0015-000000000139}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0015-000000000142}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0015-000000000141}, !- Demand Side Inlet Node A - {00000000-0000-0000-0015-000000000140}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0064-000000000026}, !- Availability Schedule - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0015-000000000189}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0015-000000000192}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0015-000000000191}, !- Demand Side Inlet Node A - {00000000-0000-0000-0015-000000000190}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0064-000000000027}, !- Availability Schedule - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0064-000000000023}, !- Availability Schedule + {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -127,32 +51,10 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0015-000000000104}, !- Mixed Air Node Name - {00000000-0000-0000-0015-000000000327}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0015-000000000328}, !- Relief Air Stream Node Name + {00000000-0000-0000-0015-000000000227}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0015-000000000228}, !- Relief Air Stream Node Name {00000000-0000-0000-0015-000000000108}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000002}, !- Handle - Air Loop HVAC Outdoor Air System 2, !- Name - {00000000-0000-0000-0020-000000000002}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0015-000000000154}, !- Mixed Air Node Name - {00000000-0000-0000-0015-000000000333}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0015-000000000334}, !- Relief Air Stream Node Name - {00000000-0000-0000-0015-000000000158}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0020-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0015-000000000204}, !- Mixed Air Node Name - {00000000-0000-0000-0015-000000000339}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0015-000000000340}, !- Relief Air Stream Node Name - {00000000-0000-0000-0015-000000000208}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -163,26 +65,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0015-000000000129}, !- Inlet Node Name 4 {00000000-0000-0000-0015-000000000135}; !- Inlet Node Name 5 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000002}, !- Handle - Air Loop HVAC Zone Mixer 2, !- Name - {00000000-0000-0000-0015-000000000144}, !- Outlet Node Name - {00000000-0000-0000-0015-000000000161}, !- Inlet Node Name 1 - {00000000-0000-0000-0015-000000000167}, !- Inlet Node Name 2 - {00000000-0000-0000-0015-000000000173}, !- Inlet Node Name 3 - {00000000-0000-0000-0015-000000000179}, !- Inlet Node Name 4 - {00000000-0000-0000-0015-000000000185}; !- Inlet Node Name 5 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0015-000000000194}, !- Outlet Node Name - {00000000-0000-0000-0015-000000000211}, !- Inlet Node Name 1 - {00000000-0000-0000-0015-000000000217}, !- Inlet Node Name 2 - {00000000-0000-0000-0015-000000000223}, !- Inlet Node Name 3 - {00000000-0000-0000-0015-000000000229}, !- Inlet Node Name 4 - {00000000-0000-0000-0015-000000000235}; !- Inlet Node Name 5 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -193,26 +75,6 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0015-000000000130}, !- Outlet Node Name 4 {00000000-0000-0000-0015-000000000136}; !- Outlet Node Name 5 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000002}, !- Handle - Air Loop HVAC Zone Splitter 2, !- Name - {00000000-0000-0000-0015-000000000143}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000162}, !- Outlet Node Name 1 - {00000000-0000-0000-0015-000000000168}, !- Outlet Node Name 2 - {00000000-0000-0000-0015-000000000174}, !- Outlet Node Name 3 - {00000000-0000-0000-0015-000000000180}, !- Outlet Node Name 4 - {00000000-0000-0000-0015-000000000186}; !- Outlet Node Name 5 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0015-000000000193}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000212}, !- Outlet Node Name 1 - {00000000-0000-0000-0015-000000000218}, !- Outlet Node Name 2 - {00000000-0000-0000-0015-000000000224}, !- Outlet Node Name 3 - {00000000-0000-0000-0015-000000000230}, !- Outlet Node Name 4 - {00000000-0000-0000-0015-000000000236}; !- Outlet Node Name 5 - OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -223,7 +85,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000011}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000114}, !- Air Outlet Node Name @@ -236,132 +98,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000187}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000188}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000213}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000214}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000219}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000220}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000225}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000226}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000231}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000009}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000232}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000237}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000010}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000238}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000119}, !- Air Inlet Node Name @@ -370,7 +106,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000012}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000120}, !- Air Outlet Node Name @@ -382,7 +118,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000009}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000125}, !- Air Inlet Node Name @@ -391,7 +127,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000013}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000126}, !- Air Outlet Node Name @@ -403,7 +139,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000010}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000131}, !- Air Inlet Node Name @@ -412,7 +148,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000014}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000005}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000132}, !- Air Outlet Node Name @@ -424,7 +160,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000011}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000137}, !- Air Inlet Node Name @@ -433,7 +169,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000015}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000138}, !- Air Outlet Node Name @@ -444,90 +180,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000163}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000017}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000164}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000169}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000018}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000170}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000175}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000176}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0015-000000000181}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0015-000000000182}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -542,59 +194,21 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0049-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0049-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0061-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0061-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0049-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0049-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000003}, !- Handle Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000004}, !- Handle + {00000000-0000-0000-0008-000000000002}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000005}, !- Handle + {00000000-0000-0000-0008-000000000003}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000006}, !- Handle + {00000000-0000-0000-0008-000000000004}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Building, @@ -646,8 +260,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0011-000000000001}, !- Handle - Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton, !- Name - 227561.829243193, !- Reference Capacity {W} + Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton, !- Name + 90258.9344239522, !- Reference Capacity {W} 4.51476251604621, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -690,9 +304,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0024-000000000007}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0024-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0024-000000000005}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0024-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -743,42 +357,6 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0013-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0015-000000000146}, !- Water Inlet Node Name - {00000000-0000-0000-0015-000000000147}, !- Water Outlet Node Name - {00000000-0000-0000-0015-000000000155}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000152}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0013-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0015-000000000196}, !- Water Inlet Node Name - {00000000-0000-0000-0015-000000000197}, !- Water Outlet Node Name - {00000000-0000-0000-0015-000000000205}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000202}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000001}, !- Handle Coil Heating Electric 1, !- Name @@ -790,154 +368,46 @@ OS:Coil:Heating:Electric, OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000002}, !- Handle - Coil Heating Electric 10, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 10816.4048194885, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000003}, !- Handle - Coil Heating Electric 11, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 5886.98766231537, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000004}, !- Handle - Coil Heating Electric 12, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11633.1632137299, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000005}, !- Handle - Coil Heating Electric 13, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0015-000000000203}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000200}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000006}, !- Handle - Coil Heating Electric 14, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 20259.9005699158, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000007}, !- Handle - Coil Heating Electric 15, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 13369.1064834595, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000008}, !- Handle - Coil Heating Electric 16, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11202.1511077881, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000009}, !- Handle - Coil Heating Electric 17, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 6669.87683773041, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000010}, !- Handle - Coil Heating Electric 18, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 12228.19647789, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000011}, !- Handle Coil Heating Electric 2, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 11816.5915489197, !- Nominal Capacity {W} + 22253.7697792053, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000012}, !- Handle + {00000000-0000-0000-0014-000000000003}, !- Handle Coil Heating Electric 3, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 10983.2056045532, !- Nominal Capacity {W} + 13966.3979530334, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000013}, !- Handle + {00000000-0000-0000-0014-000000000004}, !- Handle Coil Heating Electric 4, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 9967.39811897278, !- Nominal Capacity {W} + 11994.1851139069, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000014}, !- Handle + {00000000-0000-0000-0014-000000000005}, !- Handle Coil Heating Electric 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 5375.52763223648, !- Nominal Capacity {W} + 6781.3985824585, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000015}, !- Handle + {00000000-0000-0000-0014-000000000006}, !- Handle Coil Heating Electric 6, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 11305.0475120544, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000016}, !- Handle - Coil Heating Electric 7, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0015-000000000153}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000150}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000017}, !- Handle - Coil Heating Electric 8, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 17045.9644317627, !- Nominal Capacity {W} - , !- Air Inlet Node Name - ; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000018}, !- Handle - Coil Heating Electric 9, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - , !- Efficiency - 12589.4295215607, !- Nominal Capacity {W} + 13260.2620124817, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name @@ -1071,35 +541,35 @@ OS:Connection, {00000000-0000-0000-0015-000000000019}, !- Handle {00000000-0000-0000-0091-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000025}, !- Target Object + {00000000-0000-0000-0050-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000020}, !- Handle {00000000-0000-0000-0091-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000035}, !- Target Object + {00000000-0000-0000-0050-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000021}, !- Handle {00000000-0000-0000-0091-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000027}, !- Target Object + {00000000-0000-0000-0050-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000022}, !- Handle {00000000-0000-0000-0091-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000029}, !- Target Object + {00000000-0000-0000-0050-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000023}, !- Handle {00000000-0000-0000-0091-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000017}, !- Target Object + {00000000-0000-0000-0050-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1113,14 +583,14 @@ OS:Connection, {00000000-0000-0000-0015-000000000025}, !- Handle {00000000-0000-0000-0091-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000031}, !- Target Object + {00000000-0000-0000-0050-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000026}, !- Handle {00000000-0000-0000-0091-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000019}, !- Target Object + {00000000-0000-0000-0050-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1134,7 +604,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000028}, !- Handle {00000000-0000-0000-0091-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000033}, !- Target Object + {00000000-0000-0000-0050-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1155,7 +625,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000031}, !- Handle {00000000-0000-0000-0091-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000021}, !- Target Object + {00000000-0000-0000-0050-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1176,7 +646,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000034}, !- Handle {00000000-0000-0000-0091-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000023}, !- Target Object + {00000000-0000-0000-0050-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1197,19 +667,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000037}, !- Handle {00000000-0000-0000-0055-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000068}, !- Target Object + {00000000-0000-0000-0050-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000038}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000137}, !- Target Object + {00000000-0000-0000-0050-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000039}, !- Handle - {00000000-0000-0000-0050-000000000069}, !- Source Object + {00000000-0000-0000-0050-000000000039}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000001}, !- Target Object 15; !- Inlet Port @@ -1218,12 +688,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000040}, !- Handle {00000000-0000-0000-0055-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000066}, !- Target Object + {00000000-0000-0000-0050-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000041}, !- Handle - {00000000-0000-0000-0050-000000000066}, !- Source Object + {00000000-0000-0000-0050-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000002}, !- Target Object 2; !- Inlet Port @@ -1232,26 +702,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000042}, !- Handle {00000000-0000-0000-0017-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000070}, !- Target Object + {00000000-0000-0000-0050-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000043}, !- Handle {00000000-0000-0000-0016-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000067}, !- Target Object + {00000000-0000-0000-0050-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000044}, !- Handle - {00000000-0000-0000-0050-000000000067}, !- Source Object + {00000000-0000-0000-0050-000000000037}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000045}, !- Handle - {00000000-0000-0000-0050-000000000068}, !- Source Object + {00000000-0000-0000-0050-000000000038}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000001}, !- Target Object 2; !- Inlet Port @@ -1260,19 +730,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000046}, !- Handle {00000000-0000-0000-0058-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000139}, !- Target Object + {00000000-0000-0000-0050-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000047}, !- Handle - {00000000-0000-0000-0050-000000000139}, !- Source Object + {00000000-0000-0000-0050-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000048}, !- Handle - {00000000-0000-0000-0050-000000000137}, !- Source Object + {00000000-0000-0000-0050-000000000099}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000001}, !- Target Object 15; !- Inlet Port @@ -1281,12 +751,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000049}, !- Handle {00000000-0000-0000-0011-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000138}, !- Target Object + {00000000-0000-0000-0050-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000050}, !- Handle - {00000000-0000-0000-0050-000000000138}, !- Source Object + {00000000-0000-0000-0050-000000000100}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 3; !- Inlet Port @@ -1295,12 +765,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000051}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000143}, !- Target Object + {00000000-0000-0000-0050-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000052}, !- Handle - {00000000-0000-0000-0050-000000000143}, !- Source Object + {00000000-0000-0000-0050-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000002}, !- Target Object 15; !- Inlet Port @@ -1309,12 +779,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000053}, !- Handle {00000000-0000-0000-0011-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000144}, !- Target Object + {00000000-0000-0000-0050-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000054}, !- Handle - {00000000-0000-0000-0050-000000000144}, !- Source Object + {00000000-0000-0000-0050-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 4; !- Inlet Port @@ -1323,12 +793,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000055}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000123}, !- Target Object + {00000000-0000-0000-0050-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000056}, !- Handle - {00000000-0000-0000-0050-000000000123}, !- Source Object + {00000000-0000-0000-0050-000000000085}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000001}, !- Target Object 2; !- Inlet Port @@ -1337,12 +807,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000057}, !- Handle {00000000-0000-0000-0054-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000124}, !- Target Object + {00000000-0000-0000-0050-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000058}, !- Handle - {00000000-0000-0000-0050-000000000124}, !- Source Object + {00000000-0000-0000-0050-000000000086}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port @@ -1351,12 +821,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000059}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000125}, !- Target Object + {00000000-0000-0000-0050-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000060}, !- Handle - {00000000-0000-0000-0050-000000000125}, !- Source Object + {00000000-0000-0000-0050-000000000087}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000002}, !- Target Object 2; !- Inlet Port @@ -1365,26 +835,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000061}, !- Handle {00000000-0000-0000-0054-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000069}, !- Target Object + {00000000-0000-0000-0050-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000062}, !- Handle {00000000-0000-0000-0055-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000084}, !- Target Object + {00000000-0000-0000-0050-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000063}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000086}, !- Target Object + {00000000-0000-0000-0050-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000064}, !- Handle - {00000000-0000-0000-0050-000000000085}, !- Source Object + {00000000-0000-0000-0050-000000000047}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000002}, !- Target Object 15; !- Inlet Port @@ -1393,12 +863,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000065}, !- Handle {00000000-0000-0000-0055-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000082}, !- Target Object + {00000000-0000-0000-0050-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000066}, !- Handle - {00000000-0000-0000-0050-000000000082}, !- Source Object + {00000000-0000-0000-0050-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000004}, !- Target Object 2; !- Inlet Port @@ -1407,26 +877,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000067}, !- Handle {00000000-0000-0000-0017-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000135}, !- Target Object + {00000000-0000-0000-0050-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000068}, !- Handle {00000000-0000-0000-0016-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000083}, !- Target Object + {00000000-0000-0000-0050-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000069}, !- Handle - {00000000-0000-0000-0050-000000000083}, !- Source Object + {00000000-0000-0000-0050-000000000045}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000070}, !- Handle - {00000000-0000-0000-0050-000000000084}, !- Source Object + {00000000-0000-0000-0050-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000002}, !- Target Object 2; !- Inlet Port @@ -1435,19 +905,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000071}, !- Handle {00000000-0000-0000-0058-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000140}, !- Target Object + {00000000-0000-0000-0050-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000072}, !- Handle - {00000000-0000-0000-0050-000000000140}, !- Source Object + {00000000-0000-0000-0050-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000073}, !- Handle - {00000000-0000-0000-0050-000000000086}, !- Source Object + {00000000-0000-0000-0050-000000000048}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0023-000000000001}, !- Target Object 2; !- Inlet Port @@ -1456,12 +926,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000074}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000087}, !- Target Object + {00000000-0000-0000-0050-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000075}, !- Handle - {00000000-0000-0000-0050-000000000087}, !- Source Object + {00000000-0000-0000-0050-000000000049}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000003}, !- Target Object 3; !- Inlet Port @@ -1470,12 +940,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000076}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000126}, !- Target Object + {00000000-0000-0000-0050-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000077}, !- Handle - {00000000-0000-0000-0050-000000000126}, !- Source Object + {00000000-0000-0000-0050-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000003}, !- Target Object 2; !- Inlet Port @@ -1484,12 +954,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000078}, !- Handle {00000000-0000-0000-0054-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000127}, !- Target Object + {00000000-0000-0000-0050-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000079}, !- Handle - {00000000-0000-0000-0050-000000000127}, !- Source Object + {00000000-0000-0000-0050-000000000089}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000003}, !- Target Object 4; !- Inlet Port @@ -1498,1841 +968,1057 @@ OS:Connection, {00000000-0000-0000-0015-000000000080}, !- Handle {00000000-0000-0000-0016-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000128}, !- Target Object + {00000000-0000-0000-0050-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000081}, !- Handle - {00000000-0000-0000-0050-000000000128}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000082}, !- Handle - {00000000-0000-0000-0054-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000085}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000083}, !- Handle - {00000000-0000-0000-0050-000000000135}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0011-000000000001}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000084}, !- Handle - {00000000-0000-0000-0011-000000000001}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0050-000000000136}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000085}, !- Handle - {00000000-0000-0000-0050-000000000136}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000086}, !- Handle - {00000000-0000-0000-0017-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000141}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000087}, !- Handle - {00000000-0000-0000-0050-000000000141}, !- Source Object + {00000000-0000-0000-0050-000000000090}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0011-000000000002}, !- Target Object - 17; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000088}, !- Handle - {00000000-0000-0000-0011-000000000002}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0050-000000000142}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000089}, !- Handle - {00000000-0000-0000-0050-000000000142}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000090}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000167}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000091}, !- Handle - {00000000-0000-0000-0050-000000000168}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000092}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000162}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000093}, !- Handle - {00000000-0000-0000-0050-000000000163}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000094}, !- Handle - {00000000-0000-0000-0050-000000000162}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000095}, !- Handle - {00000000-0000-0000-0004-000000000001}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000163}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000096}, !- Handle - {00000000-0000-0000-0050-000000000070}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000097}, !- Handle - {00000000-0000-0000-0013-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000072}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000098}, !- Handle - {00000000-0000-0000-0050-000000000072}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000099}, !- Handle - {00000000-0000-0000-0039-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000168}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000100}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000079}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000101}, !- Handle - {00000000-0000-0000-0050-000000000079}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000006}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000102}, !- Handle - {00000000-0000-0000-0013-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000071}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000103}, !- Handle - {00000000-0000-0000-0050-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000104}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000105}, !- Handle - {00000000-0000-0000-0050-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000106}, !- Handle - {00000000-0000-0000-0050-000000000167}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000003}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000107}, !- Handle - {00000000-0000-0000-0039-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000147}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000108}, !- Handle - {00000000-0000-0000-0050-000000000147}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000109}, !- Handle - {00000000-0000-0000-0050-000000000037}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000110}, !- Handle - {00000000-0000-0000-0056-000000000018}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000014}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000111}, !- Handle - {00000000-0000-0000-0050-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000112}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000036}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000113}, !- Handle - {00000000-0000-0000-0050-000000000036}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000001}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000114}, !- Handle - {00000000-0000-0000-0006-000000000001}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000037}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000115}, !- Handle - {00000000-0000-0000-0050-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000116}, !- Handle - {00000000-0000-0000-0056-000000000042}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000117}, !- Handle - {00000000-0000-0000-0050-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000118}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000050}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000119}, !- Handle - {00000000-0000-0000-0050-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000120}, !- Handle - {00000000-0000-0000-0006-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000051}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000121}, !- Handle - {00000000-0000-0000-0050-000000000053}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000031}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000122}, !- Handle - {00000000-0000-0000-0056-000000000033}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000123}, !- Handle - {00000000-0000-0000-0050-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000124}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000125}, !- Handle - {00000000-0000-0000-0050-000000000052}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000009}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000126}, !- Handle - {00000000-0000-0000-0006-000000000009}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000053}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000127}, !- Handle - {00000000-0000-0000-0050-000000000055}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000128}, !- Handle - {00000000-0000-0000-0056-000000000051}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000129}, !- Handle - {00000000-0000-0000-0050-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000130}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000054}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000131}, !- Handle - {00000000-0000-0000-0050-000000000054}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000010}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000132}, !- Handle - {00000000-0000-0000-0006-000000000010}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000055}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000133}, !- Handle - {00000000-0000-0000-0050-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000052}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000134}, !- Handle - {00000000-0000-0000-0056-000000000054}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000012}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000135}, !- Handle - {00000000-0000-0000-0050-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000136}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000056}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000137}, !- Handle - {00000000-0000-0000-0050-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000011}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000138}, !- Handle - {00000000-0000-0000-0006-000000000011}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000057}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000139}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0050-000000000153}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000140}, !- Handle - {00000000-0000-0000-0050-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000141}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000148}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000142}, !- Handle - {00000000-0000-0000-0050-000000000149}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000143}, !- Handle - {00000000-0000-0000-0050-000000000148}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000144}, !- Handle - {00000000-0000-0000-0004-000000000002}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000149}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000145}, !- Handle - {00000000-0000-0000-0017-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000073}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000146}, !- Handle - {00000000-0000-0000-0050-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000002}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000147}, !- Handle - {00000000-0000-0000-0013-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0050-000000000075}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000148}, !- Handle - {00000000-0000-0000-0050-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000149}, !- Handle - {00000000-0000-0000-0039-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000150}, !- Handle - {00000000-0000-0000-0014-000000000016}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000081}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000151}, !- Handle - {00000000-0000-0000-0050-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000004}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000152}, !- Handle - {00000000-0000-0000-0013-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000074}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000153}, !- Handle - {00000000-0000-0000-0050-000000000074}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000016}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000154}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000150}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000155}, !- Handle - {00000000-0000-0000-0050-000000000150}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0013-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000156}, !- Handle - {00000000-0000-0000-0050-000000000153}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0039-000000000001}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000157}, !- Handle - {00000000-0000-0000-0039-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0050-000000000145}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000158}, !- Handle - {00000000-0000-0000-0050-000000000145}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000159}, !- Handle - {00000000-0000-0000-0050-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000160}, !- Handle - {00000000-0000-0000-0056-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000024}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000161}, !- Handle - {00000000-0000-0000-0050-000000000024}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000162}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000058}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000163}, !- Handle - {00000000-0000-0000-0050-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000012}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000164}, !- Handle - {00000000-0000-0000-0006-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000059}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000165}, !- Handle - {00000000-0000-0000-0050-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000037}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000166}, !- Handle - {00000000-0000-0000-0056-000000000039}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000020}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000167}, !- Handle - {00000000-0000-0000-0050-000000000020}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000168}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000060}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000169}, !- Handle - {00000000-0000-0000-0050-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000013}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000170}, !- Handle - {00000000-0000-0000-0006-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000061}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000171}, !- Handle - {00000000-0000-0000-0050-000000000063}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000172}, !- Handle - {00000000-0000-0000-0056-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000173}, !- Handle - {00000000-0000-0000-0050-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000174}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000062}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000175}, !- Handle - {00000000-0000-0000-0050-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000014}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000176}, !- Handle - {00000000-0000-0000-0006-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000063}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000177}, !- Handle - {00000000-0000-0000-0050-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000178}, !- Handle - {00000000-0000-0000-0056-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000018}, !- Target Object + {00000000-0000-0000-0054-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000179}, !- Handle - {00000000-0000-0000-0050-000000000018}, !- Source Object + {00000000-0000-0000-0015-000000000082}, !- Handle + {00000000-0000-0000-0054-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000180}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0050-000000000064}, !- Target Object + {00000000-0000-0000-0050-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000181}, !- Handle - {00000000-0000-0000-0050-000000000064}, !- Source Object + {00000000-0000-0000-0015-000000000083}, !- Handle + {00000000-0000-0000-0050-000000000097}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000015}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0011-000000000001}, !- Target Object + 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000182}, !- Handle - {00000000-0000-0000-0006-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000065}, !- Target Object + {00000000-0000-0000-0015-000000000084}, !- Handle + {00000000-0000-0000-0011-000000000001}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0050-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000183}, !- Handle - {00000000-0000-0000-0050-000000000039}, !- Source Object + {00000000-0000-0000-0015-000000000085}, !- Handle + {00000000-0000-0000-0050-000000000098}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000013}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000184}, !- Handle - {00000000-0000-0000-0056-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000016}, !- Target Object + {00000000-0000-0000-0015-000000000086}, !- Handle + {00000000-0000-0000-0017-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000185}, !- Handle - {00000000-0000-0000-0050-000000000016}, !- Source Object + {00000000-0000-0000-0015-000000000087}, !- Handle + {00000000-0000-0000-0050-000000000103}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0011-000000000002}, !- Target Object + 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000186}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000038}, !- Target Object + {00000000-0000-0000-0015-000000000088}, !- Handle + {00000000-0000-0000-0011-000000000002}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0050-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000187}, !- Handle - {00000000-0000-0000-0050-000000000038}, !- Source Object + {00000000-0000-0000-0015-000000000089}, !- Handle + {00000000-0000-0000-0050-000000000104}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000188}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0050-000000000039}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000189}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000090}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000160}, !- Target Object + {00000000-0000-0000-0050-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000190}, !- Handle - {00000000-0000-0000-0050-000000000161}, !- Source Object + {00000000-0000-0000-0015-000000000091}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000191}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000092}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000155}, !- Target Object + {00000000-0000-0000-0050-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000192}, !- Handle - {00000000-0000-0000-0050-000000000156}, !- Source Object + {00000000-0000-0000-0015-000000000093}, !- Handle + {00000000-0000-0000-0050-000000000109}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000193}, !- Handle - {00000000-0000-0000-0050-000000000155}, !- Source Object + {00000000-0000-0000-0015-000000000094}, !- Handle + {00000000-0000-0000-0050-000000000108}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object + {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000194}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000095}, !- Handle + {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000156}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000195}, !- Handle - {00000000-0000-0000-0017-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0050-000000000076}, !- Target Object + {00000000-0000-0000-0050-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000196}, !- Handle - {00000000-0000-0000-0050-000000000076}, !- Source Object + {00000000-0000-0000-0015-000000000096}, !- Handle + {00000000-0000-0000-0050-000000000040}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000003}, !- Target Object + {00000000-0000-0000-0013-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000197}, !- Handle - {00000000-0000-0000-0013-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000097}, !- Handle + {00000000-0000-0000-0013-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000078}, !- Target Object + {00000000-0000-0000-0050-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000198}, !- Handle - {00000000-0000-0000-0050-000000000078}, !- Source Object + {00000000-0000-0000-0015-000000000098}, !- Handle + {00000000-0000-0000-0050-000000000042}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000002}, !- Target Object - 5; !- Inlet Port + 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000199}, !- Handle - {00000000-0000-0000-0039-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000099}, !- Handle + {00000000-0000-0000-0039-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000161}, !- Target Object + {00000000-0000-0000-0050-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000200}, !- Handle - {00000000-0000-0000-0014-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000100}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000080}, !- Target Object + {00000000-0000-0000-0050-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000201}, !- Handle - {00000000-0000-0000-0050-000000000080}, !- Source Object + {00000000-0000-0000-0015-000000000101}, !- Handle + {00000000-0000-0000-0050-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000005}, !- Target Object + {00000000-0000-0000-0039-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000202}, !- Handle - {00000000-0000-0000-0013-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000102}, !- Handle + {00000000-0000-0000-0013-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000077}, !- Target Object + {00000000-0000-0000-0050-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000203}, !- Handle - {00000000-0000-0000-0050-000000000077}, !- Source Object + {00000000-0000-0000-0015-000000000103}, !- Handle + {00000000-0000-0000-0050-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000005}, !- Target Object + {00000000-0000-0000-0014-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000204}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000104}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000157}, !- Target Object + {00000000-0000-0000-0050-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000205}, !- Handle - {00000000-0000-0000-0050-000000000157}, !- Source Object + {00000000-0000-0000-0015-000000000105}, !- Handle + {00000000-0000-0000-0050-000000000110}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000003}, !- Target Object + {00000000-0000-0000-0013-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000206}, !- Handle - {00000000-0000-0000-0050-000000000160}, !- Source Object + {00000000-0000-0000-0015-000000000106}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000002}, !- Target Object + {00000000-0000-0000-0039-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000207}, !- Handle - {00000000-0000-0000-0039-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000107}, !- Handle + {00000000-0000-0000-0039-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000146}, !- Target Object + {00000000-0000-0000-0050-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000208}, !- Handle - {00000000-0000-0000-0050-000000000146}, !- Source Object + {00000000-0000-0000-0015-000000000108}, !- Handle + {00000000-0000-0000-0050-000000000107}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object + {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000209}, !- Handle - {00000000-0000-0000-0050-000000000041}, !- Source Object + {00000000-0000-0000-0015-000000000109}, !- Handle + {00000000-0000-0000-0050-000000000027}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000010}, !- Target Object + {00000000-0000-0000-0056-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000210}, !- Handle - {00000000-0000-0000-0056-000000000012}, !- Source Object + {00000000-0000-0000-0015-000000000110}, !- Handle + {00000000-0000-0000-0056-000000000018}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000028}, !- Target Object + {00000000-0000-0000-0050-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000211}, !- Handle - {00000000-0000-0000-0050-000000000028}, !- Source Object + {00000000-0000-0000-0015-000000000111}, !- Handle + {00000000-0000-0000-0050-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000212}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000112}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000040}, !- Target Object + {00000000-0000-0000-0050-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000213}, !- Handle - {00000000-0000-0000-0050-000000000040}, !- Source Object + {00000000-0000-0000-0015-000000000113}, !- Handle + {00000000-0000-0000-0050-000000000026}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object + {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000214}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000114}, !- Handle + {00000000-0000-0000-0006-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000041}, !- Target Object + {00000000-0000-0000-0050-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000215}, !- Handle - {00000000-0000-0000-0050-000000000043}, !- Source Object + {00000000-0000-0000-0015-000000000115}, !- Handle + {00000000-0000-0000-0050-000000000029}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000004}, !- Target Object + {00000000-0000-0000-0056-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000216}, !- Handle - {00000000-0000-0000-0056-000000000006}, !- Source Object + {00000000-0000-0000-0015-000000000116}, !- Handle + {00000000-0000-0000-0056-000000000042}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000034}, !- Target Object + {00000000-0000-0000-0050-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000217}, !- Handle - {00000000-0000-0000-0050-000000000034}, !- Source Object + {00000000-0000-0000-0015-000000000117}, !- Handle + {00000000-0000-0000-0050-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000218}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000118}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000042}, !- Target Object + {00000000-0000-0000-0050-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000219}, !- Handle - {00000000-0000-0000-0050-000000000042}, !- Source Object + {00000000-0000-0000-0015-000000000119}, !- Handle + {00000000-0000-0000-0050-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object + {00000000-0000-0000-0006-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000220}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object + {00000000-0000-0000-0015-000000000120}, !- Handle + {00000000-0000-0000-0006-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000043}, !- Target Object + {00000000-0000-0000-0050-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000221}, !- Handle - {00000000-0000-0000-0050-000000000045}, !- Source Object + {00000000-0000-0000-0015-000000000121}, !- Handle + {00000000-0000-0000-0050-000000000031}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000007}, !- Target Object + {00000000-0000-0000-0056-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000222}, !- Handle - {00000000-0000-0000-0056-000000000009}, !- Source Object + {00000000-0000-0000-0015-000000000122}, !- Handle + {00000000-0000-0000-0056-000000000033}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000026}, !- Target Object + {00000000-0000-0000-0050-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000223}, !- Handle - {00000000-0000-0000-0050-000000000026}, !- Source Object + {00000000-0000-0000-0015-000000000123}, !- Handle + {00000000-0000-0000-0050-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000224}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000124}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000044}, !- Target Object + {00000000-0000-0000-0050-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000225}, !- Handle - {00000000-0000-0000-0050-000000000044}, !- Source Object + {00000000-0000-0000-0015-000000000125}, !- Handle + {00000000-0000-0000-0050-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000226}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000126}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000045}, !- Target Object + {00000000-0000-0000-0050-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000227}, !- Handle - {00000000-0000-0000-0050-000000000047}, !- Source Object + {00000000-0000-0000-0015-000000000127}, !- Handle + {00000000-0000-0000-0050-000000000033}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000019}, !- Target Object + {00000000-0000-0000-0056-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000228}, !- Handle - {00000000-0000-0000-0056-000000000021}, !- Source Object + {00000000-0000-0000-0015-000000000128}, !- Handle + {00000000-0000-0000-0056-000000000051}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000030}, !- Target Object + {00000000-0000-0000-0050-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000229}, !- Handle - {00000000-0000-0000-0050-000000000030}, !- Source Object + {00000000-0000-0000-0015-000000000129}, !- Handle + {00000000-0000-0000-0050-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000230}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000130}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000046}, !- Target Object + {00000000-0000-0000-0050-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000231}, !- Handle - {00000000-0000-0000-0050-000000000046}, !- Source Object + {00000000-0000-0000-0015-000000000131}, !- Handle + {00000000-0000-0000-0050-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000006}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000232}, !- Handle - {00000000-0000-0000-0006-000000000006}, !- Source Object + {00000000-0000-0000-0015-000000000132}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000047}, !- Target Object + {00000000-0000-0000-0050-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000233}, !- Handle - {00000000-0000-0000-0050-000000000049}, !- Source Object + {00000000-0000-0000-0015-000000000133}, !- Handle + {00000000-0000-0000-0050-000000000035}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000028}, !- Target Object + {00000000-0000-0000-0056-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000234}, !- Handle - {00000000-0000-0000-0056-000000000030}, !- Source Object + {00000000-0000-0000-0015-000000000134}, !- Handle + {00000000-0000-0000-0056-000000000054}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000032}, !- Target Object + {00000000-0000-0000-0050-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000235}, !- Handle - {00000000-0000-0000-0050-000000000032}, !- Source Object + {00000000-0000-0000-0015-000000000135}, !- Handle + {00000000-0000-0000-0050-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object + {00000000-0000-0000-0004-000000000001}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000236}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000136}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000048}, !- Target Object + {00000000-0000-0000-0050-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000237}, !- Handle - {00000000-0000-0000-0050-000000000048}, !- Source Object + {00000000-0000-0000-0015-000000000137}, !- Handle + {00000000-0000-0000-0050-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000007}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000238}, !- Handle - {00000000-0000-0000-0006-000000000007}, !- Source Object + {00000000-0000-0000-0015-000000000138}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000049}, !- Target Object + {00000000-0000-0000-0050-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000239}, !- Handle + {00000000-0000-0000-0015-000000000139}, !- Handle {00000000-0000-0000-0055-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000097}, !- Target Object + {00000000-0000-0000-0050-000000000059}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000240}, !- Handle + {00000000-0000-0000-0015-000000000140}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0050-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000241}, !- Handle - {00000000-0000-0000-0050-000000000098}, !- Source Object + {00000000-0000-0000-0015-000000000141}, !- Handle + {00000000-0000-0000-0050-000000000060}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000003}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000242}, !- Handle + {00000000-0000-0000-0015-000000000142}, !- Handle {00000000-0000-0000-0055-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000095}, !- Target Object + {00000000-0000-0000-0050-000000000057}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000243}, !- Handle - {00000000-0000-0000-0050-000000000095}, !- Source Object + {00000000-0000-0000-0015-000000000143}, !- Handle + {00000000-0000-0000-0050-000000000057}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000244}, !- Handle + {00000000-0000-0000-0015-000000000144}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000131}, !- Target Object + {00000000-0000-0000-0050-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000245}, !- Handle - {00000000-0000-0000-0050-000000000096}, !- Source Object + {00000000-0000-0000-0015-000000000145}, !- Handle + {00000000-0000-0000-0050-000000000058}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000246}, !- Handle - {00000000-0000-0000-0050-000000000097}, !- Source Object + {00000000-0000-0000-0015-000000000146}, !- Handle + {00000000-0000-0000-0050-000000000059}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000247}, !- Handle + {00000000-0000-0000-0015-000000000147}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000094}, !- Target Object + {00000000-0000-0000-0050-000000000056}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000248}, !- Handle - {00000000-0000-0000-0050-000000000094}, !- Source Object + {00000000-0000-0000-0015-000000000148}, !- Handle + {00000000-0000-0000-0050-000000000056}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000249}, !- Handle + {00000000-0000-0000-0015-000000000149}, !- Handle {00000000-0000-0000-0050-000000000001}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000001}, !- Target Object 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000250}, !- Handle + {00000000-0000-0000-0015-000000000150}, !- Handle {00000000-0000-0000-0095-000000000001}, !- Source Object 32, !- Outlet Port {00000000-0000-0000-0050-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000251}, !- Handle + {00000000-0000-0000-0015-000000000151}, !- Handle {00000000-0000-0000-0050-000000000002}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000252}, !- Handle + {00000000-0000-0000-0015-000000000152}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000129}, !- Target Object + {00000000-0000-0000-0050-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000253}, !- Handle - {00000000-0000-0000-0050-000000000129}, !- Source Object + {00000000-0000-0000-0015-000000000153}, !- Handle + {00000000-0000-0000-0050-000000000091}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000254}, !- Handle + {00000000-0000-0000-0015-000000000154}, !- Handle {00000000-0000-0000-0054-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000130}, !- Target Object + {00000000-0000-0000-0050-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000255}, !- Handle - {00000000-0000-0000-0050-000000000130}, !- Source Object + {00000000-0000-0000-0015-000000000155}, !- Handle + {00000000-0000-0000-0050-000000000092}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000256}, !- Handle - {00000000-0000-0000-0050-000000000131}, !- Source Object + {00000000-0000-0000-0015-000000000156}, !- Handle + {00000000-0000-0000-0050-000000000093}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000257}, !- Handle + {00000000-0000-0000-0015-000000000157}, !- Handle {00000000-0000-0000-0054-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000132}, !- Target Object + {00000000-0000-0000-0050-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000258}, !- Handle - {00000000-0000-0000-0050-000000000132}, !- Source Object + {00000000-0000-0000-0015-000000000158}, !- Handle + {00000000-0000-0000-0050-000000000094}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000259}, !- Handle + {00000000-0000-0000-0015-000000000159}, !- Handle {00000000-0000-0000-0016-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000133}, !- Target Object + {00000000-0000-0000-0050-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000260}, !- Handle - {00000000-0000-0000-0050-000000000133}, !- Source Object + {00000000-0000-0000-0015-000000000160}, !- Handle + {00000000-0000-0000-0050-000000000095}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000261}, !- Handle + {00000000-0000-0000-0015-000000000161}, !- Handle {00000000-0000-0000-0054-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000098}, !- Target Object + {00000000-0000-0000-0050-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000262}, !- Handle + {00000000-0000-0000-0015-000000000162}, !- Handle {00000000-0000-0000-0016-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000134}, !- Target Object + {00000000-0000-0000-0050-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000263}, !- Handle - {00000000-0000-0000-0050-000000000134}, !- Source Object + {00000000-0000-0000-0015-000000000163}, !- Handle + {00000000-0000-0000-0050-000000000096}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000264}, !- Handle + {00000000-0000-0000-0015-000000000164}, !- Handle {00000000-0000-0000-0054-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000096}, !- Target Object + {00000000-0000-0000-0050-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000265}, !- Handle + {00000000-0000-0000-0015-000000000165}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000088}, !- Target Object + {00000000-0000-0000-0050-000000000050}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000266}, !- Handle - {00000000-0000-0000-0050-000000000088}, !- Source Object + {00000000-0000-0000-0015-000000000166}, !- Handle + {00000000-0000-0000-0050-000000000050}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000267}, !- Handle + {00000000-0000-0000-0015-000000000167}, !- Handle {00000000-0000-0000-0097-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000089}, !- Target Object + {00000000-0000-0000-0050-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000268}, !- Handle - {00000000-0000-0000-0050-000000000089}, !- Source Object + {00000000-0000-0000-0015-000000000168}, !- Handle + {00000000-0000-0000-0050-000000000051}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000269}, !- Handle + {00000000-0000-0000-0015-000000000169}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000090}, !- Target Object + {00000000-0000-0000-0050-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000270}, !- Handle - {00000000-0000-0000-0050-000000000090}, !- Source Object + {00000000-0000-0000-0015-000000000170}, !- Handle + {00000000-0000-0000-0050-000000000052}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000271}, !- Handle + {00000000-0000-0000-0015-000000000171}, !- Handle {00000000-0000-0000-0097-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000091}, !- Target Object + {00000000-0000-0000-0050-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000272}, !- Handle - {00000000-0000-0000-0050-000000000091}, !- Source Object + {00000000-0000-0000-0015-000000000172}, !- Handle + {00000000-0000-0000-0050-000000000053}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000273}, !- Handle + {00000000-0000-0000-0015-000000000173}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000092}, !- Target Object + {00000000-0000-0000-0050-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000274}, !- Handle - {00000000-0000-0000-0050-000000000092}, !- Source Object + {00000000-0000-0000-0015-000000000174}, !- Handle + {00000000-0000-0000-0050-000000000054}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000275}, !- Handle + {00000000-0000-0000-0015-000000000175}, !- Handle {00000000-0000-0000-0097-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000093}, !- Target Object + {00000000-0000-0000-0050-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000276}, !- Handle - {00000000-0000-0000-0050-000000000093}, !- Source Object + {00000000-0000-0000-0015-000000000176}, !- Handle + {00000000-0000-0000-0050-000000000055}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000277}, !- Handle + {00000000-0000-0000-0015-000000000177}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000099}, !- Target Object + {00000000-0000-0000-0050-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000278}, !- Handle - {00000000-0000-0000-0050-000000000099}, !- Source Object + {00000000-0000-0000-0015-000000000178}, !- Handle + {00000000-0000-0000-0050-000000000061}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000279}, !- Handle + {00000000-0000-0000-0015-000000000179}, !- Handle {00000000-0000-0000-0097-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000100}, !- Target Object + {00000000-0000-0000-0050-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000280}, !- Handle - {00000000-0000-0000-0050-000000000100}, !- Source Object + {00000000-0000-0000-0015-000000000180}, !- Handle + {00000000-0000-0000-0050-000000000062}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000281}, !- Handle + {00000000-0000-0000-0015-000000000181}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0050-000000000101}, !- Target Object + {00000000-0000-0000-0050-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000282}, !- Handle - {00000000-0000-0000-0050-000000000101}, !- Source Object + {00000000-0000-0000-0015-000000000182}, !- Handle + {00000000-0000-0000-0050-000000000063}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000283}, !- Handle + {00000000-0000-0000-0015-000000000183}, !- Handle {00000000-0000-0000-0097-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000102}, !- Target Object + {00000000-0000-0000-0050-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000284}, !- Handle - {00000000-0000-0000-0050-000000000102}, !- Source Object + {00000000-0000-0000-0015-000000000184}, !- Handle + {00000000-0000-0000-0050-000000000064}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000285}, !- Handle + {00000000-0000-0000-0015-000000000185}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000103}, !- Target Object + {00000000-0000-0000-0050-000000000065}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000286}, !- Handle - {00000000-0000-0000-0050-000000000103}, !- Source Object + {00000000-0000-0000-0015-000000000186}, !- Handle + {00000000-0000-0000-0050-000000000065}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000287}, !- Handle + {00000000-0000-0000-0015-000000000187}, !- Handle {00000000-0000-0000-0097-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000104}, !- Target Object + {00000000-0000-0000-0050-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000288}, !- Handle - {00000000-0000-0000-0050-000000000104}, !- Source Object + {00000000-0000-0000-0015-000000000188}, !- Handle + {00000000-0000-0000-0050-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000289}, !- Handle + {00000000-0000-0000-0015-000000000189}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0050-000000000105}, !- Target Object + {00000000-0000-0000-0050-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000290}, !- Handle - {00000000-0000-0000-0050-000000000105}, !- Source Object + {00000000-0000-0000-0015-000000000190}, !- Handle + {00000000-0000-0000-0050-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000291}, !- Handle + {00000000-0000-0000-0015-000000000191}, !- Handle {00000000-0000-0000-0097-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000106}, !- Target Object + {00000000-0000-0000-0050-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000292}, !- Handle - {00000000-0000-0000-0050-000000000106}, !- Source Object + {00000000-0000-0000-0015-000000000192}, !- Handle + {00000000-0000-0000-0050-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000293}, !- Handle + {00000000-0000-0000-0015-000000000193}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000107}, !- Target Object + {00000000-0000-0000-0050-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000294}, !- Handle - {00000000-0000-0000-0050-000000000107}, !- Source Object + {00000000-0000-0000-0015-000000000194}, !- Handle + {00000000-0000-0000-0050-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000295}, !- Handle + {00000000-0000-0000-0015-000000000195}, !- Handle {00000000-0000-0000-0097-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000108}, !- Target Object + {00000000-0000-0000-0050-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000296}, !- Handle - {00000000-0000-0000-0050-000000000108}, !- Source Object + {00000000-0000-0000-0015-000000000196}, !- Handle + {00000000-0000-0000-0050-000000000070}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 11; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000297}, !- Handle + {00000000-0000-0000-0015-000000000197}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000109}, !- Target Object + {00000000-0000-0000-0050-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000298}, !- Handle - {00000000-0000-0000-0050-000000000109}, !- Source Object + {00000000-0000-0000-0015-000000000198}, !- Handle + {00000000-0000-0000-0050-000000000071}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000299}, !- Handle + {00000000-0000-0000-0015-000000000199}, !- Handle {00000000-0000-0000-0097-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000110}, !- Target Object + {00000000-0000-0000-0050-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000300}, !- Handle - {00000000-0000-0000-0050-000000000110}, !- Source Object + {00000000-0000-0000-0015-000000000200}, !- Handle + {00000000-0000-0000-0050-000000000072}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000301}, !- Handle + {00000000-0000-0000-0015-000000000201}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000111}, !- Target Object + {00000000-0000-0000-0050-000000000073}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000302}, !- Handle - {00000000-0000-0000-0050-000000000111}, !- Source Object + {00000000-0000-0000-0015-000000000202}, !- Handle + {00000000-0000-0000-0050-000000000073}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000303}, !- Handle + {00000000-0000-0000-0015-000000000203}, !- Handle {00000000-0000-0000-0097-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000112}, !- Target Object + {00000000-0000-0000-0050-000000000074}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000304}, !- Handle - {00000000-0000-0000-0050-000000000112}, !- Source Object + {00000000-0000-0000-0015-000000000204}, !- Handle + {00000000-0000-0000-0050-000000000074}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 13; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000305}, !- Handle + {00000000-0000-0000-0015-000000000205}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000113}, !- Target Object + {00000000-0000-0000-0050-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000306}, !- Handle - {00000000-0000-0000-0050-000000000113}, !- Source Object + {00000000-0000-0000-0015-000000000206}, !- Handle + {00000000-0000-0000-0050-000000000075}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000307}, !- Handle + {00000000-0000-0000-0015-000000000207}, !- Handle {00000000-0000-0000-0097-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000114}, !- Target Object + {00000000-0000-0000-0050-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000308}, !- Handle - {00000000-0000-0000-0050-000000000114}, !- Source Object + {00000000-0000-0000-0015-000000000208}, !- Handle + {00000000-0000-0000-0050-000000000076}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000309}, !- Handle + {00000000-0000-0000-0015-000000000209}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0050-000000000115}, !- Target Object + {00000000-0000-0000-0050-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000310}, !- Handle - {00000000-0000-0000-0050-000000000115}, !- Source Object + {00000000-0000-0000-0015-000000000210}, !- Handle + {00000000-0000-0000-0050-000000000077}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000311}, !- Handle + {00000000-0000-0000-0015-000000000211}, !- Handle {00000000-0000-0000-0097-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000116}, !- Target Object + {00000000-0000-0000-0050-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000312}, !- Handle - {00000000-0000-0000-0050-000000000116}, !- Source Object + {00000000-0000-0000-0015-000000000212}, !- Handle + {00000000-0000-0000-0050-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000313}, !- Handle + {00000000-0000-0000-0015-000000000213}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000117}, !- Target Object + {00000000-0000-0000-0050-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000314}, !- Handle - {00000000-0000-0000-0050-000000000117}, !- Source Object + {00000000-0000-0000-0015-000000000214}, !- Handle + {00000000-0000-0000-0050-000000000079}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000315}, !- Handle + {00000000-0000-0000-0015-000000000215}, !- Handle {00000000-0000-0000-0097-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000118}, !- Target Object + {00000000-0000-0000-0050-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000316}, !- Handle - {00000000-0000-0000-0050-000000000118}, !- Source Object + {00000000-0000-0000-0015-000000000216}, !- Handle + {00000000-0000-0000-0050-000000000080}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000317}, !- Handle + {00000000-0000-0000-0015-000000000217}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000119}, !- Target Object + {00000000-0000-0000-0050-000000000081}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000318}, !- Handle - {00000000-0000-0000-0050-000000000119}, !- Source Object + {00000000-0000-0000-0015-000000000218}, !- Handle + {00000000-0000-0000-0050-000000000081}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000319}, !- Handle + {00000000-0000-0000-0015-000000000219}, !- Handle {00000000-0000-0000-0097-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000120}, !- Target Object + {00000000-0000-0000-0050-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000320}, !- Handle - {00000000-0000-0000-0050-000000000120}, !- Source Object + {00000000-0000-0000-0015-000000000220}, !- Handle + {00000000-0000-0000-0050-000000000082}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000321}, !- Handle + {00000000-0000-0000-0015-000000000221}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000121}, !- Target Object + {00000000-0000-0000-0050-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000322}, !- Handle - {00000000-0000-0000-0050-000000000121}, !- Source Object + {00000000-0000-0000-0015-000000000222}, !- Handle + {00000000-0000-0000-0050-000000000083}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000323}, !- Handle + {00000000-0000-0000-0015-000000000223}, !- Handle {00000000-0000-0000-0097-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000122}, !- Target Object + {00000000-0000-0000-0050-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000324}, !- Handle - {00000000-0000-0000-0050-000000000122}, !- Source Object + {00000000-0000-0000-0015-000000000224}, !- Handle + {00000000-0000-0000-0050-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000325}, !- Handle - {00000000-0000-0000-0050-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000326}, !- Handle - {00000000-0000-0000-0043-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000173}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000327}, !- Handle - {00000000-0000-0000-0050-000000000173}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000328}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000174}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000329}, !- Handle - {00000000-0000-0000-0050-000000000174}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000003}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000330}, !- Handle - {00000000-0000-0000-0043-000000000003}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000331}, !- Handle - {00000000-0000-0000-0050-000000000151}, !- Source Object + {00000000-0000-0000-0015-000000000225}, !- Handle + {00000000-0000-0000-0050-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0043-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000332}, !- Handle + {00000000-0000-0000-0015-000000000226}, !- Handle {00000000-0000-0000-0043-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000169}, !- Target Object + {00000000-0000-0000-0050-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000333}, !- Handle - {00000000-0000-0000-0050-000000000169}, !- Source Object + {00000000-0000-0000-0015-000000000227}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object + {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000334}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000228}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000170}, !- Target Object + {00000000-0000-0000-0050-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000335}, !- Handle - {00000000-0000-0000-0050-000000000170}, !- Source Object + {00000000-0000-0000-0015-000000000229}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0043-000000000001}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000336}, !- Handle + {00000000-0000-0000-0015-000000000230}, !- Handle {00000000-0000-0000-0043-000000000001}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0050-000000000152}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000337}, !- Handle - {00000000-0000-0000-0050-000000000158}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000338}, !- Handle - {00000000-0000-0000-0043-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0050-000000000171}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000339}, !- Handle - {00000000-0000-0000-0050-000000000171}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000340}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0050-000000000172}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000341}, !- Handle - {00000000-0000-0000-0050-000000000172}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000002}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000342}, !- Handle - {00000000-0000-0000-0043-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0050-000000000159}, !- Target Object + {00000000-0000-0000-0050-000000000112}, !- Target Object 2; !- Inlet Port OS:Connector:Mixer, @@ -3347,9 +2033,7 @@ OS:Connector:Mixer, {00000000-0000-0000-0016-000000000002}, !- Handle Connector Mixer 2, !- Name {00000000-0000-0000-0015-000000000043}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000098}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000148}, !- Inlet Branch Name 2 - {00000000-0000-0000-0015-000000000198}; !- Inlet Branch Name 3 + {00000000-0000-0000-0015-000000000098}; !- Inlet Branch Name 1 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000003}, !- Handle @@ -3368,30 +2052,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0016-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0015-000000000259}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000251}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000255}; !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000159}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000151}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000155}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0015-000000000262}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000258}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000268}, !- Inlet Branch Name 2 - {00000000-0000-0000-0015-000000000272}, !- Inlet Branch Name 3 - {00000000-0000-0000-0015-000000000276}, !- Inlet Branch Name 4 - {00000000-0000-0000-0015-000000000280}, !- Inlet Branch Name 5 - {00000000-0000-0000-0015-000000000284}, !- Inlet Branch Name 6 - {00000000-0000-0000-0015-000000000288}, !- Inlet Branch Name 7 - {00000000-0000-0000-0015-000000000292}, !- Inlet Branch Name 8 - {00000000-0000-0000-0015-000000000296}, !- Inlet Branch Name 9 - {00000000-0000-0000-0015-000000000300}, !- Inlet Branch Name 10 - {00000000-0000-0000-0015-000000000304}, !- Inlet Branch Name 11 - {00000000-0000-0000-0015-000000000308}, !- Inlet Branch Name 12 - {00000000-0000-0000-0015-000000000312}, !- Inlet Branch Name 13 - {00000000-0000-0000-0015-000000000316}, !- Inlet Branch Name 14 - {00000000-0000-0000-0015-000000000320}, !- Inlet Branch Name 15 - {00000000-0000-0000-0015-000000000324}; !- Inlet Branch Name 16 + {00000000-0000-0000-0015-000000000162}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000158}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000168}, !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000172}, !- Inlet Branch Name 3 + {00000000-0000-0000-0015-000000000176}, !- Inlet Branch Name 4 + {00000000-0000-0000-0015-000000000180}, !- Inlet Branch Name 5 + {00000000-0000-0000-0015-000000000184}, !- Inlet Branch Name 6 + {00000000-0000-0000-0015-000000000188}, !- Inlet Branch Name 7 + {00000000-0000-0000-0015-000000000192}, !- Inlet Branch Name 8 + {00000000-0000-0000-0015-000000000196}, !- Inlet Branch Name 9 + {00000000-0000-0000-0015-000000000200}, !- Inlet Branch Name 10 + {00000000-0000-0000-0015-000000000204}, !- Inlet Branch Name 11 + {00000000-0000-0000-0015-000000000208}, !- Inlet Branch Name 12 + {00000000-0000-0000-0015-000000000212}, !- Inlet Branch Name 13 + {00000000-0000-0000-0015-000000000216}, !- Inlet Branch Name 14 + {00000000-0000-0000-0015-000000000220}, !- Inlet Branch Name 15 + {00000000-0000-0000-0015-000000000224}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000001}, !- Handle @@ -3405,9 +2089,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0015-000000000041}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000042}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000145}, !- Outlet Branch Name 2 - {00000000-0000-0000-0015-000000000195}; !- Outlet Branch Name 3 + {00000000-0000-0000-0015-000000000042}; !- Outlet Branch Name 1 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000003}, !- Handle @@ -3426,30 +2108,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0017-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0015-000000000248}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000240}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000252}; !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000148}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000140}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000152}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0015-000000000243}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000244}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000265}, !- Outlet Branch Name 2 - {00000000-0000-0000-0015-000000000269}, !- Outlet Branch Name 3 - {00000000-0000-0000-0015-000000000273}, !- Outlet Branch Name 4 - {00000000-0000-0000-0015-000000000277}, !- Outlet Branch Name 5 - {00000000-0000-0000-0015-000000000281}, !- Outlet Branch Name 6 - {00000000-0000-0000-0015-000000000285}, !- Outlet Branch Name 7 - {00000000-0000-0000-0015-000000000289}, !- Outlet Branch Name 8 - {00000000-0000-0000-0015-000000000293}, !- Outlet Branch Name 9 - {00000000-0000-0000-0015-000000000297}, !- Outlet Branch Name 10 - {00000000-0000-0000-0015-000000000301}, !- Outlet Branch Name 11 - {00000000-0000-0000-0015-000000000305}, !- Outlet Branch Name 12 - {00000000-0000-0000-0015-000000000309}, !- Outlet Branch Name 13 - {00000000-0000-0000-0015-000000000313}, !- Outlet Branch Name 14 - {00000000-0000-0000-0015-000000000317}, !- Outlet Branch Name 15 - {00000000-0000-0000-0015-000000000321}; !- Outlet Branch Name 16 + {00000000-0000-0000-0015-000000000143}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000144}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000165}, !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000169}, !- Outlet Branch Name 3 + {00000000-0000-0000-0015-000000000173}, !- Outlet Branch Name 4 + {00000000-0000-0000-0015-000000000177}, !- Outlet Branch Name 5 + {00000000-0000-0000-0015-000000000181}, !- Outlet Branch Name 6 + {00000000-0000-0000-0015-000000000185}, !- Outlet Branch Name 7 + {00000000-0000-0000-0015-000000000189}, !- Outlet Branch Name 8 + {00000000-0000-0000-0015-000000000193}, !- Outlet Branch Name 9 + {00000000-0000-0000-0015-000000000197}, !- Outlet Branch Name 10 + {00000000-0000-0000-0015-000000000201}, !- Outlet Branch Name 11 + {00000000-0000-0000-0015-000000000205}, !- Outlet Branch Name 12 + {00000000-0000-0000-0015-000000000209}, !- Outlet Branch Name 13 + {00000000-0000-0000-0015-000000000213}, !- Outlet Branch Name 14 + {00000000-0000-0000-0015-000000000217}, !- Outlet Branch Name 15 + {00000000-0000-0000-0015-000000000221}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0018-000000000001}, !- Handle @@ -3708,20 +2390,6 @@ OS:Controller:MechanicalVentilation, , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0019-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0019-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - OS:Controller:OutdoorAir, {00000000-0000-0000-0020-000000000001}, !- Handle Controller Outdoor Air 1, !- Name @@ -3740,7 +2408,7 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0064-000000000027}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0064-000000000023}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0019-000000000001}, !- Controller Mechanical Ventilation @@ -3752,66 +2420,6 @@ OS:Controller:OutdoorAir, BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Controller:OutdoorAir, - {00000000-0000-0000-0020-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0064-000000000025}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0019-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0020-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0064-000000000026}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0019-000000000003}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - OS:Controller:WaterCoil, {00000000-0000-0000-0021-000000000001}, !- Handle Controller Water Coil 1, !- Name @@ -3825,32 +2433,6 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} -OS:Controller:WaterCoil, - {00000000-0000-0000-0021-000000000002}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0013-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0021-000000000003}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0013-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - OS:ConvergenceLimits, {00000000-0000-0000-0022-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -3863,7 +2445,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0015-000000000074}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 3613.55502973381, !- Fan Power at Design Air Flow Rate {W} + 1433.2615779667, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -3954,34 +2536,6 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0024-000000000005}, !- Handle - WaterCooled_Screw_CAPFT_NECB2011, !- Name - 0.812998, !- Coefficient1 Constant - -0.0142532, !- Coefficient2 x - -0.00161799, !- Coefficient3 x**2 - 0.0263844, !- Coefficient4 y - -0.00091543, !- Coefficient5 y**2 - 0.00169601, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000006}, !- Handle - WaterCooled_Screw_EIRFT_NECB2011, !- Name - 0.638103, !- Coefficient1 Constant - 0.00630158, !- Coefficient2 x - 0.00092327, !- Coefficient3 x**2 - -0.00455294, !- Coefficient4 y - 0.000825682, !- Coefficient5 y**2 - -0.00156152, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -3995,7 +2549,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000008}, !- Handle + {00000000-0000-0000-0024-000000000006}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -4048,15 +2602,6 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0026-000000000003}, !- Handle - WaterCooled_Screw_EIRFPLR_NECB2011, !- Name - 0.330188, !- Coefficient1 Constant - 0.235543, !- Coefficient2 x - 0.460708, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0026-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -4218,7 +2763,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__ClgSch0, !- Name {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4226,139 +2771,49 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0064-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__HtgSch0, !- Name {00000000-0000-0000-0064-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type ; !- Zone or Space Name -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c61fca8e-5652-4506-8752-3e0b37814ca1}<23.9 && {c61fca8e-5652-4506-8752-3e0b37814ca1}>1.7, !- Program Line 1 - SET {bcf81aaf-e146-488d-a7c6-628a08b1b9ad} = 29.4, !- Program Line 2 - SET {915cf2a4-4cfd-44fd-b6a4-a3ecb9abfc03} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c61fca8e-5652-4506-8752-3e0b37814ca1}<23.9 && {c61fca8e-5652-4506-8752-3e0b37814ca1}>1.7, !- Program Line 4 - SET {bcf81aaf-e146-488d-a7c6-628a08b1b9ad} = 29.4, !- Program Line 5 - SET {915cf2a4-4cfd-44fd-b6a4-a3ecb9abfc03} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c61fca8e-5652-4506-8752-3e0b37814ca1}<23.9 && {c61fca8e-5652-4506-8752-3e0b37814ca1}>1.7, !- Program Line 7 - SET {bcf81aaf-e146-488d-a7c6-628a08b1b9ad} = 29.4, !- Program Line 8 - SET {915cf2a4-4cfd-44fd-b6a4-a3ecb9abfc03} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c61fca8e-5652-4506-8752-3e0b37814ca1}<23.9 && {c61fca8e-5652-4506-8752-3e0b37814ca1}>1.7, !- Program Line 10 - SET {bcf81aaf-e146-488d-a7c6-628a08b1b9ad} = 29.4, !- Program Line 11 - SET {915cf2a4-4cfd-44fd-b6a4-a3ecb9abfc03} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {bcf81aaf-e146-488d-a7c6-628a08b1b9ad} = NULL, !- Program Line 14 - SET {915cf2a4-4cfd-44fd-b6a4-a3ecb9abfc03} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5ef88fba-3e06-48b1-91bb-3055411c7544}<23.9 && {5ef88fba-3e06-48b1-91bb-3055411c7544}>1.7, !- Program Line 1 - SET {2fe59535-90ad-44f2-a6e9-2c5207edda87} = 29.4, !- Program Line 2 - SET {16b07ebf-f33d-4a00-9860-d0dec522ad3f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5ef88fba-3e06-48b1-91bb-3055411c7544}<23.9 && {5ef88fba-3e06-48b1-91bb-3055411c7544}>1.7, !- Program Line 4 - SET {2fe59535-90ad-44f2-a6e9-2c5207edda87} = 29.4, !- Program Line 5 - SET {16b07ebf-f33d-4a00-9860-d0dec522ad3f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5ef88fba-3e06-48b1-91bb-3055411c7544}<23.9 && {5ef88fba-3e06-48b1-91bb-3055411c7544}>1.7, !- Program Line 7 - SET {2fe59535-90ad-44f2-a6e9-2c5207edda87} = 29.4, !- Program Line 8 - SET {16b07ebf-f33d-4a00-9860-d0dec522ad3f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5ef88fba-3e06-48b1-91bb-3055411c7544}<23.9 && {5ef88fba-3e06-48b1-91bb-3055411c7544}>1.7, !- Program Line 10 - SET {2fe59535-90ad-44f2-a6e9-2c5207edda87} = 29.4, !- Program Line 11 - SET {16b07ebf-f33d-4a00-9860-d0dec522ad3f} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {2fe59535-90ad-44f2-a6e9-2c5207edda87} = NULL, !- Program Line 14 - SET {16b07ebf-f33d-4a00-9860-d0dec522ad3f} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0035-000000000001}; !- Program Name 1 - -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0035-000000000002}; !- Program Name 1 - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0037-000000000001}, !- Handle - OAT, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0037-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - -OS:Facility, - {00000000-0000-0000-0038-000000000001}; !- Handle - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000156}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000157}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000206}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000207}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0035-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}<23.9 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}>1.7, !- Program Line 1 + SET {9fd289da-fd91-429b-b47b-988b8c6223d9} = 29.4, !- Program Line 2 + SET {de4ab440-b26b-49eb-ad23-0e9c46a752f9} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}<23.9 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}>1.7, !- Program Line 4 + SET {9fd289da-fd91-429b-b47b-988b8c6223d9} = 29.4, !- Program Line 5 + SET {de4ab440-b26b-49eb-ad23-0e9c46a752f9} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}<23.9 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}>1.7, !- Program Line 7 + SET {9fd289da-fd91-429b-b47b-988b8c6223d9} = 29.4, !- Program Line 8 + SET {de4ab440-b26b-49eb-ad23-0e9c46a752f9} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}<23.9 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}>1.7, !- Program Line 10 + SET {9fd289da-fd91-429b-b47b-988b8c6223d9} = 29.4, !- Program Line 11 + SET {de4ab440-b26b-49eb-ad23-0e9c46a752f9} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {9fd289da-fd91-429b-b47b-988b8c6223d9} = NULL, !- Program Line 14 + SET {de4ab440-b26b-49eb-ad23-0e9c46a752f9} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0036-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0035-000000000001}; !- Program Name 1 + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0037-000000000001}, !- Handle + OAT, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:Facility, + {00000000-0000-0000-0038-000000000001}; !- Handle OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000003}, !- Handle + {00000000-0000-0000-0039-000000000001}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -4379,29 +2834,8 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000004}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000151}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000149}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000005}, !- Handle - Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0039-000000000002}, !- Handle + Sys6 Supply Fan, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -4416,27 +2850,6 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0015-000000000201}, !- Air Inlet Node Name - {00000000-0000-0000-0015-000000000199}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000006}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0015-000000000101}, !- Air Inlet Node Name {00000000-0000-0000-0015-000000000099}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -4483,58 +2896,6 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0015-000000000331}, !- Supply Air Inlet Node - {00000000-0000-0000-0015-000000000332}, !- Supply Air Outlet Node - {00000000-0000-0000-0015-000000000335}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0015-000000000336}, !- Exhaust Air Outlet Node - 564.521132154065, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0043-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0015-000000000337}, !- Supply Air Inlet Node - {00000000-0000-0000-0015-000000000338}, !- Supply Air Outlet Node - {00000000-0000-0000-0015-000000000341}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0015-000000000342}, !- Exhaust Air Outlet Node - 564.521132154065, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0043-000000000003}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} @@ -4546,10 +2907,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0015-000000000325}, !- Supply Air Inlet Node - {00000000-0000-0000-0015-000000000326}, !- Supply Air Outlet Node - {00000000-0000-0000-0015-000000000329}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0015-000000000330}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0015-000000000225}, !- Supply Air Inlet Node + {00000000-0000-0000-0015-000000000226}, !- Supply Air Outlet Node + {00000000-0000-0000-0015-000000000229}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0015-000000000230}, !- Exhaust Air Outlet Node 564.521132154065, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -4993,49 +3354,17 @@ OS:ModelObjectList, {00000000-0000-0000-0049-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0049-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name - OS:Node, {00000000-0000-0000-0050-000000000001}, !- Handle 125gal Electricity Water Heater - 84kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000240}, !- Inlet Port - {00000000-0000-0000-0015-000000000249}; !- Outlet Port + {00000000-0000-0000-0015-000000000140}, !- Inlet Port + {00000000-0000-0000-0015-000000000149}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000002}, !- Handle 125gal Electricity Water Heater - 84kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000250}, !- Inlet Port - {00000000-0000-0000-0015-000000000251}; !- Outlet Port + {00000000-0000-0000-0015-000000000150}, !- Inlet Port + {00000000-0000-0000-0015-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000003}, !- Handle @@ -5117,957 +3446,609 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000016}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000184}, !- Inlet Port - {00000000-0000-0000-0015-000000000185}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000018}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000178}, !- Inlet Port - {00000000-0000-0000-0015-000000000179}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000019}, !- Handle + {00000000-0000-0000-0050-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000020}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000166}, !- Inlet Port - {00000000-0000-0000-0015-000000000167}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000021}, !- Handle + {00000000-0000-0000-0050-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000022}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000172}, !- Inlet Port - {00000000-0000-0000-0015-000000000173}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000023}, !- Handle + {00000000-0000-0000-0050-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000024}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0015-000000000160}, !- Inlet Port - {00000000-0000-0000-0015-000000000161}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000025}, !- Handle + {00000000-0000-0000-0050-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000026}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000222}, !- Inlet Port - {00000000-0000-0000-0015-000000000223}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000027}, !- Handle + {00000000-0000-0000-0050-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000028}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000210}, !- Inlet Port - {00000000-0000-0000-0015-000000000211}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000029}, !- Handle + {00000000-0000-0000-0050-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000030}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000228}, !- Inlet Port - {00000000-0000-0000-0015-000000000229}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000031}, !- Handle + {00000000-0000-0000-0050-000000000023}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000032}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0015-000000000234}, !- Inlet Port - {00000000-0000-0000-0015-000000000235}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000033}, !- Handle + {00000000-0000-0000-0050-000000000024}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000034}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0015-000000000216}, !- Inlet Port - {00000000-0000-0000-0015-000000000217}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000035}, !- Handle + {00000000-0000-0000-0050-000000000025}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000036}, !- Handle + {00000000-0000-0000-0050-000000000026}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000112}, !- Inlet Port {00000000-0000-0000-0015-000000000113}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000037}, !- Handle + {00000000-0000-0000-0050-000000000027}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000114}, !- Inlet Port {00000000-0000-0000-0015-000000000109}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000038}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000186}, !- Inlet Port - {00000000-0000-0000-0015-000000000187}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000039}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000188}, !- Inlet Port - {00000000-0000-0000-0015-000000000183}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000040}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000212}, !- Inlet Port - {00000000-0000-0000-0015-000000000213}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000041}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000214}, !- Inlet Port - {00000000-0000-0000-0015-000000000209}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000042}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000218}, !- Inlet Port - {00000000-0000-0000-0015-000000000219}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000043}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000220}, !- Inlet Port - {00000000-0000-0000-0015-000000000215}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000044}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000224}, !- Inlet Port - {00000000-0000-0000-0015-000000000225}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000045}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000226}, !- Inlet Port - {00000000-0000-0000-0015-000000000221}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000230}, !- Inlet Port - {00000000-0000-0000-0015-000000000231}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000232}, !- Inlet Port - {00000000-0000-0000-0015-000000000227}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000236}, !- Inlet Port - {00000000-0000-0000-0015-000000000237}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000238}, !- Inlet Port - {00000000-0000-0000-0015-000000000233}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000050}, !- Handle + {00000000-0000-0000-0050-000000000028}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000118}, !- Inlet Port {00000000-0000-0000-0015-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000051}, !- Handle + {00000000-0000-0000-0050-000000000029}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000120}, !- Inlet Port {00000000-0000-0000-0015-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000052}, !- Handle + {00000000-0000-0000-0050-000000000030}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000124}, !- Inlet Port {00000000-0000-0000-0015-000000000125}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000053}, !- Handle + {00000000-0000-0000-0050-000000000031}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000126}, !- Inlet Port - {00000000-0000-0000-0015-000000000121}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000054}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000130}, !- Inlet Port - {00000000-0000-0000-0015-000000000131}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000055}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000132}, !- Inlet Port - {00000000-0000-0000-0015-000000000127}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000056}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000136}, !- Inlet Port - {00000000-0000-0000-0015-000000000137}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000057}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000138}, !- Inlet Port - {00000000-0000-0000-0015-000000000133}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000162}, !- Inlet Port - {00000000-0000-0000-0015-000000000163}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000164}, !- Inlet Port - {00000000-0000-0000-0015-000000000159}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000168}, !- Inlet Port - {00000000-0000-0000-0015-000000000169}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000170}, !- Inlet Port - {00000000-0000-0000-0015-000000000165}; !- Outlet Port + {00000000-0000-0000-0015-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000174}, !- Inlet Port - {00000000-0000-0000-0015-000000000175}; !- Outlet Port + {00000000-0000-0000-0050-000000000032}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000130}, !- Inlet Port + {00000000-0000-0000-0015-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000176}, !- Inlet Port - {00000000-0000-0000-0015-000000000171}; !- Outlet Port + {00000000-0000-0000-0050-000000000033}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000132}, !- Inlet Port + {00000000-0000-0000-0015-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000180}, !- Inlet Port - {00000000-0000-0000-0015-000000000181}; !- Outlet Port + {00000000-0000-0000-0050-000000000034}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000136}, !- Inlet Port + {00000000-0000-0000-0015-000000000137}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000182}, !- Inlet Port - {00000000-0000-0000-0015-000000000177}; !- Outlet Port + {00000000-0000-0000-0050-000000000035}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000138}, !- Inlet Port + {00000000-0000-0000-0015-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000066}, !- Handle + {00000000-0000-0000-0050-000000000036}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000040}, !- Inlet Port {00000000-0000-0000-0015-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000067}, !- Handle + {00000000-0000-0000-0050-000000000037}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000043}, !- Inlet Port {00000000-0000-0000-0015-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000068}, !- Handle + {00000000-0000-0000-0050-000000000038}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000037}, !- Inlet Port {00000000-0000-0000-0015-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000069}, !- Handle + {00000000-0000-0000-0050-000000000039}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000061}, !- Inlet Port {00000000-0000-0000-0015-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000070}, !- Handle + {00000000-0000-0000-0050-000000000040}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000042}, !- Inlet Port {00000000-0000-0000-0015-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000071}, !- Handle + {00000000-0000-0000-0050-000000000041}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000102}, !- Inlet Port {00000000-0000-0000-0015-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000072}, !- Handle + {00000000-0000-0000-0050-000000000042}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000097}, !- Inlet Port {00000000-0000-0000-0015-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000073}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000145}, !- Inlet Port - {00000000-0000-0000-0015-000000000146}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000074}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000152}, !- Inlet Port - {00000000-0000-0000-0015-000000000153}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000075}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000147}, !- Inlet Port - {00000000-0000-0000-0015-000000000148}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000076}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000195}, !- Inlet Port - {00000000-0000-0000-0015-000000000196}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000077}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000202}, !- Inlet Port - {00000000-0000-0000-0015-000000000203}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000078}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000197}, !- Inlet Port - {00000000-0000-0000-0015-000000000198}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000079}, !- Handle + {00000000-0000-0000-0050-000000000043}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000100}, !- Inlet Port {00000000-0000-0000-0015-000000000101}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000080}, !- Handle - Coil Heating Electric 13 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000200}, !- Inlet Port - {00000000-0000-0000-0015-000000000201}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000081}, !- Handle - Coil Heating Electric 7 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000150}, !- Inlet Port - {00000000-0000-0000-0015-000000000151}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000082}, !- Handle + {00000000-0000-0000-0050-000000000044}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000065}, !- Inlet Port {00000000-0000-0000-0015-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000083}, !- Handle + {00000000-0000-0000-0050-000000000045}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000068}, !- Inlet Port {00000000-0000-0000-0015-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000084}, !- Handle + {00000000-0000-0000-0050-000000000046}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000062}, !- Inlet Port {00000000-0000-0000-0015-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000085}, !- Handle + {00000000-0000-0000-0050-000000000047}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000082}, !- Inlet Port {00000000-0000-0000-0015-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000086}, !- Handle + {00000000-0000-0000-0050-000000000048}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000063}, !- Inlet Port {00000000-0000-0000-0015-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000087}, !- Handle + {00000000-0000-0000-0050-000000000049}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000074}, !- Inlet Port {00000000-0000-0000-0015-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000088}, !- Handle + {00000000-0000-0000-0050-000000000050}, !- Handle Core_bottom WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000265}, !- Inlet Port - {00000000-0000-0000-0015-000000000266}; !- Outlet Port + {00000000-0000-0000-0015-000000000165}, !- Inlet Port + {00000000-0000-0000-0015-000000000166}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000089}, !- Handle + {00000000-0000-0000-0050-000000000051}, !- Handle Core_bottom WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000267}, !- Inlet Port - {00000000-0000-0000-0015-000000000268}; !- Outlet Port + {00000000-0000-0000-0015-000000000167}, !- Inlet Port + {00000000-0000-0000-0015-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000090}, !- Handle + {00000000-0000-0000-0050-000000000052}, !- Handle Core_mid WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000269}, !- Inlet Port - {00000000-0000-0000-0015-000000000270}; !- Outlet Port + {00000000-0000-0000-0015-000000000169}, !- Inlet Port + {00000000-0000-0000-0015-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000091}, !- Handle + {00000000-0000-0000-0050-000000000053}, !- Handle Core_mid WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000271}, !- Inlet Port - {00000000-0000-0000-0015-000000000272}; !- Outlet Port + {00000000-0000-0000-0015-000000000171}, !- Inlet Port + {00000000-0000-0000-0015-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000092}, !- Handle + {00000000-0000-0000-0050-000000000054}, !- Handle Core_top WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000273}, !- Inlet Port - {00000000-0000-0000-0015-000000000274}; !- Outlet Port + {00000000-0000-0000-0015-000000000173}, !- Inlet Port + {00000000-0000-0000-0015-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000093}, !- Handle + {00000000-0000-0000-0050-000000000055}, !- Handle Core_top WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000275}, !- Inlet Port - {00000000-0000-0000-0015-000000000276}; !- Outlet Port + {00000000-0000-0000-0015-000000000175}, !- Inlet Port + {00000000-0000-0000-0015-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000094}, !- Handle + {00000000-0000-0000-0050-000000000056}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000247}, !- Inlet Port - {00000000-0000-0000-0015-000000000248}; !- Outlet Port + {00000000-0000-0000-0015-000000000147}, !- Inlet Port + {00000000-0000-0000-0015-000000000148}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000095}, !- Handle + {00000000-0000-0000-0050-000000000057}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000242}, !- Inlet Port - {00000000-0000-0000-0015-000000000243}; !- Outlet Port + {00000000-0000-0000-0015-000000000142}, !- Inlet Port + {00000000-0000-0000-0015-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000096}, !- Handle + {00000000-0000-0000-0050-000000000058}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000264}, !- Inlet Port - {00000000-0000-0000-0015-000000000245}; !- Outlet Port + {00000000-0000-0000-0015-000000000164}, !- Inlet Port + {00000000-0000-0000-0015-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000097}, !- Handle + {00000000-0000-0000-0050-000000000059}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000239}, !- Inlet Port - {00000000-0000-0000-0015-000000000246}; !- Outlet Port + {00000000-0000-0000-0015-000000000139}, !- Inlet Port + {00000000-0000-0000-0015-000000000146}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000098}, !- Handle + {00000000-0000-0000-0050-000000000060}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000261}, !- Inlet Port - {00000000-0000-0000-0015-000000000241}; !- Outlet Port + {00000000-0000-0000-0015-000000000161}, !- Inlet Port + {00000000-0000-0000-0015-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000099}, !- Handle + {00000000-0000-0000-0050-000000000061}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000277}, !- Inlet Port - {00000000-0000-0000-0015-000000000278}; !- Outlet Port + {00000000-0000-0000-0015-000000000177}, !- Inlet Port + {00000000-0000-0000-0015-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000100}, !- Handle + {00000000-0000-0000-0050-000000000062}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000279}, !- Inlet Port - {00000000-0000-0000-0015-000000000280}; !- Outlet Port + {00000000-0000-0000-0015-000000000179}, !- Inlet Port + {00000000-0000-0000-0015-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000101}, !- Handle + {00000000-0000-0000-0050-000000000063}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000281}, !- Inlet Port - {00000000-0000-0000-0015-000000000282}; !- Outlet Port + {00000000-0000-0000-0015-000000000181}, !- Inlet Port + {00000000-0000-0000-0015-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000102}, !- Handle + {00000000-0000-0000-0050-000000000064}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000283}, !- Inlet Port - {00000000-0000-0000-0015-000000000284}; !- Outlet Port + {00000000-0000-0000-0015-000000000183}, !- Inlet Port + {00000000-0000-0000-0015-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000103}, !- Handle + {00000000-0000-0000-0050-000000000065}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000285}, !- Inlet Port - {00000000-0000-0000-0015-000000000286}; !- Outlet Port + {00000000-0000-0000-0015-000000000185}, !- Inlet Port + {00000000-0000-0000-0015-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000104}, !- Handle + {00000000-0000-0000-0050-000000000066}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000287}, !- Inlet Port - {00000000-0000-0000-0015-000000000288}; !- Outlet Port + {00000000-0000-0000-0015-000000000187}, !- Inlet Port + {00000000-0000-0000-0015-000000000188}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000105}, !- Handle + {00000000-0000-0000-0050-000000000067}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000289}, !- Inlet Port - {00000000-0000-0000-0015-000000000290}; !- Outlet Port + {00000000-0000-0000-0015-000000000189}, !- Inlet Port + {00000000-0000-0000-0015-000000000190}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000106}, !- Handle + {00000000-0000-0000-0050-000000000068}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000291}, !- Inlet Port - {00000000-0000-0000-0015-000000000292}; !- Outlet Port + {00000000-0000-0000-0015-000000000191}, !- Inlet Port + {00000000-0000-0000-0015-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000107}, !- Handle + {00000000-0000-0000-0050-000000000069}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000293}, !- Inlet Port - {00000000-0000-0000-0015-000000000294}; !- Outlet Port + {00000000-0000-0000-0015-000000000193}, !- Inlet Port + {00000000-0000-0000-0015-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000108}, !- Handle + {00000000-0000-0000-0050-000000000070}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000295}, !- Inlet Port - {00000000-0000-0000-0015-000000000296}; !- Outlet Port + {00000000-0000-0000-0015-000000000195}, !- Inlet Port + {00000000-0000-0000-0015-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000109}, !- Handle + {00000000-0000-0000-0050-000000000071}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000297}, !- Inlet Port - {00000000-0000-0000-0015-000000000298}; !- Outlet Port + {00000000-0000-0000-0015-000000000197}, !- Inlet Port + {00000000-0000-0000-0015-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000110}, !- Handle + {00000000-0000-0000-0050-000000000072}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000299}, !- Inlet Port - {00000000-0000-0000-0015-000000000300}; !- Outlet Port + {00000000-0000-0000-0015-000000000199}, !- Inlet Port + {00000000-0000-0000-0015-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000111}, !- Handle + {00000000-0000-0000-0050-000000000073}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000301}, !- Inlet Port - {00000000-0000-0000-0015-000000000302}; !- Outlet Port + {00000000-0000-0000-0015-000000000201}, !- Inlet Port + {00000000-0000-0000-0015-000000000202}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000112}, !- Handle + {00000000-0000-0000-0050-000000000074}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000303}, !- Inlet Port - {00000000-0000-0000-0015-000000000304}; !- Outlet Port + {00000000-0000-0000-0015-000000000203}, !- Inlet Port + {00000000-0000-0000-0015-000000000204}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000113}, !- Handle + {00000000-0000-0000-0050-000000000075}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000305}, !- Inlet Port - {00000000-0000-0000-0015-000000000306}; !- Outlet Port + {00000000-0000-0000-0015-000000000205}, !- Inlet Port + {00000000-0000-0000-0015-000000000206}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000114}, !- Handle + {00000000-0000-0000-0050-000000000076}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000307}, !- Inlet Port - {00000000-0000-0000-0015-000000000308}; !- Outlet Port + {00000000-0000-0000-0015-000000000207}, !- Inlet Port + {00000000-0000-0000-0015-000000000208}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000115}, !- Handle + {00000000-0000-0000-0050-000000000077}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000309}, !- Inlet Port - {00000000-0000-0000-0015-000000000310}; !- Outlet Port + {00000000-0000-0000-0015-000000000209}, !- Inlet Port + {00000000-0000-0000-0015-000000000210}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000116}, !- Handle + {00000000-0000-0000-0050-000000000078}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000311}, !- Inlet Port - {00000000-0000-0000-0015-000000000312}; !- Outlet Port + {00000000-0000-0000-0015-000000000211}, !- Inlet Port + {00000000-0000-0000-0015-000000000212}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000117}, !- Handle + {00000000-0000-0000-0050-000000000079}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000313}, !- Inlet Port - {00000000-0000-0000-0015-000000000314}; !- Outlet Port + {00000000-0000-0000-0015-000000000213}, !- Inlet Port + {00000000-0000-0000-0015-000000000214}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000118}, !- Handle + {00000000-0000-0000-0050-000000000080}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000315}, !- Inlet Port - {00000000-0000-0000-0015-000000000316}; !- Outlet Port + {00000000-0000-0000-0015-000000000215}, !- Inlet Port + {00000000-0000-0000-0015-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000119}, !- Handle + {00000000-0000-0000-0050-000000000081}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000317}, !- Inlet Port - {00000000-0000-0000-0015-000000000318}; !- Outlet Port + {00000000-0000-0000-0015-000000000217}, !- Inlet Port + {00000000-0000-0000-0015-000000000218}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000120}, !- Handle + {00000000-0000-0000-0050-000000000082}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000319}, !- Inlet Port - {00000000-0000-0000-0015-000000000320}; !- Outlet Port + {00000000-0000-0000-0015-000000000219}, !- Inlet Port + {00000000-0000-0000-0015-000000000220}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000121}, !- Handle + {00000000-0000-0000-0050-000000000083}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000321}, !- Inlet Port - {00000000-0000-0000-0015-000000000322}; !- Outlet Port + {00000000-0000-0000-0015-000000000221}, !- Inlet Port + {00000000-0000-0000-0015-000000000222}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000122}, !- Handle + {00000000-0000-0000-0050-000000000084}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000323}, !- Inlet Port - {00000000-0000-0000-0015-000000000324}; !- Outlet Port + {00000000-0000-0000-0015-000000000223}, !- Inlet Port + {00000000-0000-0000-0015-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000123}, !- Handle + {00000000-0000-0000-0050-000000000085}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000055}, !- Inlet Port {00000000-0000-0000-0015-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000124}, !- Handle + {00000000-0000-0000-0050-000000000086}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000057}, !- Inlet Port {00000000-0000-0000-0015-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000125}, !- Handle + {00000000-0000-0000-0050-000000000087}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000059}, !- Inlet Port {00000000-0000-0000-0015-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000126}, !- Handle + {00000000-0000-0000-0050-000000000088}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000076}, !- Inlet Port {00000000-0000-0000-0015-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000127}, !- Handle + {00000000-0000-0000-0050-000000000089}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000078}, !- Inlet Port {00000000-0000-0000-0015-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000128}, !- Handle + {00000000-0000-0000-0050-000000000090}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000080}, !- Inlet Port {00000000-0000-0000-0015-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000129}, !- Handle + {00000000-0000-0000-0050-000000000091}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000252}, !- Inlet Port - {00000000-0000-0000-0015-000000000253}; !- Outlet Port + {00000000-0000-0000-0015-000000000152}, !- Inlet Port + {00000000-0000-0000-0015-000000000153}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000130}, !- Handle + {00000000-0000-0000-0050-000000000092}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000254}, !- Inlet Port - {00000000-0000-0000-0015-000000000255}; !- Outlet Port + {00000000-0000-0000-0015-000000000154}, !- Inlet Port + {00000000-0000-0000-0015-000000000155}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000131}, !- Handle + {00000000-0000-0000-0050-000000000093}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000244}, !- Inlet Port - {00000000-0000-0000-0015-000000000256}; !- Outlet Port + {00000000-0000-0000-0015-000000000144}, !- Inlet Port + {00000000-0000-0000-0015-000000000156}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000132}, !- Handle + {00000000-0000-0000-0050-000000000094}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000257}, !- Inlet Port - {00000000-0000-0000-0015-000000000258}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000133}, !- Handle - Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000259}, !- Inlet Port - {00000000-0000-0000-0015-000000000260}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000134}, !- Handle - Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000262}, !- Inlet Port - {00000000-0000-0000-0015-000000000263}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000135}, !- Handle - Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Demand Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000067}, !- Inlet Port - {00000000-0000-0000-0015-000000000083}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000136}, !- Handle - Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Demand Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000084}, !- Inlet Port - {00000000-0000-0000-0015-000000000085}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000137}, !- Handle - Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000038}, !- Inlet Port - {00000000-0000-0000-0015-000000000048}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000138}, !- Handle - Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000049}, !- Inlet Port - {00000000-0000-0000-0015-000000000050}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000139}, !- Handle - Pump Variable Speed 1 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000046}, !- Inlet Port - {00000000-0000-0000-0015-000000000047}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000140}, !- Handle - Pump Variable Speed 2 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000071}, !- Inlet Port - {00000000-0000-0000-0015-000000000072}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000141}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000086}, !- Inlet Port - {00000000-0000-0000-0015-000000000087}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000142}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000088}, !- Inlet Port - {00000000-0000-0000-0015-000000000089}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000143}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000051}, !- Inlet Port - {00000000-0000-0000-0015-000000000052}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000144}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000053}, !- Inlet Port - {00000000-0000-0000-0015-000000000054}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000145}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000157}, !- Inlet Port {00000000-0000-0000-0015-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000146}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000207}, !- Inlet Port - {00000000-0000-0000-0015-000000000208}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000147}, !- Handle - Sys6 Return Fan Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000107}, !- Inlet Port - {00000000-0000-0000-0015-000000000108}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000148}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000141}, !- Inlet Port - {00000000-0000-0000-0015-000000000143}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000149}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000144}, !- Inlet Port - {00000000-0000-0000-0015-000000000142}; !- Outlet Port + {00000000-0000-0000-0050-000000000095}, !- Handle + Pipe Adiabatic 7 Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000159}, !- Inlet Port + {00000000-0000-0000-0015-000000000160}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000150}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0015-000000000154}, !- Inlet Port - {00000000-0000-0000-0015-000000000155}; !- Outlet Port + {00000000-0000-0000-0050-000000000096}, !- Handle + Pipe Adiabatic 8 Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000162}, !- Inlet Port + {00000000-0000-0000-0015-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000151}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0015-000000000331}; !- Outlet Port + {00000000-0000-0000-0050-000000000097}, !- Handle + Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000067}, !- Inlet Port + {00000000-0000-0000-0015-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000152}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0015-000000000336}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0050-000000000098}, !- Handle + Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000084}, !- Inlet Port + {00000000-0000-0000-0015-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000153}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000139}, !- Inlet Port - {00000000-0000-0000-0015-000000000156}; !- Outlet Port + {00000000-0000-0000-0050-000000000099}, !- Handle + Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000038}, !- Inlet Port + {00000000-0000-0000-0015-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000154}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000149}, !- Inlet Port - {00000000-0000-0000-0015-000000000140}; !- Outlet Port + {00000000-0000-0000-0050-000000000100}, !- Handle + Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000049}, !- Inlet Port + {00000000-0000-0000-0015-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000155}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000191}, !- Inlet Port - {00000000-0000-0000-0015-000000000193}; !- Outlet Port + {00000000-0000-0000-0050-000000000101}, !- Handle + Pump Variable Speed 1 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000046}, !- Inlet Port + {00000000-0000-0000-0015-000000000047}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000156}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000194}, !- Inlet Port - {00000000-0000-0000-0015-000000000192}; !- Outlet Port + {00000000-0000-0000-0050-000000000102}, !- Handle + Pump Variable Speed 2 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000071}, !- Inlet Port + {00000000-0000-0000-0015-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000157}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0015-000000000204}, !- Inlet Port - {00000000-0000-0000-0015-000000000205}; !- Outlet Port + {00000000-0000-0000-0050-000000000103}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000086}, !- Inlet Port + {00000000-0000-0000-0015-000000000087}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000158}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0015-000000000337}; !- Outlet Port + {00000000-0000-0000-0050-000000000104}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000088}, !- Inlet Port + {00000000-0000-0000-0015-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000159}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0015-000000000342}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0050-000000000105}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000051}, !- Inlet Port + {00000000-0000-0000-0015-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000160}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000189}, !- Inlet Port - {00000000-0000-0000-0015-000000000206}; !- Outlet Port + {00000000-0000-0000-0050-000000000106}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000053}, !- Inlet Port + {00000000-0000-0000-0015-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000161}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000199}, !- Inlet Port - {00000000-0000-0000-0015-000000000190}; !- Outlet Port + {00000000-0000-0000-0050-000000000107}, !- Handle + Sys6 Return Fan Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000107}, !- Inlet Port + {00000000-0000-0000-0015-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000162}, !- Handle + {00000000-0000-0000-0050-000000000108}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000092}, !- Inlet Port {00000000-0000-0000-0015-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000163}, !- Handle + {00000000-0000-0000-0050-000000000109}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000095}, !- Inlet Port {00000000-0000-0000-0015-000000000093}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000164}, !- Handle + {00000000-0000-0000-0050-000000000110}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0015-000000000104}, !- Inlet Port {00000000-0000-0000-0015-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000165}, !- Handle + {00000000-0000-0000-0050-000000000111}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0015-000000000325}; !- Outlet Port + {00000000-0000-0000-0015-000000000225}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000166}, !- Handle + {00000000-0000-0000-0050-000000000112}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0015-000000000330}, !- Inlet Port + {00000000-0000-0000-0015-000000000230}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000167}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000090}, !- Inlet Port {00000000-0000-0000-0015-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000168}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000099}, !- Inlet Port {00000000-0000-0000-0015-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000169}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000332}, !- Inlet Port - {00000000-0000-0000-0015-000000000333}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000170}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000334}, !- Inlet Port - {00000000-0000-0000-0015-000000000335}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000171}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000338}, !- Inlet Port - {00000000-0000-0000-0015-000000000339}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000172}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000340}, !- Inlet Port - {00000000-0000-0000-0015-000000000341}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0050-000000000173}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000326}, !- Inlet Port - {00000000-0000-0000-0015-000000000327}; !- Outlet Port + {00000000-0000-0000-0015-000000000226}, !- Inlet Port + {00000000-0000-0000-0015-000000000227}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000174}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000328}, !- Inlet Port - {00000000-0000-0000-0015-000000000329}; !- Outlet Port + {00000000-0000-0000-0015-000000000228}, !- Inlet Port + {00000000-0000-0000-0015-000000000229}; !- Outlet Port OS:OutputControl:ReportingTolerances, {00000000-0000-0000-0051-000000000001}, !- Handle @@ -6082,7 +4063,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0064-000000000024}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0064-000000000022}, !- Work Efficiency Schedule Name {00000000-0000-0000-0064-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0064-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -6123,26 +4104,26 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0015-000000000253}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000254}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000153}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000154}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0015-000000000256}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000257}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000156}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000157}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0015-000000000260}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000261}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000160}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000161}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0015-000000000263}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000264}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000163}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000164}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0055-000000000001}, !- Handle @@ -6153,7 +4134,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000069}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000039}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -6167,7 +4148,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -6189,7 +4170,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000085}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000047}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -6203,7 +4184,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -6225,21 +4206,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000098}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000060}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0015-000000000239}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0015-000000000241}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0015-000000000139}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0015-000000000141}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0015-000000000242}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0015-000000000245}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000142}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0015-000000000145}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -6254,8 +4235,7 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0056-000000000001}, !- Handle - {00000000-0000-0000-0091-000000000013}, !- HVAC Component - {00000000-0000-0000-0015-000000000159}; !- Port 1 + {00000000-0000-0000-0091-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000002}, !- Handle @@ -6263,13 +4243,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000003}, !- Handle - {00000000-0000-0000-0091-000000000013}, !- HVAC Component - {00000000-0000-0000-0015-000000000160}; !- Port 1 + {00000000-0000-0000-0091-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000004}, !- Handle - {00000000-0000-0000-0091-000000000018}, !- HVAC Component - {00000000-0000-0000-0015-000000000215}; !- Port 1 + {00000000-0000-0000-0091-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000005}, !- Handle @@ -6277,13 +4255,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000006}, !- Handle - {00000000-0000-0000-0091-000000000018}, !- HVAC Component - {00000000-0000-0000-0015-000000000216}; !- Port 1 + {00000000-0000-0000-0091-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000007}, !- Handle - {00000000-0000-0000-0091-000000000014}, !- HVAC Component - {00000000-0000-0000-0015-000000000221}; !- Port 1 + {00000000-0000-0000-0091-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000008}, !- Handle @@ -6291,13 +4267,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000009}, !- Handle - {00000000-0000-0000-0091-000000000014}, !- HVAC Component - {00000000-0000-0000-0015-000000000222}; !- Port 1 + {00000000-0000-0000-0091-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000010}, !- Handle - {00000000-0000-0000-0091-000000000015}, !- HVAC Component - {00000000-0000-0000-0015-000000000209}; !- Port 1 + {00000000-0000-0000-0091-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000011}, !- Handle @@ -6305,13 +4279,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000012}, !- Handle - {00000000-0000-0000-0091-000000000015}, !- HVAC Component - {00000000-0000-0000-0015-000000000210}; !- Port 1 + {00000000-0000-0000-0091-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000013}, !- Handle - {00000000-0000-0000-0091-000000000009}, !- HVAC Component - {00000000-0000-0000-0015-000000000183}; !- Port 1 + {00000000-0000-0000-0091-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000014}, !- Handle @@ -6319,8 +4291,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000015}, !- Handle - {00000000-0000-0000-0091-000000000009}, !- HVAC Component - {00000000-0000-0000-0015-000000000184}; !- Port 1 + {00000000-0000-0000-0091-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000016}, !- Handle @@ -6338,8 +4309,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000019}, !- Handle - {00000000-0000-0000-0091-000000000016}, !- HVAC Component - {00000000-0000-0000-0015-000000000227}; !- Port 1 + {00000000-0000-0000-0091-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000020}, !- Handle @@ -6347,13 +4317,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000021}, !- Handle - {00000000-0000-0000-0091-000000000016}, !- HVAC Component - {00000000-0000-0000-0015-000000000228}; !- Port 1 + {00000000-0000-0000-0091-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000022}, !- Handle - {00000000-0000-0000-0091-000000000010}, !- HVAC Component - {00000000-0000-0000-0015-000000000177}; !- Port 1 + {00000000-0000-0000-0091-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000023}, !- Handle @@ -6361,8 +4329,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000024}, !- Handle - {00000000-0000-0000-0091-000000000010}, !- HVAC Component - {00000000-0000-0000-0015-000000000178}; !- Port 1 + {00000000-0000-0000-0091-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000025}, !- Handle @@ -6378,8 +4345,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000028}, !- Handle - {00000000-0000-0000-0091-000000000017}, !- HVAC Component - {00000000-0000-0000-0015-000000000233}; !- Port 1 + {00000000-0000-0000-0091-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000029}, !- Handle @@ -6387,8 +4353,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000030}, !- Handle - {00000000-0000-0000-0091-000000000017}, !- HVAC Component - {00000000-0000-0000-0015-000000000234}; !- Port 1 + {00000000-0000-0000-0091-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000031}, !- Handle @@ -6418,8 +4383,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000037}, !- Handle - {00000000-0000-0000-0091-000000000011}, !- HVAC Component - {00000000-0000-0000-0015-000000000165}; !- Port 1 + {00000000-0000-0000-0091-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000038}, !- Handle @@ -6427,8 +4391,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000039}, !- Handle - {00000000-0000-0000-0091-000000000011}, !- HVAC Component - {00000000-0000-0000-0015-000000000166}; !- Port 1 + {00000000-0000-0000-0091-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000040}, !- Handle @@ -6458,8 +4421,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000046}, !- Handle - {00000000-0000-0000-0091-000000000012}, !- HVAC Component - {00000000-0000-0000-0015-000000000171}; !- Port 1 + {00000000-0000-0000-0091-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000047}, !- Handle @@ -6467,8 +4429,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000048}, !- Handle - {00000000-0000-0000-0091-000000000012}, !- HVAC Component - {00000000-0000-0000-0015-000000000172}; !- Port 1 + {00000000-0000-0000-0091-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0056-000000000049}, !- Handle @@ -6501,8 +4462,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0057-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0015-000000000246}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000247}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000146}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000147}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 446362.499964258, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -6526,9 +4487,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0015-000000000045}, !- Inlet Node Name {00000000-0000-0000-0015-000000000046}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 245116.872009805, !- Rated Pump Head {Pa} + 236900.664009476, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.865, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -6559,9 +4520,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0015-000000000070}, !- Inlet Node Name {00000000-0000-0000-0015-000000000071}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 215264.649608611, !- Rated Pump Head {Pa} + 210100.176008404, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.917, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -7358,33 +5319,6 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000037}, !- Handle - Schedule Day 10, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000038}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000039}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7393,7 +5327,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000041}, !- Handle + {00000000-0000-0000-0062-000000000038}, !- Handle Schedule Day 3, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7471,9 +5405,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000042}, !- Handle + {00000000-0000-0000-0062-000000000039}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7549,25 +5483,25 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000043}, !- Handle + {00000000-0000-0000-0062-000000000040}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000044}, !- Handle + {00000000-0000-0000-0062-000000000041}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000045}, !- Handle + {00000000-0000-0000-0062-000000000042}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7576,7 +5510,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000046}, !- Handle + {00000000-0000-0000-0062-000000000043}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7585,16 +5519,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000047}, !- Handle - Schedule Day 9, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000048}, !- Handle + {00000000-0000-0000-0062-000000000044}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7603,34 +5528,16 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000049}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000050}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000051}, !- Handle + {00000000-0000-0000-0062-000000000045}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000052}, !- Handle + {00000000-0000-0000-0062-000000000046}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7639,7 +5546,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000053}, !- Handle + {00000000-0000-0000-0062-000000000047}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7648,7 +5555,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000054}, !- Handle + {00000000-0000-0000-0062-000000000048}, !- Handle satCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7726,7 +5633,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000055}, !- Handle + {00000000-0000-0000-0062-000000000049}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7804,9 +5711,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000056}, !- Handle + {00000000-0000-0000-0062-000000000050}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7882,7 +5789,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000057}, !- Handle + {00000000-0000-0000-0062-000000000051}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7960,7 +5867,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000058}, !- Handle + {00000000-0000-0000-0062-000000000052}, !- Handle sunCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8038,7 +5945,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000059}, !- Handle + {00000000-0000-0000-0062-000000000053}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8116,9 +6023,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000060}, !- Handle + {00000000-0000-0000-0062-000000000054}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -8194,7 +6101,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000061}, !- Handle + {00000000-0000-0000-0062-000000000055}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8272,73 +6179,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000062}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000063}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000064}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000065}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000066}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000067}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0062-000000000068}, !- Handle + {00000000-0000-0000-0062-000000000056}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8353,7 +6194,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000069}, !- Handle + {00000000-0000-0000-0062-000000000057}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8362,7 +6203,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000070}, !- Handle + {00000000-0000-0000-0062-000000000058}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8371,7 +6212,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000071}, !- Handle + {00000000-0000-0000-0062-000000000059}, !- Handle wkdCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8449,7 +6290,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000072}, !- Handle + {00000000-0000-0000-0062-000000000060}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8527,9 +6368,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000073}, !- Handle + {00000000-0000-0000-0062-000000000061}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -8605,7 +6446,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000074}, !- Handle + {00000000-0000-0000-0062-000000000062}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -8913,9 +6754,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0064-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0064-000000000023}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000042}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8932,9 +6773,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0064-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0064-000000000023}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000046}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8950,82 +6791,6 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000015}, !- Handle - Schedule Rule 22, !- Name - {00000000-0000-0000-0064-000000000025}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0062-000000000047}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000016}, !- Handle - Schedule Rule 23, !- Name - {00000000-0000-0000-0064-000000000025}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0062-000000000037}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0064-000000000026}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0062-000000000038}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0064-000000000026}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0062-000000000039}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0064-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -9044,7 +6809,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000020}, !- Handle + {00000000-0000-0000-0063-000000000016}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0064-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -9063,7 +6828,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000021}, !- Handle + {00000000-0000-0000-0063-000000000017}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0064-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order @@ -9082,7 +6847,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000022}, !- Handle + {00000000-0000-0000-0063-000000000018}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0064-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -9101,7 +6866,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000023}, !- Handle + {00000000-0000-0000-0063-000000000019}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0064-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -9120,7 +6885,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000024}, !- Handle + {00000000-0000-0000-0063-000000000020}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0064-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -9139,7 +6904,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000025}, !- Handle + {00000000-0000-0000-0063-000000000021}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0064-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -9158,11 +6923,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000026}, !- Handle + {00000000-0000-0000-0063-000000000022}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000048}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9177,11 +6942,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000027}, !- Handle + {00000000-0000-0000-0063-000000000023}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000050}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9196,11 +6961,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000028}, !- Handle + {00000000-0000-0000-0063-000000000024}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000058}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000052}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9215,11 +6980,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000029}, !- Handle + {00000000-0000-0000-0063-000000000025}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000060}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -9234,11 +6999,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000030}, !- Handle + {00000000-0000-0000-0063-000000000026}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0062-000000000071}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000059}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -9253,11 +7018,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000031}, !- Handle + {00000000-0000-0000-0063-000000000027}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0062-000000000073}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000061}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -9287,13 +7052,13 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000003}, !- Handle CHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000038}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000042}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000039}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000005}, !- Handle @@ -9372,74 +7137,46 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000043}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000040}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000020}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000049}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000021}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000050}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000022}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000051}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000023}, !- Handle + {00000000-0000-0000-0064-000000000021}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000052}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000024}, !- Handle + {00000000-0000-0000-0064-000000000022}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000053}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000025}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000062}, !- Default Day Schedule Name - {00000000-0000-0000-0062-000000000063}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0062-000000000064}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000026}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000065}, !- Default Day Schedule Name - {00000000-0000-0000-0062-000000000066}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0062-000000000067}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0062-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000027}, !- Handle + {00000000-0000-0000-0064-000000000023}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000068}, !- Default Day Schedule Name - {00000000-0000-0000-0062-000000000069}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0062-000000000070}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0062-000000000056}, !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000057}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0062-000000000058}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0065-000000000001}, !- Handle @@ -9520,81 +7257,39 @@ OS:SetpointManager:OutdoorAirPretreat, 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000164}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000164}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000165}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000147}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000173}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0066-000000000002}, !- Handle - Setpoint Manager Outdoor Air Pretreat 2, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000150}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000150}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000151}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000145}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000169}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0066-000000000003}, !- Handle - Setpoint Manager Outdoor Air Pretreat 3, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000157}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000157}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000158}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000146}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000171}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000110}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000110}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000111}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000107}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000115}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000019}, !- Schedule Name - {00000000-0000-0000-0050-000000000098}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000060}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000003}, !- Schedule Name - {00000000-0000-0000-0050-000000000069}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000039}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000004}, !- Schedule Name - {00000000-0000-0000-0050-000000000085}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000047}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0064-000000000022}, !- Schedule Name - {00000000-0000-0000-0050-000000000168}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0067-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name - Temperature, !- Control Variable {00000000-0000-0000-0064-000000000020}, !- Schedule Name - {00000000-0000-0000-0050-000000000154}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0067-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0064-000000000021}, !- Schedule Name - {00000000-0000-0000-0050-000000000161}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000114}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0068-000000000001}, !- Handle @@ -9737,47 +7432,6 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0078-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0078-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -9817,60 +7471,19 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity -OS:Sizing:System, - {00000000-0000-0000-0078-000000000003}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - OS:Sizing:Zone, {00000000-0000-0000-0079-000000000001}, !- Handle {00000000-0000-0000-0091-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9896,16 +7509,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000002}, !- Handle {00000000-0000-0000-0091-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9931,16 +7544,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000003}, !- Handle {00000000-0000-0000-0091-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -9966,16 +7579,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000004}, !- Handle {00000000-0000-0000-0091-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10001,16 +7614,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000005}, !- Handle {00000000-0000-0000-0091-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10071,16 +7684,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000007}, !- Handle {00000000-0000-0000-0091-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10106,16 +7719,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000008}, !- Handle {00000000-0000-0000-0091-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10176,16 +7789,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000010}, !- Handle {00000000-0000-0000-0091-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10281,16 +7894,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000013}, !- Handle {00000000-0000-0000-0091-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -10386,16 +7999,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000016}, !- Handle {00000000-0000-0000-0091-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -14616,7 +12229,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0064-000000000023}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0064-000000000021}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 0.0132874553128062, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -14626,8 +12239,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0015-000000000249}, !- Use Side Inlet Node Name - {00000000-0000-0000-0015-000000000250}, !- Use Side Outlet Node Name + {00000000-0000-0000-0015-000000000149}, !- Use Side Inlet Node Name + {00000000-0000-0000-0015-000000000150}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -14650,8 +12263,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000001}, !- Handle Core_bottom WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000266}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000267}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000166}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000167}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14664,8 +12277,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000002}, !- Handle Core_mid WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000270}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000271}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000170}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000171}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14678,8 +12291,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000003}, !- Handle Core_top WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000274}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000275}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000174}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000175}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14692,8 +12305,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000278}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000279}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000178}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000179}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14706,8 +12319,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000282}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000283}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000182}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000183}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14720,8 +12333,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000286}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000287}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000186}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000187}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14734,8 +12347,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000290}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000291}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000190}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000191}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14748,8 +12361,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000294}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000295}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000194}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000195}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14762,8 +12375,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000298}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000299}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000198}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000199}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14776,8 +12389,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000302}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000303}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000202}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000203}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14790,8 +12403,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000306}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000307}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000206}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000207}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14804,8 +12417,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000310}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000311}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000210}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000211}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14818,8 +12431,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000314}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000315}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000214}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000215}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14832,8 +12445,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000318}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000319}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000218}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000219}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14846,8 +12459,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000322}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000323}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000222}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000223}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15148,102 +12761,32 @@ OS:ZoneHVAC:Baseboard:Convective:Electric, OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0103-000000000002}, !- Handle - Zone HVAC Baseboard Convective Electric 10, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000003}, !- Handle - Zone HVAC Baseboard Convective Electric 11, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000004}, !- Handle - Zone HVAC Baseboard Convective Electric 12, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000005}, !- Handle - Zone HVAC Baseboard Convective Electric 13, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000006}, !- Handle - Zone HVAC Baseboard Convective Electric 14, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000007}, !- Handle - Zone HVAC Baseboard Convective Electric 15, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000008}, !- Handle Zone HVAC Baseboard Convective Electric 2, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000009}, !- Handle + {00000000-0000-0000-0103-000000000003}, !- Handle Zone HVAC Baseboard Convective Electric 3, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000010}, !- Handle + {00000000-0000-0000-0103-000000000004}, !- Handle Zone HVAC Baseboard Convective Electric 4, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000011}, !- Handle + {00000000-0000-0000-0103-000000000005}, !- Handle Zone HVAC Baseboard Convective Electric 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000012}, !- Handle - Zone HVAC Baseboard Convective Electric 6, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000013}, !- Handle - Zone HVAC Baseboard Convective Electric 7, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000014}, !- Handle - Zone HVAC Baseboard Convective Electric 8, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - -OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0103-000000000015}, !- Handle - Zone HVAC Baseboard Convective Electric 9, !- Name - {00000000-0000-0000-0061-000000000001}, !- Availability Schedule - autosize, !- Nominal Capacity {W} - 1; !- Efficiency - OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name @@ -15267,12 +12810,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000009}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000003}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15283,12 +12826,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000008}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15299,12 +12842,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000010}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000004}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15315,12 +12858,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000011}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000005}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -15346,159 +12889,59 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000012}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 30ab6bca36..38abe076c4 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -3811,41 +3811,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d56297e9-8239-45d6-82de-7fcd5d0af3b2}<23.9 && {d56297e9-8239-45d6-82de-7fcd5d0af3b2}>1.7, !- Program Line 1 - SET {cd8bca84-2ba1-43cd-80b1-7d0755ffabea} = 29.4, !- Program Line 2 - SET {43eccb01-6b1c-4508-a5a0-14588d26fe38} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d56297e9-8239-45d6-82de-7fcd5d0af3b2}<23.9 && {d56297e9-8239-45d6-82de-7fcd5d0af3b2}>1.7, !- Program Line 4 - SET {cd8bca84-2ba1-43cd-80b1-7d0755ffabea} = 29.4, !- Program Line 5 - SET {43eccb01-6b1c-4508-a5a0-14588d26fe38} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d56297e9-8239-45d6-82de-7fcd5d0af3b2}<23.9 && {d56297e9-8239-45d6-82de-7fcd5d0af3b2}>1.7, !- Program Line 7 - SET {cd8bca84-2ba1-43cd-80b1-7d0755ffabea} = 29.4, !- Program Line 8 - SET {43eccb01-6b1c-4508-a5a0-14588d26fe38} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d56297e9-8239-45d6-82de-7fcd5d0af3b2}<23.9 && {d56297e9-8239-45d6-82de-7fcd5d0af3b2}>1.7, !- Program Line 10 - SET {cd8bca84-2ba1-43cd-80b1-7d0755ffabea} = 29.4, !- Program Line 11 - SET {43eccb01-6b1c-4508-a5a0-14588d26fe38} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c067650b-1655-4f4d-973b-8ac637e0c59d}<23.9 && {c067650b-1655-4f4d-973b-8ac637e0c59d}>1.7, !- Program Line 1 + SET {69df0aea-bc30-4315-87ab-c39bf685dd7c} = 29.4, !- Program Line 2 + SET {ee05b75b-8c51-43ae-b736-edfed22cc953} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c067650b-1655-4f4d-973b-8ac637e0c59d}<23.9 && {c067650b-1655-4f4d-973b-8ac637e0c59d}>1.7, !- Program Line 4 + SET {69df0aea-bc30-4315-87ab-c39bf685dd7c} = 29.4, !- Program Line 5 + SET {ee05b75b-8c51-43ae-b736-edfed22cc953} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c067650b-1655-4f4d-973b-8ac637e0c59d}<23.9 && {c067650b-1655-4f4d-973b-8ac637e0c59d}>1.7, !- Program Line 7 + SET {69df0aea-bc30-4315-87ab-c39bf685dd7c} = 29.4, !- Program Line 8 + SET {ee05b75b-8c51-43ae-b736-edfed22cc953} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c067650b-1655-4f4d-973b-8ac637e0c59d}<23.9 && {c067650b-1655-4f4d-973b-8ac637e0c59d}>1.7, !- Program Line 10 + SET {69df0aea-bc30-4315-87ab-c39bf685dd7c} = 29.4, !- Program Line 11 + SET {ee05b75b-8c51-43ae-b736-edfed22cc953} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {cd8bca84-2ba1-43cd-80b1-7d0755ffabea} = NULL, !- Program Line 14 - SET {43eccb01-6b1c-4508-a5a0-14588d26fe38} = NULL, !- Program Line 15 + SET {69df0aea-bc30-4315-87ab-c39bf685dd7c} = NULL, !- Program Line 14 + SET {ee05b75b-8c51-43ae-b736-edfed22cc953} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c35cf052-1a3a-4104-b456-d5f360994002}<23.9 && {c35cf052-1a3a-4104-b456-d5f360994002}>1.7, !- Program Line 1 - SET {c074be95-794f-43fd-bb11-7f96672b78d1} = 29.4, !- Program Line 2 - SET {d0a16e42-2880-4b16-a368-14e2128d2a23} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c35cf052-1a3a-4104-b456-d5f360994002}<23.9 && {c35cf052-1a3a-4104-b456-d5f360994002}>1.7, !- Program Line 4 - SET {c074be95-794f-43fd-bb11-7f96672b78d1} = 29.4, !- Program Line 5 - SET {d0a16e42-2880-4b16-a368-14e2128d2a23} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c35cf052-1a3a-4104-b456-d5f360994002}<23.9 && {c35cf052-1a3a-4104-b456-d5f360994002}>1.7, !- Program Line 7 - SET {c074be95-794f-43fd-bb11-7f96672b78d1} = 29.4, !- Program Line 8 - SET {d0a16e42-2880-4b16-a368-14e2128d2a23} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c35cf052-1a3a-4104-b456-d5f360994002}<23.9 && {c35cf052-1a3a-4104-b456-d5f360994002}>1.7, !- Program Line 10 - SET {c074be95-794f-43fd-bb11-7f96672b78d1} = 29.4, !- Program Line 11 - SET {d0a16e42-2880-4b16-a368-14e2128d2a23} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {939c5da2-31b5-4d1d-99bc-ca2718b1c724}<23.9 && {939c5da2-31b5-4d1d-99bc-ca2718b1c724}>1.7, !- Program Line 1 + SET {2f42a5fc-3914-4fa3-94e1-75f9ca12bbb5} = 29.4, !- Program Line 2 + SET {9e591166-6481-4f9f-9e7b-352f76c80521} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {939c5da2-31b5-4d1d-99bc-ca2718b1c724}<23.9 && {939c5da2-31b5-4d1d-99bc-ca2718b1c724}>1.7, !- Program Line 4 + SET {2f42a5fc-3914-4fa3-94e1-75f9ca12bbb5} = 29.4, !- Program Line 5 + SET {9e591166-6481-4f9f-9e7b-352f76c80521} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {939c5da2-31b5-4d1d-99bc-ca2718b1c724}<23.9 && {939c5da2-31b5-4d1d-99bc-ca2718b1c724}>1.7, !- Program Line 7 + SET {2f42a5fc-3914-4fa3-94e1-75f9ca12bbb5} = 29.4, !- Program Line 8 + SET {9e591166-6481-4f9f-9e7b-352f76c80521} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {939c5da2-31b5-4d1d-99bc-ca2718b1c724}<23.9 && {939c5da2-31b5-4d1d-99bc-ca2718b1c724}>1.7, !- Program Line 10 + SET {2f42a5fc-3914-4fa3-94e1-75f9ca12bbb5} = 29.4, !- Program Line 11 + SET {9e591166-6481-4f9f-9e7b-352f76c80521} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c074be95-794f-43fd-bb11-7f96672b78d1} = NULL, !- Program Line 14 - SET {d0a16e42-2880-4b16-a368-14e2128d2a23} = NULL, !- Program Line 15 + SET {2f42a5fc-3914-4fa3-94e1-75f9ca12bbb5} = NULL, !- Program Line 14 + SET {9e591166-6481-4f9f-9e7b-352f76c80521} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index bcb0eff011..e88870e530 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -3881,41 +3881,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a8de86e0-98f5-4b2e-ab7a-e273f7753121}<23.9 && {a8de86e0-98f5-4b2e-ab7a-e273f7753121}>1.7, !- Program Line 1 - SET {db9a118a-c709-4d35-91d6-3f958b800022} = 29.4, !- Program Line 2 - SET {3faab56c-44cd-4298-9550-2f0eed0627e3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a8de86e0-98f5-4b2e-ab7a-e273f7753121}<23.9 && {a8de86e0-98f5-4b2e-ab7a-e273f7753121}>1.7, !- Program Line 4 - SET {db9a118a-c709-4d35-91d6-3f958b800022} = 29.4, !- Program Line 5 - SET {3faab56c-44cd-4298-9550-2f0eed0627e3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a8de86e0-98f5-4b2e-ab7a-e273f7753121}<23.9 && {a8de86e0-98f5-4b2e-ab7a-e273f7753121}>1.7, !- Program Line 7 - SET {db9a118a-c709-4d35-91d6-3f958b800022} = 29.4, !- Program Line 8 - SET {3faab56c-44cd-4298-9550-2f0eed0627e3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a8de86e0-98f5-4b2e-ab7a-e273f7753121}<23.9 && {a8de86e0-98f5-4b2e-ab7a-e273f7753121}>1.7, !- Program Line 10 - SET {db9a118a-c709-4d35-91d6-3f958b800022} = 29.4, !- Program Line 11 - SET {3faab56c-44cd-4298-9550-2f0eed0627e3} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3692ebf3-1ee7-451b-9909-f7110ab35b00}<23.9 && {3692ebf3-1ee7-451b-9909-f7110ab35b00}>1.7, !- Program Line 1 + SET {71aec939-ed4c-456d-8165-2cfb8fc53f68} = 29.4, !- Program Line 2 + SET {553b7900-2d66-44f8-aae8-a177cb61a1fa} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3692ebf3-1ee7-451b-9909-f7110ab35b00}<23.9 && {3692ebf3-1ee7-451b-9909-f7110ab35b00}>1.7, !- Program Line 4 + SET {71aec939-ed4c-456d-8165-2cfb8fc53f68} = 29.4, !- Program Line 5 + SET {553b7900-2d66-44f8-aae8-a177cb61a1fa} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3692ebf3-1ee7-451b-9909-f7110ab35b00}<23.9 && {3692ebf3-1ee7-451b-9909-f7110ab35b00}>1.7, !- Program Line 7 + SET {71aec939-ed4c-456d-8165-2cfb8fc53f68} = 29.4, !- Program Line 8 + SET {553b7900-2d66-44f8-aae8-a177cb61a1fa} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3692ebf3-1ee7-451b-9909-f7110ab35b00}<23.9 && {3692ebf3-1ee7-451b-9909-f7110ab35b00}>1.7, !- Program Line 10 + SET {71aec939-ed4c-456d-8165-2cfb8fc53f68} = 29.4, !- Program Line 11 + SET {553b7900-2d66-44f8-aae8-a177cb61a1fa} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {db9a118a-c709-4d35-91d6-3f958b800022} = NULL, !- Program Line 14 - SET {3faab56c-44cd-4298-9550-2f0eed0627e3} = NULL, !- Program Line 15 + SET {71aec939-ed4c-456d-8165-2cfb8fc53f68} = NULL, !- Program Line 14 + SET {553b7900-2d66-44f8-aae8-a177cb61a1fa} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_e_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {da1a4551-db2e-4a01-ab6e-0abf0b0835c7}<23.9 && {da1a4551-db2e-4a01-ab6e-0abf0b0835c7}>1.7, !- Program Line 1 - SET {d2f233b7-2f61-4284-b658-113cee9fa4ab} = 29.4, !- Program Line 2 - SET {fb511abd-68a7-41e6-b7c8-b0810f618a1f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {da1a4551-db2e-4a01-ab6e-0abf0b0835c7}<23.9 && {da1a4551-db2e-4a01-ab6e-0abf0b0835c7}>1.7, !- Program Line 4 - SET {d2f233b7-2f61-4284-b658-113cee9fa4ab} = 29.4, !- Program Line 5 - SET {fb511abd-68a7-41e6-b7c8-b0810f618a1f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {da1a4551-db2e-4a01-ab6e-0abf0b0835c7}<23.9 && {da1a4551-db2e-4a01-ab6e-0abf0b0835c7}>1.7, !- Program Line 7 - SET {d2f233b7-2f61-4284-b658-113cee9fa4ab} = 29.4, !- Program Line 8 - SET {fb511abd-68a7-41e6-b7c8-b0810f618a1f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {da1a4551-db2e-4a01-ab6e-0abf0b0835c7}<23.9 && {da1a4551-db2e-4a01-ab6e-0abf0b0835c7}>1.7, !- Program Line 10 - SET {d2f233b7-2f61-4284-b658-113cee9fa4ab} = 29.4, !- Program Line 11 - SET {fb511abd-68a7-41e6-b7c8-b0810f618a1f} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {10f1fdf7-0749-4166-97f8-d06fdb8d9b4b}<23.9 && {10f1fdf7-0749-4166-97f8-d06fdb8d9b4b}>1.7, !- Program Line 1 + SET {38cdc6cf-27ac-4a8f-8f81-7630e977c1d9} = 29.4, !- Program Line 2 + SET {93a16c36-9648-454b-a9ca-9bda2617fb8b} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {10f1fdf7-0749-4166-97f8-d06fdb8d9b4b}<23.9 && {10f1fdf7-0749-4166-97f8-d06fdb8d9b4b}>1.7, !- Program Line 4 + SET {38cdc6cf-27ac-4a8f-8f81-7630e977c1d9} = 29.4, !- Program Line 5 + SET {93a16c36-9648-454b-a9ca-9bda2617fb8b} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {10f1fdf7-0749-4166-97f8-d06fdb8d9b4b}<23.9 && {10f1fdf7-0749-4166-97f8-d06fdb8d9b4b}>1.7, !- Program Line 7 + SET {38cdc6cf-27ac-4a8f-8f81-7630e977c1d9} = 29.4, !- Program Line 8 + SET {93a16c36-9648-454b-a9ca-9bda2617fb8b} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {10f1fdf7-0749-4166-97f8-d06fdb8d9b4b}<23.9 && {10f1fdf7-0749-4166-97f8-d06fdb8d9b4b}>1.7, !- Program Line 10 + SET {38cdc6cf-27ac-4a8f-8f81-7630e977c1d9} = 29.4, !- Program Line 11 + SET {93a16c36-9648-454b-a9ca-9bda2617fb8b} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {d2f233b7-2f61-4284-b658-113cee9fa4ab} = NULL, !- Program Line 14 - SET {fb511abd-68a7-41e6-b7c8-b0810f618a1f} = NULL, !- Program Line 15 + SET {38cdc6cf-27ac-4a8f-8f81-7630e977c1d9} = NULL, !- Program Line 14 + SET {93a16c36-9648-454b-a9ca-9bda2617fb8b} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm index 6cdf6b38bb..8fe1f18b5c 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0066-000000000027}, !- Object Name + {00000000-0000-0000-0066-000000000023}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.066608825093468, !- Feature Value 1 @@ -16,94 +16,18 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0066-000000000025}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.066608825093468, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0066-000000000026}, !- Object Name - max_occ_in_spaces, !- Feature Name 1 - Double, !- Feature Data Type 1 - 83.066608825093468, !- Feature Value 1 - number_of_spaces_included, !- Feature Name 2 - Integer, !- Feature Data Type 2 - 5, !- Feature Value 2 - date_parent_object_last_edited, !- Feature Name 3 - String, !- Feature Data Type 3 - 2024-01-01 01:00:00 UTC, !- Feature Value 3 - date_parent_object_created, !- Feature Name 4 - String, !- Feature Data Type 4 - 2024-01-01 01:00:00 UTC; !- Feature Value 4 - -OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000004}, !- Handle {00000000-0000-0000-0012-000000000001}; !- Object Name OS:AdditionalProperties, - {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0001-000000000003}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name - , !- Controller List Name - {00000000-0000-0000-0066-000000000025}, !- Availability Schedule - {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000207}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000210}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000209}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000208}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000002}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name - , !- Controller List Name - {00000000-0000-0000-0066-000000000026}, !- Availability Schedule - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name - autosize, !- Design Supply Air Flow Rate {m3/s} - 1, !- Design Return Air Flow Fraction of Supply Air Flow - , !- Branch List Name - , !- Connector List Name - {00000000-0000-0000-0017-000000000301}, !- Supply Side Inlet Node Name - {00000000-0000-0000-0017-000000000304}, !- Demand Side Outlet Node Name - {00000000-0000-0000-0017-000000000303}, !- Demand Side Inlet Node A - {00000000-0000-0000-0017-000000000302}, !- Supply Side Outlet Node A - , !- Demand Side Inlet Node B - , !- Supply Side Outlet Node B - , !- Return Air Bypass Flow Temperature Setpoint Schedule Name - {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name - {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name - , !- Demand Splitter B Name - ; !- Supply Splitter Name - -OS:AirLoopHVAC, - {00000000-0000-0000-0002-000000000003}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0066-000000000027}, !- Availability Schedule - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0066-000000000023}, !- Availability Schedule + {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -127,32 +51,10 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000132}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000483}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000484}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000295}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000296}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000136}; !- Return Air Stream Node Name -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000002}, !- Handle - Air Loop HVAC Outdoor Air System 2, !- Name - {00000000-0000-0000-0022-000000000002}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000226}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000489}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000490}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000230}; !- Return Air Stream Node Name - -OS:AirLoopHVAC:OutdoorAirSystem, - {00000000-0000-0000-0003-000000000003}, !- Handle - Air Loop HVAC Outdoor Air System 3, !- Name - {00000000-0000-0000-0022-000000000003}, !- Controller Name - , !- Outdoor Air Equipment List Name - , !- Availability Manager List Name - {00000000-0000-0000-0017-000000000320}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000495}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000496}, !- Relief Air Stream Node Name - {00000000-0000-0000-0017-000000000324}; !- Return Air Stream Node Name - OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -163,26 +65,6 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000189}, !- Inlet Node Name 4 {00000000-0000-0000-0017-000000000203}; !- Inlet Node Name 5 -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000002}, !- Handle - Air Loop HVAC Zone Mixer 2, !- Name - {00000000-0000-0000-0017-000000000212}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000241}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000255}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000269}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000283}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000297}; !- Inlet Node Name 5 - -OS:AirLoopHVAC:ZoneMixer, - {00000000-0000-0000-0004-000000000003}, !- Handle - Air Loop HVAC Zone Mixer 3, !- Name - {00000000-0000-0000-0017-000000000306}, !- Outlet Node Name - {00000000-0000-0000-0017-000000000335}, !- Inlet Node Name 1 - {00000000-0000-0000-0017-000000000349}, !- Inlet Node Name 2 - {00000000-0000-0000-0017-000000000363}, !- Inlet Node Name 3 - {00000000-0000-0000-0017-000000000377}, !- Inlet Node Name 4 - {00000000-0000-0000-0017-000000000391}; !- Inlet Node Name 5 - OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -193,26 +75,6 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000190}, !- Outlet Node Name 4 {00000000-0000-0000-0017-000000000204}; !- Outlet Node Name 5 -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000002}, !- Handle - Air Loop HVAC Zone Splitter 2, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000242}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000256}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000270}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000284}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000298}; !- Outlet Node Name 5 - -OS:AirLoopHVAC:ZoneSplitter, - {00000000-0000-0000-0005-000000000003}, !- Handle - Air Loop HVAC Zone Splitter 3, !- Name - {00000000-0000-0000-0017-000000000305}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000336}, !- Outlet Node Name 1 - {00000000-0000-0000-0017-000000000350}, !- Outlet Node Name 2 - {00000000-0000-0000-0017-000000000364}, !- Outlet Node Name 3 - {00000000-0000-0000-0017-000000000378}, !- Outlet Node Name 4 - {00000000-0000-0000-0017-000000000392}; !- Outlet Node Name 5 - OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -223,7 +85,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000011}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000150}, !- Air Outlet Node Name @@ -236,132 +98,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle - Air Terminal Single Duct VAV Reheat 10, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000299}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000300}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle - Air Terminal Single Duct VAV Reheat 11, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000337}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000338}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle - Air Terminal Single Duct VAV Reheat 12, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000351}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000007}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000352}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle - Air Terminal Single Duct VAV Reheat 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000365}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000008}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000366}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000006}, !- Handle - Air Terminal Single Duct VAV Reheat 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000379}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000009}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000380}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000007}, !- Handle - Air Terminal Single Duct VAV Reheat 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000393}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000010}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000394}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000163}, !- Air Inlet Node Name @@ -370,7 +106,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000012}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000164}, !- Air Outlet Node Name @@ -382,7 +118,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000009}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000177}, !- Air Inlet Node Name @@ -391,7 +127,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000013}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000178}, !- Air Outlet Node Name @@ -403,7 +139,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000010}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000191}, !- Air Inlet Node Name @@ -412,7 +148,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000014}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000005}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000192}, !- Air Outlet Node Name @@ -424,7 +160,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000011}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000205}, !- Air Inlet Node Name @@ -433,7 +169,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000015}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000206}, !- Air Outlet Node Name @@ -444,90 +180,6 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000012}, !- Handle - Air Terminal Single Duct VAV Reheat 6, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000243}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000017}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000244}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000013}, !- Handle - Air Terminal Single Duct VAV Reheat 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000257}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000018}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000258}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000014}, !- Handle - Air Terminal Single Duct VAV Reheat 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000271}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000272}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - -OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000015}, !- Handle - Air Terminal Single Duct VAV Reheat 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0017-000000000285}, !- Air Inlet Node Name - AutoSize, !- Maximum Air Flow Rate {m3/s} - Constant, !- Zone Minimum Air Flow Input Method - 0.3, !- Constant Minimum Air Flow Fraction - 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} - , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name - AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} - 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000286}, !- Air Outlet Node Name - 0.001, !- Convergence Tolerance - Normal, !- Damper Heating Action - AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} - 0.5, !- Maximum Flow Fraction During Reheat - 43, !- Maximum Reheat Air Temperature {C} - No; !- Control For Outdoor Air - OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -542,81 +194,43 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0051-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0051-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0051-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0007-000000000003}, !- Handle - Availability Manager Night Cycle 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0051-000000000009}, !- Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000010}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000011}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0051-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name - OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name - {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000003}, !- Handle Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000004}, !- Handle + {00000000-0000-0000-0008-000000000002}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000005}, !- Handle + {00000000-0000-0000-0008-000000000003}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000006}, !- Handle + {00000000-0000-0000-0008-000000000004}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000007}, !- Handle + {00000000-0000-0000-0008-000000000005}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000001}, !- Handle - Primary Boiler 1560kBtu/hr 0.9 Thermal Eff, !- Name + Primary Boiler 332kBtu/hr 0.9 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 457205.59780454, !- Nominal Capacity {W} + 97372.1572414182, !- Nominal Capacity {W} 0.9, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} - 0.25, !- Minimum Part Load Ratio + , !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio {00000000-0000-0000-0017-000000000048}, !- Boiler Water Inlet Node Name {00000000-0000-0000-0017-000000000049}, !- Boiler Water Outlet Node Name 99, !- Water Outlet Upper Temperature Limit {C} - LeavingSetpointModulated, !- Boiler Flow Mode + ConstantFlow, !- Boiler Flow Mode 0, !- On Cycle Parasitic Electric Load {W} 0, !- Off Cycle Parasitic Fuel Load {W} 1, !- Sizing Factor @@ -624,9 +238,9 @@ OS:Boiler:HotWater, OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000002}, !- Handle - Secondary Boiler 0kBtu/hr 0.9 AFUE, !- Name + Secondary Boiler 332kBtu/hr 0.9 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 0.001, !- Nominal Capacity {W} + 97372.1572414182, !- Nominal Capacity {W} 0.9, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name @@ -692,8 +306,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton, !- Name - 227561.829243193, !- Reference Capacity {W} + Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton, !- Name + 90258.9344239522, !- Reference Capacity {W} 4.51476251604621, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -736,9 +350,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0026-000000000007}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0026-000000000005}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -789,42 +403,6 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Cooling:Water, - {00000000-0000-0000-0014-000000000002}, !- Handle - Coil Cooling Water 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000218}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000219}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000227}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000224}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - -OS:Coil:Cooling:Water, - {00000000-0000-0000-0014-000000000003}, !- Handle - Coil Cooling Water 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- Design Water Flow Rate {m3/s} - , !- Design Air Flow Rate {m3/s} - , !- Design Inlet Water Temperature {C} - , !- Design Inlet Air Temperature {C} - , !- Design Outlet Air Temperature {C} - , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} - , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} - {00000000-0000-0000-0017-000000000312}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000313}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000321}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000318}, !- Air Outlet Node Name - , !- Type of Analysis - ; !- Heat Exchanger Configuration - OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Heating Water 1, !- Name @@ -845,168 +423,6 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000002}, !- Handle - Coil Heating Water 10, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000260}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000261}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 10816.4048194885, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000003}, !- Handle - Coil Heating Water 11, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000274}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000275}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 5886.98766231537, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000004}, !- Handle - Coil Heating Water 12, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000288}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000289}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 11633.1632137299, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000005}, !- Handle - Coil Heating Water 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000308}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000309}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000319}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000316}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000006}, !- Handle - Coil Heating Water 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000326}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000327}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 20259.9005699158, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000007}, !- Handle - Coil Heating Water 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000340}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000341}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 13369.1064834595, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000008}, !- Handle - Coil Heating Water 16, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000354}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000355}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 11202.1511077881, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000009}, !- Handle - Coil Heating Water 17, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000368}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000369}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 6669.87683773041, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000010}, !- Handle - Coil Heating Water 18, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000382}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000383}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 12228.19647789, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000011}, !- Handle Coil Heating Water 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1016,7 +432,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 11816.5915489197, !- Rated Capacity {W} + 22253.7697792053, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1024,7 +440,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000012}, !- Handle + {00000000-0000-0000-0015-000000000003}, !- Handle Coil Heating Water 3, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1034,7 +450,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 10983.2056045532, !- Rated Capacity {W} + 13966.3979530334, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1042,7 +458,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000013}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Handle Coil Heating Water 4, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1052,7 +468,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 9967.39811897278, !- Rated Capacity {W} + 11994.1851139069, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1060,7 +476,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000014}, !- Handle + {00000000-0000-0000-0015-000000000005}, !- Handle Coil Heating Water 5, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1070,7 +486,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 5375.52763223648, !- Rated Capacity {W} + 6781.3985824585, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1078,7 +494,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000015}, !- Handle + {00000000-0000-0000-0015-000000000006}, !- Handle Coil Heating Water 6, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -1088,61 +504,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 11305.0475120544, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000016}, !- Handle - Coil Heating Water 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000214}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000215}, !- Water Outlet Node Name - {00000000-0000-0000-0017-000000000225}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000222}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000017}, !- Handle - Coil Heating Water 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000232}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000233}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 17045.9644317627, !- Rated Capacity {W} - , !- Rated Inlet Water Temperature {C} - , !- Rated Inlet Air Temperature {C} - , !- Rated Outlet Water Temperature {C} - , !- Rated Outlet Air Temperature {C} - ; !- Rated Ratio for Air and Water Convection - -OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000018}, !- Handle - Coil Heating Water 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0017-000000000246}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000247}, !- Water Outlet Node Name - , !- Air Inlet Node Name - , !- Air Outlet Node Name - NominalCapacity, !- Performance Input Method - 12589.4295215607, !- Rated Capacity {W} + 13260.2620124817, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -1164,7 +526,7 @@ OS:Coil:Heating:Water:Baseboard, OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Water Baseboard 10, !- Name + Coil Heating Water Baseboard 2, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1172,12 +534,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000292}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000293}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000156}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000157}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Water Baseboard 11, !- Name + Coil Heating Water Baseboard 3, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1185,12 +547,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000330}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000331}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000170}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000171}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Heating Water Baseboard 12, !- Name + Coil Heating Water Baseboard 4, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1198,12 +560,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000344}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000345}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000184}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000185}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000005}, !- Handle - Coil Heating Water Baseboard 13, !- Name + Coil Heating Water Baseboard 5, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -1211,152 +573,22 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000358}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000359}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000198}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000199}; !- Water Outlet Node Name -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000006}, !- Handle - Coil Heating Water Baseboard 14, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000372}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000373}; !- Water Outlet Node Name +OS:Connection, + {00000000-0000-0000-0017-000000000001}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000007}, !- Handle - Coil Heating Water Baseboard 15, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000386}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000387}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000008}, !- Handle - Coil Heating Water Baseboard 2, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000156}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000157}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000009}, !- Handle - Coil Heating Water Baseboard 3, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000170}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000171}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000010}, !- Handle - Coil Heating Water Baseboard 4, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000184}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000185}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000011}, !- Handle - Coil Heating Water Baseboard 5, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000198}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000199}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000012}, !- Handle - Coil Heating Water Baseboard 6, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000236}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000237}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000013}, !- Handle - Coil Heating Water Baseboard 7, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000250}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000251}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000014}, !- Handle - Coil Heating Water Baseboard 8, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000264}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000265}; !- Water Outlet Node Name - -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0016-000000000015}, !- Handle - Coil Heating Water Baseboard 9, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000278}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000279}; !- Water Outlet Node Name - -OS:Connection, - {00000000-0000-0000-0017-000000000001}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000002}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Connection, + {00000000-0000-0000-0017-000000000002}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000003}, !- Handle @@ -1474,35 +706,35 @@ OS:Connection, {00000000-0000-0000-0017-000000000019}, !- Handle {00000000-0000-0000-0094-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000025}, !- Target Object + {00000000-0000-0000-0052-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000020}, !- Handle {00000000-0000-0000-0094-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000035}, !- Target Object + {00000000-0000-0000-0052-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000021}, !- Handle {00000000-0000-0000-0094-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000027}, !- Target Object + {00000000-0000-0000-0052-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000022}, !- Handle {00000000-0000-0000-0094-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000029}, !- Target Object + {00000000-0000-0000-0052-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000023}, !- Handle {00000000-0000-0000-0094-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000017}, !- Target Object + {00000000-0000-0000-0052-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1516,14 +748,14 @@ OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle {00000000-0000-0000-0094-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000031}, !- Target Object + {00000000-0000-0000-0052-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle {00000000-0000-0000-0094-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000019}, !- Target Object + {00000000-0000-0000-0052-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1537,7 +769,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle {00000000-0000-0000-0094-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000033}, !- Target Object + {00000000-0000-0000-0052-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1558,7 +790,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle {00000000-0000-0000-0094-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000021}, !- Target Object + {00000000-0000-0000-0052-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1579,7 +811,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle {00000000-0000-0000-0094-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000023}, !- Target Object + {00000000-0000-0000-0052-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -1600,19 +832,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle {00000000-0000-0000-0057-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000162}, !- Target Object + {00000000-0000-0000-0052-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000208}, !- Target Object + {00000000-0000-0000-0052-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0052-000000000163}, !- Source Object + {00000000-0000-0000-0052-000000000081}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000003}, !- Target Object 15; !- Inlet Port @@ -1621,12 +853,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle {00000000-0000-0000-0057-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000160}, !- Target Object + {00000000-0000-0000-0052-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0052-000000000160}, !- Source Object + {00000000-0000-0000-0052-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -1635,26 +867,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000079}, !- Target Object + {00000000-0000-0000-0052-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000161}, !- Target Object + {00000000-0000-0000-0052-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0052-000000000161}, !- Source Object + {00000000-0000-0000-0052-000000000079}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0052-000000000162}, !- Source Object + {00000000-0000-0000-0052-000000000080}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000001}, !- Target Object 2; !- Inlet Port @@ -1663,19 +895,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle {00000000-0000-0000-0060-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000214}, !- Target Object + {00000000-0000-0000-0052-000000000132}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle - {00000000-0000-0000-0052-000000000214}, !- Source Object + {00000000-0000-0000-0052-000000000132}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0052-000000000208}, !- Source Object + {00000000-0000-0000-0052-000000000126}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000001}, !- Target Object 11; !- Inlet Port @@ -1684,12 +916,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0009-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000209}, !- Target Object + {00000000-0000-0000-0052-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0052-000000000209}, !- Source Object + {00000000-0000-0000-0052-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -1698,12 +930,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000217}, !- Target Object + {00000000-0000-0000-0052-000000000135}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle - {00000000-0000-0000-0052-000000000217}, !- Source Object + {00000000-0000-0000-0052-000000000135}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000002}, !- Target Object 11; !- Inlet Port @@ -1712,12 +944,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle {00000000-0000-0000-0009-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000218}, !- Target Object + {00000000-0000-0000-0052-000000000136}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle - {00000000-0000-0000-0052-000000000218}, !- Source Object + {00000000-0000-0000-0052-000000000136}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -1726,12 +958,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000193}, !- Target Object + {00000000-0000-0000-0052-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle - {00000000-0000-0000-0052-000000000193}, !- Source Object + {00000000-0000-0000-0052-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000001}, !- Target Object 2; !- Inlet Port @@ -1740,12 +972,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle {00000000-0000-0000-0056-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000194}, !- Target Object + {00000000-0000-0000-0052-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle - {00000000-0000-0000-0052-000000000194}, !- Source Object + {00000000-0000-0000-0052-000000000112}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1754,12 +986,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000196}, !- Target Object + {00000000-0000-0000-0052-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0052-000000000196}, !- Source Object + {00000000-0000-0000-0052-000000000114}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000003}, !- Target Object 2; !- Inlet Port @@ -1768,26 +1000,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle {00000000-0000-0000-0056-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000163}, !- Target Object + {00000000-0000-0000-0052-000000000081}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000068}, !- Target Object + {00000000-0000-0000-0052-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000212}, !- Target Object + {00000000-0000-0000-0052-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle - {00000000-0000-0000-0052-000000000069}, !- Source Object + {00000000-0000-0000-0052-000000000039}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 15; !- Inlet Port @@ -1796,12 +1028,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000066}, !- Target Object + {00000000-0000-0000-0052-000000000036}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle - {00000000-0000-0000-0052-000000000066}, !- Source Object + {00000000-0000-0000-0052-000000000036}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1810,26 +1042,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000070}, !- Target Object + {00000000-0000-0000-0052-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000067}, !- Target Object + {00000000-0000-0000-0052-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0052-000000000067}, !- Source Object + {00000000-0000-0000-0052-000000000037}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle - {00000000-0000-0000-0052-000000000068}, !- Source Object + {00000000-0000-0000-0052-000000000038}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000002}, !- Target Object 2; !- Inlet Port @@ -1838,19 +1070,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle {00000000-0000-0000-0060-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000215}, !- Target Object + {00000000-0000-0000-0052-000000000133}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle - {00000000-0000-0000-0052-000000000215}, !- Source Object + {00000000-0000-0000-0052-000000000133}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle - {00000000-0000-0000-0052-000000000212}, !- Source Object + {00000000-0000-0000-0052-000000000130}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -1859,12 +1091,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000213}, !- Target Object + {00000000-0000-0000-0052-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle - {00000000-0000-0000-0052-000000000213}, !- Source Object + {00000000-0000-0000-0052-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -1873,12 +1105,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000221}, !- Target Object + {00000000-0000-0000-0052-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0052-000000000221}, !- Source Object + {00000000-0000-0000-0052-000000000139}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1887,12 +1119,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000222}, !- Target Object + {00000000-0000-0000-0052-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle - {00000000-0000-0000-0052-000000000222}, !- Source Object + {00000000-0000-0000-0052-000000000140}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -1901,12 +1133,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000197}, !- Target Object + {00000000-0000-0000-0052-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle - {00000000-0000-0000-0052-000000000197}, !- Source Object + {00000000-0000-0000-0052-000000000115}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000004}, !- Target Object 2; !- Inlet Port @@ -1915,12 +1147,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle {00000000-0000-0000-0056-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000198}, !- Target Object + {00000000-0000-0000-0052-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle - {00000000-0000-0000-0052-000000000198}, !- Source Object + {00000000-0000-0000-0052-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 5; !- Inlet Port @@ -1929,12 +1161,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000199}, !- Target Object + {00000000-0000-0000-0052-000000000117}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle - {00000000-0000-0000-0052-000000000199}, !- Source Object + {00000000-0000-0000-0052-000000000117}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000005}, !- Target Object 2; !- Inlet Port @@ -1943,26 +1175,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle {00000000-0000-0000-0056-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000069}, !- Target Object + {00000000-0000-0000-0052-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle {00000000-0000-0000-0057-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000150}, !- Target Object + {00000000-0000-0000-0052-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000152}, !- Target Object + {00000000-0000-0000-0052-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle - {00000000-0000-0000-0052-000000000151}, !- Source Object + {00000000-0000-0000-0052-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000002}, !- Target Object 15; !- Inlet Port @@ -1971,12 +1203,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle {00000000-0000-0000-0057-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000148}, !- Target Object + {00000000-0000-0000-0052-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle - {00000000-0000-0000-0052-000000000148}, !- Source Object + {00000000-0000-0000-0052-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000006}, !- Target Object 2; !- Inlet Port @@ -1985,26 +1217,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000210}, !- Target Object + {00000000-0000-0000-0052-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle {00000000-0000-0000-0018-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000149}, !- Target Object + {00000000-0000-0000-0052-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0052-000000000149}, !- Source Object + {00000000-0000-0000-0052-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle - {00000000-0000-0000-0052-000000000150}, !- Source Object + {00000000-0000-0000-0052-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000003}, !- Target Object 2; !- Inlet Port @@ -2013,19 +1245,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle {00000000-0000-0000-0060-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000216}, !- Target Object + {00000000-0000-0000-0052-000000000134}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle - {00000000-0000-0000-0052-000000000216}, !- Source Object + {00000000-0000-0000-0052-000000000134}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle - {00000000-0000-0000-0052-000000000152}, !- Source Object + {00000000-0000-0000-0052-000000000070}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0025-000000000001}, !- Target Object 2; !- Inlet Port @@ -2034,12 +1266,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle {00000000-0000-0000-0025-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000153}, !- Target Object + {00000000-0000-0000-0052-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle - {00000000-0000-0000-0052-000000000153}, !- Source Object + {00000000-0000-0000-0052-000000000071}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 3; !- Inlet Port @@ -2048,12 +1280,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000200}, !- Target Object + {00000000-0000-0000-0052-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0052-000000000200}, !- Source Object + {00000000-0000-0000-0052-000000000118}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000006}, !- Target Object 2; !- Inlet Port @@ -2062,12 +1294,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle {00000000-0000-0000-0056-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000201}, !- Target Object + {00000000-0000-0000-0052-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle - {00000000-0000-0000-0052-000000000201}, !- Source Object + {00000000-0000-0000-0052-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 4; !- Inlet Port @@ -2076,12 +1308,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle {00000000-0000-0000-0018-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000202}, !- Target Object + {00000000-0000-0000-0052-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle - {00000000-0000-0000-0052-000000000202}, !- Source Object + {00000000-0000-0000-0052-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000007}, !- Target Object 2; !- Inlet Port @@ -2090,12 +1322,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle {00000000-0000-0000-0056-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000151}, !- Target Object + {00000000-0000-0000-0052-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle - {00000000-0000-0000-0052-000000000210}, !- Source Object + {00000000-0000-0000-0052-000000000128}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -2104,12 +1336,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000211}, !- Target Object + {00000000-0000-0000-0052-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle - {00000000-0000-0000-0052-000000000211}, !- Source Object + {00000000-0000-0000-0052-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 3; !- Inlet Port @@ -2118,12 +1350,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000219}, !- Target Object + {00000000-0000-0000-0052-000000000137}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle - {00000000-0000-0000-0052-000000000219}, !- Source Object + {00000000-0000-0000-0052-000000000137}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -2132,47 +1364,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000220}, !- Target Object + {00000000-0000-0000-0052-000000000138}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle - {00000000-0000-0000-0052-000000000220}, !- Source Object + {00000000-0000-0000-0052-000000000138}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object + {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000245}, !- Target Object + {00000000-0000-0000-0052-000000000147}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle - {00000000-0000-0000-0052-000000000246}, !- Source Object + {00000000-0000-0000-0052-000000000148}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- Source Object + {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000240}, !- Target Object + {00000000-0000-0000-0052-000000000142}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle - {00000000-0000-0000-0052-000000000241}, !- Source Object + {00000000-0000-0000-0052-000000000143}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000003}, !- Target Object + {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0052-000000000240}, !- Source Object + {00000000-0000-0000-0052-000000000142}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -2181,12 +1413,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000241}, !- Target Object + {00000000-0000-0000-0052-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0052-000000000079}, !- Source Object + {00000000-0000-0000-0052-000000000043}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 5; !- Inlet Port @@ -2195,19 +1427,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000122}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000081}, !- Target Object + {00000000-0000-0000-0052-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0052-000000000081}, !- Source Object + {00000000-0000-0000-0052-000000000045}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0052-000000000070}, !- Source Object + {00000000-0000-0000-0052-000000000040}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 10; !- Inlet Port @@ -2216,47 +1448,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000125}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000072}, !- Target Object + {00000000-0000-0000-0052-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0052-000000000072}, !- Source Object + {00000000-0000-0000-0052-000000000042}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000127}, !- Handle - {00000000-0000-0000-0041-000000000006}, !- Source Object + {00000000-0000-0000-0041-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000246}, !- Target Object + {00000000-0000-0000-0052-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000128}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0052-000000000080}, !- Target Object + {00000000-0000-0000-0052-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000129}, !- Handle - {00000000-0000-0000-0052-000000000080}, !- Source Object + {00000000-0000-0000-0052-000000000044}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000006}, !- Target Object + {00000000-0000-0000-0041-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000130}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000071}, !- Target Object + {00000000-0000-0000-0052-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0052-000000000071}, !- Source Object + {00000000-0000-0000-0052-000000000041}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 7; !- Inlet Port @@ -2265,33 +1497,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000132}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000242}, !- Target Object + {00000000-0000-0000-0052-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0052-000000000242}, !- Source Object + {00000000-0000-0000-0052-000000000144}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000134}, !- Handle - {00000000-0000-0000-0052-000000000245}, !- Source Object + {00000000-0000-0000-0052-000000000147}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000003}, !- Target Object + {00000000-0000-0000-0041-000000000001}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0041-000000000003}, !- Source Object + {00000000-0000-0000-0041-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000225}, !- Target Object + {00000000-0000-0000-0052-000000000141}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000136}, !- Handle - {00000000-0000-0000-0052-000000000225}, !- Source Object + {00000000-0000-0000-0052-000000000141}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -2300,26 +1532,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000137}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000101}, !- Target Object + {00000000-0000-0000-0052-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000138}, !- Handle - {00000000-0000-0000-0052-000000000101}, !- Source Object + {00000000-0000-0000-0052-000000000046}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000011}, !- Target Object + {00000000-0000-0000-0015-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000139}, !- Handle - {00000000-0000-0000-0015-000000000011}, !- Source Object + {00000000-0000-0000-0015-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000102}, !- Target Object + {00000000-0000-0000-0052-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0052-000000000102}, !- Source Object + {00000000-0000-0000-0052-000000000047}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 4; !- Inlet Port @@ -2328,12 +1560,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000141}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000118}, !- Target Object + {00000000-0000-0000-0052-000000000056}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000142}, !- Handle - {00000000-0000-0000-0052-000000000118}, !- Source Object + {00000000-0000-0000-0052-000000000056}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 9; !- Inlet Port @@ -2342,19 +1574,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000143}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000119}, !- Target Object + {00000000-0000-0000-0052-000000000057}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000144}, !- Handle - {00000000-0000-0000-0052-000000000119}, !- Source Object + {00000000-0000-0000-0052-000000000057}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0052-000000000037}, !- Source Object + {00000000-0000-0000-0052-000000000027}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000016}, !- Target Object 2; !- Inlet Port @@ -2377,12 +1609,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000148}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000036}, !- Target Object + {00000000-0000-0000-0052-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0052-000000000036}, !- Source Object + {00000000-0000-0000-0052-000000000026}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -2391,33 +1623,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000150}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000037}, !- Target Object + {00000000-0000-0000-0052-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000151}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000103}, !- Target Object + {00000000-0000-0000-0052-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0052-000000000103}, !- Source Object + {00000000-0000-0000-0052-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000012}, !- Target Object + {00000000-0000-0000-0015-000000000003}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000153}, !- Handle - {00000000-0000-0000-0015-000000000012}, !- Source Object + {00000000-0000-0000-0015-000000000003}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000104}, !- Target Object + {00000000-0000-0000-0052-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0052-000000000104}, !- Source Object + {00000000-0000-0000-0052-000000000049}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 6; !- Inlet Port @@ -2426,33 +1658,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000155}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000132}, !- Target Object + {00000000-0000-0000-0052-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0052-000000000132}, !- Source Object + {00000000-0000-0000-0052-000000000058}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000008}, !- Target Object + {00000000-0000-0000-0016-000000000002}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000157}, !- Handle - {00000000-0000-0000-0016-000000000008}, !- Source Object + {00000000-0000-0000-0016-000000000002}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000133}, !- Target Object + {00000000-0000-0000-0052-000000000059}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0052-000000000133}, !- Source Object + {00000000-0000-0000-0052-000000000059}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0052-000000000051}, !- Source Object + {00000000-0000-0000-0052-000000000029}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000040}, !- Target Object 2; !- Inlet Port @@ -2475,47 +1707,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000162}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000050}, !- Target Object + {00000000-0000-0000-0052-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0052-000000000050}, !- Source Object + {00000000-0000-0000-0052-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000008}, !- Target Object + {00000000-0000-0000-0006-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0006-000000000008}, !- Source Object + {00000000-0000-0000-0006-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000051}, !- Target Object + {00000000-0000-0000-0052-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000165}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0052-000000000105}, !- Target Object + {00000000-0000-0000-0052-000000000050}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0052-000000000105}, !- Source Object + {00000000-0000-0000-0052-000000000050}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000013}, !- Target Object + {00000000-0000-0000-0015-000000000004}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000167}, !- Handle - {00000000-0000-0000-0015-000000000013}, !- Source Object + {00000000-0000-0000-0015-000000000004}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000106}, !- Target Object + {00000000-0000-0000-0052-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0052-000000000106}, !- Source Object + {00000000-0000-0000-0052-000000000051}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 8; !- Inlet Port @@ -2524,33 +1756,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000169}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000134}, !- Target Object + {00000000-0000-0000-0052-000000000060}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0052-000000000134}, !- Source Object + {00000000-0000-0000-0052-000000000060}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000009}, !- Target Object + {00000000-0000-0000-0016-000000000003}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000171}, !- Handle - {00000000-0000-0000-0016-000000000009}, !- Source Object + {00000000-0000-0000-0016-000000000003}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000135}, !- Target Object + {00000000-0000-0000-0052-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0052-000000000135}, !- Source Object + {00000000-0000-0000-0052-000000000061}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0052-000000000053}, !- Source Object + {00000000-0000-0000-0052-000000000031}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000031}, !- Target Object 2; !- Inlet Port @@ -2573,47 +1805,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000176}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000052}, !- Target Object + {00000000-0000-0000-0052-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0052-000000000052}, !- Source Object + {00000000-0000-0000-0052-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000009}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0006-000000000009}, !- Source Object + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000053}, !- Target Object + {00000000-0000-0000-0052-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000179}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000107}, !- Target Object + {00000000-0000-0000-0052-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0052-000000000107}, !- Source Object + {00000000-0000-0000-0052-000000000052}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000014}, !- Target Object + {00000000-0000-0000-0015-000000000005}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000181}, !- Handle - {00000000-0000-0000-0015-000000000014}, !- Source Object + {00000000-0000-0000-0015-000000000005}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000108}, !- Target Object + {00000000-0000-0000-0052-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0052-000000000108}, !- Source Object + {00000000-0000-0000-0052-000000000053}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 10; !- Inlet Port @@ -2622,33 +1854,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000183}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000136}, !- Target Object + {00000000-0000-0000-0052-000000000062}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0052-000000000136}, !- Source Object + {00000000-0000-0000-0052-000000000062}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000010}, !- Target Object + {00000000-0000-0000-0016-000000000004}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000185}, !- Handle - {00000000-0000-0000-0016-000000000010}, !- Source Object + {00000000-0000-0000-0016-000000000004}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000137}, !- Target Object + {00000000-0000-0000-0052-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0052-000000000137}, !- Source Object + {00000000-0000-0000-0052-000000000063}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0052-000000000055}, !- Source Object + {00000000-0000-0000-0052-000000000033}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000049}, !- Target Object 2; !- Inlet Port @@ -2671,47 +1903,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000190}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000054}, !- Target Object + {00000000-0000-0000-0052-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0052-000000000054}, !- Source Object + {00000000-0000-0000-0052-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000010}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0006-000000000010}, !- Source Object + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000055}, !- Target Object + {00000000-0000-0000-0052-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000193}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000109}, !- Target Object + {00000000-0000-0000-0052-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0052-000000000109}, !- Source Object + {00000000-0000-0000-0052-000000000054}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000015}, !- Target Object + {00000000-0000-0000-0015-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000195}, !- Handle - {00000000-0000-0000-0015-000000000015}, !- Source Object + {00000000-0000-0000-0015-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000110}, !- Target Object + {00000000-0000-0000-0052-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0052-000000000110}, !- Source Object + {00000000-0000-0000-0052-000000000055}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 12; !- Inlet Port @@ -2720,33 +1952,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000197}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000138}, !- Target Object + {00000000-0000-0000-0052-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0052-000000000138}, !- Source Object + {00000000-0000-0000-0052-000000000064}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000011}, !- Target Object + {00000000-0000-0000-0016-000000000005}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000199}, !- Handle - {00000000-0000-0000-0016-000000000011}, !- Source Object + {00000000-0000-0000-0016-000000000005}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000139}, !- Target Object + {00000000-0000-0000-0052-000000000065}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0052-000000000139}, !- Source Object + {00000000-0000-0000-0052-000000000065}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0052-000000000057}, !- Source Object + {00000000-0000-0000-0052-000000000035}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000052}, !- Target Object 2; !- Inlet Port @@ -2769,2065 +2001,665 @@ OS:Connection, {00000000-0000-0000-0017-000000000204}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000056}, !- Target Object + {00000000-0000-0000-0052-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0052-000000000056}, !- Source Object + {00000000-0000-0000-0052-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000011}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0006-000000000011}, !- Source Object + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000057}, !- Target Object + {00000000-0000-0000-0052-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000207}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000231}, !- Target Object + {00000000-0000-0000-0057-000000000004}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0052-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000208}, !- Handle - {00000000-0000-0000-0052-000000000232}, !- Source Object + {00000000-0000-0000-0019-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0052-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000226}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000086}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000004}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000210}, !- Handle - {00000000-0000-0000-0052-000000000227}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0057-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000083}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0052-000000000226}, !- Source Object + {00000000-0000-0000-0052-000000000083}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000002}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000212}, !- Handle - {00000000-0000-0000-0004-000000000002}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000227}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0052-000000000111}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000084}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000004}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0052-000000000111}, !- Source Object + {00000000-0000-0000-0052-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000016}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0059-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000215}, !- Handle - {00000000-0000-0000-0015-000000000016}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000113}, !- Target Object + {00000000-0000-0000-0059-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0052-000000000113}, !- Source Object + {00000000-0000-0000-0052-000000000082}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0019-000000000007}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000217}, !- Handle - {00000000-0000-0000-0019-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000001}, !- Target Object + 31; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000218}, !- Handle - {00000000-0000-0000-0052-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000002}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0098-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0052-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000219}, !- Handle - {00000000-0000-0000-0014-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000075}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000007}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000220}, !- Handle - {00000000-0000-0000-0052-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000004}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0019-000000000007}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000121}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0041-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000232}, !- Target Object + {00000000-0000-0000-0052-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000222}, !- Handle - {00000000-0000-0000-0015-000000000016}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000112}, !- Target Object + {00000000-0000-0000-0056-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0052-000000000112}, !- Source Object + {00000000-0000-0000-0052-000000000122}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000004}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0018-000000000007}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0014-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000074}, !- Target Object + {00000000-0000-0000-0052-000000000123}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000225}, !- Handle - {00000000-0000-0000-0052-000000000074}, !- Source Object + {00000000-0000-0000-0056-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000016}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0052-000000000124}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000228}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000124}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000227}, !- Handle - {00000000-0000-0000-0052-000000000228}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0018-000000000007}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000125}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0052-000000000231}, !- Source Object + {00000000-0000-0000-0052-000000000125}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000001}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0056-000000000010}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000229}, !- Handle - {00000000-0000-0000-0041-000000000001}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000223}, !- Target Object + {00000000-0000-0000-0056-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000230}, !- Handle - {00000000-0000-0000-0052-000000000223}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000113}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0052-000000000114}, !- Target Object + {00000000-0000-0000-0052-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000232}, !- Handle - {00000000-0000-0000-0052-000000000114}, !- Source Object + {00000000-0000-0000-0056-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000017}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0052-000000000084}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000233}, !- Handle - {00000000-0000-0000-0015-000000000017}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000115}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0052-000000000115}, !- Source Object + {00000000-0000-0000-0052-000000000072}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0100-000000000001}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000235}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0052-000000000140}, !- Target Object + {00000000-0000-0000-0100-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000073}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0052-000000000140}, !- Source Object + {00000000-0000-0000-0052-000000000073}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000012}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000237}, !- Handle - {00000000-0000-0000-0016-000000000012}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000141}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000074}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0052-000000000141}, !- Source Object + {00000000-0000-0000-0052-000000000074}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0100-000000000002}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000239}, !- Handle - {00000000-0000-0000-0052-000000000059}, !- Source Object + {00000000-0000-0000-0100-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000001}, !- Target Object + {00000000-0000-0000-0052-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0058-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000024}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000241}, !- Handle - {00000000-0000-0000-0052-000000000024}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000076}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object + {00000000-0000-0000-0052-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000058}, !- Target Object + {00000000-0000-0000-0100-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000243}, !- Handle - {00000000-0000-0000-0052-000000000058}, !- Source Object + {00000000-0000-0000-0100-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000012}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0052-000000000077}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0006-000000000012}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000059}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000077}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000245}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000116}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0052-000000000116}, !- Source Object + {00000000-0000-0000-0052-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000018}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0100-000000000004}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000247}, !- Handle - {00000000-0000-0000-0015-000000000018}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000117}, !- Target Object + {00000000-0000-0000-0100-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0052-000000000117}, !- Source Object + {00000000-0000-0000-0052-000000000088}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000249}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0052-000000000142}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0052-000000000142}, !- Source Object + {00000000-0000-0000-0052-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000013}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0100-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000251}, !- Handle - {00000000-0000-0000-0016-000000000013}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000143}, !- Target Object + {00000000-0000-0000-0100-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0052-000000000143}, !- Source Object + {00000000-0000-0000-0052-000000000090}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000253}, !- Handle - {00000000-0000-0000-0052-000000000061}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000037}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0058-000000000039}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000020}, !- Target Object + {00000000-0000-0000-0052-000000000091}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000255}, !- Handle - {00000000-0000-0000-0052-000000000020}, !- Source Object + {00000000-0000-0000-0100-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0052-000000000092}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000060}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000092}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000257}, !- Handle - {00000000-0000-0000-0052-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000013}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0019-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000093}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0006-000000000013}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000061}, !- Target Object + {00000000-0000-0000-0052-000000000093}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000259}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0052-000000000082}, !- Target Object + {00000000-0000-0000-0100-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000260}, !- Handle - {00000000-0000-0000-0052-000000000082}, !- Source Object + {00000000-0000-0000-0052-000000000094}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000261}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000083}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000262}, !- Handle - {00000000-0000-0000-0052-000000000083}, !- Source Object + {00000000-0000-0000-0052-000000000095}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 19; !- Inlet Port + {00000000-0000-0000-0100-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000263}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0052-000000000144}, !- Target Object + {00000000-0000-0000-0100-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000264}, !- Handle - {00000000-0000-0000-0052-000000000144}, !- Source Object + {00000000-0000-0000-0052-000000000096}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000014}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000265}, !- Handle - {00000000-0000-0000-0016-000000000014}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000145}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000266}, !- Handle - {00000000-0000-0000-0052-000000000145}, !- Source Object + {00000000-0000-0000-0052-000000000097}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 20; !- Inlet Port + {00000000-0000-0000-0100-000000000009}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000267}, !- Handle - {00000000-0000-0000-0052-000000000063}, !- Source Object + {00000000-0000-0000-0100-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000046}, !- Target Object + {00000000-0000-0000-0052-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000268}, !- Handle - {00000000-0000-0000-0058-000000000048}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000022}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000098}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000269}, !- Handle - {00000000-0000-0000-0052-000000000022}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0019-000000000008}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000099}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000270}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000062}, !- Target Object + {00000000-0000-0000-0052-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000271}, !- Handle - {00000000-0000-0000-0052-000000000062}, !- Source Object + {00000000-0000-0000-0100-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000014}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0052-000000000100}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000272}, !- Handle - {00000000-0000-0000-0006-000000000014}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000063}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000100}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000273}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0052-000000000084}, !- Target Object + {00000000-0000-0000-0019-000000000008}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0052-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000274}, !- Handle - {00000000-0000-0000-0052-000000000084}, !- Source Object + {00000000-0000-0000-0052-000000000101}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0100-000000000011}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000275}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000085}, !- Target Object + {00000000-0000-0000-0100-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000276}, !- Handle - {00000000-0000-0000-0052-000000000085}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 21; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000277}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0052-000000000146}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000278}, !- Handle - {00000000-0000-0000-0052-000000000146}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000015}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000279}, !- Handle - {00000000-0000-0000-0016-000000000015}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000147}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000280}, !- Handle - {00000000-0000-0000-0052-000000000147}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 22; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000281}, !- Handle - {00000000-0000-0000-0052-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000022}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000282}, !- Handle - {00000000-0000-0000-0058-000000000024}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000018}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000283}, !- Handle - {00000000-0000-0000-0052-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000284}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000064}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000285}, !- Handle - {00000000-0000-0000-0052-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000015}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000286}, !- Handle - {00000000-0000-0000-0006-000000000015}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000065}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000287}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 23, !- Outlet Port - {00000000-0000-0000-0052-000000000086}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000288}, !- Handle - {00000000-0000-0000-0052-000000000086}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000289}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000087}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000290}, !- Handle - {00000000-0000-0000-0052-000000000087}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 23; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000291}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 24, !- Outlet Port - {00000000-0000-0000-0052-000000000120}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000292}, !- Handle - {00000000-0000-0000-0052-000000000120}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000293}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000121}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000294}, !- Handle - {00000000-0000-0000-0052-000000000121}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 24; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000295}, !- Handle - {00000000-0000-0000-0052-000000000039}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000013}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000296}, !- Handle - {00000000-0000-0000-0058-000000000015}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000016}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000297}, !- Handle - {00000000-0000-0000-0052-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000002}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000298}, !- Handle - {00000000-0000-0000-0005-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000038}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000299}, !- Handle - {00000000-0000-0000-0052-000000000038}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000300}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000039}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000301}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000238}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000302}, !- Handle - {00000000-0000-0000-0052-000000000239}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000303}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000233}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000304}, !- Handle - {00000000-0000-0000-0052-000000000234}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000305}, !- Handle - {00000000-0000-0000-0052-000000000233}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0005-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000306}, !- Handle - {00000000-0000-0000-0004-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000234}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000307}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 25, !- Outlet Port - {00000000-0000-0000-0052-000000000088}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000308}, !- Handle - {00000000-0000-0000-0052-000000000088}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000309}, !- Handle - {00000000-0000-0000-0015-000000000005}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000090}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000310}, !- Handle - {00000000-0000-0000-0052-000000000090}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 25; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000311}, !- Handle - {00000000-0000-0000-0019-000000000004}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000076}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000312}, !- Handle - {00000000-0000-0000-0052-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000003}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000313}, !- Handle - {00000000-0000-0000-0014-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000078}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000314}, !- Handle - {00000000-0000-0000-0052-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000004}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000315}, !- Handle - {00000000-0000-0000-0041-000000000005}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000239}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000316}, !- Handle - {00000000-0000-0000-0015-000000000005}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000089}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000317}, !- Handle - {00000000-0000-0000-0052-000000000089}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000005}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000318}, !- Handle - {00000000-0000-0000-0014-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000077}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000319}, !- Handle - {00000000-0000-0000-0052-000000000077}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000005}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000320}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000235}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000321}, !- Handle - {00000000-0000-0000-0052-000000000235}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0014-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000322}, !- Handle - {00000000-0000-0000-0052-000000000238}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0041-000000000002}, !- Target Object - 16; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000323}, !- Handle - {00000000-0000-0000-0041-000000000002}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000224}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000324}, !- Handle - {00000000-0000-0000-0052-000000000224}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000325}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 26, !- Outlet Port - {00000000-0000-0000-0052-000000000091}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000326}, !- Handle - {00000000-0000-0000-0052-000000000091}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000006}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000327}, !- Handle - {00000000-0000-0000-0015-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000092}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000328}, !- Handle - {00000000-0000-0000-0052-000000000092}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 26; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000329}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 27, !- Outlet Port - {00000000-0000-0000-0052-000000000122}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000330}, !- Handle - {00000000-0000-0000-0052-000000000122}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000331}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000123}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000332}, !- Handle - {00000000-0000-0000-0052-000000000123}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 27; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000333}, !- Handle - {00000000-0000-0000-0052-000000000041}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000334}, !- Handle - {00000000-0000-0000-0058-000000000012}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000335}, !- Handle - {00000000-0000-0000-0052-000000000028}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000336}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000040}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000337}, !- Handle - {00000000-0000-0000-0052-000000000040}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000338}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000041}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000339}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 28, !- Outlet Port - {00000000-0000-0000-0052-000000000093}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000340}, !- Handle - {00000000-0000-0000-0052-000000000093}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000007}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000341}, !- Handle - {00000000-0000-0000-0015-000000000007}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000094}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000342}, !- Handle - {00000000-0000-0000-0052-000000000094}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 28; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000343}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 29, !- Outlet Port - {00000000-0000-0000-0052-000000000124}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000344}, !- Handle - {00000000-0000-0000-0052-000000000124}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000345}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000125}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000346}, !- Handle - {00000000-0000-0000-0052-000000000125}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 29; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000347}, !- Handle - {00000000-0000-0000-0052-000000000043}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000348}, !- Handle - {00000000-0000-0000-0058-000000000006}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000034}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000349}, !- Handle - {00000000-0000-0000-0052-000000000034}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000350}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000042}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000351}, !- Handle - {00000000-0000-0000-0052-000000000042}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000352}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000043}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000353}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 30, !- Outlet Port - {00000000-0000-0000-0052-000000000095}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000354}, !- Handle - {00000000-0000-0000-0052-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000355}, !- Handle - {00000000-0000-0000-0015-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000096}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000356}, !- Handle - {00000000-0000-0000-0052-000000000096}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 30; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000357}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 31, !- Outlet Port - {00000000-0000-0000-0052-000000000126}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000358}, !- Handle - {00000000-0000-0000-0052-000000000126}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000005}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000359}, !- Handle - {00000000-0000-0000-0016-000000000005}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000127}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000360}, !- Handle - {00000000-0000-0000-0052-000000000127}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000361}, !- Handle - {00000000-0000-0000-0052-000000000045}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000362}, !- Handle - {00000000-0000-0000-0058-000000000009}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000026}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000363}, !- Handle - {00000000-0000-0000-0052-000000000026}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000364}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000044}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000365}, !- Handle - {00000000-0000-0000-0052-000000000044}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000366}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000045}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000367}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0052-000000000097}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000368}, !- Handle - {00000000-0000-0000-0052-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000009}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000369}, !- Handle - {00000000-0000-0000-0015-000000000009}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000098}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000370}, !- Handle - {00000000-0000-0000-0052-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 32; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000371}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 33, !- Outlet Port - {00000000-0000-0000-0052-000000000128}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000372}, !- Handle - {00000000-0000-0000-0052-000000000128}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000006}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000373}, !- Handle - {00000000-0000-0000-0016-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000129}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000374}, !- Handle - {00000000-0000-0000-0052-000000000129}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 33; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000375}, !- Handle - {00000000-0000-0000-0052-000000000047}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000019}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000376}, !- Handle - {00000000-0000-0000-0058-000000000021}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000030}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000377}, !- Handle - {00000000-0000-0000-0052-000000000030}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000378}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000046}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000379}, !- Handle - {00000000-0000-0000-0052-000000000046}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000006}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000380}, !- Handle - {00000000-0000-0000-0006-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000047}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000381}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 34, !- Outlet Port - {00000000-0000-0000-0052-000000000099}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000382}, !- Handle - {00000000-0000-0000-0052-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0015-000000000010}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000383}, !- Handle - {00000000-0000-0000-0015-000000000010}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000100}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000384}, !- Handle - {00000000-0000-0000-0052-000000000100}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 34; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000385}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object - 35, !- Outlet Port - {00000000-0000-0000-0052-000000000130}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000386}, !- Handle - {00000000-0000-0000-0052-000000000130}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000007}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000387}, !- Handle - {00000000-0000-0000-0016-000000000007}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000131}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000388}, !- Handle - {00000000-0000-0000-0052-000000000131}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object - 35; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000389}, !- Handle - {00000000-0000-0000-0052-000000000049}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0058-000000000028}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000390}, !- Handle - {00000000-0000-0000-0058-000000000030}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000032}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000391}, !- Handle - {00000000-0000-0000-0052-000000000032}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0004-000000000003}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000392}, !- Handle - {00000000-0000-0000-0005-000000000003}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000048}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000393}, !- Handle - {00000000-0000-0000-0052-000000000048}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0006-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000394}, !- Handle - {00000000-0000-0000-0006-000000000007}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000049}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000395}, !- Handle - {00000000-0000-0000-0057-000000000004}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0052-000000000167}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000396}, !- Handle - {00000000-0000-0000-0019-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000397}, !- Handle - {00000000-0000-0000-0052-000000000168}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000004}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000398}, !- Handle - {00000000-0000-0000-0057-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0052-000000000165}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000399}, !- Handle - {00000000-0000-0000-0052-000000000165}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000400}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000205}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000401}, !- Handle - {00000000-0000-0000-0052-000000000166}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000004}, !- Target Object - 18; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000402}, !- Handle - {00000000-0000-0000-0052-000000000167}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0059-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000403}, !- Handle - {00000000-0000-0000-0059-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000164}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000404}, !- Handle - {00000000-0000-0000-0052-000000000164}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0019-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000405}, !- Handle - {00000000-0000-0000-0052-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0098-000000000001}, !- Target Object - 31; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000406}, !- Handle - {00000000-0000-0000-0098-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0052-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000407}, !- Handle - {00000000-0000-0000-0052-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000007}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000408}, !- Handle - {00000000-0000-0000-0019-000000000007}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000203}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000409}, !- Handle - {00000000-0000-0000-0052-000000000203}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000410}, !- Handle - {00000000-0000-0000-0056-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000204}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000411}, !- Handle - {00000000-0000-0000-0052-000000000204}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000007}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000412}, !- Handle - {00000000-0000-0000-0052-000000000205}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000413}, !- Handle - {00000000-0000-0000-0056-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000206}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000414}, !- Handle - {00000000-0000-0000-0052-000000000206}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 3; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000415}, !- Handle - {00000000-0000-0000-0018-000000000007}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000207}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000416}, !- Handle - {00000000-0000-0000-0052-000000000207}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000417}, !- Handle - {00000000-0000-0000-0056-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000168}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000418}, !- Handle - {00000000-0000-0000-0018-000000000008}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0052-000000000195}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000419}, !- Handle - {00000000-0000-0000-0052-000000000195}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000420}, !- Handle - {00000000-0000-0000-0056-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000166}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000421}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000154}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000422}, !- Handle - {00000000-0000-0000-0052-000000000154}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000001}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000423}, !- Handle - {00000000-0000-0000-0100-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000155}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000424}, !- Handle - {00000000-0000-0000-0052-000000000155}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000425}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000156}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000426}, !- Handle - {00000000-0000-0000-0052-000000000156}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000002}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000427}, !- Handle - {00000000-0000-0000-0100-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000157}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000428}, !- Handle - {00000000-0000-0000-0052-000000000157}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000429}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000158}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000430}, !- Handle - {00000000-0000-0000-0052-000000000158}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000003}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000431}, !- Handle - {00000000-0000-0000-0100-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000159}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000432}, !- Handle - {00000000-0000-0000-0052-000000000159}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000433}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000169}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000434}, !- Handle - {00000000-0000-0000-0052-000000000169}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000004}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000435}, !- Handle - {00000000-0000-0000-0100-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000170}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000436}, !- Handle - {00000000-0000-0000-0052-000000000170}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 7; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000437}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000171}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000438}, !- Handle - {00000000-0000-0000-0052-000000000171}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000005}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000439}, !- Handle - {00000000-0000-0000-0100-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000172}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000440}, !- Handle - {00000000-0000-0000-0052-000000000172}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 8; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000441}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000173}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000442}, !- Handle - {00000000-0000-0000-0052-000000000173}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000006}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000443}, !- Handle - {00000000-0000-0000-0100-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000174}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000444}, !- Handle - {00000000-0000-0000-0052-000000000174}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 9; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000445}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000175}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000446}, !- Handle - {00000000-0000-0000-0052-000000000175}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000007}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000447}, !- Handle - {00000000-0000-0000-0100-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000176}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000448}, !- Handle - {00000000-0000-0000-0052-000000000176}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 10; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000449}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000177}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000450}, !- Handle - {00000000-0000-0000-0052-000000000177}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000008}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000451}, !- Handle - {00000000-0000-0000-0100-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000178}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000452}, !- Handle - {00000000-0000-0000-0052-000000000178}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 11; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000453}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000179}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000454}, !- Handle - {00000000-0000-0000-0052-000000000179}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000009}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000455}, !- Handle - {00000000-0000-0000-0100-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000180}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000456}, !- Handle - {00000000-0000-0000-0052-000000000180}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000457}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000181}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000458}, !- Handle - {00000000-0000-0000-0052-000000000181}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000010}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000459}, !- Handle - {00000000-0000-0000-0100-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000182}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000460}, !- Handle - {00000000-0000-0000-0052-000000000182}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000008}, !- Target Object - 13; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000461}, !- Handle - {00000000-0000-0000-0019-000000000008}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0052-000000000183}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000462}, !- Handle - {00000000-0000-0000-0052-000000000183}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0100-000000000011}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000463}, !- Handle - {00000000-0000-0000-0100-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000184}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000464}, !- Handle - {00000000-0000-0000-0052-000000000184}, !- Source Object + {00000000-0000-0000-0052-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000465}, !- Handle + {00000000-0000-0000-0017-000000000277}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0052-000000000185}, !- Target Object + {00000000-0000-0000-0052-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000466}, !- Handle - {00000000-0000-0000-0052-000000000185}, !- Source Object + {00000000-0000-0000-0017-000000000278}, !- Handle + {00000000-0000-0000-0052-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000467}, !- Handle + {00000000-0000-0000-0017-000000000279}, !- Handle {00000000-0000-0000-0100-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000186}, !- Target Object + {00000000-0000-0000-0052-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000468}, !- Handle - {00000000-0000-0000-0052-000000000186}, !- Source Object + {00000000-0000-0000-0017-000000000280}, !- Handle + {00000000-0000-0000-0052-000000000104}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000469}, !- Handle + {00000000-0000-0000-0017-000000000281}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000187}, !- Target Object + {00000000-0000-0000-0052-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000470}, !- Handle - {00000000-0000-0000-0052-000000000187}, !- Source Object + {00000000-0000-0000-0017-000000000282}, !- Handle + {00000000-0000-0000-0052-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000471}, !- Handle + {00000000-0000-0000-0017-000000000283}, !- Handle {00000000-0000-0000-0100-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000188}, !- Target Object + {00000000-0000-0000-0052-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000472}, !- Handle - {00000000-0000-0000-0052-000000000188}, !- Source Object + {00000000-0000-0000-0017-000000000284}, !- Handle + {00000000-0000-0000-0052-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000473}, !- Handle + {00000000-0000-0000-0017-000000000285}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000189}, !- Target Object + {00000000-0000-0000-0052-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000474}, !- Handle - {00000000-0000-0000-0052-000000000189}, !- Source Object + {00000000-0000-0000-0017-000000000286}, !- Handle + {00000000-0000-0000-0052-000000000107}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000475}, !- Handle + {00000000-0000-0000-0017-000000000287}, !- Handle {00000000-0000-0000-0100-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000190}, !- Target Object + {00000000-0000-0000-0052-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000476}, !- Handle - {00000000-0000-0000-0052-000000000190}, !- Source Object + {00000000-0000-0000-0017-000000000288}, !- Handle + {00000000-0000-0000-0052-000000000108}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000477}, !- Handle + {00000000-0000-0000-0017-000000000289}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000191}, !- Target Object + {00000000-0000-0000-0052-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000478}, !- Handle - {00000000-0000-0000-0052-000000000191}, !- Source Object + {00000000-0000-0000-0017-000000000290}, !- Handle + {00000000-0000-0000-0052-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000479}, !- Handle + {00000000-0000-0000-0017-000000000291}, !- Handle {00000000-0000-0000-0100-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000192}, !- Target Object + {00000000-0000-0000-0052-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000480}, !- Handle - {00000000-0000-0000-0052-000000000192}, !- Source Object + {00000000-0000-0000-0017-000000000292}, !- Handle + {00000000-0000-0000-0052-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000481}, !- Handle - {00000000-0000-0000-0052-000000000243}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000003}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000482}, !- Handle - {00000000-0000-0000-0045-000000000003}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000251}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000483}, !- Handle - {00000000-0000-0000-0052-000000000251}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000484}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000252}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000485}, !- Handle - {00000000-0000-0000-0052-000000000252}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000003}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000486}, !- Handle - {00000000-0000-0000-0045-000000000003}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0052-000000000244}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000487}, !- Handle - {00000000-0000-0000-0052-000000000229}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000001}, !- Target Object - 12; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000488}, !- Handle - {00000000-0000-0000-0045-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000247}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000489}, !- Handle - {00000000-0000-0000-0052-000000000247}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000490}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000248}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000491}, !- Handle - {00000000-0000-0000-0052-000000000248}, !- Source Object + {00000000-0000-0000-0017-000000000293}, !- Handle + {00000000-0000-0000-0052-000000000145}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0045-000000000001}, !- Target Object - 14; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000492}, !- Handle - {00000000-0000-0000-0045-000000000001}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0052-000000000230}, !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000493}, !- Handle - {00000000-0000-0000-0052-000000000236}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000002}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000494}, !- Handle - {00000000-0000-0000-0045-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000294}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000249}, !- Target Object + {00000000-0000-0000-0052-000000000149}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000495}, !- Handle - {00000000-0000-0000-0052-000000000249}, !- Source Object + {00000000-0000-0000-0017-000000000295}, !- Handle + {00000000-0000-0000-0052-000000000149}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000003}, !- Target Object + {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000496}, !- Handle - {00000000-0000-0000-0003-000000000003}, !- Source Object + {00000000-0000-0000-0017-000000000296}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000250}, !- Target Object + {00000000-0000-0000-0052-000000000150}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000497}, !- Handle - {00000000-0000-0000-0052-000000000250}, !- Source Object + {00000000-0000-0000-0017-000000000297}, !- Handle + {00000000-0000-0000-0052-000000000150}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000002}, !- Target Object + {00000000-0000-0000-0045-000000000001}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000498}, !- Handle - {00000000-0000-0000-0045-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000298}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0052-000000000237}, !- Target Object + {00000000-0000-0000-0052-000000000146}, !- Target Object 2; !- Inlet Port OS:Connector:Mixer, @@ -4852,29 +2684,7 @@ OS:Connector:Mixer, {00000000-0000-0000-0017-000000000182}, !- Inlet Branch Name 8 {00000000-0000-0000-0017-000000000186}, !- Inlet Branch Name 9 {00000000-0000-0000-0017-000000000196}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000200}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000216}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000234}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000248}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000252}, !- Inlet Branch Name 16 - {00000000-0000-0000-0017-000000000262}, !- Inlet Branch Name 17 - {00000000-0000-0000-0017-000000000266}, !- Inlet Branch Name 18 - {00000000-0000-0000-0017-000000000276}, !- Inlet Branch Name 19 - {00000000-0000-0000-0017-000000000280}, !- Inlet Branch Name 20 - {00000000-0000-0000-0017-000000000290}, !- Inlet Branch Name 21 - {00000000-0000-0000-0017-000000000294}, !- Inlet Branch Name 22 - {00000000-0000-0000-0017-000000000310}, !- Inlet Branch Name 23 - {00000000-0000-0000-0017-000000000328}, !- Inlet Branch Name 24 - {00000000-0000-0000-0017-000000000332}, !- Inlet Branch Name 25 - {00000000-0000-0000-0017-000000000342}, !- Inlet Branch Name 26 - {00000000-0000-0000-0017-000000000346}, !- Inlet Branch Name 27 - {00000000-0000-0000-0017-000000000356}, !- Inlet Branch Name 28 - {00000000-0000-0000-0017-000000000360}, !- Inlet Branch Name 29 - {00000000-0000-0000-0017-000000000370}, !- Inlet Branch Name 30 - {00000000-0000-0000-0017-000000000374}, !- Inlet Branch Name 31 - {00000000-0000-0000-0017-000000000384}, !- Inlet Branch Name 32 - {00000000-0000-0000-0017-000000000388}; !- Inlet Branch Name 33 + {00000000-0000-0000-0017-000000000200}; !- Inlet Branch Name 11 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000003}, !- Handle @@ -4888,9 +2698,7 @@ OS:Connector:Mixer, {00000000-0000-0000-0018-000000000004}, !- Handle Connector Mixer 4, !- Name {00000000-0000-0000-0017-000000000068}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000126}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000220}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000314}; !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000126}; !- Inlet Branch Name 1 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle @@ -4909,30 +2717,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0018-000000000007}, !- Handle Connector Mixer 7, !- Name - {00000000-0000-0000-0017-000000000415}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000407}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000411}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000227}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000219}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000223}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000008}, !- Handle Connector Mixer 8, !- Name - {00000000-0000-0000-0017-000000000418}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000414}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000424}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000428}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000432}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000436}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000440}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000444}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000448}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000452}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000456}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000460}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000464}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000468}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000472}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000476}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000480}; !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000230}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000226}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000236}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000240}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000244}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000248}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000252}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000256}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000260}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000264}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000268}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000272}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000276}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000280}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000284}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000288}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000292}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -4956,29 +2764,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000179}, !- Outlet Branch Name 8 {00000000-0000-0000-0017-000000000183}, !- Outlet Branch Name 9 {00000000-0000-0000-0017-000000000193}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000197}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000213}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000231}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000245}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000249}, !- Outlet Branch Name 16 - {00000000-0000-0000-0017-000000000259}, !- Outlet Branch Name 17 - {00000000-0000-0000-0017-000000000263}, !- Outlet Branch Name 18 - {00000000-0000-0000-0017-000000000273}, !- Outlet Branch Name 19 - {00000000-0000-0000-0017-000000000277}, !- Outlet Branch Name 20 - {00000000-0000-0000-0017-000000000287}, !- Outlet Branch Name 21 - {00000000-0000-0000-0017-000000000291}, !- Outlet Branch Name 22 - {00000000-0000-0000-0017-000000000307}, !- Outlet Branch Name 23 - {00000000-0000-0000-0017-000000000325}, !- Outlet Branch Name 24 - {00000000-0000-0000-0017-000000000329}, !- Outlet Branch Name 25 - {00000000-0000-0000-0017-000000000339}, !- Outlet Branch Name 26 - {00000000-0000-0000-0017-000000000343}, !- Outlet Branch Name 27 - {00000000-0000-0000-0017-000000000353}, !- Outlet Branch Name 28 - {00000000-0000-0000-0017-000000000357}, !- Outlet Branch Name 29 - {00000000-0000-0000-0017-000000000367}, !- Outlet Branch Name 30 - {00000000-0000-0000-0017-000000000371}, !- Outlet Branch Name 31 - {00000000-0000-0000-0017-000000000381}, !- Outlet Branch Name 32 - {00000000-0000-0000-0017-000000000385}; !- Outlet Branch Name 33 + {00000000-0000-0000-0017-000000000197}; !- Outlet Branch Name 11 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -4992,9 +2778,7 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000004}, !- Handle Connector Splitter 4, !- Name {00000000-0000-0000-0017-000000000066}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000067}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000217}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000311}; !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000067}; !- Outlet Branch Name 1 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle @@ -5013,30 +2797,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000007}, !- Handle Connector Splitter 7, !- Name - {00000000-0000-0000-0017-000000000404}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000396}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000408}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000216}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000208}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000220}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000008}, !- Handle Connector Splitter 8, !- Name - {00000000-0000-0000-0017-000000000399}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000400}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000421}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000425}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000429}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000433}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000437}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000441}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000445}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000449}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000453}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000457}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000461}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000465}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000469}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000473}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000477}; !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000211}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000212}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000233}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000237}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000241}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000245}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000249}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000253}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000257}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000261}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000265}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000269}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000273}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000277}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000281}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000285}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000289}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle @@ -5295,20 +3079,6 @@ OS:Controller:MechanicalVentilation, , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000003}, !- Handle - Controller Mechanical Ventilation 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method - OS:Controller:OutdoorAir, {00000000-0000-0000-0022-000000000001}, !- Handle Controller Outdoor Air 1, !- Name @@ -5327,7 +3097,7 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000027}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0066-000000000023}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation @@ -5339,66 +3109,6 @@ OS:Controller:OutdoorAir, BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type InterlockedWithMechanicalCooling; !- Economizer Operation Staging -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000025}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000003}, !- Handle - Controller Outdoor Air 3, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000026}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging - OS:Controller:WaterCoil, {00000000-0000-0000-0023-000000000001}, !- Handle Controller Water Coil 1, !- Name @@ -5414,136 +3124,6 @@ OS:Controller:WaterCoil, OS:Controller:WaterCoil, {00000000-0000-0000-0023-000000000002}, !- Handle - Controller Water Coil 10, !- Name - {00000000-0000-0000-0015-000000000017}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000003}, !- Handle - Controller Water Coil 11, !- Name - {00000000-0000-0000-0015-000000000018}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000004}, !- Handle - Controller Water Coil 12, !- Name - {00000000-0000-0000-0015-000000000002}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000005}, !- Handle - Controller Water Coil 13, !- Name - {00000000-0000-0000-0015-000000000003}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000006}, !- Handle - Controller Water Coil 14, !- Name - {00000000-0000-0000-0015-000000000004}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000007}, !- Handle - Controller Water Coil 15, !- Name - {00000000-0000-0000-0015-000000000005}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000008}, !- Handle - Controller Water Coil 16, !- Name - {00000000-0000-0000-0014-000000000003}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000009}, !- Handle - Controller Water Coil 17, !- Name - {00000000-0000-0000-0015-000000000006}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000010}, !- Handle - Controller Water Coil 18, !- Name - {00000000-0000-0000-0015-000000000007}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000011}, !- Handle - Controller Water Coil 19, !- Name - {00000000-0000-0000-0015-000000000008}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000012}, !- Handle Controller Water Coil 2, !- Name {00000000-0000-0000-0014-000000000001}, !- Water Coil Name , !- Control Variable @@ -5556,35 +3136,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000013}, !- Handle - Controller Water Coil 20, !- Name - {00000000-0000-0000-0015-000000000009}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000014}, !- Handle - Controller Water Coil 21, !- Name - {00000000-0000-0000-0015-000000000010}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000015}, !- Handle + {00000000-0000-0000-0023-000000000003}, !- Handle Controller Water Coil 3, !- Name - {00000000-0000-0000-0015-000000000011}, !- Water Coil Name + {00000000-0000-0000-0015-000000000002}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5595,9 +3149,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000016}, !- Handle + {00000000-0000-0000-0023-000000000004}, !- Handle Controller Water Coil 4, !- Name - {00000000-0000-0000-0015-000000000012}, !- Water Coil Name + {00000000-0000-0000-0015-000000000003}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5608,9 +3162,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000017}, !- Handle + {00000000-0000-0000-0023-000000000005}, !- Handle Controller Water Coil 5, !- Name - {00000000-0000-0000-0015-000000000013}, !- Water Coil Name + {00000000-0000-0000-0015-000000000004}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5621,9 +3175,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000018}, !- Handle + {00000000-0000-0000-0023-000000000006}, !- Handle Controller Water Coil 6, !- Name - {00000000-0000-0000-0015-000000000014}, !- Water Coil Name + {00000000-0000-0000-0015-000000000005}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5634,22 +3188,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000019}, !- Handle + {00000000-0000-0000-0023-000000000007}, !- Handle Controller Water Coil 7, !- Name - {00000000-0000-0000-0015-000000000015}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000020}, !- Handle - Controller Water Coil 8, !- Name - {00000000-0000-0000-0015-000000000016}, !- Water Coil Name + {00000000-0000-0000-0015-000000000006}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -5659,19 +3200,6 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} -OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000021}, !- Handle - Controller Water Coil 9, !- Name - {00000000-0000-0000-0014-000000000002}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} - OS:ConvergenceLimits, {00000000-0000-0000-0024-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -5684,7 +3212,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000099}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 3613.55502973381, !- Fan Power at Design Air Flow Rate {W} + 1433.2615779667, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -5763,46 +3291,18 @@ OS:Curve:Biquadratic, {00000000-0000-0000-0026-000000000004}, !- Handle Curve Biquadratic 4, !- Name 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000005}, !- Handle - WaterCooled_Screw_CAPFT_NECB2011, !- Name - 0.812998, !- Coefficient1 Constant - -0.0142532, !- Coefficient2 x - -0.00161799, !- Coefficient3 x**2 - 0.0263844, !- Coefficient4 y - -0.00091543, !- Coefficient5 y**2 - 0.00169601, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y - -OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000006}, !- Handle - WaterCooled_Screw_EIRFT_NECB2011, !- Name - 0.638103, !- Coefficient1 Constant - 0.00630158, !- Coefficient2 x - 0.00092327, !- Coefficient3 x**2 - -0.00455294, !- Coefficient4 y - 0.000825682, !- Coefficient5 y**2 - -0.00156152, !- Coefficient6 x*y + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y 5, !- Minimum Value of x 10, !- Maximum Value of x 24, !- Minimum Value of y 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000007}, !- Handle + {00000000-0000-0000-0026-000000000005}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -5816,7 +3316,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000008}, !- Handle + {00000000-0000-0000-0026-000000000006}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -5889,15 +3389,6 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0028-000000000003}, !- Handle - WaterCooled_Screw_EIRFPLR_NECB2011, !- Name - 0.330188, !- Coefficient1 Constant - 0.235543, !- Coefficient2 x - 0.460708, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x - -OS:Curve:Quadratic, - {00000000-0000-0000-0028-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -6059,7 +3550,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__ClgSch0, !- Name {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -6067,23 +3558,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name - {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name - {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name - Schedule:Year, !- Actuated Component Type - Schedule Value, !- Actuated Component Control Type - ; !- Zone or Space Name - -OS:EnergyManagementSystem:Actuator, - {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__HtgSch0, !- Name {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -6091,115 +3566,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0b52b77c-b7b5-42d5-b7f1-f95d2c484ce3}<23.9 && {0b52b77c-b7b5-42d5-b7f1-f95d2c484ce3}>1.7, !- Program Line 1 - SET {a8b7d082-9fc6-45f6-abed-21aa71034a36} = 29.4, !- Program Line 2 - SET {8ba52ea6-e5cd-4d42-affe-b2d8e5eca2b2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0b52b77c-b7b5-42d5-b7f1-f95d2c484ce3}<23.9 && {0b52b77c-b7b5-42d5-b7f1-f95d2c484ce3}>1.7, !- Program Line 4 - SET {a8b7d082-9fc6-45f6-abed-21aa71034a36} = 29.4, !- Program Line 5 - SET {8ba52ea6-e5cd-4d42-affe-b2d8e5eca2b2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0b52b77c-b7b5-42d5-b7f1-f95d2c484ce3}<23.9 && {0b52b77c-b7b5-42d5-b7f1-f95d2c484ce3}>1.7, !- Program Line 7 - SET {a8b7d082-9fc6-45f6-abed-21aa71034a36} = 29.4, !- Program Line 8 - SET {8ba52ea6-e5cd-4d42-affe-b2d8e5eca2b2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0b52b77c-b7b5-42d5-b7f1-f95d2c484ce3}<23.9 && {0b52b77c-b7b5-42d5-b7f1-f95d2c484ce3}>1.7, !- Program Line 10 - SET {a8b7d082-9fc6-45f6-abed-21aa71034a36} = 29.4, !- Program Line 11 - SET {8ba52ea6-e5cd-4d42-affe-b2d8e5eca2b2} = 15.6, !- Program Line 12 - ELSE, !- Program Line 13 - SET {a8b7d082-9fc6-45f6-abed-21aa71034a36} = NULL, !- Program Line 14 - SET {8ba52ea6-e5cd-4d42-affe-b2d8e5eca2b2} = NULL, !- Program Line 15 - ENDIF; !- Program Line 16 - -OS:EnergyManagementSystem:Program, - {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6fc8a2ea-c7aa-456c-9754-6b874537b713}<23.9 && {6fc8a2ea-c7aa-456c-9754-6b874537b713}>1.7, !- Program Line 1 - SET {88919f87-8be8-4761-96b0-053cf0c01635} = 29.4, !- Program Line 2 - SET {46b34168-4906-4936-8104-1029e21ada96} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6fc8a2ea-c7aa-456c-9754-6b874537b713}<23.9 && {6fc8a2ea-c7aa-456c-9754-6b874537b713}>1.7, !- Program Line 4 - SET {88919f87-8be8-4761-96b0-053cf0c01635} = 29.4, !- Program Line 5 - SET {46b34168-4906-4936-8104-1029e21ada96} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6fc8a2ea-c7aa-456c-9754-6b874537b713}<23.9 && {6fc8a2ea-c7aa-456c-9754-6b874537b713}>1.7, !- Program Line 7 - SET {88919f87-8be8-4761-96b0-053cf0c01635} = 29.4, !- Program Line 8 - SET {46b34168-4906-4936-8104-1029e21ada96} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6fc8a2ea-c7aa-456c-9754-6b874537b713}<23.9 && {6fc8a2ea-c7aa-456c-9754-6b874537b713}>1.7, !- Program Line 10 - SET {88919f87-8be8-4761-96b0-053cf0c01635} = 29.4, !- Program Line 11 - SET {46b34168-4906-4936-8104-1029e21ada96} = 15.6, !- Program Line 12 + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fb0bfe1e-3823-420b-8f79-026825348657}<23.9 && {fb0bfe1e-3823-420b-8f79-026825348657}>1.7, !- Program Line 1 + SET {b852c4f6-75d6-4ff6-980c-79723a587fab} = 29.4, !- Program Line 2 + SET {048c1d07-46f8-4705-a863-3dbd80219e86} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fb0bfe1e-3823-420b-8f79-026825348657}<23.9 && {fb0bfe1e-3823-420b-8f79-026825348657}>1.7, !- Program Line 4 + SET {b852c4f6-75d6-4ff6-980c-79723a587fab} = 29.4, !- Program Line 5 + SET {048c1d07-46f8-4705-a863-3dbd80219e86} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fb0bfe1e-3823-420b-8f79-026825348657}<23.9 && {fb0bfe1e-3823-420b-8f79-026825348657}>1.7, !- Program Line 7 + SET {b852c4f6-75d6-4ff6-980c-79723a587fab} = 29.4, !- Program Line 8 + SET {048c1d07-46f8-4705-a863-3dbd80219e86} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fb0bfe1e-3823-420b-8f79-026825348657}<23.9 && {fb0bfe1e-3823-420b-8f79-026825348657}>1.7, !- Program Line 10 + SET {b852c4f6-75d6-4ff6-980c-79723a587fab} = 29.4, !- Program Line 11 + SET {048c1d07-46f8-4705-a863-3dbd80219e86} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {88919f87-8be8-4761-96b0-053cf0c01635} = NULL, !- Program Line 14 - SET {46b34168-4906-4936-8104-1029e21ada96} = NULL, !- Program Line 15 + SET {b852c4f6-75d6-4ff6-980c-79723a587fab} = NULL, !- Program Line 14 + SET {048c1d07-46f8-4705-a863-3dbd80219e86} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 -OS:EnergyManagementSystem:ProgramCallingManager, - {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name - BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point - {00000000-0000-0000-0037-000000000002}; !- Program Name 1 - OS:EnergyManagementSystem:Sensor, {00000000-0000-0000-0039-000000000001}, !- Handle OAT, !- Name Environment, !- Output Variable or Output Meter Index Key Name Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name -OS:EnergyManagementSystem:Sensor, - {00000000-0000-0000-0039-000000000002}, !- Handle - OAT_1, !- Name - Environment, !- Output Variable or Output Meter Index Key Name - Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name - OS:Facility, {00000000-0000-0000-0040-000000000001}; !- Handle OS:Fan:VariableVolume, {00000000-0000-0000-0041-000000000001}, !- Handle - Sys6 Return Fan 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000228}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000229}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000002}, !- Handle - Sys6 Return Fan 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000322}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000323}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000003}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -6220,29 +3621,8 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000004}, !- Handle - Sys6 Supply Fan 1, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.5, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -4.1457, !- Fan Power Coefficient 1 - 16.803, !- Fan Power Coefficient 2 - -19.471, !- Fan Power Coefficient 3 - 7.8488, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000223}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000221}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000005}, !- Handle - Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0041-000000000002}, !- Handle + Sys6 Supply Fan, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -6257,27 +3637,6 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0017-000000000317}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000315}, !- Air Outlet Node Name - ; !- End-Use Subcategory - -OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000006}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0017-000000000129}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000127}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -6324,58 +3683,6 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000487}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000488}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000491}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000492}, !- Exhaust Air Outlet Node - 564.521132154065, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0045-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000493}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000494}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000497}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000498}, !- Exhaust Air Outlet Node - 564.521132154065, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout - -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0045-000000000003}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} @@ -6387,10 +3694,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000481}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000482}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000485}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000486}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0017-000000000293}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000294}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000297}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000298}, !- Exhaust Air Outlet Node 564.521132154065, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -6834,49 +4141,17 @@ OS:ModelObjectList, {00000000-0000-0000-0051-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000009}, !- Handle - Availability Manager Night Cycle 3 Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000010}, !- Handle - Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000011}, !- Handle - Availability Manager Night Cycle 3 Heating Control Zone List; !- Name - -OS:ModelObjectList, - {00000000-0000-0000-0051-000000000012}, !- Handle - Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name - OS:Node, {00000000-0000-0000-0052-000000000001}, !- Handle 125gal NaturalGas Water Heater - 84kBtu/hr 0.912 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000396}, !- Inlet Port - {00000000-0000-0000-0017-000000000405}; !- Outlet Port + {00000000-0000-0000-0017-000000000208}, !- Inlet Port + {00000000-0000-0000-0017-000000000217}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000002}, !- Handle 125gal NaturalGas Water Heater - 84kBtu/hr 0.912 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000406}, !- Inlet Port - {00000000-0000-0000-0017-000000000407}; !- Outlet Port + {00000000-0000-0000-0017-000000000218}, !- Inlet Port + {00000000-0000-0000-0017-000000000219}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000003}, !- Handle @@ -6958,1425 +4233,813 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000016}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000296}, !- Inlet Port - {00000000-0000-0000-0017-000000000297}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000018}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000282}, !- Inlet Port - {00000000-0000-0000-0017-000000000283}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000019}, !- Handle + {00000000-0000-0000-0052-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000020}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000254}, !- Inlet Port - {00000000-0000-0000-0017-000000000255}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000021}, !- Handle + {00000000-0000-0000-0052-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000022}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000268}, !- Inlet Port - {00000000-0000-0000-0017-000000000269}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000023}, !- Handle + {00000000-0000-0000-0052-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000024}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000240}, !- Inlet Port - {00000000-0000-0000-0017-000000000241}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000025}, !- Handle + {00000000-0000-0000-0052-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000026}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000362}, !- Inlet Port - {00000000-0000-0000-0017-000000000363}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000027}, !- Handle + {00000000-0000-0000-0052-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000028}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000334}, !- Inlet Port - {00000000-0000-0000-0017-000000000335}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000029}, !- Handle + {00000000-0000-0000-0052-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000030}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000376}, !- Inlet Port - {00000000-0000-0000-0017-000000000377}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000031}, !- Handle + {00000000-0000-0000-0052-000000000023}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000032}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name - {00000000-0000-0000-0017-000000000390}, !- Inlet Port - {00000000-0000-0000-0017-000000000391}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000033}, !- Handle + {00000000-0000-0000-0052-000000000024}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000034}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0017-000000000348}, !- Inlet Port - {00000000-0000-0000-0017-000000000349}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000035}, !- Handle + {00000000-0000-0000-0052-000000000025}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000036}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000148}, !- Inlet Port - {00000000-0000-0000-0017-000000000149}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000037}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000150}, !- Inlet Port - {00000000-0000-0000-0017-000000000145}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000038}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000298}, !- Inlet Port - {00000000-0000-0000-0017-000000000299}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000039}, !- Handle - Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000300}, !- Inlet Port - {00000000-0000-0000-0017-000000000295}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000040}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000336}, !- Inlet Port - {00000000-0000-0000-0017-000000000337}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000041}, !- Handle - Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000338}, !- Inlet Port - {00000000-0000-0000-0017-000000000333}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000042}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000350}, !- Inlet Port - {00000000-0000-0000-0017-000000000351}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000043}, !- Handle - Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000352}, !- Inlet Port - {00000000-0000-0000-0017-000000000347}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000044}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000364}, !- Inlet Port - {00000000-0000-0000-0017-000000000365}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000045}, !- Handle - Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000366}, !- Inlet Port - {00000000-0000-0000-0017-000000000361}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000046}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000378}, !- Inlet Port - {00000000-0000-0000-0017-000000000379}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000047}, !- Handle - Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000380}, !- Inlet Port - {00000000-0000-0000-0017-000000000375}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000048}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000392}, !- Inlet Port - {00000000-0000-0000-0017-000000000393}; !- Outlet Port + {00000000-0000-0000-0052-000000000026}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000148}, !- Inlet Port + {00000000-0000-0000-0017-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000049}, !- Handle - Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000394}, !- Inlet Port - {00000000-0000-0000-0017-000000000389}; !- Outlet Port + {00000000-0000-0000-0052-000000000027}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000150}, !- Inlet Port + {00000000-0000-0000-0017-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000050}, !- Handle + {00000000-0000-0000-0052-000000000028}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000162}, !- Inlet Port {00000000-0000-0000-0017-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000051}, !- Handle + {00000000-0000-0000-0052-000000000029}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000164}, !- Inlet Port {00000000-0000-0000-0017-000000000159}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000052}, !- Handle + {00000000-0000-0000-0052-000000000030}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000176}, !- Inlet Port {00000000-0000-0000-0017-000000000177}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000053}, !- Handle + {00000000-0000-0000-0052-000000000031}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000178}, !- Inlet Port {00000000-0000-0000-0017-000000000173}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000054}, !- Handle + {00000000-0000-0000-0052-000000000032}, !- Handle Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000190}, !- Inlet Port {00000000-0000-0000-0017-000000000191}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000055}, !- Handle + {00000000-0000-0000-0052-000000000033}, !- Handle Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000192}, !- Inlet Port {00000000-0000-0000-0017-000000000187}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000056}, !- Handle + {00000000-0000-0000-0052-000000000034}, !- Handle Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000204}, !- Inlet Port {00000000-0000-0000-0017-000000000205}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000057}, !- Handle + {00000000-0000-0000-0052-000000000035}, !- Handle Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000206}, !- Inlet Port {00000000-0000-0000-0017-000000000201}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000058}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000242}, !- Inlet Port - {00000000-0000-0000-0017-000000000243}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000059}, !- Handle - Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000244}, !- Inlet Port - {00000000-0000-0000-0017-000000000239}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000060}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000256}, !- Inlet Port - {00000000-0000-0000-0017-000000000257}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000061}, !- Handle - Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000258}, !- Inlet Port - {00000000-0000-0000-0017-000000000253}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000062}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000270}, !- Inlet Port - {00000000-0000-0000-0017-000000000271}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000063}, !- Handle - Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000272}, !- Inlet Port - {00000000-0000-0000-0017-000000000267}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000064}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000284}, !- Inlet Port - {00000000-0000-0000-0017-000000000285}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000065}, !- Handle - Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000286}, !- Inlet Port - {00000000-0000-0000-0017-000000000281}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000066}, !- Handle + {00000000-0000-0000-0052-000000000036}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000065}, !- Inlet Port {00000000-0000-0000-0017-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000067}, !- Handle + {00000000-0000-0000-0052-000000000037}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000068}, !- Handle + {00000000-0000-0000-0052-000000000038}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000062}, !- Inlet Port {00000000-0000-0000-0017-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000069}, !- Handle + {00000000-0000-0000-0052-000000000039}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000086}, !- Inlet Port {00000000-0000-0000-0017-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000070}, !- Handle + {00000000-0000-0000-0052-000000000040}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000067}, !- Inlet Port {00000000-0000-0000-0017-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000071}, !- Handle + {00000000-0000-0000-0052-000000000041}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000130}, !- Inlet Port {00000000-0000-0000-0017-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000072}, !- Handle + {00000000-0000-0000-0052-000000000042}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000125}, !- Inlet Port {00000000-0000-0000-0017-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000073}, !- Handle - Coil Cooling Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000217}, !- Inlet Port - {00000000-0000-0000-0017-000000000218}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000074}, !- Handle - Coil Cooling Water 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Port - {00000000-0000-0000-0017-000000000225}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000075}, !- Handle - Coil Cooling Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Port - {00000000-0000-0000-0017-000000000220}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000076}, !- Handle - Coil Cooling Water 3 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000311}, !- Inlet Port - {00000000-0000-0000-0017-000000000312}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000077}, !- Handle - Coil Cooling Water 3 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000318}, !- Inlet Port - {00000000-0000-0000-0017-000000000319}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000078}, !- Handle - Coil Cooling Water 3 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000313}, !- Inlet Port - {00000000-0000-0000-0017-000000000314}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000079}, !- Handle + {00000000-0000-0000-0052-000000000043}, !- Handle Coil Heating Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000042}, !- Inlet Port {00000000-0000-0000-0017-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000080}, !- Handle + {00000000-0000-0000-0052-000000000044}, !- Handle Coil Heating Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000128}, !- Inlet Port {00000000-0000-0000-0017-000000000129}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000081}, !- Handle + {00000000-0000-0000-0052-000000000045}, !- Handle Coil Heating Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000122}, !- Inlet Port {00000000-0000-0000-0017-000000000123}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000082}, !- Handle - Coil Heating Water 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000259}, !- Inlet Port - {00000000-0000-0000-0017-000000000260}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000083}, !- Handle - Coil Heating Water 10 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000261}, !- Inlet Port - {00000000-0000-0000-0017-000000000262}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000084}, !- Handle - Coil Heating Water 11 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000273}, !- Inlet Port - {00000000-0000-0000-0017-000000000274}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000085}, !- Handle - Coil Heating Water 11 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000275}, !- Inlet Port - {00000000-0000-0000-0017-000000000276}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000086}, !- Handle - Coil Heating Water 12 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000287}, !- Inlet Port - {00000000-0000-0000-0017-000000000288}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000087}, !- Handle - Coil Heating Water 12 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000289}, !- Inlet Port - {00000000-0000-0000-0017-000000000290}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000088}, !- Handle - Coil Heating Water 13 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000307}, !- Inlet Port - {00000000-0000-0000-0017-000000000308}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000089}, !- Handle - Coil Heating Water 13 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000316}, !- Inlet Port - {00000000-0000-0000-0017-000000000317}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000090}, !- Handle - Coil Heating Water 13 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000309}, !- Inlet Port - {00000000-0000-0000-0017-000000000310}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000091}, !- Handle - Coil Heating Water 14 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000325}, !- Inlet Port - {00000000-0000-0000-0017-000000000326}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000092}, !- Handle - Coil Heating Water 14 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000327}, !- Inlet Port - {00000000-0000-0000-0017-000000000328}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000093}, !- Handle - Coil Heating Water 15 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000339}, !- Inlet Port - {00000000-0000-0000-0017-000000000340}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000094}, !- Handle - Coil Heating Water 15 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000341}, !- Inlet Port - {00000000-0000-0000-0017-000000000342}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000095}, !- Handle - Coil Heating Water 16 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000353}, !- Inlet Port - {00000000-0000-0000-0017-000000000354}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000096}, !- Handle - Coil Heating Water 16 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000355}, !- Inlet Port - {00000000-0000-0000-0017-000000000356}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000097}, !- Handle - Coil Heating Water 17 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000367}, !- Inlet Port - {00000000-0000-0000-0017-000000000368}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000098}, !- Handle - Coil Heating Water 17 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000369}, !- Inlet Port - {00000000-0000-0000-0017-000000000370}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000099}, !- Handle - Coil Heating Water 18 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000381}, !- Inlet Port - {00000000-0000-0000-0017-000000000382}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000100}, !- Handle - Coil Heating Water 18 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000383}, !- Inlet Port - {00000000-0000-0000-0017-000000000384}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000101}, !- Handle + {00000000-0000-0000-0052-000000000046}, !- Handle Coil Heating Water 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000102}, !- Handle + {00000000-0000-0000-0052-000000000047}, !- Handle Coil Heating Water 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000139}, !- Inlet Port {00000000-0000-0000-0017-000000000140}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000103}, !- Handle + {00000000-0000-0000-0052-000000000048}, !- Handle Coil Heating Water 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000151}, !- Inlet Port {00000000-0000-0000-0017-000000000152}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000104}, !- Handle + {00000000-0000-0000-0052-000000000049}, !- Handle Coil Heating Water 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000153}, !- Inlet Port {00000000-0000-0000-0017-000000000154}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000105}, !- Handle + {00000000-0000-0000-0052-000000000050}, !- Handle Coil Heating Water 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000165}, !- Inlet Port {00000000-0000-0000-0017-000000000166}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000106}, !- Handle + {00000000-0000-0000-0052-000000000051}, !- Handle Coil Heating Water 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000167}, !- Inlet Port {00000000-0000-0000-0017-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000107}, !- Handle + {00000000-0000-0000-0052-000000000052}, !- Handle Coil Heating Water 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000179}, !- Inlet Port {00000000-0000-0000-0017-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000108}, !- Handle + {00000000-0000-0000-0052-000000000053}, !- Handle Coil Heating Water 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000181}, !- Inlet Port {00000000-0000-0000-0017-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000109}, !- Handle - Coil Heating Water 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000193}, !- Inlet Port - {00000000-0000-0000-0017-000000000194}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000110}, !- Handle - Coil Heating Water 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000195}, !- Inlet Port - {00000000-0000-0000-0017-000000000196}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000111}, !- Handle - Coil Heating Water 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000213}, !- Inlet Port - {00000000-0000-0000-0017-000000000214}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000112}, !- Handle - Coil Heating Water 7 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000222}, !- Inlet Port - {00000000-0000-0000-0017-000000000223}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000113}, !- Handle - Coil Heating Water 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000215}, !- Inlet Port - {00000000-0000-0000-0017-000000000216}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000114}, !- Handle - Coil Heating Water 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000231}, !- Inlet Port - {00000000-0000-0000-0017-000000000232}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000115}, !- Handle - Coil Heating Water 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000233}, !- Inlet Port - {00000000-0000-0000-0017-000000000234}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000116}, !- Handle - Coil Heating Water 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000245}, !- Inlet Port - {00000000-0000-0000-0017-000000000246}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000117}, !- Handle - Coil Heating Water 9 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000247}, !- Inlet Port - {00000000-0000-0000-0017-000000000248}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000118}, !- Handle - Coil Heating Water Baseboard 1 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000141}, !- Inlet Port - {00000000-0000-0000-0017-000000000142}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000119}, !- Handle - Coil Heating Water Baseboard 1 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000143}, !- Inlet Port - {00000000-0000-0000-0017-000000000144}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000120}, !- Handle - Coil Heating Water Baseboard 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000291}, !- Inlet Port - {00000000-0000-0000-0017-000000000292}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000121}, !- Handle - Coil Heating Water Baseboard 10 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000293}, !- Inlet Port - {00000000-0000-0000-0017-000000000294}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000122}, !- Handle - Coil Heating Water Baseboard 11 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000329}, !- Inlet Port - {00000000-0000-0000-0017-000000000330}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000123}, !- Handle - Coil Heating Water Baseboard 11 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000331}, !- Inlet Port - {00000000-0000-0000-0017-000000000332}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000124}, !- Handle - Coil Heating Water Baseboard 12 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000343}, !- Inlet Port - {00000000-0000-0000-0017-000000000344}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000125}, !- Handle - Coil Heating Water Baseboard 12 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000345}, !- Inlet Port - {00000000-0000-0000-0017-000000000346}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000126}, !- Handle - Coil Heating Water Baseboard 13 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000357}, !- Inlet Port - {00000000-0000-0000-0017-000000000358}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000127}, !- Handle - Coil Heating Water Baseboard 13 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000359}, !- Inlet Port - {00000000-0000-0000-0017-000000000360}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000128}, !- Handle - Coil Heating Water Baseboard 14 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000371}, !- Inlet Port - {00000000-0000-0000-0017-000000000372}; !- Outlet Port + {00000000-0000-0000-0052-000000000054}, !- Handle + Coil Heating Water 6 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000193}, !- Inlet Port + {00000000-0000-0000-0017-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000129}, !- Handle - Coil Heating Water Baseboard 14 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000373}, !- Inlet Port - {00000000-0000-0000-0017-000000000374}; !- Outlet Port + {00000000-0000-0000-0052-000000000055}, !- Handle + Coil Heating Water 6 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000195}, !- Inlet Port + {00000000-0000-0000-0017-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000130}, !- Handle - Coil Heating Water Baseboard 15 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000385}, !- Inlet Port - {00000000-0000-0000-0017-000000000386}; !- Outlet Port + {00000000-0000-0000-0052-000000000056}, !- Handle + Coil Heating Water Baseboard 1 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000141}, !- Inlet Port + {00000000-0000-0000-0017-000000000142}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000131}, !- Handle - Coil Heating Water Baseboard 15 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000387}, !- Inlet Port - {00000000-0000-0000-0017-000000000388}; !- Outlet Port + {00000000-0000-0000-0052-000000000057}, !- Handle + Coil Heating Water Baseboard 1 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000143}, !- Inlet Port + {00000000-0000-0000-0017-000000000144}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000132}, !- Handle + {00000000-0000-0000-0052-000000000058}, !- Handle Coil Heating Water Baseboard 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000155}, !- Inlet Port {00000000-0000-0000-0017-000000000156}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000133}, !- Handle + {00000000-0000-0000-0052-000000000059}, !- Handle Coil Heating Water Baseboard 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000157}, !- Inlet Port {00000000-0000-0000-0017-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000134}, !- Handle + {00000000-0000-0000-0052-000000000060}, !- Handle Coil Heating Water Baseboard 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000169}, !- Inlet Port {00000000-0000-0000-0017-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000135}, !- Handle + {00000000-0000-0000-0052-000000000061}, !- Handle Coil Heating Water Baseboard 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000171}, !- Inlet Port {00000000-0000-0000-0017-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000136}, !- Handle + {00000000-0000-0000-0052-000000000062}, !- Handle Coil Heating Water Baseboard 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000183}, !- Inlet Port {00000000-0000-0000-0017-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000137}, !- Handle + {00000000-0000-0000-0052-000000000063}, !- Handle Coil Heating Water Baseboard 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000185}, !- Inlet Port {00000000-0000-0000-0017-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000138}, !- Handle + {00000000-0000-0000-0052-000000000064}, !- Handle Coil Heating Water Baseboard 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000197}, !- Inlet Port {00000000-0000-0000-0017-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000139}, !- Handle + {00000000-0000-0000-0052-000000000065}, !- Handle Coil Heating Water Baseboard 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000199}, !- Inlet Port {00000000-0000-0000-0017-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000140}, !- Handle - Coil Heating Water Baseboard 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000235}, !- Inlet Port - {00000000-0000-0000-0017-000000000236}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000141}, !- Handle - Coil Heating Water Baseboard 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000237}, !- Inlet Port - {00000000-0000-0000-0017-000000000238}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000142}, !- Handle - Coil Heating Water Baseboard 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000249}, !- Inlet Port - {00000000-0000-0000-0017-000000000250}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000143}, !- Handle - Coil Heating Water Baseboard 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000251}, !- Inlet Port - {00000000-0000-0000-0017-000000000252}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000144}, !- Handle - Coil Heating Water Baseboard 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000263}, !- Inlet Port - {00000000-0000-0000-0017-000000000264}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000145}, !- Handle - Coil Heating Water Baseboard 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000265}, !- Inlet Port - {00000000-0000-0000-0017-000000000266}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000146}, !- Handle - Coil Heating Water Baseboard 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000277}, !- Inlet Port - {00000000-0000-0000-0017-000000000278}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000147}, !- Handle - Coil Heating Water Baseboard 9 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000279}, !- Inlet Port - {00000000-0000-0000-0017-000000000280}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000148}, !- Handle + {00000000-0000-0000-0052-000000000066}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000149}, !- Handle + {00000000-0000-0000-0052-000000000067}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000150}, !- Handle + {00000000-0000-0000-0052-000000000068}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000151}, !- Handle + {00000000-0000-0000-0052-000000000069}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000107}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000152}, !- Handle + {00000000-0000-0000-0052-000000000070}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000153}, !- Handle + {00000000-0000-0000-0052-000000000071}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000099}, !- Inlet Port {00000000-0000-0000-0017-000000000100}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000154}, !- Handle + {00000000-0000-0000-0052-000000000072}, !- Handle Core_bottom WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000421}, !- Inlet Port - {00000000-0000-0000-0017-000000000422}; !- Outlet Port + {00000000-0000-0000-0017-000000000233}, !- Inlet Port + {00000000-0000-0000-0017-000000000234}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000155}, !- Handle + {00000000-0000-0000-0052-000000000073}, !- Handle Core_bottom WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000423}, !- Inlet Port - {00000000-0000-0000-0017-000000000424}; !- Outlet Port + {00000000-0000-0000-0017-000000000235}, !- Inlet Port + {00000000-0000-0000-0017-000000000236}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000156}, !- Handle + {00000000-0000-0000-0052-000000000074}, !- Handle Core_mid WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000425}, !- Inlet Port - {00000000-0000-0000-0017-000000000426}; !- Outlet Port + {00000000-0000-0000-0017-000000000237}, !- Inlet Port + {00000000-0000-0000-0017-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000157}, !- Handle + {00000000-0000-0000-0052-000000000075}, !- Handle Core_mid WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000427}, !- Inlet Port - {00000000-0000-0000-0017-000000000428}; !- Outlet Port + {00000000-0000-0000-0017-000000000239}, !- Inlet Port + {00000000-0000-0000-0017-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000158}, !- Handle + {00000000-0000-0000-0052-000000000076}, !- Handle Core_top WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000429}, !- Inlet Port - {00000000-0000-0000-0017-000000000430}; !- Outlet Port + {00000000-0000-0000-0017-000000000241}, !- Inlet Port + {00000000-0000-0000-0017-000000000242}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000159}, !- Handle + {00000000-0000-0000-0052-000000000077}, !- Handle Core_top WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000431}, !- Inlet Port - {00000000-0000-0000-0017-000000000432}; !- Outlet Port + {00000000-0000-0000-0017-000000000243}, !- Inlet Port + {00000000-0000-0000-0017-000000000244}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000160}, !- Handle + {00000000-0000-0000-0052-000000000078}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000161}, !- Handle + {00000000-0000-0000-0052-000000000079}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port {00000000-0000-0000-0017-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000162}, !- Handle + {00000000-0000-0000-0052-000000000080}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port {00000000-0000-0000-0017-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000163}, !- Handle + {00000000-0000-0000-0052-000000000081}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000061}, !- Inlet Port {00000000-0000-0000-0017-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000164}, !- Handle + {00000000-0000-0000-0052-000000000082}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000403}, !- Inlet Port - {00000000-0000-0000-0017-000000000404}; !- Outlet Port + {00000000-0000-0000-0017-000000000215}, !- Inlet Port + {00000000-0000-0000-0017-000000000216}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000165}, !- Handle + {00000000-0000-0000-0052-000000000083}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000398}, !- Inlet Port - {00000000-0000-0000-0017-000000000399}; !- Outlet Port + {00000000-0000-0000-0017-000000000210}, !- Inlet Port + {00000000-0000-0000-0017-000000000211}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000166}, !- Handle + {00000000-0000-0000-0052-000000000084}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000420}, !- Inlet Port - {00000000-0000-0000-0017-000000000401}; !- Outlet Port + {00000000-0000-0000-0017-000000000232}, !- Inlet Port + {00000000-0000-0000-0017-000000000213}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000167}, !- Handle + {00000000-0000-0000-0052-000000000085}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000395}, !- Inlet Port - {00000000-0000-0000-0017-000000000402}; !- Outlet Port + {00000000-0000-0000-0017-000000000207}, !- Inlet Port + {00000000-0000-0000-0017-000000000214}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000168}, !- Handle + {00000000-0000-0000-0052-000000000086}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000417}, !- Inlet Port - {00000000-0000-0000-0017-000000000397}; !- Outlet Port + {00000000-0000-0000-0017-000000000229}, !- Inlet Port + {00000000-0000-0000-0017-000000000209}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000169}, !- Handle + {00000000-0000-0000-0052-000000000087}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000433}, !- Inlet Port - {00000000-0000-0000-0017-000000000434}; !- Outlet Port + {00000000-0000-0000-0017-000000000245}, !- Inlet Port + {00000000-0000-0000-0017-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000170}, !- Handle + {00000000-0000-0000-0052-000000000088}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000435}, !- Inlet Port - {00000000-0000-0000-0017-000000000436}; !- Outlet Port + {00000000-0000-0000-0017-000000000247}, !- Inlet Port + {00000000-0000-0000-0017-000000000248}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000171}, !- Handle + {00000000-0000-0000-0052-000000000089}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000437}, !- Inlet Port - {00000000-0000-0000-0017-000000000438}; !- Outlet Port + {00000000-0000-0000-0017-000000000249}, !- Inlet Port + {00000000-0000-0000-0017-000000000250}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000172}, !- Handle + {00000000-0000-0000-0052-000000000090}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000439}, !- Inlet Port - {00000000-0000-0000-0017-000000000440}; !- Outlet Port + {00000000-0000-0000-0017-000000000251}, !- Inlet Port + {00000000-0000-0000-0017-000000000252}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000173}, !- Handle + {00000000-0000-0000-0052-000000000091}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000441}, !- Inlet Port - {00000000-0000-0000-0017-000000000442}; !- Outlet Port + {00000000-0000-0000-0017-000000000253}, !- Inlet Port + {00000000-0000-0000-0017-000000000254}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000174}, !- Handle + {00000000-0000-0000-0052-000000000092}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000443}, !- Inlet Port - {00000000-0000-0000-0017-000000000444}; !- Outlet Port + {00000000-0000-0000-0017-000000000255}, !- Inlet Port + {00000000-0000-0000-0017-000000000256}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000175}, !- Handle + {00000000-0000-0000-0052-000000000093}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000445}, !- Inlet Port - {00000000-0000-0000-0017-000000000446}; !- Outlet Port + {00000000-0000-0000-0017-000000000257}, !- Inlet Port + {00000000-0000-0000-0017-000000000258}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000176}, !- Handle + {00000000-0000-0000-0052-000000000094}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000447}, !- Inlet Port - {00000000-0000-0000-0017-000000000448}; !- Outlet Port + {00000000-0000-0000-0017-000000000259}, !- Inlet Port + {00000000-0000-0000-0017-000000000260}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000177}, !- Handle + {00000000-0000-0000-0052-000000000095}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000449}, !- Inlet Port - {00000000-0000-0000-0017-000000000450}; !- Outlet Port + {00000000-0000-0000-0017-000000000261}, !- Inlet Port + {00000000-0000-0000-0017-000000000262}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000178}, !- Handle + {00000000-0000-0000-0052-000000000096}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000451}, !- Inlet Port - {00000000-0000-0000-0017-000000000452}; !- Outlet Port + {00000000-0000-0000-0017-000000000263}, !- Inlet Port + {00000000-0000-0000-0017-000000000264}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000179}, !- Handle + {00000000-0000-0000-0052-000000000097}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000453}, !- Inlet Port - {00000000-0000-0000-0017-000000000454}; !- Outlet Port + {00000000-0000-0000-0017-000000000265}, !- Inlet Port + {00000000-0000-0000-0017-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000180}, !- Handle + {00000000-0000-0000-0052-000000000098}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000455}, !- Inlet Port - {00000000-0000-0000-0017-000000000456}; !- Outlet Port + {00000000-0000-0000-0017-000000000267}, !- Inlet Port + {00000000-0000-0000-0017-000000000268}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000181}, !- Handle + {00000000-0000-0000-0052-000000000099}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000457}, !- Inlet Port - {00000000-0000-0000-0017-000000000458}; !- Outlet Port + {00000000-0000-0000-0017-000000000269}, !- Inlet Port + {00000000-0000-0000-0017-000000000270}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000182}, !- Handle + {00000000-0000-0000-0052-000000000100}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000459}, !- Inlet Port - {00000000-0000-0000-0017-000000000460}; !- Outlet Port + {00000000-0000-0000-0017-000000000271}, !- Inlet Port + {00000000-0000-0000-0017-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000183}, !- Handle + {00000000-0000-0000-0052-000000000101}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000461}, !- Inlet Port - {00000000-0000-0000-0017-000000000462}; !- Outlet Port + {00000000-0000-0000-0017-000000000273}, !- Inlet Port + {00000000-0000-0000-0017-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000184}, !- Handle + {00000000-0000-0000-0052-000000000102}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000463}, !- Inlet Port - {00000000-0000-0000-0017-000000000464}; !- Outlet Port + {00000000-0000-0000-0017-000000000275}, !- Inlet Port + {00000000-0000-0000-0017-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000185}, !- Handle + {00000000-0000-0000-0052-000000000103}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000465}, !- Inlet Port - {00000000-0000-0000-0017-000000000466}; !- Outlet Port + {00000000-0000-0000-0017-000000000277}, !- Inlet Port + {00000000-0000-0000-0017-000000000278}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000186}, !- Handle + {00000000-0000-0000-0052-000000000104}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000467}, !- Inlet Port - {00000000-0000-0000-0017-000000000468}; !- Outlet Port + {00000000-0000-0000-0017-000000000279}, !- Inlet Port + {00000000-0000-0000-0017-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000187}, !- Handle + {00000000-0000-0000-0052-000000000105}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000469}, !- Inlet Port - {00000000-0000-0000-0017-000000000470}; !- Outlet Port + {00000000-0000-0000-0017-000000000281}, !- Inlet Port + {00000000-0000-0000-0017-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000188}, !- Handle + {00000000-0000-0000-0052-000000000106}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000471}, !- Inlet Port - {00000000-0000-0000-0017-000000000472}; !- Outlet Port + {00000000-0000-0000-0017-000000000283}, !- Inlet Port + {00000000-0000-0000-0017-000000000284}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000189}, !- Handle + {00000000-0000-0000-0052-000000000107}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000473}, !- Inlet Port - {00000000-0000-0000-0017-000000000474}; !- Outlet Port + {00000000-0000-0000-0017-000000000285}, !- Inlet Port + {00000000-0000-0000-0017-000000000286}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000190}, !- Handle + {00000000-0000-0000-0052-000000000108}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000475}, !- Inlet Port - {00000000-0000-0000-0017-000000000476}; !- Outlet Port + {00000000-0000-0000-0017-000000000287}, !- Inlet Port + {00000000-0000-0000-0017-000000000288}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000191}, !- Handle + {00000000-0000-0000-0052-000000000109}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000477}, !- Inlet Port - {00000000-0000-0000-0017-000000000478}; !- Outlet Port + {00000000-0000-0000-0017-000000000289}, !- Inlet Port + {00000000-0000-0000-0017-000000000290}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000192}, !- Handle + {00000000-0000-0000-0052-000000000110}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000479}, !- Inlet Port - {00000000-0000-0000-0017-000000000480}; !- Outlet Port + {00000000-0000-0000-0017-000000000291}, !- Inlet Port + {00000000-0000-0000-0017-000000000292}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000193}, !- Handle + {00000000-0000-0000-0052-000000000111}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000194}, !- Handle + {00000000-0000-0000-0052-000000000112}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000057}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000195}, !- Handle + {00000000-0000-0000-0052-000000000113}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000418}, !- Inlet Port - {00000000-0000-0000-0017-000000000419}; !- Outlet Port + {00000000-0000-0000-0017-000000000230}, !- Inlet Port + {00000000-0000-0000-0017-000000000231}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000196}, !- Handle + {00000000-0000-0000-0052-000000000114}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000059}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000197}, !- Handle + {00000000-0000-0000-0052-000000000115}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000080}, !- Inlet Port {00000000-0000-0000-0017-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000198}, !- Handle + {00000000-0000-0000-0052-000000000116}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000082}, !- Inlet Port {00000000-0000-0000-0017-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000199}, !- Handle + {00000000-0000-0000-0052-000000000117}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000084}, !- Inlet Port {00000000-0000-0000-0017-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000200}, !- Handle + {00000000-0000-0000-0052-000000000118}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000101}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000201}, !- Handle + {00000000-0000-0000-0052-000000000119}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000202}, !- Handle + {00000000-0000-0000-0052-000000000120}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000105}, !- Inlet Port {00000000-0000-0000-0017-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000203}, !- Handle + {00000000-0000-0000-0052-000000000121}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000408}, !- Inlet Port - {00000000-0000-0000-0017-000000000409}; !- Outlet Port + {00000000-0000-0000-0017-000000000220}, !- Inlet Port + {00000000-0000-0000-0017-000000000221}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000204}, !- Handle + {00000000-0000-0000-0052-000000000122}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000410}, !- Inlet Port - {00000000-0000-0000-0017-000000000411}; !- Outlet Port + {00000000-0000-0000-0017-000000000222}, !- Inlet Port + {00000000-0000-0000-0017-000000000223}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000205}, !- Handle + {00000000-0000-0000-0052-000000000123}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000400}, !- Inlet Port - {00000000-0000-0000-0017-000000000412}; !- Outlet Port + {00000000-0000-0000-0017-000000000212}, !- Inlet Port + {00000000-0000-0000-0017-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000206}, !- Handle + {00000000-0000-0000-0052-000000000124}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000413}, !- Inlet Port - {00000000-0000-0000-0017-000000000414}; !- Outlet Port + {00000000-0000-0000-0017-000000000225}, !- Inlet Port + {00000000-0000-0000-0017-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000207}, !- Handle + {00000000-0000-0000-0052-000000000125}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000415}, !- Inlet Port - {00000000-0000-0000-0017-000000000416}; !- Outlet Port + {00000000-0000-0000-0017-000000000227}, !- Inlet Port + {00000000-0000-0000-0017-000000000228}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000208}, !- Handle - Primary Boiler 1560kBtu/hr 0.9 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000126}, !- Handle + Primary Boiler 332kBtu/hr 0.9 Thermal Eff Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000209}, !- Handle - Primary Boiler 1560kBtu/hr 0.9 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000127}, !- Handle + Primary Boiler 332kBtu/hr 0.9 Thermal Eff Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000210}, !- Handle - Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000128}, !- Handle + Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Port {00000000-0000-0000-0017-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000211}, !- Handle - Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000129}, !- Handle + Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000109}, !- Inlet Port {00000000-0000-0000-0017-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000212}, !- Handle - Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000130}, !- Handle + Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000063}, !- Inlet Port {00000000-0000-0000-0017-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000213}, !- Handle - Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000131}, !- Handle + Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000074}, !- Inlet Port {00000000-0000-0000-0017-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000214}, !- Handle + {00000000-0000-0000-0052-000000000132}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port {00000000-0000-0000-0017-000000000047}; !- Outlet Port -OS:Node, - {00000000-0000-0000-0052-000000000215}, !- Handle - Pump Variable Speed 2 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000071}, !- Inlet Port - {00000000-0000-0000-0017-000000000072}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000216}, !- Handle - Pump Variable Speed 3 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000096}, !- Inlet Port - {00000000-0000-0000-0017-000000000097}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000217}, !- Handle - Secondary Boiler 0kBtu/hr 0.9 AFUE Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000051}, !- Inlet Port - {00000000-0000-0000-0017-000000000052}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000218}, !- Handle - Secondary Boiler 0kBtu/hr 0.9 AFUE Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000053}, !- Inlet Port - {00000000-0000-0000-0017-000000000054}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000219}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000111}, !- Inlet Port - {00000000-0000-0000-0017-000000000112}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000220}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000113}, !- Inlet Port - {00000000-0000-0000-0017-000000000114}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000221}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000076}, !- Inlet Port - {00000000-0000-0000-0017-000000000077}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000222}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000078}, !- Inlet Port - {00000000-0000-0000-0017-000000000079}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000223}, !- Handle - Sys6 Return Fan 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000229}, !- Inlet Port - {00000000-0000-0000-0017-000000000230}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000224}, !- Handle - Sys6 Return Fan 2 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000323}, !- Inlet Port - {00000000-0000-0000-0017-000000000324}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000225}, !- Handle - Sys6 Return Fan Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000135}, !- Inlet Port - {00000000-0000-0000-0017-000000000136}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000226}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000209}, !- Inlet Port - {00000000-0000-0000-0017-000000000211}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000227}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Port - {00000000-0000-0000-0017-000000000210}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000228}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000226}, !- Inlet Port - {00000000-0000-0000-0017-000000000227}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000229}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000487}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000230}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000492}, !- Inlet Port - ; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000231}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000207}, !- Inlet Port - {00000000-0000-0000-0017-000000000228}; !- Outlet Port +OS:Node, + {00000000-0000-0000-0052-000000000133}, !- Handle + Pump Variable Speed 2 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000071}, !- Inlet Port + {00000000-0000-0000-0017-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000232}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000221}, !- Inlet Port - {00000000-0000-0000-0017-000000000208}; !- Outlet Port + {00000000-0000-0000-0052-000000000134}, !- Handle + Pump Variable Speed 3 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000096}, !- Inlet Port + {00000000-0000-0000-0017-000000000097}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000233}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000303}, !- Inlet Port - {00000000-0000-0000-0017-000000000305}; !- Outlet Port + {00000000-0000-0000-0052-000000000135}, !- Handle + Secondary Boiler 332kBtu/hr 0.9 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000051}, !- Inlet Port + {00000000-0000-0000-0017-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000234}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000306}, !- Inlet Port - {00000000-0000-0000-0017-000000000304}; !- Outlet Port + {00000000-0000-0000-0052-000000000136}, !- Handle + Secondary Boiler 332kBtu/hr 0.9 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000053}, !- Inlet Port + {00000000-0000-0000-0017-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000235}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name - {00000000-0000-0000-0017-000000000320}, !- Inlet Port - {00000000-0000-0000-0017-000000000321}; !- Outlet Port + {00000000-0000-0000-0052-000000000137}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000111}, !- Inlet Port + {00000000-0000-0000-0017-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000236}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name - , !- Inlet Port - {00000000-0000-0000-0017-000000000493}; !- Outlet Port + {00000000-0000-0000-0052-000000000138}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000113}, !- Inlet Port + {00000000-0000-0000-0017-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000237}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000498}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000139}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000076}, !- Inlet Port + {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000238}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000301}, !- Inlet Port - {00000000-0000-0000-0017-000000000322}; !- Outlet Port + {00000000-0000-0000-0052-000000000140}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000078}, !- Inlet Port + {00000000-0000-0000-0017-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000239}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000315}, !- Inlet Port - {00000000-0000-0000-0017-000000000302}; !- Outlet Port + {00000000-0000-0000-0052-000000000141}, !- Handle + Sys6 Return Fan Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000135}, !- Inlet Port + {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000240}, !- Handle + {00000000-0000-0000-0052-000000000142}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000117}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000241}, !- Handle + {00000000-0000-0000-0052-000000000143}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000242}, !- Handle + {00000000-0000-0000-0052-000000000144}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port {00000000-0000-0000-0017-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000243}, !- Handle + {00000000-0000-0000-0052-000000000145}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000481}; !- Outlet Port + {00000000-0000-0000-0017-000000000293}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000244}, !- Handle + {00000000-0000-0000-0052-000000000146}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000486}, !- Inlet Port + {00000000-0000-0000-0017-000000000298}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000245}, !- Handle + {00000000-0000-0000-0052-000000000147}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000115}, !- Inlet Port {00000000-0000-0000-0017-000000000134}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000246}, !- Handle + {00000000-0000-0000-0052-000000000148}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000127}, !- Inlet Port {00000000-0000-0000-0017-000000000116}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000247}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000488}, !- Inlet Port - {00000000-0000-0000-0017-000000000489}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000248}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000490}, !- Inlet Port - {00000000-0000-0000-0017-000000000491}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000249}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000494}, !- Inlet Port - {00000000-0000-0000-0017-000000000495}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000250}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000496}, !- Inlet Port - {00000000-0000-0000-0017-000000000497}; !- Outlet Port - -OS:Node, - {00000000-0000-0000-0052-000000000251}, !- Handle + {00000000-0000-0000-0052-000000000149}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000482}, !- Inlet Port - {00000000-0000-0000-0017-000000000483}; !- Outlet Port + {00000000-0000-0000-0017-000000000294}, !- Inlet Port + {00000000-0000-0000-0017-000000000295}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000252}, !- Handle + {00000000-0000-0000-0052-000000000150}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000484}, !- Inlet Port - {00000000-0000-0000-0017-000000000485}; !- Outlet Port + {00000000-0000-0000-0017-000000000296}, !- Inlet Port + {00000000-0000-0000-0017-000000000297}; !- Outlet Port OS:OutputControl:ReportingTolerances, {00000000-0000-0000-0053-000000000001}, !- Handle @@ -8391,7 +5054,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0066-000000000024}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0066-000000000022}, !- Work Efficiency Schedule Name {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -8414,8 +5077,8 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0017-000000000419}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000420}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000231}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000232}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000003}, !- Handle @@ -8450,20 +5113,20 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000409}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000410}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000221}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000222}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000412}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000413}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000225}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0017-000000000416}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000417}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000228}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000229}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0057-000000000001}, !- Handle @@ -8474,7 +5137,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000069}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000039}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8488,7 +5151,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8510,7 +5173,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000151}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000069}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8524,7 +5187,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8546,7 +5209,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000163}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000081}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -8560,7 +5223,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000007}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8582,21 +5245,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000168}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000086}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000395}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000397}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000207}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000398}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000401}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000210}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000213}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -8611,8 +5274,7 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0058-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000239}; !- Port 1 + {00000000-0000-0000-0094-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000002}, !- Handle @@ -8620,13 +5282,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000003}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- HVAC Component - {00000000-0000-0000-0017-000000000240}; !- Port 1 + {00000000-0000-0000-0094-000000000013}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000004}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000347}; !- Port 1 + {00000000-0000-0000-0094-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000005}, !- Handle @@ -8634,13 +5294,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000006}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- HVAC Component - {00000000-0000-0000-0017-000000000348}; !- Port 1 + {00000000-0000-0000-0094-000000000018}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000007}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000361}; !- Port 1 + {00000000-0000-0000-0094-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000008}, !- Handle @@ -8648,13 +5306,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000009}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- HVAC Component - {00000000-0000-0000-0017-000000000362}; !- Port 1 + {00000000-0000-0000-0094-000000000014}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000010}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000333}; !- Port 1 + {00000000-0000-0000-0094-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000011}, !- Handle @@ -8662,13 +5318,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000012}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- HVAC Component - {00000000-0000-0000-0017-000000000334}; !- Port 1 + {00000000-0000-0000-0094-000000000015}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000013}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000295}; !- Port 1 + {00000000-0000-0000-0094-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000014}, !- Handle @@ -8676,8 +5330,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000015}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- HVAC Component - {00000000-0000-0000-0017-000000000296}; !- Port 1 + {00000000-0000-0000-0094-000000000009}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000016}, !- Handle @@ -8695,8 +5348,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000019}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000375}; !- Port 1 + {00000000-0000-0000-0094-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000020}, !- Handle @@ -8704,13 +5356,11 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000021}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- HVAC Component - {00000000-0000-0000-0017-000000000376}; !- Port 1 + {00000000-0000-0000-0094-000000000016}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000022}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000281}; !- Port 1 + {00000000-0000-0000-0094-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000023}, !- Handle @@ -8718,8 +5368,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000024}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- HVAC Component - {00000000-0000-0000-0017-000000000282}; !- Port 1 + {00000000-0000-0000-0094-000000000010}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000025}, !- Handle @@ -8735,8 +5384,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000028}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000389}; !- Port 1 + {00000000-0000-0000-0094-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000029}, !- Handle @@ -8744,8 +5392,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000030}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- HVAC Component - {00000000-0000-0000-0017-000000000390}; !- Port 1 + {00000000-0000-0000-0094-000000000017}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000031}, !- Handle @@ -8775,8 +5422,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000037}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000253}; !- Port 1 + {00000000-0000-0000-0094-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000038}, !- Handle @@ -8784,8 +5430,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000039}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- HVAC Component - {00000000-0000-0000-0017-000000000254}; !- Port 1 + {00000000-0000-0000-0094-000000000011}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000040}, !- Handle @@ -8815,8 +5460,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000046}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000267}; !- Port 1 + {00000000-0000-0000-0094-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000047}, !- Handle @@ -8824,8 +5468,7 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000048}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- HVAC Component - {00000000-0000-0000-0017-000000000268}; !- Port 1 + {00000000-0000-0000-0094-000000000012}; !- HVAC Component OS:PortList, {00000000-0000-0000-0058-000000000049}, !- Handle @@ -8858,8 +5501,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0059-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000402}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000403}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000214}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000215}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 446362.499964258, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -8883,9 +5526,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000045}, !- Inlet Node Name {00000000-0000-0000-0017-000000000046}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 210100.176008404, !- Rated Pump Head {Pa} + 200710.224008028, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.855, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8916,9 +5559,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000070}, !- Inlet Node Name {00000000-0000-0000-0017-000000000071}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 245116.872009805, !- Rated Pump Head {Pa} + 236900.664009476, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.865, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -8949,9 +5592,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000095}, !- Inlet Node Name {00000000-0000-0000-0017-000000000096}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 215264.649608611, !- Rated Pump Head {Pa} + 210100.176008404, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.917, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -9748,33 +6391,6 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000037}, !- Handle - Schedule Day 10, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000038}, !- Handle - Schedule Day 11, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000039}, !- Handle - Schedule Day 12, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9783,7 +6399,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000041}, !- Handle + {00000000-0000-0000-0064-000000000038}, !- Handle Schedule Day 3, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9861,9 +6477,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000042}, !- Handle + {00000000-0000-0000-0064-000000000039}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -9939,25 +6555,25 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000043}, !- Handle + {00000000-0000-0000-0064-000000000040}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000044}, !- Handle + {00000000-0000-0000-0064-000000000041}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000045}, !- Handle + {00000000-0000-0000-0064-000000000042}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9966,7 +6582,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000046}, !- Handle + {00000000-0000-0000-0064-000000000043}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9975,16 +6591,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000047}, !- Handle - Schedule Day 9, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 0; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000048}, !- Handle + {00000000-0000-0000-0064-000000000044}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -9993,34 +6600,16 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000049}, !- Handle - Supply Air Temp Default 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000050}, !- Handle - Supply Air Temp Default 2, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 13; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000051}, !- Handle + {00000000-0000-0000-0064-000000000045}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000052}, !- Handle + {00000000-0000-0000-0064-000000000046}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10029,7 +6618,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000053}, !- Handle + {00000000-0000-0000-0064-000000000047}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10038,7 +6627,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000054}, !- Handle + {00000000-0000-0000-0064-000000000048}, !- Handle satCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10116,7 +6705,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000055}, !- Handle + {00000000-0000-0000-0064-000000000049}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10194,9 +6783,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000056}, !- Handle + {00000000-0000-0000-0064-000000000050}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10272,7 +6861,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000057}, !- Handle + {00000000-0000-0000-0064-000000000051}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10350,7 +6939,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000058}, !- Handle + {00000000-0000-0000-0064-000000000052}, !- Handle sunCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10428,7 +7017,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000059}, !- Handle + {00000000-0000-0000-0064-000000000053}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10506,9 +7095,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000060}, !- Handle + {00000000-0000-0000-0064-000000000054}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10584,7 +7173,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000061}, !- Handle + {00000000-0000-0000-0064-000000000055}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10647,88 +7236,22 @@ OS:Schedule:Day, 29, !- Value Until Time 19 20, !- Hour 20 0, !- Minute 20 - 29, !- Value Until Time 20 - 21, !- Hour 21 - 0, !- Minute 21 - 29, !- Value Until Time 21 - 22, !- Hour 22 - 0, !- Minute 22 - 29, !- Value Until Time 22 - 23, !- Hour 23 - 0, !- Minute 23 - 29, !- Value Until Time 23 - 24, !- Hour 24 - 0, !- Minute 24 - 29; !- Value Until Time 24 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000062}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000063}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000064}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000065}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 19, !- Hour 2 - 0, !- Minute 2 - 1, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 0; !- Value Until Time 3 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000066}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 - -OS:Schedule:Day, - {00000000-0000-0000-0064-000000000067}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - , !- Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 1; !- Value Until Time 1 + 29, !- Value Until Time 20 + 21, !- Hour 21 + 0, !- Minute 21 + 29, !- Value Until Time 21 + 22, !- Hour 22 + 0, !- Minute 22 + 29, !- Value Until Time 22 + 23, !- Hour 23 + 0, !- Minute 23 + 29, !- Value Until Time 23 + 24, !- Hour 24 + 0, !- Minute 24 + 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000068}, !- Handle + {00000000-0000-0000-0064-000000000056}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10743,7 +7266,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000069}, !- Handle + {00000000-0000-0000-0064-000000000057}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10752,7 +7275,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000070}, !- Handle + {00000000-0000-0000-0064-000000000058}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10761,7 +7284,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000071}, !- Handle + {00000000-0000-0000-0064-000000000059}, !- Handle wkdCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10839,7 +7362,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000072}, !- Handle + {00000000-0000-0000-0064-000000000060}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -10917,9 +7440,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000073}, !- Handle + {00000000-0000-0000-0064-000000000061}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -10995,7 +7518,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000074}, !- Handle + {00000000-0000-0000-0064-000000000062}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -11303,9 +7826,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000023}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000042}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11322,9 +7845,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000023}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000046}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -11340,82 +7863,6 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000015}, !- Handle - Schedule Rule 22, !- Name - {00000000-0000-0000-0066-000000000025}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0064-000000000047}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000016}, !- Handle - Schedule Rule 23, !- Name - {00000000-0000-0000-0066-000000000025}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0064-000000000037}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000017}, !- Handle - Schedule Rule 24, !- Name - {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name - 1, !- Rule Order - {00000000-0000-0000-0064-000000000038}, !- Day Schedule Name - , !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - Yes, !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 7, !- Start Day - 12, !- End Month - 30; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000018}, !- Handle - Schedule Rule 25, !- Name - {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name - 0, !- Rule Order - {00000000-0000-0000-0064-000000000039}, !- Day Schedule Name - Yes, !- Apply Sunday - , !- Apply Monday - , !- Apply Tuesday - , !- Apply Wednesday - , !- Apply Thursday - , !- Apply Friday - , !- Apply Saturday - DateRange, !- Date Specification Type - 1, !- Start Month - 1, !- Start Day - 12, !- End Month - 31; !- End Day - -OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -11434,7 +7881,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000020}, !- Handle + {00000000-0000-0000-0065-000000000016}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -11453,7 +7900,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000021}, !- Handle + {00000000-0000-0000-0065-000000000017}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order @@ -11472,7 +7919,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000022}, !- Handle + {00000000-0000-0000-0065-000000000018}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -11491,7 +7938,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000023}, !- Handle + {00000000-0000-0000-0065-000000000019}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -11510,7 +7957,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000024}, !- Handle + {00000000-0000-0000-0065-000000000020}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -11529,7 +7976,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000025}, !- Handle + {00000000-0000-0000-0065-000000000021}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -11548,11 +7995,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000026}, !- Handle + {00000000-0000-0000-0065-000000000022}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000048}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11567,11 +8014,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000027}, !- Handle + {00000000-0000-0000-0065-000000000023}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000050}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11586,11 +8033,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000028}, !- Handle + {00000000-0000-0000-0065-000000000024}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000058}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000052}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11605,11 +8052,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000029}, !- Handle + {00000000-0000-0000-0065-000000000025}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000060}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -11624,11 +8071,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000030}, !- Handle + {00000000-0000-0000-0065-000000000026}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000071}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000059}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11643,11 +8090,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000031}, !- Handle + {00000000-0000-0000-0065-000000000027}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000073}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000061}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -11677,13 +8124,13 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000003}, !- Handle CHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000038}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000042}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000039}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000005}, !- Handle @@ -11762,74 +8209,46 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000043}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000040}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000020}, !- Handle - Supply Air Temp 1, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000049}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000021}, !- Handle - Supply Air Temp 2, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000050}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000022}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000051}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000023}, !- Handle + {00000000-0000-0000-0066-000000000021}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000052}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000024}, !- Handle + {00000000-0000-0000-0066-000000000022}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000053}; !- Default Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000025}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000062}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000063}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000064}; !- Winter Design Day Schedule Name - -OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000026}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name - {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000065}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000066}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000067}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000027}, !- Handle + {00000000-0000-0000-0066-000000000023}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000068}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000069}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000070}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000056}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000057}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000058}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0067-000000000001}, !- Handle @@ -11910,39 +8329,11 @@ OS:SetpointManager:OutdoorAirPretreat, 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0052-000000000242}, !- Reference Setpoint Node Name - {00000000-0000-0000-0052-000000000242}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0052-000000000243}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0052-000000000225}, !- Return Air Stream Node Name - {00000000-0000-0000-0052-000000000251}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000002}, !- Handle - Setpoint Manager Outdoor Air Pretreat 2, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0052-000000000228}, !- Reference Setpoint Node Name - {00000000-0000-0000-0052-000000000228}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0052-000000000229}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0052-000000000223}, !- Return Air Stream Node Name - {00000000-0000-0000-0052-000000000247}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0068-000000000003}, !- Handle - Setpoint Manager Outdoor Air Pretreat 3, !- Name - , !- Control Variable - -99, !- Minimum Setpoint Temperature {C} - 99, !- Maximum Setpoint Temperature {C} - 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} - 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0052-000000000235}, !- Reference Setpoint Node Name - {00000000-0000-0000-0052-000000000235}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0052-000000000236}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0052-000000000224}, !- Return Air Stream Node Name - {00000000-0000-0000-0052-000000000249}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000144}, !- Reference Setpoint Node Name + {00000000-0000-0000-0052-000000000144}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0052-000000000145}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0052-000000000141}, !- Return Air Stream Node Name + {00000000-0000-0000-0052-000000000149}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirReset, {00000000-0000-0000-0069-000000000001}, !- Handle @@ -11952,7 +8343,7 @@ OS:SetpointManager:OutdoorAirReset, -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0052-000000000163}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000081}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -11964,42 +8355,28 @@ OS:SetpointManager:Scheduled, Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000019}, !- Schedule Name - {00000000-0000-0000-0052-000000000168}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000086}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000003}, !- Schedule Name - {00000000-0000-0000-0052-000000000069}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000039}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000004}, !- Schedule Name - {00000000-0000-0000-0052-000000000151}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000069}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000022}, !- Schedule Name - {00000000-0000-0000-0052-000000000246}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000005}, !- Handle - Setpoint Manager Scheduled 4, !- Name - Temperature, !- Control Variable {00000000-0000-0000-0066-000000000020}, !- Schedule Name - {00000000-0000-0000-0052-000000000232}; !- Setpoint Node or NodeList Name - -OS:SetpointManager:Scheduled, - {00000000-0000-0000-0070-000000000006}, !- Handle - Setpoint Manager Scheduled 5, !- Name - Temperature, !- Control Variable - {00000000-0000-0000-0066-000000000021}, !- Schedule Name - {00000000-0000-0000-0052-000000000239}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000148}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0071-000000000001}, !- Handle @@ -12152,47 +8529,6 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0081-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000003}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - -OS:Sizing:System, - {00000000-0000-0000-0081-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -12232,60 +8568,19 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity -OS:Sizing:System, - {00000000-0000-0000-0081-000000000003}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- AirLoop Name - , !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Central Heating Maximum System Air Flow Ratio - 7, !- Preheat Design Temperature {C} - 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 12.8, !- Precool Design Temperature {C} - 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Central Cooling Design Supply Air Temperature {C} - 13.1, !- Central Heating Design Supply Air Temperature {C} - , !- Sizing Option - No, !- 100% Outdoor Air in Cooling - No, !- 100% Outdoor Air in Heating - 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - , !- Cooling Design Air Flow Method - , !- Cooling Design Air Flow Rate {m3/s} - , !- Heating Design Air Flow Method - , !- Heating Design Air Flow Rate {m3/s} - , !- System Outdoor Air Method - 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} - 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate - 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} - 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} - 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate - 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate - 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} - CoolingDesignCapacity, !- Cooling Design Capacity Method - autosize, !- Cooling Design Capacity {W} - 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Cooling Design Capacity - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 157, !- Heating Design Capacity Per Floor Area {W/m2} - 1, !- Fraction of Autosized Heating Design Capacity - OnOff, !- Central Cooling Capacity Control Method - autosize; !- Occupant Diversity - OS:Sizing:Zone, {00000000-0000-0000-0082-000000000001}, !- Handle {00000000-0000-0000-0094-000000000013}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12311,16 +8606,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000002}, !- Handle {00000000-0000-0000-0094-000000000018}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12346,16 +8641,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000003}, !- Handle {00000000-0000-0000-0094-000000000014}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12381,16 +8676,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000004}, !- Handle {00000000-0000-0000-0094-000000000015}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12416,16 +8711,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000005}, !- Handle {00000000-0000-0000-0094-000000000009}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12486,16 +8781,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000007}, !- Handle {00000000-0000-0000-0094-000000000016}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12521,16 +8816,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000008}, !- Handle {00000000-0000-0000-0094-000000000010}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12591,16 +8886,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000010}, !- Handle {00000000-0000-0000-0094-000000000017}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12696,16 +8991,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000013}, !- Handle {00000000-0000-0000-0094-000000000011}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -12801,16 +9096,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000016}, !- Handle {00000000-0000-0000-0094-000000000012}, !- Zone or ZoneList Name - TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - 1.3, !- Zone Heating Sizing Factor - 1.1, !- Zone Cooling Sizing Factor + , !- 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} @@ -17031,7 +13326,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0066-000000000023}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0066-000000000021}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 7.59358966638208, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -17041,8 +13336,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000405}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000406}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000217}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000218}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -17065,8 +13360,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000001}, !- Handle Core_bottom WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000422}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000423}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000234}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000235}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17079,8 +13374,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000002}, !- Handle Core_mid WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000426}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000427}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000238}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000239}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17093,8 +13388,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000003}, !- Handle Core_top WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000430}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000431}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000242}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000243}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17107,8 +13402,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000434}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000435}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000246}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000247}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17121,8 +13416,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000438}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000439}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000250}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000251}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17135,8 +13430,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000442}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000443}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000254}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000255}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17149,8 +13444,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000446}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000447}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000258}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000259}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17163,8 +13458,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000450}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000451}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000262}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000263}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17177,8 +13472,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000454}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000455}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000266}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000267}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17191,8 +13486,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000458}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000459}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000270}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000271}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17205,8 +13500,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000462}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000463}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000274}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000275}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17219,8 +13514,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000466}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000467}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000278}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000279}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17233,8 +13528,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000470}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000471}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000282}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000283}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17247,8 +13542,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000474}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000475}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000286}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000287}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17261,8 +13556,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000478}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000479}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000290}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000291}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -17562,87 +13857,27 @@ OS:ZoneHVAC:Baseboard:Convective:Water, OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 10, !- Name + Zone HVAC Baseboard Convective Water 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000002}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000003}, !- Handle - Zone HVAC Baseboard Convective Water 11, !- Name + Zone HVAC Baseboard Convective Water 3, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000003}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000004}, !- Handle - Zone HVAC Baseboard Convective Water 12, !- Name + Zone HVAC Baseboard Convective Water 4, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000004}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000005}, !- Handle - Zone HVAC Baseboard Convective Water 13, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000005}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000006}, !- Handle - Zone HVAC Baseboard Convective Water 14, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000006}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000007}, !- Handle - Zone HVAC Baseboard Convective Water 15, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000007}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000008}, !- Handle - Zone HVAC Baseboard Convective Water 2, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000008}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000009}, !- Handle - Zone HVAC Baseboard Convective Water 3, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000009}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000010}, !- Handle - Zone HVAC Baseboard Convective Water 4, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000010}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000011}, !- Handle Zone HVAC Baseboard Convective Water 5, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000011}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000012}, !- Handle - Zone HVAC Baseboard Convective Water 6, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000012}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000013}, !- Handle - Zone HVAC Baseboard Convective Water 7, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000013}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000014}, !- Handle - Zone HVAC Baseboard Convective Water 8, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000014}; !- Heating Coil Name - -OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0106-000000000015}, !- Handle - Zone HVAC Baseboard Convective Water 9, !- Name - {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name - {00000000-0000-0000-0016-000000000015}; !- Heating Coil Name + {00000000-0000-0000-0016-000000000005}; !- Heating Coil Name OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000001}, !- Handle @@ -17667,12 +13902,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000009}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17683,12 +13918,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000008}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17699,12 +13934,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000010}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17715,12 +13950,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000011}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -17746,159 +13981,59 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000009}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000010}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000015}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000011}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000013}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000012}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000014}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000013}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000012}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000014}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000015}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000016}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000006}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000017}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000007}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000018}, !- Thermal Zone - , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 - 1, !- Zone Equipment Cooling Sequence 1 - 1, !- Zone Equipment Heating or No-Load Sequence 1 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 - , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 - 2, !- Zone Equipment Cooling Sequence 2 - 2, !- Zone Equipment Heating or No-Load Sequence 2 - , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 - ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + ; !- Load Distribution Scheme diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 92a77cb3c4..e47e2b320b 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -4716,41 +4716,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fe54ed60-4f9b-4f72-82d9-630d60ad5a6f}<23.9 && {fe54ed60-4f9b-4f72-82d9-630d60ad5a6f}>1.7, !- Program Line 1 - SET {538844e9-a073-4308-9ac9-4c9c7d89593f} = 29.4, !- Program Line 2 - SET {02a189d3-10b7-49b3-97d4-d46ef7f0ec4e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fe54ed60-4f9b-4f72-82d9-630d60ad5a6f}<23.9 && {fe54ed60-4f9b-4f72-82d9-630d60ad5a6f}>1.7, !- Program Line 4 - SET {538844e9-a073-4308-9ac9-4c9c7d89593f} = 29.4, !- Program Line 5 - SET {02a189d3-10b7-49b3-97d4-d46ef7f0ec4e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fe54ed60-4f9b-4f72-82d9-630d60ad5a6f}<23.9 && {fe54ed60-4f9b-4f72-82d9-630d60ad5a6f}>1.7, !- Program Line 7 - SET {538844e9-a073-4308-9ac9-4c9c7d89593f} = 29.4, !- Program Line 8 - SET {02a189d3-10b7-49b3-97d4-d46ef7f0ec4e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fe54ed60-4f9b-4f72-82d9-630d60ad5a6f}<23.9 && {fe54ed60-4f9b-4f72-82d9-630d60ad5a6f}>1.7, !- Program Line 10 - SET {538844e9-a073-4308-9ac9-4c9c7d89593f} = 29.4, !- Program Line 11 - SET {02a189d3-10b7-49b3-97d4-d46ef7f0ec4e} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {da9ad744-9205-494f-95c2-d204ae7a92d4}<23.9 && {da9ad744-9205-494f-95c2-d204ae7a92d4}>1.7, !- Program Line 1 + SET {2959a56e-d0fb-4f71-b885-047c9358d2d5} = 29.4, !- Program Line 2 + SET {85a50bbc-7555-433d-a3cd-d681a088e6a5} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {da9ad744-9205-494f-95c2-d204ae7a92d4}<23.9 && {da9ad744-9205-494f-95c2-d204ae7a92d4}>1.7, !- Program Line 4 + SET {2959a56e-d0fb-4f71-b885-047c9358d2d5} = 29.4, !- Program Line 5 + SET {85a50bbc-7555-433d-a3cd-d681a088e6a5} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {da9ad744-9205-494f-95c2-d204ae7a92d4}<23.9 && {da9ad744-9205-494f-95c2-d204ae7a92d4}>1.7, !- Program Line 7 + SET {2959a56e-d0fb-4f71-b885-047c9358d2d5} = 29.4, !- Program Line 8 + SET {85a50bbc-7555-433d-a3cd-d681a088e6a5} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {da9ad744-9205-494f-95c2-d204ae7a92d4}<23.9 && {da9ad744-9205-494f-95c2-d204ae7a92d4}>1.7, !- Program Line 10 + SET {2959a56e-d0fb-4f71-b885-047c9358d2d5} = 29.4, !- Program Line 11 + SET {85a50bbc-7555-433d-a3cd-d681a088e6a5} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {538844e9-a073-4308-9ac9-4c9c7d89593f} = NULL, !- Program Line 14 - SET {02a189d3-10b7-49b3-97d4-d46ef7f0ec4e} = NULL, !- Program Line 15 + SET {2959a56e-d0fb-4f71-b885-047c9358d2d5} = NULL, !- Program Line 14 + SET {85a50bbc-7555-433d-a3cd-d681a088e6a5} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {adc98fa8-fdf7-4ac0-a817-cc67f57e2cb6}<23.9 && {adc98fa8-fdf7-4ac0-a817-cc67f57e2cb6}>1.7, !- Program Line 1 - SET {62ae6c13-e68d-495e-9c5b-c99c587e5628} = 29.4, !- Program Line 2 - SET {a419ba2d-6962-4ede-8156-cf61be5cf5fd} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {adc98fa8-fdf7-4ac0-a817-cc67f57e2cb6}<23.9 && {adc98fa8-fdf7-4ac0-a817-cc67f57e2cb6}>1.7, !- Program Line 4 - SET {62ae6c13-e68d-495e-9c5b-c99c587e5628} = 29.4, !- Program Line 5 - SET {a419ba2d-6962-4ede-8156-cf61be5cf5fd} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {adc98fa8-fdf7-4ac0-a817-cc67f57e2cb6}<23.9 && {adc98fa8-fdf7-4ac0-a817-cc67f57e2cb6}>1.7, !- Program Line 7 - SET {62ae6c13-e68d-495e-9c5b-c99c587e5628} = 29.4, !- Program Line 8 - SET {a419ba2d-6962-4ede-8156-cf61be5cf5fd} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {adc98fa8-fdf7-4ac0-a817-cc67f57e2cb6}<23.9 && {adc98fa8-fdf7-4ac0-a817-cc67f57e2cb6}>1.7, !- Program Line 10 - SET {62ae6c13-e68d-495e-9c5b-c99c587e5628} = 29.4, !- Program Line 11 - SET {a419ba2d-6962-4ede-8156-cf61be5cf5fd} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b2fc883e-98ea-4025-9538-a5985cbd9ca0}<23.9 && {b2fc883e-98ea-4025-9538-a5985cbd9ca0}>1.7, !- Program Line 1 + SET {55180bc0-9ae9-489a-9ad9-fd0bed3a66c9} = 29.4, !- Program Line 2 + SET {0cfdd555-a104-481a-8997-db2b4eefe3c6} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b2fc883e-98ea-4025-9538-a5985cbd9ca0}<23.9 && {b2fc883e-98ea-4025-9538-a5985cbd9ca0}>1.7, !- Program Line 4 + SET {55180bc0-9ae9-489a-9ad9-fd0bed3a66c9} = 29.4, !- Program Line 5 + SET {0cfdd555-a104-481a-8997-db2b4eefe3c6} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b2fc883e-98ea-4025-9538-a5985cbd9ca0}<23.9 && {b2fc883e-98ea-4025-9538-a5985cbd9ca0}>1.7, !- Program Line 7 + SET {55180bc0-9ae9-489a-9ad9-fd0bed3a66c9} = 29.4, !- Program Line 8 + SET {0cfdd555-a104-481a-8997-db2b4eefe3c6} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b2fc883e-98ea-4025-9538-a5985cbd9ca0}<23.9 && {b2fc883e-98ea-4025-9538-a5985cbd9ca0}>1.7, !- Program Line 10 + SET {55180bc0-9ae9-489a-9ad9-fd0bed3a66c9} = 29.4, !- Program Line 11 + SET {0cfdd555-a104-481a-8997-db2b4eefe3c6} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {62ae6c13-e68d-495e-9c5b-c99c587e5628} = NULL, !- Program Line 14 - SET {a419ba2d-6962-4ede-8156-cf61be5cf5fd} = NULL, !- Program Line 15 + SET {55180bc0-9ae9-489a-9ad9-fd0bed3a66c9} = NULL, !- Program Line 14 + SET {0cfdd555-a104-481a-8997-db2b4eefe3c6} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 6c9950f34a..74f937cb0f 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -4786,41 +4786,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {937fbe4c-f9e9-4b6e-b851-039f50becce8}<23.9 && {937fbe4c-f9e9-4b6e-b851-039f50becce8}>1.7, !- Program Line 1 - SET {de4b0f8e-f69b-415b-980a-3dc578cb8021} = 29.4, !- Program Line 2 - SET {0b407e37-1742-4709-9e93-fc19d1593f34} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {937fbe4c-f9e9-4b6e-b851-039f50becce8}<23.9 && {937fbe4c-f9e9-4b6e-b851-039f50becce8}>1.7, !- Program Line 4 - SET {de4b0f8e-f69b-415b-980a-3dc578cb8021} = 29.4, !- Program Line 5 - SET {0b407e37-1742-4709-9e93-fc19d1593f34} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {937fbe4c-f9e9-4b6e-b851-039f50becce8}<23.9 && {937fbe4c-f9e9-4b6e-b851-039f50becce8}>1.7, !- Program Line 7 - SET {de4b0f8e-f69b-415b-980a-3dc578cb8021} = 29.4, !- Program Line 8 - SET {0b407e37-1742-4709-9e93-fc19d1593f34} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {937fbe4c-f9e9-4b6e-b851-039f50becce8}<23.9 && {937fbe4c-f9e9-4b6e-b851-039f50becce8}>1.7, !- Program Line 10 - SET {de4b0f8e-f69b-415b-980a-3dc578cb8021} = 29.4, !- Program Line 11 - SET {0b407e37-1742-4709-9e93-fc19d1593f34} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {93884f6a-aba7-460e-831b-f6a2732a6e01}<23.9 && {93884f6a-aba7-460e-831b-f6a2732a6e01}>1.7, !- Program Line 1 + SET {6ff09c5e-ba1a-4396-ab22-ddaf7a8cad3d} = 29.4, !- Program Line 2 + SET {15a74738-a3d7-4bf6-ae82-77e96310553a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {93884f6a-aba7-460e-831b-f6a2732a6e01}<23.9 && {93884f6a-aba7-460e-831b-f6a2732a6e01}>1.7, !- Program Line 4 + SET {6ff09c5e-ba1a-4396-ab22-ddaf7a8cad3d} = 29.4, !- Program Line 5 + SET {15a74738-a3d7-4bf6-ae82-77e96310553a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {93884f6a-aba7-460e-831b-f6a2732a6e01}<23.9 && {93884f6a-aba7-460e-831b-f6a2732a6e01}>1.7, !- Program Line 7 + SET {6ff09c5e-ba1a-4396-ab22-ddaf7a8cad3d} = 29.4, !- Program Line 8 + SET {15a74738-a3d7-4bf6-ae82-77e96310553a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {93884f6a-aba7-460e-831b-f6a2732a6e01}<23.9 && {93884f6a-aba7-460e-831b-f6a2732a6e01}>1.7, !- Program Line 10 + SET {6ff09c5e-ba1a-4396-ab22-ddaf7a8cad3d} = 29.4, !- Program Line 11 + SET {15a74738-a3d7-4bf6-ae82-77e96310553a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {de4b0f8e-f69b-415b-980a-3dc578cb8021} = NULL, !- Program Line 14 - SET {0b407e37-1742-4709-9e93-fc19d1593f34} = NULL, !- Program Line 15 + SET {6ff09c5e-ba1a-4396-ab22-ddaf7a8cad3d} = NULL, !- Program Line 14 + SET {15a74738-a3d7-4bf6-ae82-77e96310553a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_6_mixed_shr_none_sh_ashp_sc_ashp_ssf_cv_zh_b_hw_zc_none_srf_cv__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f0fae033-9a3a-453f-a49b-9cb7322470da}<23.9 && {f0fae033-9a3a-453f-a49b-9cb7322470da}>1.7, !- Program Line 1 - SET {904b5c26-52dc-4315-b5a7-a133995052a3} = 29.4, !- Program Line 2 - SET {79a4a7dd-de6d-4bd6-9fa1-a14bbe7f811c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f0fae033-9a3a-453f-a49b-9cb7322470da}<23.9 && {f0fae033-9a3a-453f-a49b-9cb7322470da}>1.7, !- Program Line 4 - SET {904b5c26-52dc-4315-b5a7-a133995052a3} = 29.4, !- Program Line 5 - SET {79a4a7dd-de6d-4bd6-9fa1-a14bbe7f811c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f0fae033-9a3a-453f-a49b-9cb7322470da}<23.9 && {f0fae033-9a3a-453f-a49b-9cb7322470da}>1.7, !- Program Line 7 - SET {904b5c26-52dc-4315-b5a7-a133995052a3} = 29.4, !- Program Line 8 - SET {79a4a7dd-de6d-4bd6-9fa1-a14bbe7f811c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f0fae033-9a3a-453f-a49b-9cb7322470da}<23.9 && {f0fae033-9a3a-453f-a49b-9cb7322470da}>1.7, !- Program Line 10 - SET {904b5c26-52dc-4315-b5a7-a133995052a3} = 29.4, !- Program Line 11 - SET {79a4a7dd-de6d-4bd6-9fa1-a14bbe7f811c} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {de31ea1f-85c0-4a96-8ed1-fff90d8029a8}<23.9 && {de31ea1f-85c0-4a96-8ed1-fff90d8029a8}>1.7, !- Program Line 1 + SET {c3a95876-1252-4ab3-ae8b-8bc8b3dc7b7e} = 29.4, !- Program Line 2 + SET {7de4b91b-345a-4dc7-b887-cac66ee24ec1} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {de31ea1f-85c0-4a96-8ed1-fff90d8029a8}<23.9 && {de31ea1f-85c0-4a96-8ed1-fff90d8029a8}>1.7, !- Program Line 4 + SET {c3a95876-1252-4ab3-ae8b-8bc8b3dc7b7e} = 29.4, !- Program Line 5 + SET {7de4b91b-345a-4dc7-b887-cac66ee24ec1} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {de31ea1f-85c0-4a96-8ed1-fff90d8029a8}<23.9 && {de31ea1f-85c0-4a96-8ed1-fff90d8029a8}>1.7, !- Program Line 7 + SET {c3a95876-1252-4ab3-ae8b-8bc8b3dc7b7e} = 29.4, !- Program Line 8 + SET {7de4b91b-345a-4dc7-b887-cac66ee24ec1} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {de31ea1f-85c0-4a96-8ed1-fff90d8029a8}<23.9 && {de31ea1f-85c0-4a96-8ed1-fff90d8029a8}>1.7, !- Program Line 10 + SET {c3a95876-1252-4ab3-ae8b-8bc8b3dc7b7e} = 29.4, !- Program Line 11 + SET {7de4b91b-345a-4dc7-b887-cac66ee24ec1} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {904b5c26-52dc-4315-b5a7-a133995052a3} = NULL, !- Program Line 14 - SET {79a4a7dd-de6d-4bd6-9fa1-a14bbe7f811c} = NULL, !- Program Line 15 + SET {c3a95876-1252-4ab3-ae8b-8bc8b3dc7b7e} = NULL, !- Program Line 14 + SET {7de4b91b-345a-4dc7-b887-cac66ee24ec1} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index e91ba3a05d..34a50ba113 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -4230,7 +4230,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4238,7 +4238,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4246,27 +4246,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {42943628-df53-498a-a3b8-f4ce8f7c824b}<23.9 && {42943628-df53-498a-a3b8-f4ce8f7c824b}>1.7, !- Program Line 1 - SET {02cd3bde-c2cd-4c8c-bda7-8316fdaf26b4} = 29.4, !- Program Line 2 - SET {9708f5c8-71ba-4d87-bcbb-69a1ba848911} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {42943628-df53-498a-a3b8-f4ce8f7c824b}<23.9 && {42943628-df53-498a-a3b8-f4ce8f7c824b}>1.7, !- Program Line 4 - SET {02cd3bde-c2cd-4c8c-bda7-8316fdaf26b4} = 29.4, !- Program Line 5 - SET {9708f5c8-71ba-4d87-bcbb-69a1ba848911} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {42943628-df53-498a-a3b8-f4ce8f7c824b}<23.9 && {42943628-df53-498a-a3b8-f4ce8f7c824b}>1.7, !- Program Line 7 - SET {02cd3bde-c2cd-4c8c-bda7-8316fdaf26b4} = 29.4, !- Program Line 8 - SET {9708f5c8-71ba-4d87-bcbb-69a1ba848911} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {42943628-df53-498a-a3b8-f4ce8f7c824b}<23.9 && {42943628-df53-498a-a3b8-f4ce8f7c824b}>1.7, !- Program Line 10 - SET {02cd3bde-c2cd-4c8c-bda7-8316fdaf26b4} = 29.4, !- Program Line 11 - SET {9708f5c8-71ba-4d87-bcbb-69a1ba848911} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f562d092-bbb1-4260-ae5a-b081133d23da}<23.9 && {f562d092-bbb1-4260-ae5a-b081133d23da}>1.7, !- Program Line 1 + SET {7c3722b4-c5ac-4d3b-9901-81091bba7218} = 29.4, !- Program Line 2 + SET {4dc8cfd7-b17e-47eb-afe8-3513f3ed1433} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f562d092-bbb1-4260-ae5a-b081133d23da}<23.9 && {f562d092-bbb1-4260-ae5a-b081133d23da}>1.7, !- Program Line 4 + SET {7c3722b4-c5ac-4d3b-9901-81091bba7218} = 29.4, !- Program Line 5 + SET {4dc8cfd7-b17e-47eb-afe8-3513f3ed1433} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f562d092-bbb1-4260-ae5a-b081133d23da}<23.9 && {f562d092-bbb1-4260-ae5a-b081133d23da}>1.7, !- Program Line 7 + SET {7c3722b4-c5ac-4d3b-9901-81091bba7218} = 29.4, !- Program Line 8 + SET {4dc8cfd7-b17e-47eb-afe8-3513f3ed1433} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f562d092-bbb1-4260-ae5a-b081133d23da}<23.9 && {f562d092-bbb1-4260-ae5a-b081133d23da}>1.7, !- Program Line 10 + SET {7c3722b4-c5ac-4d3b-9901-81091bba7218} = 29.4, !- Program Line 11 + SET {4dc8cfd7-b17e-47eb-afe8-3513f3ed1433} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {02cd3bde-c2cd-4c8c-bda7-8316fdaf26b4} = NULL, !- Program Line 14 - SET {9708f5c8-71ba-4d87-bcbb-69a1ba848911} = NULL, !- Program Line 15 + SET {7c3722b4-c5ac-4d3b-9901-81091bba7218} = NULL, !- Program Line 14 + SET {4dc8cfd7-b17e-47eb-afe8-3513f3ed1433} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -5842,85 +5842,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000172}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port {00000000-0000-0000-0017-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000173}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port {00000000-0000-0000-0017-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000174}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000042}, !- Inlet Port {00000000-0000-0000-0017-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000175}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000034}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000176}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000035}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000177}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000178}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000036}, !- Inlet Port {00000000-0000-0000-0017-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000190}, !- Inlet Port {00000000-0000-0000-0017-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000193}, !- Inlet Port {00000000-0000-0000-0017-000000000191}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000198}, !- Inlet Port {00000000-0000-0000-0017-000000000199}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000194}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000195}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000188}, !- Inlet Port {00000000-0000-0000-0017-000000000197}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000196}, !- Inlet Port {00000000-0000-0000-0017-000000000189}; !- Outlet Port @@ -7938,7 +7938,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7947,7 +7947,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7956,7 +7956,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7965,7 +7965,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7974,7 +7974,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7983,7 +7983,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8764,7 +8764,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000053}, !- Summer Design Day Schedule Name @@ -8772,7 +8772,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 9479ea4e8d..e40913286d 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -4340,7 +4340,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4348,7 +4348,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4356,27 +4356,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8b79f5a7-ad48-49dd-907d-937130673f67}<23.9 && {8b79f5a7-ad48-49dd-907d-937130673f67}>1.7, !- Program Line 1 - SET {4d8b421e-94ac-4730-8af7-af7431880245} = 29.4, !- Program Line 2 - SET {e55b1228-746a-4b00-9ff5-bd5ae71bf1f1} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8b79f5a7-ad48-49dd-907d-937130673f67}<23.9 && {8b79f5a7-ad48-49dd-907d-937130673f67}>1.7, !- Program Line 4 - SET {4d8b421e-94ac-4730-8af7-af7431880245} = 29.4, !- Program Line 5 - SET {e55b1228-746a-4b00-9ff5-bd5ae71bf1f1} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8b79f5a7-ad48-49dd-907d-937130673f67}<23.9 && {8b79f5a7-ad48-49dd-907d-937130673f67}>1.7, !- Program Line 7 - SET {4d8b421e-94ac-4730-8af7-af7431880245} = 29.4, !- Program Line 8 - SET {e55b1228-746a-4b00-9ff5-bd5ae71bf1f1} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8b79f5a7-ad48-49dd-907d-937130673f67}<23.9 && {8b79f5a7-ad48-49dd-907d-937130673f67}>1.7, !- Program Line 10 - SET {4d8b421e-94ac-4730-8af7-af7431880245} = 29.4, !- Program Line 11 - SET {e55b1228-746a-4b00-9ff5-bd5ae71bf1f1} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {eb8a29ca-c549-4685-94a8-de1f9eb29589}<23.9 && {eb8a29ca-c549-4685-94a8-de1f9eb29589}>1.7, !- Program Line 1 + SET {b0bd635b-9898-4c7b-80d5-0ddc2d07f5ad} = 29.4, !- Program Line 2 + SET {b6d2ade5-6844-4171-a23d-552ae8dfb578} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {eb8a29ca-c549-4685-94a8-de1f9eb29589}<23.9 && {eb8a29ca-c549-4685-94a8-de1f9eb29589}>1.7, !- Program Line 4 + SET {b0bd635b-9898-4c7b-80d5-0ddc2d07f5ad} = 29.4, !- Program Line 5 + SET {b6d2ade5-6844-4171-a23d-552ae8dfb578} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {eb8a29ca-c549-4685-94a8-de1f9eb29589}<23.9 && {eb8a29ca-c549-4685-94a8-de1f9eb29589}>1.7, !- Program Line 7 + SET {b0bd635b-9898-4c7b-80d5-0ddc2d07f5ad} = 29.4, !- Program Line 8 + SET {b6d2ade5-6844-4171-a23d-552ae8dfb578} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {eb8a29ca-c549-4685-94a8-de1f9eb29589}<23.9 && {eb8a29ca-c549-4685-94a8-de1f9eb29589}>1.7, !- Program Line 10 + SET {b0bd635b-9898-4c7b-80d5-0ddc2d07f5ad} = 29.4, !- Program Line 11 + SET {b6d2ade5-6844-4171-a23d-552ae8dfb578} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4d8b421e-94ac-4730-8af7-af7431880245} = NULL, !- Program Line 14 - SET {e55b1228-746a-4b00-9ff5-bd5ae71bf1f1} = NULL, !- Program Line 15 + SET {b0bd635b-9898-4c7b-80d5-0ddc2d07f5ad} = NULL, !- Program Line 14 + SET {b6d2ade5-6844-4171-a23d-552ae8dfb578} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -5952,85 +5952,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000172}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port {00000000-0000-0000-0017-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000173}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port {00000000-0000-0000-0017-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000174}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000042}, !- Inlet Port {00000000-0000-0000-0017-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000175}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000034}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000176}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000035}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000177}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000178}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000036}, !- Inlet Port {00000000-0000-0000-0017-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000190}, !- Inlet Port {00000000-0000-0000-0017-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000193}, !- Inlet Port {00000000-0000-0000-0017-000000000191}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000198}, !- Inlet Port {00000000-0000-0000-0017-000000000199}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000194}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000195}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000188}, !- Inlet Port {00000000-0000-0000-0017-000000000197}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000196}, !- Inlet Port {00000000-0000-0000-0017-000000000189}; !- Outlet Port @@ -8048,7 +8048,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8057,7 +8057,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8066,7 +8066,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8075,7 +8075,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8084,7 +8084,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8093,7 +8093,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8874,7 +8874,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000053}, !- Summer Design Day Schedule Name @@ -8882,7 +8882,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 6a9f9d116e..529e5dc6c1 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -5651,7 +5651,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5659,7 +5659,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5667,27 +5667,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c993bfd2-2f4b-4273-a078-a9b83b466031}<23.9 && {c993bfd2-2f4b-4273-a078-a9b83b466031}>1.7, !- Program Line 1 - SET {502f53f1-8bb3-419b-ac1d-64b8d50896f3} = 29.4, !- Program Line 2 - SET {5955d731-11ea-406e-9970-f472257af26c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c993bfd2-2f4b-4273-a078-a9b83b466031}<23.9 && {c993bfd2-2f4b-4273-a078-a9b83b466031}>1.7, !- Program Line 4 - SET {502f53f1-8bb3-419b-ac1d-64b8d50896f3} = 29.4, !- Program Line 5 - SET {5955d731-11ea-406e-9970-f472257af26c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c993bfd2-2f4b-4273-a078-a9b83b466031}<23.9 && {c993bfd2-2f4b-4273-a078-a9b83b466031}>1.7, !- Program Line 7 - SET {502f53f1-8bb3-419b-ac1d-64b8d50896f3} = 29.4, !- Program Line 8 - SET {5955d731-11ea-406e-9970-f472257af26c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c993bfd2-2f4b-4273-a078-a9b83b466031}<23.9 && {c993bfd2-2f4b-4273-a078-a9b83b466031}>1.7, !- Program Line 10 - SET {502f53f1-8bb3-419b-ac1d-64b8d50896f3} = 29.4, !- Program Line 11 - SET {5955d731-11ea-406e-9970-f472257af26c} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b89ad80c-844d-48c6-acd1-7c86e68083c6}<23.9 && {b89ad80c-844d-48c6-acd1-7c86e68083c6}>1.7, !- Program Line 1 + SET {e0ec894d-e377-4859-8252-a1148912f7bf} = 29.4, !- Program Line 2 + SET {cca770e7-55c9-4fa9-a426-3ee3aa9313b8} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b89ad80c-844d-48c6-acd1-7c86e68083c6}<23.9 && {b89ad80c-844d-48c6-acd1-7c86e68083c6}>1.7, !- Program Line 4 + SET {e0ec894d-e377-4859-8252-a1148912f7bf} = 29.4, !- Program Line 5 + SET {cca770e7-55c9-4fa9-a426-3ee3aa9313b8} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b89ad80c-844d-48c6-acd1-7c86e68083c6}<23.9 && {b89ad80c-844d-48c6-acd1-7c86e68083c6}>1.7, !- Program Line 7 + SET {e0ec894d-e377-4859-8252-a1148912f7bf} = 29.4, !- Program Line 8 + SET {cca770e7-55c9-4fa9-a426-3ee3aa9313b8} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b89ad80c-844d-48c6-acd1-7c86e68083c6}<23.9 && {b89ad80c-844d-48c6-acd1-7c86e68083c6}>1.7, !- Program Line 10 + SET {e0ec894d-e377-4859-8252-a1148912f7bf} = 29.4, !- Program Line 11 + SET {cca770e7-55c9-4fa9-a426-3ee3aa9313b8} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {502f53f1-8bb3-419b-ac1d-64b8d50896f3} = NULL, !- Program Line 14 - SET {5955d731-11ea-406e-9970-f472257af26c} = NULL, !- Program Line 15 + SET {e0ec894d-e377-4859-8252-a1148912f7bf} = NULL, !- Program Line 14 + SET {cca770e7-55c9-4fa9-a426-3ee3aa9313b8} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -7659,85 +7659,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000238}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000055}, !- Inlet Port {00000000-0000-0000-0019-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000239}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000058}, !- Inlet Port {00000000-0000-0000-0019-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000240}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000067}, !- Inlet Port {00000000-0000-0000-0019-000000000068}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000241}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000242}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000060}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000243}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000053}, !- Inlet Port {00000000-0000-0000-0019-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000244}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000061}, !- Inlet Port {00000000-0000-0000-0019-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000245}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000310}, !- Inlet Port {00000000-0000-0000-0019-000000000312}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000246}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000313}, !- Inlet Port {00000000-0000-0000-0019-000000000311}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000247}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000318}, !- Inlet Port {00000000-0000-0000-0019-000000000319}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000248}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000314}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000249}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000315}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000250}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000308}, !- Inlet Port {00000000-0000-0000-0019-000000000317}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000251}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000316}, !- Inlet Port {00000000-0000-0000-0019-000000000309}; !- Outlet Port @@ -9836,7 +9836,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9845,7 +9845,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9854,7 +9854,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9863,7 +9863,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9872,7 +9872,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9881,7 +9881,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10662,7 +10662,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000053}, !- Summer Design Day Schedule Name @@ -10670,7 +10670,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index f30b46cd8a..6245649b71 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -5761,7 +5761,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5769,7 +5769,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5777,27 +5777,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f0ec3673-ce4a-4fcb-816c-2b9e3abe3c9a}<23.9 && {f0ec3673-ce4a-4fcb-816c-2b9e3abe3c9a}>1.7, !- Program Line 1 - SET {125ede7c-6767-4909-ac35-80e8ae4daa7f} = 29.4, !- Program Line 2 - SET {d520a93c-e3c5-42fb-a2b8-992ee01bde5d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f0ec3673-ce4a-4fcb-816c-2b9e3abe3c9a}<23.9 && {f0ec3673-ce4a-4fcb-816c-2b9e3abe3c9a}>1.7, !- Program Line 4 - SET {125ede7c-6767-4909-ac35-80e8ae4daa7f} = 29.4, !- Program Line 5 - SET {d520a93c-e3c5-42fb-a2b8-992ee01bde5d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f0ec3673-ce4a-4fcb-816c-2b9e3abe3c9a}<23.9 && {f0ec3673-ce4a-4fcb-816c-2b9e3abe3c9a}>1.7, !- Program Line 7 - SET {125ede7c-6767-4909-ac35-80e8ae4daa7f} = 29.4, !- Program Line 8 - SET {d520a93c-e3c5-42fb-a2b8-992ee01bde5d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f0ec3673-ce4a-4fcb-816c-2b9e3abe3c9a}<23.9 && {f0ec3673-ce4a-4fcb-816c-2b9e3abe3c9a}>1.7, !- Program Line 10 - SET {125ede7c-6767-4909-ac35-80e8ae4daa7f} = 29.4, !- Program Line 11 - SET {d520a93c-e3c5-42fb-a2b8-992ee01bde5d} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6c03f8b3-a2d4-4f65-b3f6-15de188ae39e}<23.9 && {6c03f8b3-a2d4-4f65-b3f6-15de188ae39e}>1.7, !- Program Line 1 + SET {a1d402c8-3c80-4c7c-9b08-2bfa37a6024b} = 29.4, !- Program Line 2 + SET {43b028a0-1bfb-4f21-916f-9874e9b1c19b} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6c03f8b3-a2d4-4f65-b3f6-15de188ae39e}<23.9 && {6c03f8b3-a2d4-4f65-b3f6-15de188ae39e}>1.7, !- Program Line 4 + SET {a1d402c8-3c80-4c7c-9b08-2bfa37a6024b} = 29.4, !- Program Line 5 + SET {43b028a0-1bfb-4f21-916f-9874e9b1c19b} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6c03f8b3-a2d4-4f65-b3f6-15de188ae39e}<23.9 && {6c03f8b3-a2d4-4f65-b3f6-15de188ae39e}>1.7, !- Program Line 7 + SET {a1d402c8-3c80-4c7c-9b08-2bfa37a6024b} = 29.4, !- Program Line 8 + SET {43b028a0-1bfb-4f21-916f-9874e9b1c19b} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6c03f8b3-a2d4-4f65-b3f6-15de188ae39e}<23.9 && {6c03f8b3-a2d4-4f65-b3f6-15de188ae39e}>1.7, !- Program Line 10 + SET {a1d402c8-3c80-4c7c-9b08-2bfa37a6024b} = 29.4, !- Program Line 11 + SET {43b028a0-1bfb-4f21-916f-9874e9b1c19b} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {125ede7c-6767-4909-ac35-80e8ae4daa7f} = NULL, !- Program Line 14 - SET {d520a93c-e3c5-42fb-a2b8-992ee01bde5d} = NULL, !- Program Line 15 + SET {a1d402c8-3c80-4c7c-9b08-2bfa37a6024b} = NULL, !- Program Line 14 + SET {43b028a0-1bfb-4f21-916f-9874e9b1c19b} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -7769,85 +7769,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000238}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000055}, !- Inlet Port {00000000-0000-0000-0019-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000239}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000058}, !- Inlet Port {00000000-0000-0000-0019-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000240}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000067}, !- Inlet Port {00000000-0000-0000-0019-000000000068}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000241}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000242}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000060}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000243}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000053}, !- Inlet Port {00000000-0000-0000-0019-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000244}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000061}, !- Inlet Port {00000000-0000-0000-0019-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000245}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000310}, !- Inlet Port {00000000-0000-0000-0019-000000000312}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000246}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000313}, !- Inlet Port {00000000-0000-0000-0019-000000000311}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000247}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000318}, !- Inlet Port {00000000-0000-0000-0019-000000000319}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000248}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000314}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000249}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000315}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000250}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000308}, !- Inlet Port {00000000-0000-0000-0019-000000000317}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000251}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000316}, !- Inlet Port {00000000-0000-0000-0019-000000000309}; !- Outlet Port @@ -9946,7 +9946,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9955,7 +9955,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9964,7 +9964,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9973,7 +9973,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9982,7 +9982,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9991,7 +9991,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10772,7 +10772,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000053}, !- Summer Design Day Schedule Name @@ -10780,7 +10780,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 7387e5d192..5d5c54a6f9 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -4286,7 +4286,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0065-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4294,7 +4294,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4302,27 +4302,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e4d4a702-36a5-4347-9aa1-a49861a80be0}<23.9 && {e4d4a702-36a5-4347-9aa1-a49861a80be0}>1.7, !- Program Line 1 - SET {f758a85f-7cf8-484a-997e-3dfcd14c42db} = 29.4, !- Program Line 2 - SET {e22321dc-6f3a-415e-8952-f3e884b11ee8} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e4d4a702-36a5-4347-9aa1-a49861a80be0}<23.9 && {e4d4a702-36a5-4347-9aa1-a49861a80be0}>1.7, !- Program Line 4 - SET {f758a85f-7cf8-484a-997e-3dfcd14c42db} = 29.4, !- Program Line 5 - SET {e22321dc-6f3a-415e-8952-f3e884b11ee8} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e4d4a702-36a5-4347-9aa1-a49861a80be0}<23.9 && {e4d4a702-36a5-4347-9aa1-a49861a80be0}>1.7, !- Program Line 7 - SET {f758a85f-7cf8-484a-997e-3dfcd14c42db} = 29.4, !- Program Line 8 - SET {e22321dc-6f3a-415e-8952-f3e884b11ee8} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e4d4a702-36a5-4347-9aa1-a49861a80be0}<23.9 && {e4d4a702-36a5-4347-9aa1-a49861a80be0}>1.7, !- Program Line 10 - SET {f758a85f-7cf8-484a-997e-3dfcd14c42db} = 29.4, !- Program Line 11 - SET {e22321dc-6f3a-415e-8952-f3e884b11ee8} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e788897c-0a0a-4e21-a479-9b1f75e48e7d}<23.9 && {e788897c-0a0a-4e21-a479-9b1f75e48e7d}>1.7, !- Program Line 1 + SET {f45ed2dc-f263-4b48-9748-7cab205f1fba} = 29.4, !- Program Line 2 + SET {6c4d2da6-2c72-4686-9949-ea8e4d4382ef} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e788897c-0a0a-4e21-a479-9b1f75e48e7d}<23.9 && {e788897c-0a0a-4e21-a479-9b1f75e48e7d}>1.7, !- Program Line 4 + SET {f45ed2dc-f263-4b48-9748-7cab205f1fba} = 29.4, !- Program Line 5 + SET {6c4d2da6-2c72-4686-9949-ea8e4d4382ef} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e788897c-0a0a-4e21-a479-9b1f75e48e7d}<23.9 && {e788897c-0a0a-4e21-a479-9b1f75e48e7d}>1.7, !- Program Line 7 + SET {f45ed2dc-f263-4b48-9748-7cab205f1fba} = 29.4, !- Program Line 8 + SET {6c4d2da6-2c72-4686-9949-ea8e4d4382ef} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e788897c-0a0a-4e21-a479-9b1f75e48e7d}<23.9 && {e788897c-0a0a-4e21-a479-9b1f75e48e7d}>1.7, !- Program Line 10 + SET {f45ed2dc-f263-4b48-9748-7cab205f1fba} = 29.4, !- Program Line 11 + SET {6c4d2da6-2c72-4686-9949-ea8e4d4382ef} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f758a85f-7cf8-484a-997e-3dfcd14c42db} = NULL, !- Program Line 14 - SET {e22321dc-6f3a-415e-8952-f3e884b11ee8} = NULL, !- Program Line 15 + SET {f45ed2dc-f263-4b48-9748-7cab205f1fba} = NULL, !- Program Line 14 + SET {6c4d2da6-2c72-4686-9949-ea8e4d4382ef} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -4405,7 +4405,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4431,7 +4431,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -5950,109 +5950,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000172}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port {00000000-0000-0000-0017-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000173}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port {00000000-0000-0000-0017-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000174}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000175}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000176}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000341}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000177}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port {00000000-0000-0000-0017-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000178}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port {00000000-0000-0000-0017-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000179}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000337}, !- Inlet Port {00000000-0000-0000-0017-000000000338}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000180}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000339}, !- Inlet Port {00000000-0000-0000-0017-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000181}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000188}, !- Inlet Port {00000000-0000-0000-0017-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000182}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000191}, !- Inlet Port {00000000-0000-0000-0017-000000000189}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000183}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000194}, !- Inlet Port {00000000-0000-0000-0017-000000000195}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000184}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000185}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000347}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000186}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000186}, !- Inlet Port {00000000-0000-0000-0017-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000187}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000192}, !- Inlet Port {00000000-0000-0000-0017-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000188}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000343}, !- Inlet Port {00000000-0000-0000-0017-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000189}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000345}, !- Inlet Port {00000000-0000-0000-0017-000000000346}; !- Outlet Port @@ -8070,7 +8070,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8079,7 +8079,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8088,7 +8088,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8097,7 +8097,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8106,7 +8106,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8115,7 +8115,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8896,7 +8896,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000053}, !- Summer Design Day Schedule Name @@ -8904,7 +8904,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 3bb0a2a6f8..a727c15bc9 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -4396,7 +4396,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0065-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4404,7 +4404,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4412,27 +4412,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {377e8f67-a59d-4169-bd5f-ab0166ca4e22}<23.9 && {377e8f67-a59d-4169-bd5f-ab0166ca4e22}>1.7, !- Program Line 1 - SET {4c3409f4-0946-41a6-816d-3d0a61d38436} = 29.4, !- Program Line 2 - SET {3941f557-0402-4ff4-b60d-2328565edd19} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {377e8f67-a59d-4169-bd5f-ab0166ca4e22}<23.9 && {377e8f67-a59d-4169-bd5f-ab0166ca4e22}>1.7, !- Program Line 4 - SET {4c3409f4-0946-41a6-816d-3d0a61d38436} = 29.4, !- Program Line 5 - SET {3941f557-0402-4ff4-b60d-2328565edd19} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {377e8f67-a59d-4169-bd5f-ab0166ca4e22}<23.9 && {377e8f67-a59d-4169-bd5f-ab0166ca4e22}>1.7, !- Program Line 7 - SET {4c3409f4-0946-41a6-816d-3d0a61d38436} = 29.4, !- Program Line 8 - SET {3941f557-0402-4ff4-b60d-2328565edd19} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {377e8f67-a59d-4169-bd5f-ab0166ca4e22}<23.9 && {377e8f67-a59d-4169-bd5f-ab0166ca4e22}>1.7, !- Program Line 10 - SET {4c3409f4-0946-41a6-816d-3d0a61d38436} = 29.4, !- Program Line 11 - SET {3941f557-0402-4ff4-b60d-2328565edd19} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {acc95d32-2087-453b-846c-edf542eca598}<23.9 && {acc95d32-2087-453b-846c-edf542eca598}>1.7, !- Program Line 1 + SET {7018dc89-b4f2-4509-b509-9ad2cd8c59bc} = 29.4, !- Program Line 2 + SET {c9d701f4-33ad-4b9e-a450-0274a4171996} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {acc95d32-2087-453b-846c-edf542eca598}<23.9 && {acc95d32-2087-453b-846c-edf542eca598}>1.7, !- Program Line 4 + SET {7018dc89-b4f2-4509-b509-9ad2cd8c59bc} = 29.4, !- Program Line 5 + SET {c9d701f4-33ad-4b9e-a450-0274a4171996} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {acc95d32-2087-453b-846c-edf542eca598}<23.9 && {acc95d32-2087-453b-846c-edf542eca598}>1.7, !- Program Line 7 + SET {7018dc89-b4f2-4509-b509-9ad2cd8c59bc} = 29.4, !- Program Line 8 + SET {c9d701f4-33ad-4b9e-a450-0274a4171996} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {acc95d32-2087-453b-846c-edf542eca598}<23.9 && {acc95d32-2087-453b-846c-edf542eca598}>1.7, !- Program Line 10 + SET {7018dc89-b4f2-4509-b509-9ad2cd8c59bc} = 29.4, !- Program Line 11 + SET {c9d701f4-33ad-4b9e-a450-0274a4171996} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4c3409f4-0946-41a6-816d-3d0a61d38436} = NULL, !- Program Line 14 - SET {3941f557-0402-4ff4-b60d-2328565edd19} = NULL, !- Program Line 15 + SET {7018dc89-b4f2-4509-b509-9ad2cd8c59bc} = NULL, !- Program Line 14 + SET {c9d701f4-33ad-4b9e-a450-0274a4171996} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -4515,7 +4515,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4541,7 +4541,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -6060,109 +6060,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000172}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port {00000000-0000-0000-0017-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000173}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port {00000000-0000-0000-0017-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000174}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000175}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000176}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000341}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000177}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port {00000000-0000-0000-0017-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000178}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port {00000000-0000-0000-0017-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000179}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000337}, !- Inlet Port {00000000-0000-0000-0017-000000000338}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000180}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000339}, !- Inlet Port {00000000-0000-0000-0017-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000181}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000188}, !- Inlet Port {00000000-0000-0000-0017-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000182}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000191}, !- Inlet Port {00000000-0000-0000-0017-000000000189}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000183}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000194}, !- Inlet Port {00000000-0000-0000-0017-000000000195}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000184}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000185}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000347}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000186}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000186}, !- Inlet Port {00000000-0000-0000-0017-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000187}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000192}, !- Inlet Port {00000000-0000-0000-0017-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000188}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000343}, !- Inlet Port {00000000-0000-0000-0017-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000189}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000345}, !- Inlet Port {00000000-0000-0000-0017-000000000346}; !- Outlet Port @@ -8180,7 +8180,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8189,7 +8189,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8198,7 +8198,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8207,7 +8207,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8216,7 +8216,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8225,7 +8225,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9006,7 +9006,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000053}, !- Summer Design Day Schedule Name @@ -9014,7 +9014,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 7453dfb950..6bf0f4fe4d 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -5707,7 +5707,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0068-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5715,7 +5715,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0068-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5723,27 +5723,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {cdce1c18-aa9b-439f-854e-a9d7497407f0}<23.9 && {cdce1c18-aa9b-439f-854e-a9d7497407f0}>1.7, !- Program Line 1 - SET {5e8d690e-fc26-4049-975c-bdeab5c18a71} = 29.4, !- Program Line 2 - SET {c2a7374b-d9f7-48ef-a8b0-5dc972cb82b6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {cdce1c18-aa9b-439f-854e-a9d7497407f0}<23.9 && {cdce1c18-aa9b-439f-854e-a9d7497407f0}>1.7, !- Program Line 4 - SET {5e8d690e-fc26-4049-975c-bdeab5c18a71} = 29.4, !- Program Line 5 - SET {c2a7374b-d9f7-48ef-a8b0-5dc972cb82b6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {cdce1c18-aa9b-439f-854e-a9d7497407f0}<23.9 && {cdce1c18-aa9b-439f-854e-a9d7497407f0}>1.7, !- Program Line 7 - SET {5e8d690e-fc26-4049-975c-bdeab5c18a71} = 29.4, !- Program Line 8 - SET {c2a7374b-d9f7-48ef-a8b0-5dc972cb82b6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {cdce1c18-aa9b-439f-854e-a9d7497407f0}<23.9 && {cdce1c18-aa9b-439f-854e-a9d7497407f0}>1.7, !- Program Line 10 - SET {5e8d690e-fc26-4049-975c-bdeab5c18a71} = 29.4, !- Program Line 11 - SET {c2a7374b-d9f7-48ef-a8b0-5dc972cb82b6} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {74399d96-a148-4d7f-99d9-89ccd27576c6}<23.9 && {74399d96-a148-4d7f-99d9-89ccd27576c6}>1.7, !- Program Line 1 + SET {b610988f-2ae3-4b40-b450-bc62ef92055c} = 29.4, !- Program Line 2 + SET {6e16d310-5376-47df-900f-ad615338b68b} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {74399d96-a148-4d7f-99d9-89ccd27576c6}<23.9 && {74399d96-a148-4d7f-99d9-89ccd27576c6}>1.7, !- Program Line 4 + SET {b610988f-2ae3-4b40-b450-bc62ef92055c} = 29.4, !- Program Line 5 + SET {6e16d310-5376-47df-900f-ad615338b68b} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {74399d96-a148-4d7f-99d9-89ccd27576c6}<23.9 && {74399d96-a148-4d7f-99d9-89ccd27576c6}>1.7, !- Program Line 7 + SET {b610988f-2ae3-4b40-b450-bc62ef92055c} = 29.4, !- Program Line 8 + SET {6e16d310-5376-47df-900f-ad615338b68b} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {74399d96-a148-4d7f-99d9-89ccd27576c6}<23.9 && {74399d96-a148-4d7f-99d9-89ccd27576c6}>1.7, !- Program Line 10 + SET {b610988f-2ae3-4b40-b450-bc62ef92055c} = 29.4, !- Program Line 11 + SET {6e16d310-5376-47df-900f-ad615338b68b} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5e8d690e-fc26-4049-975c-bdeab5c18a71} = NULL, !- Program Line 14 - SET {c2a7374b-d9f7-48ef-a8b0-5dc972cb82b6} = NULL, !- Program Line 15 + SET {b610988f-2ae3-4b40-b450-bc62ef92055c} = NULL, !- Program Line 14 + SET {6e16d310-5376-47df-900f-ad615338b68b} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -5826,7 +5826,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -5852,7 +5852,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -7767,109 +7767,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000238}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000055}, !- Inlet Port {00000000-0000-0000-0019-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000239}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000058}, !- Inlet Port {00000000-0000-0000-0019-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000240}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000065}, !- Inlet Port {00000000-0000-0000-0019-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000241}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000468}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000242}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000473}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000243}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000053}, !- Inlet Port {00000000-0000-0000-0019-000000000064}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000244}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000059}, !- Inlet Port {00000000-0000-0000-0019-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000245}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000469}, !- Inlet Port {00000000-0000-0000-0019-000000000470}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000246}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000471}, !- Inlet Port {00000000-0000-0000-0019-000000000472}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000247}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000308}, !- Inlet Port {00000000-0000-0000-0019-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000248}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000311}, !- Inlet Port {00000000-0000-0000-0019-000000000309}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000249}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000314}, !- Inlet Port {00000000-0000-0000-0019-000000000315}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000250}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000474}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000251}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000479}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000252}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000306}, !- Inlet Port {00000000-0000-0000-0019-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000253}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000312}, !- Inlet Port {00000000-0000-0000-0019-000000000307}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000254}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000475}, !- Inlet Port {00000000-0000-0000-0019-000000000476}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000255}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000477}, !- Inlet Port {00000000-0000-0000-0019-000000000478}; !- Outlet Port @@ -9968,7 +9968,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9977,7 +9977,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9986,7 +9986,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9995,7 +9995,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10004,7 +10004,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10013,7 +10013,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10794,7 +10794,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000053}, !- Summer Design Day Schedule Name @@ -10802,7 +10802,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index ce4991b345..8b02aa6bc4 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -5817,7 +5817,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0068-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5825,7 +5825,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0068-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5833,27 +5833,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {97354d03-54f2-45f4-bbd9-285a878a4674}<23.9 && {97354d03-54f2-45f4-bbd9-285a878a4674}>1.7, !- Program Line 1 - SET {a1bda8aa-2d19-48f2-99ab-165bd051b054} = 29.4, !- Program Line 2 - SET {4a3cdbf1-2c60-4dba-95f6-4b09b933ba17} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {97354d03-54f2-45f4-bbd9-285a878a4674}<23.9 && {97354d03-54f2-45f4-bbd9-285a878a4674}>1.7, !- Program Line 4 - SET {a1bda8aa-2d19-48f2-99ab-165bd051b054} = 29.4, !- Program Line 5 - SET {4a3cdbf1-2c60-4dba-95f6-4b09b933ba17} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {97354d03-54f2-45f4-bbd9-285a878a4674}<23.9 && {97354d03-54f2-45f4-bbd9-285a878a4674}>1.7, !- Program Line 7 - SET {a1bda8aa-2d19-48f2-99ab-165bd051b054} = 29.4, !- Program Line 8 - SET {4a3cdbf1-2c60-4dba-95f6-4b09b933ba17} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {97354d03-54f2-45f4-bbd9-285a878a4674}<23.9 && {97354d03-54f2-45f4-bbd9-285a878a4674}>1.7, !- Program Line 10 - SET {a1bda8aa-2d19-48f2-99ab-165bd051b054} = 29.4, !- Program Line 11 - SET {4a3cdbf1-2c60-4dba-95f6-4b09b933ba17} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9d24243a-a64a-46ea-880a-691ff7666fa8}<23.9 && {9d24243a-a64a-46ea-880a-691ff7666fa8}>1.7, !- Program Line 1 + SET {20e9331e-7dd4-4729-b0c0-189215aba6b6} = 29.4, !- Program Line 2 + SET {e1b315ef-d840-413f-9bdd-a3aca29400c4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9d24243a-a64a-46ea-880a-691ff7666fa8}<23.9 && {9d24243a-a64a-46ea-880a-691ff7666fa8}>1.7, !- Program Line 4 + SET {20e9331e-7dd4-4729-b0c0-189215aba6b6} = 29.4, !- Program Line 5 + SET {e1b315ef-d840-413f-9bdd-a3aca29400c4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9d24243a-a64a-46ea-880a-691ff7666fa8}<23.9 && {9d24243a-a64a-46ea-880a-691ff7666fa8}>1.7, !- Program Line 7 + SET {20e9331e-7dd4-4729-b0c0-189215aba6b6} = 29.4, !- Program Line 8 + SET {e1b315ef-d840-413f-9bdd-a3aca29400c4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9d24243a-a64a-46ea-880a-691ff7666fa8}<23.9 && {9d24243a-a64a-46ea-880a-691ff7666fa8}>1.7, !- Program Line 10 + SET {20e9331e-7dd4-4729-b0c0-189215aba6b6} = 29.4, !- Program Line 11 + SET {e1b315ef-d840-413f-9bdd-a3aca29400c4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a1bda8aa-2d19-48f2-99ab-165bd051b054} = NULL, !- Program Line 14 - SET {4a3cdbf1-2c60-4dba-95f6-4b09b933ba17} = NULL, !- Program Line 15 + SET {20e9331e-7dd4-4729-b0c0-189215aba6b6} = NULL, !- Program Line 14 + SET {e1b315ef-d840-413f-9bdd-a3aca29400c4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -5936,7 +5936,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -5962,7 +5962,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -7877,109 +7877,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000238}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000055}, !- Inlet Port {00000000-0000-0000-0019-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000239}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000058}, !- Inlet Port {00000000-0000-0000-0019-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000240}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000065}, !- Inlet Port {00000000-0000-0000-0019-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000241}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000468}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000242}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000473}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000243}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000053}, !- Inlet Port {00000000-0000-0000-0019-000000000064}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000244}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000059}, !- Inlet Port {00000000-0000-0000-0019-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000245}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000469}, !- Inlet Port {00000000-0000-0000-0019-000000000470}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000246}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000471}, !- Inlet Port {00000000-0000-0000-0019-000000000472}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000247}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000308}, !- Inlet Port {00000000-0000-0000-0019-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000248}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000311}, !- Inlet Port {00000000-0000-0000-0019-000000000309}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000249}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000314}, !- Inlet Port {00000000-0000-0000-0019-000000000315}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000250}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000474}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000251}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000479}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000252}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000306}, !- Inlet Port {00000000-0000-0000-0019-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000253}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000312}, !- Inlet Port {00000000-0000-0000-0019-000000000307}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000254}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000475}, !- Inlet Port {00000000-0000-0000-0019-000000000476}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000255}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000477}, !- Inlet Port {00000000-0000-0000-0019-000000000478}; !- Outlet Port @@ -10078,7 +10078,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10087,7 +10087,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10096,7 +10096,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10105,7 +10105,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10114,7 +10114,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10123,7 +10123,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10904,7 +10904,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000053}, !- Summer Design Day Schedule Name @@ -10912,7 +10912,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index c9ee671a04..da3ddb2125 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -4286,7 +4286,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0065-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4294,7 +4294,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4302,27 +4302,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ced43636-09be-4672-8ffc-9722b06a764d}<23.9 && {ced43636-09be-4672-8ffc-9722b06a764d}>1.7, !- Program Line 1 - SET {d8c5a733-6539-41dc-a407-5c558ea396f3} = 29.4, !- Program Line 2 - SET {a53024ec-48cc-4c30-98d3-2d6fbdb34dca} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ced43636-09be-4672-8ffc-9722b06a764d}<23.9 && {ced43636-09be-4672-8ffc-9722b06a764d}>1.7, !- Program Line 4 - SET {d8c5a733-6539-41dc-a407-5c558ea396f3} = 29.4, !- Program Line 5 - SET {a53024ec-48cc-4c30-98d3-2d6fbdb34dca} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ced43636-09be-4672-8ffc-9722b06a764d}<23.9 && {ced43636-09be-4672-8ffc-9722b06a764d}>1.7, !- Program Line 7 - SET {d8c5a733-6539-41dc-a407-5c558ea396f3} = 29.4, !- Program Line 8 - SET {a53024ec-48cc-4c30-98d3-2d6fbdb34dca} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ced43636-09be-4672-8ffc-9722b06a764d}<23.9 && {ced43636-09be-4672-8ffc-9722b06a764d}>1.7, !- Program Line 10 - SET {d8c5a733-6539-41dc-a407-5c558ea396f3} = 29.4, !- Program Line 11 - SET {a53024ec-48cc-4c30-98d3-2d6fbdb34dca} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e9d1fce0-3df5-475d-a3b5-4113d8e4b8a3}<23.9 && {e9d1fce0-3df5-475d-a3b5-4113d8e4b8a3}>1.7, !- Program Line 1 + SET {1f7fb4eb-4e3f-4cec-9eaf-14151552efef} = 29.4, !- Program Line 2 + SET {aed3ea0d-43a8-4ed1-9b38-8d73aaeeb16f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e9d1fce0-3df5-475d-a3b5-4113d8e4b8a3}<23.9 && {e9d1fce0-3df5-475d-a3b5-4113d8e4b8a3}>1.7, !- Program Line 4 + SET {1f7fb4eb-4e3f-4cec-9eaf-14151552efef} = 29.4, !- Program Line 5 + SET {aed3ea0d-43a8-4ed1-9b38-8d73aaeeb16f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e9d1fce0-3df5-475d-a3b5-4113d8e4b8a3}<23.9 && {e9d1fce0-3df5-475d-a3b5-4113d8e4b8a3}>1.7, !- Program Line 7 + SET {1f7fb4eb-4e3f-4cec-9eaf-14151552efef} = 29.4, !- Program Line 8 + SET {aed3ea0d-43a8-4ed1-9b38-8d73aaeeb16f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e9d1fce0-3df5-475d-a3b5-4113d8e4b8a3}<23.9 && {e9d1fce0-3df5-475d-a3b5-4113d8e4b8a3}>1.7, !- Program Line 10 + SET {1f7fb4eb-4e3f-4cec-9eaf-14151552efef} = 29.4, !- Program Line 11 + SET {aed3ea0d-43a8-4ed1-9b38-8d73aaeeb16f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {d8c5a733-6539-41dc-a407-5c558ea396f3} = NULL, !- Program Line 14 - SET {a53024ec-48cc-4c30-98d3-2d6fbdb34dca} = NULL, !- Program Line 15 + SET {1f7fb4eb-4e3f-4cec-9eaf-14151552efef} = NULL, !- Program Line 14 + SET {aed3ea0d-43a8-4ed1-9b38-8d73aaeeb16f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -4405,7 +4405,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4431,7 +4431,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -5950,109 +5950,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000172}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port {00000000-0000-0000-0017-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000173}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port {00000000-0000-0000-0017-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000174}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000175}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000176}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000341}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000177}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port {00000000-0000-0000-0017-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000178}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port {00000000-0000-0000-0017-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000179}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000337}, !- Inlet Port {00000000-0000-0000-0017-000000000338}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000180}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000339}, !- Inlet Port {00000000-0000-0000-0017-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000181}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000188}, !- Inlet Port {00000000-0000-0000-0017-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000182}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000191}, !- Inlet Port {00000000-0000-0000-0017-000000000189}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000183}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000194}, !- Inlet Port {00000000-0000-0000-0017-000000000195}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000184}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000185}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000347}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000186}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000186}, !- Inlet Port {00000000-0000-0000-0017-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000187}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000192}, !- Inlet Port {00000000-0000-0000-0017-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000188}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000343}, !- Inlet Port {00000000-0000-0000-0017-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000189}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000345}, !- Inlet Port {00000000-0000-0000-0017-000000000346}; !- Outlet Port @@ -8070,7 +8070,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8079,7 +8079,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8088,7 +8088,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8097,7 +8097,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8106,7 +8106,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8115,7 +8115,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8896,7 +8896,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000053}, !- Summer Design Day Schedule Name @@ -8904,7 +8904,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index e6127af109..d9ae1d24dd 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0065-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -4396,7 +4396,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0065-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4404,7 +4404,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -4412,27 +4412,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {eadde07f-a48e-4c4d-99f3-0b466b1218bb}<23.9 && {eadde07f-a48e-4c4d-99f3-0b466b1218bb}>1.7, !- Program Line 1 - SET {b116031f-aa8f-4096-8180-48161143b30d} = 29.4, !- Program Line 2 - SET {8c351621-f7a0-478b-b9bb-516f1971ff3d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {eadde07f-a48e-4c4d-99f3-0b466b1218bb}<23.9 && {eadde07f-a48e-4c4d-99f3-0b466b1218bb}>1.7, !- Program Line 4 - SET {b116031f-aa8f-4096-8180-48161143b30d} = 29.4, !- Program Line 5 - SET {8c351621-f7a0-478b-b9bb-516f1971ff3d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {eadde07f-a48e-4c4d-99f3-0b466b1218bb}<23.9 && {eadde07f-a48e-4c4d-99f3-0b466b1218bb}>1.7, !- Program Line 7 - SET {b116031f-aa8f-4096-8180-48161143b30d} = 29.4, !- Program Line 8 - SET {8c351621-f7a0-478b-b9bb-516f1971ff3d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {eadde07f-a48e-4c4d-99f3-0b466b1218bb}<23.9 && {eadde07f-a48e-4c4d-99f3-0b466b1218bb}>1.7, !- Program Line 10 - SET {b116031f-aa8f-4096-8180-48161143b30d} = 29.4, !- Program Line 11 - SET {8c351621-f7a0-478b-b9bb-516f1971ff3d} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {962c4f20-cf14-4800-8d5d-a87f1a744e27}<23.9 && {962c4f20-cf14-4800-8d5d-a87f1a744e27}>1.7, !- Program Line 1 + SET {1f1739ec-de0d-4406-87cb-984c6293ad6b} = 29.4, !- Program Line 2 + SET {9e9c5bca-0c64-4f3b-84f9-c8cf52ff8a12} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {962c4f20-cf14-4800-8d5d-a87f1a744e27}<23.9 && {962c4f20-cf14-4800-8d5d-a87f1a744e27}>1.7, !- Program Line 4 + SET {1f1739ec-de0d-4406-87cb-984c6293ad6b} = 29.4, !- Program Line 5 + SET {9e9c5bca-0c64-4f3b-84f9-c8cf52ff8a12} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {962c4f20-cf14-4800-8d5d-a87f1a744e27}<23.9 && {962c4f20-cf14-4800-8d5d-a87f1a744e27}>1.7, !- Program Line 7 + SET {1f1739ec-de0d-4406-87cb-984c6293ad6b} = 29.4, !- Program Line 8 + SET {9e9c5bca-0c64-4f3b-84f9-c8cf52ff8a12} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {962c4f20-cf14-4800-8d5d-a87f1a744e27}<23.9 && {962c4f20-cf14-4800-8d5d-a87f1a744e27}>1.7, !- Program Line 10 + SET {1f1739ec-de0d-4406-87cb-984c6293ad6b} = 29.4, !- Program Line 11 + SET {9e9c5bca-0c64-4f3b-84f9-c8cf52ff8a12} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b116031f-aa8f-4096-8180-48161143b30d} = NULL, !- Program Line 14 - SET {8c351621-f7a0-478b-b9bb-516f1971ff3d} = NULL, !- Program Line 15 + SET {1f1739ec-de0d-4406-87cb-984c6293ad6b} = NULL, !- Program Line 14 + SET {9e9c5bca-0c64-4f3b-84f9-c8cf52ff8a12} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -4515,7 +4515,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4541,7 +4541,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -6060,109 +6060,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000172}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port {00000000-0000-0000-0017-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000173}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port {00000000-0000-0000-0017-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000174}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000175}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000176}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000341}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000177}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port {00000000-0000-0000-0017-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000178}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port {00000000-0000-0000-0017-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000179}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000337}, !- Inlet Port {00000000-0000-0000-0017-000000000338}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000180}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000339}, !- Inlet Port {00000000-0000-0000-0017-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000181}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000188}, !- Inlet Port {00000000-0000-0000-0017-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000182}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000191}, !- Inlet Port {00000000-0000-0000-0017-000000000189}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000183}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000194}, !- Inlet Port {00000000-0000-0000-0017-000000000195}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000184}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000185}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000347}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000186}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000186}, !- Inlet Port {00000000-0000-0000-0017-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000187}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000192}, !- Inlet Port {00000000-0000-0000-0017-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000188}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000343}, !- Inlet Port {00000000-0000-0000-0017-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000189}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000345}, !- Inlet Port {00000000-0000-0000-0017-000000000346}; !- Outlet Port @@ -8180,7 +8180,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8189,7 +8189,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8198,7 +8198,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8207,7 +8207,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8216,7 +8216,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8225,7 +8225,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9006,7 +9006,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000053}, !- Summer Design Day Schedule Name @@ -9014,7 +9014,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0063-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 47b8c57382..3ab4c378c3 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -5707,7 +5707,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0068-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5715,7 +5715,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0068-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5723,27 +5723,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9d56eb09-a0e7-49dd-b846-46f966789a0b}<23.9 && {9d56eb09-a0e7-49dd-b846-46f966789a0b}>1.7, !- Program Line 1 - SET {2afde82e-525b-4ae6-97c3-cf8201bb9e89} = 29.4, !- Program Line 2 - SET {f2a02929-2fbb-46b9-af51-a778dd6c1eee} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9d56eb09-a0e7-49dd-b846-46f966789a0b}<23.9 && {9d56eb09-a0e7-49dd-b846-46f966789a0b}>1.7, !- Program Line 4 - SET {2afde82e-525b-4ae6-97c3-cf8201bb9e89} = 29.4, !- Program Line 5 - SET {f2a02929-2fbb-46b9-af51-a778dd6c1eee} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9d56eb09-a0e7-49dd-b846-46f966789a0b}<23.9 && {9d56eb09-a0e7-49dd-b846-46f966789a0b}>1.7, !- Program Line 7 - SET {2afde82e-525b-4ae6-97c3-cf8201bb9e89} = 29.4, !- Program Line 8 - SET {f2a02929-2fbb-46b9-af51-a778dd6c1eee} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9d56eb09-a0e7-49dd-b846-46f966789a0b}<23.9 && {9d56eb09-a0e7-49dd-b846-46f966789a0b}>1.7, !- Program Line 10 - SET {2afde82e-525b-4ae6-97c3-cf8201bb9e89} = 29.4, !- Program Line 11 - SET {f2a02929-2fbb-46b9-af51-a778dd6c1eee} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b58dee9b-1598-41db-92e8-2e163c0442ba}<23.9 && {b58dee9b-1598-41db-92e8-2e163c0442ba}>1.7, !- Program Line 1 + SET {0e563edf-27b8-475c-998a-1de5b0d7e4b9} = 29.4, !- Program Line 2 + SET {cd38e479-f5cd-49c1-ad16-24729ecdf737} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b58dee9b-1598-41db-92e8-2e163c0442ba}<23.9 && {b58dee9b-1598-41db-92e8-2e163c0442ba}>1.7, !- Program Line 4 + SET {0e563edf-27b8-475c-998a-1de5b0d7e4b9} = 29.4, !- Program Line 5 + SET {cd38e479-f5cd-49c1-ad16-24729ecdf737} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b58dee9b-1598-41db-92e8-2e163c0442ba}<23.9 && {b58dee9b-1598-41db-92e8-2e163c0442ba}>1.7, !- Program Line 7 + SET {0e563edf-27b8-475c-998a-1de5b0d7e4b9} = 29.4, !- Program Line 8 + SET {cd38e479-f5cd-49c1-ad16-24729ecdf737} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b58dee9b-1598-41db-92e8-2e163c0442ba}<23.9 && {b58dee9b-1598-41db-92e8-2e163c0442ba}>1.7, !- Program Line 10 + SET {0e563edf-27b8-475c-998a-1de5b0d7e4b9} = 29.4, !- Program Line 11 + SET {cd38e479-f5cd-49c1-ad16-24729ecdf737} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {2afde82e-525b-4ae6-97c3-cf8201bb9e89} = NULL, !- Program Line 14 - SET {f2a02929-2fbb-46b9-af51-a778dd6c1eee} = NULL, !- Program Line 15 + SET {0e563edf-27b8-475c-998a-1de5b0d7e4b9} = NULL, !- Program Line 14 + SET {cd38e479-f5cd-49c1-ad16-24729ecdf737} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -5826,7 +5826,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -5852,7 +5852,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -7767,109 +7767,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000238}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000055}, !- Inlet Port {00000000-0000-0000-0019-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000239}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000058}, !- Inlet Port {00000000-0000-0000-0019-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000240}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000065}, !- Inlet Port {00000000-0000-0000-0019-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000241}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000468}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000242}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000473}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000243}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000053}, !- Inlet Port {00000000-0000-0000-0019-000000000064}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000244}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000059}, !- Inlet Port {00000000-0000-0000-0019-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000245}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000469}, !- Inlet Port {00000000-0000-0000-0019-000000000470}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000246}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000471}, !- Inlet Port {00000000-0000-0000-0019-000000000472}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000247}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000308}, !- Inlet Port {00000000-0000-0000-0019-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000248}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000311}, !- Inlet Port {00000000-0000-0000-0019-000000000309}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000249}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000314}, !- Inlet Port {00000000-0000-0000-0019-000000000315}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000250}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000474}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000251}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000479}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000252}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000306}, !- Inlet Port {00000000-0000-0000-0019-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000253}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000312}, !- Inlet Port {00000000-0000-0000-0019-000000000307}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000254}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000475}, !- Inlet Port {00000000-0000-0000-0019-000000000476}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000255}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000477}, !- Inlet Port {00000000-0000-0000-0019-000000000478}; !- Outlet Port @@ -9968,7 +9968,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9977,7 +9977,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9986,7 +9986,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -9995,7 +9995,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10004,7 +10004,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10013,7 +10013,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10794,7 +10794,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000053}, !- Summer Design Day Schedule Name @@ -10802,7 +10802,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/MidriseApartment-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MidriseApartment-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 4057386a18..eb931d7a19 100644 --- a/test/necb/regression_tests/expected/MidriseApartment-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MidriseApartment-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000021}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0068-000000000022}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -5817,7 +5817,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0068-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5825,7 +5825,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0068-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -5833,27 +5833,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6ae2b68a-0dff-4458-9218-b8c0fa67572d}<23.9 && {6ae2b68a-0dff-4458-9218-b8c0fa67572d}>1.7, !- Program Line 1 - SET {4f77b0cc-17bd-49e8-a780-0cfa72f2a6d5} = 29.4, !- Program Line 2 - SET {af2d6748-1b66-4c27-b84f-bca765397c51} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6ae2b68a-0dff-4458-9218-b8c0fa67572d}<23.9 && {6ae2b68a-0dff-4458-9218-b8c0fa67572d}>1.7, !- Program Line 4 - SET {4f77b0cc-17bd-49e8-a780-0cfa72f2a6d5} = 29.4, !- Program Line 5 - SET {af2d6748-1b66-4c27-b84f-bca765397c51} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6ae2b68a-0dff-4458-9218-b8c0fa67572d}<23.9 && {6ae2b68a-0dff-4458-9218-b8c0fa67572d}>1.7, !- Program Line 7 - SET {4f77b0cc-17bd-49e8-a780-0cfa72f2a6d5} = 29.4, !- Program Line 8 - SET {af2d6748-1b66-4c27-b84f-bca765397c51} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6ae2b68a-0dff-4458-9218-b8c0fa67572d}<23.9 && {6ae2b68a-0dff-4458-9218-b8c0fa67572d}>1.7, !- Program Line 10 - SET {4f77b0cc-17bd-49e8-a780-0cfa72f2a6d5} = 29.4, !- Program Line 11 - SET {af2d6748-1b66-4c27-b84f-bca765397c51} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {24b48d5b-f2ac-4af5-ba21-337379fa6166}<23.9 && {24b48d5b-f2ac-4af5-ba21-337379fa6166}>1.7, !- Program Line 1 + SET {4eaa9d3f-f7cc-4b2d-8954-3e2df81964e3} = 29.4, !- Program Line 2 + SET {32050d7a-c968-46d0-97d4-b6c16a9e652e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {24b48d5b-f2ac-4af5-ba21-337379fa6166}<23.9 && {24b48d5b-f2ac-4af5-ba21-337379fa6166}>1.7, !- Program Line 4 + SET {4eaa9d3f-f7cc-4b2d-8954-3e2df81964e3} = 29.4, !- Program Line 5 + SET {32050d7a-c968-46d0-97d4-b6c16a9e652e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {24b48d5b-f2ac-4af5-ba21-337379fa6166}<23.9 && {24b48d5b-f2ac-4af5-ba21-337379fa6166}>1.7, !- Program Line 7 + SET {4eaa9d3f-f7cc-4b2d-8954-3e2df81964e3} = 29.4, !- Program Line 8 + SET {32050d7a-c968-46d0-97d4-b6c16a9e652e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {24b48d5b-f2ac-4af5-ba21-337379fa6166}<23.9 && {24b48d5b-f2ac-4af5-ba21-337379fa6166}>1.7, !- Program Line 10 + SET {4eaa9d3f-f7cc-4b2d-8954-3e2df81964e3} = 29.4, !- Program Line 11 + SET {32050d7a-c968-46d0-97d4-b6c16a9e652e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4f77b0cc-17bd-49e8-a780-0cfa72f2a6d5} = NULL, !- Program Line 14 - SET {af2d6748-1b66-4c27-b84f-bca765397c51} = NULL, !- Program Line 15 + SET {4eaa9d3f-f7cc-4b2d-8954-3e2df81964e3} = NULL, !- Program Line 14 + SET {32050d7a-c968-46d0-97d4-b6c16a9e652e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -5936,7 +5936,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -5962,7 +5962,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0065-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -7877,109 +7877,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0053-000000000238}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000055}, !- Inlet Port {00000000-0000-0000-0019-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000239}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000058}, !- Inlet Port {00000000-0000-0000-0019-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000240}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000065}, !- Inlet Port {00000000-0000-0000-0019-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000241}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000468}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000242}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000473}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000243}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000053}, !- Inlet Port {00000000-0000-0000-0019-000000000064}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000244}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000059}, !- Inlet Port {00000000-0000-0000-0019-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000245}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000469}, !- Inlet Port {00000000-0000-0000-0019-000000000470}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000246}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000471}, !- Inlet Port {00000000-0000-0000-0019-000000000472}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000247}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000308}, !- Inlet Port {00000000-0000-0000-0019-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000248}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000311}, !- Inlet Port {00000000-0000-0000-0019-000000000309}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000249}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000314}, !- Inlet Port {00000000-0000-0000-0019-000000000315}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000250}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000474}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000251}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000479}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000252}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000306}, !- Inlet Port {00000000-0000-0000-0019-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000253}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000312}, !- Inlet Port {00000000-0000-0000-0019-000000000307}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000254}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000000475}, !- Inlet Port {00000000-0000-0000-0019-000000000476}; !- Outlet Port OS:Node, {00000000-0000-0000-0053-000000000255}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000000477}, !- Inlet Port {00000000-0000-0000-0019-000000000478}; !- Outlet Port @@ -10078,7 +10078,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10087,7 +10087,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000053}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10096,7 +10096,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000054}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10105,7 +10105,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10114,7 +10114,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10123,7 +10123,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -10904,7 +10904,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000021}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000053}, !- Summer Design Day Schedule Name @@ -10912,7 +10912,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0069-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0066-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm index 89d7a14cf6..830ad64ee4 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm @@ -6780,41 +6780,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8804490a-ade4-4b39-9378-243e01fb30b6}<23.9 && {8804490a-ade4-4b39-9378-243e01fb30b6}>1.7, !- Program Line 1 - SET {c5e60158-84e9-473a-8e9a-d76422d57a1c} = 29.4, !- Program Line 2 - SET {f9314812-3238-494d-9cf1-0fec9ef5c2c2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8804490a-ade4-4b39-9378-243e01fb30b6}<23.9 && {8804490a-ade4-4b39-9378-243e01fb30b6}>1.7, !- Program Line 4 - SET {c5e60158-84e9-473a-8e9a-d76422d57a1c} = 29.4, !- Program Line 5 - SET {f9314812-3238-494d-9cf1-0fec9ef5c2c2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8804490a-ade4-4b39-9378-243e01fb30b6}<23.9 && {8804490a-ade4-4b39-9378-243e01fb30b6}>1.7, !- Program Line 7 - SET {c5e60158-84e9-473a-8e9a-d76422d57a1c} = 29.4, !- Program Line 8 - SET {f9314812-3238-494d-9cf1-0fec9ef5c2c2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8804490a-ade4-4b39-9378-243e01fb30b6}<23.9 && {8804490a-ade4-4b39-9378-243e01fb30b6}>1.7, !- Program Line 10 - SET {c5e60158-84e9-473a-8e9a-d76422d57a1c} = 29.4, !- Program Line 11 - SET {f9314812-3238-494d-9cf1-0fec9ef5c2c2} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {904a5b3c-d3eb-4c00-8ad0-9129382bed9b}<23.9 && {904a5b3c-d3eb-4c00-8ad0-9129382bed9b}>1.7, !- Program Line 1 + SET {120cbfe2-99bc-4c32-80bc-5554d5715922} = 29.4, !- Program Line 2 + SET {3dc882cf-61e7-41a9-b74e-e4c0d940cedb} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {904a5b3c-d3eb-4c00-8ad0-9129382bed9b}<23.9 && {904a5b3c-d3eb-4c00-8ad0-9129382bed9b}>1.7, !- Program Line 4 + SET {120cbfe2-99bc-4c32-80bc-5554d5715922} = 29.4, !- Program Line 5 + SET {3dc882cf-61e7-41a9-b74e-e4c0d940cedb} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {904a5b3c-d3eb-4c00-8ad0-9129382bed9b}<23.9 && {904a5b3c-d3eb-4c00-8ad0-9129382bed9b}>1.7, !- Program Line 7 + SET {120cbfe2-99bc-4c32-80bc-5554d5715922} = 29.4, !- Program Line 8 + SET {3dc882cf-61e7-41a9-b74e-e4c0d940cedb} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {904a5b3c-d3eb-4c00-8ad0-9129382bed9b}<23.9 && {904a5b3c-d3eb-4c00-8ad0-9129382bed9b}>1.7, !- Program Line 10 + SET {120cbfe2-99bc-4c32-80bc-5554d5715922} = 29.4, !- Program Line 11 + SET {3dc882cf-61e7-41a9-b74e-e4c0d940cedb} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c5e60158-84e9-473a-8e9a-d76422d57a1c} = NULL, !- Program Line 14 - SET {f9314812-3238-494d-9cf1-0fec9ef5c2c2} = NULL, !- Program Line 15 + SET {120cbfe2-99bc-4c32-80bc-5554d5715922} = NULL, !- Program Line 14 + SET {3dc882cf-61e7-41a9-b74e-e4c0d940cedb} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fcec798b-0683-4cd6-ae5f-8f02276f211f}<23.9 && {fcec798b-0683-4cd6-ae5f-8f02276f211f}>1.7, !- Program Line 1 - SET {d75b0ee1-8ec6-4cbe-b561-b4de5bdc6ed4} = 29.4, !- Program Line 2 - SET {60a42432-f245-4bb9-a795-b9a49d8494dc} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fcec798b-0683-4cd6-ae5f-8f02276f211f}<23.9 && {fcec798b-0683-4cd6-ae5f-8f02276f211f}>1.7, !- Program Line 4 - SET {d75b0ee1-8ec6-4cbe-b561-b4de5bdc6ed4} = 29.4, !- Program Line 5 - SET {60a42432-f245-4bb9-a795-b9a49d8494dc} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fcec798b-0683-4cd6-ae5f-8f02276f211f}<23.9 && {fcec798b-0683-4cd6-ae5f-8f02276f211f}>1.7, !- Program Line 7 - SET {d75b0ee1-8ec6-4cbe-b561-b4de5bdc6ed4} = 29.4, !- Program Line 8 - SET {60a42432-f245-4bb9-a795-b9a49d8494dc} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fcec798b-0683-4cd6-ae5f-8f02276f211f}<23.9 && {fcec798b-0683-4cd6-ae5f-8f02276f211f}>1.7, !- Program Line 10 - SET {d75b0ee1-8ec6-4cbe-b561-b4de5bdc6ed4} = 29.4, !- Program Line 11 - SET {60a42432-f245-4bb9-a795-b9a49d8494dc} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0ac058d6-5df6-4078-937b-8138d5dd8426}<23.9 && {0ac058d6-5df6-4078-937b-8138d5dd8426}>1.7, !- Program Line 1 + SET {55fa2f32-e487-4ff7-848f-23e5088965db} = 29.4, !- Program Line 2 + SET {889874b9-735f-4294-b467-b13fdc819dba} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0ac058d6-5df6-4078-937b-8138d5dd8426}<23.9 && {0ac058d6-5df6-4078-937b-8138d5dd8426}>1.7, !- Program Line 4 + SET {55fa2f32-e487-4ff7-848f-23e5088965db} = 29.4, !- Program Line 5 + SET {889874b9-735f-4294-b467-b13fdc819dba} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0ac058d6-5df6-4078-937b-8138d5dd8426}<23.9 && {0ac058d6-5df6-4078-937b-8138d5dd8426}>1.7, !- Program Line 7 + SET {55fa2f32-e487-4ff7-848f-23e5088965db} = 29.4, !- Program Line 8 + SET {889874b9-735f-4294-b467-b13fdc819dba} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0ac058d6-5df6-4078-937b-8138d5dd8426}<23.9 && {0ac058d6-5df6-4078-937b-8138d5dd8426}>1.7, !- Program Line 10 + SET {55fa2f32-e487-4ff7-848f-23e5088965db} = 29.4, !- Program Line 11 + SET {889874b9-735f-4294-b467-b13fdc819dba} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {d75b0ee1-8ec6-4cbe-b561-b4de5bdc6ed4} = NULL, !- Program Line 14 - SET {60a42432-f245-4bb9-a795-b9a49d8494dc} = NULL, !- Program Line 15 + SET {55fa2f32-e487-4ff7-848f-23e5088965db} = NULL, !- Program Line 14 + SET {889874b9-735f-4294-b467-b13fdc819dba} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/PrimarySchool-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm index c0e6bb3a24..951d9c9480 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm @@ -7700,41 +7700,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {70d12e19-e80c-4354-8217-012d758b24c3}<23.9 && {70d12e19-e80c-4354-8217-012d758b24c3}>1.7, !- Program Line 1 - SET {1e168c91-cbb0-40dd-928e-5abaf446244d} = 29.4, !- Program Line 2 - SET {f905836f-1819-41fb-a5e2-7d2279d66f17} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {70d12e19-e80c-4354-8217-012d758b24c3}<23.9 && {70d12e19-e80c-4354-8217-012d758b24c3}>1.7, !- Program Line 4 - SET {1e168c91-cbb0-40dd-928e-5abaf446244d} = 29.4, !- Program Line 5 - SET {f905836f-1819-41fb-a5e2-7d2279d66f17} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {70d12e19-e80c-4354-8217-012d758b24c3}<23.9 && {70d12e19-e80c-4354-8217-012d758b24c3}>1.7, !- Program Line 7 - SET {1e168c91-cbb0-40dd-928e-5abaf446244d} = 29.4, !- Program Line 8 - SET {f905836f-1819-41fb-a5e2-7d2279d66f17} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {70d12e19-e80c-4354-8217-012d758b24c3}<23.9 && {70d12e19-e80c-4354-8217-012d758b24c3}>1.7, !- Program Line 10 - SET {1e168c91-cbb0-40dd-928e-5abaf446244d} = 29.4, !- Program Line 11 - SET {f905836f-1819-41fb-a5e2-7d2279d66f17} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0fe39f08-436c-441c-aedd-7f4ac74f0500}<23.9 && {0fe39f08-436c-441c-aedd-7f4ac74f0500}>1.7, !- Program Line 1 + SET {ff042cab-3ad9-47a7-b20f-75e6b85d0a94} = 29.4, !- Program Line 2 + SET {76bc385c-5931-44c8-97d6-7f25cec0c6ef} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0fe39f08-436c-441c-aedd-7f4ac74f0500}<23.9 && {0fe39f08-436c-441c-aedd-7f4ac74f0500}>1.7, !- Program Line 4 + SET {ff042cab-3ad9-47a7-b20f-75e6b85d0a94} = 29.4, !- Program Line 5 + SET {76bc385c-5931-44c8-97d6-7f25cec0c6ef} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0fe39f08-436c-441c-aedd-7f4ac74f0500}<23.9 && {0fe39f08-436c-441c-aedd-7f4ac74f0500}>1.7, !- Program Line 7 + SET {ff042cab-3ad9-47a7-b20f-75e6b85d0a94} = 29.4, !- Program Line 8 + SET {76bc385c-5931-44c8-97d6-7f25cec0c6ef} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0fe39f08-436c-441c-aedd-7f4ac74f0500}<23.9 && {0fe39f08-436c-441c-aedd-7f4ac74f0500}>1.7, !- Program Line 10 + SET {ff042cab-3ad9-47a7-b20f-75e6b85d0a94} = 29.4, !- Program Line 11 + SET {76bc385c-5931-44c8-97d6-7f25cec0c6ef} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1e168c91-cbb0-40dd-928e-5abaf446244d} = NULL, !- Program Line 14 - SET {f905836f-1819-41fb-a5e2-7d2279d66f17} = NULL, !- Program Line 15 + SET {ff042cab-3ad9-47a7-b20f-75e6b85d0a94} = NULL, !- Program Line 14 + SET {76bc385c-5931-44c8-97d6-7f25cec0c6ef} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9445d6e2-b792-4ea5-b8e3-0e66d620e5e5}<23.9 && {9445d6e2-b792-4ea5-b8e3-0e66d620e5e5}>1.7, !- Program Line 1 - SET {db315025-7e8f-49c6-8c33-3843e1f3819f} = 29.4, !- Program Line 2 - SET {9552ca8f-83a5-476d-a2c9-5c4e8238afc7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9445d6e2-b792-4ea5-b8e3-0e66d620e5e5}<23.9 && {9445d6e2-b792-4ea5-b8e3-0e66d620e5e5}>1.7, !- Program Line 4 - SET {db315025-7e8f-49c6-8c33-3843e1f3819f} = 29.4, !- Program Line 5 - SET {9552ca8f-83a5-476d-a2c9-5c4e8238afc7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9445d6e2-b792-4ea5-b8e3-0e66d620e5e5}<23.9 && {9445d6e2-b792-4ea5-b8e3-0e66d620e5e5}>1.7, !- Program Line 7 - SET {db315025-7e8f-49c6-8c33-3843e1f3819f} = 29.4, !- Program Line 8 - SET {9552ca8f-83a5-476d-a2c9-5c4e8238afc7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9445d6e2-b792-4ea5-b8e3-0e66d620e5e5}<23.9 && {9445d6e2-b792-4ea5-b8e3-0e66d620e5e5}>1.7, !- Program Line 10 - SET {db315025-7e8f-49c6-8c33-3843e1f3819f} = 29.4, !- Program Line 11 - SET {9552ca8f-83a5-476d-a2c9-5c4e8238afc7} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8a318dca-fb80-46ac-94d0-d8b107fa6fdd}<23.9 && {8a318dca-fb80-46ac-94d0-d8b107fa6fdd}>1.7, !- Program Line 1 + SET {a427c34c-253b-4a10-85cc-e8e484e51bf2} = 29.4, !- Program Line 2 + SET {0aa27d25-0b7d-4b12-a2c1-b08b93669f42} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8a318dca-fb80-46ac-94d0-d8b107fa6fdd}<23.9 && {8a318dca-fb80-46ac-94d0-d8b107fa6fdd}>1.7, !- Program Line 4 + SET {a427c34c-253b-4a10-85cc-e8e484e51bf2} = 29.4, !- Program Line 5 + SET {0aa27d25-0b7d-4b12-a2c1-b08b93669f42} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8a318dca-fb80-46ac-94d0-d8b107fa6fdd}<23.9 && {8a318dca-fb80-46ac-94d0-d8b107fa6fdd}>1.7, !- Program Line 7 + SET {a427c34c-253b-4a10-85cc-e8e484e51bf2} = 29.4, !- Program Line 8 + SET {0aa27d25-0b7d-4b12-a2c1-b08b93669f42} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8a318dca-fb80-46ac-94d0-d8b107fa6fdd}<23.9 && {8a318dca-fb80-46ac-94d0-d8b107fa6fdd}>1.7, !- Program Line 10 + SET {a427c34c-253b-4a10-85cc-e8e484e51bf2} = 29.4, !- Program Line 11 + SET {0aa27d25-0b7d-4b12-a2c1-b08b93669f42} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {db315025-7e8f-49c6-8c33-3843e1f3819f} = NULL, !- Program Line 14 - SET {9552ca8f-83a5-476d-a2c9-5c4e8238afc7} = NULL, !- Program Line 15 + SET {a427c34c-253b-4a10-85cc-e8e484e51bf2} = NULL, !- Program Line 14 + SET {0aa27d25-0b7d-4b12-a2c1-b08b93669f42} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-Electricity-CAN_AB_Calgary.osm index 63a89f8ae1..7f750cb2dc 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-Electricity-CAN_AB_Calgary.osm @@ -6572,61 +6572,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a4b84d22-000e-43a8-af40-5dc4ed9039f3}<23.9 && {a4b84d22-000e-43a8-af40-5dc4ed9039f3}>1.7, !- Program Line 1 - SET {9b3d83f7-0735-43a9-be36-d4df2102da76} = 29.4, !- Program Line 2 - SET {5d7c773f-e119-4294-8fd9-7f3a3232c601} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a4b84d22-000e-43a8-af40-5dc4ed9039f3}<23.9 && {a4b84d22-000e-43a8-af40-5dc4ed9039f3}>1.7, !- Program Line 4 - SET {9b3d83f7-0735-43a9-be36-d4df2102da76} = 29.4, !- Program Line 5 - SET {5d7c773f-e119-4294-8fd9-7f3a3232c601} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a4b84d22-000e-43a8-af40-5dc4ed9039f3}<23.9 && {a4b84d22-000e-43a8-af40-5dc4ed9039f3}>1.7, !- Program Line 7 - SET {9b3d83f7-0735-43a9-be36-d4df2102da76} = 29.4, !- Program Line 8 - SET {5d7c773f-e119-4294-8fd9-7f3a3232c601} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a4b84d22-000e-43a8-af40-5dc4ed9039f3}<23.9 && {a4b84d22-000e-43a8-af40-5dc4ed9039f3}>1.7, !- Program Line 10 - SET {9b3d83f7-0735-43a9-be36-d4df2102da76} = 29.4, !- Program Line 11 - SET {5d7c773f-e119-4294-8fd9-7f3a3232c601} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {681ddd51-84b7-4a11-a2e1-a3e8beb049be}<23.9 && {681ddd51-84b7-4a11-a2e1-a3e8beb049be}>1.7, !- Program Line 1 + SET {01e40fc1-b595-496e-95fe-e38737fd8807} = 29.4, !- Program Line 2 + SET {9ba23aa4-d729-4dcb-a521-419d2c6befc1} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {681ddd51-84b7-4a11-a2e1-a3e8beb049be}<23.9 && {681ddd51-84b7-4a11-a2e1-a3e8beb049be}>1.7, !- Program Line 4 + SET {01e40fc1-b595-496e-95fe-e38737fd8807} = 29.4, !- Program Line 5 + SET {9ba23aa4-d729-4dcb-a521-419d2c6befc1} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {681ddd51-84b7-4a11-a2e1-a3e8beb049be}<23.9 && {681ddd51-84b7-4a11-a2e1-a3e8beb049be}>1.7, !- Program Line 7 + SET {01e40fc1-b595-496e-95fe-e38737fd8807} = 29.4, !- Program Line 8 + SET {9ba23aa4-d729-4dcb-a521-419d2c6befc1} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {681ddd51-84b7-4a11-a2e1-a3e8beb049be}<23.9 && {681ddd51-84b7-4a11-a2e1-a3e8beb049be}>1.7, !- Program Line 10 + SET {01e40fc1-b595-496e-95fe-e38737fd8807} = 29.4, !- Program Line 11 + SET {9ba23aa4-d729-4dcb-a521-419d2c6befc1} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {9b3d83f7-0735-43a9-be36-d4df2102da76} = NULL, !- Program Line 14 - SET {5d7c773f-e119-4294-8fd9-7f3a3232c601} = NULL, !- Program Line 15 + SET {01e40fc1-b595-496e-95fe-e38737fd8807} = NULL, !- Program Line 14 + SET {9ba23aa4-d729-4dcb-a521-419d2c6befc1} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {885143e8-5c3c-4ece-895f-135b1417d89c}<23.9 && {885143e8-5c3c-4ece-895f-135b1417d89c}>1.7, !- Program Line 1 - SET {453ea550-016f-462f-8e83-7b78f3c819bd} = 29.4, !- Program Line 2 - SET {ddcb01b2-e85b-4788-a785-febcd5043f4e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {885143e8-5c3c-4ece-895f-135b1417d89c}<23.9 && {885143e8-5c3c-4ece-895f-135b1417d89c}>1.7, !- Program Line 4 - SET {453ea550-016f-462f-8e83-7b78f3c819bd} = 29.4, !- Program Line 5 - SET {ddcb01b2-e85b-4788-a785-febcd5043f4e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {885143e8-5c3c-4ece-895f-135b1417d89c}<23.9 && {885143e8-5c3c-4ece-895f-135b1417d89c}>1.7, !- Program Line 7 - SET {453ea550-016f-462f-8e83-7b78f3c819bd} = 29.4, !- Program Line 8 - SET {ddcb01b2-e85b-4788-a785-febcd5043f4e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {885143e8-5c3c-4ece-895f-135b1417d89c}<23.9 && {885143e8-5c3c-4ece-895f-135b1417d89c}>1.7, !- Program Line 10 - SET {453ea550-016f-462f-8e83-7b78f3c819bd} = 29.4, !- Program Line 11 - SET {ddcb01b2-e85b-4788-a785-febcd5043f4e} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {16545e81-80d9-491b-91f4-8093d5b474a8}<23.9 && {16545e81-80d9-491b-91f4-8093d5b474a8}>1.7, !- Program Line 1 + SET {493c58db-dfa2-4e64-ad2c-8278ae5de43d} = 29.4, !- Program Line 2 + SET {d0287293-0d11-431f-ba1d-8d69c45d8df2} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {16545e81-80d9-491b-91f4-8093d5b474a8}<23.9 && {16545e81-80d9-491b-91f4-8093d5b474a8}>1.7, !- Program Line 4 + SET {493c58db-dfa2-4e64-ad2c-8278ae5de43d} = 29.4, !- Program Line 5 + SET {d0287293-0d11-431f-ba1d-8d69c45d8df2} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {16545e81-80d9-491b-91f4-8093d5b474a8}<23.9 && {16545e81-80d9-491b-91f4-8093d5b474a8}>1.7, !- Program Line 7 + SET {493c58db-dfa2-4e64-ad2c-8278ae5de43d} = 29.4, !- Program Line 8 + SET {d0287293-0d11-431f-ba1d-8d69c45d8df2} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {16545e81-80d9-491b-91f4-8093d5b474a8}<23.9 && {16545e81-80d9-491b-91f4-8093d5b474a8}>1.7, !- Program Line 10 + SET {493c58db-dfa2-4e64-ad2c-8278ae5de43d} = 29.4, !- Program Line 11 + SET {d0287293-0d11-431f-ba1d-8d69c45d8df2} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {453ea550-016f-462f-8e83-7b78f3c819bd} = NULL, !- Program Line 14 - SET {ddcb01b2-e85b-4788-a785-febcd5043f4e} = NULL, !- Program Line 15 + SET {493c58db-dfa2-4e64-ad2c-8278ae5de43d} = NULL, !- Program Line 14 + SET {d0287293-0d11-431f-ba1d-8d69c45d8df2} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000003}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9350dc98-9205-4dda-ac7d-919fa8f242f7}<23.9 && {9350dc98-9205-4dda-ac7d-919fa8f242f7}>1.7, !- Program Line 1 - SET {75f26f5f-feb3-4990-8428-c345a37a0876} = 29.4, !- Program Line 2 - SET {b2a585f0-cf33-4ba8-a401-3589eba17ef7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9350dc98-9205-4dda-ac7d-919fa8f242f7}<23.9 && {9350dc98-9205-4dda-ac7d-919fa8f242f7}>1.7, !- Program Line 4 - SET {75f26f5f-feb3-4990-8428-c345a37a0876} = 29.4, !- Program Line 5 - SET {b2a585f0-cf33-4ba8-a401-3589eba17ef7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9350dc98-9205-4dda-ac7d-919fa8f242f7}<23.9 && {9350dc98-9205-4dda-ac7d-919fa8f242f7}>1.7, !- Program Line 7 - SET {75f26f5f-feb3-4990-8428-c345a37a0876} = 29.4, !- Program Line 8 - SET {b2a585f0-cf33-4ba8-a401-3589eba17ef7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9350dc98-9205-4dda-ac7d-919fa8f242f7}<23.9 && {9350dc98-9205-4dda-ac7d-919fa8f242f7}>1.7, !- Program Line 10 - SET {75f26f5f-feb3-4990-8428-c345a37a0876} = 29.4, !- Program Line 11 - SET {b2a585f0-cf33-4ba8-a401-3589eba17ef7} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c83b486d-cd25-40ee-bb89-8e3ef5ffe778}<23.9 && {c83b486d-cd25-40ee-bb89-8e3ef5ffe778}>1.7, !- Program Line 1 + SET {62d680bb-3872-4a87-8b10-0b81871e2be7} = 29.4, !- Program Line 2 + SET {658f4c08-80b7-4752-bb36-9b438f25d0c2} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c83b486d-cd25-40ee-bb89-8e3ef5ffe778}<23.9 && {c83b486d-cd25-40ee-bb89-8e3ef5ffe778}>1.7, !- Program Line 4 + SET {62d680bb-3872-4a87-8b10-0b81871e2be7} = 29.4, !- Program Line 5 + SET {658f4c08-80b7-4752-bb36-9b438f25d0c2} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c83b486d-cd25-40ee-bb89-8e3ef5ffe778}<23.9 && {c83b486d-cd25-40ee-bb89-8e3ef5ffe778}>1.7, !- Program Line 7 + SET {62d680bb-3872-4a87-8b10-0b81871e2be7} = 29.4, !- Program Line 8 + SET {658f4c08-80b7-4752-bb36-9b438f25d0c2} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c83b486d-cd25-40ee-bb89-8e3ef5ffe778}<23.9 && {c83b486d-cd25-40ee-bb89-8e3ef5ffe778}>1.7, !- Program Line 10 + SET {62d680bb-3872-4a87-8b10-0b81871e2be7} = 29.4, !- Program Line 11 + SET {658f4c08-80b7-4752-bb36-9b438f25d0c2} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {75f26f5f-feb3-4990-8428-c345a37a0876} = NULL, !- Program Line 14 - SET {b2a585f0-cf33-4ba8-a401-3589eba17ef7} = NULL, !- Program Line 15 + SET {62d680bb-3872-4a87-8b10-0b81871e2be7} = NULL, !- Program Line 14 + SET {658f4c08-80b7-4752-bb36-9b438f25d0c2} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 2023c4db1e..afc9fdd061 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000038}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -7662,7 +7662,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0063-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7670,7 +7670,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0063-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7678,7 +7678,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0063-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7686,7 +7686,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0063-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7694,53 +7694,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e9950113-6886-4adf-81f3-f2c4a9467529}<23.9 && {e9950113-6886-4adf-81f3-f2c4a9467529}>1.7, !- Program Line 1 - SET {925b5f92-cdf6-4fe3-a26f-0424b406e655} = 29.4, !- Program Line 2 - SET {038bbf9c-0261-4d8d-a655-cf68d9ee5347} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e9950113-6886-4adf-81f3-f2c4a9467529}<23.9 && {e9950113-6886-4adf-81f3-f2c4a9467529}>1.7, !- Program Line 4 - SET {925b5f92-cdf6-4fe3-a26f-0424b406e655} = 29.4, !- Program Line 5 - SET {038bbf9c-0261-4d8d-a655-cf68d9ee5347} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e9950113-6886-4adf-81f3-f2c4a9467529}<23.9 && {e9950113-6886-4adf-81f3-f2c4a9467529}>1.7, !- Program Line 7 - SET {925b5f92-cdf6-4fe3-a26f-0424b406e655} = 29.4, !- Program Line 8 - SET {038bbf9c-0261-4d8d-a655-cf68d9ee5347} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e9950113-6886-4adf-81f3-f2c4a9467529}<23.9 && {e9950113-6886-4adf-81f3-f2c4a9467529}>1.7, !- Program Line 10 - SET {925b5f92-cdf6-4fe3-a26f-0424b406e655} = 29.4, !- Program Line 11 - SET {038bbf9c-0261-4d8d-a655-cf68d9ee5347} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ffa14c61-fd8c-470d-9f9e-858d1ad76f35}<23.9 && {ffa14c61-fd8c-470d-9f9e-858d1ad76f35}>1.7, !- Program Line 1 + SET {47afcfd1-c0b8-4d45-a05c-7089b2a76d24} = 29.4, !- Program Line 2 + SET {0e2f0c93-d811-4772-9bed-b8f7c98c584b} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ffa14c61-fd8c-470d-9f9e-858d1ad76f35}<23.9 && {ffa14c61-fd8c-470d-9f9e-858d1ad76f35}>1.7, !- Program Line 4 + SET {47afcfd1-c0b8-4d45-a05c-7089b2a76d24} = 29.4, !- Program Line 5 + SET {0e2f0c93-d811-4772-9bed-b8f7c98c584b} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ffa14c61-fd8c-470d-9f9e-858d1ad76f35}<23.9 && {ffa14c61-fd8c-470d-9f9e-858d1ad76f35}>1.7, !- Program Line 7 + SET {47afcfd1-c0b8-4d45-a05c-7089b2a76d24} = 29.4, !- Program Line 8 + SET {0e2f0c93-d811-4772-9bed-b8f7c98c584b} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ffa14c61-fd8c-470d-9f9e-858d1ad76f35}<23.9 && {ffa14c61-fd8c-470d-9f9e-858d1ad76f35}>1.7, !- Program Line 10 + SET {47afcfd1-c0b8-4d45-a05c-7089b2a76d24} = 29.4, !- Program Line 11 + SET {0e2f0c93-d811-4772-9bed-b8f7c98c584b} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {925b5f92-cdf6-4fe3-a26f-0424b406e655} = NULL, !- Program Line 14 - SET {038bbf9c-0261-4d8d-a655-cf68d9ee5347} = NULL, !- Program Line 15 + SET {47afcfd1-c0b8-4d45-a05c-7089b2a76d24} = NULL, !- Program Line 14 + SET {0e2f0c93-d811-4772-9bed-b8f7c98c584b} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bc16724c-9aca-4295-9ffb-2a1ff9ece6d6}<23.9 && {bc16724c-9aca-4295-9ffb-2a1ff9ece6d6}>1.7, !- Program Line 1 - SET {d9e770e7-289d-47ec-8edc-e0adb7906975} = 29.4, !- Program Line 2 - SET {571acab5-e966-477a-9ef1-84bd957b944b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bc16724c-9aca-4295-9ffb-2a1ff9ece6d6}<23.9 && {bc16724c-9aca-4295-9ffb-2a1ff9ece6d6}>1.7, !- Program Line 4 - SET {d9e770e7-289d-47ec-8edc-e0adb7906975} = 29.4, !- Program Line 5 - SET {571acab5-e966-477a-9ef1-84bd957b944b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bc16724c-9aca-4295-9ffb-2a1ff9ece6d6}<23.9 && {bc16724c-9aca-4295-9ffb-2a1ff9ece6d6}>1.7, !- Program Line 7 - SET {d9e770e7-289d-47ec-8edc-e0adb7906975} = 29.4, !- Program Line 8 - SET {571acab5-e966-477a-9ef1-84bd957b944b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bc16724c-9aca-4295-9ffb-2a1ff9ece6d6}<23.9 && {bc16724c-9aca-4295-9ffb-2a1ff9ece6d6}>1.7, !- Program Line 10 - SET {d9e770e7-289d-47ec-8edc-e0adb7906975} = 29.4, !- Program Line 11 - SET {571acab5-e966-477a-9ef1-84bd957b944b} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7c3332f4-60d7-446e-926c-d0849756ec09}<23.9 && {7c3332f4-60d7-446e-926c-d0849756ec09}>1.7, !- Program Line 1 + SET {0475fe27-9e98-4393-88d1-3a48a72e1137} = 29.4, !- Program Line 2 + SET {3054d19e-d58c-4881-b627-f507252e98fa} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7c3332f4-60d7-446e-926c-d0849756ec09}<23.9 && {7c3332f4-60d7-446e-926c-d0849756ec09}>1.7, !- Program Line 4 + SET {0475fe27-9e98-4393-88d1-3a48a72e1137} = 29.4, !- Program Line 5 + SET {3054d19e-d58c-4881-b627-f507252e98fa} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7c3332f4-60d7-446e-926c-d0849756ec09}<23.9 && {7c3332f4-60d7-446e-926c-d0849756ec09}>1.7, !- Program Line 7 + SET {0475fe27-9e98-4393-88d1-3a48a72e1137} = 29.4, !- Program Line 8 + SET {3054d19e-d58c-4881-b627-f507252e98fa} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7c3332f4-60d7-446e-926c-d0849756ec09}<23.9 && {7c3332f4-60d7-446e-926c-d0849756ec09}>1.7, !- Program Line 10 + SET {0475fe27-9e98-4393-88d1-3a48a72e1137} = 29.4, !- Program Line 11 + SET {3054d19e-d58c-4881-b627-f507252e98fa} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {d9e770e7-289d-47ec-8edc-e0adb7906975} = NULL, !- Program Line 14 - SET {571acab5-e966-477a-9ef1-84bd957b944b} = NULL, !- Program Line 15 + SET {0475fe27-9e98-4393-88d1-3a48a72e1137} = NULL, !- Program Line 14 + SET {3054d19e-d58c-4881-b627-f507252e98fa} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000002}; !- Program Name 1 @@ -9604,505 +9604,505 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000106}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000108}, !- Inlet Port {00000000-0000-0000-0016-000000000110}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000107}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000111}, !- Inlet Port {00000000-0000-0000-0016-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000108}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000116}, !- Inlet Port {00000000-0000-0000-0016-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000109}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000112}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000110}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000111}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000106}, !- Inlet Port {00000000-0000-0000-0016-000000000115}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000112}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000114}, !- Inlet Port {00000000-0000-0000-0016-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000113}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000126}, !- Inlet Port {00000000-0000-0000-0016-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000114}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000129}, !- Inlet Port {00000000-0000-0000-0016-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000115}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000134}, !- Inlet Port {00000000-0000-0000-0016-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000116}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000117}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000131}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000118}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000124}, !- Inlet Port {00000000-0000-0000-0016-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000119}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000132}, !- Inlet Port {00000000-0000-0000-0016-000000000125}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000120}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000144}, !- Inlet Port {00000000-0000-0000-0016-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000121}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port {00000000-0000-0000-0016-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000122}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000152}, !- Inlet Port {00000000-0000-0000-0016-000000000153}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000123}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000124}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000149}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000125}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000142}, !- Inlet Port {00000000-0000-0000-0016-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000126}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000150}, !- Inlet Port {00000000-0000-0000-0016-000000000143}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000127}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000162}, !- Inlet Port {00000000-0000-0000-0016-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000128}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000165}, !- Inlet Port {00000000-0000-0000-0016-000000000163}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000129}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000170}, !- Inlet Port {00000000-0000-0000-0016-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000130}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000166}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000131}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000167}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000132}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000160}, !- Inlet Port {00000000-0000-0000-0016-000000000169}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000133}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000168}, !- Inlet Port {00000000-0000-0000-0016-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000134}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000180}, !- Inlet Port {00000000-0000-0000-0016-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000135}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000183}, !- Inlet Port {00000000-0000-0000-0016-000000000181}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000136}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000188}, !- Inlet Port {00000000-0000-0000-0016-000000000189}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000137}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000138}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000185}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000139}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000178}, !- Inlet Port {00000000-0000-0000-0016-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000140}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000186}, !- Inlet Port {00000000-0000-0000-0016-000000000179}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000141}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000198}, !- Inlet Port {00000000-0000-0000-0016-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000142}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000201}, !- Inlet Port {00000000-0000-0000-0016-000000000199}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000143}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000206}, !- Inlet Port {00000000-0000-0000-0016-000000000207}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000144}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000202}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000145}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000203}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000196}, !- Inlet Port {00000000-0000-0000-0016-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000204}, !- Inlet Port {00000000-0000-0000-0016-000000000197}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000216}, !- Inlet Port {00000000-0000-0000-0016-000000000218}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000219}, !- Inlet Port {00000000-0000-0000-0016-000000000217}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000224}, !- Inlet Port {00000000-0000-0000-0016-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000220}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000221}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000214}, !- Inlet Port {00000000-0000-0000-0016-000000000223}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000222}, !- Inlet Port {00000000-0000-0000-0016-000000000215}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000234}, !- Inlet Port {00000000-0000-0000-0016-000000000236}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000237}, !- Inlet Port {00000000-0000-0000-0016-000000000235}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000242}, !- Inlet Port {00000000-0000-0000-0016-000000000243}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000239}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000232}, !- Inlet Port {00000000-0000-0000-0016-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000240}, !- Inlet Port {00000000-0000-0000-0016-000000000233}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000252}, !- Inlet Port {00000000-0000-0000-0016-000000000254}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000255}, !- Inlet Port {00000000-0000-0000-0016-000000000253}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000260}, !- Inlet Port {00000000-0000-0000-0016-000000000261}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000256}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000257}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000250}, !- Inlet Port {00000000-0000-0000-0016-000000000259}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000258}, !- Inlet Port {00000000-0000-0000-0016-000000000251}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000090}, !- Inlet Port {00000000-0000-0000-0016-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000093}, !- Inlet Port {00000000-0000-0000-0016-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000098}, !- Inlet Port {00000000-0000-0000-0016-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000095}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000088}, !- Inlet Port {00000000-0000-0000-0016-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000096}, !- Inlet Port {00000000-0000-0000-0016-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000176}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000060}, !- Inlet Port {00000000-0000-0000-0016-000000000062}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000063}, !- Inlet Port {00000000-0000-0000-0016-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000068}, !- Inlet Port {00000000-0000-0000-0016-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000064}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000065}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000058}, !- Inlet Port {00000000-0000-0000-0016-000000000067}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000066}, !- Inlet Port {00000000-0000-0000-0016-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000044}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000050}, !- Inlet Port {00000000-0000-0000-0016-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000186}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000187}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000188}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000040}, !- Inlet Port {00000000-0000-0000-0016-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000189}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000048}, !- Inlet Port {00000000-0000-0000-0016-000000000041}; !- Outlet Port @@ -13674,7 +13674,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000139}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -13689,7 +13689,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000140}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13698,7 +13698,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000141}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13707,7 +13707,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000142}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13728,7 +13728,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000143}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13737,7 +13737,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000144}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13746,7 +13746,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000145}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13767,7 +13767,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13776,7 +13776,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13785,7 +13785,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13800,7 +13800,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13809,7 +13809,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13818,7 +13818,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13833,7 +13833,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13842,7 +13842,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13851,7 +13851,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -13866,7 +13866,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13875,7 +13875,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13884,7 +13884,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13905,7 +13905,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13914,7 +13914,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13923,7 +13923,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -13938,7 +13938,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13947,7 +13947,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13956,7 +13956,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13977,7 +13977,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13986,7 +13986,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13995,7 +13995,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14010,7 +14010,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14019,7 +14019,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14028,7 +14028,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000169}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14049,7 +14049,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000170}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14058,7 +14058,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000171}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14067,7 +14067,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000172}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14088,7 +14088,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14097,7 +14097,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16173,7 +16173,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000139}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000140}, !- Summer Design Day Schedule Name @@ -16181,7 +16181,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000142}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000143}, !- Summer Design Day Schedule Name @@ -16189,7 +16189,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000145}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000146}, !- Summer Design Day Schedule Name @@ -16197,7 +16197,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000148}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000149}, !- Summer Design Day Schedule Name @@ -16205,7 +16205,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000151}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000152}, !- Summer Design Day Schedule Name @@ -16213,7 +16213,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000154}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000155}, !- Summer Design Day Schedule Name @@ -16221,7 +16221,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000157}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000158}, !- Summer Design Day Schedule Name @@ -16229,7 +16229,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000160}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000161}, !- Summer Design Day Schedule Name @@ -16237,7 +16237,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000163}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000164}, !- Summer Design Day Schedule Name @@ -16245,7 +16245,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000166}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000167}, !- Summer Design Day Schedule Name @@ -16253,7 +16253,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000048}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000170}, !- Summer Design Day Schedule Name @@ -16261,7 +16261,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000049}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000173}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index ac57388f6e..f6db42139b 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000038}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -7720,7 +7720,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0063-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7728,7 +7728,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0063-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7736,7 +7736,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0063-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7744,7 +7744,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0063-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7752,53 +7752,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {51079781-7037-45f7-9d17-557cbef27774}<23.9 && {51079781-7037-45f7-9d17-557cbef27774}>1.7, !- Program Line 1 - SET {c0cd4a54-b7f8-434d-af86-8a063f898196} = 29.4, !- Program Line 2 - SET {9e8bbaf6-64b0-49cb-bedb-06f60af91b16} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {51079781-7037-45f7-9d17-557cbef27774}<23.9 && {51079781-7037-45f7-9d17-557cbef27774}>1.7, !- Program Line 4 - SET {c0cd4a54-b7f8-434d-af86-8a063f898196} = 29.4, !- Program Line 5 - SET {9e8bbaf6-64b0-49cb-bedb-06f60af91b16} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {51079781-7037-45f7-9d17-557cbef27774}<23.9 && {51079781-7037-45f7-9d17-557cbef27774}>1.7, !- Program Line 7 - SET {c0cd4a54-b7f8-434d-af86-8a063f898196} = 29.4, !- Program Line 8 - SET {9e8bbaf6-64b0-49cb-bedb-06f60af91b16} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {51079781-7037-45f7-9d17-557cbef27774}<23.9 && {51079781-7037-45f7-9d17-557cbef27774}>1.7, !- Program Line 10 - SET {c0cd4a54-b7f8-434d-af86-8a063f898196} = 29.4, !- Program Line 11 - SET {9e8bbaf6-64b0-49cb-bedb-06f60af91b16} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b7916860-722a-41f6-95f0-2bff755b6bb8}<23.9 && {b7916860-722a-41f6-95f0-2bff755b6bb8}>1.7, !- Program Line 1 + SET {10c7dfbe-a3eb-45e2-9fa5-c08af549a214} = 29.4, !- Program Line 2 + SET {e5500c27-d0bd-4ce4-bbb5-f123779043d3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b7916860-722a-41f6-95f0-2bff755b6bb8}<23.9 && {b7916860-722a-41f6-95f0-2bff755b6bb8}>1.7, !- Program Line 4 + SET {10c7dfbe-a3eb-45e2-9fa5-c08af549a214} = 29.4, !- Program Line 5 + SET {e5500c27-d0bd-4ce4-bbb5-f123779043d3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b7916860-722a-41f6-95f0-2bff755b6bb8}<23.9 && {b7916860-722a-41f6-95f0-2bff755b6bb8}>1.7, !- Program Line 7 + SET {10c7dfbe-a3eb-45e2-9fa5-c08af549a214} = 29.4, !- Program Line 8 + SET {e5500c27-d0bd-4ce4-bbb5-f123779043d3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b7916860-722a-41f6-95f0-2bff755b6bb8}<23.9 && {b7916860-722a-41f6-95f0-2bff755b6bb8}>1.7, !- Program Line 10 + SET {10c7dfbe-a3eb-45e2-9fa5-c08af549a214} = 29.4, !- Program Line 11 + SET {e5500c27-d0bd-4ce4-bbb5-f123779043d3} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c0cd4a54-b7f8-434d-af86-8a063f898196} = NULL, !- Program Line 14 - SET {9e8bbaf6-64b0-49cb-bedb-06f60af91b16} = NULL, !- Program Line 15 + SET {10c7dfbe-a3eb-45e2-9fa5-c08af549a214} = NULL, !- Program Line 14 + SET {e5500c27-d0bd-4ce4-bbb5-f123779043d3} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {90353d7b-7459-47fa-9df7-7ce34cdda53e}<23.9 && {90353d7b-7459-47fa-9df7-7ce34cdda53e}>1.7, !- Program Line 1 - SET {a36aabd7-35ee-4aa7-9bc3-41071ecfb6e1} = 29.4, !- Program Line 2 - SET {5f6750eb-6ebe-40a0-9471-016d1e2870bc} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {90353d7b-7459-47fa-9df7-7ce34cdda53e}<23.9 && {90353d7b-7459-47fa-9df7-7ce34cdda53e}>1.7, !- Program Line 4 - SET {a36aabd7-35ee-4aa7-9bc3-41071ecfb6e1} = 29.4, !- Program Line 5 - SET {5f6750eb-6ebe-40a0-9471-016d1e2870bc} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {90353d7b-7459-47fa-9df7-7ce34cdda53e}<23.9 && {90353d7b-7459-47fa-9df7-7ce34cdda53e}>1.7, !- Program Line 7 - SET {a36aabd7-35ee-4aa7-9bc3-41071ecfb6e1} = 29.4, !- Program Line 8 - SET {5f6750eb-6ebe-40a0-9471-016d1e2870bc} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {90353d7b-7459-47fa-9df7-7ce34cdda53e}<23.9 && {90353d7b-7459-47fa-9df7-7ce34cdda53e}>1.7, !- Program Line 10 - SET {a36aabd7-35ee-4aa7-9bc3-41071ecfb6e1} = 29.4, !- Program Line 11 - SET {5f6750eb-6ebe-40a0-9471-016d1e2870bc} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4180fec2-fdc7-45c9-9803-5dcafb9bd468}<23.9 && {4180fec2-fdc7-45c9-9803-5dcafb9bd468}>1.7, !- Program Line 1 + SET {bb2c17fe-a5dd-4e9b-89bd-43671a34c3d3} = 29.4, !- Program Line 2 + SET {e7a43ec6-30d3-4a79-879a-699f3430405f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4180fec2-fdc7-45c9-9803-5dcafb9bd468}<23.9 && {4180fec2-fdc7-45c9-9803-5dcafb9bd468}>1.7, !- Program Line 4 + SET {bb2c17fe-a5dd-4e9b-89bd-43671a34c3d3} = 29.4, !- Program Line 5 + SET {e7a43ec6-30d3-4a79-879a-699f3430405f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4180fec2-fdc7-45c9-9803-5dcafb9bd468}<23.9 && {4180fec2-fdc7-45c9-9803-5dcafb9bd468}>1.7, !- Program Line 7 + SET {bb2c17fe-a5dd-4e9b-89bd-43671a34c3d3} = 29.4, !- Program Line 8 + SET {e7a43ec6-30d3-4a79-879a-699f3430405f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4180fec2-fdc7-45c9-9803-5dcafb9bd468}<23.9 && {4180fec2-fdc7-45c9-9803-5dcafb9bd468}>1.7, !- Program Line 10 + SET {bb2c17fe-a5dd-4e9b-89bd-43671a34c3d3} = 29.4, !- Program Line 11 + SET {e7a43ec6-30d3-4a79-879a-699f3430405f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a36aabd7-35ee-4aa7-9bc3-41071ecfb6e1} = NULL, !- Program Line 14 - SET {5f6750eb-6ebe-40a0-9471-016d1e2870bc} = NULL, !- Program Line 15 + SET {bb2c17fe-a5dd-4e9b-89bd-43671a34c3d3} = NULL, !- Program Line 14 + SET {e7a43ec6-30d3-4a79-879a-699f3430405f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000002}; !- Program Name 1 @@ -9662,505 +9662,505 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000106}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000108}, !- Inlet Port {00000000-0000-0000-0016-000000000110}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000107}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000111}, !- Inlet Port {00000000-0000-0000-0016-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000108}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000116}, !- Inlet Port {00000000-0000-0000-0016-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000109}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000112}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000110}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000111}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000106}, !- Inlet Port {00000000-0000-0000-0016-000000000115}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000112}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000114}, !- Inlet Port {00000000-0000-0000-0016-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000113}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000126}, !- Inlet Port {00000000-0000-0000-0016-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000114}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000129}, !- Inlet Port {00000000-0000-0000-0016-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000115}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000134}, !- Inlet Port {00000000-0000-0000-0016-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000116}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000117}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000131}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000118}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000124}, !- Inlet Port {00000000-0000-0000-0016-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000119}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000132}, !- Inlet Port {00000000-0000-0000-0016-000000000125}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000120}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000144}, !- Inlet Port {00000000-0000-0000-0016-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000121}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port {00000000-0000-0000-0016-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000122}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000152}, !- Inlet Port {00000000-0000-0000-0016-000000000153}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000123}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000124}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000149}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000125}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000142}, !- Inlet Port {00000000-0000-0000-0016-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000126}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000150}, !- Inlet Port {00000000-0000-0000-0016-000000000143}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000127}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000162}, !- Inlet Port {00000000-0000-0000-0016-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000128}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000165}, !- Inlet Port {00000000-0000-0000-0016-000000000163}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000129}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000170}, !- Inlet Port {00000000-0000-0000-0016-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000130}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000166}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000131}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000167}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000132}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000160}, !- Inlet Port {00000000-0000-0000-0016-000000000169}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000133}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000168}, !- Inlet Port {00000000-0000-0000-0016-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000134}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000180}, !- Inlet Port {00000000-0000-0000-0016-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000135}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000183}, !- Inlet Port {00000000-0000-0000-0016-000000000181}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000136}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000188}, !- Inlet Port {00000000-0000-0000-0016-000000000189}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000137}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000138}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000185}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000139}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000178}, !- Inlet Port {00000000-0000-0000-0016-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000140}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000186}, !- Inlet Port {00000000-0000-0000-0016-000000000179}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000141}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000198}, !- Inlet Port {00000000-0000-0000-0016-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000142}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000201}, !- Inlet Port {00000000-0000-0000-0016-000000000199}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000143}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000206}, !- Inlet Port {00000000-0000-0000-0016-000000000207}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000144}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000202}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000145}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000203}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000196}, !- Inlet Port {00000000-0000-0000-0016-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000204}, !- Inlet Port {00000000-0000-0000-0016-000000000197}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000216}, !- Inlet Port {00000000-0000-0000-0016-000000000218}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000219}, !- Inlet Port {00000000-0000-0000-0016-000000000217}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000224}, !- Inlet Port {00000000-0000-0000-0016-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000220}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000221}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000214}, !- Inlet Port {00000000-0000-0000-0016-000000000223}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000222}, !- Inlet Port {00000000-0000-0000-0016-000000000215}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000234}, !- Inlet Port {00000000-0000-0000-0016-000000000236}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000237}, !- Inlet Port {00000000-0000-0000-0016-000000000235}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000242}, !- Inlet Port {00000000-0000-0000-0016-000000000243}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000239}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000232}, !- Inlet Port {00000000-0000-0000-0016-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000240}, !- Inlet Port {00000000-0000-0000-0016-000000000233}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000252}, !- Inlet Port {00000000-0000-0000-0016-000000000254}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000255}, !- Inlet Port {00000000-0000-0000-0016-000000000253}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000260}, !- Inlet Port {00000000-0000-0000-0016-000000000261}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000256}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000257}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000250}, !- Inlet Port {00000000-0000-0000-0016-000000000259}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000258}, !- Inlet Port {00000000-0000-0000-0016-000000000251}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000090}, !- Inlet Port {00000000-0000-0000-0016-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000093}, !- Inlet Port {00000000-0000-0000-0016-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000098}, !- Inlet Port {00000000-0000-0000-0016-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000095}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000088}, !- Inlet Port {00000000-0000-0000-0016-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000096}, !- Inlet Port {00000000-0000-0000-0016-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000176}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000060}, !- Inlet Port {00000000-0000-0000-0016-000000000062}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000063}, !- Inlet Port {00000000-0000-0000-0016-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000068}, !- Inlet Port {00000000-0000-0000-0016-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000064}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000065}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000058}, !- Inlet Port {00000000-0000-0000-0016-000000000067}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000066}, !- Inlet Port {00000000-0000-0000-0016-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000044}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000050}, !- Inlet Port {00000000-0000-0000-0016-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000186}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000187}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000188}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000040}, !- Inlet Port {00000000-0000-0000-0016-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000189}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000048}, !- Inlet Port {00000000-0000-0000-0016-000000000041}; !- Outlet Port @@ -13732,7 +13732,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000139}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -13747,7 +13747,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000140}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13756,7 +13756,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000141}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13765,7 +13765,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000142}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13786,7 +13786,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000143}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13795,7 +13795,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000144}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13804,7 +13804,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000145}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13825,7 +13825,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13834,7 +13834,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13843,7 +13843,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13858,7 +13858,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13867,7 +13867,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13876,7 +13876,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13891,7 +13891,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13900,7 +13900,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13909,7 +13909,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -13924,7 +13924,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13933,7 +13933,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13942,7 +13942,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -13963,7 +13963,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13972,7 +13972,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -13981,7 +13981,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -13996,7 +13996,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14005,7 +14005,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14014,7 +14014,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14035,7 +14035,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14044,7 +14044,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14053,7 +14053,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14068,7 +14068,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14077,7 +14077,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14086,7 +14086,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000169}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14107,7 +14107,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000170}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14116,7 +14116,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000171}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14125,7 +14125,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000172}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14146,7 +14146,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14155,7 +14155,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16231,7 +16231,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000139}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000140}, !- Summer Design Day Schedule Name @@ -16239,7 +16239,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000142}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000143}, !- Summer Design Day Schedule Name @@ -16247,7 +16247,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000145}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000146}, !- Summer Design Day Schedule Name @@ -16255,7 +16255,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000148}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000149}, !- Summer Design Day Schedule Name @@ -16263,7 +16263,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000151}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000152}, !- Summer Design Day Schedule Name @@ -16271,7 +16271,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000154}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000155}, !- Summer Design Day Schedule Name @@ -16279,7 +16279,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000157}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000158}, !- Summer Design Day Schedule Name @@ -16287,7 +16287,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000160}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000161}, !- Summer Design Day Schedule Name @@ -16295,7 +16295,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000163}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000164}, !- Summer Design Day Schedule Name @@ -16303,7 +16303,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000166}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000167}, !- Summer Design Day Schedule Name @@ -16311,7 +16311,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000048}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000170}, !- Summer Design Day Schedule Name @@ -16319,7 +16319,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000049}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000173}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGas-CAN_AB_Calgary.osm index d5872f4042..9bdba64b5b 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGas-CAN_AB_Calgary.osm @@ -7492,61 +7492,61 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d2bcae8c-a355-4ff4-acc0-1973f482a4fb}<23.9 && {d2bcae8c-a355-4ff4-acc0-1973f482a4fb}>1.7, !- Program Line 1 - SET {8999db84-d50e-46ea-bb8e-85ac516df71c} = 29.4, !- Program Line 2 - SET {eb799e49-d7a8-485f-9ec8-93834388ed01} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d2bcae8c-a355-4ff4-acc0-1973f482a4fb}<23.9 && {d2bcae8c-a355-4ff4-acc0-1973f482a4fb}>1.7, !- Program Line 4 - SET {8999db84-d50e-46ea-bb8e-85ac516df71c} = 29.4, !- Program Line 5 - SET {eb799e49-d7a8-485f-9ec8-93834388ed01} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d2bcae8c-a355-4ff4-acc0-1973f482a4fb}<23.9 && {d2bcae8c-a355-4ff4-acc0-1973f482a4fb}>1.7, !- Program Line 7 - SET {8999db84-d50e-46ea-bb8e-85ac516df71c} = 29.4, !- Program Line 8 - SET {eb799e49-d7a8-485f-9ec8-93834388ed01} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d2bcae8c-a355-4ff4-acc0-1973f482a4fb}<23.9 && {d2bcae8c-a355-4ff4-acc0-1973f482a4fb}>1.7, !- Program Line 10 - SET {8999db84-d50e-46ea-bb8e-85ac516df71c} = 29.4, !- Program Line 11 - SET {eb799e49-d7a8-485f-9ec8-93834388ed01} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d84a92f4-8dd3-48c2-915c-c1d456459ae6}<23.9 && {d84a92f4-8dd3-48c2-915c-c1d456459ae6}>1.7, !- Program Line 1 + SET {0581173d-3a1a-4b8a-945d-d7547558f423} = 29.4, !- Program Line 2 + SET {a51106e1-c54a-46fe-8f9f-a0217ff46da4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d84a92f4-8dd3-48c2-915c-c1d456459ae6}<23.9 && {d84a92f4-8dd3-48c2-915c-c1d456459ae6}>1.7, !- Program Line 4 + SET {0581173d-3a1a-4b8a-945d-d7547558f423} = 29.4, !- Program Line 5 + SET {a51106e1-c54a-46fe-8f9f-a0217ff46da4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d84a92f4-8dd3-48c2-915c-c1d456459ae6}<23.9 && {d84a92f4-8dd3-48c2-915c-c1d456459ae6}>1.7, !- Program Line 7 + SET {0581173d-3a1a-4b8a-945d-d7547558f423} = 29.4, !- Program Line 8 + SET {a51106e1-c54a-46fe-8f9f-a0217ff46da4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d84a92f4-8dd3-48c2-915c-c1d456459ae6}<23.9 && {d84a92f4-8dd3-48c2-915c-c1d456459ae6}>1.7, !- Program Line 10 + SET {0581173d-3a1a-4b8a-945d-d7547558f423} = 29.4, !- Program Line 11 + SET {a51106e1-c54a-46fe-8f9f-a0217ff46da4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8999db84-d50e-46ea-bb8e-85ac516df71c} = NULL, !- Program Line 14 - SET {eb799e49-d7a8-485f-9ec8-93834388ed01} = NULL, !- Program Line 15 + SET {0581173d-3a1a-4b8a-945d-d7547558f423} = NULL, !- Program Line 14 + SET {a51106e1-c54a-46fe-8f9f-a0217ff46da4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {26c3e998-8174-479c-b138-5631adfacc4c}<23.9 && {26c3e998-8174-479c-b138-5631adfacc4c}>1.7, !- Program Line 1 - SET {b0de4905-df5a-4f62-8d06-efa93577e1d3} = 29.4, !- Program Line 2 - SET {fc9c53b0-d57d-4baa-a740-de419fccc373} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {26c3e998-8174-479c-b138-5631adfacc4c}<23.9 && {26c3e998-8174-479c-b138-5631adfacc4c}>1.7, !- Program Line 4 - SET {b0de4905-df5a-4f62-8d06-efa93577e1d3} = 29.4, !- Program Line 5 - SET {fc9c53b0-d57d-4baa-a740-de419fccc373} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {26c3e998-8174-479c-b138-5631adfacc4c}<23.9 && {26c3e998-8174-479c-b138-5631adfacc4c}>1.7, !- Program Line 7 - SET {b0de4905-df5a-4f62-8d06-efa93577e1d3} = 29.4, !- Program Line 8 - SET {fc9c53b0-d57d-4baa-a740-de419fccc373} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {26c3e998-8174-479c-b138-5631adfacc4c}<23.9 && {26c3e998-8174-479c-b138-5631adfacc4c}>1.7, !- Program Line 10 - SET {b0de4905-df5a-4f62-8d06-efa93577e1d3} = 29.4, !- Program Line 11 - SET {fc9c53b0-d57d-4baa-a740-de419fccc373} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8e957f72-8f5b-48ba-b318-4c9081a20a6f}<23.9 && {8e957f72-8f5b-48ba-b318-4c9081a20a6f}>1.7, !- Program Line 1 + SET {05fbf3d8-a3ea-4650-ba1b-5d989a8207e5} = 29.4, !- Program Line 2 + SET {2ac65c0c-285b-47da-be7f-64bf5b46b077} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8e957f72-8f5b-48ba-b318-4c9081a20a6f}<23.9 && {8e957f72-8f5b-48ba-b318-4c9081a20a6f}>1.7, !- Program Line 4 + SET {05fbf3d8-a3ea-4650-ba1b-5d989a8207e5} = 29.4, !- Program Line 5 + SET {2ac65c0c-285b-47da-be7f-64bf5b46b077} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8e957f72-8f5b-48ba-b318-4c9081a20a6f}<23.9 && {8e957f72-8f5b-48ba-b318-4c9081a20a6f}>1.7, !- Program Line 7 + SET {05fbf3d8-a3ea-4650-ba1b-5d989a8207e5} = 29.4, !- Program Line 8 + SET {2ac65c0c-285b-47da-be7f-64bf5b46b077} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8e957f72-8f5b-48ba-b318-4c9081a20a6f}<23.9 && {8e957f72-8f5b-48ba-b318-4c9081a20a6f}>1.7, !- Program Line 10 + SET {05fbf3d8-a3ea-4650-ba1b-5d989a8207e5} = 29.4, !- Program Line 11 + SET {2ac65c0c-285b-47da-be7f-64bf5b46b077} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b0de4905-df5a-4f62-8d06-efa93577e1d3} = NULL, !- Program Line 14 - SET {fc9c53b0-d57d-4baa-a740-de419fccc373} = NULL, !- Program Line 15 + SET {05fbf3d8-a3ea-4650-ba1b-5d989a8207e5} = NULL, !- Program Line 14 + SET {2ac65c0c-285b-47da-be7f-64bf5b46b077} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {141a1e75-32a9-4240-9cc7-e1dddb5d2162}<23.9 && {141a1e75-32a9-4240-9cc7-e1dddb5d2162}>1.7, !- Program Line 1 - SET {63266ee8-a042-4358-bbb3-337be8412c9e} = 29.4, !- Program Line 2 - SET {df8a7ee0-2d4e-4a82-81f8-2f600748bf05} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {141a1e75-32a9-4240-9cc7-e1dddb5d2162}<23.9 && {141a1e75-32a9-4240-9cc7-e1dddb5d2162}>1.7, !- Program Line 4 - SET {63266ee8-a042-4358-bbb3-337be8412c9e} = 29.4, !- Program Line 5 - SET {df8a7ee0-2d4e-4a82-81f8-2f600748bf05} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {141a1e75-32a9-4240-9cc7-e1dddb5d2162}<23.9 && {141a1e75-32a9-4240-9cc7-e1dddb5d2162}>1.7, !- Program Line 7 - SET {63266ee8-a042-4358-bbb3-337be8412c9e} = 29.4, !- Program Line 8 - SET {df8a7ee0-2d4e-4a82-81f8-2f600748bf05} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {141a1e75-32a9-4240-9cc7-e1dddb5d2162}<23.9 && {141a1e75-32a9-4240-9cc7-e1dddb5d2162}>1.7, !- Program Line 10 - SET {63266ee8-a042-4358-bbb3-337be8412c9e} = 29.4, !- Program Line 11 - SET {df8a7ee0-2d4e-4a82-81f8-2f600748bf05} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c3fd7ccd-95cc-41be-98d9-0926151a7bf3}<23.9 && {c3fd7ccd-95cc-41be-98d9-0926151a7bf3}>1.7, !- Program Line 1 + SET {ff99f5ad-195d-4dd8-9d13-90206a53032c} = 29.4, !- Program Line 2 + SET {d4848a91-9df2-40cc-a4ee-5d3e3dd07491} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c3fd7ccd-95cc-41be-98d9-0926151a7bf3}<23.9 && {c3fd7ccd-95cc-41be-98d9-0926151a7bf3}>1.7, !- Program Line 4 + SET {ff99f5ad-195d-4dd8-9d13-90206a53032c} = 29.4, !- Program Line 5 + SET {d4848a91-9df2-40cc-a4ee-5d3e3dd07491} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c3fd7ccd-95cc-41be-98d9-0926151a7bf3}<23.9 && {c3fd7ccd-95cc-41be-98d9-0926151a7bf3}>1.7, !- Program Line 7 + SET {ff99f5ad-195d-4dd8-9d13-90206a53032c} = 29.4, !- Program Line 8 + SET {d4848a91-9df2-40cc-a4ee-5d3e3dd07491} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c3fd7ccd-95cc-41be-98d9-0926151a7bf3}<23.9 && {c3fd7ccd-95cc-41be-98d9-0926151a7bf3}>1.7, !- Program Line 10 + SET {ff99f5ad-195d-4dd8-9d13-90206a53032c} = 29.4, !- Program Line 11 + SET {d4848a91-9df2-40cc-a4ee-5d3e3dd07491} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {63266ee8-a042-4358-bbb3-337be8412c9e} = NULL, !- Program Line 14 - SET {df8a7ee0-2d4e-4a82-81f8-2f600748bf05} = NULL, !- Program Line 15 + SET {ff99f5ad-195d-4dd8-9d13-90206a53032c} = NULL, !- Program Line 14 + SET {d4848a91-9df2-40cc-a4ee-5d3e3dd07491} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 0436456ce0..083308317f 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000038}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -8524,7 +8524,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8532,7 +8532,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8540,7 +8540,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8548,7 +8548,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8556,53 +8556,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {96e66ed8-3341-4a77-a4f4-b76f8097982c}<23.9 && {96e66ed8-3341-4a77-a4f4-b76f8097982c}>1.7, !- Program Line 1 - SET {0cb34755-baa2-4fd0-ab93-ed2f6a1ec3a7} = 29.4, !- Program Line 2 - SET {3af5d72b-a36d-4a27-b3c2-9435a76f44f8} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {96e66ed8-3341-4a77-a4f4-b76f8097982c}<23.9 && {96e66ed8-3341-4a77-a4f4-b76f8097982c}>1.7, !- Program Line 4 - SET {0cb34755-baa2-4fd0-ab93-ed2f6a1ec3a7} = 29.4, !- Program Line 5 - SET {3af5d72b-a36d-4a27-b3c2-9435a76f44f8} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {96e66ed8-3341-4a77-a4f4-b76f8097982c}<23.9 && {96e66ed8-3341-4a77-a4f4-b76f8097982c}>1.7, !- Program Line 7 - SET {0cb34755-baa2-4fd0-ab93-ed2f6a1ec3a7} = 29.4, !- Program Line 8 - SET {3af5d72b-a36d-4a27-b3c2-9435a76f44f8} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {96e66ed8-3341-4a77-a4f4-b76f8097982c}<23.9 && {96e66ed8-3341-4a77-a4f4-b76f8097982c}>1.7, !- Program Line 10 - SET {0cb34755-baa2-4fd0-ab93-ed2f6a1ec3a7} = 29.4, !- Program Line 11 - SET {3af5d72b-a36d-4a27-b3c2-9435a76f44f8} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f47dbd60-1754-4c24-951f-e86fa6212150}<23.9 && {f47dbd60-1754-4c24-951f-e86fa6212150}>1.7, !- Program Line 1 + SET {1b28dbfb-bce5-44fc-a92a-5cd18a69e84a} = 29.4, !- Program Line 2 + SET {78bf1966-1a15-47fc-acbe-e98fbfcf5cda} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f47dbd60-1754-4c24-951f-e86fa6212150}<23.9 && {f47dbd60-1754-4c24-951f-e86fa6212150}>1.7, !- Program Line 4 + SET {1b28dbfb-bce5-44fc-a92a-5cd18a69e84a} = 29.4, !- Program Line 5 + SET {78bf1966-1a15-47fc-acbe-e98fbfcf5cda} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f47dbd60-1754-4c24-951f-e86fa6212150}<23.9 && {f47dbd60-1754-4c24-951f-e86fa6212150}>1.7, !- Program Line 7 + SET {1b28dbfb-bce5-44fc-a92a-5cd18a69e84a} = 29.4, !- Program Line 8 + SET {78bf1966-1a15-47fc-acbe-e98fbfcf5cda} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f47dbd60-1754-4c24-951f-e86fa6212150}<23.9 && {f47dbd60-1754-4c24-951f-e86fa6212150}>1.7, !- Program Line 10 + SET {1b28dbfb-bce5-44fc-a92a-5cd18a69e84a} = 29.4, !- Program Line 11 + SET {78bf1966-1a15-47fc-acbe-e98fbfcf5cda} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0cb34755-baa2-4fd0-ab93-ed2f6a1ec3a7} = NULL, !- Program Line 14 - SET {3af5d72b-a36d-4a27-b3c2-9435a76f44f8} = NULL, !- Program Line 15 + SET {1b28dbfb-bce5-44fc-a92a-5cd18a69e84a} = NULL, !- Program Line 14 + SET {78bf1966-1a15-47fc-acbe-e98fbfcf5cda} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d920df1b-f589-4d16-a6b4-52375d6ff444}<23.9 && {d920df1b-f589-4d16-a6b4-52375d6ff444}>1.7, !- Program Line 1 - SET {6a1e620a-c612-4ca2-a293-cd7755681dae} = 29.4, !- Program Line 2 - SET {135331b7-c7f9-4cee-9dce-6676db7844ca} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d920df1b-f589-4d16-a6b4-52375d6ff444}<23.9 && {d920df1b-f589-4d16-a6b4-52375d6ff444}>1.7, !- Program Line 4 - SET {6a1e620a-c612-4ca2-a293-cd7755681dae} = 29.4, !- Program Line 5 - SET {135331b7-c7f9-4cee-9dce-6676db7844ca} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d920df1b-f589-4d16-a6b4-52375d6ff444}<23.9 && {d920df1b-f589-4d16-a6b4-52375d6ff444}>1.7, !- Program Line 7 - SET {6a1e620a-c612-4ca2-a293-cd7755681dae} = 29.4, !- Program Line 8 - SET {135331b7-c7f9-4cee-9dce-6676db7844ca} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d920df1b-f589-4d16-a6b4-52375d6ff444}<23.9 && {d920df1b-f589-4d16-a6b4-52375d6ff444}>1.7, !- Program Line 10 - SET {6a1e620a-c612-4ca2-a293-cd7755681dae} = 29.4, !- Program Line 11 - SET {135331b7-c7f9-4cee-9dce-6676db7844ca} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {71d24aeb-40a8-4409-a08f-862767f316da}<23.9 && {71d24aeb-40a8-4409-a08f-862767f316da}>1.7, !- Program Line 1 + SET {8156980c-9b50-4bf7-a66d-1e23ec310c69} = 29.4, !- Program Line 2 + SET {0a80702b-8685-4a7e-a0da-8cff38aefad4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {71d24aeb-40a8-4409-a08f-862767f316da}<23.9 && {71d24aeb-40a8-4409-a08f-862767f316da}>1.7, !- Program Line 4 + SET {8156980c-9b50-4bf7-a66d-1e23ec310c69} = 29.4, !- Program Line 5 + SET {0a80702b-8685-4a7e-a0da-8cff38aefad4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {71d24aeb-40a8-4409-a08f-862767f316da}<23.9 && {71d24aeb-40a8-4409-a08f-862767f316da}>1.7, !- Program Line 7 + SET {8156980c-9b50-4bf7-a66d-1e23ec310c69} = 29.4, !- Program Line 8 + SET {0a80702b-8685-4a7e-a0da-8cff38aefad4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {71d24aeb-40a8-4409-a08f-862767f316da}<23.9 && {71d24aeb-40a8-4409-a08f-862767f316da}>1.7, !- Program Line 10 + SET {8156980c-9b50-4bf7-a66d-1e23ec310c69} = 29.4, !- Program Line 11 + SET {0a80702b-8685-4a7e-a0da-8cff38aefad4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6a1e620a-c612-4ca2-a293-cd7755681dae} = NULL, !- Program Line 14 - SET {135331b7-c7f9-4cee-9dce-6676db7844ca} = NULL, !- Program Line 15 + SET {8156980c-9b50-4bf7-a66d-1e23ec310c69} = NULL, !- Program Line 14 + SET {0a80702b-8685-4a7e-a0da-8cff38aefad4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000002}; !- Program Name 1 @@ -10706,505 +10706,505 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000152}, !- Inlet Port {00000000-0000-0000-0018-000000000154}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000155}, !- Inlet Port {00000000-0000-0000-0018-000000000153}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000160}, !- Inlet Port {00000000-0000-0000-0018-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000156}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000157}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000150}, !- Inlet Port {00000000-0000-0000-0018-000000000159}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000158}, !- Inlet Port {00000000-0000-0000-0018-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000174}, !- Inlet Port {00000000-0000-0000-0018-000000000176}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000177}, !- Inlet Port {00000000-0000-0000-0018-000000000175}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000182}, !- Inlet Port {00000000-0000-0000-0018-000000000183}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000178}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000179}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000172}, !- Inlet Port {00000000-0000-0000-0018-000000000181}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000180}, !- Inlet Port {00000000-0000-0000-0018-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000196}, !- Inlet Port {00000000-0000-0000-0018-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000199}, !- Inlet Port {00000000-0000-0000-0018-000000000197}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000204}, !- Inlet Port {00000000-0000-0000-0018-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000201}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000194}, !- Inlet Port {00000000-0000-0000-0018-000000000203}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000202}, !- Inlet Port {00000000-0000-0000-0018-000000000195}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000218}, !- Inlet Port {00000000-0000-0000-0018-000000000220}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000221}, !- Inlet Port {00000000-0000-0000-0018-000000000219}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000226}, !- Inlet Port {00000000-0000-0000-0018-000000000227}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000222}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000223}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000216}, !- Inlet Port {00000000-0000-0000-0018-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000224}, !- Inlet Port {00000000-0000-0000-0018-000000000217}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000240}, !- Inlet Port {00000000-0000-0000-0018-000000000242}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000243}, !- Inlet Port {00000000-0000-0000-0018-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000248}, !- Inlet Port {00000000-0000-0000-0018-000000000249}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000245}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000238}, !- Inlet Port {00000000-0000-0000-0018-000000000247}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000246}, !- Inlet Port {00000000-0000-0000-0018-000000000239}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000262}, !- Inlet Port {00000000-0000-0000-0018-000000000264}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000265}, !- Inlet Port {00000000-0000-0000-0018-000000000263}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000270}, !- Inlet Port {00000000-0000-0000-0018-000000000271}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000266}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000267}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000260}, !- Inlet Port {00000000-0000-0000-0018-000000000269}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000268}, !- Inlet Port {00000000-0000-0000-0018-000000000261}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000284}, !- Inlet Port {00000000-0000-0000-0018-000000000286}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000287}, !- Inlet Port {00000000-0000-0000-0018-000000000285}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000292}, !- Inlet Port {00000000-0000-0000-0018-000000000293}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000288}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000289}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000282}, !- Inlet Port {00000000-0000-0000-0018-000000000291}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000290}, !- Inlet Port {00000000-0000-0000-0018-000000000283}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000306}, !- Inlet Port {00000000-0000-0000-0018-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000309}, !- Inlet Port {00000000-0000-0000-0018-000000000307}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000314}, !- Inlet Port {00000000-0000-0000-0018-000000000315}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000311}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000304}, !- Inlet Port {00000000-0000-0000-0018-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000312}, !- Inlet Port {00000000-0000-0000-0018-000000000305}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000328}, !- Inlet Port {00000000-0000-0000-0018-000000000330}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000331}, !- Inlet Port {00000000-0000-0000-0018-000000000329}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000336}, !- Inlet Port {00000000-0000-0000-0018-000000000337}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000332}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000333}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000326}, !- Inlet Port {00000000-0000-0000-0018-000000000335}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000334}, !- Inlet Port {00000000-0000-0000-0018-000000000327}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000130}, !- Inlet Port {00000000-0000-0000-0018-000000000132}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000133}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000138}, !- Inlet Port {00000000-0000-0000-0018-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000134}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000135}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000128}, !- Inlet Port {00000000-0000-0000-0018-000000000137}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000136}, !- Inlet Port {00000000-0000-0000-0018-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000216}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000088}, !- Inlet Port {00000000-0000-0000-0018-000000000090}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000217}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000091}, !- Inlet Port {00000000-0000-0000-0018-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000218}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000096}, !- Inlet Port {00000000-0000-0000-0018-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000219}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000220}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000093}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000221}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000086}, !- Inlet Port {00000000-0000-0000-0018-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000222}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000094}, !- Inlet Port {00000000-0000-0000-0018-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000223}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000067}, !- Inlet Port {00000000-0000-0000-0018-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000224}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000070}, !- Inlet Port {00000000-0000-0000-0018-000000000068}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000225}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000075}, !- Inlet Port {00000000-0000-0000-0018-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000226}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000227}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000072}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000228}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000065}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000229}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000073}, !- Inlet Port {00000000-0000-0000-0018-000000000066}; !- Outlet Port @@ -14857,7 +14857,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000139}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -14872,7 +14872,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000140}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14881,7 +14881,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000141}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14890,7 +14890,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000142}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14911,7 +14911,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000143}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14920,7 +14920,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000144}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14929,7 +14929,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000145}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14950,7 +14950,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14959,7 +14959,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14968,7 +14968,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14983,7 +14983,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14992,7 +14992,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15001,7 +15001,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15016,7 +15016,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15025,7 +15025,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15034,7 +15034,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -15049,7 +15049,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15058,7 +15058,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15067,7 +15067,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15088,7 +15088,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15097,7 +15097,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15106,7 +15106,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -15121,7 +15121,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15130,7 +15130,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15139,7 +15139,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15160,7 +15160,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15169,7 +15169,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15178,7 +15178,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15193,7 +15193,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15202,7 +15202,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15211,7 +15211,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15232,7 +15232,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15241,7 +15241,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15250,7 +15250,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15271,7 +15271,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15280,7 +15280,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -17356,7 +17356,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000139}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000140}, !- Summer Design Day Schedule Name @@ -17364,7 +17364,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000142}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000143}, !- Summer Design Day Schedule Name @@ -17372,7 +17372,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000145}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000146}, !- Summer Design Day Schedule Name @@ -17380,7 +17380,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000148}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000149}, !- Summer Design Day Schedule Name @@ -17388,7 +17388,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000151}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000152}, !- Summer Design Day Schedule Name @@ -17396,7 +17396,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000154}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000155}, !- Summer Design Day Schedule Name @@ -17404,7 +17404,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000157}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000158}, !- Summer Design Day Schedule Name @@ -17412,7 +17412,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000160}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000161}, !- Summer Design Day Schedule Name @@ -17420,7 +17420,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000163}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000164}, !- Summer Design Day Schedule Name @@ -17428,7 +17428,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000166}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000167}, !- Summer Design Day Schedule Name @@ -17436,7 +17436,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000170}, !- Summer Design Day Schedule Name @@ -17444,7 +17444,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000173}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index e8e66d9b86..4e8026a970 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000038}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -8582,7 +8582,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8590,7 +8590,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8598,7 +8598,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8606,7 +8606,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8614,53 +8614,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b7d8cc0a-6702-45be-ac48-63542d34ea19}<23.9 && {b7d8cc0a-6702-45be-ac48-63542d34ea19}>1.7, !- Program Line 1 - SET {c661f581-b73e-4fba-8ee3-1dd8545f526e} = 29.4, !- Program Line 2 - SET {ca973a0d-8db6-4099-a594-aef39a3e0d5c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b7d8cc0a-6702-45be-ac48-63542d34ea19}<23.9 && {b7d8cc0a-6702-45be-ac48-63542d34ea19}>1.7, !- Program Line 4 - SET {c661f581-b73e-4fba-8ee3-1dd8545f526e} = 29.4, !- Program Line 5 - SET {ca973a0d-8db6-4099-a594-aef39a3e0d5c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b7d8cc0a-6702-45be-ac48-63542d34ea19}<23.9 && {b7d8cc0a-6702-45be-ac48-63542d34ea19}>1.7, !- Program Line 7 - SET {c661f581-b73e-4fba-8ee3-1dd8545f526e} = 29.4, !- Program Line 8 - SET {ca973a0d-8db6-4099-a594-aef39a3e0d5c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b7d8cc0a-6702-45be-ac48-63542d34ea19}<23.9 && {b7d8cc0a-6702-45be-ac48-63542d34ea19}>1.7, !- Program Line 10 - SET {c661f581-b73e-4fba-8ee3-1dd8545f526e} = 29.4, !- Program Line 11 - SET {ca973a0d-8db6-4099-a594-aef39a3e0d5c} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {930e01aa-2065-4fe4-86e3-20ad2998fb23}<23.9 && {930e01aa-2065-4fe4-86e3-20ad2998fb23}>1.7, !- Program Line 1 + SET {281bb844-5c6e-4b5c-b009-49d845ec9609} = 29.4, !- Program Line 2 + SET {138a027a-bcbd-4542-98d7-71d5c9dfc1cb} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {930e01aa-2065-4fe4-86e3-20ad2998fb23}<23.9 && {930e01aa-2065-4fe4-86e3-20ad2998fb23}>1.7, !- Program Line 4 + SET {281bb844-5c6e-4b5c-b009-49d845ec9609} = 29.4, !- Program Line 5 + SET {138a027a-bcbd-4542-98d7-71d5c9dfc1cb} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {930e01aa-2065-4fe4-86e3-20ad2998fb23}<23.9 && {930e01aa-2065-4fe4-86e3-20ad2998fb23}>1.7, !- Program Line 7 + SET {281bb844-5c6e-4b5c-b009-49d845ec9609} = 29.4, !- Program Line 8 + SET {138a027a-bcbd-4542-98d7-71d5c9dfc1cb} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {930e01aa-2065-4fe4-86e3-20ad2998fb23}<23.9 && {930e01aa-2065-4fe4-86e3-20ad2998fb23}>1.7, !- Program Line 10 + SET {281bb844-5c6e-4b5c-b009-49d845ec9609} = 29.4, !- Program Line 11 + SET {138a027a-bcbd-4542-98d7-71d5c9dfc1cb} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c661f581-b73e-4fba-8ee3-1dd8545f526e} = NULL, !- Program Line 14 - SET {ca973a0d-8db6-4099-a594-aef39a3e0d5c} = NULL, !- Program Line 15 + SET {281bb844-5c6e-4b5c-b009-49d845ec9609} = NULL, !- Program Line 14 + SET {138a027a-bcbd-4542-98d7-71d5c9dfc1cb} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {77d69f24-3fbe-479c-8dee-0928fd621d4b}<23.9 && {77d69f24-3fbe-479c-8dee-0928fd621d4b}>1.7, !- Program Line 1 - SET {1756ed71-99cf-4099-9c56-84f06f61c619} = 29.4, !- Program Line 2 - SET {b05ce704-5d44-47b6-9d3a-4cda5c417737} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {77d69f24-3fbe-479c-8dee-0928fd621d4b}<23.9 && {77d69f24-3fbe-479c-8dee-0928fd621d4b}>1.7, !- Program Line 4 - SET {1756ed71-99cf-4099-9c56-84f06f61c619} = 29.4, !- Program Line 5 - SET {b05ce704-5d44-47b6-9d3a-4cda5c417737} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {77d69f24-3fbe-479c-8dee-0928fd621d4b}<23.9 && {77d69f24-3fbe-479c-8dee-0928fd621d4b}>1.7, !- Program Line 7 - SET {1756ed71-99cf-4099-9c56-84f06f61c619} = 29.4, !- Program Line 8 - SET {b05ce704-5d44-47b6-9d3a-4cda5c417737} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {77d69f24-3fbe-479c-8dee-0928fd621d4b}<23.9 && {77d69f24-3fbe-479c-8dee-0928fd621d4b}>1.7, !- Program Line 10 - SET {1756ed71-99cf-4099-9c56-84f06f61c619} = 29.4, !- Program Line 11 - SET {b05ce704-5d44-47b6-9d3a-4cda5c417737} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6b834703-b5a3-4b3a-8e0f-d9fec07f9478}<23.9 && {6b834703-b5a3-4b3a-8e0f-d9fec07f9478}>1.7, !- Program Line 1 + SET {496bdaf5-3d91-4695-95b5-0b65e872d912} = 29.4, !- Program Line 2 + SET {7ac2a7b6-a082-46a8-93d2-f54aade7c427} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6b834703-b5a3-4b3a-8e0f-d9fec07f9478}<23.9 && {6b834703-b5a3-4b3a-8e0f-d9fec07f9478}>1.7, !- Program Line 4 + SET {496bdaf5-3d91-4695-95b5-0b65e872d912} = 29.4, !- Program Line 5 + SET {7ac2a7b6-a082-46a8-93d2-f54aade7c427} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6b834703-b5a3-4b3a-8e0f-d9fec07f9478}<23.9 && {6b834703-b5a3-4b3a-8e0f-d9fec07f9478}>1.7, !- Program Line 7 + SET {496bdaf5-3d91-4695-95b5-0b65e872d912} = 29.4, !- Program Line 8 + SET {7ac2a7b6-a082-46a8-93d2-f54aade7c427} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6b834703-b5a3-4b3a-8e0f-d9fec07f9478}<23.9 && {6b834703-b5a3-4b3a-8e0f-d9fec07f9478}>1.7, !- Program Line 10 + SET {496bdaf5-3d91-4695-95b5-0b65e872d912} = 29.4, !- Program Line 11 + SET {7ac2a7b6-a082-46a8-93d2-f54aade7c427} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1756ed71-99cf-4099-9c56-84f06f61c619} = NULL, !- Program Line 14 - SET {b05ce704-5d44-47b6-9d3a-4cda5c417737} = NULL, !- Program Line 15 + SET {496bdaf5-3d91-4695-95b5-0b65e872d912} = NULL, !- Program Line 14 + SET {7ac2a7b6-a082-46a8-93d2-f54aade7c427} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000002}; !- Program Name 1 @@ -10764,505 +10764,505 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000152}, !- Inlet Port {00000000-0000-0000-0018-000000000154}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000155}, !- Inlet Port {00000000-0000-0000-0018-000000000153}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000160}, !- Inlet Port {00000000-0000-0000-0018-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000156}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000157}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000150}, !- Inlet Port {00000000-0000-0000-0018-000000000159}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000158}, !- Inlet Port {00000000-0000-0000-0018-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000174}, !- Inlet Port {00000000-0000-0000-0018-000000000176}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000177}, !- Inlet Port {00000000-0000-0000-0018-000000000175}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000182}, !- Inlet Port {00000000-0000-0000-0018-000000000183}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000178}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000179}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000172}, !- Inlet Port {00000000-0000-0000-0018-000000000181}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000180}, !- Inlet Port {00000000-0000-0000-0018-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000196}, !- Inlet Port {00000000-0000-0000-0018-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000199}, !- Inlet Port {00000000-0000-0000-0018-000000000197}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000204}, !- Inlet Port {00000000-0000-0000-0018-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000201}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000194}, !- Inlet Port {00000000-0000-0000-0018-000000000203}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000202}, !- Inlet Port {00000000-0000-0000-0018-000000000195}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000218}, !- Inlet Port {00000000-0000-0000-0018-000000000220}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000221}, !- Inlet Port {00000000-0000-0000-0018-000000000219}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000226}, !- Inlet Port {00000000-0000-0000-0018-000000000227}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000222}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000223}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000216}, !- Inlet Port {00000000-0000-0000-0018-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000224}, !- Inlet Port {00000000-0000-0000-0018-000000000217}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000240}, !- Inlet Port {00000000-0000-0000-0018-000000000242}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000243}, !- Inlet Port {00000000-0000-0000-0018-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000248}, !- Inlet Port {00000000-0000-0000-0018-000000000249}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000245}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000238}, !- Inlet Port {00000000-0000-0000-0018-000000000247}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000246}, !- Inlet Port {00000000-0000-0000-0018-000000000239}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000262}, !- Inlet Port {00000000-0000-0000-0018-000000000264}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000265}, !- Inlet Port {00000000-0000-0000-0018-000000000263}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000270}, !- Inlet Port {00000000-0000-0000-0018-000000000271}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000266}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000267}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000260}, !- Inlet Port {00000000-0000-0000-0018-000000000269}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000268}, !- Inlet Port {00000000-0000-0000-0018-000000000261}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000284}, !- Inlet Port {00000000-0000-0000-0018-000000000286}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000287}, !- Inlet Port {00000000-0000-0000-0018-000000000285}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000292}, !- Inlet Port {00000000-0000-0000-0018-000000000293}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000288}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000289}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000282}, !- Inlet Port {00000000-0000-0000-0018-000000000291}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000290}, !- Inlet Port {00000000-0000-0000-0018-000000000283}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000306}, !- Inlet Port {00000000-0000-0000-0018-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000309}, !- Inlet Port {00000000-0000-0000-0018-000000000307}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000314}, !- Inlet Port {00000000-0000-0000-0018-000000000315}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000311}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000304}, !- Inlet Port {00000000-0000-0000-0018-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000312}, !- Inlet Port {00000000-0000-0000-0018-000000000305}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000328}, !- Inlet Port {00000000-0000-0000-0018-000000000330}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000331}, !- Inlet Port {00000000-0000-0000-0018-000000000329}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000336}, !- Inlet Port {00000000-0000-0000-0018-000000000337}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000332}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000333}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000326}, !- Inlet Port {00000000-0000-0000-0018-000000000335}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000334}, !- Inlet Port {00000000-0000-0000-0018-000000000327}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000130}, !- Inlet Port {00000000-0000-0000-0018-000000000132}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000133}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000138}, !- Inlet Port {00000000-0000-0000-0018-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000134}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000135}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000128}, !- Inlet Port {00000000-0000-0000-0018-000000000137}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000136}, !- Inlet Port {00000000-0000-0000-0018-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000216}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000088}, !- Inlet Port {00000000-0000-0000-0018-000000000090}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000217}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000091}, !- Inlet Port {00000000-0000-0000-0018-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000218}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000096}, !- Inlet Port {00000000-0000-0000-0018-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000219}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000092}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000220}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000093}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000221}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000086}, !- Inlet Port {00000000-0000-0000-0018-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000222}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000094}, !- Inlet Port {00000000-0000-0000-0018-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000223}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000067}, !- Inlet Port {00000000-0000-0000-0018-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000224}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000070}, !- Inlet Port {00000000-0000-0000-0018-000000000068}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000225}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000075}, !- Inlet Port {00000000-0000-0000-0018-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000226}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000227}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000072}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000228}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000065}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000229}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000073}, !- Inlet Port {00000000-0000-0000-0018-000000000066}; !- Outlet Port @@ -14915,7 +14915,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000139}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -14930,7 +14930,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000140}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14939,7 +14939,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000141}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14948,7 +14948,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000142}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14969,7 +14969,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000143}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14978,7 +14978,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000144}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14987,7 +14987,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000145}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15008,7 +15008,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15017,7 +15017,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15026,7 +15026,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15041,7 +15041,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15050,7 +15050,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15059,7 +15059,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15074,7 +15074,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15083,7 +15083,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15092,7 +15092,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -15107,7 +15107,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15116,7 +15116,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15125,7 +15125,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15146,7 +15146,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15155,7 +15155,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15164,7 +15164,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -15179,7 +15179,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15188,7 +15188,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15197,7 +15197,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15218,7 +15218,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15227,7 +15227,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15236,7 +15236,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15251,7 +15251,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15260,7 +15260,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15269,7 +15269,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15290,7 +15290,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15299,7 +15299,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15308,7 +15308,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15329,7 +15329,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15338,7 +15338,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -17414,7 +17414,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000139}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000140}, !- Summer Design Day Schedule Name @@ -17422,7 +17422,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000142}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000143}, !- Summer Design Day Schedule Name @@ -17430,7 +17430,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000145}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000146}, !- Summer Design Day Schedule Name @@ -17438,7 +17438,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000148}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000149}, !- Summer Design Day Schedule Name @@ -17446,7 +17446,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000151}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000152}, !- Summer Design Day Schedule Name @@ -17454,7 +17454,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000154}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000155}, !- Summer Design Day Schedule Name @@ -17462,7 +17462,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000157}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000158}, !- Summer Design Day Schedule Name @@ -17470,7 +17470,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000160}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000161}, !- Summer Design Day Schedule Name @@ -17478,7 +17478,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000163}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000164}, !- Summer Design Day Schedule Name @@ -17486,7 +17486,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000166}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000167}, !- Summer Design Day Schedule Name @@ -17494,7 +17494,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000170}, !- Summer Design Day Schedule Name @@ -17502,7 +17502,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000173}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-Electricity-CAN_AB_Calgary.osm index ae86833daa..c7c1a7d62e 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-Electricity-CAN_AB_Calgary.osm @@ -6876,41 +6876,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c8a95d65-cdf9-41fd-9b49-65624a393391}<23.9 && {c8a95d65-cdf9-41fd-9b49-65624a393391}>1.7, !- Program Line 1 - SET {6da4372c-7495-4d49-90d4-4425e05cca99} = 29.4, !- Program Line 2 - SET {299fe488-1ab8-4361-b155-a64aaa2177fc} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c8a95d65-cdf9-41fd-9b49-65624a393391}<23.9 && {c8a95d65-cdf9-41fd-9b49-65624a393391}>1.7, !- Program Line 4 - SET {6da4372c-7495-4d49-90d4-4425e05cca99} = 29.4, !- Program Line 5 - SET {299fe488-1ab8-4361-b155-a64aaa2177fc} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c8a95d65-cdf9-41fd-9b49-65624a393391}<23.9 && {c8a95d65-cdf9-41fd-9b49-65624a393391}>1.7, !- Program Line 7 - SET {6da4372c-7495-4d49-90d4-4425e05cca99} = 29.4, !- Program Line 8 - SET {299fe488-1ab8-4361-b155-a64aaa2177fc} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c8a95d65-cdf9-41fd-9b49-65624a393391}<23.9 && {c8a95d65-cdf9-41fd-9b49-65624a393391}>1.7, !- Program Line 10 - SET {6da4372c-7495-4d49-90d4-4425e05cca99} = 29.4, !- Program Line 11 - SET {299fe488-1ab8-4361-b155-a64aaa2177fc} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e5a37d14-37a0-44d1-bd1d-67b06e127274}<23.9 && {e5a37d14-37a0-44d1-bd1d-67b06e127274}>1.7, !- Program Line 1 + SET {85916edf-0e07-4b1c-b682-e636f6be65c4} = 29.4, !- Program Line 2 + SET {84094654-1a34-4390-be25-e4caed01129d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e5a37d14-37a0-44d1-bd1d-67b06e127274}<23.9 && {e5a37d14-37a0-44d1-bd1d-67b06e127274}>1.7, !- Program Line 4 + SET {85916edf-0e07-4b1c-b682-e636f6be65c4} = 29.4, !- Program Line 5 + SET {84094654-1a34-4390-be25-e4caed01129d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e5a37d14-37a0-44d1-bd1d-67b06e127274}<23.9 && {e5a37d14-37a0-44d1-bd1d-67b06e127274}>1.7, !- Program Line 7 + SET {85916edf-0e07-4b1c-b682-e636f6be65c4} = 29.4, !- Program Line 8 + SET {84094654-1a34-4390-be25-e4caed01129d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e5a37d14-37a0-44d1-bd1d-67b06e127274}<23.9 && {e5a37d14-37a0-44d1-bd1d-67b06e127274}>1.7, !- Program Line 10 + SET {85916edf-0e07-4b1c-b682-e636f6be65c4} = 29.4, !- Program Line 11 + SET {84094654-1a34-4390-be25-e4caed01129d} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6da4372c-7495-4d49-90d4-4425e05cca99} = NULL, !- Program Line 14 - SET {299fe488-1ab8-4361-b155-a64aaa2177fc} = NULL, !- Program Line 15 + SET {85916edf-0e07-4b1c-b682-e636f6be65c4} = NULL, !- Program Line 14 + SET {84094654-1a34-4390-be25-e4caed01129d} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d7ba24e5-1d39-414f-9afe-72388b891f45}<23.9 && {d7ba24e5-1d39-414f-9afe-72388b891f45}>1.7, !- Program Line 1 - SET {4b140813-7d21-4c85-bfd0-d93920a4e331} = 29.4, !- Program Line 2 - SET {0f599304-c331-4ea3-8cc1-90292f2e90a3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d7ba24e5-1d39-414f-9afe-72388b891f45}<23.9 && {d7ba24e5-1d39-414f-9afe-72388b891f45}>1.7, !- Program Line 4 - SET {4b140813-7d21-4c85-bfd0-d93920a4e331} = 29.4, !- Program Line 5 - SET {0f599304-c331-4ea3-8cc1-90292f2e90a3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d7ba24e5-1d39-414f-9afe-72388b891f45}<23.9 && {d7ba24e5-1d39-414f-9afe-72388b891f45}>1.7, !- Program Line 7 - SET {4b140813-7d21-4c85-bfd0-d93920a4e331} = 29.4, !- Program Line 8 - SET {0f599304-c331-4ea3-8cc1-90292f2e90a3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d7ba24e5-1d39-414f-9afe-72388b891f45}<23.9 && {d7ba24e5-1d39-414f-9afe-72388b891f45}>1.7, !- Program Line 10 - SET {4b140813-7d21-4c85-bfd0-d93920a4e331} = 29.4, !- Program Line 11 - SET {0f599304-c331-4ea3-8cc1-90292f2e90a3} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3941853e-47dd-4c8b-80f7-42b0a36d387e}<23.9 && {3941853e-47dd-4c8b-80f7-42b0a36d387e}>1.7, !- Program Line 1 + SET {1fb6ced1-ae98-4261-94df-72f7cb9549fe} = 29.4, !- Program Line 2 + SET {eb6e9e9e-8295-4016-bd58-c8c2dc07cfff} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3941853e-47dd-4c8b-80f7-42b0a36d387e}<23.9 && {3941853e-47dd-4c8b-80f7-42b0a36d387e}>1.7, !- Program Line 4 + SET {1fb6ced1-ae98-4261-94df-72f7cb9549fe} = 29.4, !- Program Line 5 + SET {eb6e9e9e-8295-4016-bd58-c8c2dc07cfff} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3941853e-47dd-4c8b-80f7-42b0a36d387e}<23.9 && {3941853e-47dd-4c8b-80f7-42b0a36d387e}>1.7, !- Program Line 7 + SET {1fb6ced1-ae98-4261-94df-72f7cb9549fe} = 29.4, !- Program Line 8 + SET {eb6e9e9e-8295-4016-bd58-c8c2dc07cfff} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3941853e-47dd-4c8b-80f7-42b0a36d387e}<23.9 && {3941853e-47dd-4c8b-80f7-42b0a36d387e}>1.7, !- Program Line 10 + SET {1fb6ced1-ae98-4261-94df-72f7cb9549fe} = 29.4, !- Program Line 11 + SET {eb6e9e9e-8295-4016-bd58-c8c2dc07cfff} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4b140813-7d21-4c85-bfd0-d93920a4e331} = NULL, !- Program Line 14 - SET {0f599304-c331-4ea3-8cc1-90292f2e90a3} = NULL, !- Program Line 15 + SET {1fb6ced1-ae98-4261-94df-72f7cb9549fe} = NULL, !- Program Line 14 + SET {eb6e9e9e-8295-4016-bd58-c8c2dc07cfff} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 62a4bee094..ceb061b4c2 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -7982,7 +7982,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0063-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7990,7 +7990,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0063-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7998,7 +7998,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0063-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8006,7 +8006,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0063-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8014,53 +8014,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b4f49b79-bc13-4300-bb37-c1bbaccad0d8}<23.9 && {b4f49b79-bc13-4300-bb37-c1bbaccad0d8}>1.7, !- Program Line 1 - SET {5c2b37b3-462b-4fa4-aaff-a36264b5689c} = 29.4, !- Program Line 2 - SET {8af42712-4950-4b92-8d88-0e0f1a9d6c25} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b4f49b79-bc13-4300-bb37-c1bbaccad0d8}<23.9 && {b4f49b79-bc13-4300-bb37-c1bbaccad0d8}>1.7, !- Program Line 4 - SET {5c2b37b3-462b-4fa4-aaff-a36264b5689c} = 29.4, !- Program Line 5 - SET {8af42712-4950-4b92-8d88-0e0f1a9d6c25} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b4f49b79-bc13-4300-bb37-c1bbaccad0d8}<23.9 && {b4f49b79-bc13-4300-bb37-c1bbaccad0d8}>1.7, !- Program Line 7 - SET {5c2b37b3-462b-4fa4-aaff-a36264b5689c} = 29.4, !- Program Line 8 - SET {8af42712-4950-4b92-8d88-0e0f1a9d6c25} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b4f49b79-bc13-4300-bb37-c1bbaccad0d8}<23.9 && {b4f49b79-bc13-4300-bb37-c1bbaccad0d8}>1.7, !- Program Line 10 - SET {5c2b37b3-462b-4fa4-aaff-a36264b5689c} = 29.4, !- Program Line 11 - SET {8af42712-4950-4b92-8d88-0e0f1a9d6c25} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b88620a4-5bf1-48e8-b977-a142f18dad97}<23.9 && {b88620a4-5bf1-48e8-b977-a142f18dad97}>1.7, !- Program Line 1 + SET {d94a6a6f-3491-4b35-b67f-a582253603b3} = 29.4, !- Program Line 2 + SET {f872532c-8ee6-495d-ac75-3262972da54a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b88620a4-5bf1-48e8-b977-a142f18dad97}<23.9 && {b88620a4-5bf1-48e8-b977-a142f18dad97}>1.7, !- Program Line 4 + SET {d94a6a6f-3491-4b35-b67f-a582253603b3} = 29.4, !- Program Line 5 + SET {f872532c-8ee6-495d-ac75-3262972da54a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b88620a4-5bf1-48e8-b977-a142f18dad97}<23.9 && {b88620a4-5bf1-48e8-b977-a142f18dad97}>1.7, !- Program Line 7 + SET {d94a6a6f-3491-4b35-b67f-a582253603b3} = 29.4, !- Program Line 8 + SET {f872532c-8ee6-495d-ac75-3262972da54a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b88620a4-5bf1-48e8-b977-a142f18dad97}<23.9 && {b88620a4-5bf1-48e8-b977-a142f18dad97}>1.7, !- Program Line 10 + SET {d94a6a6f-3491-4b35-b67f-a582253603b3} = 29.4, !- Program Line 11 + SET {f872532c-8ee6-495d-ac75-3262972da54a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5c2b37b3-462b-4fa4-aaff-a36264b5689c} = NULL, !- Program Line 14 - SET {8af42712-4950-4b92-8d88-0e0f1a9d6c25} = NULL, !- Program Line 15 + SET {d94a6a6f-3491-4b35-b67f-a582253603b3} = NULL, !- Program Line 14 + SET {f872532c-8ee6-495d-ac75-3262972da54a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3b54896c-7fe3-464f-b7e5-11fb2ee80bdb}<23.9 && {3b54896c-7fe3-464f-b7e5-11fb2ee80bdb}>1.7, !- Program Line 1 - SET {5530d334-76bb-4cb8-a8cd-57aa87b0e4e7} = 29.4, !- Program Line 2 - SET {4051095a-4f30-484e-b4e0-3ff94f4bb49a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3b54896c-7fe3-464f-b7e5-11fb2ee80bdb}<23.9 && {3b54896c-7fe3-464f-b7e5-11fb2ee80bdb}>1.7, !- Program Line 4 - SET {5530d334-76bb-4cb8-a8cd-57aa87b0e4e7} = 29.4, !- Program Line 5 - SET {4051095a-4f30-484e-b4e0-3ff94f4bb49a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3b54896c-7fe3-464f-b7e5-11fb2ee80bdb}<23.9 && {3b54896c-7fe3-464f-b7e5-11fb2ee80bdb}>1.7, !- Program Line 7 - SET {5530d334-76bb-4cb8-a8cd-57aa87b0e4e7} = 29.4, !- Program Line 8 - SET {4051095a-4f30-484e-b4e0-3ff94f4bb49a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3b54896c-7fe3-464f-b7e5-11fb2ee80bdb}<23.9 && {3b54896c-7fe3-464f-b7e5-11fb2ee80bdb}>1.7, !- Program Line 10 - SET {5530d334-76bb-4cb8-a8cd-57aa87b0e4e7} = 29.4, !- Program Line 11 - SET {4051095a-4f30-484e-b4e0-3ff94f4bb49a} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {20d3e08d-a43f-4be0-b40f-f839591096d5}<23.9 && {20d3e08d-a43f-4be0-b40f-f839591096d5}>1.7, !- Program Line 1 + SET {dc444262-2efd-4b6e-bed8-f0a4b395c11e} = 29.4, !- Program Line 2 + SET {5b8da7f9-527a-4092-b05b-2ff0c76e804b} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {20d3e08d-a43f-4be0-b40f-f839591096d5}<23.9 && {20d3e08d-a43f-4be0-b40f-f839591096d5}>1.7, !- Program Line 4 + SET {dc444262-2efd-4b6e-bed8-f0a4b395c11e} = 29.4, !- Program Line 5 + SET {5b8da7f9-527a-4092-b05b-2ff0c76e804b} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {20d3e08d-a43f-4be0-b40f-f839591096d5}<23.9 && {20d3e08d-a43f-4be0-b40f-f839591096d5}>1.7, !- Program Line 7 + SET {dc444262-2efd-4b6e-bed8-f0a4b395c11e} = 29.4, !- Program Line 8 + SET {5b8da7f9-527a-4092-b05b-2ff0c76e804b} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {20d3e08d-a43f-4be0-b40f-f839591096d5}<23.9 && {20d3e08d-a43f-4be0-b40f-f839591096d5}>1.7, !- Program Line 10 + SET {dc444262-2efd-4b6e-bed8-f0a4b395c11e} = 29.4, !- Program Line 11 + SET {5b8da7f9-527a-4092-b05b-2ff0c76e804b} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5530d334-76bb-4cb8-a8cd-57aa87b0e4e7} = NULL, !- Program Line 14 - SET {4051095a-4f30-484e-b4e0-3ff94f4bb49a} = NULL, !- Program Line 15 + SET {dc444262-2efd-4b6e-bed8-f0a4b395c11e} = NULL, !- Program Line 14 + SET {5b8da7f9-527a-4092-b05b-2ff0c76e804b} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 @@ -8521,7 +8521,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8547,7 +8547,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8573,7 +8573,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8599,7 +8599,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8625,7 +8625,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8651,7 +8651,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8677,7 +8677,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8703,7 +8703,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8729,7 +8729,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8755,7 +8755,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8781,7 +8781,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8807,7 +8807,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10236,649 +10236,649 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000106}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000102}, !- Inlet Port {00000000-0000-0000-0016-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000107}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000105}, !- Inlet Port {00000000-0000-0000-0016-000000000103}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000108}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000108}, !- Inlet Port {00000000-0000-0000-0016-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000109}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000348}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000110}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000353}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000111}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000112}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000106}, !- Inlet Port {00000000-0000-0000-0016-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000113}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000118}, !- Inlet Port {00000000-0000-0000-0016-000000000120}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000114}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000121}, !- Inlet Port {00000000-0000-0000-0016-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000115}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000124}, !- Inlet Port {00000000-0000-0000-0016-000000000125}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000116}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000354}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000117}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000359}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000118}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000116}, !- Inlet Port {00000000-0000-0000-0016-000000000123}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000119}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000122}, !- Inlet Port {00000000-0000-0000-0016-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000120}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000134}, !- Inlet Port {00000000-0000-0000-0016-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000121}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000137}, !- Inlet Port {00000000-0000-0000-0016-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000122}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000140}, !- Inlet Port {00000000-0000-0000-0016-000000000141}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000123}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000124}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000365}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000125}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000132}, !- Inlet Port {00000000-0000-0000-0016-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000126}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000138}, !- Inlet Port {00000000-0000-0000-0016-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000127}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000150}, !- Inlet Port {00000000-0000-0000-0016-000000000152}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000128}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000153}, !- Inlet Port {00000000-0000-0000-0016-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000129}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000156}, !- Inlet Port {00000000-0000-0000-0016-000000000157}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000130}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000131}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000371}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000132}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000148}, !- Inlet Port {00000000-0000-0000-0016-000000000155}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000133}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000154}, !- Inlet Port {00000000-0000-0000-0016-000000000149}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000134}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000166}, !- Inlet Port {00000000-0000-0000-0016-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000135}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000169}, !- Inlet Port {00000000-0000-0000-0016-000000000167}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000136}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000172}, !- Inlet Port {00000000-0000-0000-0016-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000137}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000138}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000377}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000139}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000164}, !- Inlet Port {00000000-0000-0000-0016-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000140}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000170}, !- Inlet Port {00000000-0000-0000-0016-000000000165}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000141}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000182}, !- Inlet Port {00000000-0000-0000-0016-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000142}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000185}, !- Inlet Port {00000000-0000-0000-0016-000000000183}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000143}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000188}, !- Inlet Port {00000000-0000-0000-0016-000000000189}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000144}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000145}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000383}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000146}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000180}, !- Inlet Port {00000000-0000-0000-0016-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000147}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000186}, !- Inlet Port {00000000-0000-0000-0016-000000000181}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000148}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000198}, !- Inlet Port {00000000-0000-0000-0016-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000149}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000201}, !- Inlet Port {00000000-0000-0000-0016-000000000199}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000150}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000204}, !- Inlet Port {00000000-0000-0000-0016-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000151}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000152}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000389}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000153}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000196}, !- Inlet Port {00000000-0000-0000-0016-000000000203}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000154}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000202}, !- Inlet Port {00000000-0000-0000-0016-000000000197}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000155}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000214}, !- Inlet Port {00000000-0000-0000-0016-000000000216}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000156}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000217}, !- Inlet Port {00000000-0000-0000-0016-000000000215}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000157}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000220}, !- Inlet Port {00000000-0000-0000-0016-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000158}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000159}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000395}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000160}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000212}, !- Inlet Port {00000000-0000-0000-0016-000000000219}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000161}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000218}, !- Inlet Port {00000000-0000-0000-0016-000000000213}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000162}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000230}, !- Inlet Port {00000000-0000-0000-0016-000000000232}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000163}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000233}, !- Inlet Port {00000000-0000-0000-0016-000000000231}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000164}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000236}, !- Inlet Port {00000000-0000-0000-0016-000000000237}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000165}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000396}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000166}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000401}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000167}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000228}, !- Inlet Port {00000000-0000-0000-0016-000000000235}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000168}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000234}, !- Inlet Port {00000000-0000-0000-0016-000000000229}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000169}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000086}, !- Inlet Port {00000000-0000-0000-0016-000000000088}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000170}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000089}, !- Inlet Port {00000000-0000-0000-0016-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000171}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000092}, !- Inlet Port {00000000-0000-0000-0016-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000172}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000173}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000347}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000174}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000084}, !- Inlet Port {00000000-0000-0000-0016-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000175}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000090}, !- Inlet Port {00000000-0000-0000-0016-000000000085}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000349}, !- Inlet Port {00000000-0000-0000-0016-000000000350}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000351}, !- Inlet Port {00000000-0000-0000-0016-000000000352}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000355}, !- Inlet Port {00000000-0000-0000-0016-000000000356}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000357}, !- Inlet Port {00000000-0000-0000-0016-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000361}, !- Inlet Port {00000000-0000-0000-0016-000000000362}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000363}, !- Inlet Port {00000000-0000-0000-0016-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000367}, !- Inlet Port {00000000-0000-0000-0016-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000369}, !- Inlet Port {00000000-0000-0000-0016-000000000370}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000373}, !- Inlet Port {00000000-0000-0000-0016-000000000374}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000375}, !- Inlet Port {00000000-0000-0000-0016-000000000376}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000379}, !- Inlet Port {00000000-0000-0000-0016-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000381}, !- Inlet Port {00000000-0000-0000-0016-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000385}, !- Inlet Port {00000000-0000-0000-0016-000000000386}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000387}, !- Inlet Port {00000000-0000-0000-0016-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000391}, !- Inlet Port {00000000-0000-0000-0016-000000000392}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000393}, !- Inlet Port {00000000-0000-0000-0016-000000000394}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000397}, !- Inlet Port {00000000-0000-0000-0016-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000399}, !- Inlet Port {00000000-0000-0000-0016-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000343}, !- Inlet Port {00000000-0000-0000-0016-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000345}, !- Inlet Port {00000000-0000-0000-0016-000000000346}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000196}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000058}, !- Inlet Port {00000000-0000-0000-0016-000000000060}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000197}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000061}, !- Inlet Port {00000000-0000-0000-0016-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000198}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000064}, !- Inlet Port {00000000-0000-0000-0016-000000000065}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000199}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000408}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000200}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000413}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000201}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000056}, !- Inlet Port {00000000-0000-0000-0016-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000202}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000062}, !- Inlet Port {00000000-0000-0000-0016-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000203}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000044}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000204}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000205}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000048}, !- Inlet Port {00000000-0000-0000-0016-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000206}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000402}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000207}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000407}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000208}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000040}, !- Inlet Port {00000000-0000-0000-0016-000000000047}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000209}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000046}, !- Inlet Port {00000000-0000-0000-0016-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000210}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000409}, !- Inlet Port {00000000-0000-0000-0016-000000000410}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000211}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000411}, !- Inlet Port {00000000-0000-0000-0016-000000000412}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000212}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000403}, !- Inlet Port {00000000-0000-0000-0016-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000213}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000405}, !- Inlet Port {00000000-0000-0000-0016-000000000406}; !- Outlet Port @@ -14636,7 +14636,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -14651,7 +14651,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14660,7 +14660,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14669,7 +14669,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14690,7 +14690,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14699,7 +14699,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14708,7 +14708,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14729,7 +14729,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14738,7 +14738,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14747,7 +14747,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14762,7 +14762,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14771,7 +14771,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14780,7 +14780,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14795,7 +14795,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14804,7 +14804,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14813,7 +14813,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -14828,7 +14828,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14837,7 +14837,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14846,7 +14846,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14867,7 +14867,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14876,7 +14876,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14885,7 +14885,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -14900,7 +14900,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14909,7 +14909,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14918,7 +14918,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14939,7 +14939,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14948,7 +14948,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14957,7 +14957,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14972,7 +14972,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14981,7 +14981,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14990,7 +14990,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15011,7 +15011,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15020,7 +15020,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15029,7 +15029,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15050,7 +15050,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15059,7 +15059,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -17261,7 +17261,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000147}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000148}, !- Summer Design Day Schedule Name @@ -17269,7 +17269,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000150}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000151}, !- Summer Design Day Schedule Name @@ -17277,7 +17277,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000153}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000154}, !- Summer Design Day Schedule Name @@ -17285,7 +17285,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000156}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000157}, !- Summer Design Day Schedule Name @@ -17293,7 +17293,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000159}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000160}, !- Summer Design Day Schedule Name @@ -17301,7 +17301,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000162}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000163}, !- Summer Design Day Schedule Name @@ -17309,7 +17309,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000166}, !- Summer Design Day Schedule Name @@ -17317,7 +17317,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000169}, !- Summer Design Day Schedule Name @@ -17325,7 +17325,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000172}, !- Summer Design Day Schedule Name @@ -17333,7 +17333,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000175}, !- Summer Design Day Schedule Name @@ -17341,7 +17341,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000177}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000178}, !- Summer Design Day Schedule Name @@ -17349,7 +17349,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000180}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000181}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 180ddd7e03..cb56ab8132 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -8040,7 +8040,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0063-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8048,7 +8048,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0063-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8056,7 +8056,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0063-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8064,7 +8064,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0063-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8072,53 +8072,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e186f0b1-3671-4cae-b4b3-22a331ac42ad}<23.9 && {e186f0b1-3671-4cae-b4b3-22a331ac42ad}>1.7, !- Program Line 1 - SET {71a75459-3a34-45a4-a4f8-e97c21cf5460} = 29.4, !- Program Line 2 - SET {5eabab93-20af-40ec-8186-eb894eaf6713} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e186f0b1-3671-4cae-b4b3-22a331ac42ad}<23.9 && {e186f0b1-3671-4cae-b4b3-22a331ac42ad}>1.7, !- Program Line 4 - SET {71a75459-3a34-45a4-a4f8-e97c21cf5460} = 29.4, !- Program Line 5 - SET {5eabab93-20af-40ec-8186-eb894eaf6713} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e186f0b1-3671-4cae-b4b3-22a331ac42ad}<23.9 && {e186f0b1-3671-4cae-b4b3-22a331ac42ad}>1.7, !- Program Line 7 - SET {71a75459-3a34-45a4-a4f8-e97c21cf5460} = 29.4, !- Program Line 8 - SET {5eabab93-20af-40ec-8186-eb894eaf6713} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e186f0b1-3671-4cae-b4b3-22a331ac42ad}<23.9 && {e186f0b1-3671-4cae-b4b3-22a331ac42ad}>1.7, !- Program Line 10 - SET {71a75459-3a34-45a4-a4f8-e97c21cf5460} = 29.4, !- Program Line 11 - SET {5eabab93-20af-40ec-8186-eb894eaf6713} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {36d1ab3b-4908-4cfc-9d49-12c1ac21bee7}<23.9 && {36d1ab3b-4908-4cfc-9d49-12c1ac21bee7}>1.7, !- Program Line 1 + SET {ea5819b6-5b7f-4096-a76f-ed107bbf817f} = 29.4, !- Program Line 2 + SET {94840d97-9a4f-4365-8345-48de9c2bc6d5} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {36d1ab3b-4908-4cfc-9d49-12c1ac21bee7}<23.9 && {36d1ab3b-4908-4cfc-9d49-12c1ac21bee7}>1.7, !- Program Line 4 + SET {ea5819b6-5b7f-4096-a76f-ed107bbf817f} = 29.4, !- Program Line 5 + SET {94840d97-9a4f-4365-8345-48de9c2bc6d5} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {36d1ab3b-4908-4cfc-9d49-12c1ac21bee7}<23.9 && {36d1ab3b-4908-4cfc-9d49-12c1ac21bee7}>1.7, !- Program Line 7 + SET {ea5819b6-5b7f-4096-a76f-ed107bbf817f} = 29.4, !- Program Line 8 + SET {94840d97-9a4f-4365-8345-48de9c2bc6d5} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {36d1ab3b-4908-4cfc-9d49-12c1ac21bee7}<23.9 && {36d1ab3b-4908-4cfc-9d49-12c1ac21bee7}>1.7, !- Program Line 10 + SET {ea5819b6-5b7f-4096-a76f-ed107bbf817f} = 29.4, !- Program Line 11 + SET {94840d97-9a4f-4365-8345-48de9c2bc6d5} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {71a75459-3a34-45a4-a4f8-e97c21cf5460} = NULL, !- Program Line 14 - SET {5eabab93-20af-40ec-8186-eb894eaf6713} = NULL, !- Program Line 15 + SET {ea5819b6-5b7f-4096-a76f-ed107bbf817f} = NULL, !- Program Line 14 + SET {94840d97-9a4f-4365-8345-48de9c2bc6d5} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {705cba76-859c-4a0c-bb67-8e81026117dd}<23.9 && {705cba76-859c-4a0c-bb67-8e81026117dd}>1.7, !- Program Line 1 - SET {09845411-bbf6-4179-9913-2af74bb8ec80} = 29.4, !- Program Line 2 - SET {c5197fa9-7cfb-48e4-a6d5-4103a8f02dbe} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {705cba76-859c-4a0c-bb67-8e81026117dd}<23.9 && {705cba76-859c-4a0c-bb67-8e81026117dd}>1.7, !- Program Line 4 - SET {09845411-bbf6-4179-9913-2af74bb8ec80} = 29.4, !- Program Line 5 - SET {c5197fa9-7cfb-48e4-a6d5-4103a8f02dbe} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {705cba76-859c-4a0c-bb67-8e81026117dd}<23.9 && {705cba76-859c-4a0c-bb67-8e81026117dd}>1.7, !- Program Line 7 - SET {09845411-bbf6-4179-9913-2af74bb8ec80} = 29.4, !- Program Line 8 - SET {c5197fa9-7cfb-48e4-a6d5-4103a8f02dbe} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {705cba76-859c-4a0c-bb67-8e81026117dd}<23.9 && {705cba76-859c-4a0c-bb67-8e81026117dd}>1.7, !- Program Line 10 - SET {09845411-bbf6-4179-9913-2af74bb8ec80} = 29.4, !- Program Line 11 - SET {c5197fa9-7cfb-48e4-a6d5-4103a8f02dbe} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1fdd4ac8-764f-4df9-a835-d63f3deb81e7}<23.9 && {1fdd4ac8-764f-4df9-a835-d63f3deb81e7}>1.7, !- Program Line 1 + SET {c20377dc-6671-4ccc-9675-3a45747266a8} = 29.4, !- Program Line 2 + SET {9f644fec-4534-43d3-b1b9-82330fcbdb64} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1fdd4ac8-764f-4df9-a835-d63f3deb81e7}<23.9 && {1fdd4ac8-764f-4df9-a835-d63f3deb81e7}>1.7, !- Program Line 4 + SET {c20377dc-6671-4ccc-9675-3a45747266a8} = 29.4, !- Program Line 5 + SET {9f644fec-4534-43d3-b1b9-82330fcbdb64} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1fdd4ac8-764f-4df9-a835-d63f3deb81e7}<23.9 && {1fdd4ac8-764f-4df9-a835-d63f3deb81e7}>1.7, !- Program Line 7 + SET {c20377dc-6671-4ccc-9675-3a45747266a8} = 29.4, !- Program Line 8 + SET {9f644fec-4534-43d3-b1b9-82330fcbdb64} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1fdd4ac8-764f-4df9-a835-d63f3deb81e7}<23.9 && {1fdd4ac8-764f-4df9-a835-d63f3deb81e7}>1.7, !- Program Line 10 + SET {c20377dc-6671-4ccc-9675-3a45747266a8} = 29.4, !- Program Line 11 + SET {9f644fec-4534-43d3-b1b9-82330fcbdb64} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {09845411-bbf6-4179-9913-2af74bb8ec80} = NULL, !- Program Line 14 - SET {c5197fa9-7cfb-48e4-a6d5-4103a8f02dbe} = NULL, !- Program Line 15 + SET {c20377dc-6671-4ccc-9675-3a45747266a8} = NULL, !- Program Line 14 + SET {9f644fec-4534-43d3-b1b9-82330fcbdb64} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 @@ -8579,7 +8579,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8605,7 +8605,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8631,7 +8631,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8657,7 +8657,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8683,7 +8683,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8709,7 +8709,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8735,7 +8735,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8761,7 +8761,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8787,7 +8787,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8813,7 +8813,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8839,7 +8839,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8865,7 +8865,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10294,649 +10294,649 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000106}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000102}, !- Inlet Port {00000000-0000-0000-0016-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000107}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000105}, !- Inlet Port {00000000-0000-0000-0016-000000000103}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000108}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000108}, !- Inlet Port {00000000-0000-0000-0016-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000109}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000348}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000110}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000353}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000111}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000112}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000106}, !- Inlet Port {00000000-0000-0000-0016-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000113}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000118}, !- Inlet Port {00000000-0000-0000-0016-000000000120}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000114}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000121}, !- Inlet Port {00000000-0000-0000-0016-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000115}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000124}, !- Inlet Port {00000000-0000-0000-0016-000000000125}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000116}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000354}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000117}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000359}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000118}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000116}, !- Inlet Port {00000000-0000-0000-0016-000000000123}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000119}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000122}, !- Inlet Port {00000000-0000-0000-0016-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000120}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000134}, !- Inlet Port {00000000-0000-0000-0016-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000121}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000137}, !- Inlet Port {00000000-0000-0000-0016-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000122}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000140}, !- Inlet Port {00000000-0000-0000-0016-000000000141}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000123}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000124}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000365}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000125}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000132}, !- Inlet Port {00000000-0000-0000-0016-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000126}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000138}, !- Inlet Port {00000000-0000-0000-0016-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000127}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000150}, !- Inlet Port {00000000-0000-0000-0016-000000000152}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000128}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000153}, !- Inlet Port {00000000-0000-0000-0016-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000129}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000156}, !- Inlet Port {00000000-0000-0000-0016-000000000157}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000130}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000131}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000371}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000132}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000148}, !- Inlet Port {00000000-0000-0000-0016-000000000155}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000133}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000154}, !- Inlet Port {00000000-0000-0000-0016-000000000149}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000134}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000166}, !- Inlet Port {00000000-0000-0000-0016-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000135}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000169}, !- Inlet Port {00000000-0000-0000-0016-000000000167}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000136}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000172}, !- Inlet Port {00000000-0000-0000-0016-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000137}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000138}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000377}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000139}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000164}, !- Inlet Port {00000000-0000-0000-0016-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000140}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000170}, !- Inlet Port {00000000-0000-0000-0016-000000000165}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000141}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000182}, !- Inlet Port {00000000-0000-0000-0016-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000142}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000185}, !- Inlet Port {00000000-0000-0000-0016-000000000183}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000143}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000188}, !- Inlet Port {00000000-0000-0000-0016-000000000189}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000144}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000145}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000383}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000146}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000180}, !- Inlet Port {00000000-0000-0000-0016-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000147}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000186}, !- Inlet Port {00000000-0000-0000-0016-000000000181}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000148}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000198}, !- Inlet Port {00000000-0000-0000-0016-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000149}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000201}, !- Inlet Port {00000000-0000-0000-0016-000000000199}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000150}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000204}, !- Inlet Port {00000000-0000-0000-0016-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000151}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000152}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000389}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000153}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000196}, !- Inlet Port {00000000-0000-0000-0016-000000000203}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000154}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000202}, !- Inlet Port {00000000-0000-0000-0016-000000000197}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000155}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000214}, !- Inlet Port {00000000-0000-0000-0016-000000000216}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000156}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000217}, !- Inlet Port {00000000-0000-0000-0016-000000000215}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000157}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000220}, !- Inlet Port {00000000-0000-0000-0016-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000158}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000159}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000395}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000160}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000212}, !- Inlet Port {00000000-0000-0000-0016-000000000219}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000161}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000218}, !- Inlet Port {00000000-0000-0000-0016-000000000213}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000162}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000230}, !- Inlet Port {00000000-0000-0000-0016-000000000232}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000163}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000233}, !- Inlet Port {00000000-0000-0000-0016-000000000231}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000164}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000236}, !- Inlet Port {00000000-0000-0000-0016-000000000237}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000165}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000396}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000166}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000401}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000167}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000228}, !- Inlet Port {00000000-0000-0000-0016-000000000235}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000168}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000234}, !- Inlet Port {00000000-0000-0000-0016-000000000229}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000169}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000086}, !- Inlet Port {00000000-0000-0000-0016-000000000088}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000170}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000089}, !- Inlet Port {00000000-0000-0000-0016-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000171}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000092}, !- Inlet Port {00000000-0000-0000-0016-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000172}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000173}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000347}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000174}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000084}, !- Inlet Port {00000000-0000-0000-0016-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000175}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000090}, !- Inlet Port {00000000-0000-0000-0016-000000000085}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000349}, !- Inlet Port {00000000-0000-0000-0016-000000000350}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000351}, !- Inlet Port {00000000-0000-0000-0016-000000000352}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000355}, !- Inlet Port {00000000-0000-0000-0016-000000000356}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000357}, !- Inlet Port {00000000-0000-0000-0016-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000361}, !- Inlet Port {00000000-0000-0000-0016-000000000362}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000363}, !- Inlet Port {00000000-0000-0000-0016-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000367}, !- Inlet Port {00000000-0000-0000-0016-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000369}, !- Inlet Port {00000000-0000-0000-0016-000000000370}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000373}, !- Inlet Port {00000000-0000-0000-0016-000000000374}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000375}, !- Inlet Port {00000000-0000-0000-0016-000000000376}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000379}, !- Inlet Port {00000000-0000-0000-0016-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000381}, !- Inlet Port {00000000-0000-0000-0016-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000385}, !- Inlet Port {00000000-0000-0000-0016-000000000386}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000387}, !- Inlet Port {00000000-0000-0000-0016-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000391}, !- Inlet Port {00000000-0000-0000-0016-000000000392}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000393}, !- Inlet Port {00000000-0000-0000-0016-000000000394}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000397}, !- Inlet Port {00000000-0000-0000-0016-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000399}, !- Inlet Port {00000000-0000-0000-0016-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000343}, !- Inlet Port {00000000-0000-0000-0016-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000345}, !- Inlet Port {00000000-0000-0000-0016-000000000346}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000196}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000058}, !- Inlet Port {00000000-0000-0000-0016-000000000060}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000197}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000061}, !- Inlet Port {00000000-0000-0000-0016-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000198}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000064}, !- Inlet Port {00000000-0000-0000-0016-000000000065}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000199}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000408}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000200}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000413}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000201}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000056}, !- Inlet Port {00000000-0000-0000-0016-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000202}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000062}, !- Inlet Port {00000000-0000-0000-0016-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000203}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000044}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000204}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000205}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000048}, !- Inlet Port {00000000-0000-0000-0016-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000206}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000402}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000207}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000407}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000208}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000040}, !- Inlet Port {00000000-0000-0000-0016-000000000047}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000209}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000046}, !- Inlet Port {00000000-0000-0000-0016-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000210}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000409}, !- Inlet Port {00000000-0000-0000-0016-000000000410}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000211}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000411}, !- Inlet Port {00000000-0000-0000-0016-000000000412}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000212}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000403}, !- Inlet Port {00000000-0000-0000-0016-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000213}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000405}, !- Inlet Port {00000000-0000-0000-0016-000000000406}; !- Outlet Port @@ -14694,7 +14694,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -14709,7 +14709,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14718,7 +14718,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14727,7 +14727,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14748,7 +14748,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14757,7 +14757,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14766,7 +14766,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14787,7 +14787,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14796,7 +14796,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14805,7 +14805,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14820,7 +14820,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14829,7 +14829,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14838,7 +14838,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14853,7 +14853,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14862,7 +14862,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14871,7 +14871,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -14886,7 +14886,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14895,7 +14895,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14904,7 +14904,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14925,7 +14925,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14934,7 +14934,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14943,7 +14943,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -14958,7 +14958,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14967,7 +14967,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14976,7 +14976,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14997,7 +14997,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15006,7 +15006,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15015,7 +15015,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15030,7 +15030,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15039,7 +15039,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15048,7 +15048,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15069,7 +15069,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15078,7 +15078,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15087,7 +15087,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15108,7 +15108,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15117,7 +15117,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -17319,7 +17319,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000147}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000148}, !- Summer Design Day Schedule Name @@ -17327,7 +17327,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000150}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000151}, !- Summer Design Day Schedule Name @@ -17335,7 +17335,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000153}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000154}, !- Summer Design Day Schedule Name @@ -17343,7 +17343,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000156}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000157}, !- Summer Design Day Schedule Name @@ -17351,7 +17351,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000159}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000160}, !- Summer Design Day Schedule Name @@ -17359,7 +17359,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000162}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000163}, !- Summer Design Day Schedule Name @@ -17367,7 +17367,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000166}, !- Summer Design Day Schedule Name @@ -17375,7 +17375,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000169}, !- Summer Design Day Schedule Name @@ -17383,7 +17383,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000172}, !- Summer Design Day Schedule Name @@ -17391,7 +17391,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000175}, !- Summer Design Day Schedule Name @@ -17399,7 +17399,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000177}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000178}, !- Summer Design Day Schedule Name @@ -17407,7 +17407,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000180}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000181}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGas-CAN_AB_Calgary.osm index 8c58f9a1d9..0f9350d5d9 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGas-CAN_AB_Calgary.osm @@ -7796,41 +7796,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7711540d-c30c-40f2-bec7-68ea976c14d6}<23.9 && {7711540d-c30c-40f2-bec7-68ea976c14d6}>1.7, !- Program Line 1 - SET {3cca2e3a-fb38-4461-86d6-08ac1da51378} = 29.4, !- Program Line 2 - SET {ee9a184e-3fd2-439e-9aa9-0a6e6906445c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7711540d-c30c-40f2-bec7-68ea976c14d6}<23.9 && {7711540d-c30c-40f2-bec7-68ea976c14d6}>1.7, !- Program Line 4 - SET {3cca2e3a-fb38-4461-86d6-08ac1da51378} = 29.4, !- Program Line 5 - SET {ee9a184e-3fd2-439e-9aa9-0a6e6906445c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7711540d-c30c-40f2-bec7-68ea976c14d6}<23.9 && {7711540d-c30c-40f2-bec7-68ea976c14d6}>1.7, !- Program Line 7 - SET {3cca2e3a-fb38-4461-86d6-08ac1da51378} = 29.4, !- Program Line 8 - SET {ee9a184e-3fd2-439e-9aa9-0a6e6906445c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7711540d-c30c-40f2-bec7-68ea976c14d6}<23.9 && {7711540d-c30c-40f2-bec7-68ea976c14d6}>1.7, !- Program Line 10 - SET {3cca2e3a-fb38-4461-86d6-08ac1da51378} = 29.4, !- Program Line 11 - SET {ee9a184e-3fd2-439e-9aa9-0a6e6906445c} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e4a65a98-e038-421d-8162-2b3a5f446fc2}<23.9 && {e4a65a98-e038-421d-8162-2b3a5f446fc2}>1.7, !- Program Line 1 + SET {72f6a95b-fa5f-48a5-88f5-b591f1d976fd} = 29.4, !- Program Line 2 + SET {30c1f567-966d-4509-8e2a-b477b9d7e3b8} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e4a65a98-e038-421d-8162-2b3a5f446fc2}<23.9 && {e4a65a98-e038-421d-8162-2b3a5f446fc2}>1.7, !- Program Line 4 + SET {72f6a95b-fa5f-48a5-88f5-b591f1d976fd} = 29.4, !- Program Line 5 + SET {30c1f567-966d-4509-8e2a-b477b9d7e3b8} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e4a65a98-e038-421d-8162-2b3a5f446fc2}<23.9 && {e4a65a98-e038-421d-8162-2b3a5f446fc2}>1.7, !- Program Line 7 + SET {72f6a95b-fa5f-48a5-88f5-b591f1d976fd} = 29.4, !- Program Line 8 + SET {30c1f567-966d-4509-8e2a-b477b9d7e3b8} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e4a65a98-e038-421d-8162-2b3a5f446fc2}<23.9 && {e4a65a98-e038-421d-8162-2b3a5f446fc2}>1.7, !- Program Line 10 + SET {72f6a95b-fa5f-48a5-88f5-b591f1d976fd} = 29.4, !- Program Line 11 + SET {30c1f567-966d-4509-8e2a-b477b9d7e3b8} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3cca2e3a-fb38-4461-86d6-08ac1da51378} = NULL, !- Program Line 14 - SET {ee9a184e-3fd2-439e-9aa9-0a6e6906445c} = NULL, !- Program Line 15 + SET {72f6a95b-fa5f-48a5-88f5-b591f1d976fd} = NULL, !- Program Line 14 + SET {30c1f567-966d-4509-8e2a-b477b9d7e3b8} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9bb19fce-5ab5-47b5-bdb5-b52a950152c4}<23.9 && {9bb19fce-5ab5-47b5-bdb5-b52a950152c4}>1.7, !- Program Line 1 - SET {95257d95-8c57-4db4-9f54-2aa60662bbe3} = 29.4, !- Program Line 2 - SET {2f3f2265-0688-4ede-aaf1-bf3afc8607db} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9bb19fce-5ab5-47b5-bdb5-b52a950152c4}<23.9 && {9bb19fce-5ab5-47b5-bdb5-b52a950152c4}>1.7, !- Program Line 4 - SET {95257d95-8c57-4db4-9f54-2aa60662bbe3} = 29.4, !- Program Line 5 - SET {2f3f2265-0688-4ede-aaf1-bf3afc8607db} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9bb19fce-5ab5-47b5-bdb5-b52a950152c4}<23.9 && {9bb19fce-5ab5-47b5-bdb5-b52a950152c4}>1.7, !- Program Line 7 - SET {95257d95-8c57-4db4-9f54-2aa60662bbe3} = 29.4, !- Program Line 8 - SET {2f3f2265-0688-4ede-aaf1-bf3afc8607db} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9bb19fce-5ab5-47b5-bdb5-b52a950152c4}<23.9 && {9bb19fce-5ab5-47b5-bdb5-b52a950152c4}>1.7, !- Program Line 10 - SET {95257d95-8c57-4db4-9f54-2aa60662bbe3} = 29.4, !- Program Line 11 - SET {2f3f2265-0688-4ede-aaf1-bf3afc8607db} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d2202a37-c05d-4a67-8a6b-f5e6d36951e8}<23.9 && {d2202a37-c05d-4a67-8a6b-f5e6d36951e8}>1.7, !- Program Line 1 + SET {115a76e3-4516-4654-917b-562321591e64} = 29.4, !- Program Line 2 + SET {d5cb045a-2f26-409f-812c-6c947807de81} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d2202a37-c05d-4a67-8a6b-f5e6d36951e8}<23.9 && {d2202a37-c05d-4a67-8a6b-f5e6d36951e8}>1.7, !- Program Line 4 + SET {115a76e3-4516-4654-917b-562321591e64} = 29.4, !- Program Line 5 + SET {d5cb045a-2f26-409f-812c-6c947807de81} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d2202a37-c05d-4a67-8a6b-f5e6d36951e8}<23.9 && {d2202a37-c05d-4a67-8a6b-f5e6d36951e8}>1.7, !- Program Line 7 + SET {115a76e3-4516-4654-917b-562321591e64} = 29.4, !- Program Line 8 + SET {d5cb045a-2f26-409f-812c-6c947807de81} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d2202a37-c05d-4a67-8a6b-f5e6d36951e8}<23.9 && {d2202a37-c05d-4a67-8a6b-f5e6d36951e8}>1.7, !- Program Line 10 + SET {115a76e3-4516-4654-917b-562321591e64} = 29.4, !- Program Line 11 + SET {d5cb045a-2f26-409f-812c-6c947807de81} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {95257d95-8c57-4db4-9f54-2aa60662bbe3} = NULL, !- Program Line 14 - SET {2f3f2265-0688-4ede-aaf1-bf3afc8607db} = NULL, !- Program Line 15 + SET {115a76e3-4516-4654-917b-562321591e64} = NULL, !- Program Line 14 + SET {d5cb045a-2f26-409f-812c-6c947807de81} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index e20e8451a9..b42ca5aac7 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -8844,7 +8844,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0066-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8852,7 +8852,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8860,7 +8860,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0066-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8868,7 +8868,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8876,53 +8876,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2805e2e3-1a36-4d09-ba1c-2ab491e8eac1}<23.9 && {2805e2e3-1a36-4d09-ba1c-2ab491e8eac1}>1.7, !- Program Line 1 - SET {37b1d320-4a54-4f1b-8b25-692f9b5ea0c6} = 29.4, !- Program Line 2 - SET {6cf37273-0f34-495f-94e5-8428904612d7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2805e2e3-1a36-4d09-ba1c-2ab491e8eac1}<23.9 && {2805e2e3-1a36-4d09-ba1c-2ab491e8eac1}>1.7, !- Program Line 4 - SET {37b1d320-4a54-4f1b-8b25-692f9b5ea0c6} = 29.4, !- Program Line 5 - SET {6cf37273-0f34-495f-94e5-8428904612d7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2805e2e3-1a36-4d09-ba1c-2ab491e8eac1}<23.9 && {2805e2e3-1a36-4d09-ba1c-2ab491e8eac1}>1.7, !- Program Line 7 - SET {37b1d320-4a54-4f1b-8b25-692f9b5ea0c6} = 29.4, !- Program Line 8 - SET {6cf37273-0f34-495f-94e5-8428904612d7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2805e2e3-1a36-4d09-ba1c-2ab491e8eac1}<23.9 && {2805e2e3-1a36-4d09-ba1c-2ab491e8eac1}>1.7, !- Program Line 10 - SET {37b1d320-4a54-4f1b-8b25-692f9b5ea0c6} = 29.4, !- Program Line 11 - SET {6cf37273-0f34-495f-94e5-8428904612d7} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a5ba0478-8b30-4d8e-8544-6b53c762213a}<23.9 && {a5ba0478-8b30-4d8e-8544-6b53c762213a}>1.7, !- Program Line 1 + SET {a5d1d5fb-8510-4146-8dba-ecbbac0100a4} = 29.4, !- Program Line 2 + SET {cc2bec8e-4b50-4b86-83a8-4f06519115e8} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a5ba0478-8b30-4d8e-8544-6b53c762213a}<23.9 && {a5ba0478-8b30-4d8e-8544-6b53c762213a}>1.7, !- Program Line 4 + SET {a5d1d5fb-8510-4146-8dba-ecbbac0100a4} = 29.4, !- Program Line 5 + SET {cc2bec8e-4b50-4b86-83a8-4f06519115e8} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a5ba0478-8b30-4d8e-8544-6b53c762213a}<23.9 && {a5ba0478-8b30-4d8e-8544-6b53c762213a}>1.7, !- Program Line 7 + SET {a5d1d5fb-8510-4146-8dba-ecbbac0100a4} = 29.4, !- Program Line 8 + SET {cc2bec8e-4b50-4b86-83a8-4f06519115e8} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a5ba0478-8b30-4d8e-8544-6b53c762213a}<23.9 && {a5ba0478-8b30-4d8e-8544-6b53c762213a}>1.7, !- Program Line 10 + SET {a5d1d5fb-8510-4146-8dba-ecbbac0100a4} = 29.4, !- Program Line 11 + SET {cc2bec8e-4b50-4b86-83a8-4f06519115e8} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {37b1d320-4a54-4f1b-8b25-692f9b5ea0c6} = NULL, !- Program Line 14 - SET {6cf37273-0f34-495f-94e5-8428904612d7} = NULL, !- Program Line 15 + SET {a5d1d5fb-8510-4146-8dba-ecbbac0100a4} = NULL, !- Program Line 14 + SET {cc2bec8e-4b50-4b86-83a8-4f06519115e8} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {19cff617-aa4b-4c47-b4b9-99535973beed}<23.9 && {19cff617-aa4b-4c47-b4b9-99535973beed}>1.7, !- Program Line 1 - SET {4b9a44a1-2099-4e9f-976d-03eb38cc3707} = 29.4, !- Program Line 2 - SET {99fa7976-4c8a-47dc-9ded-5445cc67b948} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {19cff617-aa4b-4c47-b4b9-99535973beed}<23.9 && {19cff617-aa4b-4c47-b4b9-99535973beed}>1.7, !- Program Line 4 - SET {4b9a44a1-2099-4e9f-976d-03eb38cc3707} = 29.4, !- Program Line 5 - SET {99fa7976-4c8a-47dc-9ded-5445cc67b948} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {19cff617-aa4b-4c47-b4b9-99535973beed}<23.9 && {19cff617-aa4b-4c47-b4b9-99535973beed}>1.7, !- Program Line 7 - SET {4b9a44a1-2099-4e9f-976d-03eb38cc3707} = 29.4, !- Program Line 8 - SET {99fa7976-4c8a-47dc-9ded-5445cc67b948} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {19cff617-aa4b-4c47-b4b9-99535973beed}<23.9 && {19cff617-aa4b-4c47-b4b9-99535973beed}>1.7, !- Program Line 10 - SET {4b9a44a1-2099-4e9f-976d-03eb38cc3707} = 29.4, !- Program Line 11 - SET {99fa7976-4c8a-47dc-9ded-5445cc67b948} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {18f19db1-7bff-4094-8d59-b6ccb0b3a875}<23.9 && {18f19db1-7bff-4094-8d59-b6ccb0b3a875}>1.7, !- Program Line 1 + SET {937f12fa-7e49-4d9f-879e-3b5a8597f846} = 29.4, !- Program Line 2 + SET {f564d099-2e04-451b-92de-283d6924ee52} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {18f19db1-7bff-4094-8d59-b6ccb0b3a875}<23.9 && {18f19db1-7bff-4094-8d59-b6ccb0b3a875}>1.7, !- Program Line 4 + SET {937f12fa-7e49-4d9f-879e-3b5a8597f846} = 29.4, !- Program Line 5 + SET {f564d099-2e04-451b-92de-283d6924ee52} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {18f19db1-7bff-4094-8d59-b6ccb0b3a875}<23.9 && {18f19db1-7bff-4094-8d59-b6ccb0b3a875}>1.7, !- Program Line 7 + SET {937f12fa-7e49-4d9f-879e-3b5a8597f846} = 29.4, !- Program Line 8 + SET {f564d099-2e04-451b-92de-283d6924ee52} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {18f19db1-7bff-4094-8d59-b6ccb0b3a875}<23.9 && {18f19db1-7bff-4094-8d59-b6ccb0b3a875}>1.7, !- Program Line 10 + SET {937f12fa-7e49-4d9f-879e-3b5a8597f846} = 29.4, !- Program Line 11 + SET {f564d099-2e04-451b-92de-283d6924ee52} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4b9a44a1-2099-4e9f-976d-03eb38cc3707} = NULL, !- Program Line 14 - SET {99fa7976-4c8a-47dc-9ded-5445cc67b948} = NULL, !- Program Line 15 + SET {937f12fa-7e49-4d9f-879e-3b5a8597f846} = NULL, !- Program Line 14 + SET {f564d099-2e04-451b-92de-283d6924ee52} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 @@ -9383,7 +9383,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9409,7 +9409,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9435,7 +9435,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9461,7 +9461,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9487,7 +9487,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9513,7 +9513,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9539,7 +9539,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9565,7 +9565,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9591,7 +9591,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9617,7 +9617,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9643,7 +9643,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9669,7 +9669,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11338,649 +11338,649 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000146}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000146}, !- Inlet Port {00000000-0000-0000-0018-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000147}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000149}, !- Inlet Port {00000000-0000-0000-0018-000000000147}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000148}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000152}, !- Inlet Port {00000000-0000-0000-0018-000000000153}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000149}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000428}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000150}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000433}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000151}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000144}, !- Inlet Port {00000000-0000-0000-0018-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000152}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000150}, !- Inlet Port {00000000-0000-0000-0018-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000153}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000166}, !- Inlet Port {00000000-0000-0000-0018-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000154}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000169}, !- Inlet Port {00000000-0000-0000-0018-000000000167}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000155}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000172}, !- Inlet Port {00000000-0000-0000-0018-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000156}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000434}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000157}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000439}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000158}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000164}, !- Inlet Port {00000000-0000-0000-0018-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000159}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000170}, !- Inlet Port {00000000-0000-0000-0018-000000000165}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000160}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000186}, !- Inlet Port {00000000-0000-0000-0018-000000000188}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000161}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000189}, !- Inlet Port {00000000-0000-0000-0018-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000162}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000192}, !- Inlet Port {00000000-0000-0000-0018-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000163}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000164}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000445}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000165}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000184}, !- Inlet Port {00000000-0000-0000-0018-000000000191}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000166}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000190}, !- Inlet Port {00000000-0000-0000-0018-000000000185}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000167}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000206}, !- Inlet Port {00000000-0000-0000-0018-000000000208}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000168}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000209}, !- Inlet Port {00000000-0000-0000-0018-000000000207}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000169}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000212}, !- Inlet Port {00000000-0000-0000-0018-000000000213}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000170}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000171}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000451}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000172}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000204}, !- Inlet Port {00000000-0000-0000-0018-000000000211}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000173}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000210}, !- Inlet Port {00000000-0000-0000-0018-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000174}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000226}, !- Inlet Port {00000000-0000-0000-0018-000000000228}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000175}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000229}, !- Inlet Port {00000000-0000-0000-0018-000000000227}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000176}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000232}, !- Inlet Port {00000000-0000-0000-0018-000000000233}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000177}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000452}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000178}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000457}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000179}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000224}, !- Inlet Port {00000000-0000-0000-0018-000000000231}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000180}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000230}, !- Inlet Port {00000000-0000-0000-0018-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000181}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000246}, !- Inlet Port {00000000-0000-0000-0018-000000000248}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000182}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000249}, !- Inlet Port {00000000-0000-0000-0018-000000000247}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000183}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000252}, !- Inlet Port {00000000-0000-0000-0018-000000000253}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000184}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000458}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000185}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000463}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000186}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000244}, !- Inlet Port {00000000-0000-0000-0018-000000000251}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000187}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000250}, !- Inlet Port {00000000-0000-0000-0018-000000000245}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000188}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000266}, !- Inlet Port {00000000-0000-0000-0018-000000000268}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000189}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000269}, !- Inlet Port {00000000-0000-0000-0018-000000000267}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000190}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000272}, !- Inlet Port {00000000-0000-0000-0018-000000000273}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000191}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000464}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000192}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000469}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000193}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000264}, !- Inlet Port {00000000-0000-0000-0018-000000000271}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000194}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000270}, !- Inlet Port {00000000-0000-0000-0018-000000000265}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000195}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000286}, !- Inlet Port {00000000-0000-0000-0018-000000000288}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000196}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000289}, !- Inlet Port {00000000-0000-0000-0018-000000000287}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000197}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000292}, !- Inlet Port {00000000-0000-0000-0018-000000000293}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000198}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000470}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000199}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000475}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000200}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000284}, !- Inlet Port {00000000-0000-0000-0018-000000000291}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000201}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000290}, !- Inlet Port {00000000-0000-0000-0018-000000000285}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000202}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000306}, !- Inlet Port {00000000-0000-0000-0018-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000203}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000309}, !- Inlet Port {00000000-0000-0000-0018-000000000307}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000204}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000312}, !- Inlet Port {00000000-0000-0000-0018-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000205}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000476}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000206}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000481}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000207}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000304}, !- Inlet Port {00000000-0000-0000-0018-000000000311}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000208}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000310}, !- Inlet Port {00000000-0000-0000-0018-000000000305}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000209}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000126}, !- Inlet Port {00000000-0000-0000-0018-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000210}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000129}, !- Inlet Port {00000000-0000-0000-0018-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000211}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000212}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000422}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000213}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000427}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000214}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000124}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000215}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000130}, !- Inlet Port {00000000-0000-0000-0018-000000000125}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000429}, !- Inlet Port {00000000-0000-0000-0018-000000000430}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000217}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000431}, !- Inlet Port {00000000-0000-0000-0018-000000000432}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000218}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000435}, !- Inlet Port {00000000-0000-0000-0018-000000000436}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000219}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000437}, !- Inlet Port {00000000-0000-0000-0018-000000000438}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000220}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000441}, !- Inlet Port {00000000-0000-0000-0018-000000000442}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000221}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000443}, !- Inlet Port {00000000-0000-0000-0018-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000222}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000447}, !- Inlet Port {00000000-0000-0000-0018-000000000448}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000223}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000449}, !- Inlet Port {00000000-0000-0000-0018-000000000450}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000224}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000453}, !- Inlet Port {00000000-0000-0000-0018-000000000454}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000225}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000455}, !- Inlet Port {00000000-0000-0000-0018-000000000456}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000226}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000459}, !- Inlet Port {00000000-0000-0000-0018-000000000460}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000227}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000461}, !- Inlet Port {00000000-0000-0000-0018-000000000462}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000228}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000465}, !- Inlet Port {00000000-0000-0000-0018-000000000466}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000229}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000467}, !- Inlet Port {00000000-0000-0000-0018-000000000468}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000230}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000471}, !- Inlet Port {00000000-0000-0000-0018-000000000472}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000231}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000473}, !- Inlet Port {00000000-0000-0000-0018-000000000474}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000232}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000477}, !- Inlet Port {00000000-0000-0000-0018-000000000478}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000233}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000479}, !- Inlet Port {00000000-0000-0000-0018-000000000480}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000234}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000423}, !- Inlet Port {00000000-0000-0000-0018-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000235}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000425}, !- Inlet Port {00000000-0000-0000-0018-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000236}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000086}, !- Inlet Port {00000000-0000-0000-0018-000000000088}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000237}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000089}, !- Inlet Port {00000000-0000-0000-0018-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000238}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000092}, !- Inlet Port {00000000-0000-0000-0018-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000239}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000488}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000240}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000493}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000241}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000084}, !- Inlet Port {00000000-0000-0000-0018-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000242}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000090}, !- Inlet Port {00000000-0000-0000-0018-000000000085}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000243}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000067}, !- Inlet Port {00000000-0000-0000-0018-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000244}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000070}, !- Inlet Port {00000000-0000-0000-0018-000000000068}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000245}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000073}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000246}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000482}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000247}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000487}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000248}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000065}, !- Inlet Port {00000000-0000-0000-0018-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000249}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000071}, !- Inlet Port {00000000-0000-0000-0018-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000250}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000489}, !- Inlet Port {00000000-0000-0000-0018-000000000490}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000251}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000491}, !- Inlet Port {00000000-0000-0000-0018-000000000492}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000252}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000483}, !- Inlet Port {00000000-0000-0000-0018-000000000484}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000253}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000485}, !- Inlet Port {00000000-0000-0000-0018-000000000486}; !- Outlet Port @@ -15819,7 +15819,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -15834,7 +15834,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15843,7 +15843,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15852,7 +15852,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15873,7 +15873,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15882,7 +15882,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15891,7 +15891,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15912,7 +15912,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15921,7 +15921,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15930,7 +15930,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15945,7 +15945,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15954,7 +15954,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15963,7 +15963,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15978,7 +15978,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15987,7 +15987,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15996,7 +15996,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -16011,7 +16011,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16020,7 +16020,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16029,7 +16029,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16050,7 +16050,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16059,7 +16059,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16068,7 +16068,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -16083,7 +16083,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16092,7 +16092,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16101,7 +16101,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16122,7 +16122,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16131,7 +16131,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16140,7 +16140,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16155,7 +16155,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16164,7 +16164,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16173,7 +16173,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16194,7 +16194,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16203,7 +16203,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16212,7 +16212,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16233,7 +16233,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16242,7 +16242,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18444,7 +18444,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000147}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000148}, !- Summer Design Day Schedule Name @@ -18452,7 +18452,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000150}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000151}, !- Summer Design Day Schedule Name @@ -18460,7 +18460,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000153}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000154}, !- Summer Design Day Schedule Name @@ -18468,7 +18468,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000156}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000157}, !- Summer Design Day Schedule Name @@ -18476,7 +18476,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000159}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000160}, !- Summer Design Day Schedule Name @@ -18484,7 +18484,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000162}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000163}, !- Summer Design Day Schedule Name @@ -18492,7 +18492,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000166}, !- Summer Design Day Schedule Name @@ -18500,7 +18500,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000169}, !- Summer Design Day Schedule Name @@ -18508,7 +18508,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000172}, !- Summer Design Day Schedule Name @@ -18516,7 +18516,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000175}, !- Summer Design Day Schedule Name @@ -18524,7 +18524,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000177}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000178}, !- Summer Design Day Schedule Name @@ -18532,7 +18532,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000180}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000181}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 796ca303d1..4063f9581b 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -8902,7 +8902,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0066-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8910,7 +8910,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8918,7 +8918,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0066-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8926,7 +8926,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8934,53 +8934,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a07791cf-bc99-45f9-b129-066ce36d8483}<23.9 && {a07791cf-bc99-45f9-b129-066ce36d8483}>1.7, !- Program Line 1 - SET {3f258b4d-6bbf-42b9-82a0-c5b9cc35ba8d} = 29.4, !- Program Line 2 - SET {00116810-4863-41a8-8ba7-1ec0ae44f2b0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a07791cf-bc99-45f9-b129-066ce36d8483}<23.9 && {a07791cf-bc99-45f9-b129-066ce36d8483}>1.7, !- Program Line 4 - SET {3f258b4d-6bbf-42b9-82a0-c5b9cc35ba8d} = 29.4, !- Program Line 5 - SET {00116810-4863-41a8-8ba7-1ec0ae44f2b0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a07791cf-bc99-45f9-b129-066ce36d8483}<23.9 && {a07791cf-bc99-45f9-b129-066ce36d8483}>1.7, !- Program Line 7 - SET {3f258b4d-6bbf-42b9-82a0-c5b9cc35ba8d} = 29.4, !- Program Line 8 - SET {00116810-4863-41a8-8ba7-1ec0ae44f2b0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a07791cf-bc99-45f9-b129-066ce36d8483}<23.9 && {a07791cf-bc99-45f9-b129-066ce36d8483}>1.7, !- Program Line 10 - SET {3f258b4d-6bbf-42b9-82a0-c5b9cc35ba8d} = 29.4, !- Program Line 11 - SET {00116810-4863-41a8-8ba7-1ec0ae44f2b0} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {69bae01f-f5bd-45f8-ae4a-e1658575d0ad}<23.9 && {69bae01f-f5bd-45f8-ae4a-e1658575d0ad}>1.7, !- Program Line 1 + SET {280b9286-116a-48e2-aae7-9b403e7f52c7} = 29.4, !- Program Line 2 + SET {f03d6f4f-f245-48d1-8e52-2af9129d752f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {69bae01f-f5bd-45f8-ae4a-e1658575d0ad}<23.9 && {69bae01f-f5bd-45f8-ae4a-e1658575d0ad}>1.7, !- Program Line 4 + SET {280b9286-116a-48e2-aae7-9b403e7f52c7} = 29.4, !- Program Line 5 + SET {f03d6f4f-f245-48d1-8e52-2af9129d752f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {69bae01f-f5bd-45f8-ae4a-e1658575d0ad}<23.9 && {69bae01f-f5bd-45f8-ae4a-e1658575d0ad}>1.7, !- Program Line 7 + SET {280b9286-116a-48e2-aae7-9b403e7f52c7} = 29.4, !- Program Line 8 + SET {f03d6f4f-f245-48d1-8e52-2af9129d752f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {69bae01f-f5bd-45f8-ae4a-e1658575d0ad}<23.9 && {69bae01f-f5bd-45f8-ae4a-e1658575d0ad}>1.7, !- Program Line 10 + SET {280b9286-116a-48e2-aae7-9b403e7f52c7} = 29.4, !- Program Line 11 + SET {f03d6f4f-f245-48d1-8e52-2af9129d752f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3f258b4d-6bbf-42b9-82a0-c5b9cc35ba8d} = NULL, !- Program Line 14 - SET {00116810-4863-41a8-8ba7-1ec0ae44f2b0} = NULL, !- Program Line 15 + SET {280b9286-116a-48e2-aae7-9b403e7f52c7} = NULL, !- Program Line 14 + SET {f03d6f4f-f245-48d1-8e52-2af9129d752f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {feb8c6d1-dda0-4c3e-8717-c98897094275}<23.9 && {feb8c6d1-dda0-4c3e-8717-c98897094275}>1.7, !- Program Line 1 - SET {528cf4bc-7dd2-4011-8916-a1cc0523fefe} = 29.4, !- Program Line 2 - SET {2a642a08-a514-4218-b9cb-b40adf7b4d16} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {feb8c6d1-dda0-4c3e-8717-c98897094275}<23.9 && {feb8c6d1-dda0-4c3e-8717-c98897094275}>1.7, !- Program Line 4 - SET {528cf4bc-7dd2-4011-8916-a1cc0523fefe} = 29.4, !- Program Line 5 - SET {2a642a08-a514-4218-b9cb-b40adf7b4d16} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {feb8c6d1-dda0-4c3e-8717-c98897094275}<23.9 && {feb8c6d1-dda0-4c3e-8717-c98897094275}>1.7, !- Program Line 7 - SET {528cf4bc-7dd2-4011-8916-a1cc0523fefe} = 29.4, !- Program Line 8 - SET {2a642a08-a514-4218-b9cb-b40adf7b4d16} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {feb8c6d1-dda0-4c3e-8717-c98897094275}<23.9 && {feb8c6d1-dda0-4c3e-8717-c98897094275}>1.7, !- Program Line 10 - SET {528cf4bc-7dd2-4011-8916-a1cc0523fefe} = 29.4, !- Program Line 11 - SET {2a642a08-a514-4218-b9cb-b40adf7b4d16} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {550eb1ee-e90f-4fd1-86d5-dfe5e3b1b1b8}<23.9 && {550eb1ee-e90f-4fd1-86d5-dfe5e3b1b1b8}>1.7, !- Program Line 1 + SET {e7b83134-e9b2-4e8c-910e-caadddbcfadc} = 29.4, !- Program Line 2 + SET {ab4b56f8-d388-477a-91be-5af02aeabb39} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {550eb1ee-e90f-4fd1-86d5-dfe5e3b1b1b8}<23.9 && {550eb1ee-e90f-4fd1-86d5-dfe5e3b1b1b8}>1.7, !- Program Line 4 + SET {e7b83134-e9b2-4e8c-910e-caadddbcfadc} = 29.4, !- Program Line 5 + SET {ab4b56f8-d388-477a-91be-5af02aeabb39} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {550eb1ee-e90f-4fd1-86d5-dfe5e3b1b1b8}<23.9 && {550eb1ee-e90f-4fd1-86d5-dfe5e3b1b1b8}>1.7, !- Program Line 7 + SET {e7b83134-e9b2-4e8c-910e-caadddbcfadc} = 29.4, !- Program Line 8 + SET {ab4b56f8-d388-477a-91be-5af02aeabb39} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {550eb1ee-e90f-4fd1-86d5-dfe5e3b1b1b8}<23.9 && {550eb1ee-e90f-4fd1-86d5-dfe5e3b1b1b8}>1.7, !- Program Line 10 + SET {e7b83134-e9b2-4e8c-910e-caadddbcfadc} = 29.4, !- Program Line 11 + SET {ab4b56f8-d388-477a-91be-5af02aeabb39} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {528cf4bc-7dd2-4011-8916-a1cc0523fefe} = NULL, !- Program Line 14 - SET {2a642a08-a514-4218-b9cb-b40adf7b4d16} = NULL, !- Program Line 15 + SET {e7b83134-e9b2-4e8c-910e-caadddbcfadc} = NULL, !- Program Line 14 + SET {ab4b56f8-d388-477a-91be-5af02aeabb39} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 @@ -9441,7 +9441,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9467,7 +9467,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9493,7 +9493,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9519,7 +9519,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9545,7 +9545,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9571,7 +9571,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9597,7 +9597,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9623,7 +9623,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9649,7 +9649,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9675,7 +9675,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9701,7 +9701,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9727,7 +9727,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11396,649 +11396,649 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000146}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000146}, !- Inlet Port {00000000-0000-0000-0018-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000147}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000149}, !- Inlet Port {00000000-0000-0000-0018-000000000147}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000148}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000152}, !- Inlet Port {00000000-0000-0000-0018-000000000153}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000149}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000428}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000150}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000433}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000151}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000144}, !- Inlet Port {00000000-0000-0000-0018-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000152}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000150}, !- Inlet Port {00000000-0000-0000-0018-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000153}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000166}, !- Inlet Port {00000000-0000-0000-0018-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000154}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000169}, !- Inlet Port {00000000-0000-0000-0018-000000000167}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000155}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000172}, !- Inlet Port {00000000-0000-0000-0018-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000156}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000434}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000157}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000439}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000158}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000164}, !- Inlet Port {00000000-0000-0000-0018-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000159}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000170}, !- Inlet Port {00000000-0000-0000-0018-000000000165}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000160}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000186}, !- Inlet Port {00000000-0000-0000-0018-000000000188}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000161}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000189}, !- Inlet Port {00000000-0000-0000-0018-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000162}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000192}, !- Inlet Port {00000000-0000-0000-0018-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000163}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000164}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000445}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000165}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000184}, !- Inlet Port {00000000-0000-0000-0018-000000000191}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000166}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000190}, !- Inlet Port {00000000-0000-0000-0018-000000000185}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000167}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000206}, !- Inlet Port {00000000-0000-0000-0018-000000000208}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000168}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000209}, !- Inlet Port {00000000-0000-0000-0018-000000000207}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000169}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000212}, !- Inlet Port {00000000-0000-0000-0018-000000000213}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000170}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000171}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000451}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000172}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000204}, !- Inlet Port {00000000-0000-0000-0018-000000000211}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000173}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000210}, !- Inlet Port {00000000-0000-0000-0018-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000174}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000226}, !- Inlet Port {00000000-0000-0000-0018-000000000228}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000175}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000229}, !- Inlet Port {00000000-0000-0000-0018-000000000227}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000176}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000232}, !- Inlet Port {00000000-0000-0000-0018-000000000233}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000177}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000452}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000178}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000457}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000179}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000224}, !- Inlet Port {00000000-0000-0000-0018-000000000231}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000180}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000230}, !- Inlet Port {00000000-0000-0000-0018-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000181}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000246}, !- Inlet Port {00000000-0000-0000-0018-000000000248}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000182}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000249}, !- Inlet Port {00000000-0000-0000-0018-000000000247}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000183}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000252}, !- Inlet Port {00000000-0000-0000-0018-000000000253}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000184}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000458}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000185}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000463}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000186}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000244}, !- Inlet Port {00000000-0000-0000-0018-000000000251}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000187}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000250}, !- Inlet Port {00000000-0000-0000-0018-000000000245}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000188}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000266}, !- Inlet Port {00000000-0000-0000-0018-000000000268}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000189}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000269}, !- Inlet Port {00000000-0000-0000-0018-000000000267}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000190}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000272}, !- Inlet Port {00000000-0000-0000-0018-000000000273}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000191}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000464}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000192}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000469}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000193}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000264}, !- Inlet Port {00000000-0000-0000-0018-000000000271}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000194}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000270}, !- Inlet Port {00000000-0000-0000-0018-000000000265}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000195}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000286}, !- Inlet Port {00000000-0000-0000-0018-000000000288}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000196}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000289}, !- Inlet Port {00000000-0000-0000-0018-000000000287}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000197}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000292}, !- Inlet Port {00000000-0000-0000-0018-000000000293}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000198}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000470}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000199}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000475}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000200}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000284}, !- Inlet Port {00000000-0000-0000-0018-000000000291}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000201}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000290}, !- Inlet Port {00000000-0000-0000-0018-000000000285}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000202}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000306}, !- Inlet Port {00000000-0000-0000-0018-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000203}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000309}, !- Inlet Port {00000000-0000-0000-0018-000000000307}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000204}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000312}, !- Inlet Port {00000000-0000-0000-0018-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000205}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000476}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000206}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000481}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000207}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000304}, !- Inlet Port {00000000-0000-0000-0018-000000000311}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000208}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000310}, !- Inlet Port {00000000-0000-0000-0018-000000000305}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000209}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000126}, !- Inlet Port {00000000-0000-0000-0018-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000210}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000129}, !- Inlet Port {00000000-0000-0000-0018-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000211}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000212}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000422}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000213}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000427}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000214}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000124}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000215}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000130}, !- Inlet Port {00000000-0000-0000-0018-000000000125}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000429}, !- Inlet Port {00000000-0000-0000-0018-000000000430}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000217}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000431}, !- Inlet Port {00000000-0000-0000-0018-000000000432}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000218}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000435}, !- Inlet Port {00000000-0000-0000-0018-000000000436}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000219}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000437}, !- Inlet Port {00000000-0000-0000-0018-000000000438}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000220}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000441}, !- Inlet Port {00000000-0000-0000-0018-000000000442}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000221}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000443}, !- Inlet Port {00000000-0000-0000-0018-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000222}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000447}, !- Inlet Port {00000000-0000-0000-0018-000000000448}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000223}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000449}, !- Inlet Port {00000000-0000-0000-0018-000000000450}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000224}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000453}, !- Inlet Port {00000000-0000-0000-0018-000000000454}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000225}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000455}, !- Inlet Port {00000000-0000-0000-0018-000000000456}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000226}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000459}, !- Inlet Port {00000000-0000-0000-0018-000000000460}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000227}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000461}, !- Inlet Port {00000000-0000-0000-0018-000000000462}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000228}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000465}, !- Inlet Port {00000000-0000-0000-0018-000000000466}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000229}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000467}, !- Inlet Port {00000000-0000-0000-0018-000000000468}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000230}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000471}, !- Inlet Port {00000000-0000-0000-0018-000000000472}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000231}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000473}, !- Inlet Port {00000000-0000-0000-0018-000000000474}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000232}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000477}, !- Inlet Port {00000000-0000-0000-0018-000000000478}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000233}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000479}, !- Inlet Port {00000000-0000-0000-0018-000000000480}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000234}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000423}, !- Inlet Port {00000000-0000-0000-0018-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000235}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000425}, !- Inlet Port {00000000-0000-0000-0018-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000236}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000086}, !- Inlet Port {00000000-0000-0000-0018-000000000088}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000237}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000089}, !- Inlet Port {00000000-0000-0000-0018-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000238}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000092}, !- Inlet Port {00000000-0000-0000-0018-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000239}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000488}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000240}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000493}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000241}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000084}, !- Inlet Port {00000000-0000-0000-0018-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000242}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000090}, !- Inlet Port {00000000-0000-0000-0018-000000000085}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000243}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000067}, !- Inlet Port {00000000-0000-0000-0018-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000244}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000070}, !- Inlet Port {00000000-0000-0000-0018-000000000068}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000245}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000073}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000246}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000482}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000247}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000487}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000248}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000065}, !- Inlet Port {00000000-0000-0000-0018-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000249}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000071}, !- Inlet Port {00000000-0000-0000-0018-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000250}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000489}, !- Inlet Port {00000000-0000-0000-0018-000000000490}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000251}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000491}, !- Inlet Port {00000000-0000-0000-0018-000000000492}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000252}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000483}, !- Inlet Port {00000000-0000-0000-0018-000000000484}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000253}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000485}, !- Inlet Port {00000000-0000-0000-0018-000000000486}; !- Outlet Port @@ -15877,7 +15877,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -15892,7 +15892,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15901,7 +15901,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15910,7 +15910,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15931,7 +15931,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15940,7 +15940,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15949,7 +15949,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15970,7 +15970,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15979,7 +15979,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15988,7 +15988,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16003,7 +16003,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16012,7 +16012,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16021,7 +16021,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16036,7 +16036,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16045,7 +16045,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16054,7 +16054,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -16069,7 +16069,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16078,7 +16078,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16087,7 +16087,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16108,7 +16108,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16117,7 +16117,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16126,7 +16126,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -16141,7 +16141,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16150,7 +16150,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16159,7 +16159,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16180,7 +16180,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16189,7 +16189,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16198,7 +16198,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16213,7 +16213,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16222,7 +16222,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16231,7 +16231,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16252,7 +16252,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16261,7 +16261,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16270,7 +16270,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16291,7 +16291,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16300,7 +16300,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18502,7 +18502,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000147}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000148}, !- Summer Design Day Schedule Name @@ -18510,7 +18510,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000150}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000151}, !- Summer Design Day Schedule Name @@ -18518,7 +18518,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000153}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000154}, !- Summer Design Day Schedule Name @@ -18526,7 +18526,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000156}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000157}, !- Summer Design Day Schedule Name @@ -18534,7 +18534,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000159}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000160}, !- Summer Design Day Schedule Name @@ -18542,7 +18542,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000162}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000163}, !- Summer Design Day Schedule Name @@ -18550,7 +18550,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000166}, !- Summer Design Day Schedule Name @@ -18558,7 +18558,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000169}, !- Summer Design Day Schedule Name @@ -18566,7 +18566,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000172}, !- Summer Design Day Schedule Name @@ -18574,7 +18574,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000175}, !- Summer Design Day Schedule Name @@ -18582,7 +18582,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000177}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000178}, !- Summer Design Day Schedule Name @@ -18590,7 +18590,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000180}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000181}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-Electricity-CAN_AB_Calgary.osm index 827f51d547..00d56d5d13 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-Electricity-CAN_AB_Calgary.osm @@ -6860,21 +6860,21 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {de73614d-db43-461c-9499-16f72d508b6d}<23.9 && {de73614d-db43-461c-9499-16f72d508b6d}>1.7, !- Program Line 1 - SET {fb483928-948e-4a43-9a39-c9aad96d7083} = 29.4, !- Program Line 2 - SET {92472125-f4d3-4c5f-b747-d85f47ea7202} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {de73614d-db43-461c-9499-16f72d508b6d}<23.9 && {de73614d-db43-461c-9499-16f72d508b6d}>1.7, !- Program Line 4 - SET {fb483928-948e-4a43-9a39-c9aad96d7083} = 29.4, !- Program Line 5 - SET {92472125-f4d3-4c5f-b747-d85f47ea7202} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {de73614d-db43-461c-9499-16f72d508b6d}<23.9 && {de73614d-db43-461c-9499-16f72d508b6d}>1.7, !- Program Line 7 - SET {fb483928-948e-4a43-9a39-c9aad96d7083} = 29.4, !- Program Line 8 - SET {92472125-f4d3-4c5f-b747-d85f47ea7202} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {de73614d-db43-461c-9499-16f72d508b6d}<23.9 && {de73614d-db43-461c-9499-16f72d508b6d}>1.7, !- Program Line 10 - SET {fb483928-948e-4a43-9a39-c9aad96d7083} = 29.4, !- Program Line 11 - SET {92472125-f4d3-4c5f-b747-d85f47ea7202} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0400d448-2b44-415b-914b-7ffdc2e26729}<23.9 && {0400d448-2b44-415b-914b-7ffdc2e26729}>1.7, !- Program Line 1 + SET {3fc862e8-6843-41c0-b0a0-5be25386c818} = 29.4, !- Program Line 2 + SET {080be2f9-a760-4283-a319-0f27f29fd9f3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0400d448-2b44-415b-914b-7ffdc2e26729}<23.9 && {0400d448-2b44-415b-914b-7ffdc2e26729}>1.7, !- Program Line 4 + SET {3fc862e8-6843-41c0-b0a0-5be25386c818} = 29.4, !- Program Line 5 + SET {080be2f9-a760-4283-a319-0f27f29fd9f3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0400d448-2b44-415b-914b-7ffdc2e26729}<23.9 && {0400d448-2b44-415b-914b-7ffdc2e26729}>1.7, !- Program Line 7 + SET {3fc862e8-6843-41c0-b0a0-5be25386c818} = 29.4, !- Program Line 8 + SET {080be2f9-a760-4283-a319-0f27f29fd9f3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0400d448-2b44-415b-914b-7ffdc2e26729}<23.9 && {0400d448-2b44-415b-914b-7ffdc2e26729}>1.7, !- Program Line 10 + SET {3fc862e8-6843-41c0-b0a0-5be25386c818} = 29.4, !- Program Line 11 + SET {080be2f9-a760-4283-a319-0f27f29fd9f3} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {fb483928-948e-4a43-9a39-c9aad96d7083} = NULL, !- Program Line 14 - SET {92472125-f4d3-4c5f-b747-d85f47ea7202} = NULL, !- Program Line 15 + SET {3fc862e8-6843-41c0-b0a0-5be25386c818} = NULL, !- Program Line 14 + SET {080be2f9-a760-4283-a319-0f27f29fd9f3} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index e9adab89da..838611fe47 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -7982,7 +7982,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0063-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7990,7 +7990,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0063-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -7998,27 +7998,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2330df04-9df1-47d1-8063-e409559aaea1}<23.9 && {2330df04-9df1-47d1-8063-e409559aaea1}>1.7, !- Program Line 1 - SET {c8bb00e7-3688-41dc-82c3-909427a9d322} = 29.4, !- Program Line 2 - SET {d899f4c7-7b38-47f0-9d22-f16c80ea7e7d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2330df04-9df1-47d1-8063-e409559aaea1}<23.9 && {2330df04-9df1-47d1-8063-e409559aaea1}>1.7, !- Program Line 4 - SET {c8bb00e7-3688-41dc-82c3-909427a9d322} = 29.4, !- Program Line 5 - SET {d899f4c7-7b38-47f0-9d22-f16c80ea7e7d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2330df04-9df1-47d1-8063-e409559aaea1}<23.9 && {2330df04-9df1-47d1-8063-e409559aaea1}>1.7, !- Program Line 7 - SET {c8bb00e7-3688-41dc-82c3-909427a9d322} = 29.4, !- Program Line 8 - SET {d899f4c7-7b38-47f0-9d22-f16c80ea7e7d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2330df04-9df1-47d1-8063-e409559aaea1}<23.9 && {2330df04-9df1-47d1-8063-e409559aaea1}>1.7, !- Program Line 10 - SET {c8bb00e7-3688-41dc-82c3-909427a9d322} = 29.4, !- Program Line 11 - SET {d899f4c7-7b38-47f0-9d22-f16c80ea7e7d} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {730ead6c-9518-4886-be4c-75db4869b3de}<23.9 && {730ead6c-9518-4886-be4c-75db4869b3de}>1.7, !- Program Line 1 + SET {1a659bdc-00c6-4e5c-b833-383066d64c7f} = 29.4, !- Program Line 2 + SET {bfed0989-66a3-4303-998d-abf907c4c5ce} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {730ead6c-9518-4886-be4c-75db4869b3de}<23.9 && {730ead6c-9518-4886-be4c-75db4869b3de}>1.7, !- Program Line 4 + SET {1a659bdc-00c6-4e5c-b833-383066d64c7f} = 29.4, !- Program Line 5 + SET {bfed0989-66a3-4303-998d-abf907c4c5ce} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {730ead6c-9518-4886-be4c-75db4869b3de}<23.9 && {730ead6c-9518-4886-be4c-75db4869b3de}>1.7, !- Program Line 7 + SET {1a659bdc-00c6-4e5c-b833-383066d64c7f} = 29.4, !- Program Line 8 + SET {bfed0989-66a3-4303-998d-abf907c4c5ce} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {730ead6c-9518-4886-be4c-75db4869b3de}<23.9 && {730ead6c-9518-4886-be4c-75db4869b3de}>1.7, !- Program Line 10 + SET {1a659bdc-00c6-4e5c-b833-383066d64c7f} = 29.4, !- Program Line 11 + SET {bfed0989-66a3-4303-998d-abf907c4c5ce} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c8bb00e7-3688-41dc-82c3-909427a9d322} = NULL, !- Program Line 14 - SET {d899f4c7-7b38-47f0-9d22-f16c80ea7e7d} = NULL, !- Program Line 15 + SET {1a659bdc-00c6-4e5c-b833-383066d64c7f} = NULL, !- Program Line 14 + SET {bfed0989-66a3-4303-998d-abf907c4c5ce} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -8473,7 +8473,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8499,7 +8499,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8525,7 +8525,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8551,7 +8551,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8577,7 +8577,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8603,7 +8603,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8629,7 +8629,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8655,7 +8655,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8681,7 +8681,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8707,7 +8707,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8733,7 +8733,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8759,7 +8759,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10188,649 +10188,649 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000106}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000102}, !- Inlet Port {00000000-0000-0000-0016-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000107}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000105}, !- Inlet Port {00000000-0000-0000-0016-000000000103}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000108}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000108}, !- Inlet Port {00000000-0000-0000-0016-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000109}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000348}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000110}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000353}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000111}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000112}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000106}, !- Inlet Port {00000000-0000-0000-0016-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000113}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000118}, !- Inlet Port {00000000-0000-0000-0016-000000000120}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000114}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000121}, !- Inlet Port {00000000-0000-0000-0016-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000115}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000124}, !- Inlet Port {00000000-0000-0000-0016-000000000125}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000116}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000354}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000117}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000359}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000118}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000116}, !- Inlet Port {00000000-0000-0000-0016-000000000123}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000119}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000122}, !- Inlet Port {00000000-0000-0000-0016-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000120}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000134}, !- Inlet Port {00000000-0000-0000-0016-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000121}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000137}, !- Inlet Port {00000000-0000-0000-0016-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000122}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000140}, !- Inlet Port {00000000-0000-0000-0016-000000000141}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000123}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000124}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000365}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000125}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000132}, !- Inlet Port {00000000-0000-0000-0016-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000126}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000138}, !- Inlet Port {00000000-0000-0000-0016-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000127}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000150}, !- Inlet Port {00000000-0000-0000-0016-000000000152}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000128}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000153}, !- Inlet Port {00000000-0000-0000-0016-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000129}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000156}, !- Inlet Port {00000000-0000-0000-0016-000000000157}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000130}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000131}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000371}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000132}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000148}, !- Inlet Port {00000000-0000-0000-0016-000000000155}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000133}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000154}, !- Inlet Port {00000000-0000-0000-0016-000000000149}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000134}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000166}, !- Inlet Port {00000000-0000-0000-0016-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000135}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000169}, !- Inlet Port {00000000-0000-0000-0016-000000000167}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000136}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000172}, !- Inlet Port {00000000-0000-0000-0016-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000137}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000138}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000377}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000139}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000164}, !- Inlet Port {00000000-0000-0000-0016-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000140}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000170}, !- Inlet Port {00000000-0000-0000-0016-000000000165}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000141}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000182}, !- Inlet Port {00000000-0000-0000-0016-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000142}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000185}, !- Inlet Port {00000000-0000-0000-0016-000000000183}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000143}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000188}, !- Inlet Port {00000000-0000-0000-0016-000000000189}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000144}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000145}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000383}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000146}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000180}, !- Inlet Port {00000000-0000-0000-0016-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000147}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000186}, !- Inlet Port {00000000-0000-0000-0016-000000000181}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000148}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000198}, !- Inlet Port {00000000-0000-0000-0016-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000149}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000201}, !- Inlet Port {00000000-0000-0000-0016-000000000199}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000150}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000204}, !- Inlet Port {00000000-0000-0000-0016-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000151}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000152}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000389}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000153}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000196}, !- Inlet Port {00000000-0000-0000-0016-000000000203}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000154}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000202}, !- Inlet Port {00000000-0000-0000-0016-000000000197}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000155}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000214}, !- Inlet Port {00000000-0000-0000-0016-000000000216}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000156}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000217}, !- Inlet Port {00000000-0000-0000-0016-000000000215}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000157}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000220}, !- Inlet Port {00000000-0000-0000-0016-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000158}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000159}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000395}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000160}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000212}, !- Inlet Port {00000000-0000-0000-0016-000000000219}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000161}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000218}, !- Inlet Port {00000000-0000-0000-0016-000000000213}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000162}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000230}, !- Inlet Port {00000000-0000-0000-0016-000000000232}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000163}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000233}, !- Inlet Port {00000000-0000-0000-0016-000000000231}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000164}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000236}, !- Inlet Port {00000000-0000-0000-0016-000000000237}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000165}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000396}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000166}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000401}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000167}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000228}, !- Inlet Port {00000000-0000-0000-0016-000000000235}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000168}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000234}, !- Inlet Port {00000000-0000-0000-0016-000000000229}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000169}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000086}, !- Inlet Port {00000000-0000-0000-0016-000000000088}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000170}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000089}, !- Inlet Port {00000000-0000-0000-0016-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000171}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000092}, !- Inlet Port {00000000-0000-0000-0016-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000172}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000173}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000347}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000174}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000084}, !- Inlet Port {00000000-0000-0000-0016-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000175}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000090}, !- Inlet Port {00000000-0000-0000-0016-000000000085}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000349}, !- Inlet Port {00000000-0000-0000-0016-000000000350}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000351}, !- Inlet Port {00000000-0000-0000-0016-000000000352}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000355}, !- Inlet Port {00000000-0000-0000-0016-000000000356}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000357}, !- Inlet Port {00000000-0000-0000-0016-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000361}, !- Inlet Port {00000000-0000-0000-0016-000000000362}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000363}, !- Inlet Port {00000000-0000-0000-0016-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000367}, !- Inlet Port {00000000-0000-0000-0016-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000369}, !- Inlet Port {00000000-0000-0000-0016-000000000370}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000373}, !- Inlet Port {00000000-0000-0000-0016-000000000374}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000375}, !- Inlet Port {00000000-0000-0000-0016-000000000376}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000379}, !- Inlet Port {00000000-0000-0000-0016-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000381}, !- Inlet Port {00000000-0000-0000-0016-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000385}, !- Inlet Port {00000000-0000-0000-0016-000000000386}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000387}, !- Inlet Port {00000000-0000-0000-0016-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000391}, !- Inlet Port {00000000-0000-0000-0016-000000000392}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000393}, !- Inlet Port {00000000-0000-0000-0016-000000000394}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000397}, !- Inlet Port {00000000-0000-0000-0016-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000399}, !- Inlet Port {00000000-0000-0000-0016-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000343}, !- Inlet Port {00000000-0000-0000-0016-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000345}, !- Inlet Port {00000000-0000-0000-0016-000000000346}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000196}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000058}, !- Inlet Port {00000000-0000-0000-0016-000000000060}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000197}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000061}, !- Inlet Port {00000000-0000-0000-0016-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000198}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000064}, !- Inlet Port {00000000-0000-0000-0016-000000000065}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000199}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000408}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000200}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000413}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000201}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000056}, !- Inlet Port {00000000-0000-0000-0016-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000202}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000062}, !- Inlet Port {00000000-0000-0000-0016-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000203}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000044}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000204}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000205}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000048}, !- Inlet Port {00000000-0000-0000-0016-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000206}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000402}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000207}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000407}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000208}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000040}, !- Inlet Port {00000000-0000-0000-0016-000000000047}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000209}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000046}, !- Inlet Port {00000000-0000-0000-0016-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000210}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000409}, !- Inlet Port {00000000-0000-0000-0016-000000000410}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000211}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000411}, !- Inlet Port {00000000-0000-0000-0016-000000000412}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000212}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000403}, !- Inlet Port {00000000-0000-0000-0016-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000213}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000405}, !- Inlet Port {00000000-0000-0000-0016-000000000406}; !- Outlet Port @@ -14510,7 +14510,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000143}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -14525,7 +14525,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000144}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14534,7 +14534,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000145}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14543,7 +14543,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14564,7 +14564,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14573,7 +14573,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14582,7 +14582,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14603,7 +14603,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14612,7 +14612,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14621,7 +14621,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14636,7 +14636,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14645,7 +14645,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14654,7 +14654,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14669,7 +14669,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14678,7 +14678,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14687,7 +14687,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -14702,7 +14702,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14711,7 +14711,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14720,7 +14720,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14741,7 +14741,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14750,7 +14750,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14759,7 +14759,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -14774,7 +14774,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14783,7 +14783,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14792,7 +14792,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14813,7 +14813,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14822,7 +14822,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14831,7 +14831,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14846,7 +14846,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14855,7 +14855,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14864,7 +14864,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14885,7 +14885,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14894,7 +14894,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000175}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14903,7 +14903,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000176}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14924,7 +14924,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14933,7 +14933,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -17072,7 +17072,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000143}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000144}, !- Summer Design Day Schedule Name @@ -17080,7 +17080,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000146}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000147}, !- Summer Design Day Schedule Name @@ -17088,7 +17088,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000149}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000150}, !- Summer Design Day Schedule Name @@ -17096,7 +17096,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000152}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000153}, !- Summer Design Day Schedule Name @@ -17104,7 +17104,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000155}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000156}, !- Summer Design Day Schedule Name @@ -17112,7 +17112,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000158}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000159}, !- Summer Design Day Schedule Name @@ -17120,7 +17120,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000161}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000162}, !- Summer Design Day Schedule Name @@ -17128,7 +17128,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000164}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000165}, !- Summer Design Day Schedule Name @@ -17136,7 +17136,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000168}, !- Summer Design Day Schedule Name @@ -17144,7 +17144,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000171}, !- Summer Design Day Schedule Name @@ -17152,7 +17152,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000049}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000174}, !- Summer Design Day Schedule Name @@ -17160,7 +17160,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000177}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 9896473354..6d2b56613f 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -8040,7 +8040,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0063-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8048,7 +8048,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0063-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8056,27 +8056,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {01e427c7-e95e-4531-a083-d5d3c290410b}<23.9 && {01e427c7-e95e-4531-a083-d5d3c290410b}>1.7, !- Program Line 1 - SET {ea91aacb-8cb5-4d44-ba22-f392b2b41214} = 29.4, !- Program Line 2 - SET {09392130-20fb-4723-a6bb-b5225805c3ed} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {01e427c7-e95e-4531-a083-d5d3c290410b}<23.9 && {01e427c7-e95e-4531-a083-d5d3c290410b}>1.7, !- Program Line 4 - SET {ea91aacb-8cb5-4d44-ba22-f392b2b41214} = 29.4, !- Program Line 5 - SET {09392130-20fb-4723-a6bb-b5225805c3ed} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {01e427c7-e95e-4531-a083-d5d3c290410b}<23.9 && {01e427c7-e95e-4531-a083-d5d3c290410b}>1.7, !- Program Line 7 - SET {ea91aacb-8cb5-4d44-ba22-f392b2b41214} = 29.4, !- Program Line 8 - SET {09392130-20fb-4723-a6bb-b5225805c3ed} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {01e427c7-e95e-4531-a083-d5d3c290410b}<23.9 && {01e427c7-e95e-4531-a083-d5d3c290410b}>1.7, !- Program Line 10 - SET {ea91aacb-8cb5-4d44-ba22-f392b2b41214} = 29.4, !- Program Line 11 - SET {09392130-20fb-4723-a6bb-b5225805c3ed} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9afb1e79-f88d-497e-94c1-e29061f6418b}<23.9 && {9afb1e79-f88d-497e-94c1-e29061f6418b}>1.7, !- Program Line 1 + SET {1aa5f281-b519-47f4-a5f7-46bc60273305} = 29.4, !- Program Line 2 + SET {4490cf80-bdeb-4063-acae-441a5ed667a7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9afb1e79-f88d-497e-94c1-e29061f6418b}<23.9 && {9afb1e79-f88d-497e-94c1-e29061f6418b}>1.7, !- Program Line 4 + SET {1aa5f281-b519-47f4-a5f7-46bc60273305} = 29.4, !- Program Line 5 + SET {4490cf80-bdeb-4063-acae-441a5ed667a7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9afb1e79-f88d-497e-94c1-e29061f6418b}<23.9 && {9afb1e79-f88d-497e-94c1-e29061f6418b}>1.7, !- Program Line 7 + SET {1aa5f281-b519-47f4-a5f7-46bc60273305} = 29.4, !- Program Line 8 + SET {4490cf80-bdeb-4063-acae-441a5ed667a7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9afb1e79-f88d-497e-94c1-e29061f6418b}<23.9 && {9afb1e79-f88d-497e-94c1-e29061f6418b}>1.7, !- Program Line 10 + SET {1aa5f281-b519-47f4-a5f7-46bc60273305} = 29.4, !- Program Line 11 + SET {4490cf80-bdeb-4063-acae-441a5ed667a7} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ea91aacb-8cb5-4d44-ba22-f392b2b41214} = NULL, !- Program Line 14 - SET {09392130-20fb-4723-a6bb-b5225805c3ed} = NULL, !- Program Line 15 + SET {1aa5f281-b519-47f4-a5f7-46bc60273305} = NULL, !- Program Line 14 + SET {4490cf80-bdeb-4063-acae-441a5ed667a7} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -8531,7 +8531,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8557,7 +8557,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8583,7 +8583,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8609,7 +8609,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8635,7 +8635,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8661,7 +8661,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8687,7 +8687,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8713,7 +8713,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8739,7 +8739,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8765,7 +8765,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8791,7 +8791,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -8817,7 +8817,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -10246,649 +10246,649 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000106}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000102}, !- Inlet Port {00000000-0000-0000-0016-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000107}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000105}, !- Inlet Port {00000000-0000-0000-0016-000000000103}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000108}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000108}, !- Inlet Port {00000000-0000-0000-0016-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000109}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000348}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000110}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000353}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000111}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000112}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000106}, !- Inlet Port {00000000-0000-0000-0016-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000113}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000118}, !- Inlet Port {00000000-0000-0000-0016-000000000120}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000114}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000121}, !- Inlet Port {00000000-0000-0000-0016-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000115}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000124}, !- Inlet Port {00000000-0000-0000-0016-000000000125}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000116}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000354}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000117}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000359}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000118}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000116}, !- Inlet Port {00000000-0000-0000-0016-000000000123}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000119}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000122}, !- Inlet Port {00000000-0000-0000-0016-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000120}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000134}, !- Inlet Port {00000000-0000-0000-0016-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000121}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000137}, !- Inlet Port {00000000-0000-0000-0016-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000122}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000140}, !- Inlet Port {00000000-0000-0000-0016-000000000141}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000123}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000124}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000365}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000125}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000132}, !- Inlet Port {00000000-0000-0000-0016-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000126}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000138}, !- Inlet Port {00000000-0000-0000-0016-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000127}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000150}, !- Inlet Port {00000000-0000-0000-0016-000000000152}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000128}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000153}, !- Inlet Port {00000000-0000-0000-0016-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000129}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000156}, !- Inlet Port {00000000-0000-0000-0016-000000000157}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000130}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000131}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000371}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000132}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000148}, !- Inlet Port {00000000-0000-0000-0016-000000000155}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000133}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000154}, !- Inlet Port {00000000-0000-0000-0016-000000000149}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000134}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000166}, !- Inlet Port {00000000-0000-0000-0016-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000135}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000169}, !- Inlet Port {00000000-0000-0000-0016-000000000167}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000136}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000172}, !- Inlet Port {00000000-0000-0000-0016-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000137}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000138}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000377}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000139}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000164}, !- Inlet Port {00000000-0000-0000-0016-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000140}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000170}, !- Inlet Port {00000000-0000-0000-0016-000000000165}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000141}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000182}, !- Inlet Port {00000000-0000-0000-0016-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000142}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000185}, !- Inlet Port {00000000-0000-0000-0016-000000000183}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000143}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000188}, !- Inlet Port {00000000-0000-0000-0016-000000000189}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000144}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000145}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000383}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000146}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000180}, !- Inlet Port {00000000-0000-0000-0016-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000147}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000186}, !- Inlet Port {00000000-0000-0000-0016-000000000181}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000148}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000198}, !- Inlet Port {00000000-0000-0000-0016-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000149}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000201}, !- Inlet Port {00000000-0000-0000-0016-000000000199}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000150}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000204}, !- Inlet Port {00000000-0000-0000-0016-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000151}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000152}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000389}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000153}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000196}, !- Inlet Port {00000000-0000-0000-0016-000000000203}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000154}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000202}, !- Inlet Port {00000000-0000-0000-0016-000000000197}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000155}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000214}, !- Inlet Port {00000000-0000-0000-0016-000000000216}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000156}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000217}, !- Inlet Port {00000000-0000-0000-0016-000000000215}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000157}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000220}, !- Inlet Port {00000000-0000-0000-0016-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000158}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000159}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000395}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000160}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000212}, !- Inlet Port {00000000-0000-0000-0016-000000000219}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000161}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000218}, !- Inlet Port {00000000-0000-0000-0016-000000000213}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000162}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000230}, !- Inlet Port {00000000-0000-0000-0016-000000000232}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000163}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000233}, !- Inlet Port {00000000-0000-0000-0016-000000000231}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000164}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000236}, !- Inlet Port {00000000-0000-0000-0016-000000000237}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000165}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000396}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000166}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000401}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000167}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000228}, !- Inlet Port {00000000-0000-0000-0016-000000000235}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000168}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000234}, !- Inlet Port {00000000-0000-0000-0016-000000000229}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000169}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000086}, !- Inlet Port {00000000-0000-0000-0016-000000000088}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000170}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000089}, !- Inlet Port {00000000-0000-0000-0016-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000171}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000092}, !- Inlet Port {00000000-0000-0000-0016-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000172}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000173}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000347}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000174}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000084}, !- Inlet Port {00000000-0000-0000-0016-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000175}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000090}, !- Inlet Port {00000000-0000-0000-0016-000000000085}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000349}, !- Inlet Port {00000000-0000-0000-0016-000000000350}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000351}, !- Inlet Port {00000000-0000-0000-0016-000000000352}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000355}, !- Inlet Port {00000000-0000-0000-0016-000000000356}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000357}, !- Inlet Port {00000000-0000-0000-0016-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000361}, !- Inlet Port {00000000-0000-0000-0016-000000000362}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000363}, !- Inlet Port {00000000-0000-0000-0016-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000367}, !- Inlet Port {00000000-0000-0000-0016-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000369}, !- Inlet Port {00000000-0000-0000-0016-000000000370}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000373}, !- Inlet Port {00000000-0000-0000-0016-000000000374}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000375}, !- Inlet Port {00000000-0000-0000-0016-000000000376}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000379}, !- Inlet Port {00000000-0000-0000-0016-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000381}, !- Inlet Port {00000000-0000-0000-0016-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000385}, !- Inlet Port {00000000-0000-0000-0016-000000000386}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000387}, !- Inlet Port {00000000-0000-0000-0016-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000391}, !- Inlet Port {00000000-0000-0000-0016-000000000392}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000393}, !- Inlet Port {00000000-0000-0000-0016-000000000394}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000397}, !- Inlet Port {00000000-0000-0000-0016-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000399}, !- Inlet Port {00000000-0000-0000-0016-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000343}, !- Inlet Port {00000000-0000-0000-0016-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000345}, !- Inlet Port {00000000-0000-0000-0016-000000000346}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000196}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000058}, !- Inlet Port {00000000-0000-0000-0016-000000000060}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000197}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000061}, !- Inlet Port {00000000-0000-0000-0016-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000198}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000064}, !- Inlet Port {00000000-0000-0000-0016-000000000065}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000199}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000408}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000200}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000413}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000201}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000056}, !- Inlet Port {00000000-0000-0000-0016-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000202}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000062}, !- Inlet Port {00000000-0000-0000-0016-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000203}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000044}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000204}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000205}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000048}, !- Inlet Port {00000000-0000-0000-0016-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000206}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000402}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000207}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000407}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000208}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000040}, !- Inlet Port {00000000-0000-0000-0016-000000000047}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000209}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000046}, !- Inlet Port {00000000-0000-0000-0016-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000210}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000409}, !- Inlet Port {00000000-0000-0000-0016-000000000410}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000211}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000411}, !- Inlet Port {00000000-0000-0000-0016-000000000412}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000212}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000403}, !- Inlet Port {00000000-0000-0000-0016-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000213}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000405}, !- Inlet Port {00000000-0000-0000-0016-000000000406}; !- Outlet Port @@ -14568,7 +14568,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000143}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -14583,7 +14583,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000144}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14592,7 +14592,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000145}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14601,7 +14601,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14622,7 +14622,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14631,7 +14631,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14640,7 +14640,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14661,7 +14661,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14670,7 +14670,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14679,7 +14679,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14694,7 +14694,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14703,7 +14703,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14712,7 +14712,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14727,7 +14727,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14736,7 +14736,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14745,7 +14745,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -14760,7 +14760,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14769,7 +14769,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14778,7 +14778,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14799,7 +14799,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14808,7 +14808,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14817,7 +14817,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -14832,7 +14832,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14841,7 +14841,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14850,7 +14850,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14871,7 +14871,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14880,7 +14880,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14889,7 +14889,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14904,7 +14904,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14913,7 +14913,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14922,7 +14922,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14943,7 +14943,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14952,7 +14952,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000175}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14961,7 +14961,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000176}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -14982,7 +14982,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -14991,7 +14991,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -17130,7 +17130,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000143}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000144}, !- Summer Design Day Schedule Name @@ -17138,7 +17138,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000146}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000147}, !- Summer Design Day Schedule Name @@ -17146,7 +17146,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000149}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000150}, !- Summer Design Day Schedule Name @@ -17154,7 +17154,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000152}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000153}, !- Summer Design Day Schedule Name @@ -17162,7 +17162,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000155}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000156}, !- Summer Design Day Schedule Name @@ -17170,7 +17170,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000158}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000159}, !- Summer Design Day Schedule Name @@ -17178,7 +17178,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000161}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000162}, !- Summer Design Day Schedule Name @@ -17186,7 +17186,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000164}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000165}, !- Summer Design Day Schedule Name @@ -17194,7 +17194,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000168}, !- Summer Design Day Schedule Name @@ -17202,7 +17202,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000171}, !- Summer Design Day Schedule Name @@ -17210,7 +17210,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000049}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000174}, !- Summer Design Day Schedule Name @@ -17218,7 +17218,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000177}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGas-CAN_AB_Calgary.osm index 90a89c168f..ea857810c8 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGas-CAN_AB_Calgary.osm @@ -7780,21 +7780,21 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {815e4488-54e9-4f0f-8916-80f412abdc37}<23.9 && {815e4488-54e9-4f0f-8916-80f412abdc37}>1.7, !- Program Line 1 - SET {ce6ce76e-962b-4f0c-943b-7ec3c94d825c} = 29.4, !- Program Line 2 - SET {833875b2-4691-489a-a3c2-9600d02e33cb} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {815e4488-54e9-4f0f-8916-80f412abdc37}<23.9 && {815e4488-54e9-4f0f-8916-80f412abdc37}>1.7, !- Program Line 4 - SET {ce6ce76e-962b-4f0c-943b-7ec3c94d825c} = 29.4, !- Program Line 5 - SET {833875b2-4691-489a-a3c2-9600d02e33cb} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {815e4488-54e9-4f0f-8916-80f412abdc37}<23.9 && {815e4488-54e9-4f0f-8916-80f412abdc37}>1.7, !- Program Line 7 - SET {ce6ce76e-962b-4f0c-943b-7ec3c94d825c} = 29.4, !- Program Line 8 - SET {833875b2-4691-489a-a3c2-9600d02e33cb} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {815e4488-54e9-4f0f-8916-80f412abdc37}<23.9 && {815e4488-54e9-4f0f-8916-80f412abdc37}>1.7, !- Program Line 10 - SET {ce6ce76e-962b-4f0c-943b-7ec3c94d825c} = 29.4, !- Program Line 11 - SET {833875b2-4691-489a-a3c2-9600d02e33cb} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e66be21d-cdee-410f-9db1-0cf0b43f9a80}<23.9 && {e66be21d-cdee-410f-9db1-0cf0b43f9a80}>1.7, !- Program Line 1 + SET {fdd609f5-b655-458d-a376-5a802bf716d2} = 29.4, !- Program Line 2 + SET {0ac2bd96-872f-448a-b85a-01b6c1a3bbb3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e66be21d-cdee-410f-9db1-0cf0b43f9a80}<23.9 && {e66be21d-cdee-410f-9db1-0cf0b43f9a80}>1.7, !- Program Line 4 + SET {fdd609f5-b655-458d-a376-5a802bf716d2} = 29.4, !- Program Line 5 + SET {0ac2bd96-872f-448a-b85a-01b6c1a3bbb3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e66be21d-cdee-410f-9db1-0cf0b43f9a80}<23.9 && {e66be21d-cdee-410f-9db1-0cf0b43f9a80}>1.7, !- Program Line 7 + SET {fdd609f5-b655-458d-a376-5a802bf716d2} = 29.4, !- Program Line 8 + SET {0ac2bd96-872f-448a-b85a-01b6c1a3bbb3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e66be21d-cdee-410f-9db1-0cf0b43f9a80}<23.9 && {e66be21d-cdee-410f-9db1-0cf0b43f9a80}>1.7, !- Program Line 10 + SET {fdd609f5-b655-458d-a376-5a802bf716d2} = 29.4, !- Program Line 11 + SET {0ac2bd96-872f-448a-b85a-01b6c1a3bbb3} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ce6ce76e-962b-4f0c-943b-7ec3c94d825c} = NULL, !- Program Line 14 - SET {833875b2-4691-489a-a3c2-9600d02e33cb} = NULL, !- Program Line 15 + SET {fdd609f5-b655-458d-a376-5a802bf716d2} = NULL, !- Program Line 14 + SET {0ac2bd96-872f-448a-b85a-01b6c1a3bbb3} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 5573edd5d2..05ad49452e 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -8844,7 +8844,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8852,7 +8852,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0066-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8860,27 +8860,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c50092c2-a83f-401b-905b-c90a82b46207}<23.9 && {c50092c2-a83f-401b-905b-c90a82b46207}>1.7, !- Program Line 1 - SET {c72bea83-7815-46cb-a5ae-a6f574953231} = 29.4, !- Program Line 2 - SET {0d507927-ede9-4979-8943-0dabce4236a7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c50092c2-a83f-401b-905b-c90a82b46207}<23.9 && {c50092c2-a83f-401b-905b-c90a82b46207}>1.7, !- Program Line 4 - SET {c72bea83-7815-46cb-a5ae-a6f574953231} = 29.4, !- Program Line 5 - SET {0d507927-ede9-4979-8943-0dabce4236a7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c50092c2-a83f-401b-905b-c90a82b46207}<23.9 && {c50092c2-a83f-401b-905b-c90a82b46207}>1.7, !- Program Line 7 - SET {c72bea83-7815-46cb-a5ae-a6f574953231} = 29.4, !- Program Line 8 - SET {0d507927-ede9-4979-8943-0dabce4236a7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c50092c2-a83f-401b-905b-c90a82b46207}<23.9 && {c50092c2-a83f-401b-905b-c90a82b46207}>1.7, !- Program Line 10 - SET {c72bea83-7815-46cb-a5ae-a6f574953231} = 29.4, !- Program Line 11 - SET {0d507927-ede9-4979-8943-0dabce4236a7} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {dc0f8cd7-292d-4a09-a2f7-a77394841ff0}<23.9 && {dc0f8cd7-292d-4a09-a2f7-a77394841ff0}>1.7, !- Program Line 1 + SET {5cb992b1-775a-4a32-b6c8-d53ff1e5b9f6} = 29.4, !- Program Line 2 + SET {11273b6d-0a1f-4387-b098-0fed1a494847} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {dc0f8cd7-292d-4a09-a2f7-a77394841ff0}<23.9 && {dc0f8cd7-292d-4a09-a2f7-a77394841ff0}>1.7, !- Program Line 4 + SET {5cb992b1-775a-4a32-b6c8-d53ff1e5b9f6} = 29.4, !- Program Line 5 + SET {11273b6d-0a1f-4387-b098-0fed1a494847} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {dc0f8cd7-292d-4a09-a2f7-a77394841ff0}<23.9 && {dc0f8cd7-292d-4a09-a2f7-a77394841ff0}>1.7, !- Program Line 7 + SET {5cb992b1-775a-4a32-b6c8-d53ff1e5b9f6} = 29.4, !- Program Line 8 + SET {11273b6d-0a1f-4387-b098-0fed1a494847} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {dc0f8cd7-292d-4a09-a2f7-a77394841ff0}<23.9 && {dc0f8cd7-292d-4a09-a2f7-a77394841ff0}>1.7, !- Program Line 10 + SET {5cb992b1-775a-4a32-b6c8-d53ff1e5b9f6} = 29.4, !- Program Line 11 + SET {11273b6d-0a1f-4387-b098-0fed1a494847} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c72bea83-7815-46cb-a5ae-a6f574953231} = NULL, !- Program Line 14 - SET {0d507927-ede9-4979-8943-0dabce4236a7} = NULL, !- Program Line 15 + SET {5cb992b1-775a-4a32-b6c8-d53ff1e5b9f6} = NULL, !- Program Line 14 + SET {11273b6d-0a1f-4387-b098-0fed1a494847} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -9335,7 +9335,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9361,7 +9361,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9387,7 +9387,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9413,7 +9413,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9439,7 +9439,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9465,7 +9465,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9491,7 +9491,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9517,7 +9517,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9543,7 +9543,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9569,7 +9569,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9595,7 +9595,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9621,7 +9621,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11290,649 +11290,649 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000146}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000146}, !- Inlet Port {00000000-0000-0000-0018-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000147}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000149}, !- Inlet Port {00000000-0000-0000-0018-000000000147}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000148}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000152}, !- Inlet Port {00000000-0000-0000-0018-000000000153}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000149}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000428}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000150}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000433}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000151}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000144}, !- Inlet Port {00000000-0000-0000-0018-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000152}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000150}, !- Inlet Port {00000000-0000-0000-0018-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000153}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000166}, !- Inlet Port {00000000-0000-0000-0018-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000154}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000169}, !- Inlet Port {00000000-0000-0000-0018-000000000167}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000155}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000172}, !- Inlet Port {00000000-0000-0000-0018-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000156}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000434}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000157}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000439}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000158}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000164}, !- Inlet Port {00000000-0000-0000-0018-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000159}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000170}, !- Inlet Port {00000000-0000-0000-0018-000000000165}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000160}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000186}, !- Inlet Port {00000000-0000-0000-0018-000000000188}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000161}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000189}, !- Inlet Port {00000000-0000-0000-0018-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000162}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000192}, !- Inlet Port {00000000-0000-0000-0018-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000163}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000164}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000445}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000165}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000184}, !- Inlet Port {00000000-0000-0000-0018-000000000191}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000166}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000190}, !- Inlet Port {00000000-0000-0000-0018-000000000185}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000167}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000206}, !- Inlet Port {00000000-0000-0000-0018-000000000208}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000168}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000209}, !- Inlet Port {00000000-0000-0000-0018-000000000207}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000169}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000212}, !- Inlet Port {00000000-0000-0000-0018-000000000213}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000170}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000171}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000451}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000172}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000204}, !- Inlet Port {00000000-0000-0000-0018-000000000211}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000173}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000210}, !- Inlet Port {00000000-0000-0000-0018-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000174}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000226}, !- Inlet Port {00000000-0000-0000-0018-000000000228}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000175}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000229}, !- Inlet Port {00000000-0000-0000-0018-000000000227}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000176}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000232}, !- Inlet Port {00000000-0000-0000-0018-000000000233}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000177}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000452}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000178}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000457}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000179}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000224}, !- Inlet Port {00000000-0000-0000-0018-000000000231}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000180}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000230}, !- Inlet Port {00000000-0000-0000-0018-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000181}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000246}, !- Inlet Port {00000000-0000-0000-0018-000000000248}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000182}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000249}, !- Inlet Port {00000000-0000-0000-0018-000000000247}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000183}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000252}, !- Inlet Port {00000000-0000-0000-0018-000000000253}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000184}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000458}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000185}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000463}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000186}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000244}, !- Inlet Port {00000000-0000-0000-0018-000000000251}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000187}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000250}, !- Inlet Port {00000000-0000-0000-0018-000000000245}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000188}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000266}, !- Inlet Port {00000000-0000-0000-0018-000000000268}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000189}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000269}, !- Inlet Port {00000000-0000-0000-0018-000000000267}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000190}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000272}, !- Inlet Port {00000000-0000-0000-0018-000000000273}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000191}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000464}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000192}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000469}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000193}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000264}, !- Inlet Port {00000000-0000-0000-0018-000000000271}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000194}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000270}, !- Inlet Port {00000000-0000-0000-0018-000000000265}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000195}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000286}, !- Inlet Port {00000000-0000-0000-0018-000000000288}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000196}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000289}, !- Inlet Port {00000000-0000-0000-0018-000000000287}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000197}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000292}, !- Inlet Port {00000000-0000-0000-0018-000000000293}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000198}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000470}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000199}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000475}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000200}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000284}, !- Inlet Port {00000000-0000-0000-0018-000000000291}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000201}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000290}, !- Inlet Port {00000000-0000-0000-0018-000000000285}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000202}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000306}, !- Inlet Port {00000000-0000-0000-0018-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000203}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000309}, !- Inlet Port {00000000-0000-0000-0018-000000000307}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000204}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000312}, !- Inlet Port {00000000-0000-0000-0018-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000205}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000476}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000206}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000481}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000207}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000304}, !- Inlet Port {00000000-0000-0000-0018-000000000311}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000208}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000310}, !- Inlet Port {00000000-0000-0000-0018-000000000305}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000209}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000126}, !- Inlet Port {00000000-0000-0000-0018-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000210}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000129}, !- Inlet Port {00000000-0000-0000-0018-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000211}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000212}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000422}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000213}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000427}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000214}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000124}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000215}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000130}, !- Inlet Port {00000000-0000-0000-0018-000000000125}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000429}, !- Inlet Port {00000000-0000-0000-0018-000000000430}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000217}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000431}, !- Inlet Port {00000000-0000-0000-0018-000000000432}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000218}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000435}, !- Inlet Port {00000000-0000-0000-0018-000000000436}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000219}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000437}, !- Inlet Port {00000000-0000-0000-0018-000000000438}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000220}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000441}, !- Inlet Port {00000000-0000-0000-0018-000000000442}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000221}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000443}, !- Inlet Port {00000000-0000-0000-0018-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000222}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000447}, !- Inlet Port {00000000-0000-0000-0018-000000000448}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000223}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000449}, !- Inlet Port {00000000-0000-0000-0018-000000000450}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000224}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000453}, !- Inlet Port {00000000-0000-0000-0018-000000000454}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000225}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000455}, !- Inlet Port {00000000-0000-0000-0018-000000000456}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000226}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000459}, !- Inlet Port {00000000-0000-0000-0018-000000000460}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000227}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000461}, !- Inlet Port {00000000-0000-0000-0018-000000000462}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000228}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000465}, !- Inlet Port {00000000-0000-0000-0018-000000000466}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000229}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000467}, !- Inlet Port {00000000-0000-0000-0018-000000000468}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000230}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000471}, !- Inlet Port {00000000-0000-0000-0018-000000000472}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000231}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000473}, !- Inlet Port {00000000-0000-0000-0018-000000000474}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000232}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000477}, !- Inlet Port {00000000-0000-0000-0018-000000000478}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000233}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000479}, !- Inlet Port {00000000-0000-0000-0018-000000000480}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000234}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000423}, !- Inlet Port {00000000-0000-0000-0018-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000235}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000425}, !- Inlet Port {00000000-0000-0000-0018-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000236}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000086}, !- Inlet Port {00000000-0000-0000-0018-000000000088}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000237}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000089}, !- Inlet Port {00000000-0000-0000-0018-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000238}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000092}, !- Inlet Port {00000000-0000-0000-0018-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000239}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000488}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000240}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000493}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000241}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000084}, !- Inlet Port {00000000-0000-0000-0018-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000242}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000090}, !- Inlet Port {00000000-0000-0000-0018-000000000085}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000243}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000067}, !- Inlet Port {00000000-0000-0000-0018-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000244}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000070}, !- Inlet Port {00000000-0000-0000-0018-000000000068}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000245}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000073}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000246}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000482}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000247}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000487}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000248}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000065}, !- Inlet Port {00000000-0000-0000-0018-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000249}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000071}, !- Inlet Port {00000000-0000-0000-0018-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000250}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000489}, !- Inlet Port {00000000-0000-0000-0018-000000000490}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000251}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000491}, !- Inlet Port {00000000-0000-0000-0018-000000000492}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000252}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000483}, !- Inlet Port {00000000-0000-0000-0018-000000000484}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000253}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000485}, !- Inlet Port {00000000-0000-0000-0018-000000000486}; !- Outlet Port @@ -15693,7 +15693,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000143}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -15708,7 +15708,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000144}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15717,7 +15717,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000145}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15726,7 +15726,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15747,7 +15747,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15756,7 +15756,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15765,7 +15765,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15786,7 +15786,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15795,7 +15795,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15804,7 +15804,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15819,7 +15819,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15828,7 +15828,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15837,7 +15837,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15852,7 +15852,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15861,7 +15861,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15870,7 +15870,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -15885,7 +15885,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15894,7 +15894,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15903,7 +15903,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15924,7 +15924,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15933,7 +15933,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15942,7 +15942,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -15957,7 +15957,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15966,7 +15966,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15975,7 +15975,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15996,7 +15996,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16005,7 +16005,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16014,7 +16014,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16029,7 +16029,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16038,7 +16038,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16047,7 +16047,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16068,7 +16068,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16077,7 +16077,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000175}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16086,7 +16086,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000176}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16107,7 +16107,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16116,7 +16116,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18255,7 +18255,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000143}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000144}, !- Summer Design Day Schedule Name @@ -18263,7 +18263,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000146}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000147}, !- Summer Design Day Schedule Name @@ -18271,7 +18271,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000149}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000150}, !- Summer Design Day Schedule Name @@ -18279,7 +18279,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000152}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000153}, !- Summer Design Day Schedule Name @@ -18287,7 +18287,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000155}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000156}, !- Summer Design Day Schedule Name @@ -18295,7 +18295,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000158}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000159}, !- Summer Design Day Schedule Name @@ -18303,7 +18303,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000161}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000162}, !- Summer Design Day Schedule Name @@ -18311,7 +18311,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000164}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000165}, !- Summer Design Day Schedule Name @@ -18319,7 +18319,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000168}, !- Summer Design Day Schedule Name @@ -18327,7 +18327,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000171}, !- Summer Design Day Schedule Name @@ -18335,7 +18335,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000174}, !- Summer Design Day Schedule Name @@ -18343,7 +18343,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000177}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index fa0e3bfed9..a39a8ff690 100644 --- a/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/PrimarySchool-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -192,7 +192,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -214,7 +214,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -236,7 +236,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -258,7 +258,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -280,7 +280,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -302,7 +302,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -324,7 +324,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -346,7 +346,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -368,7 +368,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -390,7 +390,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -412,7 +412,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -434,7 +434,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -8902,7 +8902,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_ClgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8910,7 +8910,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_HtgSch0, !- Name {00000000-0000-0000-0066-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -8918,27 +8918,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {96817907-221d-4258-a51f-3414ee31276a}<23.9 && {96817907-221d-4258-a51f-3414ee31276a}>1.7, !- Program Line 1 - SET {69f03bdc-ed74-4cbc-8057-351f6a153fd5} = 29.4, !- Program Line 2 - SET {e7f90fe6-b19a-4b56-abc5-b2a7f2835df6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {96817907-221d-4258-a51f-3414ee31276a}<23.9 && {96817907-221d-4258-a51f-3414ee31276a}>1.7, !- Program Line 4 - SET {69f03bdc-ed74-4cbc-8057-351f6a153fd5} = 29.4, !- Program Line 5 - SET {e7f90fe6-b19a-4b56-abc5-b2a7f2835df6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {96817907-221d-4258-a51f-3414ee31276a}<23.9 && {96817907-221d-4258-a51f-3414ee31276a}>1.7, !- Program Line 7 - SET {69f03bdc-ed74-4cbc-8057-351f6a153fd5} = 29.4, !- Program Line 8 - SET {e7f90fe6-b19a-4b56-abc5-b2a7f2835df6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {96817907-221d-4258-a51f-3414ee31276a}<23.9 && {96817907-221d-4258-a51f-3414ee31276a}>1.7, !- Program Line 10 - SET {69f03bdc-ed74-4cbc-8057-351f6a153fd5} = 29.4, !- Program Line 11 - SET {e7f90fe6-b19a-4b56-abc5-b2a7f2835df6} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3bba7acf-6ead-496a-a24b-c7b1ead2cabd}<23.9 && {3bba7acf-6ead-496a-a24b-c7b1ead2cabd}>1.7, !- Program Line 1 + SET {23c4e4bb-d80b-4183-bafc-ca8e741faae0} = 29.4, !- Program Line 2 + SET {9d035320-d788-4991-bc11-5bbebae5fd92} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3bba7acf-6ead-496a-a24b-c7b1ead2cabd}<23.9 && {3bba7acf-6ead-496a-a24b-c7b1ead2cabd}>1.7, !- Program Line 4 + SET {23c4e4bb-d80b-4183-bafc-ca8e741faae0} = 29.4, !- Program Line 5 + SET {9d035320-d788-4991-bc11-5bbebae5fd92} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3bba7acf-6ead-496a-a24b-c7b1ead2cabd}<23.9 && {3bba7acf-6ead-496a-a24b-c7b1ead2cabd}>1.7, !- Program Line 7 + SET {23c4e4bb-d80b-4183-bafc-ca8e741faae0} = 29.4, !- Program Line 8 + SET {9d035320-d788-4991-bc11-5bbebae5fd92} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3bba7acf-6ead-496a-a24b-c7b1ead2cabd}<23.9 && {3bba7acf-6ead-496a-a24b-c7b1ead2cabd}>1.7, !- Program Line 10 + SET {23c4e4bb-d80b-4183-bafc-ca8e741faae0} = 29.4, !- Program Line 11 + SET {9d035320-d788-4991-bc11-5bbebae5fd92} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {69f03bdc-ed74-4cbc-8057-351f6a153fd5} = NULL, !- Program Line 14 - SET {e7f90fe6-b19a-4b56-abc5-b2a7f2835df6} = NULL, !- Program Line 15 + SET {23c4e4bb-d80b-4183-bafc-ca8e741faae0} = NULL, !- Program Line 14 + SET {9d035320-d788-4991-bc11-5bbebae5fd92} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__9_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -9393,7 +9393,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9419,7 +9419,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9445,7 +9445,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9471,7 +9471,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9497,7 +9497,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9523,7 +9523,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9549,7 +9549,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9575,7 +9575,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9601,7 +9601,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9627,7 +9627,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9653,7 +9653,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000011}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -9679,7 +9679,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000012}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11348,649 +11348,649 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000146}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000146}, !- Inlet Port {00000000-0000-0000-0018-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000147}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000149}, !- Inlet Port {00000000-0000-0000-0018-000000000147}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000148}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000152}, !- Inlet Port {00000000-0000-0000-0018-000000000153}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000149}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000428}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000150}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000433}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000151}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000144}, !- Inlet Port {00000000-0000-0000-0018-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000152}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000150}, !- Inlet Port {00000000-0000-0000-0018-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000153}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000166}, !- Inlet Port {00000000-0000-0000-0018-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000154}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000169}, !- Inlet Port {00000000-0000-0000-0018-000000000167}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000155}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000172}, !- Inlet Port {00000000-0000-0000-0018-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000156}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000434}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000157}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000439}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000158}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000164}, !- Inlet Port {00000000-0000-0000-0018-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000159}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000170}, !- Inlet Port {00000000-0000-0000-0018-000000000165}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000160}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000186}, !- Inlet Port {00000000-0000-0000-0018-000000000188}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000161}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000189}, !- Inlet Port {00000000-0000-0000-0018-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000162}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000192}, !- Inlet Port {00000000-0000-0000-0018-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000163}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000164}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000445}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000165}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000184}, !- Inlet Port {00000000-0000-0000-0018-000000000191}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000166}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000190}, !- Inlet Port {00000000-0000-0000-0018-000000000185}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000167}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000206}, !- Inlet Port {00000000-0000-0000-0018-000000000208}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000168}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000209}, !- Inlet Port {00000000-0000-0000-0018-000000000207}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000169}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000212}, !- Inlet Port {00000000-0000-0000-0018-000000000213}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000170}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000171}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000451}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000172}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000204}, !- Inlet Port {00000000-0000-0000-0018-000000000211}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000173}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000210}, !- Inlet Port {00000000-0000-0000-0018-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000174}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000226}, !- Inlet Port {00000000-0000-0000-0018-000000000228}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000175}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000229}, !- Inlet Port {00000000-0000-0000-0018-000000000227}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000176}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000232}, !- Inlet Port {00000000-0000-0000-0018-000000000233}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000177}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000452}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000178}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000457}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000179}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000224}, !- Inlet Port {00000000-0000-0000-0018-000000000231}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000180}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000230}, !- Inlet Port {00000000-0000-0000-0018-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000181}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000246}, !- Inlet Port {00000000-0000-0000-0018-000000000248}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000182}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000249}, !- Inlet Port {00000000-0000-0000-0018-000000000247}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000183}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000252}, !- Inlet Port {00000000-0000-0000-0018-000000000253}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000184}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000458}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000185}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000463}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000186}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000244}, !- Inlet Port {00000000-0000-0000-0018-000000000251}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000187}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000250}, !- Inlet Port {00000000-0000-0000-0018-000000000245}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000188}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000266}, !- Inlet Port {00000000-0000-0000-0018-000000000268}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000189}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000269}, !- Inlet Port {00000000-0000-0000-0018-000000000267}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000190}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000272}, !- Inlet Port {00000000-0000-0000-0018-000000000273}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000191}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000464}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000192}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000469}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000193}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000264}, !- Inlet Port {00000000-0000-0000-0018-000000000271}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000194}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000270}, !- Inlet Port {00000000-0000-0000-0018-000000000265}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000195}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000286}, !- Inlet Port {00000000-0000-0000-0018-000000000288}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000196}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000289}, !- Inlet Port {00000000-0000-0000-0018-000000000287}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000197}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000292}, !- Inlet Port {00000000-0000-0000-0018-000000000293}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000198}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000470}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000199}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000475}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000200}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000284}, !- Inlet Port {00000000-0000-0000-0018-000000000291}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000201}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000290}, !- Inlet Port {00000000-0000-0000-0018-000000000285}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000202}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000306}, !- Inlet Port {00000000-0000-0000-0018-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000203}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000309}, !- Inlet Port {00000000-0000-0000-0018-000000000307}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000204}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000312}, !- Inlet Port {00000000-0000-0000-0018-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000205}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000476}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000206}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000481}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000207}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000304}, !- Inlet Port {00000000-0000-0000-0018-000000000311}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000208}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000310}, !- Inlet Port {00000000-0000-0000-0018-000000000305}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000209}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000126}, !- Inlet Port {00000000-0000-0000-0018-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000210}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000129}, !- Inlet Port {00000000-0000-0000-0018-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000211}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000212}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000422}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000213}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000427}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000214}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000124}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000215}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000130}, !- Inlet Port {00000000-0000-0000-0018-000000000125}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000429}, !- Inlet Port {00000000-0000-0000-0018-000000000430}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000217}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000431}, !- Inlet Port {00000000-0000-0000-0018-000000000432}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000218}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000435}, !- Inlet Port {00000000-0000-0000-0018-000000000436}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000219}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000437}, !- Inlet Port {00000000-0000-0000-0018-000000000438}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000220}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000441}, !- Inlet Port {00000000-0000-0000-0018-000000000442}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000221}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000443}, !- Inlet Port {00000000-0000-0000-0018-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000222}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000447}, !- Inlet Port {00000000-0000-0000-0018-000000000448}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000223}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000449}, !- Inlet Port {00000000-0000-0000-0018-000000000450}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000224}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000453}, !- Inlet Port {00000000-0000-0000-0018-000000000454}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000225}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000455}, !- Inlet Port {00000000-0000-0000-0018-000000000456}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000226}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000459}, !- Inlet Port {00000000-0000-0000-0018-000000000460}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000227}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000461}, !- Inlet Port {00000000-0000-0000-0018-000000000462}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000228}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000465}, !- Inlet Port {00000000-0000-0000-0018-000000000466}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000229}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000467}, !- Inlet Port {00000000-0000-0000-0018-000000000468}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000230}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000471}, !- Inlet Port {00000000-0000-0000-0018-000000000472}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000231}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000473}, !- Inlet Port {00000000-0000-0000-0018-000000000474}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000232}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000477}, !- Inlet Port {00000000-0000-0000-0018-000000000478}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000233}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000479}, !- Inlet Port {00000000-0000-0000-0018-000000000480}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000234}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000423}, !- Inlet Port {00000000-0000-0000-0018-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000235}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000425}, !- Inlet Port {00000000-0000-0000-0018-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000236}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000086}, !- Inlet Port {00000000-0000-0000-0018-000000000088}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000237}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000089}, !- Inlet Port {00000000-0000-0000-0018-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000238}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000092}, !- Inlet Port {00000000-0000-0000-0018-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000239}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000488}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000240}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000493}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000241}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000084}, !- Inlet Port {00000000-0000-0000-0018-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000242}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000090}, !- Inlet Port {00000000-0000-0000-0018-000000000085}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000243}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000067}, !- Inlet Port {00000000-0000-0000-0018-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000244}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000070}, !- Inlet Port {00000000-0000-0000-0018-000000000068}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000245}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000073}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000246}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000482}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000247}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000487}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000248}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000065}, !- Inlet Port {00000000-0000-0000-0018-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000249}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000071}, !- Inlet Port {00000000-0000-0000-0018-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000250}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000489}, !- Inlet Port {00000000-0000-0000-0018-000000000490}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000251}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000491}, !- Inlet Port {00000000-0000-0000-0018-000000000492}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000252}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000483}, !- Inlet Port {00000000-0000-0000-0018-000000000484}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000253}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000485}, !- Inlet Port {00000000-0000-0000-0018-000000000486}; !- Outlet Port @@ -15751,7 +15751,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000143}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -15766,7 +15766,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000144}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15775,7 +15775,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000145}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15784,7 +15784,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000146}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15805,7 +15805,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000147}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15814,7 +15814,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000148}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15823,7 +15823,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000149}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15844,7 +15844,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000150}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15853,7 +15853,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000151}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15862,7 +15862,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000152}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15877,7 +15877,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000153}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15886,7 +15886,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000154}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15895,7 +15895,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15910,7 +15910,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15919,7 +15919,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15928,7 +15928,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -15943,7 +15943,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15952,7 +15952,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15961,7 +15961,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -15982,7 +15982,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -15991,7 +15991,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16000,7 +16000,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -16015,7 +16015,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16024,7 +16024,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16033,7 +16033,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16054,7 +16054,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16063,7 +16063,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16072,7 +16072,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16087,7 +16087,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16096,7 +16096,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16105,7 +16105,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16126,7 +16126,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16135,7 +16135,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000175}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16144,7 +16144,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000176}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -16165,7 +16165,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -16174,7 +16174,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -18313,7 +18313,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000143}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000144}, !- Summer Design Day Schedule Name @@ -18321,7 +18321,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000146}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000147}, !- Summer Design Day Schedule Name @@ -18329,7 +18329,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000149}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000150}, !- Summer Design Day Schedule Name @@ -18337,7 +18337,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000152}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000153}, !- Summer Design Day Schedule Name @@ -18345,7 +18345,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000155}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000156}, !- Summer Design Day Schedule Name @@ -18353,7 +18353,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000158}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000159}, !- Summer Design Day Schedule Name @@ -18361,7 +18361,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000161}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000162}, !- Summer Design Day Schedule Name @@ -18369,7 +18369,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000164}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000165}, !- Summer Design Day Schedule Name @@ -18377,7 +18377,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000168}, !- Summer Design Day Schedule Name @@ -18385,7 +18385,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000171}, !- Summer Design Day Schedule Name @@ -18393,7 +18393,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000174}, !- Summer Design Day Schedule Name @@ -18401,7 +18401,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000177}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 0081606ca3..8939a1e8cc 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0058-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0058-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2507,85 +2507,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0044-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000024}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000027}, !- Inlet Port {00000000-0000-0000-0016-000000000025}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000032}, !- Inlet Port {00000000-0000-0000-0016-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000030}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000028}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000031}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000029}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000032}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000033}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000030}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000034}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000035}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000036}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port {00000000-0000-0000-0016-000000000015}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000037}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000011}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port @@ -3834,7 +3834,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3849,7 +3849,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3858,7 +3858,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3867,7 +3867,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3882,7 +3882,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3891,7 +3891,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4453,7 +4453,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0058-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0056-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0056-000000000048}, !- Summer Design Day Schedule Name @@ -4461,7 +4461,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0058-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0056-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0056-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index f1f4820bf1..ba94c4b297 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0058-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0058-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2525,85 +2525,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0044-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000024}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000027}, !- Inlet Port {00000000-0000-0000-0016-000000000025}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000032}, !- Inlet Port {00000000-0000-0000-0016-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000030}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000028}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000031}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000029}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000032}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000033}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000030}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000034}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000035}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000036}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port {00000000-0000-0000-0016-000000000015}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000037}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000011}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0044-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port @@ -3852,7 +3852,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3867,7 +3867,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3876,7 +3876,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3885,7 +3885,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3900,7 +3900,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3909,7 +3909,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0056-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4471,7 +4471,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0058-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0056-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0056-000000000048}, !- Summer Design Day Schedule Name @@ -4479,7 +4479,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0058-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0056-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0056-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 0e76d00b1f..04eb3cad81 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2949,85 +2949,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0046-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000052}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000055}, !- Inlet Port {00000000-0000-0000-0018-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000060}, !- Inlet Port {00000000-0000-0000-0018-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000057}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000058}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port {00000000-0000-0000-0018-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000036}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port @@ -4357,7 +4357,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4372,7 +4372,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4381,7 +4381,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4390,7 +4390,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4405,7 +4405,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4414,7 +4414,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4976,7 +4976,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000048}, !- Summer Design Day Schedule Name @@ -4984,7 +4984,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 403a81b3dd..b92c665918 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2967,85 +2967,85 @@ OS:Node, OS:Node, {00000000-0000-0000-0046-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000052}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000055}, !- Inlet Port {00000000-0000-0000-0018-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000060}, !- Inlet Port {00000000-0000-0000-0018-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000057}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000058}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port {00000000-0000-0000-0018-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000036}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port @@ -4375,7 +4375,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4390,7 +4390,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4399,7 +4399,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4408,7 +4408,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4423,7 +4423,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4432,7 +4432,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4994,7 +4994,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000048}, !- Summer Design Day Schedule Name @@ -5002,7 +5002,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 39d91740fa..9b8b6bc858 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -1954,7 +1954,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -1980,7 +1980,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2615,109 +2615,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0045-000000000027}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000028}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000029}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000030}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000031}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000020}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000026}, !- Inlet Port {00000000-0000-0000-0016-000000000021}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000070}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000039}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000010}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000077}, !- Inlet Port {00000000-0000-0000-0016-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000071}, !- Inlet Port {00000000-0000-0000-0016-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port @@ -3966,7 +3966,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3981,7 +3981,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3990,7 +3990,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3999,7 +3999,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4014,7 +4014,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4023,7 +4023,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4585,7 +4585,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000048}, !- Summer Design Day Schedule Name @@ -4593,7 +4593,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 71d0cf6708..394b4d9ad2 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -1972,7 +1972,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -1998,7 +1998,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2633,109 +2633,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0045-000000000027}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000028}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000029}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000030}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000031}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000020}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000026}, !- Inlet Port {00000000-0000-0000-0016-000000000021}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000070}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000039}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000010}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000077}, !- Inlet Port {00000000-0000-0000-0016-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000071}, !- Inlet Port {00000000-0000-0000-0016-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port @@ -3984,7 +3984,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3999,7 +3999,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4008,7 +4008,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4017,7 +4017,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4032,7 +4032,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4041,7 +4041,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4603,7 +4603,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000048}, !- Summer Design Day Schedule Name @@ -4611,7 +4611,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 462283e746..2b6d9fc521 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2300,7 +2300,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2326,7 +2326,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3057,109 +3057,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0047-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000108}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000048}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000054}, !- Inlet Port {00000000-0000-0000-0018-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000035}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000109}, !- Inlet Port {00000000-0000-0000-0018-000000000110}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000111}, !- Inlet Port {00000000-0000-0000-0018-000000000112}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000059}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000060}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000105}, !- Inlet Port {00000000-0000-0000-0018-000000000106}; !- Outlet Port @@ -4489,7 +4489,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4504,7 +4504,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4513,7 +4513,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4522,7 +4522,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4537,7 +4537,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4546,7 +4546,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5108,7 +5108,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000048}, !- Summer Design Day Schedule Name @@ -5116,7 +5116,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 6b25bcee31..508593aa5d 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2318,7 +2318,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2344,7 +2344,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3075,109 +3075,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0047-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000108}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000048}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000054}, !- Inlet Port {00000000-0000-0000-0018-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000035}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000109}, !- Inlet Port {00000000-0000-0000-0018-000000000110}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000111}, !- Inlet Port {00000000-0000-0000-0018-000000000112}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000059}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000060}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000105}, !- Inlet Port {00000000-0000-0000-0018-000000000106}; !- Outlet Port @@ -4507,7 +4507,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4522,7 +4522,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4531,7 +4531,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4540,7 +4540,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4555,7 +4555,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4564,7 +4564,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5126,7 +5126,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000048}, !- Summer Design Day Schedule Name @@ -5134,7 +5134,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 7ee436ad11..1e1a93fec7 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -1954,7 +1954,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -1980,7 +1980,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2615,109 +2615,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0045-000000000027}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000028}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000029}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000030}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000031}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000020}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000026}, !- Inlet Port {00000000-0000-0000-0016-000000000021}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000070}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000039}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000010}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000077}, !- Inlet Port {00000000-0000-0000-0016-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000071}, !- Inlet Port {00000000-0000-0000-0016-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port @@ -3966,7 +3966,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3981,7 +3981,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3990,7 +3990,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -3999,7 +3999,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4014,7 +4014,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4023,7 +4023,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4585,7 +4585,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000048}, !- Summer Design Day Schedule Name @@ -4593,7 +4593,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 8743a330b8..efb86fec29 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0059-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -1972,7 +1972,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -1998,7 +1998,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0039-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0056-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2633,109 +2633,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0045-000000000027}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000028}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000029}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000030}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000031}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000020}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000026}, !- Inlet Port {00000000-0000-0000-0016-000000000021}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000070}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000039}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000004}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000010}, !- Inlet Port {00000000-0000-0000-0016-000000000005}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000077}, !- Inlet Port {00000000-0000-0000-0016-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000071}, !- Inlet Port {00000000-0000-0000-0016-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0045-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port @@ -3984,7 +3984,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -3999,7 +3999,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4008,7 +4008,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4017,7 +4017,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4032,7 +4032,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4041,7 +4041,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0057-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4603,7 +4603,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000048}, !- Summer Design Day Schedule Name @@ -4611,7 +4611,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0059-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0057-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0057-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index ef8fbb39c1..7a81847efe 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2300,7 +2300,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2326,7 +2326,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3057,109 +3057,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0047-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000108}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000048}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000054}, !- Inlet Port {00000000-0000-0000-0018-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000035}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000109}, !- Inlet Port {00000000-0000-0000-0018-000000000110}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000111}, !- Inlet Port {00000000-0000-0000-0018-000000000112}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000059}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000060}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000105}, !- Inlet Port {00000000-0000-0000-0018-000000000106}; !- Outlet Port @@ -4489,7 +4489,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4504,7 +4504,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4513,7 +4513,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4522,7 +4522,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4537,7 +4537,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4546,7 +4546,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5108,7 +5108,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000048}, !- Summer Design Day Schedule Name @@ -5116,7 +5116,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index bd54f7c300..53a634afb0 100644 --- a/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/QuickServiceRestaurant-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -32,7 +32,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -54,7 +54,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0062-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -2318,7 +2318,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2344,7 +2344,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0041-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3075,109 +3075,109 @@ OS:Node, OS:Node, {00000000-0000-0000-0047-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000108}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000113}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000048}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000054}, !- Inlet Port {00000000-0000-0000-0018-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000107}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000029}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000035}, !- Inlet Port {00000000-0000-0000-0018-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000109}, !- Inlet Port {00000000-0000-0000-0018-000000000110}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000111}, !- Inlet Port {00000000-0000-0000-0018-000000000112}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000059}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0047-000000000060}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000105}, !- Inlet Port {00000000-0000-0000-0018-000000000106}; !- Outlet Port @@ -4507,7 +4507,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4522,7 +4522,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4531,7 +4531,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4540,7 +4540,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -4555,7 +4555,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4564,7 +4564,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0060-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5126,7 +5126,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000047}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000048}, !- Summer Design Day Schedule Name @@ -5134,7 +5134,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0062-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0060-000000000050}, !- Default Day Schedule Name {00000000-0000-0000-0060-000000000051}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-Electricity-CAN_AB_Calgary.osm index 917853aac1..ec9ea94143 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-Electricity-CAN_AB_Calgary.osm @@ -2849,21 +2849,21 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {98726537-6440-42d0-9867-bf29ecbd86a8}<23.9 && {98726537-6440-42d0-9867-bf29ecbd86a8}>1.7, !- Program Line 1 - SET {d2470501-5fe9-4b24-87ea-e1c463fa2cc5} = 29.4, !- Program Line 2 - SET {8c23757f-4c78-490f-8fe7-acdd3f44fefb} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {98726537-6440-42d0-9867-bf29ecbd86a8}<23.9 && {98726537-6440-42d0-9867-bf29ecbd86a8}>1.7, !- Program Line 4 - SET {d2470501-5fe9-4b24-87ea-e1c463fa2cc5} = 29.4, !- Program Line 5 - SET {8c23757f-4c78-490f-8fe7-acdd3f44fefb} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {98726537-6440-42d0-9867-bf29ecbd86a8}<23.9 && {98726537-6440-42d0-9867-bf29ecbd86a8}>1.7, !- Program Line 7 - SET {d2470501-5fe9-4b24-87ea-e1c463fa2cc5} = 29.4, !- Program Line 8 - SET {8c23757f-4c78-490f-8fe7-acdd3f44fefb} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {98726537-6440-42d0-9867-bf29ecbd86a8}<23.9 && {98726537-6440-42d0-9867-bf29ecbd86a8}>1.7, !- Program Line 10 - SET {d2470501-5fe9-4b24-87ea-e1c463fa2cc5} = 29.4, !- Program Line 11 - SET {8c23757f-4c78-490f-8fe7-acdd3f44fefb} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {cb61a4b8-540e-4922-b5d5-5168fff2bd27}<23.9 && {cb61a4b8-540e-4922-b5d5-5168fff2bd27}>1.7, !- Program Line 1 + SET {7a7b22f1-ea0a-42be-8965-afea2410906d} = 29.4, !- Program Line 2 + SET {37c8ddee-3182-4844-be58-d8ad755a49dd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {cb61a4b8-540e-4922-b5d5-5168fff2bd27}<23.9 && {cb61a4b8-540e-4922-b5d5-5168fff2bd27}>1.7, !- Program Line 4 + SET {7a7b22f1-ea0a-42be-8965-afea2410906d} = 29.4, !- Program Line 5 + SET {37c8ddee-3182-4844-be58-d8ad755a49dd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {cb61a4b8-540e-4922-b5d5-5168fff2bd27}<23.9 && {cb61a4b8-540e-4922-b5d5-5168fff2bd27}>1.7, !- Program Line 7 + SET {7a7b22f1-ea0a-42be-8965-afea2410906d} = 29.4, !- Program Line 8 + SET {37c8ddee-3182-4844-be58-d8ad755a49dd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {cb61a4b8-540e-4922-b5d5-5168fff2bd27}<23.9 && {cb61a4b8-540e-4922-b5d5-5168fff2bd27}>1.7, !- Program Line 10 + SET {7a7b22f1-ea0a-42be-8965-afea2410906d} = 29.4, !- Program Line 11 + SET {37c8ddee-3182-4844-be58-d8ad755a49dd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {d2470501-5fe9-4b24-87ea-e1c463fa2cc5} = NULL, !- Program Line 14 - SET {8c23757f-4c78-490f-8fe7-acdd3f44fefb} = NULL, !- Program Line 15 + SET {7a7b22f1-ea0a-42be-8965-afea2410906d} = NULL, !- Program Line 14 + SET {37c8ddee-3182-4844-be58-d8ad755a49dd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index ca2e0073a8..146fe4d2f6 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -3335,7 +3335,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0063-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3343,7 +3343,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3351,27 +3351,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {41a790fc-431b-48aa-837f-185c73a9807c}<23.9 && {41a790fc-431b-48aa-837f-185c73a9807c}>1.7, !- Program Line 1 - SET {20a5c8e9-d566-4611-bd4d-37b87e786253} = 29.4, !- Program Line 2 - SET {3cb4bd08-0f4e-49b2-928e-20d33071097a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {41a790fc-431b-48aa-837f-185c73a9807c}<23.9 && {41a790fc-431b-48aa-837f-185c73a9807c}>1.7, !- Program Line 4 - SET {20a5c8e9-d566-4611-bd4d-37b87e786253} = 29.4, !- Program Line 5 - SET {3cb4bd08-0f4e-49b2-928e-20d33071097a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {41a790fc-431b-48aa-837f-185c73a9807c}<23.9 && {41a790fc-431b-48aa-837f-185c73a9807c}>1.7, !- Program Line 7 - SET {20a5c8e9-d566-4611-bd4d-37b87e786253} = 29.4, !- Program Line 8 - SET {3cb4bd08-0f4e-49b2-928e-20d33071097a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {41a790fc-431b-48aa-837f-185c73a9807c}<23.9 && {41a790fc-431b-48aa-837f-185c73a9807c}>1.7, !- Program Line 10 - SET {20a5c8e9-d566-4611-bd4d-37b87e786253} = 29.4, !- Program Line 11 - SET {3cb4bd08-0f4e-49b2-928e-20d33071097a} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {59036453-6e0b-4863-a5d9-2d2e0907a421}<23.9 && {59036453-6e0b-4863-a5d9-2d2e0907a421}>1.7, !- Program Line 1 + SET {dcbf58f8-ca92-4dc3-a2bb-6a8db1a3d432} = 29.4, !- Program Line 2 + SET {39e2d664-2b9a-4339-93b2-32963b4ba240} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {59036453-6e0b-4863-a5d9-2d2e0907a421}<23.9 && {59036453-6e0b-4863-a5d9-2d2e0907a421}>1.7, !- Program Line 4 + SET {dcbf58f8-ca92-4dc3-a2bb-6a8db1a3d432} = 29.4, !- Program Line 5 + SET {39e2d664-2b9a-4339-93b2-32963b4ba240} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {59036453-6e0b-4863-a5d9-2d2e0907a421}<23.9 && {59036453-6e0b-4863-a5d9-2d2e0907a421}>1.7, !- Program Line 7 + SET {dcbf58f8-ca92-4dc3-a2bb-6a8db1a3d432} = 29.4, !- Program Line 8 + SET {39e2d664-2b9a-4339-93b2-32963b4ba240} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {59036453-6e0b-4863-a5d9-2d2e0907a421}<23.9 && {59036453-6e0b-4863-a5d9-2d2e0907a421}>1.7, !- Program Line 10 + SET {dcbf58f8-ca92-4dc3-a2bb-6a8db1a3d432} = 29.4, !- Program Line 11 + SET {39e2d664-2b9a-4339-93b2-32963b4ba240} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {20a5c8e9-d566-4611-bd4d-37b87e786253} = NULL, !- Program Line 14 - SET {3cb4bd08-0f4e-49b2-928e-20d33071097a} = NULL, !- Program Line 15 + SET {dcbf58f8-ca92-4dc3-a2bb-6a8db1a3d432} = NULL, !- Program Line 14 + SET {39e2d664-2b9a-4339-93b2-32963b4ba240} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -4268,211 +4268,211 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port {00000000-0000-0000-0016-000000000045}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000052}, !- Inlet Port {00000000-0000-0000-0016-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000048}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000049}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000050}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000062}, !- Inlet Port {00000000-0000-0000-0016-000000000064}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000065}, !- Inlet Port {00000000-0000-0000-0016-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000070}, !- Inlet Port {00000000-0000-0000-0016-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000067}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000060}, !- Inlet Port {00000000-0000-0000-0016-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000068}, !- Inlet Port {00000000-0000-0000-0016-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000080}, !- Inlet Port {00000000-0000-0000-0016-000000000082}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000083}, !- Inlet Port {00000000-0000-0000-0016-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000088}, !- Inlet Port {00000000-0000-0000-0016-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000059}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000084}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000060}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000085}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000061}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000062}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000086}, !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000063}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000026}, !- Inlet Port {00000000-0000-0000-0016-000000000028}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000064}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000029}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000065}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000034}, !- Inlet Port {00000000-0000-0000-0016-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000066}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000067}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000068}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000024}, !- Inlet Port {00000000-0000-0000-0016-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000069}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000032}, !- Inlet Port {00000000-0000-0000-0016-000000000025}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000070}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000008}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000071}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000011}, !- Inlet Port {00000000-0000-0000-0016-000000000009}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000072}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000016}, !- Inlet Port {00000000-0000-0000-0016-000000000017}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000073}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000012}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000074}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000013}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000075}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000015}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000076}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port @@ -6291,7 +6291,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6306,7 +6306,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6315,7 +6315,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6324,7 +6324,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6339,7 +6339,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6348,7 +6348,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6357,7 +6357,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6372,7 +6372,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6381,7 +6381,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6390,7 +6390,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6405,7 +6405,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6414,7 +6414,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6423,7 +6423,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -6438,7 +6438,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6447,7 +6447,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7501,7 +7501,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000078}, !- Summer Design Day Schedule Name @@ -7509,7 +7509,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000081}, !- Summer Design Day Schedule Name @@ -7517,7 +7517,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000084}, !- Summer Design Day Schedule Name @@ -7525,7 +7525,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000087}, !- Summer Design Day Schedule Name @@ -7533,7 +7533,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index c1e432b819..bbbc911e6a 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -3365,7 +3365,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0063-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3373,7 +3373,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3381,27 +3381,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8f7a98d6-67d6-4a13-a1d7-99742be78216}<23.9 && {8f7a98d6-67d6-4a13-a1d7-99742be78216}>1.7, !- Program Line 1 - SET {979a2ec5-1b1d-4df0-a1ac-369c7137eebe} = 29.4, !- Program Line 2 - SET {79bc304b-c006-447a-9d03-c94fe71e0331} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8f7a98d6-67d6-4a13-a1d7-99742be78216}<23.9 && {8f7a98d6-67d6-4a13-a1d7-99742be78216}>1.7, !- Program Line 4 - SET {979a2ec5-1b1d-4df0-a1ac-369c7137eebe} = 29.4, !- Program Line 5 - SET {79bc304b-c006-447a-9d03-c94fe71e0331} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8f7a98d6-67d6-4a13-a1d7-99742be78216}<23.9 && {8f7a98d6-67d6-4a13-a1d7-99742be78216}>1.7, !- Program Line 7 - SET {979a2ec5-1b1d-4df0-a1ac-369c7137eebe} = 29.4, !- Program Line 8 - SET {79bc304b-c006-447a-9d03-c94fe71e0331} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8f7a98d6-67d6-4a13-a1d7-99742be78216}<23.9 && {8f7a98d6-67d6-4a13-a1d7-99742be78216}>1.7, !- Program Line 10 - SET {979a2ec5-1b1d-4df0-a1ac-369c7137eebe} = 29.4, !- Program Line 11 - SET {79bc304b-c006-447a-9d03-c94fe71e0331} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7cd7aea3-66ef-4032-a30d-fd45c6378142}<23.9 && {7cd7aea3-66ef-4032-a30d-fd45c6378142}>1.7, !- Program Line 1 + SET {ef3636b9-ca46-42eb-9c0f-0423b1f2e16d} = 29.4, !- Program Line 2 + SET {31db1228-d7ac-49cf-9db3-54da0a28ce8e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7cd7aea3-66ef-4032-a30d-fd45c6378142}<23.9 && {7cd7aea3-66ef-4032-a30d-fd45c6378142}>1.7, !- Program Line 4 + SET {ef3636b9-ca46-42eb-9c0f-0423b1f2e16d} = 29.4, !- Program Line 5 + SET {31db1228-d7ac-49cf-9db3-54da0a28ce8e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7cd7aea3-66ef-4032-a30d-fd45c6378142}<23.9 && {7cd7aea3-66ef-4032-a30d-fd45c6378142}>1.7, !- Program Line 7 + SET {ef3636b9-ca46-42eb-9c0f-0423b1f2e16d} = 29.4, !- Program Line 8 + SET {31db1228-d7ac-49cf-9db3-54da0a28ce8e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7cd7aea3-66ef-4032-a30d-fd45c6378142}<23.9 && {7cd7aea3-66ef-4032-a30d-fd45c6378142}>1.7, !- Program Line 10 + SET {ef3636b9-ca46-42eb-9c0f-0423b1f2e16d} = 29.4, !- Program Line 11 + SET {31db1228-d7ac-49cf-9db3-54da0a28ce8e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {979a2ec5-1b1d-4df0-a1ac-369c7137eebe} = NULL, !- Program Line 14 - SET {79bc304b-c006-447a-9d03-c94fe71e0331} = NULL, !- Program Line 15 + SET {ef3636b9-ca46-42eb-9c0f-0423b1f2e16d} = NULL, !- Program Line 14 + SET {31db1228-d7ac-49cf-9db3-54da0a28ce8e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -4298,211 +4298,211 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port {00000000-0000-0000-0016-000000000045}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000052}, !- Inlet Port {00000000-0000-0000-0016-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000048}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000049}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000042}, !- Inlet Port {00000000-0000-0000-0016-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000050}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000062}, !- Inlet Port {00000000-0000-0000-0016-000000000064}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000065}, !- Inlet Port {00000000-0000-0000-0016-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000070}, !- Inlet Port {00000000-0000-0000-0016-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000066}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000067}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000060}, !- Inlet Port {00000000-0000-0000-0016-000000000069}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000068}, !- Inlet Port {00000000-0000-0000-0016-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000080}, !- Inlet Port {00000000-0000-0000-0016-000000000082}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000083}, !- Inlet Port {00000000-0000-0000-0016-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000088}, !- Inlet Port {00000000-0000-0000-0016-000000000089}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000059}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000084}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000060}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000085}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000061}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000087}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000062}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000086}, !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000063}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000026}, !- Inlet Port {00000000-0000-0000-0016-000000000028}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000064}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000029}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000065}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000034}, !- Inlet Port {00000000-0000-0000-0016-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000066}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000067}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000068}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000024}, !- Inlet Port {00000000-0000-0000-0016-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000069}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000032}, !- Inlet Port {00000000-0000-0000-0016-000000000025}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000070}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000008}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000071}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000011}, !- Inlet Port {00000000-0000-0000-0016-000000000009}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000072}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000016}, !- Inlet Port {00000000-0000-0000-0016-000000000017}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000073}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000012}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000074}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000013}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000075}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000015}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000076}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port @@ -6321,7 +6321,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6336,7 +6336,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6345,7 +6345,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6354,7 +6354,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6369,7 +6369,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6378,7 +6378,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6387,7 +6387,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6402,7 +6402,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6411,7 +6411,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6420,7 +6420,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6435,7 +6435,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6444,7 +6444,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6453,7 +6453,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -6468,7 +6468,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6477,7 +6477,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7531,7 +7531,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000078}, !- Summer Design Day Schedule Name @@ -7539,7 +7539,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000081}, !- Summer Design Day Schedule Name @@ -7547,7 +7547,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000084}, !- Summer Design Day Schedule Name @@ -7555,7 +7555,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000087}, !- Summer Design Day Schedule Name @@ -7563,7 +7563,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGas-CAN_AB_Calgary.osm index 6932b24e75..8ebb734d54 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGas-CAN_AB_Calgary.osm @@ -3354,21 +3354,21 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {197cbdae-b666-4b25-81ea-876653da8dd3}<23.9 && {197cbdae-b666-4b25-81ea-876653da8dd3}>1.7, !- Program Line 1 - SET {f6a331e5-4d43-48bd-a6eb-dcca84481575} = 29.4, !- Program Line 2 - SET {45b13eae-1097-4fc1-81e6-f955a5d72a54} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {197cbdae-b666-4b25-81ea-876653da8dd3}<23.9 && {197cbdae-b666-4b25-81ea-876653da8dd3}>1.7, !- Program Line 4 - SET {f6a331e5-4d43-48bd-a6eb-dcca84481575} = 29.4, !- Program Line 5 - SET {45b13eae-1097-4fc1-81e6-f955a5d72a54} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {197cbdae-b666-4b25-81ea-876653da8dd3}<23.9 && {197cbdae-b666-4b25-81ea-876653da8dd3}>1.7, !- Program Line 7 - SET {f6a331e5-4d43-48bd-a6eb-dcca84481575} = 29.4, !- Program Line 8 - SET {45b13eae-1097-4fc1-81e6-f955a5d72a54} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {197cbdae-b666-4b25-81ea-876653da8dd3}<23.9 && {197cbdae-b666-4b25-81ea-876653da8dd3}>1.7, !- Program Line 10 - SET {f6a331e5-4d43-48bd-a6eb-dcca84481575} = 29.4, !- Program Line 11 - SET {45b13eae-1097-4fc1-81e6-f955a5d72a54} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {32a3e405-7134-4b48-8d5f-63fdc6f8e428}<23.9 && {32a3e405-7134-4b48-8d5f-63fdc6f8e428}>1.7, !- Program Line 1 + SET {2b0b283e-7be0-4bee-a08a-e8a7b24ec112} = 29.4, !- Program Line 2 + SET {7e5b177f-e64f-4e39-bfa8-4d588e397873} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {32a3e405-7134-4b48-8d5f-63fdc6f8e428}<23.9 && {32a3e405-7134-4b48-8d5f-63fdc6f8e428}>1.7, !- Program Line 4 + SET {2b0b283e-7be0-4bee-a08a-e8a7b24ec112} = 29.4, !- Program Line 5 + SET {7e5b177f-e64f-4e39-bfa8-4d588e397873} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {32a3e405-7134-4b48-8d5f-63fdc6f8e428}<23.9 && {32a3e405-7134-4b48-8d5f-63fdc6f8e428}>1.7, !- Program Line 7 + SET {2b0b283e-7be0-4bee-a08a-e8a7b24ec112} = 29.4, !- Program Line 8 + SET {7e5b177f-e64f-4e39-bfa8-4d588e397873} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {32a3e405-7134-4b48-8d5f-63fdc6f8e428}<23.9 && {32a3e405-7134-4b48-8d5f-63fdc6f8e428}>1.7, !- Program Line 10 + SET {2b0b283e-7be0-4bee-a08a-e8a7b24ec112} = 29.4, !- Program Line 11 + SET {7e5b177f-e64f-4e39-bfa8-4d588e397873} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f6a331e5-4d43-48bd-a6eb-dcca84481575} = NULL, !- Program Line 14 - SET {45b13eae-1097-4fc1-81e6-f955a5d72a54} = NULL, !- Program Line 15 + SET {2b0b283e-7be0-4bee-a08a-e8a7b24ec112} = NULL, !- Program Line 14 + SET {7e5b177f-e64f-4e39-bfa8-4d588e397873} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 3e67e0de5c..3c67af21d7 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -3810,7 +3810,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0066-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3818,7 +3818,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3826,27 +3826,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {18b0ae71-063c-4f40-a5b0-1ca134a0b249}<23.9 && {18b0ae71-063c-4f40-a5b0-1ca134a0b249}>1.7, !- Program Line 1 - SET {91fea2a2-ddec-42f2-a31e-bc8c1cf8eb78} = 29.4, !- Program Line 2 - SET {42f502ea-c781-468f-9fed-c5536f5d23ec} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {18b0ae71-063c-4f40-a5b0-1ca134a0b249}<23.9 && {18b0ae71-063c-4f40-a5b0-1ca134a0b249}>1.7, !- Program Line 4 - SET {91fea2a2-ddec-42f2-a31e-bc8c1cf8eb78} = 29.4, !- Program Line 5 - SET {42f502ea-c781-468f-9fed-c5536f5d23ec} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {18b0ae71-063c-4f40-a5b0-1ca134a0b249}<23.9 && {18b0ae71-063c-4f40-a5b0-1ca134a0b249}>1.7, !- Program Line 7 - SET {91fea2a2-ddec-42f2-a31e-bc8c1cf8eb78} = 29.4, !- Program Line 8 - SET {42f502ea-c781-468f-9fed-c5536f5d23ec} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {18b0ae71-063c-4f40-a5b0-1ca134a0b249}<23.9 && {18b0ae71-063c-4f40-a5b0-1ca134a0b249}>1.7, !- Program Line 10 - SET {91fea2a2-ddec-42f2-a31e-bc8c1cf8eb78} = 29.4, !- Program Line 11 - SET {42f502ea-c781-468f-9fed-c5536f5d23ec} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5e898b3d-4a53-4681-8334-4c62a5508afc}<23.9 && {5e898b3d-4a53-4681-8334-4c62a5508afc}>1.7, !- Program Line 1 + SET {f50f311d-f4b6-4dd8-a151-71a7380fb066} = 29.4, !- Program Line 2 + SET {ef4da088-1f58-4162-a1de-0af71739a8fa} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5e898b3d-4a53-4681-8334-4c62a5508afc}<23.9 && {5e898b3d-4a53-4681-8334-4c62a5508afc}>1.7, !- Program Line 4 + SET {f50f311d-f4b6-4dd8-a151-71a7380fb066} = 29.4, !- Program Line 5 + SET {ef4da088-1f58-4162-a1de-0af71739a8fa} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5e898b3d-4a53-4681-8334-4c62a5508afc}<23.9 && {5e898b3d-4a53-4681-8334-4c62a5508afc}>1.7, !- Program Line 7 + SET {f50f311d-f4b6-4dd8-a151-71a7380fb066} = 29.4, !- Program Line 8 + SET {ef4da088-1f58-4162-a1de-0af71739a8fa} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5e898b3d-4a53-4681-8334-4c62a5508afc}<23.9 && {5e898b3d-4a53-4681-8334-4c62a5508afc}>1.7, !- Program Line 10 + SET {f50f311d-f4b6-4dd8-a151-71a7380fb066} = 29.4, !- Program Line 11 + SET {ef4da088-1f58-4162-a1de-0af71739a8fa} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {91fea2a2-ddec-42f2-a31e-bc8c1cf8eb78} = NULL, !- Program Line 14 - SET {42f502ea-c781-468f-9fed-c5536f5d23ec} = NULL, !- Program Line 15 + SET {f50f311d-f4b6-4dd8-a151-71a7380fb066} = NULL, !- Program Line 14 + SET {ef4da088-1f58-4162-a1de-0af71739a8fa} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -4875,211 +4875,211 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000064}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000076}, !- Inlet Port {00000000-0000-0000-0018-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000065}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000079}, !- Inlet Port {00000000-0000-0000-0018-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000066}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000084}, !- Inlet Port {00000000-0000-0000-0018-000000000085}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000067}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000068}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000081}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000069}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000074}, !- Inlet Port {00000000-0000-0000-0018-000000000083}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000070}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000082}, !- Inlet Port {00000000-0000-0000-0018-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000071}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000100}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000072}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000101}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000073}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000106}, !- Inlet Port {00000000-0000-0000-0018-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000074}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000075}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000076}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000096}, !- Inlet Port {00000000-0000-0000-0018-000000000105}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000104}, !- Inlet Port {00000000-0000-0000-0018-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000120}, !- Inlet Port {00000000-0000-0000-0018-000000000122}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000123}, !- Inlet Port {00000000-0000-0000-0018-000000000121}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000128}, !- Inlet Port {00000000-0000-0000-0018-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000124}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000125}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000118}, !- Inlet Port {00000000-0000-0000-0018-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000126}, !- Inlet Port {00000000-0000-0000-0018-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000054}, !- Inlet Port {00000000-0000-0000-0018-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000057}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000062}, !- Inlet Port {00000000-0000-0000-0018-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000089}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000059}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000090}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000052}, !- Inlet Port {00000000-0000-0000-0018-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000091}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000060}, !- Inlet Port {00000000-0000-0000-0018-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000092}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000033}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000093}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000036}, !- Inlet Port {00000000-0000-0000-0018-000000000034}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000094}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000041}, !- Inlet Port {00000000-0000-0000-0018-000000000042}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000095}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000037}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000096}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000038}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000097}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000098}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port @@ -6979,7 +6979,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6994,7 +6994,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7003,7 +7003,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7012,7 +7012,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7027,7 +7027,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7036,7 +7036,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7045,7 +7045,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7060,7 +7060,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7069,7 +7069,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7078,7 +7078,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7093,7 +7093,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7102,7 +7102,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7111,7 +7111,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -7126,7 +7126,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7135,7 +7135,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8189,7 +8189,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000078}, !- Summer Design Day Schedule Name @@ -8197,7 +8197,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000081}, !- Summer Design Day Schedule Name @@ -8205,7 +8205,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000084}, !- Summer Design Day Schedule Name @@ -8213,7 +8213,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000087}, !- Summer Design Day Schedule Name @@ -8221,7 +8221,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 5425f540e3..e68b7d866e 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -3840,7 +3840,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0066-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3848,7 +3848,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3856,27 +3856,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {861aaa1f-c60f-4253-b7f8-a0fcb226f570}<23.9 && {861aaa1f-c60f-4253-b7f8-a0fcb226f570}>1.7, !- Program Line 1 - SET {45ba8051-dd5f-46ad-937f-11d6219483d9} = 29.4, !- Program Line 2 - SET {e695ebb4-11e5-4a88-9ae1-b5a4325272ee} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {861aaa1f-c60f-4253-b7f8-a0fcb226f570}<23.9 && {861aaa1f-c60f-4253-b7f8-a0fcb226f570}>1.7, !- Program Line 4 - SET {45ba8051-dd5f-46ad-937f-11d6219483d9} = 29.4, !- Program Line 5 - SET {e695ebb4-11e5-4a88-9ae1-b5a4325272ee} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {861aaa1f-c60f-4253-b7f8-a0fcb226f570}<23.9 && {861aaa1f-c60f-4253-b7f8-a0fcb226f570}>1.7, !- Program Line 7 - SET {45ba8051-dd5f-46ad-937f-11d6219483d9} = 29.4, !- Program Line 8 - SET {e695ebb4-11e5-4a88-9ae1-b5a4325272ee} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {861aaa1f-c60f-4253-b7f8-a0fcb226f570}<23.9 && {861aaa1f-c60f-4253-b7f8-a0fcb226f570}>1.7, !- Program Line 10 - SET {45ba8051-dd5f-46ad-937f-11d6219483d9} = 29.4, !- Program Line 11 - SET {e695ebb4-11e5-4a88-9ae1-b5a4325272ee} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {68f50e3e-f9f9-4cd1-8d34-3e65379a9b36}<23.9 && {68f50e3e-f9f9-4cd1-8d34-3e65379a9b36}>1.7, !- Program Line 1 + SET {860b80c6-4092-45f0-b045-fb4333ca6dba} = 29.4, !- Program Line 2 + SET {717beb49-ae47-4dd3-89d7-1250f995e42f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {68f50e3e-f9f9-4cd1-8d34-3e65379a9b36}<23.9 && {68f50e3e-f9f9-4cd1-8d34-3e65379a9b36}>1.7, !- Program Line 4 + SET {860b80c6-4092-45f0-b045-fb4333ca6dba} = 29.4, !- Program Line 5 + SET {717beb49-ae47-4dd3-89d7-1250f995e42f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {68f50e3e-f9f9-4cd1-8d34-3e65379a9b36}<23.9 && {68f50e3e-f9f9-4cd1-8d34-3e65379a9b36}>1.7, !- Program Line 7 + SET {860b80c6-4092-45f0-b045-fb4333ca6dba} = 29.4, !- Program Line 8 + SET {717beb49-ae47-4dd3-89d7-1250f995e42f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {68f50e3e-f9f9-4cd1-8d34-3e65379a9b36}<23.9 && {68f50e3e-f9f9-4cd1-8d34-3e65379a9b36}>1.7, !- Program Line 10 + SET {860b80c6-4092-45f0-b045-fb4333ca6dba} = 29.4, !- Program Line 11 + SET {717beb49-ae47-4dd3-89d7-1250f995e42f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {45ba8051-dd5f-46ad-937f-11d6219483d9} = NULL, !- Program Line 14 - SET {e695ebb4-11e5-4a88-9ae1-b5a4325272ee} = NULL, !- Program Line 15 + SET {860b80c6-4092-45f0-b045-fb4333ca6dba} = NULL, !- Program Line 14 + SET {717beb49-ae47-4dd3-89d7-1250f995e42f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -4905,211 +4905,211 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000064}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000076}, !- Inlet Port {00000000-0000-0000-0018-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000065}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000079}, !- Inlet Port {00000000-0000-0000-0018-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000066}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000084}, !- Inlet Port {00000000-0000-0000-0018-000000000085}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000067}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000068}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000081}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000069}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000074}, !- Inlet Port {00000000-0000-0000-0018-000000000083}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000070}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000082}, !- Inlet Port {00000000-0000-0000-0018-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000071}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000100}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000072}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000101}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000073}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000106}, !- Inlet Port {00000000-0000-0000-0018-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000074}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000075}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000076}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000096}, !- Inlet Port {00000000-0000-0000-0018-000000000105}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000104}, !- Inlet Port {00000000-0000-0000-0018-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000120}, !- Inlet Port {00000000-0000-0000-0018-000000000122}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000123}, !- Inlet Port {00000000-0000-0000-0018-000000000121}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000128}, !- Inlet Port {00000000-0000-0000-0018-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000124}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000125}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000118}, !- Inlet Port {00000000-0000-0000-0018-000000000127}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000126}, !- Inlet Port {00000000-0000-0000-0018-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000054}, !- Inlet Port {00000000-0000-0000-0018-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000057}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000062}, !- Inlet Port {00000000-0000-0000-0018-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000089}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000059}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000090}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000052}, !- Inlet Port {00000000-0000-0000-0018-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000091}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000060}, !- Inlet Port {00000000-0000-0000-0018-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000092}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000033}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000093}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000036}, !- Inlet Port {00000000-0000-0000-0018-000000000034}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000094}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000041}, !- Inlet Port {00000000-0000-0000-0018-000000000042}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000095}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000037}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000096}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000038}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000097}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000098}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port @@ -7009,7 +7009,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7024,7 +7024,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7033,7 +7033,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7042,7 +7042,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7057,7 +7057,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7066,7 +7066,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7075,7 +7075,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7090,7 +7090,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7099,7 +7099,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7108,7 +7108,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7123,7 +7123,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7132,7 +7132,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7141,7 +7141,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -7156,7 +7156,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7165,7 +7165,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8219,7 +8219,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000078}, !- Summer Design Day Schedule Name @@ -8227,7 +8227,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000081}, !- Summer Design Day Schedule Name @@ -8235,7 +8235,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000084}, !- Summer Design Day Schedule Name @@ -8243,7 +8243,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000087}, !- Summer Design Day Schedule Name @@ -8251,7 +8251,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-Electricity-CAN_AB_Calgary.osm index 932cd2a99c..d5d44d34e3 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-Electricity-CAN_AB_Calgary.osm @@ -2959,21 +2959,21 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6d2a697c-9188-4447-ba6d-246675a6cb3c}<23.9 && {6d2a697c-9188-4447-ba6d-246675a6cb3c}>1.7, !- Program Line 1 - SET {9729379c-eb1a-47be-a38f-b6fa6f257ac6} = 29.4, !- Program Line 2 - SET {4736c9fb-a37e-4ecf-8593-f9debdab544e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6d2a697c-9188-4447-ba6d-246675a6cb3c}<23.9 && {6d2a697c-9188-4447-ba6d-246675a6cb3c}>1.7, !- Program Line 4 - SET {9729379c-eb1a-47be-a38f-b6fa6f257ac6} = 29.4, !- Program Line 5 - SET {4736c9fb-a37e-4ecf-8593-f9debdab544e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6d2a697c-9188-4447-ba6d-246675a6cb3c}<23.9 && {6d2a697c-9188-4447-ba6d-246675a6cb3c}>1.7, !- Program Line 7 - SET {9729379c-eb1a-47be-a38f-b6fa6f257ac6} = 29.4, !- Program Line 8 - SET {4736c9fb-a37e-4ecf-8593-f9debdab544e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6d2a697c-9188-4447-ba6d-246675a6cb3c}<23.9 && {6d2a697c-9188-4447-ba6d-246675a6cb3c}>1.7, !- Program Line 10 - SET {9729379c-eb1a-47be-a38f-b6fa6f257ac6} = 29.4, !- Program Line 11 - SET {4736c9fb-a37e-4ecf-8593-f9debdab544e} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f45c60bf-194d-467a-b2ba-88b3e9b768a8}<23.9 && {f45c60bf-194d-467a-b2ba-88b3e9b768a8}>1.7, !- Program Line 1 + SET {45bd2c4c-6ffe-4564-a343-77b9a7c6bc8c} = 29.4, !- Program Line 2 + SET {4366d6df-81aa-4b42-aa20-280b9ab17898} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f45c60bf-194d-467a-b2ba-88b3e9b768a8}<23.9 && {f45c60bf-194d-467a-b2ba-88b3e9b768a8}>1.7, !- Program Line 4 + SET {45bd2c4c-6ffe-4564-a343-77b9a7c6bc8c} = 29.4, !- Program Line 5 + SET {4366d6df-81aa-4b42-aa20-280b9ab17898} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f45c60bf-194d-467a-b2ba-88b3e9b768a8}<23.9 && {f45c60bf-194d-467a-b2ba-88b3e9b768a8}>1.7, !- Program Line 7 + SET {45bd2c4c-6ffe-4564-a343-77b9a7c6bc8c} = 29.4, !- Program Line 8 + SET {4366d6df-81aa-4b42-aa20-280b9ab17898} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f45c60bf-194d-467a-b2ba-88b3e9b768a8}<23.9 && {f45c60bf-194d-467a-b2ba-88b3e9b768a8}>1.7, !- Program Line 10 + SET {45bd2c4c-6ffe-4564-a343-77b9a7c6bc8c} = 29.4, !- Program Line 11 + SET {4366d6df-81aa-4b42-aa20-280b9ab17898} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {9729379c-eb1a-47be-a38f-b6fa6f257ac6} = NULL, !- Program Line 14 - SET {4736c9fb-a37e-4ecf-8593-f9debdab544e} = NULL, !- Program Line 15 + SET {45bd2c4c-6ffe-4564-a343-77b9a7c6bc8c} = NULL, !- Program Line 14 + SET {4366d6df-81aa-4b42-aa20-280b9ab17898} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index fd6837c2a5..cbbf413d75 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -3445,7 +3445,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0064-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3453,7 +3453,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0064-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3461,27 +3461,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {539cf832-69c4-47e6-a7ff-c22293afa83e}<23.9 && {539cf832-69c4-47e6-a7ff-c22293afa83e}>1.7, !- Program Line 1 - SET {47047575-b5c7-497b-81b6-8f94147fbdbc} = 29.4, !- Program Line 2 - SET {2a1260a4-7a60-4c11-a22b-0e56b4c800d8} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {539cf832-69c4-47e6-a7ff-c22293afa83e}<23.9 && {539cf832-69c4-47e6-a7ff-c22293afa83e}>1.7, !- Program Line 4 - SET {47047575-b5c7-497b-81b6-8f94147fbdbc} = 29.4, !- Program Line 5 - SET {2a1260a4-7a60-4c11-a22b-0e56b4c800d8} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {539cf832-69c4-47e6-a7ff-c22293afa83e}<23.9 && {539cf832-69c4-47e6-a7ff-c22293afa83e}>1.7, !- Program Line 7 - SET {47047575-b5c7-497b-81b6-8f94147fbdbc} = 29.4, !- Program Line 8 - SET {2a1260a4-7a60-4c11-a22b-0e56b4c800d8} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {539cf832-69c4-47e6-a7ff-c22293afa83e}<23.9 && {539cf832-69c4-47e6-a7ff-c22293afa83e}>1.7, !- Program Line 10 - SET {47047575-b5c7-497b-81b6-8f94147fbdbc} = 29.4, !- Program Line 11 - SET {2a1260a4-7a60-4c11-a22b-0e56b4c800d8} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {17846489-e1b5-46d8-80fb-5b7045b625fa}<23.9 && {17846489-e1b5-46d8-80fb-5b7045b625fa}>1.7, !- Program Line 1 + SET {faed7f64-431e-44ae-a36a-fcbbee29dc10} = 29.4, !- Program Line 2 + SET {fc6787a9-12fc-4a9e-a2c5-9e2567764f90} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {17846489-e1b5-46d8-80fb-5b7045b625fa}<23.9 && {17846489-e1b5-46d8-80fb-5b7045b625fa}>1.7, !- Program Line 4 + SET {faed7f64-431e-44ae-a36a-fcbbee29dc10} = 29.4, !- Program Line 5 + SET {fc6787a9-12fc-4a9e-a2c5-9e2567764f90} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {17846489-e1b5-46d8-80fb-5b7045b625fa}<23.9 && {17846489-e1b5-46d8-80fb-5b7045b625fa}>1.7, !- Program Line 7 + SET {faed7f64-431e-44ae-a36a-fcbbee29dc10} = 29.4, !- Program Line 8 + SET {fc6787a9-12fc-4a9e-a2c5-9e2567764f90} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {17846489-e1b5-46d8-80fb-5b7045b625fa}<23.9 && {17846489-e1b5-46d8-80fb-5b7045b625fa}>1.7, !- Program Line 10 + SET {faed7f64-431e-44ae-a36a-fcbbee29dc10} = 29.4, !- Program Line 11 + SET {fc6787a9-12fc-4a9e-a2c5-9e2567764f90} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {47047575-b5c7-497b-81b6-8f94147fbdbc} = NULL, !- Program Line 14 - SET {2a1260a4-7a60-4c11-a22b-0e56b4c800d8} = NULL, !- Program Line 15 + SET {faed7f64-431e-44ae-a36a-fcbbee29dc10} = NULL, !- Program Line 14 + SET {fc6787a9-12fc-4a9e-a2c5-9e2567764f90} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -3611,7 +3611,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3637,7 +3637,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3663,7 +3663,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3689,7 +3689,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3715,7 +3715,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4496,271 +4496,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000040}, !- Inlet Port {00000000-0000-0000-0016-000000000042}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000041}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000043}, !- Inlet Port {00000000-0000-0000-0016-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000042}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000046}, !- Inlet Port {00000000-0000-0000-0016-000000000047}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000135}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000038}, !- Inlet Port {00000000-0000-0000-0016-000000000045}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000056}, !- Inlet Port {00000000-0000-0000-0016-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000059}, !- Inlet Port {00000000-0000-0000-0016-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000062}, !- Inlet Port {00000000-0000-0000-0016-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000141}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000054}, !- Inlet Port {00000000-0000-0000-0016-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000060}, !- Inlet Port {00000000-0000-0000-0016-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000072}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port {00000000-0000-0000-0016-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000057}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000142}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000058}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000059}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000070}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000060}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000076}, !- Inlet Port {00000000-0000-0000-0016-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000061}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000024}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000062}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000027}, !- Inlet Port {00000000-0000-0000-0016-000000000025}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000063}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000030}, !- Inlet Port {00000000-0000-0000-0016-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000064}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000124}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000065}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000129}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000066}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000067}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000068}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000131}, !- Inlet Port {00000000-0000-0000-0016-000000000132}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000069}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000133}, !- Inlet Port {00000000-0000-0000-0016-000000000134}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000070}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000137}, !- Inlet Port {00000000-0000-0000-0016-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000071}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000139}, !- Inlet Port {00000000-0000-0000-0016-000000000140}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000072}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000143}, !- Inlet Port {00000000-0000-0000-0016-000000000144}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000073}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000145}, !- Inlet Port {00000000-0000-0000-0016-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000074}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000125}, !- Inlet Port {00000000-0000-0000-0016-000000000126}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000075}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000127}, !- Inlet Port {00000000-0000-0000-0016-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000076}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000008}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000077}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000011}, !- Inlet Port {00000000-0000-0000-0016-000000000009}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000078}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port {00000000-0000-0000-0016-000000000015}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000079}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000080}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000153}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000081}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000082}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000083}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000149}, !- Inlet Port {00000000-0000-0000-0016-000000000150}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000084}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000151}, !- Inlet Port {00000000-0000-0000-0016-000000000152}; !- Outlet Port @@ -6549,7 +6549,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6564,7 +6564,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6573,7 +6573,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6582,7 +6582,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6597,7 +6597,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6606,7 +6606,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6615,7 +6615,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6630,7 +6630,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6639,7 +6639,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6648,7 +6648,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6663,7 +6663,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6672,7 +6672,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6681,7 +6681,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -6696,7 +6696,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6705,7 +6705,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7759,7 +7759,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000078}, !- Summer Design Day Schedule Name @@ -7767,7 +7767,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000081}, !- Summer Design Day Schedule Name @@ -7775,7 +7775,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000084}, !- Summer Design Day Schedule Name @@ -7783,7 +7783,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000087}, !- Summer Design Day Schedule Name @@ -7791,7 +7791,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 5e17ac1ae9..7f0e69058f 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -3475,7 +3475,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0064-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3483,7 +3483,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0064-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3491,27 +3491,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6e1a2187-0f55-4e67-9884-2a2e563dd35f}<23.9 && {6e1a2187-0f55-4e67-9884-2a2e563dd35f}>1.7, !- Program Line 1 - SET {f60051dc-a831-4704-b6bd-78ece2ab37fc} = 29.4, !- Program Line 2 - SET {fa0e556a-5c0f-4699-9e34-ed2c691ee8e6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6e1a2187-0f55-4e67-9884-2a2e563dd35f}<23.9 && {6e1a2187-0f55-4e67-9884-2a2e563dd35f}>1.7, !- Program Line 4 - SET {f60051dc-a831-4704-b6bd-78ece2ab37fc} = 29.4, !- Program Line 5 - SET {fa0e556a-5c0f-4699-9e34-ed2c691ee8e6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6e1a2187-0f55-4e67-9884-2a2e563dd35f}<23.9 && {6e1a2187-0f55-4e67-9884-2a2e563dd35f}>1.7, !- Program Line 7 - SET {f60051dc-a831-4704-b6bd-78ece2ab37fc} = 29.4, !- Program Line 8 - SET {fa0e556a-5c0f-4699-9e34-ed2c691ee8e6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6e1a2187-0f55-4e67-9884-2a2e563dd35f}<23.9 && {6e1a2187-0f55-4e67-9884-2a2e563dd35f}>1.7, !- Program Line 10 - SET {f60051dc-a831-4704-b6bd-78ece2ab37fc} = 29.4, !- Program Line 11 - SET {fa0e556a-5c0f-4699-9e34-ed2c691ee8e6} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3e82215d-00c0-41b6-b659-b50933250885}<23.9 && {3e82215d-00c0-41b6-b659-b50933250885}>1.7, !- Program Line 1 + SET {147c62b7-ec70-4035-9e67-805017b89bee} = 29.4, !- Program Line 2 + SET {b54dc5b7-2790-4031-a7ba-6070b98a04ac} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3e82215d-00c0-41b6-b659-b50933250885}<23.9 && {3e82215d-00c0-41b6-b659-b50933250885}>1.7, !- Program Line 4 + SET {147c62b7-ec70-4035-9e67-805017b89bee} = 29.4, !- Program Line 5 + SET {b54dc5b7-2790-4031-a7ba-6070b98a04ac} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3e82215d-00c0-41b6-b659-b50933250885}<23.9 && {3e82215d-00c0-41b6-b659-b50933250885}>1.7, !- Program Line 7 + SET {147c62b7-ec70-4035-9e67-805017b89bee} = 29.4, !- Program Line 8 + SET {b54dc5b7-2790-4031-a7ba-6070b98a04ac} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3e82215d-00c0-41b6-b659-b50933250885}<23.9 && {3e82215d-00c0-41b6-b659-b50933250885}>1.7, !- Program Line 10 + SET {147c62b7-ec70-4035-9e67-805017b89bee} = 29.4, !- Program Line 11 + SET {b54dc5b7-2790-4031-a7ba-6070b98a04ac} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f60051dc-a831-4704-b6bd-78ece2ab37fc} = NULL, !- Program Line 14 - SET {fa0e556a-5c0f-4699-9e34-ed2c691ee8e6} = NULL, !- Program Line 15 + SET {147c62b7-ec70-4035-9e67-805017b89bee} = NULL, !- Program Line 14 + SET {b54dc5b7-2790-4031-a7ba-6070b98a04ac} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -3641,7 +3641,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3667,7 +3667,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3693,7 +3693,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3719,7 +3719,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3745,7 +3745,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4526,271 +4526,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000040}, !- Inlet Port {00000000-0000-0000-0016-000000000042}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000041}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000043}, !- Inlet Port {00000000-0000-0000-0016-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000042}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000046}, !- Inlet Port {00000000-0000-0000-0016-000000000047}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000135}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000038}, !- Inlet Port {00000000-0000-0000-0016-000000000045}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000056}, !- Inlet Port {00000000-0000-0000-0016-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000059}, !- Inlet Port {00000000-0000-0000-0016-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000062}, !- Inlet Port {00000000-0000-0000-0016-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000141}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000054}, !- Inlet Port {00000000-0000-0000-0016-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000060}, !- Inlet Port {00000000-0000-0000-0016-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000072}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port {00000000-0000-0000-0016-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000057}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000142}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000058}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000059}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000070}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000060}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000076}, !- Inlet Port {00000000-0000-0000-0016-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000061}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000024}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000062}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000027}, !- Inlet Port {00000000-0000-0000-0016-000000000025}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000063}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000030}, !- Inlet Port {00000000-0000-0000-0016-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000064}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000124}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000065}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000129}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000066}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000067}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000068}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000131}, !- Inlet Port {00000000-0000-0000-0016-000000000132}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000069}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000133}, !- Inlet Port {00000000-0000-0000-0016-000000000134}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000070}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000137}, !- Inlet Port {00000000-0000-0000-0016-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000071}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000139}, !- Inlet Port {00000000-0000-0000-0016-000000000140}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000072}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000143}, !- Inlet Port {00000000-0000-0000-0016-000000000144}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000073}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000145}, !- Inlet Port {00000000-0000-0000-0016-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000074}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000125}, !- Inlet Port {00000000-0000-0000-0016-000000000126}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000075}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000127}, !- Inlet Port {00000000-0000-0000-0016-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000076}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000008}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000077}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000011}, !- Inlet Port {00000000-0000-0000-0016-000000000009}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000078}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port {00000000-0000-0000-0016-000000000015}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000079}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000080}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000153}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000081}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000082}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000083}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000149}, !- Inlet Port {00000000-0000-0000-0016-000000000150}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000084}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000151}, !- Inlet Port {00000000-0000-0000-0016-000000000152}; !- Outlet Port @@ -6579,7 +6579,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6594,7 +6594,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6603,7 +6603,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6612,7 +6612,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6627,7 +6627,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6636,7 +6636,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6645,7 +6645,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6660,7 +6660,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6669,7 +6669,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6678,7 +6678,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6693,7 +6693,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6702,7 +6702,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6711,7 +6711,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -6726,7 +6726,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6735,7 +6735,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7789,7 +7789,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000078}, !- Summer Design Day Schedule Name @@ -7797,7 +7797,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000081}, !- Summer Design Day Schedule Name @@ -7805,7 +7805,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000084}, !- Summer Design Day Schedule Name @@ -7813,7 +7813,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000087}, !- Summer Design Day Schedule Name @@ -7821,7 +7821,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGas-CAN_AB_Calgary.osm index 65c5d1a13d..dce2b4b458 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGas-CAN_AB_Calgary.osm @@ -3464,21 +3464,21 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8d70fe4a-3d55-4990-817c-1e348d8c5739}<23.9 && {8d70fe4a-3d55-4990-817c-1e348d8c5739}>1.7, !- Program Line 1 - SET {2d44973a-e566-454a-a346-84e86284cf32} = 29.4, !- Program Line 2 - SET {539956db-47f2-4a9a-8448-f585e3caaaa0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8d70fe4a-3d55-4990-817c-1e348d8c5739}<23.9 && {8d70fe4a-3d55-4990-817c-1e348d8c5739}>1.7, !- Program Line 4 - SET {2d44973a-e566-454a-a346-84e86284cf32} = 29.4, !- Program Line 5 - SET {539956db-47f2-4a9a-8448-f585e3caaaa0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8d70fe4a-3d55-4990-817c-1e348d8c5739}<23.9 && {8d70fe4a-3d55-4990-817c-1e348d8c5739}>1.7, !- Program Line 7 - SET {2d44973a-e566-454a-a346-84e86284cf32} = 29.4, !- Program Line 8 - SET {539956db-47f2-4a9a-8448-f585e3caaaa0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8d70fe4a-3d55-4990-817c-1e348d8c5739}<23.9 && {8d70fe4a-3d55-4990-817c-1e348d8c5739}>1.7, !- Program Line 10 - SET {2d44973a-e566-454a-a346-84e86284cf32} = 29.4, !- Program Line 11 - SET {539956db-47f2-4a9a-8448-f585e3caaaa0} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d212b73e-57c9-4267-a65d-ccf2b1bbf4db}<23.9 && {d212b73e-57c9-4267-a65d-ccf2b1bbf4db}>1.7, !- Program Line 1 + SET {a1d5aacb-bd80-4863-9585-2bcaae7fdaf9} = 29.4, !- Program Line 2 + SET {8d69decd-1204-4ef1-b142-d8946b200d5d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d212b73e-57c9-4267-a65d-ccf2b1bbf4db}<23.9 && {d212b73e-57c9-4267-a65d-ccf2b1bbf4db}>1.7, !- Program Line 4 + SET {a1d5aacb-bd80-4863-9585-2bcaae7fdaf9} = 29.4, !- Program Line 5 + SET {8d69decd-1204-4ef1-b142-d8946b200d5d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d212b73e-57c9-4267-a65d-ccf2b1bbf4db}<23.9 && {d212b73e-57c9-4267-a65d-ccf2b1bbf4db}>1.7, !- Program Line 7 + SET {a1d5aacb-bd80-4863-9585-2bcaae7fdaf9} = 29.4, !- Program Line 8 + SET {8d69decd-1204-4ef1-b142-d8946b200d5d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d212b73e-57c9-4267-a65d-ccf2b1bbf4db}<23.9 && {d212b73e-57c9-4267-a65d-ccf2b1bbf4db}>1.7, !- Program Line 10 + SET {a1d5aacb-bd80-4863-9585-2bcaae7fdaf9} = 29.4, !- Program Line 11 + SET {8d69decd-1204-4ef1-b142-d8946b200d5d} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {2d44973a-e566-454a-a346-84e86284cf32} = NULL, !- Program Line 14 - SET {539956db-47f2-4a9a-8448-f585e3caaaa0} = NULL, !- Program Line 15 + SET {a1d5aacb-bd80-4863-9585-2bcaae7fdaf9} = NULL, !- Program Line 14 + SET {8d69decd-1204-4ef1-b142-d8946b200d5d} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 64fe0884ea..3499656b67 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -3920,7 +3920,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0067-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3928,7 +3928,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0067-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3936,27 +3936,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {39820d9f-104f-4915-90a6-7e603a0e15a6}<23.9 && {39820d9f-104f-4915-90a6-7e603a0e15a6}>1.7, !- Program Line 1 - SET {18d4e728-0bb0-4af7-a461-fae21e872aab} = 29.4, !- Program Line 2 - SET {2d19084f-ba96-4059-a724-17bf6bddb06a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {39820d9f-104f-4915-90a6-7e603a0e15a6}<23.9 && {39820d9f-104f-4915-90a6-7e603a0e15a6}>1.7, !- Program Line 4 - SET {18d4e728-0bb0-4af7-a461-fae21e872aab} = 29.4, !- Program Line 5 - SET {2d19084f-ba96-4059-a724-17bf6bddb06a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {39820d9f-104f-4915-90a6-7e603a0e15a6}<23.9 && {39820d9f-104f-4915-90a6-7e603a0e15a6}>1.7, !- Program Line 7 - SET {18d4e728-0bb0-4af7-a461-fae21e872aab} = 29.4, !- Program Line 8 - SET {2d19084f-ba96-4059-a724-17bf6bddb06a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {39820d9f-104f-4915-90a6-7e603a0e15a6}<23.9 && {39820d9f-104f-4915-90a6-7e603a0e15a6}>1.7, !- Program Line 10 - SET {18d4e728-0bb0-4af7-a461-fae21e872aab} = 29.4, !- Program Line 11 - SET {2d19084f-ba96-4059-a724-17bf6bddb06a} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b6cdf4cd-d5f1-4546-8e00-1f5984205a7e}<23.9 && {b6cdf4cd-d5f1-4546-8e00-1f5984205a7e}>1.7, !- Program Line 1 + SET {6cb7d23e-5e51-4136-9f14-f5d6c37416d1} = 29.4, !- Program Line 2 + SET {4a353fcf-07f4-470f-bea9-cdc619d64c77} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b6cdf4cd-d5f1-4546-8e00-1f5984205a7e}<23.9 && {b6cdf4cd-d5f1-4546-8e00-1f5984205a7e}>1.7, !- Program Line 4 + SET {6cb7d23e-5e51-4136-9f14-f5d6c37416d1} = 29.4, !- Program Line 5 + SET {4a353fcf-07f4-470f-bea9-cdc619d64c77} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b6cdf4cd-d5f1-4546-8e00-1f5984205a7e}<23.9 && {b6cdf4cd-d5f1-4546-8e00-1f5984205a7e}>1.7, !- Program Line 7 + SET {6cb7d23e-5e51-4136-9f14-f5d6c37416d1} = 29.4, !- Program Line 8 + SET {4a353fcf-07f4-470f-bea9-cdc619d64c77} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b6cdf4cd-d5f1-4546-8e00-1f5984205a7e}<23.9 && {b6cdf4cd-d5f1-4546-8e00-1f5984205a7e}>1.7, !- Program Line 10 + SET {6cb7d23e-5e51-4136-9f14-f5d6c37416d1} = 29.4, !- Program Line 11 + SET {4a353fcf-07f4-470f-bea9-cdc619d64c77} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {18d4e728-0bb0-4af7-a461-fae21e872aab} = NULL, !- Program Line 14 - SET {2d19084f-ba96-4059-a724-17bf6bddb06a} = NULL, !- Program Line 15 + SET {6cb7d23e-5e51-4136-9f14-f5d6c37416d1} = NULL, !- Program Line 14 + SET {4a353fcf-07f4-470f-bea9-cdc619d64c77} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -4086,7 +4086,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4112,7 +4112,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4138,7 +4138,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4164,7 +4164,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4190,7 +4190,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -5103,271 +5103,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000062}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000072}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000063}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000075}, !- Inlet Port {00000000-0000-0000-0018-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000064}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000078}, !- Inlet Port {00000000-0000-0000-0018-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000065}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000174}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000066}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000179}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000067}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000070}, !- Inlet Port {00000000-0000-0000-0018-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000068}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000076}, !- Inlet Port {00000000-0000-0000-0018-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000069}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000092}, !- Inlet Port {00000000-0000-0000-0018-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000070}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000095}, !- Inlet Port {00000000-0000-0000-0018-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000071}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000072}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000180}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000073}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000185}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000074}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000090}, !- Inlet Port {00000000-0000-0000-0018-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000075}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000096}, !- Inlet Port {00000000-0000-0000-0018-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000076}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000112}, !- Inlet Port {00000000-0000-0000-0018-000000000114}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000077}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000115}, !- Inlet Port {00000000-0000-0000-0018-000000000113}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000078}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000118}, !- Inlet Port {00000000-0000-0000-0018-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000079}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000186}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000080}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000191}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000081}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000110}, !- Inlet Port {00000000-0000-0000-0018-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000082}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000116}, !- Inlet Port {00000000-0000-0000-0018-000000000111}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000083}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000052}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000084}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000055}, !- Inlet Port {00000000-0000-0000-0018-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000085}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000058}, !- Inlet Port {00000000-0000-0000-0018-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000086}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000087}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000173}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000088}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000089}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000090}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000175}, !- Inlet Port {00000000-0000-0000-0018-000000000176}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000091}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000177}, !- Inlet Port {00000000-0000-0000-0018-000000000178}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000092}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000181}, !- Inlet Port {00000000-0000-0000-0018-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000093}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000183}, !- Inlet Port {00000000-0000-0000-0018-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000094}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000187}, !- Inlet Port {00000000-0000-0000-0018-000000000188}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000095}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000189}, !- Inlet Port {00000000-0000-0000-0018-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000096}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000169}, !- Inlet Port {00000000-0000-0000-0018-000000000170}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000097}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000171}, !- Inlet Port {00000000-0000-0000-0018-000000000172}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000098}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000033}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000099}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000036}, !- Inlet Port {00000000-0000-0000-0018-000000000034}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000100}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port {00000000-0000-0000-0018-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000101}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000102}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000197}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000103}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000104}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000105}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000193}, !- Inlet Port {00000000-0000-0000-0018-000000000194}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000106}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000195}, !- Inlet Port {00000000-0000-0000-0018-000000000196}; !- Outlet Port @@ -7237,7 +7237,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7252,7 +7252,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7261,7 +7261,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7270,7 +7270,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7285,7 +7285,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7294,7 +7294,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7303,7 +7303,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7318,7 +7318,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7327,7 +7327,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7336,7 +7336,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7351,7 +7351,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7360,7 +7360,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7369,7 +7369,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -7384,7 +7384,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7393,7 +7393,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8447,7 +8447,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000078}, !- Summer Design Day Schedule Name @@ -8455,7 +8455,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000081}, !- Summer Design Day Schedule Name @@ -8463,7 +8463,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000084}, !- Summer Design Day Schedule Name @@ -8471,7 +8471,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000087}, !- Summer Design Day Schedule Name @@ -8479,7 +8479,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 7edb5a7628..c9280c7b10 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -3950,7 +3950,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0067-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3958,7 +3958,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0067-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3966,27 +3966,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9cf3f359-8504-4a28-852b-f1b620d7d63a}<23.9 && {9cf3f359-8504-4a28-852b-f1b620d7d63a}>1.7, !- Program Line 1 - SET {dee57b8c-4a08-4f0b-97c8-0845ad3153a9} = 29.4, !- Program Line 2 - SET {4d1d83b3-0d72-4ca5-88b7-e0825a91270b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9cf3f359-8504-4a28-852b-f1b620d7d63a}<23.9 && {9cf3f359-8504-4a28-852b-f1b620d7d63a}>1.7, !- Program Line 4 - SET {dee57b8c-4a08-4f0b-97c8-0845ad3153a9} = 29.4, !- Program Line 5 - SET {4d1d83b3-0d72-4ca5-88b7-e0825a91270b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9cf3f359-8504-4a28-852b-f1b620d7d63a}<23.9 && {9cf3f359-8504-4a28-852b-f1b620d7d63a}>1.7, !- Program Line 7 - SET {dee57b8c-4a08-4f0b-97c8-0845ad3153a9} = 29.4, !- Program Line 8 - SET {4d1d83b3-0d72-4ca5-88b7-e0825a91270b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9cf3f359-8504-4a28-852b-f1b620d7d63a}<23.9 && {9cf3f359-8504-4a28-852b-f1b620d7d63a}>1.7, !- Program Line 10 - SET {dee57b8c-4a08-4f0b-97c8-0845ad3153a9} = 29.4, !- Program Line 11 - SET {4d1d83b3-0d72-4ca5-88b7-e0825a91270b} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {03ec0cc5-7587-441f-bf0a-de8245ae5a41}<23.9 && {03ec0cc5-7587-441f-bf0a-de8245ae5a41}>1.7, !- Program Line 1 + SET {f50658a9-9cc6-4fce-b39c-32332939a966} = 29.4, !- Program Line 2 + SET {8e333d8a-b8a4-4543-b229-4d7c43fd1ccf} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {03ec0cc5-7587-441f-bf0a-de8245ae5a41}<23.9 && {03ec0cc5-7587-441f-bf0a-de8245ae5a41}>1.7, !- Program Line 4 + SET {f50658a9-9cc6-4fce-b39c-32332939a966} = 29.4, !- Program Line 5 + SET {8e333d8a-b8a4-4543-b229-4d7c43fd1ccf} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {03ec0cc5-7587-441f-bf0a-de8245ae5a41}<23.9 && {03ec0cc5-7587-441f-bf0a-de8245ae5a41}>1.7, !- Program Line 7 + SET {f50658a9-9cc6-4fce-b39c-32332939a966} = 29.4, !- Program Line 8 + SET {8e333d8a-b8a4-4543-b229-4d7c43fd1ccf} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {03ec0cc5-7587-441f-bf0a-de8245ae5a41}<23.9 && {03ec0cc5-7587-441f-bf0a-de8245ae5a41}>1.7, !- Program Line 10 + SET {f50658a9-9cc6-4fce-b39c-32332939a966} = 29.4, !- Program Line 11 + SET {8e333d8a-b8a4-4543-b229-4d7c43fd1ccf} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {dee57b8c-4a08-4f0b-97c8-0845ad3153a9} = NULL, !- Program Line 14 - SET {4d1d83b3-0d72-4ca5-88b7-e0825a91270b} = NULL, !- Program Line 15 + SET {f50658a9-9cc6-4fce-b39c-32332939a966} = NULL, !- Program Line 14 + SET {8e333d8a-b8a4-4543-b229-4d7c43fd1ccf} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -4116,7 +4116,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4142,7 +4142,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4168,7 +4168,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4194,7 +4194,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4220,7 +4220,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -5133,271 +5133,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000062}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000072}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000063}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000075}, !- Inlet Port {00000000-0000-0000-0018-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000064}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000078}, !- Inlet Port {00000000-0000-0000-0018-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000065}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000174}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000066}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000179}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000067}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000070}, !- Inlet Port {00000000-0000-0000-0018-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000068}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000076}, !- Inlet Port {00000000-0000-0000-0018-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000069}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000092}, !- Inlet Port {00000000-0000-0000-0018-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000070}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000095}, !- Inlet Port {00000000-0000-0000-0018-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000071}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000072}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000180}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000073}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000185}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000074}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000090}, !- Inlet Port {00000000-0000-0000-0018-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000075}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000096}, !- Inlet Port {00000000-0000-0000-0018-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000076}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000112}, !- Inlet Port {00000000-0000-0000-0018-000000000114}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000077}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000115}, !- Inlet Port {00000000-0000-0000-0018-000000000113}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000078}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000118}, !- Inlet Port {00000000-0000-0000-0018-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000079}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000186}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000080}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000191}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000081}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000110}, !- Inlet Port {00000000-0000-0000-0018-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000082}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000116}, !- Inlet Port {00000000-0000-0000-0018-000000000111}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000083}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000052}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000084}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000055}, !- Inlet Port {00000000-0000-0000-0018-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000085}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000058}, !- Inlet Port {00000000-0000-0000-0018-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000086}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000087}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000173}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000088}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000089}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000090}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000175}, !- Inlet Port {00000000-0000-0000-0018-000000000176}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000091}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000177}, !- Inlet Port {00000000-0000-0000-0018-000000000178}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000092}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000181}, !- Inlet Port {00000000-0000-0000-0018-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000093}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000183}, !- Inlet Port {00000000-0000-0000-0018-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000094}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000187}, !- Inlet Port {00000000-0000-0000-0018-000000000188}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000095}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000189}, !- Inlet Port {00000000-0000-0000-0018-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000096}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000169}, !- Inlet Port {00000000-0000-0000-0018-000000000170}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000097}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000171}, !- Inlet Port {00000000-0000-0000-0018-000000000172}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000098}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000033}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000099}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000036}, !- Inlet Port {00000000-0000-0000-0018-000000000034}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000100}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port {00000000-0000-0000-0018-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000101}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000102}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000197}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000103}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000104}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000105}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000193}, !- Inlet Port {00000000-0000-0000-0018-000000000194}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000106}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000195}, !- Inlet Port {00000000-0000-0000-0018-000000000196}; !- Outlet Port @@ -7267,7 +7267,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7282,7 +7282,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7291,7 +7291,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7300,7 +7300,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7315,7 +7315,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7324,7 +7324,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7333,7 +7333,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7348,7 +7348,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7357,7 +7357,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7366,7 +7366,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7381,7 +7381,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7390,7 +7390,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7399,7 +7399,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -7414,7 +7414,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7423,7 +7423,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8477,7 +8477,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000078}, !- Summer Design Day Schedule Name @@ -8485,7 +8485,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000081}, !- Summer Design Day Schedule Name @@ -8493,7 +8493,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000084}, !- Summer Design Day Schedule Name @@ -8501,7 +8501,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000087}, !- Summer Design Day Schedule Name @@ -8509,7 +8509,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-Electricity-CAN_AB_Calgary.osm index d42294cb5e..64fe523ff2 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-Electricity-CAN_AB_Calgary.osm @@ -2959,21 +2959,21 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f5f4e638-5ad8-4bc2-9f1d-588ad3c5d7a2}<23.9 && {f5f4e638-5ad8-4bc2-9f1d-588ad3c5d7a2}>1.7, !- Program Line 1 - SET {f812d364-0ced-4bb0-8958-2e65ccd2d74b} = 29.4, !- Program Line 2 - SET {bc42f072-2a93-4e1f-ac87-7b096f596fe0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f5f4e638-5ad8-4bc2-9f1d-588ad3c5d7a2}<23.9 && {f5f4e638-5ad8-4bc2-9f1d-588ad3c5d7a2}>1.7, !- Program Line 4 - SET {f812d364-0ced-4bb0-8958-2e65ccd2d74b} = 29.4, !- Program Line 5 - SET {bc42f072-2a93-4e1f-ac87-7b096f596fe0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f5f4e638-5ad8-4bc2-9f1d-588ad3c5d7a2}<23.9 && {f5f4e638-5ad8-4bc2-9f1d-588ad3c5d7a2}>1.7, !- Program Line 7 - SET {f812d364-0ced-4bb0-8958-2e65ccd2d74b} = 29.4, !- Program Line 8 - SET {bc42f072-2a93-4e1f-ac87-7b096f596fe0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f5f4e638-5ad8-4bc2-9f1d-588ad3c5d7a2}<23.9 && {f5f4e638-5ad8-4bc2-9f1d-588ad3c5d7a2}>1.7, !- Program Line 10 - SET {f812d364-0ced-4bb0-8958-2e65ccd2d74b} = 29.4, !- Program Line 11 - SET {bc42f072-2a93-4e1f-ac87-7b096f596fe0} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e3ff287c-e1a2-40ee-a9d9-7c38721cb685}<23.9 && {e3ff287c-e1a2-40ee-a9d9-7c38721cb685}>1.7, !- Program Line 1 + SET {d5790d5f-48e8-4eb9-ba16-6812725d0755} = 29.4, !- Program Line 2 + SET {d07ad5b1-546d-4403-b56d-b8ea540da81e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e3ff287c-e1a2-40ee-a9d9-7c38721cb685}<23.9 && {e3ff287c-e1a2-40ee-a9d9-7c38721cb685}>1.7, !- Program Line 4 + SET {d5790d5f-48e8-4eb9-ba16-6812725d0755} = 29.4, !- Program Line 5 + SET {d07ad5b1-546d-4403-b56d-b8ea540da81e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e3ff287c-e1a2-40ee-a9d9-7c38721cb685}<23.9 && {e3ff287c-e1a2-40ee-a9d9-7c38721cb685}>1.7, !- Program Line 7 + SET {d5790d5f-48e8-4eb9-ba16-6812725d0755} = 29.4, !- Program Line 8 + SET {d07ad5b1-546d-4403-b56d-b8ea540da81e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e3ff287c-e1a2-40ee-a9d9-7c38721cb685}<23.9 && {e3ff287c-e1a2-40ee-a9d9-7c38721cb685}>1.7, !- Program Line 10 + SET {d5790d5f-48e8-4eb9-ba16-6812725d0755} = 29.4, !- Program Line 11 + SET {d07ad5b1-546d-4403-b56d-b8ea540da81e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f812d364-0ced-4bb0-8958-2e65ccd2d74b} = NULL, !- Program Line 14 - SET {bc42f072-2a93-4e1f-ac87-7b096f596fe0} = NULL, !- Program Line 15 + SET {d5790d5f-48e8-4eb9-ba16-6812725d0755} = NULL, !- Program Line 14 + SET {d07ad5b1-546d-4403-b56d-b8ea540da81e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index fb11feb6b5..07ce6998c9 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -3563,7 +3563,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0040-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0057-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3589,7 +3589,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0040-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0057-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3615,7 +3615,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0040-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0057-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3641,7 +3641,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0040-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0057-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3667,7 +3667,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0040-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0057-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4448,271 +4448,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0046-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000040}, !- Inlet Port {00000000-0000-0000-0016-000000000042}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000041}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000043}, !- Inlet Port {00000000-0000-0000-0016-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000042}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000046}, !- Inlet Port {00000000-0000-0000-0016-000000000047}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000135}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000038}, !- Inlet Port {00000000-0000-0000-0016-000000000045}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000056}, !- Inlet Port {00000000-0000-0000-0016-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000059}, !- Inlet Port {00000000-0000-0000-0016-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000062}, !- Inlet Port {00000000-0000-0000-0016-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000141}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000054}, !- Inlet Port {00000000-0000-0000-0016-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000060}, !- Inlet Port {00000000-0000-0000-0016-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000072}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port {00000000-0000-0000-0016-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000057}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000142}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000058}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000059}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000070}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000060}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000076}, !- Inlet Port {00000000-0000-0000-0016-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000061}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000024}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000062}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000027}, !- Inlet Port {00000000-0000-0000-0016-000000000025}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000063}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000030}, !- Inlet Port {00000000-0000-0000-0016-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000064}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000124}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000065}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000129}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000066}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000067}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000068}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000131}, !- Inlet Port {00000000-0000-0000-0016-000000000132}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000069}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000133}, !- Inlet Port {00000000-0000-0000-0016-000000000134}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000070}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000137}, !- Inlet Port {00000000-0000-0000-0016-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000071}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000139}, !- Inlet Port {00000000-0000-0000-0016-000000000140}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000072}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000143}, !- Inlet Port {00000000-0000-0000-0016-000000000144}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000073}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000145}, !- Inlet Port {00000000-0000-0000-0016-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000074}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000125}, !- Inlet Port {00000000-0000-0000-0016-000000000126}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000075}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000127}, !- Inlet Port {00000000-0000-0000-0016-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000076}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000008}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000077}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000011}, !- Inlet Port {00000000-0000-0000-0016-000000000009}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000078}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port {00000000-0000-0000-0016-000000000015}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000079}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000080}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000153}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000081}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000082}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000083}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000149}, !- Inlet Port {00000000-0000-0000-0016-000000000150}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000084}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000151}, !- Inlet Port {00000000-0000-0000-0016-000000000152}; !- Outlet Port @@ -6489,7 +6489,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6504,7 +6504,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6513,7 +6513,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6522,7 +6522,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6537,7 +6537,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6546,7 +6546,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6555,7 +6555,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6570,7 +6570,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6579,7 +6579,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6588,7 +6588,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6603,7 +6603,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6612,7 +6612,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6621,7 +6621,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -6636,7 +6636,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6645,7 +6645,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7699,7 +7699,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000078}, !- Summer Design Day Schedule Name @@ -7707,7 +7707,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000081}, !- Summer Design Day Schedule Name @@ -7715,7 +7715,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000084}, !- Summer Design Day Schedule Name @@ -7723,7 +7723,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000087}, !- Summer Design Day Schedule Name @@ -7731,7 +7731,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index e28429cc8e..a61fe9b77f 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -3593,7 +3593,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0040-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0057-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3619,7 +3619,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0040-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0057-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3645,7 +3645,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0040-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0057-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3671,7 +3671,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0040-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0057-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3697,7 +3697,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0040-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0057-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4478,271 +4478,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0046-000000000040}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000040}, !- Inlet Port {00000000-0000-0000-0016-000000000042}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000041}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000043}, !- Inlet Port {00000000-0000-0000-0016-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000042}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000046}, !- Inlet Port {00000000-0000-0000-0016-000000000047}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000043}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000044}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000135}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000045}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000038}, !- Inlet Port {00000000-0000-0000-0016-000000000045}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000046}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000047}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000056}, !- Inlet Port {00000000-0000-0000-0016-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000048}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000059}, !- Inlet Port {00000000-0000-0000-0016-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000049}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000062}, !- Inlet Port {00000000-0000-0000-0016-000000000063}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000141}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000054}, !- Inlet Port {00000000-0000-0000-0016-000000000061}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000060}, !- Inlet Port {00000000-0000-0000-0016-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000072}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port {00000000-0000-0000-0016-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000057}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000142}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000058}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000059}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000070}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000060}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000076}, !- Inlet Port {00000000-0000-0000-0016-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000061}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000024}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000062}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000027}, !- Inlet Port {00000000-0000-0000-0016-000000000025}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000063}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000030}, !- Inlet Port {00000000-0000-0000-0016-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000064}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000124}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000065}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000129}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000066}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000022}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000067}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000023}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000068}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000131}, !- Inlet Port {00000000-0000-0000-0016-000000000132}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000069}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000133}, !- Inlet Port {00000000-0000-0000-0016-000000000134}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000070}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000137}, !- Inlet Port {00000000-0000-0000-0016-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000071}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000139}, !- Inlet Port {00000000-0000-0000-0016-000000000140}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000072}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000143}, !- Inlet Port {00000000-0000-0000-0016-000000000144}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000073}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000145}, !- Inlet Port {00000000-0000-0000-0016-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000074}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000125}, !- Inlet Port {00000000-0000-0000-0016-000000000126}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000075}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000127}, !- Inlet Port {00000000-0000-0000-0016-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000076}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000008}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000077}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000011}, !- Inlet Port {00000000-0000-0000-0016-000000000009}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000078}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port {00000000-0000-0000-0016-000000000015}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000079}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000080}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000153}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000081}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000006}, !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000082}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000007}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000083}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000149}, !- Inlet Port {00000000-0000-0000-0016-000000000150}; !- Outlet Port OS:Node, {00000000-0000-0000-0046-000000000084}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000151}, !- Inlet Port {00000000-0000-0000-0016-000000000152}; !- Outlet Port @@ -6519,7 +6519,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6534,7 +6534,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6543,7 +6543,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6552,7 +6552,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6567,7 +6567,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6576,7 +6576,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6585,7 +6585,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6600,7 +6600,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6609,7 +6609,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6618,7 +6618,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -6633,7 +6633,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6642,7 +6642,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6651,7 +6651,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -6666,7 +6666,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -6675,7 +6675,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7729,7 +7729,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000078}, !- Summer Design Day Schedule Name @@ -7737,7 +7737,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000081}, !- Summer Design Day Schedule Name @@ -7745,7 +7745,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000084}, !- Summer Design Day Schedule Name @@ -7753,7 +7753,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000087}, !- Summer Design Day Schedule Name @@ -7761,7 +7761,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGas-CAN_AB_Calgary.osm index 2652685f72..cb8a7ff768 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGas-CAN_AB_Calgary.osm @@ -3464,21 +3464,21 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b65cf9b1-36dd-4b69-96fb-5ac17e1d2bf2}<23.9 && {b65cf9b1-36dd-4b69-96fb-5ac17e1d2bf2}>1.7, !- Program Line 1 - SET {238d58c1-f954-4df2-8052-4f7a996586ee} = 29.4, !- Program Line 2 - SET {6a9e6f08-eaa3-44aa-beb1-09ba01101747} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b65cf9b1-36dd-4b69-96fb-5ac17e1d2bf2}<23.9 && {b65cf9b1-36dd-4b69-96fb-5ac17e1d2bf2}>1.7, !- Program Line 4 - SET {238d58c1-f954-4df2-8052-4f7a996586ee} = 29.4, !- Program Line 5 - SET {6a9e6f08-eaa3-44aa-beb1-09ba01101747} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b65cf9b1-36dd-4b69-96fb-5ac17e1d2bf2}<23.9 && {b65cf9b1-36dd-4b69-96fb-5ac17e1d2bf2}>1.7, !- Program Line 7 - SET {238d58c1-f954-4df2-8052-4f7a996586ee} = 29.4, !- Program Line 8 - SET {6a9e6f08-eaa3-44aa-beb1-09ba01101747} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b65cf9b1-36dd-4b69-96fb-5ac17e1d2bf2}<23.9 && {b65cf9b1-36dd-4b69-96fb-5ac17e1d2bf2}>1.7, !- Program Line 10 - SET {238d58c1-f954-4df2-8052-4f7a996586ee} = 29.4, !- Program Line 11 - SET {6a9e6f08-eaa3-44aa-beb1-09ba01101747} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {495502bd-cdbf-4983-b7fc-d571fada70a8}<23.9 && {495502bd-cdbf-4983-b7fc-d571fada70a8}>1.7, !- Program Line 1 + SET {c9dbfdd1-acd1-4234-9e80-c74befb1bf90} = 29.4, !- Program Line 2 + SET {7ecff041-d739-439b-b71d-f21da47d24fa} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {495502bd-cdbf-4983-b7fc-d571fada70a8}<23.9 && {495502bd-cdbf-4983-b7fc-d571fada70a8}>1.7, !- Program Line 4 + SET {c9dbfdd1-acd1-4234-9e80-c74befb1bf90} = 29.4, !- Program Line 5 + SET {7ecff041-d739-439b-b71d-f21da47d24fa} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {495502bd-cdbf-4983-b7fc-d571fada70a8}<23.9 && {495502bd-cdbf-4983-b7fc-d571fada70a8}>1.7, !- Program Line 7 + SET {c9dbfdd1-acd1-4234-9e80-c74befb1bf90} = 29.4, !- Program Line 8 + SET {7ecff041-d739-439b-b71d-f21da47d24fa} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {495502bd-cdbf-4983-b7fc-d571fada70a8}<23.9 && {495502bd-cdbf-4983-b7fc-d571fada70a8}>1.7, !- Program Line 10 + SET {c9dbfdd1-acd1-4234-9e80-c74befb1bf90} = 29.4, !- Program Line 11 + SET {7ecff041-d739-439b-b71d-f21da47d24fa} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {238d58c1-f954-4df2-8052-4f7a996586ee} = NULL, !- Program Line 14 - SET {6a9e6f08-eaa3-44aa-beb1-09ba01101747} = NULL, !- Program Line 15 + SET {c9dbfdd1-acd1-4234-9e80-c74befb1bf90} = NULL, !- Program Line 14 + SET {7ecff041-d739-439b-b71d-f21da47d24fa} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index f97e5d5d42..071607e5a2 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -4038,7 +4038,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4064,7 +4064,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4090,7 +4090,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4116,7 +4116,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4142,7 +4142,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -5055,271 +5055,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0048-000000000062}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000072}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000063}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000075}, !- Inlet Port {00000000-0000-0000-0018-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000064}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000078}, !- Inlet Port {00000000-0000-0000-0018-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000065}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000174}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000066}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000179}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000067}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000070}, !- Inlet Port {00000000-0000-0000-0018-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000068}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000076}, !- Inlet Port {00000000-0000-0000-0018-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000069}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000092}, !- Inlet Port {00000000-0000-0000-0018-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000070}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000095}, !- Inlet Port {00000000-0000-0000-0018-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000071}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000072}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000180}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000073}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000185}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000074}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000090}, !- Inlet Port {00000000-0000-0000-0018-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000075}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000096}, !- Inlet Port {00000000-0000-0000-0018-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000076}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000112}, !- Inlet Port {00000000-0000-0000-0018-000000000114}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000077}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000115}, !- Inlet Port {00000000-0000-0000-0018-000000000113}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000078}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000118}, !- Inlet Port {00000000-0000-0000-0018-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000079}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000186}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000080}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000191}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000081}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000110}, !- Inlet Port {00000000-0000-0000-0018-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000082}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000116}, !- Inlet Port {00000000-0000-0000-0018-000000000111}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000083}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000052}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000084}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000055}, !- Inlet Port {00000000-0000-0000-0018-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000085}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000058}, !- Inlet Port {00000000-0000-0000-0018-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000086}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000087}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000173}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000088}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000089}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000090}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000175}, !- Inlet Port {00000000-0000-0000-0018-000000000176}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000091}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000177}, !- Inlet Port {00000000-0000-0000-0018-000000000178}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000092}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000181}, !- Inlet Port {00000000-0000-0000-0018-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000093}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000183}, !- Inlet Port {00000000-0000-0000-0018-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000094}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000187}, !- Inlet Port {00000000-0000-0000-0018-000000000188}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000095}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000189}, !- Inlet Port {00000000-0000-0000-0018-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000096}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000169}, !- Inlet Port {00000000-0000-0000-0018-000000000170}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000097}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000171}, !- Inlet Port {00000000-0000-0000-0018-000000000172}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000098}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000033}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000099}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000036}, !- Inlet Port {00000000-0000-0000-0018-000000000034}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000100}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port {00000000-0000-0000-0018-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000101}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000102}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000197}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000103}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000104}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000105}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000193}, !- Inlet Port {00000000-0000-0000-0018-000000000194}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000106}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000195}, !- Inlet Port {00000000-0000-0000-0018-000000000196}; !- Outlet Port @@ -7177,7 +7177,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7192,7 +7192,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7201,7 +7201,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7210,7 +7210,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7225,7 +7225,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7234,7 +7234,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7243,7 +7243,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7258,7 +7258,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7267,7 +7267,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7276,7 +7276,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7291,7 +7291,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7300,7 +7300,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7309,7 +7309,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -7324,7 +7324,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7333,7 +7333,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8387,7 +8387,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000078}, !- Summer Design Day Schedule Name @@ -8395,7 +8395,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000081}, !- Summer Design Day Schedule Name @@ -8403,7 +8403,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000084}, !- Summer Design Day Schedule Name @@ -8411,7 +8411,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000087}, !- Summer Design Day Schedule Name @@ -8419,7 +8419,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index f753384f44..56007c3eeb 100644 --- a/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/RetailStandalone-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -80,7 +80,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000026}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -102,7 +102,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000027}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -124,7 +124,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000028}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -146,7 +146,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000029}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -168,7 +168,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -4068,7 +4068,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4094,7 +4094,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4120,7 +4120,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4146,7 +4146,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -4172,7 +4172,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -5085,271 +5085,271 @@ OS:Node, OS:Node, {00000000-0000-0000-0048-000000000062}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000072}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000063}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000075}, !- Inlet Port {00000000-0000-0000-0018-000000000073}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000064}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000078}, !- Inlet Port {00000000-0000-0000-0018-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000065}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000174}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000066}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000179}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000067}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000070}, !- Inlet Port {00000000-0000-0000-0018-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000068}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000076}, !- Inlet Port {00000000-0000-0000-0018-000000000071}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000069}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000092}, !- Inlet Port {00000000-0000-0000-0018-000000000094}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000070}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000095}, !- Inlet Port {00000000-0000-0000-0018-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000071}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000072}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000180}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000073}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000185}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000074}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000090}, !- Inlet Port {00000000-0000-0000-0018-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000075}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000096}, !- Inlet Port {00000000-0000-0000-0018-000000000091}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000076}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000112}, !- Inlet Port {00000000-0000-0000-0018-000000000114}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000077}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000115}, !- Inlet Port {00000000-0000-0000-0018-000000000113}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000078}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000118}, !- Inlet Port {00000000-0000-0000-0018-000000000119}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000079}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000186}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000080}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000191}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000081}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000110}, !- Inlet Port {00000000-0000-0000-0018-000000000117}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000082}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000116}, !- Inlet Port {00000000-0000-0000-0018-000000000111}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000083}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000052}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000084}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000055}, !- Inlet Port {00000000-0000-0000-0018-000000000053}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000085}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000058}, !- Inlet Port {00000000-0000-0000-0018-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000086}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000168}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000087}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000173}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000088}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000050}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000089}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000051}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000090}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000175}, !- Inlet Port {00000000-0000-0000-0018-000000000176}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000091}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000177}, !- Inlet Port {00000000-0000-0000-0018-000000000178}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000092}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000181}, !- Inlet Port {00000000-0000-0000-0018-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000093}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000183}, !- Inlet Port {00000000-0000-0000-0018-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000094}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000187}, !- Inlet Port {00000000-0000-0000-0018-000000000188}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000095}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000189}, !- Inlet Port {00000000-0000-0000-0018-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000096}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000169}, !- Inlet Port {00000000-0000-0000-0018-000000000170}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000097}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000171}, !- Inlet Port {00000000-0000-0000-0018-000000000172}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000098}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000033}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000099}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000036}, !- Inlet Port {00000000-0000-0000-0018-000000000034}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000100}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port {00000000-0000-0000-0018-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000101}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000102}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000197}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000103}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000031}, !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000104}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000105}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000193}, !- Inlet Port {00000000-0000-0000-0018-000000000194}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000106}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000195}, !- Inlet Port {00000000-0000-0000-0018-000000000196}; !- Outlet Port @@ -7207,7 +7207,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000077}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7222,7 +7222,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000078}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7231,7 +7231,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000079}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7240,7 +7240,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000080}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7255,7 +7255,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000081}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7264,7 +7264,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000082}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7273,7 +7273,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000083}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7288,7 +7288,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000084}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7297,7 +7297,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000085}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7306,7 +7306,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000086}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -7321,7 +7321,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000087}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7330,7 +7330,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000088}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7339,7 +7339,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000089}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -7354,7 +7354,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000090}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -7363,7 +7363,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000091}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -8417,7 +8417,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000026}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000077}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000078}, !- Summer Design Day Schedule Name @@ -8425,7 +8425,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000027}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000080}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000081}, !- Summer Design Day Schedule Name @@ -8433,7 +8433,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000028}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000083}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000084}, !- Summer Design Day Schedule Name @@ -8441,7 +8441,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000029}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000086}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000087}, !- Summer Design Day Schedule Name @@ -8449,7 +8449,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000030}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000089}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000090}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm index ddef8cd1a0..2d6f83498a 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm @@ -11007,141 +11007,141 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7a643448-e587-4f91-ac54-4b71e1385409}<23.9 && {7a643448-e587-4f91-ac54-4b71e1385409}>1.7, !- Program Line 1 - SET {38a80bac-ecc8-4d83-bf41-29660b0ef60d} = 29.4, !- Program Line 2 - SET {dc83899c-90c0-4843-bd70-469febdb95b8} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7a643448-e587-4f91-ac54-4b71e1385409}<23.9 && {7a643448-e587-4f91-ac54-4b71e1385409}>1.7, !- Program Line 4 - SET {38a80bac-ecc8-4d83-bf41-29660b0ef60d} = 29.4, !- Program Line 5 - SET {dc83899c-90c0-4843-bd70-469febdb95b8} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7a643448-e587-4f91-ac54-4b71e1385409}<23.9 && {7a643448-e587-4f91-ac54-4b71e1385409}>1.7, !- Program Line 7 - SET {38a80bac-ecc8-4d83-bf41-29660b0ef60d} = 29.4, !- Program Line 8 - SET {dc83899c-90c0-4843-bd70-469febdb95b8} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7a643448-e587-4f91-ac54-4b71e1385409}<23.9 && {7a643448-e587-4f91-ac54-4b71e1385409}>1.7, !- Program Line 10 - SET {38a80bac-ecc8-4d83-bf41-29660b0ef60d} = 29.4, !- Program Line 11 - SET {dc83899c-90c0-4843-bd70-469febdb95b8} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d0498297-294a-4051-90a7-f176f2a984f4}<23.9 && {d0498297-294a-4051-90a7-f176f2a984f4}>1.7, !- Program Line 1 + SET {a5a76229-bc7c-4e10-b57d-21d198c8933c} = 29.4, !- Program Line 2 + SET {b0584fbb-3db3-41c9-bcd6-791bb7a0dc45} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d0498297-294a-4051-90a7-f176f2a984f4}<23.9 && {d0498297-294a-4051-90a7-f176f2a984f4}>1.7, !- Program Line 4 + SET {a5a76229-bc7c-4e10-b57d-21d198c8933c} = 29.4, !- Program Line 5 + SET {b0584fbb-3db3-41c9-bcd6-791bb7a0dc45} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d0498297-294a-4051-90a7-f176f2a984f4}<23.9 && {d0498297-294a-4051-90a7-f176f2a984f4}>1.7, !- Program Line 7 + SET {a5a76229-bc7c-4e10-b57d-21d198c8933c} = 29.4, !- Program Line 8 + SET {b0584fbb-3db3-41c9-bcd6-791bb7a0dc45} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d0498297-294a-4051-90a7-f176f2a984f4}<23.9 && {d0498297-294a-4051-90a7-f176f2a984f4}>1.7, !- Program Line 10 + SET {a5a76229-bc7c-4e10-b57d-21d198c8933c} = 29.4, !- Program Line 11 + SET {b0584fbb-3db3-41c9-bcd6-791bb7a0dc45} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {38a80bac-ecc8-4d83-bf41-29660b0ef60d} = NULL, !- Program Line 14 - SET {dc83899c-90c0-4843-bd70-469febdb95b8} = NULL, !- Program Line 15 + SET {a5a76229-bc7c-4e10-b57d-21d198c8933c} = NULL, !- Program Line 14 + SET {b0584fbb-3db3-41c9-bcd6-791bb7a0dc45} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fd484c34-6bbe-4d56-b727-86a81e54b6de}<23.9 && {fd484c34-6bbe-4d56-b727-86a81e54b6de}>1.7, !- Program Line 1 - SET {c9f2be1a-139b-462a-a4de-ec7e2d8741e5} = 29.4, !- Program Line 2 - SET {c5209688-0c10-4ab1-ba1d-b46215c896c0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fd484c34-6bbe-4d56-b727-86a81e54b6de}<23.9 && {fd484c34-6bbe-4d56-b727-86a81e54b6de}>1.7, !- Program Line 4 - SET {c9f2be1a-139b-462a-a4de-ec7e2d8741e5} = 29.4, !- Program Line 5 - SET {c5209688-0c10-4ab1-ba1d-b46215c896c0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fd484c34-6bbe-4d56-b727-86a81e54b6de}<23.9 && {fd484c34-6bbe-4d56-b727-86a81e54b6de}>1.7, !- Program Line 7 - SET {c9f2be1a-139b-462a-a4de-ec7e2d8741e5} = 29.4, !- Program Line 8 - SET {c5209688-0c10-4ab1-ba1d-b46215c896c0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fd484c34-6bbe-4d56-b727-86a81e54b6de}<23.9 && {fd484c34-6bbe-4d56-b727-86a81e54b6de}>1.7, !- Program Line 10 - SET {c9f2be1a-139b-462a-a4de-ec7e2d8741e5} = 29.4, !- Program Line 11 - SET {c5209688-0c10-4ab1-ba1d-b46215c896c0} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d3b4c165-7512-41be-bf78-79e336c69cfd}<23.9 && {d3b4c165-7512-41be-bf78-79e336c69cfd}>1.7, !- Program Line 1 + SET {759f2fd3-30ab-47f9-bbcf-24a122e5235d} = 29.4, !- Program Line 2 + SET {0a763d30-ca91-4c50-b95f-3afb5c9fb96c} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d3b4c165-7512-41be-bf78-79e336c69cfd}<23.9 && {d3b4c165-7512-41be-bf78-79e336c69cfd}>1.7, !- Program Line 4 + SET {759f2fd3-30ab-47f9-bbcf-24a122e5235d} = 29.4, !- Program Line 5 + SET {0a763d30-ca91-4c50-b95f-3afb5c9fb96c} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d3b4c165-7512-41be-bf78-79e336c69cfd}<23.9 && {d3b4c165-7512-41be-bf78-79e336c69cfd}>1.7, !- Program Line 7 + SET {759f2fd3-30ab-47f9-bbcf-24a122e5235d} = 29.4, !- Program Line 8 + SET {0a763d30-ca91-4c50-b95f-3afb5c9fb96c} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d3b4c165-7512-41be-bf78-79e336c69cfd}<23.9 && {d3b4c165-7512-41be-bf78-79e336c69cfd}>1.7, !- Program Line 10 + SET {759f2fd3-30ab-47f9-bbcf-24a122e5235d} = 29.4, !- Program Line 11 + SET {0a763d30-ca91-4c50-b95f-3afb5c9fb96c} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c9f2be1a-139b-462a-a4de-ec7e2d8741e5} = NULL, !- Program Line 14 - SET {c5209688-0c10-4ab1-ba1d-b46215c896c0} = NULL, !- Program Line 15 + SET {759f2fd3-30ab-47f9-bbcf-24a122e5235d} = NULL, !- Program Line 14 + SET {0a763d30-ca91-4c50-b95f-3afb5c9fb96c} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000003}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {761aec09-fc79-45a4-b00d-4a073823f6ab}<23.9 && {761aec09-fc79-45a4-b00d-4a073823f6ab}>1.7, !- Program Line 1 - SET {cb619298-37a4-4351-bc7c-cc1b22eaee4c} = 29.4, !- Program Line 2 - SET {4d055f01-c6f5-4de8-a04b-0cfa5b3a233d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {761aec09-fc79-45a4-b00d-4a073823f6ab}<23.9 && {761aec09-fc79-45a4-b00d-4a073823f6ab}>1.7, !- Program Line 4 - SET {cb619298-37a4-4351-bc7c-cc1b22eaee4c} = 29.4, !- Program Line 5 - SET {4d055f01-c6f5-4de8-a04b-0cfa5b3a233d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {761aec09-fc79-45a4-b00d-4a073823f6ab}<23.9 && {761aec09-fc79-45a4-b00d-4a073823f6ab}>1.7, !- Program Line 7 - SET {cb619298-37a4-4351-bc7c-cc1b22eaee4c} = 29.4, !- Program Line 8 - SET {4d055f01-c6f5-4de8-a04b-0cfa5b3a233d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {761aec09-fc79-45a4-b00d-4a073823f6ab}<23.9 && {761aec09-fc79-45a4-b00d-4a073823f6ab}>1.7, !- Program Line 10 - SET {cb619298-37a4-4351-bc7c-cc1b22eaee4c} = 29.4, !- Program Line 11 - SET {4d055f01-c6f5-4de8-a04b-0cfa5b3a233d} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1bfca5ca-f3e6-420f-bf03-82643c514bc8}<23.9 && {1bfca5ca-f3e6-420f-bf03-82643c514bc8}>1.7, !- Program Line 1 + SET {f475c050-47f5-40a8-a7f8-2ec3991f075d} = 29.4, !- Program Line 2 + SET {30e928f7-5d22-4be1-8840-d0a004106fdf} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1bfca5ca-f3e6-420f-bf03-82643c514bc8}<23.9 && {1bfca5ca-f3e6-420f-bf03-82643c514bc8}>1.7, !- Program Line 4 + SET {f475c050-47f5-40a8-a7f8-2ec3991f075d} = 29.4, !- Program Line 5 + SET {30e928f7-5d22-4be1-8840-d0a004106fdf} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1bfca5ca-f3e6-420f-bf03-82643c514bc8}<23.9 && {1bfca5ca-f3e6-420f-bf03-82643c514bc8}>1.7, !- Program Line 7 + SET {f475c050-47f5-40a8-a7f8-2ec3991f075d} = 29.4, !- Program Line 8 + SET {30e928f7-5d22-4be1-8840-d0a004106fdf} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1bfca5ca-f3e6-420f-bf03-82643c514bc8}<23.9 && {1bfca5ca-f3e6-420f-bf03-82643c514bc8}>1.7, !- Program Line 10 + SET {f475c050-47f5-40a8-a7f8-2ec3991f075d} = 29.4, !- Program Line 11 + SET {30e928f7-5d22-4be1-8840-d0a004106fdf} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {cb619298-37a4-4351-bc7c-cc1b22eaee4c} = NULL, !- Program Line 14 - SET {4d055f01-c6f5-4de8-a04b-0cfa5b3a233d} = NULL, !- Program Line 15 + SET {f475c050-47f5-40a8-a7f8-2ec3991f075d} = NULL, !- Program Line 14 + SET {30e928f7-5d22-4be1-8840-d0a004106fdf} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000004}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7bdf516b-5a5a-436d-8d59-c909dbd5ed92}<23.9 && {7bdf516b-5a5a-436d-8d59-c909dbd5ed92}>1.7, !- Program Line 1 - SET {8cc7a0ea-7cea-43dd-aaf2-17b2b5be6611} = 29.4, !- Program Line 2 - SET {c4ea67e9-1ee9-490a-8a49-01a7e446806c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7bdf516b-5a5a-436d-8d59-c909dbd5ed92}<23.9 && {7bdf516b-5a5a-436d-8d59-c909dbd5ed92}>1.7, !- Program Line 4 - SET {8cc7a0ea-7cea-43dd-aaf2-17b2b5be6611} = 29.4, !- Program Line 5 - SET {c4ea67e9-1ee9-490a-8a49-01a7e446806c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7bdf516b-5a5a-436d-8d59-c909dbd5ed92}<23.9 && {7bdf516b-5a5a-436d-8d59-c909dbd5ed92}>1.7, !- Program Line 7 - SET {8cc7a0ea-7cea-43dd-aaf2-17b2b5be6611} = 29.4, !- Program Line 8 - SET {c4ea67e9-1ee9-490a-8a49-01a7e446806c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7bdf516b-5a5a-436d-8d59-c909dbd5ed92}<23.9 && {7bdf516b-5a5a-436d-8d59-c909dbd5ed92}>1.7, !- Program Line 10 - SET {8cc7a0ea-7cea-43dd-aaf2-17b2b5be6611} = 29.4, !- Program Line 11 - SET {c4ea67e9-1ee9-490a-8a49-01a7e446806c} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b0959551-0141-4335-a19e-679a21dd82a7}<23.9 && {b0959551-0141-4335-a19e-679a21dd82a7}>1.7, !- Program Line 1 + SET {dbc76c14-390b-4cf0-8405-d0a7ae2bf7e3} = 29.4, !- Program Line 2 + SET {091b9ce3-dd57-44d3-9866-087caa17b0bd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b0959551-0141-4335-a19e-679a21dd82a7}<23.9 && {b0959551-0141-4335-a19e-679a21dd82a7}>1.7, !- Program Line 4 + SET {dbc76c14-390b-4cf0-8405-d0a7ae2bf7e3} = 29.4, !- Program Line 5 + SET {091b9ce3-dd57-44d3-9866-087caa17b0bd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b0959551-0141-4335-a19e-679a21dd82a7}<23.9 && {b0959551-0141-4335-a19e-679a21dd82a7}>1.7, !- Program Line 7 + SET {dbc76c14-390b-4cf0-8405-d0a7ae2bf7e3} = 29.4, !- Program Line 8 + SET {091b9ce3-dd57-44d3-9866-087caa17b0bd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b0959551-0141-4335-a19e-679a21dd82a7}<23.9 && {b0959551-0141-4335-a19e-679a21dd82a7}>1.7, !- Program Line 10 + SET {dbc76c14-390b-4cf0-8405-d0a7ae2bf7e3} = 29.4, !- Program Line 11 + SET {091b9ce3-dd57-44d3-9866-087caa17b0bd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8cc7a0ea-7cea-43dd-aaf2-17b2b5be6611} = NULL, !- Program Line 14 - SET {c4ea67e9-1ee9-490a-8a49-01a7e446806c} = NULL, !- Program Line 15 + SET {dbc76c14-390b-4cf0-8405-d0a7ae2bf7e3} = NULL, !- Program Line 14 + SET {091b9ce3-dd57-44d3-9866-087caa17b0bd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000005}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6d73d932-221a-40fe-b343-0117d72bb360}<23.9 && {6d73d932-221a-40fe-b343-0117d72bb360}>1.7, !- Program Line 1 - SET {53ab3fbf-78a3-4ccf-9a58-3dc8cfdac08d} = 29.4, !- Program Line 2 - SET {da6bdce1-cb11-44c0-bb00-ebac9214e762} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6d73d932-221a-40fe-b343-0117d72bb360}<23.9 && {6d73d932-221a-40fe-b343-0117d72bb360}>1.7, !- Program Line 4 - SET {53ab3fbf-78a3-4ccf-9a58-3dc8cfdac08d} = 29.4, !- Program Line 5 - SET {da6bdce1-cb11-44c0-bb00-ebac9214e762} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6d73d932-221a-40fe-b343-0117d72bb360}<23.9 && {6d73d932-221a-40fe-b343-0117d72bb360}>1.7, !- Program Line 7 - SET {53ab3fbf-78a3-4ccf-9a58-3dc8cfdac08d} = 29.4, !- Program Line 8 - SET {da6bdce1-cb11-44c0-bb00-ebac9214e762} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6d73d932-221a-40fe-b343-0117d72bb360}<23.9 && {6d73d932-221a-40fe-b343-0117d72bb360}>1.7, !- Program Line 10 - SET {53ab3fbf-78a3-4ccf-9a58-3dc8cfdac08d} = 29.4, !- Program Line 11 - SET {da6bdce1-cb11-44c0-bb00-ebac9214e762} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {777a6b39-4d9f-4706-935a-78d4b303094a}<23.9 && {777a6b39-4d9f-4706-935a-78d4b303094a}>1.7, !- Program Line 1 + SET {9292eb9d-1331-46ee-9a84-077463f0d308} = 29.4, !- Program Line 2 + SET {65d45c97-b2c0-47bf-b77e-d47faaa87845} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {777a6b39-4d9f-4706-935a-78d4b303094a}<23.9 && {777a6b39-4d9f-4706-935a-78d4b303094a}>1.7, !- Program Line 4 + SET {9292eb9d-1331-46ee-9a84-077463f0d308} = 29.4, !- Program Line 5 + SET {65d45c97-b2c0-47bf-b77e-d47faaa87845} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {777a6b39-4d9f-4706-935a-78d4b303094a}<23.9 && {777a6b39-4d9f-4706-935a-78d4b303094a}>1.7, !- Program Line 7 + SET {9292eb9d-1331-46ee-9a84-077463f0d308} = 29.4, !- Program Line 8 + SET {65d45c97-b2c0-47bf-b77e-d47faaa87845} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {777a6b39-4d9f-4706-935a-78d4b303094a}<23.9 && {777a6b39-4d9f-4706-935a-78d4b303094a}>1.7, !- Program Line 10 + SET {9292eb9d-1331-46ee-9a84-077463f0d308} = 29.4, !- Program Line 11 + SET {65d45c97-b2c0-47bf-b77e-d47faaa87845} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {53ab3fbf-78a3-4ccf-9a58-3dc8cfdac08d} = NULL, !- Program Line 14 - SET {da6bdce1-cb11-44c0-bb00-ebac9214e762} = NULL, !- Program Line 15 + SET {9292eb9d-1331-46ee-9a84-077463f0d308} = NULL, !- Program Line 14 + SET {65d45c97-b2c0-47bf-b77e-d47faaa87845} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000006}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8d516202-588c-4c71-8c01-6daf4e693053}<23.9 && {8d516202-588c-4c71-8c01-6daf4e693053}>1.7, !- Program Line 1 - SET {3a1ae715-227a-42f6-bf01-49f7d589fbb1} = 29.4, !- Program Line 2 - SET {7a0df81e-1e88-4d4c-a77c-303309f333eb} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8d516202-588c-4c71-8c01-6daf4e693053}<23.9 && {8d516202-588c-4c71-8c01-6daf4e693053}>1.7, !- Program Line 4 - SET {3a1ae715-227a-42f6-bf01-49f7d589fbb1} = 29.4, !- Program Line 5 - SET {7a0df81e-1e88-4d4c-a77c-303309f333eb} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8d516202-588c-4c71-8c01-6daf4e693053}<23.9 && {8d516202-588c-4c71-8c01-6daf4e693053}>1.7, !- Program Line 7 - SET {3a1ae715-227a-42f6-bf01-49f7d589fbb1} = 29.4, !- Program Line 8 - SET {7a0df81e-1e88-4d4c-a77c-303309f333eb} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8d516202-588c-4c71-8c01-6daf4e693053}<23.9 && {8d516202-588c-4c71-8c01-6daf4e693053}>1.7, !- Program Line 10 - SET {3a1ae715-227a-42f6-bf01-49f7d589fbb1} = 29.4, !- Program Line 11 - SET {7a0df81e-1e88-4d4c-a77c-303309f333eb} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7555f630-ecbc-40ed-83be-7e58cd8c0554}<23.9 && {7555f630-ecbc-40ed-83be-7e58cd8c0554}>1.7, !- Program Line 1 + SET {3fad3886-0446-4dcb-913f-9893160b61bd} = 29.4, !- Program Line 2 + SET {976a1d8c-a837-4c0a-aebf-6c1d3a541a2e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7555f630-ecbc-40ed-83be-7e58cd8c0554}<23.9 && {7555f630-ecbc-40ed-83be-7e58cd8c0554}>1.7, !- Program Line 4 + SET {3fad3886-0446-4dcb-913f-9893160b61bd} = 29.4, !- Program Line 5 + SET {976a1d8c-a837-4c0a-aebf-6c1d3a541a2e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7555f630-ecbc-40ed-83be-7e58cd8c0554}<23.9 && {7555f630-ecbc-40ed-83be-7e58cd8c0554}>1.7, !- Program Line 7 + SET {3fad3886-0446-4dcb-913f-9893160b61bd} = 29.4, !- Program Line 8 + SET {976a1d8c-a837-4c0a-aebf-6c1d3a541a2e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7555f630-ecbc-40ed-83be-7e58cd8c0554}<23.9 && {7555f630-ecbc-40ed-83be-7e58cd8c0554}>1.7, !- Program Line 10 + SET {3fad3886-0446-4dcb-913f-9893160b61bd} = 29.4, !- Program Line 11 + SET {976a1d8c-a837-4c0a-aebf-6c1d3a541a2e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3a1ae715-227a-42f6-bf01-49f7d589fbb1} = NULL, !- Program Line 14 - SET {7a0df81e-1e88-4d4c-a77c-303309f333eb} = NULL, !- Program Line 15 + SET {3fad3886-0446-4dcb-913f-9893160b61bd} = NULL, !- Program Line 14 + SET {976a1d8c-a837-4c0a-aebf-6c1d3a541a2e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000007}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {aac7fb44-a247-4cc6-bf97-a61716582cf4}<23.9 && {aac7fb44-a247-4cc6-bf97-a61716582cf4}>1.7, !- Program Line 1 - SET {fbc57160-1c70-4129-a2fa-3887ed4bd719} = 29.4, !- Program Line 2 - SET {de6508bc-b56f-4cc3-9e06-bd83316f7538} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {aac7fb44-a247-4cc6-bf97-a61716582cf4}<23.9 && {aac7fb44-a247-4cc6-bf97-a61716582cf4}>1.7, !- Program Line 4 - SET {fbc57160-1c70-4129-a2fa-3887ed4bd719} = 29.4, !- Program Line 5 - SET {de6508bc-b56f-4cc3-9e06-bd83316f7538} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {aac7fb44-a247-4cc6-bf97-a61716582cf4}<23.9 && {aac7fb44-a247-4cc6-bf97-a61716582cf4}>1.7, !- Program Line 7 - SET {fbc57160-1c70-4129-a2fa-3887ed4bd719} = 29.4, !- Program Line 8 - SET {de6508bc-b56f-4cc3-9e06-bd83316f7538} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {aac7fb44-a247-4cc6-bf97-a61716582cf4}<23.9 && {aac7fb44-a247-4cc6-bf97-a61716582cf4}>1.7, !- Program Line 10 - SET {fbc57160-1c70-4129-a2fa-3887ed4bd719} = 29.4, !- Program Line 11 - SET {de6508bc-b56f-4cc3-9e06-bd83316f7538} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {28d5536f-18ce-4d21-8bc8-e3223c66b943}<23.9 && {28d5536f-18ce-4d21-8bc8-e3223c66b943}>1.7, !- Program Line 1 + SET {e25c7035-16f2-48ea-a1d1-48b8a9227d01} = 29.4, !- Program Line 2 + SET {779621f5-6896-440a-8f92-9ada886aa9e2} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {28d5536f-18ce-4d21-8bc8-e3223c66b943}<23.9 && {28d5536f-18ce-4d21-8bc8-e3223c66b943}>1.7, !- Program Line 4 + SET {e25c7035-16f2-48ea-a1d1-48b8a9227d01} = 29.4, !- Program Line 5 + SET {779621f5-6896-440a-8f92-9ada886aa9e2} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {28d5536f-18ce-4d21-8bc8-e3223c66b943}<23.9 && {28d5536f-18ce-4d21-8bc8-e3223c66b943}>1.7, !- Program Line 7 + SET {e25c7035-16f2-48ea-a1d1-48b8a9227d01} = 29.4, !- Program Line 8 + SET {779621f5-6896-440a-8f92-9ada886aa9e2} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {28d5536f-18ce-4d21-8bc8-e3223c66b943}<23.9 && {28d5536f-18ce-4d21-8bc8-e3223c66b943}>1.7, !- Program Line 10 + SET {e25c7035-16f2-48ea-a1d1-48b8a9227d01} = 29.4, !- Program Line 11 + SET {779621f5-6896-440a-8f92-9ada886aa9e2} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {fbc57160-1c70-4129-a2fa-3887ed4bd719} = NULL, !- Program Line 14 - SET {de6508bc-b56f-4cc3-9e06-bd83316f7538} = NULL, !- Program Line 15 + SET {e25c7035-16f2-48ea-a1d1-48b8a9227d01} = NULL, !- Program Line 14 + SET {779621f5-6896-440a-8f92-9ada886aa9e2} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/SecondarySchool-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm index 2c5677a22f..6c6805ffd9 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm @@ -12475,141 +12475,141 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f35407b5-5fd8-4701-9103-76c259e41bfe}<23.9 && {f35407b5-5fd8-4701-9103-76c259e41bfe}>1.7, !- Program Line 1 - SET {b820dab0-beb4-4e2a-bcfd-4ef1b7dfb57e} = 29.4, !- Program Line 2 - SET {47a97157-32c7-4573-8a8e-ac6dd0688832} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f35407b5-5fd8-4701-9103-76c259e41bfe}<23.9 && {f35407b5-5fd8-4701-9103-76c259e41bfe}>1.7, !- Program Line 4 - SET {b820dab0-beb4-4e2a-bcfd-4ef1b7dfb57e} = 29.4, !- Program Line 5 - SET {47a97157-32c7-4573-8a8e-ac6dd0688832} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f35407b5-5fd8-4701-9103-76c259e41bfe}<23.9 && {f35407b5-5fd8-4701-9103-76c259e41bfe}>1.7, !- Program Line 7 - SET {b820dab0-beb4-4e2a-bcfd-4ef1b7dfb57e} = 29.4, !- Program Line 8 - SET {47a97157-32c7-4573-8a8e-ac6dd0688832} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f35407b5-5fd8-4701-9103-76c259e41bfe}<23.9 && {f35407b5-5fd8-4701-9103-76c259e41bfe}>1.7, !- Program Line 10 - SET {b820dab0-beb4-4e2a-bcfd-4ef1b7dfb57e} = 29.4, !- Program Line 11 - SET {47a97157-32c7-4573-8a8e-ac6dd0688832} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c7202b2b-a1fc-47fd-abb9-b49658a2490a}<23.9 && {c7202b2b-a1fc-47fd-abb9-b49658a2490a}>1.7, !- Program Line 1 + SET {19d17185-9dea-4b1c-b320-9dac60a01a22} = 29.4, !- Program Line 2 + SET {3f31231d-0be0-44d9-8aa4-c561f503cf93} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c7202b2b-a1fc-47fd-abb9-b49658a2490a}<23.9 && {c7202b2b-a1fc-47fd-abb9-b49658a2490a}>1.7, !- Program Line 4 + SET {19d17185-9dea-4b1c-b320-9dac60a01a22} = 29.4, !- Program Line 5 + SET {3f31231d-0be0-44d9-8aa4-c561f503cf93} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c7202b2b-a1fc-47fd-abb9-b49658a2490a}<23.9 && {c7202b2b-a1fc-47fd-abb9-b49658a2490a}>1.7, !- Program Line 7 + SET {19d17185-9dea-4b1c-b320-9dac60a01a22} = 29.4, !- Program Line 8 + SET {3f31231d-0be0-44d9-8aa4-c561f503cf93} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c7202b2b-a1fc-47fd-abb9-b49658a2490a}<23.9 && {c7202b2b-a1fc-47fd-abb9-b49658a2490a}>1.7, !- Program Line 10 + SET {19d17185-9dea-4b1c-b320-9dac60a01a22} = 29.4, !- Program Line 11 + SET {3f31231d-0be0-44d9-8aa4-c561f503cf93} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b820dab0-beb4-4e2a-bcfd-4ef1b7dfb57e} = NULL, !- Program Line 14 - SET {47a97157-32c7-4573-8a8e-ac6dd0688832} = NULL, !- Program Line 15 + SET {19d17185-9dea-4b1c-b320-9dac60a01a22} = NULL, !- Program Line 14 + SET {3f31231d-0be0-44d9-8aa4-c561f503cf93} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1b0c1371-a05a-48a3-a1fc-ef762eb8628c}<23.9 && {1b0c1371-a05a-48a3-a1fc-ef762eb8628c}>1.7, !- Program Line 1 - SET {4200376c-5519-4290-b332-ef23380651dc} = 29.4, !- Program Line 2 - SET {bdde8ac2-af15-4b75-b519-a15a3ebd6e12} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1b0c1371-a05a-48a3-a1fc-ef762eb8628c}<23.9 && {1b0c1371-a05a-48a3-a1fc-ef762eb8628c}>1.7, !- Program Line 4 - SET {4200376c-5519-4290-b332-ef23380651dc} = 29.4, !- Program Line 5 - SET {bdde8ac2-af15-4b75-b519-a15a3ebd6e12} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1b0c1371-a05a-48a3-a1fc-ef762eb8628c}<23.9 && {1b0c1371-a05a-48a3-a1fc-ef762eb8628c}>1.7, !- Program Line 7 - SET {4200376c-5519-4290-b332-ef23380651dc} = 29.4, !- Program Line 8 - SET {bdde8ac2-af15-4b75-b519-a15a3ebd6e12} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1b0c1371-a05a-48a3-a1fc-ef762eb8628c}<23.9 && {1b0c1371-a05a-48a3-a1fc-ef762eb8628c}>1.7, !- Program Line 10 - SET {4200376c-5519-4290-b332-ef23380651dc} = 29.4, !- Program Line 11 - SET {bdde8ac2-af15-4b75-b519-a15a3ebd6e12} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {921e6c3c-4c49-470f-b36b-e0e61f51d75d}<23.9 && {921e6c3c-4c49-470f-b36b-e0e61f51d75d}>1.7, !- Program Line 1 + SET {ec705940-de2d-4cff-9046-67fb73afdf16} = 29.4, !- Program Line 2 + SET {804d756b-063e-4f29-89e3-b02fd0e0e5d6} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {921e6c3c-4c49-470f-b36b-e0e61f51d75d}<23.9 && {921e6c3c-4c49-470f-b36b-e0e61f51d75d}>1.7, !- Program Line 4 + SET {ec705940-de2d-4cff-9046-67fb73afdf16} = 29.4, !- Program Line 5 + SET {804d756b-063e-4f29-89e3-b02fd0e0e5d6} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {921e6c3c-4c49-470f-b36b-e0e61f51d75d}<23.9 && {921e6c3c-4c49-470f-b36b-e0e61f51d75d}>1.7, !- Program Line 7 + SET {ec705940-de2d-4cff-9046-67fb73afdf16} = 29.4, !- Program Line 8 + SET {804d756b-063e-4f29-89e3-b02fd0e0e5d6} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {921e6c3c-4c49-470f-b36b-e0e61f51d75d}<23.9 && {921e6c3c-4c49-470f-b36b-e0e61f51d75d}>1.7, !- Program Line 10 + SET {ec705940-de2d-4cff-9046-67fb73afdf16} = 29.4, !- Program Line 11 + SET {804d756b-063e-4f29-89e3-b02fd0e0e5d6} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4200376c-5519-4290-b332-ef23380651dc} = NULL, !- Program Line 14 - SET {bdde8ac2-af15-4b75-b519-a15a3ebd6e12} = NULL, !- Program Line 15 + SET {ec705940-de2d-4cff-9046-67fb73afdf16} = NULL, !- Program Line 14 + SET {804d756b-063e-4f29-89e3-b02fd0e0e5d6} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0154f099-c4c4-4200-a10d-5ad6f7976619}<23.9 && {0154f099-c4c4-4200-a10d-5ad6f7976619}>1.7, !- Program Line 1 - SET {f78e1d3d-2d06-42db-a115-a80f5c3544f5} = 29.4, !- Program Line 2 - SET {6087d63a-ad42-4df1-8180-65808582a0ab} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0154f099-c4c4-4200-a10d-5ad6f7976619}<23.9 && {0154f099-c4c4-4200-a10d-5ad6f7976619}>1.7, !- Program Line 4 - SET {f78e1d3d-2d06-42db-a115-a80f5c3544f5} = 29.4, !- Program Line 5 - SET {6087d63a-ad42-4df1-8180-65808582a0ab} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0154f099-c4c4-4200-a10d-5ad6f7976619}<23.9 && {0154f099-c4c4-4200-a10d-5ad6f7976619}>1.7, !- Program Line 7 - SET {f78e1d3d-2d06-42db-a115-a80f5c3544f5} = 29.4, !- Program Line 8 - SET {6087d63a-ad42-4df1-8180-65808582a0ab} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0154f099-c4c4-4200-a10d-5ad6f7976619}<23.9 && {0154f099-c4c4-4200-a10d-5ad6f7976619}>1.7, !- Program Line 10 - SET {f78e1d3d-2d06-42db-a115-a80f5c3544f5} = 29.4, !- Program Line 11 - SET {6087d63a-ad42-4df1-8180-65808582a0ab} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9381b9c9-2201-43e3-950e-3a7486d66b7f}<23.9 && {9381b9c9-2201-43e3-950e-3a7486d66b7f}>1.7, !- Program Line 1 + SET {308ac2d9-e02d-4e33-9a8a-1715514879b4} = 29.4, !- Program Line 2 + SET {04ecdaa1-fbda-4a08-9b1e-baf84df3815b} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9381b9c9-2201-43e3-950e-3a7486d66b7f}<23.9 && {9381b9c9-2201-43e3-950e-3a7486d66b7f}>1.7, !- Program Line 4 + SET {308ac2d9-e02d-4e33-9a8a-1715514879b4} = 29.4, !- Program Line 5 + SET {04ecdaa1-fbda-4a08-9b1e-baf84df3815b} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9381b9c9-2201-43e3-950e-3a7486d66b7f}<23.9 && {9381b9c9-2201-43e3-950e-3a7486d66b7f}>1.7, !- Program Line 7 + SET {308ac2d9-e02d-4e33-9a8a-1715514879b4} = 29.4, !- Program Line 8 + SET {04ecdaa1-fbda-4a08-9b1e-baf84df3815b} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9381b9c9-2201-43e3-950e-3a7486d66b7f}<23.9 && {9381b9c9-2201-43e3-950e-3a7486d66b7f}>1.7, !- Program Line 10 + SET {308ac2d9-e02d-4e33-9a8a-1715514879b4} = 29.4, !- Program Line 11 + SET {04ecdaa1-fbda-4a08-9b1e-baf84df3815b} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f78e1d3d-2d06-42db-a115-a80f5c3544f5} = NULL, !- Program Line 14 - SET {6087d63a-ad42-4df1-8180-65808582a0ab} = NULL, !- Program Line 15 + SET {308ac2d9-e02d-4e33-9a8a-1715514879b4} = NULL, !- Program Line 14 + SET {04ecdaa1-fbda-4a08-9b1e-baf84df3815b} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000004}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {105665a7-2b14-4142-b830-c4445d8df4f5}<23.9 && {105665a7-2b14-4142-b830-c4445d8df4f5}>1.7, !- Program Line 1 - SET {b431289e-9178-4239-85ff-2b57375fc6f4} = 29.4, !- Program Line 2 - SET {3e531b37-9d8e-4ce8-994e-d28859401746} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {105665a7-2b14-4142-b830-c4445d8df4f5}<23.9 && {105665a7-2b14-4142-b830-c4445d8df4f5}>1.7, !- Program Line 4 - SET {b431289e-9178-4239-85ff-2b57375fc6f4} = 29.4, !- Program Line 5 - SET {3e531b37-9d8e-4ce8-994e-d28859401746} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {105665a7-2b14-4142-b830-c4445d8df4f5}<23.9 && {105665a7-2b14-4142-b830-c4445d8df4f5}>1.7, !- Program Line 7 - SET {b431289e-9178-4239-85ff-2b57375fc6f4} = 29.4, !- Program Line 8 - SET {3e531b37-9d8e-4ce8-994e-d28859401746} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {105665a7-2b14-4142-b830-c4445d8df4f5}<23.9 && {105665a7-2b14-4142-b830-c4445d8df4f5}>1.7, !- Program Line 10 - SET {b431289e-9178-4239-85ff-2b57375fc6f4} = 29.4, !- Program Line 11 - SET {3e531b37-9d8e-4ce8-994e-d28859401746} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {68bd4a9a-1c0b-4d5b-8b04-f4e5c1cdc6d6}<23.9 && {68bd4a9a-1c0b-4d5b-8b04-f4e5c1cdc6d6}>1.7, !- Program Line 1 + SET {e25e348c-ac33-43e4-ad07-32d7b4ee03b5} = 29.4, !- Program Line 2 + SET {e923a637-f21d-404a-a574-d61c0a7b8c18} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {68bd4a9a-1c0b-4d5b-8b04-f4e5c1cdc6d6}<23.9 && {68bd4a9a-1c0b-4d5b-8b04-f4e5c1cdc6d6}>1.7, !- Program Line 4 + SET {e25e348c-ac33-43e4-ad07-32d7b4ee03b5} = 29.4, !- Program Line 5 + SET {e923a637-f21d-404a-a574-d61c0a7b8c18} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {68bd4a9a-1c0b-4d5b-8b04-f4e5c1cdc6d6}<23.9 && {68bd4a9a-1c0b-4d5b-8b04-f4e5c1cdc6d6}>1.7, !- Program Line 7 + SET {e25e348c-ac33-43e4-ad07-32d7b4ee03b5} = 29.4, !- Program Line 8 + SET {e923a637-f21d-404a-a574-d61c0a7b8c18} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {68bd4a9a-1c0b-4d5b-8b04-f4e5c1cdc6d6}<23.9 && {68bd4a9a-1c0b-4d5b-8b04-f4e5c1cdc6d6}>1.7, !- Program Line 10 + SET {e25e348c-ac33-43e4-ad07-32d7b4ee03b5} = 29.4, !- Program Line 11 + SET {e923a637-f21d-404a-a574-d61c0a7b8c18} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b431289e-9178-4239-85ff-2b57375fc6f4} = NULL, !- Program Line 14 - SET {3e531b37-9d8e-4ce8-994e-d28859401746} = NULL, !- Program Line 15 + SET {e25e348c-ac33-43e4-ad07-32d7b4ee03b5} = NULL, !- Program Line 14 + SET {e923a637-f21d-404a-a574-d61c0a7b8c18} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000005}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7557460a-686c-4962-80fe-36a62746d0f8}<23.9 && {7557460a-686c-4962-80fe-36a62746d0f8}>1.7, !- Program Line 1 - SET {4e16736e-4d62-4558-b9b3-295c10aa75ff} = 29.4, !- Program Line 2 - SET {2d076b04-e502-4286-88d9-ad5241392d99} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7557460a-686c-4962-80fe-36a62746d0f8}<23.9 && {7557460a-686c-4962-80fe-36a62746d0f8}>1.7, !- Program Line 4 - SET {4e16736e-4d62-4558-b9b3-295c10aa75ff} = 29.4, !- Program Line 5 - SET {2d076b04-e502-4286-88d9-ad5241392d99} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7557460a-686c-4962-80fe-36a62746d0f8}<23.9 && {7557460a-686c-4962-80fe-36a62746d0f8}>1.7, !- Program Line 7 - SET {4e16736e-4d62-4558-b9b3-295c10aa75ff} = 29.4, !- Program Line 8 - SET {2d076b04-e502-4286-88d9-ad5241392d99} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7557460a-686c-4962-80fe-36a62746d0f8}<23.9 && {7557460a-686c-4962-80fe-36a62746d0f8}>1.7, !- Program Line 10 - SET {4e16736e-4d62-4558-b9b3-295c10aa75ff} = 29.4, !- Program Line 11 - SET {2d076b04-e502-4286-88d9-ad5241392d99} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {19e7fbc6-efbc-43f5-ad6a-74e66dee83c7}<23.9 && {19e7fbc6-efbc-43f5-ad6a-74e66dee83c7}>1.7, !- Program Line 1 + SET {9ecc0ce8-667a-4d89-b9c3-4dbb59a059d1} = 29.4, !- Program Line 2 + SET {1576f25e-d28d-41ab-863f-37a23528e281} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {19e7fbc6-efbc-43f5-ad6a-74e66dee83c7}<23.9 && {19e7fbc6-efbc-43f5-ad6a-74e66dee83c7}>1.7, !- Program Line 4 + SET {9ecc0ce8-667a-4d89-b9c3-4dbb59a059d1} = 29.4, !- Program Line 5 + SET {1576f25e-d28d-41ab-863f-37a23528e281} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {19e7fbc6-efbc-43f5-ad6a-74e66dee83c7}<23.9 && {19e7fbc6-efbc-43f5-ad6a-74e66dee83c7}>1.7, !- Program Line 7 + SET {9ecc0ce8-667a-4d89-b9c3-4dbb59a059d1} = 29.4, !- Program Line 8 + SET {1576f25e-d28d-41ab-863f-37a23528e281} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {19e7fbc6-efbc-43f5-ad6a-74e66dee83c7}<23.9 && {19e7fbc6-efbc-43f5-ad6a-74e66dee83c7}>1.7, !- Program Line 10 + SET {9ecc0ce8-667a-4d89-b9c3-4dbb59a059d1} = 29.4, !- Program Line 11 + SET {1576f25e-d28d-41ab-863f-37a23528e281} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4e16736e-4d62-4558-b9b3-295c10aa75ff} = NULL, !- Program Line 14 - SET {2d076b04-e502-4286-88d9-ad5241392d99} = NULL, !- Program Line 15 + SET {9ecc0ce8-667a-4d89-b9c3-4dbb59a059d1} = NULL, !- Program Line 14 + SET {1576f25e-d28d-41ab-863f-37a23528e281} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000006}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {805008dd-68f1-4848-a9fc-1a352e61a9b1}<23.9 && {805008dd-68f1-4848-a9fc-1a352e61a9b1}>1.7, !- Program Line 1 - SET {24107993-74af-4863-945a-0e4a7b2bfbba} = 29.4, !- Program Line 2 - SET {38cd4c62-f1dd-43a2-a352-51c12ca8c2c0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {805008dd-68f1-4848-a9fc-1a352e61a9b1}<23.9 && {805008dd-68f1-4848-a9fc-1a352e61a9b1}>1.7, !- Program Line 4 - SET {24107993-74af-4863-945a-0e4a7b2bfbba} = 29.4, !- Program Line 5 - SET {38cd4c62-f1dd-43a2-a352-51c12ca8c2c0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {805008dd-68f1-4848-a9fc-1a352e61a9b1}<23.9 && {805008dd-68f1-4848-a9fc-1a352e61a9b1}>1.7, !- Program Line 7 - SET {24107993-74af-4863-945a-0e4a7b2bfbba} = 29.4, !- Program Line 8 - SET {38cd4c62-f1dd-43a2-a352-51c12ca8c2c0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {805008dd-68f1-4848-a9fc-1a352e61a9b1}<23.9 && {805008dd-68f1-4848-a9fc-1a352e61a9b1}>1.7, !- Program Line 10 - SET {24107993-74af-4863-945a-0e4a7b2bfbba} = 29.4, !- Program Line 11 - SET {38cd4c62-f1dd-43a2-a352-51c12ca8c2c0} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bd170c95-7762-42d3-8dd2-9bc670fb43b6}<23.9 && {bd170c95-7762-42d3-8dd2-9bc670fb43b6}>1.7, !- Program Line 1 + SET {1a28669c-9d28-47ba-80ae-f11f6ac3d1eb} = 29.4, !- Program Line 2 + SET {5dd5e797-9981-4b45-b952-b11f2664da43} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bd170c95-7762-42d3-8dd2-9bc670fb43b6}<23.9 && {bd170c95-7762-42d3-8dd2-9bc670fb43b6}>1.7, !- Program Line 4 + SET {1a28669c-9d28-47ba-80ae-f11f6ac3d1eb} = 29.4, !- Program Line 5 + SET {5dd5e797-9981-4b45-b952-b11f2664da43} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bd170c95-7762-42d3-8dd2-9bc670fb43b6}<23.9 && {bd170c95-7762-42d3-8dd2-9bc670fb43b6}>1.7, !- Program Line 7 + SET {1a28669c-9d28-47ba-80ae-f11f6ac3d1eb} = 29.4, !- Program Line 8 + SET {5dd5e797-9981-4b45-b952-b11f2664da43} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bd170c95-7762-42d3-8dd2-9bc670fb43b6}<23.9 && {bd170c95-7762-42d3-8dd2-9bc670fb43b6}>1.7, !- Program Line 10 + SET {1a28669c-9d28-47ba-80ae-f11f6ac3d1eb} = 29.4, !- Program Line 11 + SET {5dd5e797-9981-4b45-b952-b11f2664da43} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {24107993-74af-4863-945a-0e4a7b2bfbba} = NULL, !- Program Line 14 - SET {38cd4c62-f1dd-43a2-a352-51c12ca8c2c0} = NULL, !- Program Line 15 + SET {1a28669c-9d28-47ba-80ae-f11f6ac3d1eb} = NULL, !- Program Line 14 + SET {5dd5e797-9981-4b45-b952-b11f2664da43} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000007}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d9ec926f-df3d-4232-aec0-6dee5c9e5aa3}<23.9 && {d9ec926f-df3d-4232-aec0-6dee5c9e5aa3}>1.7, !- Program Line 1 - SET {ffd336f2-7759-4dda-be5f-012a7d7be7c3} = 29.4, !- Program Line 2 - SET {b93290f4-54f3-4920-bafb-a32a8c2059f5} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d9ec926f-df3d-4232-aec0-6dee5c9e5aa3}<23.9 && {d9ec926f-df3d-4232-aec0-6dee5c9e5aa3}>1.7, !- Program Line 4 - SET {ffd336f2-7759-4dda-be5f-012a7d7be7c3} = 29.4, !- Program Line 5 - SET {b93290f4-54f3-4920-bafb-a32a8c2059f5} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d9ec926f-df3d-4232-aec0-6dee5c9e5aa3}<23.9 && {d9ec926f-df3d-4232-aec0-6dee5c9e5aa3}>1.7, !- Program Line 7 - SET {ffd336f2-7759-4dda-be5f-012a7d7be7c3} = 29.4, !- Program Line 8 - SET {b93290f4-54f3-4920-bafb-a32a8c2059f5} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d9ec926f-df3d-4232-aec0-6dee5c9e5aa3}<23.9 && {d9ec926f-df3d-4232-aec0-6dee5c9e5aa3}>1.7, !- Program Line 10 - SET {ffd336f2-7759-4dda-be5f-012a7d7be7c3} = 29.4, !- Program Line 11 - SET {b93290f4-54f3-4920-bafb-a32a8c2059f5} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f3cf7674-b300-4053-b1fd-da9e1055402b}<23.9 && {f3cf7674-b300-4053-b1fd-da9e1055402b}>1.7, !- Program Line 1 + SET {c7a9121f-3d79-46da-82b6-c2f927bbede5} = 29.4, !- Program Line 2 + SET {0569c0d3-6bdb-4ce1-835f-2788ceb5ffde} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f3cf7674-b300-4053-b1fd-da9e1055402b}<23.9 && {f3cf7674-b300-4053-b1fd-da9e1055402b}>1.7, !- Program Line 4 + SET {c7a9121f-3d79-46da-82b6-c2f927bbede5} = 29.4, !- Program Line 5 + SET {0569c0d3-6bdb-4ce1-835f-2788ceb5ffde} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f3cf7674-b300-4053-b1fd-da9e1055402b}<23.9 && {f3cf7674-b300-4053-b1fd-da9e1055402b}>1.7, !- Program Line 7 + SET {c7a9121f-3d79-46da-82b6-c2f927bbede5} = 29.4, !- Program Line 8 + SET {0569c0d3-6bdb-4ce1-835f-2788ceb5ffde} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f3cf7674-b300-4053-b1fd-da9e1055402b}<23.9 && {f3cf7674-b300-4053-b1fd-da9e1055402b}>1.7, !- Program Line 10 + SET {c7a9121f-3d79-46da-82b6-c2f927bbede5} = 29.4, !- Program Line 11 + SET {0569c0d3-6bdb-4ce1-835f-2788ceb5ffde} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ffd336f2-7759-4dda-be5f-012a7d7be7c3} = NULL, !- Program Line 14 - SET {b93290f4-54f3-4920-bafb-a32a8c2059f5} = NULL, !- Program Line 15 + SET {c7a9121f-3d79-46da-82b6-c2f927bbede5} = NULL, !- Program Line 14 + SET {0569c0d3-6bdb-4ce1-835f-2788ceb5ffde} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-Electricity-CAN_AB_Calgary.osm index 3514c39785..b344f6455a 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-Electricity-CAN_AB_Calgary.osm @@ -10619,161 +10619,161 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {78b8afbe-0259-417c-9f0b-2cd88786771b}<23.9 && {78b8afbe-0259-417c-9f0b-2cd88786771b}>1.7, !- Program Line 1 - SET {5337b4ef-5919-42a5-9f40-a832b20c5a4e} = 29.4, !- Program Line 2 - SET {7970d974-ebdf-4da1-b285-e471eb9e7ad0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {78b8afbe-0259-417c-9f0b-2cd88786771b}<23.9 && {78b8afbe-0259-417c-9f0b-2cd88786771b}>1.7, !- Program Line 4 - SET {5337b4ef-5919-42a5-9f40-a832b20c5a4e} = 29.4, !- Program Line 5 - SET {7970d974-ebdf-4da1-b285-e471eb9e7ad0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {78b8afbe-0259-417c-9f0b-2cd88786771b}<23.9 && {78b8afbe-0259-417c-9f0b-2cd88786771b}>1.7, !- Program Line 7 - SET {5337b4ef-5919-42a5-9f40-a832b20c5a4e} = 29.4, !- Program Line 8 - SET {7970d974-ebdf-4da1-b285-e471eb9e7ad0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {78b8afbe-0259-417c-9f0b-2cd88786771b}<23.9 && {78b8afbe-0259-417c-9f0b-2cd88786771b}>1.7, !- Program Line 10 - SET {5337b4ef-5919-42a5-9f40-a832b20c5a4e} = 29.4, !- Program Line 11 - SET {7970d974-ebdf-4da1-b285-e471eb9e7ad0} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {baebbe34-6a30-4249-8d51-4c9ebd73103d}<23.9 && {baebbe34-6a30-4249-8d51-4c9ebd73103d}>1.7, !- Program Line 1 + SET {100fa58f-4945-42a6-9f2c-b9c43ac1b583} = 29.4, !- Program Line 2 + SET {1490f739-7b22-42df-aa56-da8632a498cf} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {baebbe34-6a30-4249-8d51-4c9ebd73103d}<23.9 && {baebbe34-6a30-4249-8d51-4c9ebd73103d}>1.7, !- Program Line 4 + SET {100fa58f-4945-42a6-9f2c-b9c43ac1b583} = 29.4, !- Program Line 5 + SET {1490f739-7b22-42df-aa56-da8632a498cf} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {baebbe34-6a30-4249-8d51-4c9ebd73103d}<23.9 && {baebbe34-6a30-4249-8d51-4c9ebd73103d}>1.7, !- Program Line 7 + SET {100fa58f-4945-42a6-9f2c-b9c43ac1b583} = 29.4, !- Program Line 8 + SET {1490f739-7b22-42df-aa56-da8632a498cf} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {baebbe34-6a30-4249-8d51-4c9ebd73103d}<23.9 && {baebbe34-6a30-4249-8d51-4c9ebd73103d}>1.7, !- Program Line 10 + SET {100fa58f-4945-42a6-9f2c-b9c43ac1b583} = 29.4, !- Program Line 11 + SET {1490f739-7b22-42df-aa56-da8632a498cf} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5337b4ef-5919-42a5-9f40-a832b20c5a4e} = NULL, !- Program Line 14 - SET {7970d974-ebdf-4da1-b285-e471eb9e7ad0} = NULL, !- Program Line 15 + SET {100fa58f-4945-42a6-9f2c-b9c43ac1b583} = NULL, !- Program Line 14 + SET {1490f739-7b22-42df-aa56-da8632a498cf} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fd672487-7548-4922-9e98-f24805e897e6}<23.9 && {fd672487-7548-4922-9e98-f24805e897e6}>1.7, !- Program Line 1 - SET {0a34b743-6f2c-4abf-97b8-f970dfc861eb} = 29.4, !- Program Line 2 - SET {5f111436-f953-492b-8ad4-aada727e0a8a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fd672487-7548-4922-9e98-f24805e897e6}<23.9 && {fd672487-7548-4922-9e98-f24805e897e6}>1.7, !- Program Line 4 - SET {0a34b743-6f2c-4abf-97b8-f970dfc861eb} = 29.4, !- Program Line 5 - SET {5f111436-f953-492b-8ad4-aada727e0a8a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fd672487-7548-4922-9e98-f24805e897e6}<23.9 && {fd672487-7548-4922-9e98-f24805e897e6}>1.7, !- Program Line 7 - SET {0a34b743-6f2c-4abf-97b8-f970dfc861eb} = 29.4, !- Program Line 8 - SET {5f111436-f953-492b-8ad4-aada727e0a8a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fd672487-7548-4922-9e98-f24805e897e6}<23.9 && {fd672487-7548-4922-9e98-f24805e897e6}>1.7, !- Program Line 10 - SET {0a34b743-6f2c-4abf-97b8-f970dfc861eb} = 29.4, !- Program Line 11 - SET {5f111436-f953-492b-8ad4-aada727e0a8a} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {419d379d-c77e-4b52-8899-73b0b806c0b4}<23.9 && {419d379d-c77e-4b52-8899-73b0b806c0b4}>1.7, !- Program Line 1 + SET {da41ee16-9518-40fb-9c0e-d6fada880076} = 29.4, !- Program Line 2 + SET {fcdc2aca-800d-426d-98bc-191b49b953b1} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {419d379d-c77e-4b52-8899-73b0b806c0b4}<23.9 && {419d379d-c77e-4b52-8899-73b0b806c0b4}>1.7, !- Program Line 4 + SET {da41ee16-9518-40fb-9c0e-d6fada880076} = 29.4, !- Program Line 5 + SET {fcdc2aca-800d-426d-98bc-191b49b953b1} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {419d379d-c77e-4b52-8899-73b0b806c0b4}<23.9 && {419d379d-c77e-4b52-8899-73b0b806c0b4}>1.7, !- Program Line 7 + SET {da41ee16-9518-40fb-9c0e-d6fada880076} = 29.4, !- Program Line 8 + SET {fcdc2aca-800d-426d-98bc-191b49b953b1} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {419d379d-c77e-4b52-8899-73b0b806c0b4}<23.9 && {419d379d-c77e-4b52-8899-73b0b806c0b4}>1.7, !- Program Line 10 + SET {da41ee16-9518-40fb-9c0e-d6fada880076} = 29.4, !- Program Line 11 + SET {fcdc2aca-800d-426d-98bc-191b49b953b1} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0a34b743-6f2c-4abf-97b8-f970dfc861eb} = NULL, !- Program Line 14 - SET {5f111436-f953-492b-8ad4-aada727e0a8a} = NULL, !- Program Line 15 + SET {da41ee16-9518-40fb-9c0e-d6fada880076} = NULL, !- Program Line 14 + SET {fcdc2aca-800d-426d-98bc-191b49b953b1} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000003}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f3448c3a-c2c0-4e84-b887-492a5792a77b}<23.9 && {f3448c3a-c2c0-4e84-b887-492a5792a77b}>1.7, !- Program Line 1 - SET {9b0cb2a3-13bf-4f79-b0a0-7a0dab0ac0ab} = 29.4, !- Program Line 2 - SET {f8827cb8-9f51-4c93-a250-8cd37c5edd2e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f3448c3a-c2c0-4e84-b887-492a5792a77b}<23.9 && {f3448c3a-c2c0-4e84-b887-492a5792a77b}>1.7, !- Program Line 4 - SET {9b0cb2a3-13bf-4f79-b0a0-7a0dab0ac0ab} = 29.4, !- Program Line 5 - SET {f8827cb8-9f51-4c93-a250-8cd37c5edd2e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f3448c3a-c2c0-4e84-b887-492a5792a77b}<23.9 && {f3448c3a-c2c0-4e84-b887-492a5792a77b}>1.7, !- Program Line 7 - SET {9b0cb2a3-13bf-4f79-b0a0-7a0dab0ac0ab} = 29.4, !- Program Line 8 - SET {f8827cb8-9f51-4c93-a250-8cd37c5edd2e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f3448c3a-c2c0-4e84-b887-492a5792a77b}<23.9 && {f3448c3a-c2c0-4e84-b887-492a5792a77b}>1.7, !- Program Line 10 - SET {9b0cb2a3-13bf-4f79-b0a0-7a0dab0ac0ab} = 29.4, !- Program Line 11 - SET {f8827cb8-9f51-4c93-a250-8cd37c5edd2e} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c22d82a1-ff8e-4abf-ae42-ad63f4b8365b}<23.9 && {c22d82a1-ff8e-4abf-ae42-ad63f4b8365b}>1.7, !- Program Line 1 + SET {fc436b11-3649-407a-af17-3b3fe3724bb5} = 29.4, !- Program Line 2 + SET {817a2ae9-9d07-49cf-b608-a5b85451a6ae} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c22d82a1-ff8e-4abf-ae42-ad63f4b8365b}<23.9 && {c22d82a1-ff8e-4abf-ae42-ad63f4b8365b}>1.7, !- Program Line 4 + SET {fc436b11-3649-407a-af17-3b3fe3724bb5} = 29.4, !- Program Line 5 + SET {817a2ae9-9d07-49cf-b608-a5b85451a6ae} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c22d82a1-ff8e-4abf-ae42-ad63f4b8365b}<23.9 && {c22d82a1-ff8e-4abf-ae42-ad63f4b8365b}>1.7, !- Program Line 7 + SET {fc436b11-3649-407a-af17-3b3fe3724bb5} = 29.4, !- Program Line 8 + SET {817a2ae9-9d07-49cf-b608-a5b85451a6ae} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c22d82a1-ff8e-4abf-ae42-ad63f4b8365b}<23.9 && {c22d82a1-ff8e-4abf-ae42-ad63f4b8365b}>1.7, !- Program Line 10 + SET {fc436b11-3649-407a-af17-3b3fe3724bb5} = 29.4, !- Program Line 11 + SET {817a2ae9-9d07-49cf-b608-a5b85451a6ae} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {9b0cb2a3-13bf-4f79-b0a0-7a0dab0ac0ab} = NULL, !- Program Line 14 - SET {f8827cb8-9f51-4c93-a250-8cd37c5edd2e} = NULL, !- Program Line 15 + SET {fc436b11-3649-407a-af17-3b3fe3724bb5} = NULL, !- Program Line 14 + SET {817a2ae9-9d07-49cf-b608-a5b85451a6ae} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000004}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7e3f67d0-07fe-40a6-9a7e-0c88fdb39c53}<23.9 && {7e3f67d0-07fe-40a6-9a7e-0c88fdb39c53}>1.7, !- Program Line 1 - SET {cfe88978-15e3-4560-943c-dd3e18f883a7} = 29.4, !- Program Line 2 - SET {74937bae-4408-4963-a1a6-99e3a6336c24} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7e3f67d0-07fe-40a6-9a7e-0c88fdb39c53}<23.9 && {7e3f67d0-07fe-40a6-9a7e-0c88fdb39c53}>1.7, !- Program Line 4 - SET {cfe88978-15e3-4560-943c-dd3e18f883a7} = 29.4, !- Program Line 5 - SET {74937bae-4408-4963-a1a6-99e3a6336c24} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7e3f67d0-07fe-40a6-9a7e-0c88fdb39c53}<23.9 && {7e3f67d0-07fe-40a6-9a7e-0c88fdb39c53}>1.7, !- Program Line 7 - SET {cfe88978-15e3-4560-943c-dd3e18f883a7} = 29.4, !- Program Line 8 - SET {74937bae-4408-4963-a1a6-99e3a6336c24} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7e3f67d0-07fe-40a6-9a7e-0c88fdb39c53}<23.9 && {7e3f67d0-07fe-40a6-9a7e-0c88fdb39c53}>1.7, !- Program Line 10 - SET {cfe88978-15e3-4560-943c-dd3e18f883a7} = 29.4, !- Program Line 11 - SET {74937bae-4408-4963-a1a6-99e3a6336c24} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4add1474-4604-46a8-98b2-fe6d4d2bd5af}<23.9 && {4add1474-4604-46a8-98b2-fe6d4d2bd5af}>1.7, !- Program Line 1 + SET {1a9e729c-4712-4cf6-9b68-ffd52e3cd04c} = 29.4, !- Program Line 2 + SET {a1d10a7d-edc2-4efb-bd3a-ec6738925019} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4add1474-4604-46a8-98b2-fe6d4d2bd5af}<23.9 && {4add1474-4604-46a8-98b2-fe6d4d2bd5af}>1.7, !- Program Line 4 + SET {1a9e729c-4712-4cf6-9b68-ffd52e3cd04c} = 29.4, !- Program Line 5 + SET {a1d10a7d-edc2-4efb-bd3a-ec6738925019} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4add1474-4604-46a8-98b2-fe6d4d2bd5af}<23.9 && {4add1474-4604-46a8-98b2-fe6d4d2bd5af}>1.7, !- Program Line 7 + SET {1a9e729c-4712-4cf6-9b68-ffd52e3cd04c} = 29.4, !- Program Line 8 + SET {a1d10a7d-edc2-4efb-bd3a-ec6738925019} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4add1474-4604-46a8-98b2-fe6d4d2bd5af}<23.9 && {4add1474-4604-46a8-98b2-fe6d4d2bd5af}>1.7, !- Program Line 10 + SET {1a9e729c-4712-4cf6-9b68-ffd52e3cd04c} = 29.4, !- Program Line 11 + SET {a1d10a7d-edc2-4efb-bd3a-ec6738925019} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {cfe88978-15e3-4560-943c-dd3e18f883a7} = NULL, !- Program Line 14 - SET {74937bae-4408-4963-a1a6-99e3a6336c24} = NULL, !- Program Line 15 + SET {1a9e729c-4712-4cf6-9b68-ffd52e3cd04c} = NULL, !- Program Line 14 + SET {a1d10a7d-edc2-4efb-bd3a-ec6738925019} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000005}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {618e3d1b-61dd-4b03-99c4-8892104d91c7}<23.9 && {618e3d1b-61dd-4b03-99c4-8892104d91c7}>1.7, !- Program Line 1 - SET {8827134e-2fcd-4e37-b056-28e1f4ff63ab} = 29.4, !- Program Line 2 - SET {cf19e45c-9b3c-4a5f-974f-b1819ba9784b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {618e3d1b-61dd-4b03-99c4-8892104d91c7}<23.9 && {618e3d1b-61dd-4b03-99c4-8892104d91c7}>1.7, !- Program Line 4 - SET {8827134e-2fcd-4e37-b056-28e1f4ff63ab} = 29.4, !- Program Line 5 - SET {cf19e45c-9b3c-4a5f-974f-b1819ba9784b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {618e3d1b-61dd-4b03-99c4-8892104d91c7}<23.9 && {618e3d1b-61dd-4b03-99c4-8892104d91c7}>1.7, !- Program Line 7 - SET {8827134e-2fcd-4e37-b056-28e1f4ff63ab} = 29.4, !- Program Line 8 - SET {cf19e45c-9b3c-4a5f-974f-b1819ba9784b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {618e3d1b-61dd-4b03-99c4-8892104d91c7}<23.9 && {618e3d1b-61dd-4b03-99c4-8892104d91c7}>1.7, !- Program Line 10 - SET {8827134e-2fcd-4e37-b056-28e1f4ff63ab} = 29.4, !- Program Line 11 - SET {cf19e45c-9b3c-4a5f-974f-b1819ba9784b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bfc562af-4296-48eb-ba4f-49b9b4d6137f}<23.9 && {bfc562af-4296-48eb-ba4f-49b9b4d6137f}>1.7, !- Program Line 1 + SET {c3b7a65d-f42d-4078-9e36-6ce85adfcf8a} = 29.4, !- Program Line 2 + SET {2e737f32-1856-4f30-8ab8-fb195e3246d4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bfc562af-4296-48eb-ba4f-49b9b4d6137f}<23.9 && {bfc562af-4296-48eb-ba4f-49b9b4d6137f}>1.7, !- Program Line 4 + SET {c3b7a65d-f42d-4078-9e36-6ce85adfcf8a} = 29.4, !- Program Line 5 + SET {2e737f32-1856-4f30-8ab8-fb195e3246d4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bfc562af-4296-48eb-ba4f-49b9b4d6137f}<23.9 && {bfc562af-4296-48eb-ba4f-49b9b4d6137f}>1.7, !- Program Line 7 + SET {c3b7a65d-f42d-4078-9e36-6ce85adfcf8a} = 29.4, !- Program Line 8 + SET {2e737f32-1856-4f30-8ab8-fb195e3246d4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bfc562af-4296-48eb-ba4f-49b9b4d6137f}<23.9 && {bfc562af-4296-48eb-ba4f-49b9b4d6137f}>1.7, !- Program Line 10 + SET {c3b7a65d-f42d-4078-9e36-6ce85adfcf8a} = 29.4, !- Program Line 11 + SET {2e737f32-1856-4f30-8ab8-fb195e3246d4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8827134e-2fcd-4e37-b056-28e1f4ff63ab} = NULL, !- Program Line 14 - SET {cf19e45c-9b3c-4a5f-974f-b1819ba9784b} = NULL, !- Program Line 15 + SET {c3b7a65d-f42d-4078-9e36-6ce85adfcf8a} = NULL, !- Program Line 14 + SET {2e737f32-1856-4f30-8ab8-fb195e3246d4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000006}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {aab6f8f7-b794-4405-a962-318cf8b4189e}<23.9 && {aab6f8f7-b794-4405-a962-318cf8b4189e}>1.7, !- Program Line 1 - SET {a7279191-21d7-4ca1-b143-b99a47551aa5} = 29.4, !- Program Line 2 - SET {de826935-4e5d-43ad-b9fd-cd5cc3038f13} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {aab6f8f7-b794-4405-a962-318cf8b4189e}<23.9 && {aab6f8f7-b794-4405-a962-318cf8b4189e}>1.7, !- Program Line 4 - SET {a7279191-21d7-4ca1-b143-b99a47551aa5} = 29.4, !- Program Line 5 - SET {de826935-4e5d-43ad-b9fd-cd5cc3038f13} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {aab6f8f7-b794-4405-a962-318cf8b4189e}<23.9 && {aab6f8f7-b794-4405-a962-318cf8b4189e}>1.7, !- Program Line 7 - SET {a7279191-21d7-4ca1-b143-b99a47551aa5} = 29.4, !- Program Line 8 - SET {de826935-4e5d-43ad-b9fd-cd5cc3038f13} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {aab6f8f7-b794-4405-a962-318cf8b4189e}<23.9 && {aab6f8f7-b794-4405-a962-318cf8b4189e}>1.7, !- Program Line 10 - SET {a7279191-21d7-4ca1-b143-b99a47551aa5} = 29.4, !- Program Line 11 - SET {de826935-4e5d-43ad-b9fd-cd5cc3038f13} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {75317d5c-fd12-4c38-9215-7009ed133011}<23.9 && {75317d5c-fd12-4c38-9215-7009ed133011}>1.7, !- Program Line 1 + SET {9bbadc60-a0c9-483e-a658-3d5583f28468} = 29.4, !- Program Line 2 + SET {bf17918c-96c3-4928-98c0-2d1326941fbd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {75317d5c-fd12-4c38-9215-7009ed133011}<23.9 && {75317d5c-fd12-4c38-9215-7009ed133011}>1.7, !- Program Line 4 + SET {9bbadc60-a0c9-483e-a658-3d5583f28468} = 29.4, !- Program Line 5 + SET {bf17918c-96c3-4928-98c0-2d1326941fbd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {75317d5c-fd12-4c38-9215-7009ed133011}<23.9 && {75317d5c-fd12-4c38-9215-7009ed133011}>1.7, !- Program Line 7 + SET {9bbadc60-a0c9-483e-a658-3d5583f28468} = 29.4, !- Program Line 8 + SET {bf17918c-96c3-4928-98c0-2d1326941fbd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {75317d5c-fd12-4c38-9215-7009ed133011}<23.9 && {75317d5c-fd12-4c38-9215-7009ed133011}>1.7, !- Program Line 10 + SET {9bbadc60-a0c9-483e-a658-3d5583f28468} = 29.4, !- Program Line 11 + SET {bf17918c-96c3-4928-98c0-2d1326941fbd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a7279191-21d7-4ca1-b143-b99a47551aa5} = NULL, !- Program Line 14 - SET {de826935-4e5d-43ad-b9fd-cd5cc3038f13} = NULL, !- Program Line 15 + SET {9bbadc60-a0c9-483e-a658-3d5583f28468} = NULL, !- Program Line 14 + SET {bf17918c-96c3-4928-98c0-2d1326941fbd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000007}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {58c4f4b6-42c3-4c7f-b97d-68cd01265248}<23.9 && {58c4f4b6-42c3-4c7f-b97d-68cd01265248}>1.7, !- Program Line 1 - SET {3aa2980e-f0c7-414b-9516-62014bcafb54} = 29.4, !- Program Line 2 - SET {c055d81b-ad43-43f6-8bc9-618a4ba67838} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {58c4f4b6-42c3-4c7f-b97d-68cd01265248}<23.9 && {58c4f4b6-42c3-4c7f-b97d-68cd01265248}>1.7, !- Program Line 4 - SET {3aa2980e-f0c7-414b-9516-62014bcafb54} = 29.4, !- Program Line 5 - SET {c055d81b-ad43-43f6-8bc9-618a4ba67838} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {58c4f4b6-42c3-4c7f-b97d-68cd01265248}<23.9 && {58c4f4b6-42c3-4c7f-b97d-68cd01265248}>1.7, !- Program Line 7 - SET {3aa2980e-f0c7-414b-9516-62014bcafb54} = 29.4, !- Program Line 8 - SET {c055d81b-ad43-43f6-8bc9-618a4ba67838} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {58c4f4b6-42c3-4c7f-b97d-68cd01265248}<23.9 && {58c4f4b6-42c3-4c7f-b97d-68cd01265248}>1.7, !- Program Line 10 - SET {3aa2980e-f0c7-414b-9516-62014bcafb54} = 29.4, !- Program Line 11 - SET {c055d81b-ad43-43f6-8bc9-618a4ba67838} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5b47a3fa-4531-4e7b-b579-c58025feb308}<23.9 && {5b47a3fa-4531-4e7b-b579-c58025feb308}>1.7, !- Program Line 1 + SET {38f50c44-a60f-47df-adbe-b757bd04266e} = 29.4, !- Program Line 2 + SET {d416f82c-fc7b-4e4f-904d-294655aba5b3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5b47a3fa-4531-4e7b-b579-c58025feb308}<23.9 && {5b47a3fa-4531-4e7b-b579-c58025feb308}>1.7, !- Program Line 4 + SET {38f50c44-a60f-47df-adbe-b757bd04266e} = 29.4, !- Program Line 5 + SET {d416f82c-fc7b-4e4f-904d-294655aba5b3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5b47a3fa-4531-4e7b-b579-c58025feb308}<23.9 && {5b47a3fa-4531-4e7b-b579-c58025feb308}>1.7, !- Program Line 7 + SET {38f50c44-a60f-47df-adbe-b757bd04266e} = 29.4, !- Program Line 8 + SET {d416f82c-fc7b-4e4f-904d-294655aba5b3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5b47a3fa-4531-4e7b-b579-c58025feb308}<23.9 && {5b47a3fa-4531-4e7b-b579-c58025feb308}>1.7, !- Program Line 10 + SET {38f50c44-a60f-47df-adbe-b757bd04266e} = 29.4, !- Program Line 11 + SET {d416f82c-fc7b-4e4f-904d-294655aba5b3} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3aa2980e-f0c7-414b-9516-62014bcafb54} = NULL, !- Program Line 14 - SET {c055d81b-ad43-43f6-8bc9-618a4ba67838} = NULL, !- Program Line 15 + SET {38f50c44-a60f-47df-adbe-b757bd04266e} = NULL, !- Program Line 14 + SET {d416f82c-fc7b-4e4f-904d-294655aba5b3} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0033-000000000008}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {45b0fec0-c9d6-4dfb-a096-ae24bcb40a14}<23.9 && {45b0fec0-c9d6-4dfb-a096-ae24bcb40a14}>1.7, !- Program Line 1 - SET {327c0bb5-289b-41af-8c2f-0b9bd131495c} = 29.4, !- Program Line 2 - SET {7295dd6d-08b8-405b-b4bf-f5ddf5e008d0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {45b0fec0-c9d6-4dfb-a096-ae24bcb40a14}<23.9 && {45b0fec0-c9d6-4dfb-a096-ae24bcb40a14}>1.7, !- Program Line 4 - SET {327c0bb5-289b-41af-8c2f-0b9bd131495c} = 29.4, !- Program Line 5 - SET {7295dd6d-08b8-405b-b4bf-f5ddf5e008d0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {45b0fec0-c9d6-4dfb-a096-ae24bcb40a14}<23.9 && {45b0fec0-c9d6-4dfb-a096-ae24bcb40a14}>1.7, !- Program Line 7 - SET {327c0bb5-289b-41af-8c2f-0b9bd131495c} = 29.4, !- Program Line 8 - SET {7295dd6d-08b8-405b-b4bf-f5ddf5e008d0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {45b0fec0-c9d6-4dfb-a096-ae24bcb40a14}<23.9 && {45b0fec0-c9d6-4dfb-a096-ae24bcb40a14}>1.7, !- Program Line 10 - SET {327c0bb5-289b-41af-8c2f-0b9bd131495c} = 29.4, !- Program Line 11 - SET {7295dd6d-08b8-405b-b4bf-f5ddf5e008d0} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e739a6ea-d28e-44d3-a325-0a2fefd46a0d}<23.9 && {e739a6ea-d28e-44d3-a325-0a2fefd46a0d}>1.7, !- Program Line 1 + SET {fad775a2-2582-4091-8b6d-e35cd59b5099} = 29.4, !- Program Line 2 + SET {dc8e16bb-9aef-41ea-a8a1-05aae9aa75f2} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e739a6ea-d28e-44d3-a325-0a2fefd46a0d}<23.9 && {e739a6ea-d28e-44d3-a325-0a2fefd46a0d}>1.7, !- Program Line 4 + SET {fad775a2-2582-4091-8b6d-e35cd59b5099} = 29.4, !- Program Line 5 + SET {dc8e16bb-9aef-41ea-a8a1-05aae9aa75f2} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e739a6ea-d28e-44d3-a325-0a2fefd46a0d}<23.9 && {e739a6ea-d28e-44d3-a325-0a2fefd46a0d}>1.7, !- Program Line 7 + SET {fad775a2-2582-4091-8b6d-e35cd59b5099} = 29.4, !- Program Line 8 + SET {dc8e16bb-9aef-41ea-a8a1-05aae9aa75f2} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e739a6ea-d28e-44d3-a325-0a2fefd46a0d}<23.9 && {e739a6ea-d28e-44d3-a325-0a2fefd46a0d}>1.7, !- Program Line 10 + SET {fad775a2-2582-4091-8b6d-e35cd59b5099} = 29.4, !- Program Line 11 + SET {dc8e16bb-9aef-41ea-a8a1-05aae9aa75f2} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {327c0bb5-289b-41af-8c2f-0b9bd131495c} = NULL, !- Program Line 14 - SET {7295dd6d-08b8-405b-b4bf-f5ddf5e008d0} = NULL, !- Program Line 15 + SET {fad775a2-2582-4091-8b6d-e35cd59b5099} = NULL, !- Program Line 14 + SET {dc8e16bb-9aef-41ea-a8a1-05aae9aa75f2} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 710876833b..d07522d4ae 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000038}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -12357,7 +12357,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12365,7 +12365,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12373,7 +12373,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12381,7 +12381,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12389,7 +12389,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12397,7 +12397,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12405,7 +12405,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0066-000000000025}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12413,7 +12413,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000008}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0066-000000000026}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12421,7 +12421,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000009}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12429,7 +12429,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000010}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12437,7 +12437,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000011}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12445,7 +12445,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000012}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12453,7 +12453,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000013}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12461,7 +12461,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000014}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12469,7 +12469,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000015}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12477,7 +12477,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000016}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12485,209 +12485,209 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b0feed7c-8561-4b25-8183-053c7de236a1}<23.9 && {b0feed7c-8561-4b25-8183-053c7de236a1}>1.7, !- Program Line 1 - SET {7462fb4d-fd15-4b3c-9683-f336cdc4556d} = 29.4, !- Program Line 2 - SET {4e2568c6-6c67-477a-9205-1e385eac2fef} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b0feed7c-8561-4b25-8183-053c7de236a1}<23.9 && {b0feed7c-8561-4b25-8183-053c7de236a1}>1.7, !- Program Line 4 - SET {7462fb4d-fd15-4b3c-9683-f336cdc4556d} = 29.4, !- Program Line 5 - SET {4e2568c6-6c67-477a-9205-1e385eac2fef} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b0feed7c-8561-4b25-8183-053c7de236a1}<23.9 && {b0feed7c-8561-4b25-8183-053c7de236a1}>1.7, !- Program Line 7 - SET {7462fb4d-fd15-4b3c-9683-f336cdc4556d} = 29.4, !- Program Line 8 - SET {4e2568c6-6c67-477a-9205-1e385eac2fef} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b0feed7c-8561-4b25-8183-053c7de236a1}<23.9 && {b0feed7c-8561-4b25-8183-053c7de236a1}>1.7, !- Program Line 10 - SET {7462fb4d-fd15-4b3c-9683-f336cdc4556d} = 29.4, !- Program Line 11 - SET {4e2568c6-6c67-477a-9205-1e385eac2fef} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {68e3bb12-7abb-4429-8f7d-c55c3878abf2}<23.9 && {68e3bb12-7abb-4429-8f7d-c55c3878abf2}>1.7, !- Program Line 1 + SET {f56f5c4c-4ecb-4328-9f1e-d37b92ac53d7} = 29.4, !- Program Line 2 + SET {c857a408-721c-4e5b-b1aa-cb501c5e03db} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {68e3bb12-7abb-4429-8f7d-c55c3878abf2}<23.9 && {68e3bb12-7abb-4429-8f7d-c55c3878abf2}>1.7, !- Program Line 4 + SET {f56f5c4c-4ecb-4328-9f1e-d37b92ac53d7} = 29.4, !- Program Line 5 + SET {c857a408-721c-4e5b-b1aa-cb501c5e03db} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {68e3bb12-7abb-4429-8f7d-c55c3878abf2}<23.9 && {68e3bb12-7abb-4429-8f7d-c55c3878abf2}>1.7, !- Program Line 7 + SET {f56f5c4c-4ecb-4328-9f1e-d37b92ac53d7} = 29.4, !- Program Line 8 + SET {c857a408-721c-4e5b-b1aa-cb501c5e03db} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {68e3bb12-7abb-4429-8f7d-c55c3878abf2}<23.9 && {68e3bb12-7abb-4429-8f7d-c55c3878abf2}>1.7, !- Program Line 10 + SET {f56f5c4c-4ecb-4328-9f1e-d37b92ac53d7} = 29.4, !- Program Line 11 + SET {c857a408-721c-4e5b-b1aa-cb501c5e03db} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7462fb4d-fd15-4b3c-9683-f336cdc4556d} = NULL, !- Program Line 14 - SET {4e2568c6-6c67-477a-9205-1e385eac2fef} = NULL, !- Program Line 15 + SET {f56f5c4c-4ecb-4328-9f1e-d37b92ac53d7} = NULL, !- Program Line 14 + SET {c857a408-721c-4e5b-b1aa-cb501c5e03db} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {87ca9410-3f00-4dca-9bbe-d86aee9f6be4}<23.9 && {87ca9410-3f00-4dca-9bbe-d86aee9f6be4}>1.7, !- Program Line 1 - SET {fedc6459-533c-445d-b259-f905e1a88dc9} = 29.4, !- Program Line 2 - SET {a11ce89b-58e9-414f-9068-2ad7317ed5d6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {87ca9410-3f00-4dca-9bbe-d86aee9f6be4}<23.9 && {87ca9410-3f00-4dca-9bbe-d86aee9f6be4}>1.7, !- Program Line 4 - SET {fedc6459-533c-445d-b259-f905e1a88dc9} = 29.4, !- Program Line 5 - SET {a11ce89b-58e9-414f-9068-2ad7317ed5d6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {87ca9410-3f00-4dca-9bbe-d86aee9f6be4}<23.9 && {87ca9410-3f00-4dca-9bbe-d86aee9f6be4}>1.7, !- Program Line 7 - SET {fedc6459-533c-445d-b259-f905e1a88dc9} = 29.4, !- Program Line 8 - SET {a11ce89b-58e9-414f-9068-2ad7317ed5d6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {87ca9410-3f00-4dca-9bbe-d86aee9f6be4}<23.9 && {87ca9410-3f00-4dca-9bbe-d86aee9f6be4}>1.7, !- Program Line 10 - SET {fedc6459-533c-445d-b259-f905e1a88dc9} = 29.4, !- Program Line 11 - SET {a11ce89b-58e9-414f-9068-2ad7317ed5d6} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ec50b137-0bef-4547-b93b-785df0f38f19}<23.9 && {ec50b137-0bef-4547-b93b-785df0f38f19}>1.7, !- Program Line 1 + SET {ab6c993d-94b6-45bb-8b90-333378210626} = 29.4, !- Program Line 2 + SET {643d1bf7-fc56-4a59-bbca-c12bb3b91576} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ec50b137-0bef-4547-b93b-785df0f38f19}<23.9 && {ec50b137-0bef-4547-b93b-785df0f38f19}>1.7, !- Program Line 4 + SET {ab6c993d-94b6-45bb-8b90-333378210626} = 29.4, !- Program Line 5 + SET {643d1bf7-fc56-4a59-bbca-c12bb3b91576} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ec50b137-0bef-4547-b93b-785df0f38f19}<23.9 && {ec50b137-0bef-4547-b93b-785df0f38f19}>1.7, !- Program Line 7 + SET {ab6c993d-94b6-45bb-8b90-333378210626} = 29.4, !- Program Line 8 + SET {643d1bf7-fc56-4a59-bbca-c12bb3b91576} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ec50b137-0bef-4547-b93b-785df0f38f19}<23.9 && {ec50b137-0bef-4547-b93b-785df0f38f19}>1.7, !- Program Line 10 + SET {ab6c993d-94b6-45bb-8b90-333378210626} = 29.4, !- Program Line 11 + SET {643d1bf7-fc56-4a59-bbca-c12bb3b91576} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {fedc6459-533c-445d-b259-f905e1a88dc9} = NULL, !- Program Line 14 - SET {a11ce89b-58e9-414f-9068-2ad7317ed5d6} = NULL, !- Program Line 15 + SET {ab6c993d-94b6-45bb-8b90-333378210626} = NULL, !- Program Line 14 + SET {643d1bf7-fc56-4a59-bbca-c12bb3b91576} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {84cc116f-693c-48a9-98de-cef4c234315b}<23.9 && {84cc116f-693c-48a9-98de-cef4c234315b}>1.7, !- Program Line 1 - SET {ea7fed39-7390-43a7-91a8-3d18aa3167fe} = 29.4, !- Program Line 2 - SET {b15ab416-43f7-427d-8b26-1d3cbaf2d735} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {84cc116f-693c-48a9-98de-cef4c234315b}<23.9 && {84cc116f-693c-48a9-98de-cef4c234315b}>1.7, !- Program Line 4 - SET {ea7fed39-7390-43a7-91a8-3d18aa3167fe} = 29.4, !- Program Line 5 - SET {b15ab416-43f7-427d-8b26-1d3cbaf2d735} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {84cc116f-693c-48a9-98de-cef4c234315b}<23.9 && {84cc116f-693c-48a9-98de-cef4c234315b}>1.7, !- Program Line 7 - SET {ea7fed39-7390-43a7-91a8-3d18aa3167fe} = 29.4, !- Program Line 8 - SET {b15ab416-43f7-427d-8b26-1d3cbaf2d735} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {84cc116f-693c-48a9-98de-cef4c234315b}<23.9 && {84cc116f-693c-48a9-98de-cef4c234315b}>1.7, !- Program Line 10 - SET {ea7fed39-7390-43a7-91a8-3d18aa3167fe} = 29.4, !- Program Line 11 - SET {b15ab416-43f7-427d-8b26-1d3cbaf2d735} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d7306357-9f51-4269-8b60-61aa0fce171d}<23.9 && {d7306357-9f51-4269-8b60-61aa0fce171d}>1.7, !- Program Line 1 + SET {d5810caa-81e8-4e97-805a-8f81530008f0} = 29.4, !- Program Line 2 + SET {79e7548d-c072-494d-a2dc-3756f6b29488} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d7306357-9f51-4269-8b60-61aa0fce171d}<23.9 && {d7306357-9f51-4269-8b60-61aa0fce171d}>1.7, !- Program Line 4 + SET {d5810caa-81e8-4e97-805a-8f81530008f0} = 29.4, !- Program Line 5 + SET {79e7548d-c072-494d-a2dc-3756f6b29488} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d7306357-9f51-4269-8b60-61aa0fce171d}<23.9 && {d7306357-9f51-4269-8b60-61aa0fce171d}>1.7, !- Program Line 7 + SET {d5810caa-81e8-4e97-805a-8f81530008f0} = 29.4, !- Program Line 8 + SET {79e7548d-c072-494d-a2dc-3756f6b29488} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d7306357-9f51-4269-8b60-61aa0fce171d}<23.9 && {d7306357-9f51-4269-8b60-61aa0fce171d}>1.7, !- Program Line 10 + SET {d5810caa-81e8-4e97-805a-8f81530008f0} = 29.4, !- Program Line 11 + SET {79e7548d-c072-494d-a2dc-3756f6b29488} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ea7fed39-7390-43a7-91a8-3d18aa3167fe} = NULL, !- Program Line 14 - SET {b15ab416-43f7-427d-8b26-1d3cbaf2d735} = NULL, !- Program Line 15 + SET {d5810caa-81e8-4e97-805a-8f81530008f0} = NULL, !- Program Line 14 + SET {79e7548d-c072-494d-a2dc-3756f6b29488} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9af31887-7099-4648-9c1f-84a99c92032d}<23.9 && {9af31887-7099-4648-9c1f-84a99c92032d}>1.7, !- Program Line 1 - SET {1609ee7b-1476-48fc-9983-52b6ad081523} = 29.4, !- Program Line 2 - SET {1fbfc6b0-b04c-4f01-a8cd-bf0ece5f0e44} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9af31887-7099-4648-9c1f-84a99c92032d}<23.9 && {9af31887-7099-4648-9c1f-84a99c92032d}>1.7, !- Program Line 4 - SET {1609ee7b-1476-48fc-9983-52b6ad081523} = 29.4, !- Program Line 5 - SET {1fbfc6b0-b04c-4f01-a8cd-bf0ece5f0e44} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9af31887-7099-4648-9c1f-84a99c92032d}<23.9 && {9af31887-7099-4648-9c1f-84a99c92032d}>1.7, !- Program Line 7 - SET {1609ee7b-1476-48fc-9983-52b6ad081523} = 29.4, !- Program Line 8 - SET {1fbfc6b0-b04c-4f01-a8cd-bf0ece5f0e44} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9af31887-7099-4648-9c1f-84a99c92032d}<23.9 && {9af31887-7099-4648-9c1f-84a99c92032d}>1.7, !- Program Line 10 - SET {1609ee7b-1476-48fc-9983-52b6ad081523} = 29.4, !- Program Line 11 - SET {1fbfc6b0-b04c-4f01-a8cd-bf0ece5f0e44} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {959bdea7-ee9b-4b72-9eda-812d01ad1298}<23.9 && {959bdea7-ee9b-4b72-9eda-812d01ad1298}>1.7, !- Program Line 1 + SET {709c9c59-e2f9-43f0-9061-e034d5a175eb} = 29.4, !- Program Line 2 + SET {fa481e2e-b9eb-4c13-a24f-1d138f02312a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {959bdea7-ee9b-4b72-9eda-812d01ad1298}<23.9 && {959bdea7-ee9b-4b72-9eda-812d01ad1298}>1.7, !- Program Line 4 + SET {709c9c59-e2f9-43f0-9061-e034d5a175eb} = 29.4, !- Program Line 5 + SET {fa481e2e-b9eb-4c13-a24f-1d138f02312a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {959bdea7-ee9b-4b72-9eda-812d01ad1298}<23.9 && {959bdea7-ee9b-4b72-9eda-812d01ad1298}>1.7, !- Program Line 7 + SET {709c9c59-e2f9-43f0-9061-e034d5a175eb} = 29.4, !- Program Line 8 + SET {fa481e2e-b9eb-4c13-a24f-1d138f02312a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {959bdea7-ee9b-4b72-9eda-812d01ad1298}<23.9 && {959bdea7-ee9b-4b72-9eda-812d01ad1298}>1.7, !- Program Line 10 + SET {709c9c59-e2f9-43f0-9061-e034d5a175eb} = 29.4, !- Program Line 11 + SET {fa481e2e-b9eb-4c13-a24f-1d138f02312a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1609ee7b-1476-48fc-9983-52b6ad081523} = NULL, !- Program Line 14 - SET {1fbfc6b0-b04c-4f01-a8cd-bf0ece5f0e44} = NULL, !- Program Line 15 + SET {709c9c59-e2f9-43f0-9061-e034d5a175eb} = NULL, !- Program Line 14 + SET {fa481e2e-b9eb-4c13-a24f-1d138f02312a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {146f7a98-1915-4878-a343-585afdcfafec}<23.9 && {146f7a98-1915-4878-a343-585afdcfafec}>1.7, !- Program Line 1 - SET {b87d6192-f748-445c-9279-8887488a1c2c} = 29.4, !- Program Line 2 - SET {5e9243e9-5b84-46dc-b51d-893476495b9a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {146f7a98-1915-4878-a343-585afdcfafec}<23.9 && {146f7a98-1915-4878-a343-585afdcfafec}>1.7, !- Program Line 4 - SET {b87d6192-f748-445c-9279-8887488a1c2c} = 29.4, !- Program Line 5 - SET {5e9243e9-5b84-46dc-b51d-893476495b9a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {146f7a98-1915-4878-a343-585afdcfafec}<23.9 && {146f7a98-1915-4878-a343-585afdcfafec}>1.7, !- Program Line 7 - SET {b87d6192-f748-445c-9279-8887488a1c2c} = 29.4, !- Program Line 8 - SET {5e9243e9-5b84-46dc-b51d-893476495b9a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {146f7a98-1915-4878-a343-585afdcfafec}<23.9 && {146f7a98-1915-4878-a343-585afdcfafec}>1.7, !- Program Line 10 - SET {b87d6192-f748-445c-9279-8887488a1c2c} = 29.4, !- Program Line 11 - SET {5e9243e9-5b84-46dc-b51d-893476495b9a} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a1a4c72e-3f10-4dcf-a51b-bc5ddf0d47de}<23.9 && {a1a4c72e-3f10-4dcf-a51b-bc5ddf0d47de}>1.7, !- Program Line 1 + SET {615ce49d-1dc4-4ff5-9864-3a1f2e9ff5d6} = 29.4, !- Program Line 2 + SET {faabae6b-cb48-4448-8185-ebb68e9aa956} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a1a4c72e-3f10-4dcf-a51b-bc5ddf0d47de}<23.9 && {a1a4c72e-3f10-4dcf-a51b-bc5ddf0d47de}>1.7, !- Program Line 4 + SET {615ce49d-1dc4-4ff5-9864-3a1f2e9ff5d6} = 29.4, !- Program Line 5 + SET {faabae6b-cb48-4448-8185-ebb68e9aa956} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a1a4c72e-3f10-4dcf-a51b-bc5ddf0d47de}<23.9 && {a1a4c72e-3f10-4dcf-a51b-bc5ddf0d47de}>1.7, !- Program Line 7 + SET {615ce49d-1dc4-4ff5-9864-3a1f2e9ff5d6} = 29.4, !- Program Line 8 + SET {faabae6b-cb48-4448-8185-ebb68e9aa956} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a1a4c72e-3f10-4dcf-a51b-bc5ddf0d47de}<23.9 && {a1a4c72e-3f10-4dcf-a51b-bc5ddf0d47de}>1.7, !- Program Line 10 + SET {615ce49d-1dc4-4ff5-9864-3a1f2e9ff5d6} = 29.4, !- Program Line 11 + SET {faabae6b-cb48-4448-8185-ebb68e9aa956} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b87d6192-f748-445c-9279-8887488a1c2c} = NULL, !- Program Line 14 - SET {5e9243e9-5b84-46dc-b51d-893476495b9a} = NULL, !- Program Line 15 + SET {615ce49d-1dc4-4ff5-9864-3a1f2e9ff5d6} = NULL, !- Program Line 14 + SET {faabae6b-cb48-4448-8185-ebb68e9aa956} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {25d06bf8-1393-4b66-8f9d-f06403b4a7d3}<23.9 && {25d06bf8-1393-4b66-8f9d-f06403b4a7d3}>1.7, !- Program Line 1 - SET {8953b1d9-a27d-4046-b57b-9798d96018db} = 29.4, !- Program Line 2 - SET {bf520072-df0f-4c56-bb4c-3eb3e95e354b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {25d06bf8-1393-4b66-8f9d-f06403b4a7d3}<23.9 && {25d06bf8-1393-4b66-8f9d-f06403b4a7d3}>1.7, !- Program Line 4 - SET {8953b1d9-a27d-4046-b57b-9798d96018db} = 29.4, !- Program Line 5 - SET {bf520072-df0f-4c56-bb4c-3eb3e95e354b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {25d06bf8-1393-4b66-8f9d-f06403b4a7d3}<23.9 && {25d06bf8-1393-4b66-8f9d-f06403b4a7d3}>1.7, !- Program Line 7 - SET {8953b1d9-a27d-4046-b57b-9798d96018db} = 29.4, !- Program Line 8 - SET {bf520072-df0f-4c56-bb4c-3eb3e95e354b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {25d06bf8-1393-4b66-8f9d-f06403b4a7d3}<23.9 && {25d06bf8-1393-4b66-8f9d-f06403b4a7d3}>1.7, !- Program Line 10 - SET {8953b1d9-a27d-4046-b57b-9798d96018db} = 29.4, !- Program Line 11 - SET {bf520072-df0f-4c56-bb4c-3eb3e95e354b} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {59c8e2df-9c50-4983-a64d-4a57adf1f444}<23.9 && {59c8e2df-9c50-4983-a64d-4a57adf1f444}>1.7, !- Program Line 1 + SET {753b8256-2dad-4b04-b6a4-ddc4e9d50465} = 29.4, !- Program Line 2 + SET {2b94fd0a-7da9-49e5-996a-f670db31994b} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {59c8e2df-9c50-4983-a64d-4a57adf1f444}<23.9 && {59c8e2df-9c50-4983-a64d-4a57adf1f444}>1.7, !- Program Line 4 + SET {753b8256-2dad-4b04-b6a4-ddc4e9d50465} = 29.4, !- Program Line 5 + SET {2b94fd0a-7da9-49e5-996a-f670db31994b} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {59c8e2df-9c50-4983-a64d-4a57adf1f444}<23.9 && {59c8e2df-9c50-4983-a64d-4a57adf1f444}>1.7, !- Program Line 7 + SET {753b8256-2dad-4b04-b6a4-ddc4e9d50465} = 29.4, !- Program Line 8 + SET {2b94fd0a-7da9-49e5-996a-f670db31994b} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {59c8e2df-9c50-4983-a64d-4a57adf1f444}<23.9 && {59c8e2df-9c50-4983-a64d-4a57adf1f444}>1.7, !- Program Line 10 + SET {753b8256-2dad-4b04-b6a4-ddc4e9d50465} = 29.4, !- Program Line 11 + SET {2b94fd0a-7da9-49e5-996a-f670db31994b} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8953b1d9-a27d-4046-b57b-9798d96018db} = NULL, !- Program Line 14 - SET {bf520072-df0f-4c56-bb4c-3eb3e95e354b} = NULL, !- Program Line 15 + SET {753b8256-2dad-4b04-b6a4-ddc4e9d50465} = NULL, !- Program Line 14 + SET {2b94fd0a-7da9-49e5-996a-f670db31994b} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {72861f94-a814-42b4-a375-30886b6db40a}<23.9 && {72861f94-a814-42b4-a375-30886b6db40a}>1.7, !- Program Line 1 - SET {b4bc757c-c7ad-4227-a278-f608920c909b} = 29.4, !- Program Line 2 - SET {baca2cf8-34ce-4856-b5cf-003c7bf4a8ff} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {72861f94-a814-42b4-a375-30886b6db40a}<23.9 && {72861f94-a814-42b4-a375-30886b6db40a}>1.7, !- Program Line 4 - SET {b4bc757c-c7ad-4227-a278-f608920c909b} = 29.4, !- Program Line 5 - SET {baca2cf8-34ce-4856-b5cf-003c7bf4a8ff} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {72861f94-a814-42b4-a375-30886b6db40a}<23.9 && {72861f94-a814-42b4-a375-30886b6db40a}>1.7, !- Program Line 7 - SET {b4bc757c-c7ad-4227-a278-f608920c909b} = 29.4, !- Program Line 8 - SET {baca2cf8-34ce-4856-b5cf-003c7bf4a8ff} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {72861f94-a814-42b4-a375-30886b6db40a}<23.9 && {72861f94-a814-42b4-a375-30886b6db40a}>1.7, !- Program Line 10 - SET {b4bc757c-c7ad-4227-a278-f608920c909b} = 29.4, !- Program Line 11 - SET {baca2cf8-34ce-4856-b5cf-003c7bf4a8ff} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2adfa886-35a8-4ca0-afae-132dc034b89c}<23.9 && {2adfa886-35a8-4ca0-afae-132dc034b89c}>1.7, !- Program Line 1 + SET {0023b65f-16e4-4f8e-9b20-81c110e9e82b} = 29.4, !- Program Line 2 + SET {09f7e917-c783-43cd-953f-2600c06bbe61} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2adfa886-35a8-4ca0-afae-132dc034b89c}<23.9 && {2adfa886-35a8-4ca0-afae-132dc034b89c}>1.7, !- Program Line 4 + SET {0023b65f-16e4-4f8e-9b20-81c110e9e82b} = 29.4, !- Program Line 5 + SET {09f7e917-c783-43cd-953f-2600c06bbe61} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2adfa886-35a8-4ca0-afae-132dc034b89c}<23.9 && {2adfa886-35a8-4ca0-afae-132dc034b89c}>1.7, !- Program Line 7 + SET {0023b65f-16e4-4f8e-9b20-81c110e9e82b} = 29.4, !- Program Line 8 + SET {09f7e917-c783-43cd-953f-2600c06bbe61} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2adfa886-35a8-4ca0-afae-132dc034b89c}<23.9 && {2adfa886-35a8-4ca0-afae-132dc034b89c}>1.7, !- Program Line 10 + SET {0023b65f-16e4-4f8e-9b20-81c110e9e82b} = 29.4, !- Program Line 11 + SET {09f7e917-c783-43cd-953f-2600c06bbe61} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b4bc757c-c7ad-4227-a278-f608920c909b} = NULL, !- Program Line 14 - SET {baca2cf8-34ce-4856-b5cf-003c7bf4a8ff} = NULL, !- Program Line 15 + SET {0023b65f-16e4-4f8e-9b20-81c110e9e82b} = NULL, !- Program Line 14 + SET {09f7e917-c783-43cd-953f-2600c06bbe61} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {13e87f56-465e-4256-9de7-4bf8d4792537}<23.9 && {13e87f56-465e-4256-9de7-4bf8d4792537}>1.7, !- Program Line 1 - SET {8f6f44a4-455e-4f4c-9150-f24dc878ddcc} = 29.4, !- Program Line 2 - SET {b7734f44-4993-4536-9947-0186febe034c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {13e87f56-465e-4256-9de7-4bf8d4792537}<23.9 && {13e87f56-465e-4256-9de7-4bf8d4792537}>1.7, !- Program Line 4 - SET {8f6f44a4-455e-4f4c-9150-f24dc878ddcc} = 29.4, !- Program Line 5 - SET {b7734f44-4993-4536-9947-0186febe034c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {13e87f56-465e-4256-9de7-4bf8d4792537}<23.9 && {13e87f56-465e-4256-9de7-4bf8d4792537}>1.7, !- Program Line 7 - SET {8f6f44a4-455e-4f4c-9150-f24dc878ddcc} = 29.4, !- Program Line 8 - SET {b7734f44-4993-4536-9947-0186febe034c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {13e87f56-465e-4256-9de7-4bf8d4792537}<23.9 && {13e87f56-465e-4256-9de7-4bf8d4792537}>1.7, !- Program Line 10 - SET {8f6f44a4-455e-4f4c-9150-f24dc878ddcc} = 29.4, !- Program Line 11 - SET {b7734f44-4993-4536-9947-0186febe034c} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {33f83480-063a-43e0-9ed4-7b0fbe59f201}<23.9 && {33f83480-063a-43e0-9ed4-7b0fbe59f201}>1.7, !- Program Line 1 + SET {d0137981-cd94-4082-a514-7f117903a2dd} = 29.4, !- Program Line 2 + SET {9d5d9020-e6b0-414b-aa75-600186c34c10} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {33f83480-063a-43e0-9ed4-7b0fbe59f201}<23.9 && {33f83480-063a-43e0-9ed4-7b0fbe59f201}>1.7, !- Program Line 4 + SET {d0137981-cd94-4082-a514-7f117903a2dd} = 29.4, !- Program Line 5 + SET {9d5d9020-e6b0-414b-aa75-600186c34c10} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {33f83480-063a-43e0-9ed4-7b0fbe59f201}<23.9 && {33f83480-063a-43e0-9ed4-7b0fbe59f201}>1.7, !- Program Line 7 + SET {d0137981-cd94-4082-a514-7f117903a2dd} = 29.4, !- Program Line 8 + SET {9d5d9020-e6b0-414b-aa75-600186c34c10} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {33f83480-063a-43e0-9ed4-7b0fbe59f201}<23.9 && {33f83480-063a-43e0-9ed4-7b0fbe59f201}>1.7, !- Program Line 10 + SET {d0137981-cd94-4082-a514-7f117903a2dd} = 29.4, !- Program Line 11 + SET {9d5d9020-e6b0-414b-aa75-600186c34c10} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8f6f44a4-455e-4f4c-9150-f24dc878ddcc} = NULL, !- Program Line 14 - SET {b7734f44-4993-4536-9947-0186febe034c} = NULL, !- Program Line 15 + SET {d0137981-cd94-4082-a514-7f117903a2dd} = NULL, !- Program Line 14 + SET {9d5d9020-e6b0-414b-aa75-600186c34c10} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000004}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000005}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000006}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000007}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000008}; !- Program Name 1 @@ -15308,841 +15308,841 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000165}, !- Inlet Port {00000000-0000-0000-0016-000000000167}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000168}, !- Inlet Port {00000000-0000-0000-0016-000000000166}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000173}, !- Inlet Port {00000000-0000-0000-0016-000000000174}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000169}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000170}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000163}, !- Inlet Port {00000000-0000-0000-0016-000000000172}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000171}, !- Inlet Port {00000000-0000-0000-0016-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000327}, !- Inlet Port {00000000-0000-0000-0016-000000000329}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000330}, !- Inlet Port {00000000-0000-0000-0016-000000000328}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000335}, !- Inlet Port {00000000-0000-0000-0016-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000331}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000332}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000325}, !- Inlet Port {00000000-0000-0000-0016-000000000334}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000333}, !- Inlet Port {00000000-0000-0000-0016-000000000326}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000345}, !- Inlet Port {00000000-0000-0000-0016-000000000347}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000348}, !- Inlet Port {00000000-0000-0000-0016-000000000346}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000353}, !- Inlet Port {00000000-0000-0000-0016-000000000354}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000349}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000350}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000343}, !- Inlet Port {00000000-0000-0000-0016-000000000352}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000351}, !- Inlet Port {00000000-0000-0000-0016-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000363}, !- Inlet Port {00000000-0000-0000-0016-000000000365}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000366}, !- Inlet Port {00000000-0000-0000-0016-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000371}, !- Inlet Port {00000000-0000-0000-0016-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000367}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000368}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000361}, !- Inlet Port {00000000-0000-0000-0016-000000000370}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000369}, !- Inlet Port {00000000-0000-0000-0016-000000000362}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000381}, !- Inlet Port {00000000-0000-0000-0016-000000000383}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000384}, !- Inlet Port {00000000-0000-0000-0016-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000389}, !- Inlet Port {00000000-0000-0000-0016-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000385}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000386}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000379}, !- Inlet Port {00000000-0000-0000-0016-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000387}, !- Inlet Port {00000000-0000-0000-0016-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000217}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000399}, !- Inlet Port {00000000-0000-0000-0016-000000000401}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000218}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000402}, !- Inlet Port {00000000-0000-0000-0016-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000219}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000407}, !- Inlet Port {00000000-0000-0000-0016-000000000408}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000220}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000403}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000221}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000404}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000222}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000397}, !- Inlet Port {00000000-0000-0000-0016-000000000406}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000223}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000405}, !- Inlet Port {00000000-0000-0000-0016-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000224}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000417}, !- Inlet Port {00000000-0000-0000-0016-000000000419}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000225}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000420}, !- Inlet Port {00000000-0000-0000-0016-000000000418}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000226}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000425}, !- Inlet Port {00000000-0000-0000-0016-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000227}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000421}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000228}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000422}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000229}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000415}, !- Inlet Port {00000000-0000-0000-0016-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000230}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000423}, !- Inlet Port {00000000-0000-0000-0016-000000000416}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000231}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000435}, !- Inlet Port {00000000-0000-0000-0016-000000000437}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000232}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000438}, !- Inlet Port {00000000-0000-0000-0016-000000000436}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000233}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000443}, !- Inlet Port {00000000-0000-0000-0016-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000234}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000439}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000235}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000440}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000236}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000433}, !- Inlet Port {00000000-0000-0000-0016-000000000442}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000237}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000441}, !- Inlet Port {00000000-0000-0000-0016-000000000434}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000238}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000453}, !- Inlet Port {00000000-0000-0000-0016-000000000455}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000239}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000456}, !- Inlet Port {00000000-0000-0000-0016-000000000454}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000240}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000461}, !- Inlet Port {00000000-0000-0000-0016-000000000462}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000241}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000457}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000242}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000458}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000243}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000451}, !- Inlet Port {00000000-0000-0000-0016-000000000460}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000244}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000459}, !- Inlet Port {00000000-0000-0000-0016-000000000452}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000245}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000183}, !- Inlet Port {00000000-0000-0000-0016-000000000185}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000246}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000186}, !- Inlet Port {00000000-0000-0000-0016-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000247}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000191}, !- Inlet Port {00000000-0000-0000-0016-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000248}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000249}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000188}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000250}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000181}, !- Inlet Port {00000000-0000-0000-0016-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000251}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000189}, !- Inlet Port {00000000-0000-0000-0016-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000252}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000201}, !- Inlet Port {00000000-0000-0000-0016-000000000203}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000253}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000204}, !- Inlet Port {00000000-0000-0000-0016-000000000202}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000254}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000209}, !- Inlet Port {00000000-0000-0000-0016-000000000210}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000255}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000256}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000206}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000257}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000199}, !- Inlet Port {00000000-0000-0000-0016-000000000208}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000258}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000207}, !- Inlet Port {00000000-0000-0000-0016-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000259}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000219}, !- Inlet Port {00000000-0000-0000-0016-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000260}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000222}, !- Inlet Port {00000000-0000-0000-0016-000000000220}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000261}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000227}, !- Inlet Port {00000000-0000-0000-0016-000000000228}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000262}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000223}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000263}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000224}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000264}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000217}, !- Inlet Port {00000000-0000-0000-0016-000000000226}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000265}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000225}, !- Inlet Port {00000000-0000-0000-0016-000000000218}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000266}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000237}, !- Inlet Port {00000000-0000-0000-0016-000000000239}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000267}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000240}, !- Inlet Port {00000000-0000-0000-0016-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000268}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000245}, !- Inlet Port {00000000-0000-0000-0016-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000269}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000270}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000242}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000271}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000235}, !- Inlet Port {00000000-0000-0000-0016-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000272}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000243}, !- Inlet Port {00000000-0000-0000-0016-000000000236}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000273}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000255}, !- Inlet Port {00000000-0000-0000-0016-000000000257}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000274}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000258}, !- Inlet Port {00000000-0000-0000-0016-000000000256}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000275}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000263}, !- Inlet Port {00000000-0000-0000-0016-000000000264}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000276}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000259}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000277}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000260}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000278}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000253}, !- Inlet Port {00000000-0000-0000-0016-000000000262}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000279}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000261}, !- Inlet Port {00000000-0000-0000-0016-000000000254}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000280}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000273}, !- Inlet Port {00000000-0000-0000-0016-000000000275}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000281}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000276}, !- Inlet Port {00000000-0000-0000-0016-000000000274}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000282}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000281}, !- Inlet Port {00000000-0000-0000-0016-000000000282}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000283}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000277}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000284}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000278}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000285}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000271}, !- Inlet Port {00000000-0000-0000-0016-000000000280}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000286}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000279}, !- Inlet Port {00000000-0000-0000-0016-000000000272}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000287}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000291}, !- Inlet Port {00000000-0000-0000-0016-000000000293}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000288}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000294}, !- Inlet Port {00000000-0000-0000-0016-000000000292}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000289}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000299}, !- Inlet Port {00000000-0000-0000-0016-000000000300}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000290}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000295}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000291}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000296}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000292}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000289}, !- Inlet Port {00000000-0000-0000-0016-000000000298}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000293}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000297}, !- Inlet Port {00000000-0000-0000-0016-000000000290}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000294}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000309}, !- Inlet Port {00000000-0000-0000-0016-000000000311}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000295}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000312}, !- Inlet Port {00000000-0000-0000-0016-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000296}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000317}, !- Inlet Port {00000000-0000-0000-0016-000000000318}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000297}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000298}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000314}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000299}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000307}, !- Inlet Port {00000000-0000-0000-0016-000000000316}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000300}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000315}, !- Inlet Port {00000000-0000-0000-0016-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000301}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port {00000000-0000-0000-0016-000000000149}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000302}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000150}, !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000303}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000155}, !- Inlet Port {00000000-0000-0000-0016-000000000156}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000304}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000305}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000152}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000306}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000145}, !- Inlet Port {00000000-0000-0000-0016-000000000154}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000307}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000153}, !- Inlet Port {00000000-0000-0000-0016-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000308}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000099}, !- Inlet Port {00000000-0000-0000-0016-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000309}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000102}, !- Inlet Port {00000000-0000-0000-0016-000000000100}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000310}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000107}, !- Inlet Port {00000000-0000-0000-0016-000000000108}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000311}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000103}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000312}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000104}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000313}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000097}, !- Inlet Port {00000000-0000-0000-0016-000000000106}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000314}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000105}, !- Inlet Port {00000000-0000-0000-0016-000000000098}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000315}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000316}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000317}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000083}, !- Inlet Port {00000000-0000-0000-0016-000000000084}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000318}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000319}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000080}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000320}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000082}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000321}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port @@ -20110,7 +20110,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20131,7 +20131,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20140,7 +20140,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20149,7 +20149,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20164,7 +20164,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20173,7 +20173,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20182,7 +20182,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20197,7 +20197,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20206,7 +20206,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20215,7 +20215,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20230,7 +20230,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20239,7 +20239,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20248,7 +20248,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20263,7 +20263,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20272,7 +20272,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20281,7 +20281,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20302,7 +20302,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20311,7 +20311,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20320,7 +20320,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20341,7 +20341,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20350,7 +20350,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20359,7 +20359,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20380,7 +20380,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20389,7 +20389,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20398,7 +20398,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20413,7 +20413,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20422,7 +20422,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20431,7 +20431,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20446,7 +20446,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20455,7 +20455,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20464,7 +20464,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20479,7 +20479,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20488,7 +20488,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20497,7 +20497,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20518,7 +20518,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20527,7 +20527,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20536,7 +20536,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20557,7 +20557,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20566,7 +20566,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20575,7 +20575,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20590,7 +20590,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20599,7 +20599,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20608,7 +20608,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20629,7 +20629,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20638,7 +20638,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20647,7 +20647,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20662,7 +20662,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20671,7 +20671,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20680,7 +20680,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20695,7 +20695,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20704,7 +20704,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20713,7 +20713,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20734,7 +20734,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20743,7 +20743,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20752,7 +20752,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000209}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20773,7 +20773,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000210}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20782,7 +20782,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000211}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20791,7 +20791,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000212}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20812,7 +20812,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000213}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20821,7 +20821,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000214}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23201,7 +23201,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000155}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000156}, !- Summer Design Day Schedule Name @@ -23209,7 +23209,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000158}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000159}, !- Summer Design Day Schedule Name @@ -23217,7 +23217,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000161}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000162}, !- Summer Design Day Schedule Name @@ -23225,7 +23225,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000164}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000165}, !- Summer Design Day Schedule Name @@ -23233,7 +23233,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000168}, !- Summer Design Day Schedule Name @@ -23241,7 +23241,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000171}, !- Summer Design Day Schedule Name @@ -23249,7 +23249,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000174}, !- Summer Design Day Schedule Name @@ -23257,7 +23257,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000177}, !- Summer Design Day Schedule Name @@ -23265,7 +23265,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000179}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000180}, !- Summer Design Day Schedule Name @@ -23273,7 +23273,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000182}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000183}, !- Summer Design Day Schedule Name @@ -23281,7 +23281,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000186}, !- Summer Design Day Schedule Name @@ -23289,7 +23289,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000189}, !- Summer Design Day Schedule Name @@ -23297,7 +23297,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000192}, !- Summer Design Day Schedule Name @@ -23305,7 +23305,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000195}, !- Summer Design Day Schedule Name @@ -23313,7 +23313,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000198}, !- Summer Design Day Schedule Name @@ -23321,7 +23321,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000201}, !- Summer Design Day Schedule Name @@ -23329,7 +23329,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000204}, !- Summer Design Day Schedule Name @@ -23337,7 +23337,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000206}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000207}, !- Summer Design Day Schedule Name @@ -23345,7 +23345,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000209}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000210}, !- Summer Design Day Schedule Name @@ -23353,7 +23353,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000212}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000213}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index be933e0b03..78fcc2c32d 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000038}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -12447,7 +12447,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12455,7 +12455,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12463,7 +12463,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__15_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12471,7 +12471,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__15_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12479,7 +12479,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12487,7 +12487,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12495,7 +12495,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0066-000000000025}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12503,7 +12503,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000008}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0066-000000000026}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12511,7 +12511,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000009}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__5_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12519,7 +12519,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000010}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__5_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12527,7 +12527,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000011}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12535,7 +12535,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000012}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12543,7 +12543,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000013}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12551,7 +12551,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000014}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12559,7 +12559,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000015}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0066-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12567,7 +12567,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000016}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0066-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12575,209 +12575,209 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {409b2d7d-8844-47af-979f-ec2b57171db9}<23.9 && {409b2d7d-8844-47af-979f-ec2b57171db9}>1.7, !- Program Line 1 - SET {1711df3d-e261-411d-8bb9-c8e60d9b3ad7} = 29.4, !- Program Line 2 - SET {cb07b32b-27af-4b49-bf6f-f17973183060} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {409b2d7d-8844-47af-979f-ec2b57171db9}<23.9 && {409b2d7d-8844-47af-979f-ec2b57171db9}>1.7, !- Program Line 4 - SET {1711df3d-e261-411d-8bb9-c8e60d9b3ad7} = 29.4, !- Program Line 5 - SET {cb07b32b-27af-4b49-bf6f-f17973183060} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {409b2d7d-8844-47af-979f-ec2b57171db9}<23.9 && {409b2d7d-8844-47af-979f-ec2b57171db9}>1.7, !- Program Line 7 - SET {1711df3d-e261-411d-8bb9-c8e60d9b3ad7} = 29.4, !- Program Line 8 - SET {cb07b32b-27af-4b49-bf6f-f17973183060} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {409b2d7d-8844-47af-979f-ec2b57171db9}<23.9 && {409b2d7d-8844-47af-979f-ec2b57171db9}>1.7, !- Program Line 10 - SET {1711df3d-e261-411d-8bb9-c8e60d9b3ad7} = 29.4, !- Program Line 11 - SET {cb07b32b-27af-4b49-bf6f-f17973183060} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {97a59015-1810-4a04-ad84-ae7fcae68c48}<23.9 && {97a59015-1810-4a04-ad84-ae7fcae68c48}>1.7, !- Program Line 1 + SET {0f0c72c9-12b9-45ba-bc77-a8cd10c22857} = 29.4, !- Program Line 2 + SET {3e1d9c3e-cc4d-4ca2-888d-0ce55a334eb4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {97a59015-1810-4a04-ad84-ae7fcae68c48}<23.9 && {97a59015-1810-4a04-ad84-ae7fcae68c48}>1.7, !- Program Line 4 + SET {0f0c72c9-12b9-45ba-bc77-a8cd10c22857} = 29.4, !- Program Line 5 + SET {3e1d9c3e-cc4d-4ca2-888d-0ce55a334eb4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {97a59015-1810-4a04-ad84-ae7fcae68c48}<23.9 && {97a59015-1810-4a04-ad84-ae7fcae68c48}>1.7, !- Program Line 7 + SET {0f0c72c9-12b9-45ba-bc77-a8cd10c22857} = 29.4, !- Program Line 8 + SET {3e1d9c3e-cc4d-4ca2-888d-0ce55a334eb4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {97a59015-1810-4a04-ad84-ae7fcae68c48}<23.9 && {97a59015-1810-4a04-ad84-ae7fcae68c48}>1.7, !- Program Line 10 + SET {0f0c72c9-12b9-45ba-bc77-a8cd10c22857} = 29.4, !- Program Line 11 + SET {3e1d9c3e-cc4d-4ca2-888d-0ce55a334eb4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1711df3d-e261-411d-8bb9-c8e60d9b3ad7} = NULL, !- Program Line 14 - SET {cb07b32b-27af-4b49-bf6f-f17973183060} = NULL, !- Program Line 15 + SET {0f0c72c9-12b9-45ba-bc77-a8cd10c22857} = NULL, !- Program Line 14 + SET {3e1d9c3e-cc4d-4ca2-888d-0ce55a334eb4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0281b79c-a05c-49b0-b191-fb17ef402c51}<23.9 && {0281b79c-a05c-49b0-b191-fb17ef402c51}>1.7, !- Program Line 1 - SET {449a3f5a-c304-4b28-ab03-ed7a21401dd9} = 29.4, !- Program Line 2 - SET {9d57b610-117a-4dff-978f-672fd3d78362} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0281b79c-a05c-49b0-b191-fb17ef402c51}<23.9 && {0281b79c-a05c-49b0-b191-fb17ef402c51}>1.7, !- Program Line 4 - SET {449a3f5a-c304-4b28-ab03-ed7a21401dd9} = 29.4, !- Program Line 5 - SET {9d57b610-117a-4dff-978f-672fd3d78362} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0281b79c-a05c-49b0-b191-fb17ef402c51}<23.9 && {0281b79c-a05c-49b0-b191-fb17ef402c51}>1.7, !- Program Line 7 - SET {449a3f5a-c304-4b28-ab03-ed7a21401dd9} = 29.4, !- Program Line 8 - SET {9d57b610-117a-4dff-978f-672fd3d78362} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0281b79c-a05c-49b0-b191-fb17ef402c51}<23.9 && {0281b79c-a05c-49b0-b191-fb17ef402c51}>1.7, !- Program Line 10 - SET {449a3f5a-c304-4b28-ab03-ed7a21401dd9} = 29.4, !- Program Line 11 - SET {9d57b610-117a-4dff-978f-672fd3d78362} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {70264395-005b-4a3e-b2df-c1330d4618c0}<23.9 && {70264395-005b-4a3e-b2df-c1330d4618c0}>1.7, !- Program Line 1 + SET {144aedcb-0824-47d8-a87e-ca9fd9c4492f} = 29.4, !- Program Line 2 + SET {921b230c-272a-4109-85ef-59f7b35f4eea} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {70264395-005b-4a3e-b2df-c1330d4618c0}<23.9 && {70264395-005b-4a3e-b2df-c1330d4618c0}>1.7, !- Program Line 4 + SET {144aedcb-0824-47d8-a87e-ca9fd9c4492f} = 29.4, !- Program Line 5 + SET {921b230c-272a-4109-85ef-59f7b35f4eea} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {70264395-005b-4a3e-b2df-c1330d4618c0}<23.9 && {70264395-005b-4a3e-b2df-c1330d4618c0}>1.7, !- Program Line 7 + SET {144aedcb-0824-47d8-a87e-ca9fd9c4492f} = 29.4, !- Program Line 8 + SET {921b230c-272a-4109-85ef-59f7b35f4eea} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {70264395-005b-4a3e-b2df-c1330d4618c0}<23.9 && {70264395-005b-4a3e-b2df-c1330d4618c0}>1.7, !- Program Line 10 + SET {144aedcb-0824-47d8-a87e-ca9fd9c4492f} = 29.4, !- Program Line 11 + SET {921b230c-272a-4109-85ef-59f7b35f4eea} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {449a3f5a-c304-4b28-ab03-ed7a21401dd9} = NULL, !- Program Line 14 - SET {9d57b610-117a-4dff-978f-672fd3d78362} = NULL, !- Program Line 15 + SET {144aedcb-0824-47d8-a87e-ca9fd9c4492f} = NULL, !- Program Line 14 + SET {921b230c-272a-4109-85ef-59f7b35f4eea} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {43728a80-fb7a-4edf-982d-381120110d4a}<23.9 && {43728a80-fb7a-4edf-982d-381120110d4a}>1.7, !- Program Line 1 - SET {e7cd458b-3e0d-49bf-8bdf-b38b8c84a611} = 29.4, !- Program Line 2 - SET {e06da50b-96da-4245-8154-4f34bc77d7f6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {43728a80-fb7a-4edf-982d-381120110d4a}<23.9 && {43728a80-fb7a-4edf-982d-381120110d4a}>1.7, !- Program Line 4 - SET {e7cd458b-3e0d-49bf-8bdf-b38b8c84a611} = 29.4, !- Program Line 5 - SET {e06da50b-96da-4245-8154-4f34bc77d7f6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {43728a80-fb7a-4edf-982d-381120110d4a}<23.9 && {43728a80-fb7a-4edf-982d-381120110d4a}>1.7, !- Program Line 7 - SET {e7cd458b-3e0d-49bf-8bdf-b38b8c84a611} = 29.4, !- Program Line 8 - SET {e06da50b-96da-4245-8154-4f34bc77d7f6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {43728a80-fb7a-4edf-982d-381120110d4a}<23.9 && {43728a80-fb7a-4edf-982d-381120110d4a}>1.7, !- Program Line 10 - SET {e7cd458b-3e0d-49bf-8bdf-b38b8c84a611} = 29.4, !- Program Line 11 - SET {e06da50b-96da-4245-8154-4f34bc77d7f6} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c8046072-dabe-4b6f-b25d-2bd3b15769ef}<23.9 && {c8046072-dabe-4b6f-b25d-2bd3b15769ef}>1.7, !- Program Line 1 + SET {cfc08dc1-ada9-4810-bbfb-72af6613c28f} = 29.4, !- Program Line 2 + SET {63118f0a-ef1f-4057-ae48-c085e2406162} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c8046072-dabe-4b6f-b25d-2bd3b15769ef}<23.9 && {c8046072-dabe-4b6f-b25d-2bd3b15769ef}>1.7, !- Program Line 4 + SET {cfc08dc1-ada9-4810-bbfb-72af6613c28f} = 29.4, !- Program Line 5 + SET {63118f0a-ef1f-4057-ae48-c085e2406162} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c8046072-dabe-4b6f-b25d-2bd3b15769ef}<23.9 && {c8046072-dabe-4b6f-b25d-2bd3b15769ef}>1.7, !- Program Line 7 + SET {cfc08dc1-ada9-4810-bbfb-72af6613c28f} = 29.4, !- Program Line 8 + SET {63118f0a-ef1f-4057-ae48-c085e2406162} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c8046072-dabe-4b6f-b25d-2bd3b15769ef}<23.9 && {c8046072-dabe-4b6f-b25d-2bd3b15769ef}>1.7, !- Program Line 10 + SET {cfc08dc1-ada9-4810-bbfb-72af6613c28f} = 29.4, !- Program Line 11 + SET {63118f0a-ef1f-4057-ae48-c085e2406162} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e7cd458b-3e0d-49bf-8bdf-b38b8c84a611} = NULL, !- Program Line 14 - SET {e06da50b-96da-4245-8154-4f34bc77d7f6} = NULL, !- Program Line 15 + SET {cfc08dc1-ada9-4810-bbfb-72af6613c28f} = NULL, !- Program Line 14 + SET {63118f0a-ef1f-4057-ae48-c085e2406162} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f9daede0-fa4a-4058-b239-c410eac715ed}<23.9 && {f9daede0-fa4a-4058-b239-c410eac715ed}>1.7, !- Program Line 1 - SET {1f75fd4e-2453-4afb-b431-c62a2857eaf8} = 29.4, !- Program Line 2 - SET {fec61a4b-d9e7-403a-93e9-6664ebcde1b6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f9daede0-fa4a-4058-b239-c410eac715ed}<23.9 && {f9daede0-fa4a-4058-b239-c410eac715ed}>1.7, !- Program Line 4 - SET {1f75fd4e-2453-4afb-b431-c62a2857eaf8} = 29.4, !- Program Line 5 - SET {fec61a4b-d9e7-403a-93e9-6664ebcde1b6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f9daede0-fa4a-4058-b239-c410eac715ed}<23.9 && {f9daede0-fa4a-4058-b239-c410eac715ed}>1.7, !- Program Line 7 - SET {1f75fd4e-2453-4afb-b431-c62a2857eaf8} = 29.4, !- Program Line 8 - SET {fec61a4b-d9e7-403a-93e9-6664ebcde1b6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f9daede0-fa4a-4058-b239-c410eac715ed}<23.9 && {f9daede0-fa4a-4058-b239-c410eac715ed}>1.7, !- Program Line 10 - SET {1f75fd4e-2453-4afb-b431-c62a2857eaf8} = 29.4, !- Program Line 11 - SET {fec61a4b-d9e7-403a-93e9-6664ebcde1b6} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e11b8265-1ace-498d-9f4a-5941b5dc4d2a}<23.9 && {e11b8265-1ace-498d-9f4a-5941b5dc4d2a}>1.7, !- Program Line 1 + SET {cde2f872-5076-49a3-94ce-7fac8ac781df} = 29.4, !- Program Line 2 + SET {1e893b5c-114f-45e5-b35f-66b8bc60d046} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e11b8265-1ace-498d-9f4a-5941b5dc4d2a}<23.9 && {e11b8265-1ace-498d-9f4a-5941b5dc4d2a}>1.7, !- Program Line 4 + SET {cde2f872-5076-49a3-94ce-7fac8ac781df} = 29.4, !- Program Line 5 + SET {1e893b5c-114f-45e5-b35f-66b8bc60d046} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e11b8265-1ace-498d-9f4a-5941b5dc4d2a}<23.9 && {e11b8265-1ace-498d-9f4a-5941b5dc4d2a}>1.7, !- Program Line 7 + SET {cde2f872-5076-49a3-94ce-7fac8ac781df} = 29.4, !- Program Line 8 + SET {1e893b5c-114f-45e5-b35f-66b8bc60d046} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e11b8265-1ace-498d-9f4a-5941b5dc4d2a}<23.9 && {e11b8265-1ace-498d-9f4a-5941b5dc4d2a}>1.7, !- Program Line 10 + SET {cde2f872-5076-49a3-94ce-7fac8ac781df} = 29.4, !- Program Line 11 + SET {1e893b5c-114f-45e5-b35f-66b8bc60d046} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1f75fd4e-2453-4afb-b431-c62a2857eaf8} = NULL, !- Program Line 14 - SET {fec61a4b-d9e7-403a-93e9-6664ebcde1b6} = NULL, !- Program Line 15 + SET {cde2f872-5076-49a3-94ce-7fac8ac781df} = NULL, !- Program Line 14 + SET {1e893b5c-114f-45e5-b35f-66b8bc60d046} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ebc799c2-63ee-4cf4-8b2e-a83940eab7d5}<23.9 && {ebc799c2-63ee-4cf4-8b2e-a83940eab7d5}>1.7, !- Program Line 1 - SET {a8ffaa5a-7615-45dd-8dda-e6f62c1df3b9} = 29.4, !- Program Line 2 - SET {83ebcc3f-2225-472a-aa40-5886da6ad257} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ebc799c2-63ee-4cf4-8b2e-a83940eab7d5}<23.9 && {ebc799c2-63ee-4cf4-8b2e-a83940eab7d5}>1.7, !- Program Line 4 - SET {a8ffaa5a-7615-45dd-8dda-e6f62c1df3b9} = 29.4, !- Program Line 5 - SET {83ebcc3f-2225-472a-aa40-5886da6ad257} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ebc799c2-63ee-4cf4-8b2e-a83940eab7d5}<23.9 && {ebc799c2-63ee-4cf4-8b2e-a83940eab7d5}>1.7, !- Program Line 7 - SET {a8ffaa5a-7615-45dd-8dda-e6f62c1df3b9} = 29.4, !- Program Line 8 - SET {83ebcc3f-2225-472a-aa40-5886da6ad257} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ebc799c2-63ee-4cf4-8b2e-a83940eab7d5}<23.9 && {ebc799c2-63ee-4cf4-8b2e-a83940eab7d5}>1.7, !- Program Line 10 - SET {a8ffaa5a-7615-45dd-8dda-e6f62c1df3b9} = 29.4, !- Program Line 11 - SET {83ebcc3f-2225-472a-aa40-5886da6ad257} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1e23e5d4-4a60-44e6-ac02-e03dc7eb648c}<23.9 && {1e23e5d4-4a60-44e6-ac02-e03dc7eb648c}>1.7, !- Program Line 1 + SET {6d41f356-5bd2-410c-95b3-40854e702cb8} = 29.4, !- Program Line 2 + SET {becf62cc-ae3f-49f8-9d86-865e130ba88f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1e23e5d4-4a60-44e6-ac02-e03dc7eb648c}<23.9 && {1e23e5d4-4a60-44e6-ac02-e03dc7eb648c}>1.7, !- Program Line 4 + SET {6d41f356-5bd2-410c-95b3-40854e702cb8} = 29.4, !- Program Line 5 + SET {becf62cc-ae3f-49f8-9d86-865e130ba88f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1e23e5d4-4a60-44e6-ac02-e03dc7eb648c}<23.9 && {1e23e5d4-4a60-44e6-ac02-e03dc7eb648c}>1.7, !- Program Line 7 + SET {6d41f356-5bd2-410c-95b3-40854e702cb8} = 29.4, !- Program Line 8 + SET {becf62cc-ae3f-49f8-9d86-865e130ba88f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1e23e5d4-4a60-44e6-ac02-e03dc7eb648c}<23.9 && {1e23e5d4-4a60-44e6-ac02-e03dc7eb648c}>1.7, !- Program Line 10 + SET {6d41f356-5bd2-410c-95b3-40854e702cb8} = 29.4, !- Program Line 11 + SET {becf62cc-ae3f-49f8-9d86-865e130ba88f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a8ffaa5a-7615-45dd-8dda-e6f62c1df3b9} = NULL, !- Program Line 14 - SET {83ebcc3f-2225-472a-aa40-5886da6ad257} = NULL, !- Program Line 15 + SET {6d41f356-5bd2-410c-95b3-40854e702cb8} = NULL, !- Program Line 14 + SET {becf62cc-ae3f-49f8-9d86-865e130ba88f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a7e12eda-bdef-4c50-9d6d-0abcf3b7668a}<23.9 && {a7e12eda-bdef-4c50-9d6d-0abcf3b7668a}>1.7, !- Program Line 1 - SET {e406bf7e-4a96-4f2c-82c8-94d05d6fe73f} = 29.4, !- Program Line 2 - SET {89b1459c-5e03-46a5-900c-73f96e6d97b9} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a7e12eda-bdef-4c50-9d6d-0abcf3b7668a}<23.9 && {a7e12eda-bdef-4c50-9d6d-0abcf3b7668a}>1.7, !- Program Line 4 - SET {e406bf7e-4a96-4f2c-82c8-94d05d6fe73f} = 29.4, !- Program Line 5 - SET {89b1459c-5e03-46a5-900c-73f96e6d97b9} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a7e12eda-bdef-4c50-9d6d-0abcf3b7668a}<23.9 && {a7e12eda-bdef-4c50-9d6d-0abcf3b7668a}>1.7, !- Program Line 7 - SET {e406bf7e-4a96-4f2c-82c8-94d05d6fe73f} = 29.4, !- Program Line 8 - SET {89b1459c-5e03-46a5-900c-73f96e6d97b9} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a7e12eda-bdef-4c50-9d6d-0abcf3b7668a}<23.9 && {a7e12eda-bdef-4c50-9d6d-0abcf3b7668a}>1.7, !- Program Line 10 - SET {e406bf7e-4a96-4f2c-82c8-94d05d6fe73f} = 29.4, !- Program Line 11 - SET {89b1459c-5e03-46a5-900c-73f96e6d97b9} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {91dba64d-8b33-4508-95ff-d964588c7716}<23.9 && {91dba64d-8b33-4508-95ff-d964588c7716}>1.7, !- Program Line 1 + SET {7c8f3b30-b0e1-472e-84f8-eb2e11786011} = 29.4, !- Program Line 2 + SET {b923f7cf-2b99-4fb1-9324-e7e5f49ea353} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {91dba64d-8b33-4508-95ff-d964588c7716}<23.9 && {91dba64d-8b33-4508-95ff-d964588c7716}>1.7, !- Program Line 4 + SET {7c8f3b30-b0e1-472e-84f8-eb2e11786011} = 29.4, !- Program Line 5 + SET {b923f7cf-2b99-4fb1-9324-e7e5f49ea353} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {91dba64d-8b33-4508-95ff-d964588c7716}<23.9 && {91dba64d-8b33-4508-95ff-d964588c7716}>1.7, !- Program Line 7 + SET {7c8f3b30-b0e1-472e-84f8-eb2e11786011} = 29.4, !- Program Line 8 + SET {b923f7cf-2b99-4fb1-9324-e7e5f49ea353} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {91dba64d-8b33-4508-95ff-d964588c7716}<23.9 && {91dba64d-8b33-4508-95ff-d964588c7716}>1.7, !- Program Line 10 + SET {7c8f3b30-b0e1-472e-84f8-eb2e11786011} = 29.4, !- Program Line 11 + SET {b923f7cf-2b99-4fb1-9324-e7e5f49ea353} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e406bf7e-4a96-4f2c-82c8-94d05d6fe73f} = NULL, !- Program Line 14 - SET {89b1459c-5e03-46a5-900c-73f96e6d97b9} = NULL, !- Program Line 15 + SET {7c8f3b30-b0e1-472e-84f8-eb2e11786011} = NULL, !- Program Line 14 + SET {b923f7cf-2b99-4fb1-9324-e7e5f49ea353} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {acc4a411-d2df-44b6-903d-f759981f0767}<23.9 && {acc4a411-d2df-44b6-903d-f759981f0767}>1.7, !- Program Line 1 - SET {e3589d01-cbc7-448c-9810-1f11cfc75b86} = 29.4, !- Program Line 2 - SET {a68b8c4a-b945-4a89-b504-effb5831a3f6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {acc4a411-d2df-44b6-903d-f759981f0767}<23.9 && {acc4a411-d2df-44b6-903d-f759981f0767}>1.7, !- Program Line 4 - SET {e3589d01-cbc7-448c-9810-1f11cfc75b86} = 29.4, !- Program Line 5 - SET {a68b8c4a-b945-4a89-b504-effb5831a3f6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {acc4a411-d2df-44b6-903d-f759981f0767}<23.9 && {acc4a411-d2df-44b6-903d-f759981f0767}>1.7, !- Program Line 7 - SET {e3589d01-cbc7-448c-9810-1f11cfc75b86} = 29.4, !- Program Line 8 - SET {a68b8c4a-b945-4a89-b504-effb5831a3f6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {acc4a411-d2df-44b6-903d-f759981f0767}<23.9 && {acc4a411-d2df-44b6-903d-f759981f0767}>1.7, !- Program Line 10 - SET {e3589d01-cbc7-448c-9810-1f11cfc75b86} = 29.4, !- Program Line 11 - SET {a68b8c4a-b945-4a89-b504-effb5831a3f6} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5966dff2-93e8-4184-be2b-5da9e4c862a0}<23.9 && {5966dff2-93e8-4184-be2b-5da9e4c862a0}>1.7, !- Program Line 1 + SET {32e5b48a-00b1-4285-b9bf-bc41ad0df9ea} = 29.4, !- Program Line 2 + SET {98697c2d-cb12-448d-ba72-f38057832e80} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5966dff2-93e8-4184-be2b-5da9e4c862a0}<23.9 && {5966dff2-93e8-4184-be2b-5da9e4c862a0}>1.7, !- Program Line 4 + SET {32e5b48a-00b1-4285-b9bf-bc41ad0df9ea} = 29.4, !- Program Line 5 + SET {98697c2d-cb12-448d-ba72-f38057832e80} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5966dff2-93e8-4184-be2b-5da9e4c862a0}<23.9 && {5966dff2-93e8-4184-be2b-5da9e4c862a0}>1.7, !- Program Line 7 + SET {32e5b48a-00b1-4285-b9bf-bc41ad0df9ea} = 29.4, !- Program Line 8 + SET {98697c2d-cb12-448d-ba72-f38057832e80} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5966dff2-93e8-4184-be2b-5da9e4c862a0}<23.9 && {5966dff2-93e8-4184-be2b-5da9e4c862a0}>1.7, !- Program Line 10 + SET {32e5b48a-00b1-4285-b9bf-bc41ad0df9ea} = 29.4, !- Program Line 11 + SET {98697c2d-cb12-448d-ba72-f38057832e80} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e3589d01-cbc7-448c-9810-1f11cfc75b86} = NULL, !- Program Line 14 - SET {a68b8c4a-b945-4a89-b504-effb5831a3f6} = NULL, !- Program Line 15 + SET {32e5b48a-00b1-4285-b9bf-bc41ad0df9ea} = NULL, !- Program Line 14 + SET {98697c2d-cb12-448d-ba72-f38057832e80} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f4bc2453-0396-49b1-a300-f1c53cd39c05}<23.9 && {f4bc2453-0396-49b1-a300-f1c53cd39c05}>1.7, !- Program Line 1 - SET {28987e56-1154-42ba-9fd2-1ac228f8bbbc} = 29.4, !- Program Line 2 - SET {c8bdd75e-57a8-4ee0-8643-a817b13f9f5a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f4bc2453-0396-49b1-a300-f1c53cd39c05}<23.9 && {f4bc2453-0396-49b1-a300-f1c53cd39c05}>1.7, !- Program Line 4 - SET {28987e56-1154-42ba-9fd2-1ac228f8bbbc} = 29.4, !- Program Line 5 - SET {c8bdd75e-57a8-4ee0-8643-a817b13f9f5a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f4bc2453-0396-49b1-a300-f1c53cd39c05}<23.9 && {f4bc2453-0396-49b1-a300-f1c53cd39c05}>1.7, !- Program Line 7 - SET {28987e56-1154-42ba-9fd2-1ac228f8bbbc} = 29.4, !- Program Line 8 - SET {c8bdd75e-57a8-4ee0-8643-a817b13f9f5a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f4bc2453-0396-49b1-a300-f1c53cd39c05}<23.9 && {f4bc2453-0396-49b1-a300-f1c53cd39c05}>1.7, !- Program Line 10 - SET {28987e56-1154-42ba-9fd2-1ac228f8bbbc} = 29.4, !- Program Line 11 - SET {c8bdd75e-57a8-4ee0-8643-a817b13f9f5a} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {032a4f85-5125-4035-8af6-0c1accd242e8}<23.9 && {032a4f85-5125-4035-8af6-0c1accd242e8}>1.7, !- Program Line 1 + SET {c9ac0fe7-6f15-495e-a7ea-80c60c94b31b} = 29.4, !- Program Line 2 + SET {d556f8e3-1377-432d-9af9-cf3078d6d640} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {032a4f85-5125-4035-8af6-0c1accd242e8}<23.9 && {032a4f85-5125-4035-8af6-0c1accd242e8}>1.7, !- Program Line 4 + SET {c9ac0fe7-6f15-495e-a7ea-80c60c94b31b} = 29.4, !- Program Line 5 + SET {d556f8e3-1377-432d-9af9-cf3078d6d640} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {032a4f85-5125-4035-8af6-0c1accd242e8}<23.9 && {032a4f85-5125-4035-8af6-0c1accd242e8}>1.7, !- Program Line 7 + SET {c9ac0fe7-6f15-495e-a7ea-80c60c94b31b} = 29.4, !- Program Line 8 + SET {d556f8e3-1377-432d-9af9-cf3078d6d640} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {032a4f85-5125-4035-8af6-0c1accd242e8}<23.9 && {032a4f85-5125-4035-8af6-0c1accd242e8}>1.7, !- Program Line 10 + SET {c9ac0fe7-6f15-495e-a7ea-80c60c94b31b} = 29.4, !- Program Line 11 + SET {d556f8e3-1377-432d-9af9-cf3078d6d640} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {28987e56-1154-42ba-9fd2-1ac228f8bbbc} = NULL, !- Program Line 14 - SET {c8bdd75e-57a8-4ee0-8643-a817b13f9f5a} = NULL, !- Program Line 15 + SET {c9ac0fe7-6f15-495e-a7ea-80c60c94b31b} = NULL, !- Program Line 14 + SET {d556f8e3-1377-432d-9af9-cf3078d6d640} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000004}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000005}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000006}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000007}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000008}; !- Program Name 1 @@ -15398,841 +15398,841 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000165}, !- Inlet Port {00000000-0000-0000-0016-000000000167}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000168}, !- Inlet Port {00000000-0000-0000-0016-000000000166}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000173}, !- Inlet Port {00000000-0000-0000-0016-000000000174}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000169}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000170}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000163}, !- Inlet Port {00000000-0000-0000-0016-000000000172}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000171}, !- Inlet Port {00000000-0000-0000-0016-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000327}, !- Inlet Port {00000000-0000-0000-0016-000000000329}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000330}, !- Inlet Port {00000000-0000-0000-0016-000000000328}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000335}, !- Inlet Port {00000000-0000-0000-0016-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000331}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000332}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000325}, !- Inlet Port {00000000-0000-0000-0016-000000000334}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000333}, !- Inlet Port {00000000-0000-0000-0016-000000000326}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000345}, !- Inlet Port {00000000-0000-0000-0016-000000000347}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000348}, !- Inlet Port {00000000-0000-0000-0016-000000000346}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000353}, !- Inlet Port {00000000-0000-0000-0016-000000000354}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000349}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000350}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000343}, !- Inlet Port {00000000-0000-0000-0016-000000000352}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000351}, !- Inlet Port {00000000-0000-0000-0016-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000363}, !- Inlet Port {00000000-0000-0000-0016-000000000365}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000366}, !- Inlet Port {00000000-0000-0000-0016-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000371}, !- Inlet Port {00000000-0000-0000-0016-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000367}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000368}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000361}, !- Inlet Port {00000000-0000-0000-0016-000000000370}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000369}, !- Inlet Port {00000000-0000-0000-0016-000000000362}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000381}, !- Inlet Port {00000000-0000-0000-0016-000000000383}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000384}, !- Inlet Port {00000000-0000-0000-0016-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000389}, !- Inlet Port {00000000-0000-0000-0016-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000385}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000386}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000379}, !- Inlet Port {00000000-0000-0000-0016-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000387}, !- Inlet Port {00000000-0000-0000-0016-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000217}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000399}, !- Inlet Port {00000000-0000-0000-0016-000000000401}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000218}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000402}, !- Inlet Port {00000000-0000-0000-0016-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000219}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000407}, !- Inlet Port {00000000-0000-0000-0016-000000000408}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000220}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000403}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000221}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000404}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000222}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000397}, !- Inlet Port {00000000-0000-0000-0016-000000000406}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000223}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000405}, !- Inlet Port {00000000-0000-0000-0016-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000224}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000417}, !- Inlet Port {00000000-0000-0000-0016-000000000419}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000225}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000420}, !- Inlet Port {00000000-0000-0000-0016-000000000418}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000226}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000425}, !- Inlet Port {00000000-0000-0000-0016-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000227}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000421}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000228}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000422}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000229}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000415}, !- Inlet Port {00000000-0000-0000-0016-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000230}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000423}, !- Inlet Port {00000000-0000-0000-0016-000000000416}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000231}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000435}, !- Inlet Port {00000000-0000-0000-0016-000000000437}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000232}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000438}, !- Inlet Port {00000000-0000-0000-0016-000000000436}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000233}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000443}, !- Inlet Port {00000000-0000-0000-0016-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000234}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000439}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000235}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000440}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000236}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000433}, !- Inlet Port {00000000-0000-0000-0016-000000000442}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000237}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000441}, !- Inlet Port {00000000-0000-0000-0016-000000000434}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000238}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000453}, !- Inlet Port {00000000-0000-0000-0016-000000000455}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000239}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000456}, !- Inlet Port {00000000-0000-0000-0016-000000000454}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000240}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000461}, !- Inlet Port {00000000-0000-0000-0016-000000000462}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000241}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000457}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000242}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000458}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000243}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000451}, !- Inlet Port {00000000-0000-0000-0016-000000000460}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000244}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000459}, !- Inlet Port {00000000-0000-0000-0016-000000000452}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000245}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000183}, !- Inlet Port {00000000-0000-0000-0016-000000000185}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000246}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000186}, !- Inlet Port {00000000-0000-0000-0016-000000000184}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000247}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000191}, !- Inlet Port {00000000-0000-0000-0016-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000248}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000187}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000249}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000188}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000250}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000181}, !- Inlet Port {00000000-0000-0000-0016-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000251}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000189}, !- Inlet Port {00000000-0000-0000-0016-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000252}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000201}, !- Inlet Port {00000000-0000-0000-0016-000000000203}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000253}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000204}, !- Inlet Port {00000000-0000-0000-0016-000000000202}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000254}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000209}, !- Inlet Port {00000000-0000-0000-0016-000000000210}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000255}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000256}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000206}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000257}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000199}, !- Inlet Port {00000000-0000-0000-0016-000000000208}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000258}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000207}, !- Inlet Port {00000000-0000-0000-0016-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000259}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000219}, !- Inlet Port {00000000-0000-0000-0016-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000260}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000222}, !- Inlet Port {00000000-0000-0000-0016-000000000220}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000261}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000227}, !- Inlet Port {00000000-0000-0000-0016-000000000228}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000262}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000223}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000263}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000224}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000264}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000217}, !- Inlet Port {00000000-0000-0000-0016-000000000226}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000265}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000225}, !- Inlet Port {00000000-0000-0000-0016-000000000218}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000266}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000237}, !- Inlet Port {00000000-0000-0000-0016-000000000239}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000267}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000240}, !- Inlet Port {00000000-0000-0000-0016-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000268}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000245}, !- Inlet Port {00000000-0000-0000-0016-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000269}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000270}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000242}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000271}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000235}, !- Inlet Port {00000000-0000-0000-0016-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000272}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000243}, !- Inlet Port {00000000-0000-0000-0016-000000000236}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000273}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000255}, !- Inlet Port {00000000-0000-0000-0016-000000000257}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000274}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000258}, !- Inlet Port {00000000-0000-0000-0016-000000000256}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000275}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000263}, !- Inlet Port {00000000-0000-0000-0016-000000000264}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000276}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000259}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000277}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000260}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000278}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000253}, !- Inlet Port {00000000-0000-0000-0016-000000000262}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000279}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000261}, !- Inlet Port {00000000-0000-0000-0016-000000000254}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000280}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000273}, !- Inlet Port {00000000-0000-0000-0016-000000000275}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000281}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000276}, !- Inlet Port {00000000-0000-0000-0016-000000000274}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000282}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000281}, !- Inlet Port {00000000-0000-0000-0016-000000000282}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000283}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000277}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000284}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000278}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000285}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000271}, !- Inlet Port {00000000-0000-0000-0016-000000000280}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000286}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000279}, !- Inlet Port {00000000-0000-0000-0016-000000000272}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000287}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000291}, !- Inlet Port {00000000-0000-0000-0016-000000000293}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000288}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000294}, !- Inlet Port {00000000-0000-0000-0016-000000000292}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000289}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000299}, !- Inlet Port {00000000-0000-0000-0016-000000000300}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000290}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000295}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000291}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000296}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000292}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000289}, !- Inlet Port {00000000-0000-0000-0016-000000000298}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000293}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000297}, !- Inlet Port {00000000-0000-0000-0016-000000000290}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000294}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000309}, !- Inlet Port {00000000-0000-0000-0016-000000000311}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000295}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000312}, !- Inlet Port {00000000-0000-0000-0016-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000296}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000317}, !- Inlet Port {00000000-0000-0000-0016-000000000318}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000297}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000313}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000298}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000314}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000299}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000307}, !- Inlet Port {00000000-0000-0000-0016-000000000316}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000300}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000315}, !- Inlet Port {00000000-0000-0000-0016-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000301}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port {00000000-0000-0000-0016-000000000149}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000302}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000150}, !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000303}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000155}, !- Inlet Port {00000000-0000-0000-0016-000000000156}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000304}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000151}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000305}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000152}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000306}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000145}, !- Inlet Port {00000000-0000-0000-0016-000000000154}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000307}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000153}, !- Inlet Port {00000000-0000-0000-0016-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000308}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000099}, !- Inlet Port {00000000-0000-0000-0016-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000309}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000102}, !- Inlet Port {00000000-0000-0000-0016-000000000100}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000310}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000107}, !- Inlet Port {00000000-0000-0000-0016-000000000108}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000311}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000103}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000312}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000104}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000313}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000097}, !- Inlet Port {00000000-0000-0000-0016-000000000106}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000314}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000105}, !- Inlet Port {00000000-0000-0000-0016-000000000098}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000315}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000316}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000317}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000083}, !- Inlet Port {00000000-0000-0000-0016-000000000084}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000318}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000319}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000080}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000320}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000082}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000321}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port @@ -20200,7 +20200,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20221,7 +20221,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20230,7 +20230,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20239,7 +20239,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20254,7 +20254,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20263,7 +20263,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20272,7 +20272,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20287,7 +20287,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20296,7 +20296,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20305,7 +20305,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20320,7 +20320,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20329,7 +20329,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20338,7 +20338,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20353,7 +20353,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20362,7 +20362,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20371,7 +20371,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20392,7 +20392,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20401,7 +20401,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20410,7 +20410,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20431,7 +20431,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20440,7 +20440,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20449,7 +20449,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20470,7 +20470,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20479,7 +20479,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20488,7 +20488,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20503,7 +20503,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20512,7 +20512,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20521,7 +20521,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20536,7 +20536,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20545,7 +20545,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20554,7 +20554,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20569,7 +20569,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20578,7 +20578,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20587,7 +20587,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20608,7 +20608,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20617,7 +20617,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20626,7 +20626,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20647,7 +20647,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20656,7 +20656,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20665,7 +20665,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20680,7 +20680,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20689,7 +20689,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20698,7 +20698,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20719,7 +20719,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20728,7 +20728,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20737,7 +20737,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20752,7 +20752,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20761,7 +20761,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20770,7 +20770,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20785,7 +20785,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20794,7 +20794,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20803,7 +20803,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20824,7 +20824,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20833,7 +20833,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20842,7 +20842,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000209}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20863,7 +20863,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000210}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20872,7 +20872,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000211}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20881,7 +20881,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000212}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20902,7 +20902,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000213}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20911,7 +20911,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000214}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23291,7 +23291,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000155}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000156}, !- Summer Design Day Schedule Name @@ -23299,7 +23299,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000158}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000159}, !- Summer Design Day Schedule Name @@ -23307,7 +23307,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000161}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000162}, !- Summer Design Day Schedule Name @@ -23315,7 +23315,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000164}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000165}, !- Summer Design Day Schedule Name @@ -23323,7 +23323,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000168}, !- Summer Design Day Schedule Name @@ -23331,7 +23331,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000171}, !- Summer Design Day Schedule Name @@ -23339,7 +23339,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000174}, !- Summer Design Day Schedule Name @@ -23347,7 +23347,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000177}, !- Summer Design Day Schedule Name @@ -23355,7 +23355,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000179}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000180}, !- Summer Design Day Schedule Name @@ -23363,7 +23363,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000182}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000183}, !- Summer Design Day Schedule Name @@ -23371,7 +23371,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000186}, !- Summer Design Day Schedule Name @@ -23379,7 +23379,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000189}, !- Summer Design Day Schedule Name @@ -23387,7 +23387,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000192}, !- Summer Design Day Schedule Name @@ -23395,7 +23395,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000195}, !- Summer Design Day Schedule Name @@ -23403,7 +23403,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000198}, !- Summer Design Day Schedule Name @@ -23411,7 +23411,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000201}, !- Summer Design Day Schedule Name @@ -23419,7 +23419,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000204}, !- Summer Design Day Schedule Name @@ -23427,7 +23427,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000206}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000207}, !- Summer Design Day Schedule Name @@ -23435,7 +23435,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000209}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000210}, !- Summer Design Day Schedule Name @@ -23443,7 +23443,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000212}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000213}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGas-CAN_AB_Calgary.osm index 34dd721cad..b743b8d0b0 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGas-CAN_AB_Calgary.osm @@ -12087,161 +12087,161 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fc01e372-6bb4-4a36-9d57-ade0ee867156}<23.9 && {fc01e372-6bb4-4a36-9d57-ade0ee867156}>1.7, !- Program Line 1 - SET {de6aa739-378f-4845-9eb4-726dd16db7c8} = 29.4, !- Program Line 2 - SET {91534723-c89d-4041-ae31-52630c2b69aa} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fc01e372-6bb4-4a36-9d57-ade0ee867156}<23.9 && {fc01e372-6bb4-4a36-9d57-ade0ee867156}>1.7, !- Program Line 4 - SET {de6aa739-378f-4845-9eb4-726dd16db7c8} = 29.4, !- Program Line 5 - SET {91534723-c89d-4041-ae31-52630c2b69aa} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fc01e372-6bb4-4a36-9d57-ade0ee867156}<23.9 && {fc01e372-6bb4-4a36-9d57-ade0ee867156}>1.7, !- Program Line 7 - SET {de6aa739-378f-4845-9eb4-726dd16db7c8} = 29.4, !- Program Line 8 - SET {91534723-c89d-4041-ae31-52630c2b69aa} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fc01e372-6bb4-4a36-9d57-ade0ee867156}<23.9 && {fc01e372-6bb4-4a36-9d57-ade0ee867156}>1.7, !- Program Line 10 - SET {de6aa739-378f-4845-9eb4-726dd16db7c8} = 29.4, !- Program Line 11 - SET {91534723-c89d-4041-ae31-52630c2b69aa} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e47715cd-801c-478f-a4cd-47e3a3c3015b}<23.9 && {e47715cd-801c-478f-a4cd-47e3a3c3015b}>1.7, !- Program Line 1 + SET {779f83cc-fa69-4404-8fcc-0c78ee984243} = 29.4, !- Program Line 2 + SET {3f8bfab5-a3da-43f4-b6cb-2afb903790dc} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e47715cd-801c-478f-a4cd-47e3a3c3015b}<23.9 && {e47715cd-801c-478f-a4cd-47e3a3c3015b}>1.7, !- Program Line 4 + SET {779f83cc-fa69-4404-8fcc-0c78ee984243} = 29.4, !- Program Line 5 + SET {3f8bfab5-a3da-43f4-b6cb-2afb903790dc} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e47715cd-801c-478f-a4cd-47e3a3c3015b}<23.9 && {e47715cd-801c-478f-a4cd-47e3a3c3015b}>1.7, !- Program Line 7 + SET {779f83cc-fa69-4404-8fcc-0c78ee984243} = 29.4, !- Program Line 8 + SET {3f8bfab5-a3da-43f4-b6cb-2afb903790dc} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e47715cd-801c-478f-a4cd-47e3a3c3015b}<23.9 && {e47715cd-801c-478f-a4cd-47e3a3c3015b}>1.7, !- Program Line 10 + SET {779f83cc-fa69-4404-8fcc-0c78ee984243} = 29.4, !- Program Line 11 + SET {3f8bfab5-a3da-43f4-b6cb-2afb903790dc} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {de6aa739-378f-4845-9eb4-726dd16db7c8} = NULL, !- Program Line 14 - SET {91534723-c89d-4041-ae31-52630c2b69aa} = NULL, !- Program Line 15 + SET {779f83cc-fa69-4404-8fcc-0c78ee984243} = NULL, !- Program Line 14 + SET {3f8bfab5-a3da-43f4-b6cb-2afb903790dc} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {49931342-e6da-4ed5-8641-2e2ea205c08f}<23.9 && {49931342-e6da-4ed5-8641-2e2ea205c08f}>1.7, !- Program Line 1 - SET {a7091e72-9b07-4902-b251-3792819b6769} = 29.4, !- Program Line 2 - SET {bca74caf-f791-47b9-a7ad-63ebf998a4d5} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {49931342-e6da-4ed5-8641-2e2ea205c08f}<23.9 && {49931342-e6da-4ed5-8641-2e2ea205c08f}>1.7, !- Program Line 4 - SET {a7091e72-9b07-4902-b251-3792819b6769} = 29.4, !- Program Line 5 - SET {bca74caf-f791-47b9-a7ad-63ebf998a4d5} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {49931342-e6da-4ed5-8641-2e2ea205c08f}<23.9 && {49931342-e6da-4ed5-8641-2e2ea205c08f}>1.7, !- Program Line 7 - SET {a7091e72-9b07-4902-b251-3792819b6769} = 29.4, !- Program Line 8 - SET {bca74caf-f791-47b9-a7ad-63ebf998a4d5} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {49931342-e6da-4ed5-8641-2e2ea205c08f}<23.9 && {49931342-e6da-4ed5-8641-2e2ea205c08f}>1.7, !- Program Line 10 - SET {a7091e72-9b07-4902-b251-3792819b6769} = 29.4, !- Program Line 11 - SET {bca74caf-f791-47b9-a7ad-63ebf998a4d5} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {60b3232e-5b10-4526-9081-02600f0cd060}<23.9 && {60b3232e-5b10-4526-9081-02600f0cd060}>1.7, !- Program Line 1 + SET {7ccf0521-2f47-4712-bb02-8fe9b6e003a7} = 29.4, !- Program Line 2 + SET {3dba403f-1dd2-4a09-b12e-85dc6bb98755} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {60b3232e-5b10-4526-9081-02600f0cd060}<23.9 && {60b3232e-5b10-4526-9081-02600f0cd060}>1.7, !- Program Line 4 + SET {7ccf0521-2f47-4712-bb02-8fe9b6e003a7} = 29.4, !- Program Line 5 + SET {3dba403f-1dd2-4a09-b12e-85dc6bb98755} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {60b3232e-5b10-4526-9081-02600f0cd060}<23.9 && {60b3232e-5b10-4526-9081-02600f0cd060}>1.7, !- Program Line 7 + SET {7ccf0521-2f47-4712-bb02-8fe9b6e003a7} = 29.4, !- Program Line 8 + SET {3dba403f-1dd2-4a09-b12e-85dc6bb98755} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {60b3232e-5b10-4526-9081-02600f0cd060}<23.9 && {60b3232e-5b10-4526-9081-02600f0cd060}>1.7, !- Program Line 10 + SET {7ccf0521-2f47-4712-bb02-8fe9b6e003a7} = 29.4, !- Program Line 11 + SET {3dba403f-1dd2-4a09-b12e-85dc6bb98755} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a7091e72-9b07-4902-b251-3792819b6769} = NULL, !- Program Line 14 - SET {bca74caf-f791-47b9-a7ad-63ebf998a4d5} = NULL, !- Program Line 15 + SET {7ccf0521-2f47-4712-bb02-8fe9b6e003a7} = NULL, !- Program Line 14 + SET {3dba403f-1dd2-4a09-b12e-85dc6bb98755} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {87350600-ba25-47dd-b381-99941775d9f8}<23.9 && {87350600-ba25-47dd-b381-99941775d9f8}>1.7, !- Program Line 1 - SET {722815a9-1b10-46bb-bdcf-c22f83e43383} = 29.4, !- Program Line 2 - SET {f7862ae5-a5ae-4396-8d69-168c3e0ae16b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {87350600-ba25-47dd-b381-99941775d9f8}<23.9 && {87350600-ba25-47dd-b381-99941775d9f8}>1.7, !- Program Line 4 - SET {722815a9-1b10-46bb-bdcf-c22f83e43383} = 29.4, !- Program Line 5 - SET {f7862ae5-a5ae-4396-8d69-168c3e0ae16b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {87350600-ba25-47dd-b381-99941775d9f8}<23.9 && {87350600-ba25-47dd-b381-99941775d9f8}>1.7, !- Program Line 7 - SET {722815a9-1b10-46bb-bdcf-c22f83e43383} = 29.4, !- Program Line 8 - SET {f7862ae5-a5ae-4396-8d69-168c3e0ae16b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {87350600-ba25-47dd-b381-99941775d9f8}<23.9 && {87350600-ba25-47dd-b381-99941775d9f8}>1.7, !- Program Line 10 - SET {722815a9-1b10-46bb-bdcf-c22f83e43383} = 29.4, !- Program Line 11 - SET {f7862ae5-a5ae-4396-8d69-168c3e0ae16b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {05a304af-3956-49cd-a0cf-28a60fac832b}<23.9 && {05a304af-3956-49cd-a0cf-28a60fac832b}>1.7, !- Program Line 1 + SET {3ddfaf1d-fd11-4713-9b05-c1bec906a670} = 29.4, !- Program Line 2 + SET {ac2923a3-7cd5-42f8-9348-cc5f18f32eb6} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {05a304af-3956-49cd-a0cf-28a60fac832b}<23.9 && {05a304af-3956-49cd-a0cf-28a60fac832b}>1.7, !- Program Line 4 + SET {3ddfaf1d-fd11-4713-9b05-c1bec906a670} = 29.4, !- Program Line 5 + SET {ac2923a3-7cd5-42f8-9348-cc5f18f32eb6} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {05a304af-3956-49cd-a0cf-28a60fac832b}<23.9 && {05a304af-3956-49cd-a0cf-28a60fac832b}>1.7, !- Program Line 7 + SET {3ddfaf1d-fd11-4713-9b05-c1bec906a670} = 29.4, !- Program Line 8 + SET {ac2923a3-7cd5-42f8-9348-cc5f18f32eb6} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {05a304af-3956-49cd-a0cf-28a60fac832b}<23.9 && {05a304af-3956-49cd-a0cf-28a60fac832b}>1.7, !- Program Line 10 + SET {3ddfaf1d-fd11-4713-9b05-c1bec906a670} = 29.4, !- Program Line 11 + SET {ac2923a3-7cd5-42f8-9348-cc5f18f32eb6} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {722815a9-1b10-46bb-bdcf-c22f83e43383} = NULL, !- Program Line 14 - SET {f7862ae5-a5ae-4396-8d69-168c3e0ae16b} = NULL, !- Program Line 15 + SET {3ddfaf1d-fd11-4713-9b05-c1bec906a670} = NULL, !- Program Line 14 + SET {ac2923a3-7cd5-42f8-9348-cc5f18f32eb6} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000004}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3758a9b8-3b09-46dd-8691-53c0521b6b3c}<23.9 && {3758a9b8-3b09-46dd-8691-53c0521b6b3c}>1.7, !- Program Line 1 - SET {b11e754f-b028-4ec6-ae04-a5598afe3475} = 29.4, !- Program Line 2 - SET {23a7b5b7-4ca2-4157-9436-16b77b17c57f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3758a9b8-3b09-46dd-8691-53c0521b6b3c}<23.9 && {3758a9b8-3b09-46dd-8691-53c0521b6b3c}>1.7, !- Program Line 4 - SET {b11e754f-b028-4ec6-ae04-a5598afe3475} = 29.4, !- Program Line 5 - SET {23a7b5b7-4ca2-4157-9436-16b77b17c57f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3758a9b8-3b09-46dd-8691-53c0521b6b3c}<23.9 && {3758a9b8-3b09-46dd-8691-53c0521b6b3c}>1.7, !- Program Line 7 - SET {b11e754f-b028-4ec6-ae04-a5598afe3475} = 29.4, !- Program Line 8 - SET {23a7b5b7-4ca2-4157-9436-16b77b17c57f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3758a9b8-3b09-46dd-8691-53c0521b6b3c}<23.9 && {3758a9b8-3b09-46dd-8691-53c0521b6b3c}>1.7, !- Program Line 10 - SET {b11e754f-b028-4ec6-ae04-a5598afe3475} = 29.4, !- Program Line 11 - SET {23a7b5b7-4ca2-4157-9436-16b77b17c57f} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {62533b15-8e76-4578-80cf-4d73b2da7d22}<23.9 && {62533b15-8e76-4578-80cf-4d73b2da7d22}>1.7, !- Program Line 1 + SET {24d9e1f6-f7c0-41b9-83cf-4376f69f9cf4} = 29.4, !- Program Line 2 + SET {daef9152-da25-46c0-b023-e3afb50607e7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {62533b15-8e76-4578-80cf-4d73b2da7d22}<23.9 && {62533b15-8e76-4578-80cf-4d73b2da7d22}>1.7, !- Program Line 4 + SET {24d9e1f6-f7c0-41b9-83cf-4376f69f9cf4} = 29.4, !- Program Line 5 + SET {daef9152-da25-46c0-b023-e3afb50607e7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {62533b15-8e76-4578-80cf-4d73b2da7d22}<23.9 && {62533b15-8e76-4578-80cf-4d73b2da7d22}>1.7, !- Program Line 7 + SET {24d9e1f6-f7c0-41b9-83cf-4376f69f9cf4} = 29.4, !- Program Line 8 + SET {daef9152-da25-46c0-b023-e3afb50607e7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {62533b15-8e76-4578-80cf-4d73b2da7d22}<23.9 && {62533b15-8e76-4578-80cf-4d73b2da7d22}>1.7, !- Program Line 10 + SET {24d9e1f6-f7c0-41b9-83cf-4376f69f9cf4} = 29.4, !- Program Line 11 + SET {daef9152-da25-46c0-b023-e3afb50607e7} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b11e754f-b028-4ec6-ae04-a5598afe3475} = NULL, !- Program Line 14 - SET {23a7b5b7-4ca2-4157-9436-16b77b17c57f} = NULL, !- Program Line 15 + SET {24d9e1f6-f7c0-41b9-83cf-4376f69f9cf4} = NULL, !- Program Line 14 + SET {daef9152-da25-46c0-b023-e3afb50607e7} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000005}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8bc48a4a-735c-4f1e-ae19-19568f301c40}<23.9 && {8bc48a4a-735c-4f1e-ae19-19568f301c40}>1.7, !- Program Line 1 - SET {e0aaeddb-da8b-49f1-afe2-360318479816} = 29.4, !- Program Line 2 - SET {e595ce32-eca1-48d4-9e45-a0956c075fbb} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8bc48a4a-735c-4f1e-ae19-19568f301c40}<23.9 && {8bc48a4a-735c-4f1e-ae19-19568f301c40}>1.7, !- Program Line 4 - SET {e0aaeddb-da8b-49f1-afe2-360318479816} = 29.4, !- Program Line 5 - SET {e595ce32-eca1-48d4-9e45-a0956c075fbb} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8bc48a4a-735c-4f1e-ae19-19568f301c40}<23.9 && {8bc48a4a-735c-4f1e-ae19-19568f301c40}>1.7, !- Program Line 7 - SET {e0aaeddb-da8b-49f1-afe2-360318479816} = 29.4, !- Program Line 8 - SET {e595ce32-eca1-48d4-9e45-a0956c075fbb} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8bc48a4a-735c-4f1e-ae19-19568f301c40}<23.9 && {8bc48a4a-735c-4f1e-ae19-19568f301c40}>1.7, !- Program Line 10 - SET {e0aaeddb-da8b-49f1-afe2-360318479816} = 29.4, !- Program Line 11 - SET {e595ce32-eca1-48d4-9e45-a0956c075fbb} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5f27b9a5-55c3-491c-b4ac-9da0701ff793}<23.9 && {5f27b9a5-55c3-491c-b4ac-9da0701ff793}>1.7, !- Program Line 1 + SET {8454b7b4-ba0a-4533-8806-3680cb8f47bd} = 29.4, !- Program Line 2 + SET {c2a85507-4218-4598-95c5-fbdaf0167fdb} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5f27b9a5-55c3-491c-b4ac-9da0701ff793}<23.9 && {5f27b9a5-55c3-491c-b4ac-9da0701ff793}>1.7, !- Program Line 4 + SET {8454b7b4-ba0a-4533-8806-3680cb8f47bd} = 29.4, !- Program Line 5 + SET {c2a85507-4218-4598-95c5-fbdaf0167fdb} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5f27b9a5-55c3-491c-b4ac-9da0701ff793}<23.9 && {5f27b9a5-55c3-491c-b4ac-9da0701ff793}>1.7, !- Program Line 7 + SET {8454b7b4-ba0a-4533-8806-3680cb8f47bd} = 29.4, !- Program Line 8 + SET {c2a85507-4218-4598-95c5-fbdaf0167fdb} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5f27b9a5-55c3-491c-b4ac-9da0701ff793}<23.9 && {5f27b9a5-55c3-491c-b4ac-9da0701ff793}>1.7, !- Program Line 10 + SET {8454b7b4-ba0a-4533-8806-3680cb8f47bd} = 29.4, !- Program Line 11 + SET {c2a85507-4218-4598-95c5-fbdaf0167fdb} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e0aaeddb-da8b-49f1-afe2-360318479816} = NULL, !- Program Line 14 - SET {e595ce32-eca1-48d4-9e45-a0956c075fbb} = NULL, !- Program Line 15 + SET {8454b7b4-ba0a-4533-8806-3680cb8f47bd} = NULL, !- Program Line 14 + SET {c2a85507-4218-4598-95c5-fbdaf0167fdb} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000006}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {621bd01e-532f-4d56-b1e5-a9acb03790e7}<23.9 && {621bd01e-532f-4d56-b1e5-a9acb03790e7}>1.7, !- Program Line 1 - SET {6d798701-06be-493a-a586-8a4287f27e2a} = 29.4, !- Program Line 2 - SET {ea12ec67-b32b-4040-a523-35242132ac0a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {621bd01e-532f-4d56-b1e5-a9acb03790e7}<23.9 && {621bd01e-532f-4d56-b1e5-a9acb03790e7}>1.7, !- Program Line 4 - SET {6d798701-06be-493a-a586-8a4287f27e2a} = 29.4, !- Program Line 5 - SET {ea12ec67-b32b-4040-a523-35242132ac0a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {621bd01e-532f-4d56-b1e5-a9acb03790e7}<23.9 && {621bd01e-532f-4d56-b1e5-a9acb03790e7}>1.7, !- Program Line 7 - SET {6d798701-06be-493a-a586-8a4287f27e2a} = 29.4, !- Program Line 8 - SET {ea12ec67-b32b-4040-a523-35242132ac0a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {621bd01e-532f-4d56-b1e5-a9acb03790e7}<23.9 && {621bd01e-532f-4d56-b1e5-a9acb03790e7}>1.7, !- Program Line 10 - SET {6d798701-06be-493a-a586-8a4287f27e2a} = 29.4, !- Program Line 11 - SET {ea12ec67-b32b-4040-a523-35242132ac0a} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f54dc57f-2d66-40c0-a555-ad7828006d0b}<23.9 && {f54dc57f-2d66-40c0-a555-ad7828006d0b}>1.7, !- Program Line 1 + SET {3109f52f-dd46-49e7-ad67-8e4a80c03828} = 29.4, !- Program Line 2 + SET {25fc0c3b-2811-44e2-ab81-3ca9b438a958} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f54dc57f-2d66-40c0-a555-ad7828006d0b}<23.9 && {f54dc57f-2d66-40c0-a555-ad7828006d0b}>1.7, !- Program Line 4 + SET {3109f52f-dd46-49e7-ad67-8e4a80c03828} = 29.4, !- Program Line 5 + SET {25fc0c3b-2811-44e2-ab81-3ca9b438a958} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f54dc57f-2d66-40c0-a555-ad7828006d0b}<23.9 && {f54dc57f-2d66-40c0-a555-ad7828006d0b}>1.7, !- Program Line 7 + SET {3109f52f-dd46-49e7-ad67-8e4a80c03828} = 29.4, !- Program Line 8 + SET {25fc0c3b-2811-44e2-ab81-3ca9b438a958} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f54dc57f-2d66-40c0-a555-ad7828006d0b}<23.9 && {f54dc57f-2d66-40c0-a555-ad7828006d0b}>1.7, !- Program Line 10 + SET {3109f52f-dd46-49e7-ad67-8e4a80c03828} = 29.4, !- Program Line 11 + SET {25fc0c3b-2811-44e2-ab81-3ca9b438a958} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6d798701-06be-493a-a586-8a4287f27e2a} = NULL, !- Program Line 14 - SET {ea12ec67-b32b-4040-a523-35242132ac0a} = NULL, !- Program Line 15 + SET {3109f52f-dd46-49e7-ad67-8e4a80c03828} = NULL, !- Program Line 14 + SET {25fc0c3b-2811-44e2-ab81-3ca9b438a958} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000007}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1dee5158-ee3a-4512-adfd-3097eecb4d76}<23.9 && {1dee5158-ee3a-4512-adfd-3097eecb4d76}>1.7, !- Program Line 1 - SET {f2dcb955-fbb2-498b-b86b-0bd62122cbc1} = 29.4, !- Program Line 2 - SET {9c906870-0665-4e7b-9a06-547a86ebb2bd} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1dee5158-ee3a-4512-adfd-3097eecb4d76}<23.9 && {1dee5158-ee3a-4512-adfd-3097eecb4d76}>1.7, !- Program Line 4 - SET {f2dcb955-fbb2-498b-b86b-0bd62122cbc1} = 29.4, !- Program Line 5 - SET {9c906870-0665-4e7b-9a06-547a86ebb2bd} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1dee5158-ee3a-4512-adfd-3097eecb4d76}<23.9 && {1dee5158-ee3a-4512-adfd-3097eecb4d76}>1.7, !- Program Line 7 - SET {f2dcb955-fbb2-498b-b86b-0bd62122cbc1} = 29.4, !- Program Line 8 - SET {9c906870-0665-4e7b-9a06-547a86ebb2bd} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1dee5158-ee3a-4512-adfd-3097eecb4d76}<23.9 && {1dee5158-ee3a-4512-adfd-3097eecb4d76}>1.7, !- Program Line 10 - SET {f2dcb955-fbb2-498b-b86b-0bd62122cbc1} = 29.4, !- Program Line 11 - SET {9c906870-0665-4e7b-9a06-547a86ebb2bd} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {75ad65a6-7af2-49b5-9fdd-bbcdbba34a04}<23.9 && {75ad65a6-7af2-49b5-9fdd-bbcdbba34a04}>1.7, !- Program Line 1 + SET {b532c7f5-e1c8-4508-b217-18a46fba2f26} = 29.4, !- Program Line 2 + SET {4ff34054-e52b-45e2-bc0a-a7e1e7274e07} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {75ad65a6-7af2-49b5-9fdd-bbcdbba34a04}<23.9 && {75ad65a6-7af2-49b5-9fdd-bbcdbba34a04}>1.7, !- Program Line 4 + SET {b532c7f5-e1c8-4508-b217-18a46fba2f26} = 29.4, !- Program Line 5 + SET {4ff34054-e52b-45e2-bc0a-a7e1e7274e07} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {75ad65a6-7af2-49b5-9fdd-bbcdbba34a04}<23.9 && {75ad65a6-7af2-49b5-9fdd-bbcdbba34a04}>1.7, !- Program Line 7 + SET {b532c7f5-e1c8-4508-b217-18a46fba2f26} = 29.4, !- Program Line 8 + SET {4ff34054-e52b-45e2-bc0a-a7e1e7274e07} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {75ad65a6-7af2-49b5-9fdd-bbcdbba34a04}<23.9 && {75ad65a6-7af2-49b5-9fdd-bbcdbba34a04}>1.7, !- Program Line 10 + SET {b532c7f5-e1c8-4508-b217-18a46fba2f26} = 29.4, !- Program Line 11 + SET {4ff34054-e52b-45e2-bc0a-a7e1e7274e07} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f2dcb955-fbb2-498b-b86b-0bd62122cbc1} = NULL, !- Program Line 14 - SET {9c906870-0665-4e7b-9a06-547a86ebb2bd} = NULL, !- Program Line 15 + SET {b532c7f5-e1c8-4508-b217-18a46fba2f26} = NULL, !- Program Line 14 + SET {4ff34054-e52b-45e2-bc0a-a7e1e7274e07} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000008}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {345c1deb-9f8e-4ecc-a151-469dece046d8}<23.9 && {345c1deb-9f8e-4ecc-a151-469dece046d8}>1.7, !- Program Line 1 - SET {5dfe12f2-bf25-4eb6-8716-42ef52ee3b54} = 29.4, !- Program Line 2 - SET {7f055518-0bc0-4c72-b402-47f0e1fa4f1e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {345c1deb-9f8e-4ecc-a151-469dece046d8}<23.9 && {345c1deb-9f8e-4ecc-a151-469dece046d8}>1.7, !- Program Line 4 - SET {5dfe12f2-bf25-4eb6-8716-42ef52ee3b54} = 29.4, !- Program Line 5 - SET {7f055518-0bc0-4c72-b402-47f0e1fa4f1e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {345c1deb-9f8e-4ecc-a151-469dece046d8}<23.9 && {345c1deb-9f8e-4ecc-a151-469dece046d8}>1.7, !- Program Line 7 - SET {5dfe12f2-bf25-4eb6-8716-42ef52ee3b54} = 29.4, !- Program Line 8 - SET {7f055518-0bc0-4c72-b402-47f0e1fa4f1e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {345c1deb-9f8e-4ecc-a151-469dece046d8}<23.9 && {345c1deb-9f8e-4ecc-a151-469dece046d8}>1.7, !- Program Line 10 - SET {5dfe12f2-bf25-4eb6-8716-42ef52ee3b54} = 29.4, !- Program Line 11 - SET {7f055518-0bc0-4c72-b402-47f0e1fa4f1e} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fbe501c6-0773-4427-8940-86717099edc4}<23.9 && {fbe501c6-0773-4427-8940-86717099edc4}>1.7, !- Program Line 1 + SET {d8e9faf1-9bfd-4138-8f79-2358d94f6692} = 29.4, !- Program Line 2 + SET {a96c1bc8-3a83-4543-a431-3149eafe2441} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fbe501c6-0773-4427-8940-86717099edc4}<23.9 && {fbe501c6-0773-4427-8940-86717099edc4}>1.7, !- Program Line 4 + SET {d8e9faf1-9bfd-4138-8f79-2358d94f6692} = 29.4, !- Program Line 5 + SET {a96c1bc8-3a83-4543-a431-3149eafe2441} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fbe501c6-0773-4427-8940-86717099edc4}<23.9 && {fbe501c6-0773-4427-8940-86717099edc4}>1.7, !- Program Line 7 + SET {d8e9faf1-9bfd-4138-8f79-2358d94f6692} = 29.4, !- Program Line 8 + SET {a96c1bc8-3a83-4543-a431-3149eafe2441} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fbe501c6-0773-4427-8940-86717099edc4}<23.9 && {fbe501c6-0773-4427-8940-86717099edc4}>1.7, !- Program Line 10 + SET {d8e9faf1-9bfd-4138-8f79-2358d94f6692} = 29.4, !- Program Line 11 + SET {a96c1bc8-3a83-4543-a431-3149eafe2441} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5dfe12f2-bf25-4eb6-8716-42ef52ee3b54} = NULL, !- Program Line 14 - SET {7f055518-0bc0-4c72-b402-47f0e1fa4f1e} = NULL, !- Program Line 15 + SET {d8e9faf1-9bfd-4138-8f79-2358d94f6692} = NULL, !- Program Line 14 + SET {a96c1bc8-3a83-4543-a431-3149eafe2441} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 14d173e9af..82752b7127 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000038}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -13735,7 +13735,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13743,7 +13743,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13751,7 +13751,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__15_ClgSch0, !- Name {00000000-0000-0000-0069-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13759,7 +13759,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__15_HtgSch0, !- Name {00000000-0000-0000-0069-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13767,7 +13767,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13775,7 +13775,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13783,7 +13783,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0069-000000000025}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13791,7 +13791,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000008}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0069-000000000026}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13799,7 +13799,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000009}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__5_ClgSch0, !- Name {00000000-0000-0000-0069-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13807,7 +13807,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000010}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__5_HtgSch0, !- Name {00000000-0000-0000-0069-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13815,7 +13815,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000011}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0069-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13823,7 +13823,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000012}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0069-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13831,7 +13831,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000013}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0069-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13839,7 +13839,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000014}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0069-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13847,7 +13847,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000015}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0069-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13855,7 +13855,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000016}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0069-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13863,209 +13863,209 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {973a3a84-62cc-491e-8211-d11e92758c03}<23.9 && {973a3a84-62cc-491e-8211-d11e92758c03}>1.7, !- Program Line 1 - SET {9c68258c-6841-4277-9483-ba5bfd9beb7a} = 29.4, !- Program Line 2 - SET {d30d6164-daf1-4d57-9566-2645bfc26cf8} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {973a3a84-62cc-491e-8211-d11e92758c03}<23.9 && {973a3a84-62cc-491e-8211-d11e92758c03}>1.7, !- Program Line 4 - SET {9c68258c-6841-4277-9483-ba5bfd9beb7a} = 29.4, !- Program Line 5 - SET {d30d6164-daf1-4d57-9566-2645bfc26cf8} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {973a3a84-62cc-491e-8211-d11e92758c03}<23.9 && {973a3a84-62cc-491e-8211-d11e92758c03}>1.7, !- Program Line 7 - SET {9c68258c-6841-4277-9483-ba5bfd9beb7a} = 29.4, !- Program Line 8 - SET {d30d6164-daf1-4d57-9566-2645bfc26cf8} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {973a3a84-62cc-491e-8211-d11e92758c03}<23.9 && {973a3a84-62cc-491e-8211-d11e92758c03}>1.7, !- Program Line 10 - SET {9c68258c-6841-4277-9483-ba5bfd9beb7a} = 29.4, !- Program Line 11 - SET {d30d6164-daf1-4d57-9566-2645bfc26cf8} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ecc629e5-9c88-40ee-8fce-cb781f5ef4db}<23.9 && {ecc629e5-9c88-40ee-8fce-cb781f5ef4db}>1.7, !- Program Line 1 + SET {c52b2c36-12b5-4a89-8e99-fb15fde75282} = 29.4, !- Program Line 2 + SET {cfba21fa-2707-4a88-b116-dbd25c614a18} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ecc629e5-9c88-40ee-8fce-cb781f5ef4db}<23.9 && {ecc629e5-9c88-40ee-8fce-cb781f5ef4db}>1.7, !- Program Line 4 + SET {c52b2c36-12b5-4a89-8e99-fb15fde75282} = 29.4, !- Program Line 5 + SET {cfba21fa-2707-4a88-b116-dbd25c614a18} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ecc629e5-9c88-40ee-8fce-cb781f5ef4db}<23.9 && {ecc629e5-9c88-40ee-8fce-cb781f5ef4db}>1.7, !- Program Line 7 + SET {c52b2c36-12b5-4a89-8e99-fb15fde75282} = 29.4, !- Program Line 8 + SET {cfba21fa-2707-4a88-b116-dbd25c614a18} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ecc629e5-9c88-40ee-8fce-cb781f5ef4db}<23.9 && {ecc629e5-9c88-40ee-8fce-cb781f5ef4db}>1.7, !- Program Line 10 + SET {c52b2c36-12b5-4a89-8e99-fb15fde75282} = 29.4, !- Program Line 11 + SET {cfba21fa-2707-4a88-b116-dbd25c614a18} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {9c68258c-6841-4277-9483-ba5bfd9beb7a} = NULL, !- Program Line 14 - SET {d30d6164-daf1-4d57-9566-2645bfc26cf8} = NULL, !- Program Line 15 + SET {c52b2c36-12b5-4a89-8e99-fb15fde75282} = NULL, !- Program Line 14 + SET {cfba21fa-2707-4a88-b116-dbd25c614a18} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4198ed84-aebb-4193-87e4-f41a5b2f799b}<23.9 && {4198ed84-aebb-4193-87e4-f41a5b2f799b}>1.7, !- Program Line 1 - SET {1890d860-f046-4bec-a777-f1c4045e11c0} = 29.4, !- Program Line 2 - SET {17dd9824-c64d-4680-8e63-c0a208a8aea6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4198ed84-aebb-4193-87e4-f41a5b2f799b}<23.9 && {4198ed84-aebb-4193-87e4-f41a5b2f799b}>1.7, !- Program Line 4 - SET {1890d860-f046-4bec-a777-f1c4045e11c0} = 29.4, !- Program Line 5 - SET {17dd9824-c64d-4680-8e63-c0a208a8aea6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4198ed84-aebb-4193-87e4-f41a5b2f799b}<23.9 && {4198ed84-aebb-4193-87e4-f41a5b2f799b}>1.7, !- Program Line 7 - SET {1890d860-f046-4bec-a777-f1c4045e11c0} = 29.4, !- Program Line 8 - SET {17dd9824-c64d-4680-8e63-c0a208a8aea6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4198ed84-aebb-4193-87e4-f41a5b2f799b}<23.9 && {4198ed84-aebb-4193-87e4-f41a5b2f799b}>1.7, !- Program Line 10 - SET {1890d860-f046-4bec-a777-f1c4045e11c0} = 29.4, !- Program Line 11 - SET {17dd9824-c64d-4680-8e63-c0a208a8aea6} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {906f005e-77bd-4cfb-9d3e-8adf61208350}<23.9 && {906f005e-77bd-4cfb-9d3e-8adf61208350}>1.7, !- Program Line 1 + SET {2596decf-05e3-4bf3-8ba0-cb5f71192416} = 29.4, !- Program Line 2 + SET {873995eb-0b7a-4a46-9862-c9fa0fe8594a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {906f005e-77bd-4cfb-9d3e-8adf61208350}<23.9 && {906f005e-77bd-4cfb-9d3e-8adf61208350}>1.7, !- Program Line 4 + SET {2596decf-05e3-4bf3-8ba0-cb5f71192416} = 29.4, !- Program Line 5 + SET {873995eb-0b7a-4a46-9862-c9fa0fe8594a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {906f005e-77bd-4cfb-9d3e-8adf61208350}<23.9 && {906f005e-77bd-4cfb-9d3e-8adf61208350}>1.7, !- Program Line 7 + SET {2596decf-05e3-4bf3-8ba0-cb5f71192416} = 29.4, !- Program Line 8 + SET {873995eb-0b7a-4a46-9862-c9fa0fe8594a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {906f005e-77bd-4cfb-9d3e-8adf61208350}<23.9 && {906f005e-77bd-4cfb-9d3e-8adf61208350}>1.7, !- Program Line 10 + SET {2596decf-05e3-4bf3-8ba0-cb5f71192416} = 29.4, !- Program Line 11 + SET {873995eb-0b7a-4a46-9862-c9fa0fe8594a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1890d860-f046-4bec-a777-f1c4045e11c0} = NULL, !- Program Line 14 - SET {17dd9824-c64d-4680-8e63-c0a208a8aea6} = NULL, !- Program Line 15 + SET {2596decf-05e3-4bf3-8ba0-cb5f71192416} = NULL, !- Program Line 14 + SET {873995eb-0b7a-4a46-9862-c9fa0fe8594a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e1e739ca-f62e-4125-a5eb-6e6c79d49279}<23.9 && {e1e739ca-f62e-4125-a5eb-6e6c79d49279}>1.7, !- Program Line 1 - SET {569074d1-5328-47cb-ab4d-6d6f148c0415} = 29.4, !- Program Line 2 - SET {b727bf31-8446-4ff5-a34a-c2e67a58bf6a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e1e739ca-f62e-4125-a5eb-6e6c79d49279}<23.9 && {e1e739ca-f62e-4125-a5eb-6e6c79d49279}>1.7, !- Program Line 4 - SET {569074d1-5328-47cb-ab4d-6d6f148c0415} = 29.4, !- Program Line 5 - SET {b727bf31-8446-4ff5-a34a-c2e67a58bf6a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e1e739ca-f62e-4125-a5eb-6e6c79d49279}<23.9 && {e1e739ca-f62e-4125-a5eb-6e6c79d49279}>1.7, !- Program Line 7 - SET {569074d1-5328-47cb-ab4d-6d6f148c0415} = 29.4, !- Program Line 8 - SET {b727bf31-8446-4ff5-a34a-c2e67a58bf6a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e1e739ca-f62e-4125-a5eb-6e6c79d49279}<23.9 && {e1e739ca-f62e-4125-a5eb-6e6c79d49279}>1.7, !- Program Line 10 - SET {569074d1-5328-47cb-ab4d-6d6f148c0415} = 29.4, !- Program Line 11 - SET {b727bf31-8446-4ff5-a34a-c2e67a58bf6a} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {27650f20-cd66-4ad5-b309-f42505e8d709}<23.9 && {27650f20-cd66-4ad5-b309-f42505e8d709}>1.7, !- Program Line 1 + SET {756df47e-c657-4f35-b7e0-33fe4f220948} = 29.4, !- Program Line 2 + SET {25149065-5185-45f5-8460-59d028bfe7c4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {27650f20-cd66-4ad5-b309-f42505e8d709}<23.9 && {27650f20-cd66-4ad5-b309-f42505e8d709}>1.7, !- Program Line 4 + SET {756df47e-c657-4f35-b7e0-33fe4f220948} = 29.4, !- Program Line 5 + SET {25149065-5185-45f5-8460-59d028bfe7c4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {27650f20-cd66-4ad5-b309-f42505e8d709}<23.9 && {27650f20-cd66-4ad5-b309-f42505e8d709}>1.7, !- Program Line 7 + SET {756df47e-c657-4f35-b7e0-33fe4f220948} = 29.4, !- Program Line 8 + SET {25149065-5185-45f5-8460-59d028bfe7c4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {27650f20-cd66-4ad5-b309-f42505e8d709}<23.9 && {27650f20-cd66-4ad5-b309-f42505e8d709}>1.7, !- Program Line 10 + SET {756df47e-c657-4f35-b7e0-33fe4f220948} = 29.4, !- Program Line 11 + SET {25149065-5185-45f5-8460-59d028bfe7c4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {569074d1-5328-47cb-ab4d-6d6f148c0415} = NULL, !- Program Line 14 - SET {b727bf31-8446-4ff5-a34a-c2e67a58bf6a} = NULL, !- Program Line 15 + SET {756df47e-c657-4f35-b7e0-33fe4f220948} = NULL, !- Program Line 14 + SET {25149065-5185-45f5-8460-59d028bfe7c4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {64a45ef3-fbd0-451f-9500-35710b84eb93}<23.9 && {64a45ef3-fbd0-451f-9500-35710b84eb93}>1.7, !- Program Line 1 - SET {35410e57-2ed5-43f8-b139-dcb04c598ccf} = 29.4, !- Program Line 2 - SET {634637c7-f824-44ad-8344-9047e7bbe8ef} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {64a45ef3-fbd0-451f-9500-35710b84eb93}<23.9 && {64a45ef3-fbd0-451f-9500-35710b84eb93}>1.7, !- Program Line 4 - SET {35410e57-2ed5-43f8-b139-dcb04c598ccf} = 29.4, !- Program Line 5 - SET {634637c7-f824-44ad-8344-9047e7bbe8ef} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {64a45ef3-fbd0-451f-9500-35710b84eb93}<23.9 && {64a45ef3-fbd0-451f-9500-35710b84eb93}>1.7, !- Program Line 7 - SET {35410e57-2ed5-43f8-b139-dcb04c598ccf} = 29.4, !- Program Line 8 - SET {634637c7-f824-44ad-8344-9047e7bbe8ef} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {64a45ef3-fbd0-451f-9500-35710b84eb93}<23.9 && {64a45ef3-fbd0-451f-9500-35710b84eb93}>1.7, !- Program Line 10 - SET {35410e57-2ed5-43f8-b139-dcb04c598ccf} = 29.4, !- Program Line 11 - SET {634637c7-f824-44ad-8344-9047e7bbe8ef} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ac474bd1-4302-4f62-a4fb-ec25538f1988}<23.9 && {ac474bd1-4302-4f62-a4fb-ec25538f1988}>1.7, !- Program Line 1 + SET {cf41128e-7a8d-4986-bb74-09d80aefc7e4} = 29.4, !- Program Line 2 + SET {a51486e3-020b-4695-bfa0-7f6eac5a3838} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ac474bd1-4302-4f62-a4fb-ec25538f1988}<23.9 && {ac474bd1-4302-4f62-a4fb-ec25538f1988}>1.7, !- Program Line 4 + SET {cf41128e-7a8d-4986-bb74-09d80aefc7e4} = 29.4, !- Program Line 5 + SET {a51486e3-020b-4695-bfa0-7f6eac5a3838} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ac474bd1-4302-4f62-a4fb-ec25538f1988}<23.9 && {ac474bd1-4302-4f62-a4fb-ec25538f1988}>1.7, !- Program Line 7 + SET {cf41128e-7a8d-4986-bb74-09d80aefc7e4} = 29.4, !- Program Line 8 + SET {a51486e3-020b-4695-bfa0-7f6eac5a3838} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ac474bd1-4302-4f62-a4fb-ec25538f1988}<23.9 && {ac474bd1-4302-4f62-a4fb-ec25538f1988}>1.7, !- Program Line 10 + SET {cf41128e-7a8d-4986-bb74-09d80aefc7e4} = 29.4, !- Program Line 11 + SET {a51486e3-020b-4695-bfa0-7f6eac5a3838} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {35410e57-2ed5-43f8-b139-dcb04c598ccf} = NULL, !- Program Line 14 - SET {634637c7-f824-44ad-8344-9047e7bbe8ef} = NULL, !- Program Line 15 + SET {cf41128e-7a8d-4986-bb74-09d80aefc7e4} = NULL, !- Program Line 14 + SET {a51486e3-020b-4695-bfa0-7f6eac5a3838} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2b3d306f-e7c3-4101-8850-0108b4756611}<23.9 && {2b3d306f-e7c3-4101-8850-0108b4756611}>1.7, !- Program Line 1 - SET {2a678856-6aae-4aad-819b-734c3a73ac1e} = 29.4, !- Program Line 2 - SET {96d0cb40-e134-4da2-ae53-b764fe4530e9} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2b3d306f-e7c3-4101-8850-0108b4756611}<23.9 && {2b3d306f-e7c3-4101-8850-0108b4756611}>1.7, !- Program Line 4 - SET {2a678856-6aae-4aad-819b-734c3a73ac1e} = 29.4, !- Program Line 5 - SET {96d0cb40-e134-4da2-ae53-b764fe4530e9} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2b3d306f-e7c3-4101-8850-0108b4756611}<23.9 && {2b3d306f-e7c3-4101-8850-0108b4756611}>1.7, !- Program Line 7 - SET {2a678856-6aae-4aad-819b-734c3a73ac1e} = 29.4, !- Program Line 8 - SET {96d0cb40-e134-4da2-ae53-b764fe4530e9} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2b3d306f-e7c3-4101-8850-0108b4756611}<23.9 && {2b3d306f-e7c3-4101-8850-0108b4756611}>1.7, !- Program Line 10 - SET {2a678856-6aae-4aad-819b-734c3a73ac1e} = 29.4, !- Program Line 11 - SET {96d0cb40-e134-4da2-ae53-b764fe4530e9} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {82eedd7b-fd7d-403b-b905-645b14ad46ab}<23.9 && {82eedd7b-fd7d-403b-b905-645b14ad46ab}>1.7, !- Program Line 1 + SET {74588f7c-a0db-44cd-9597-523a83db4be3} = 29.4, !- Program Line 2 + SET {2726d95c-58d6-4d90-b314-dcd4f9f8d17a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {82eedd7b-fd7d-403b-b905-645b14ad46ab}<23.9 && {82eedd7b-fd7d-403b-b905-645b14ad46ab}>1.7, !- Program Line 4 + SET {74588f7c-a0db-44cd-9597-523a83db4be3} = 29.4, !- Program Line 5 + SET {2726d95c-58d6-4d90-b314-dcd4f9f8d17a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {82eedd7b-fd7d-403b-b905-645b14ad46ab}<23.9 && {82eedd7b-fd7d-403b-b905-645b14ad46ab}>1.7, !- Program Line 7 + SET {74588f7c-a0db-44cd-9597-523a83db4be3} = 29.4, !- Program Line 8 + SET {2726d95c-58d6-4d90-b314-dcd4f9f8d17a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {82eedd7b-fd7d-403b-b905-645b14ad46ab}<23.9 && {82eedd7b-fd7d-403b-b905-645b14ad46ab}>1.7, !- Program Line 10 + SET {74588f7c-a0db-44cd-9597-523a83db4be3} = 29.4, !- Program Line 11 + SET {2726d95c-58d6-4d90-b314-dcd4f9f8d17a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {2a678856-6aae-4aad-819b-734c3a73ac1e} = NULL, !- Program Line 14 - SET {96d0cb40-e134-4da2-ae53-b764fe4530e9} = NULL, !- Program Line 15 + SET {74588f7c-a0db-44cd-9597-523a83db4be3} = NULL, !- Program Line 14 + SET {2726d95c-58d6-4d90-b314-dcd4f9f8d17a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6bddf18a-0806-4ecd-8fd1-176b53840e02}<23.9 && {6bddf18a-0806-4ecd-8fd1-176b53840e02}>1.7, !- Program Line 1 - SET {23b23b6b-be78-482a-afa4-b80e37c8f6b8} = 29.4, !- Program Line 2 - SET {c7604ec3-edc4-4cc0-80f1-4240262d5731} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6bddf18a-0806-4ecd-8fd1-176b53840e02}<23.9 && {6bddf18a-0806-4ecd-8fd1-176b53840e02}>1.7, !- Program Line 4 - SET {23b23b6b-be78-482a-afa4-b80e37c8f6b8} = 29.4, !- Program Line 5 - SET {c7604ec3-edc4-4cc0-80f1-4240262d5731} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6bddf18a-0806-4ecd-8fd1-176b53840e02}<23.9 && {6bddf18a-0806-4ecd-8fd1-176b53840e02}>1.7, !- Program Line 7 - SET {23b23b6b-be78-482a-afa4-b80e37c8f6b8} = 29.4, !- Program Line 8 - SET {c7604ec3-edc4-4cc0-80f1-4240262d5731} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6bddf18a-0806-4ecd-8fd1-176b53840e02}<23.9 && {6bddf18a-0806-4ecd-8fd1-176b53840e02}>1.7, !- Program Line 10 - SET {23b23b6b-be78-482a-afa4-b80e37c8f6b8} = 29.4, !- Program Line 11 - SET {c7604ec3-edc4-4cc0-80f1-4240262d5731} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5b88032b-9ae1-4fcc-8b79-ee7910d3d2cd}<23.9 && {5b88032b-9ae1-4fcc-8b79-ee7910d3d2cd}>1.7, !- Program Line 1 + SET {b0e41288-a734-4121-beea-f7a9f125a11e} = 29.4, !- Program Line 2 + SET {26ec2151-ef11-4578-8177-70a54c3859f8} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5b88032b-9ae1-4fcc-8b79-ee7910d3d2cd}<23.9 && {5b88032b-9ae1-4fcc-8b79-ee7910d3d2cd}>1.7, !- Program Line 4 + SET {b0e41288-a734-4121-beea-f7a9f125a11e} = 29.4, !- Program Line 5 + SET {26ec2151-ef11-4578-8177-70a54c3859f8} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5b88032b-9ae1-4fcc-8b79-ee7910d3d2cd}<23.9 && {5b88032b-9ae1-4fcc-8b79-ee7910d3d2cd}>1.7, !- Program Line 7 + SET {b0e41288-a734-4121-beea-f7a9f125a11e} = 29.4, !- Program Line 8 + SET {26ec2151-ef11-4578-8177-70a54c3859f8} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5b88032b-9ae1-4fcc-8b79-ee7910d3d2cd}<23.9 && {5b88032b-9ae1-4fcc-8b79-ee7910d3d2cd}>1.7, !- Program Line 10 + SET {b0e41288-a734-4121-beea-f7a9f125a11e} = 29.4, !- Program Line 11 + SET {26ec2151-ef11-4578-8177-70a54c3859f8} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {23b23b6b-be78-482a-afa4-b80e37c8f6b8} = NULL, !- Program Line 14 - SET {c7604ec3-edc4-4cc0-80f1-4240262d5731} = NULL, !- Program Line 15 + SET {b0e41288-a734-4121-beea-f7a9f125a11e} = NULL, !- Program Line 14 + SET {26ec2151-ef11-4578-8177-70a54c3859f8} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {24781531-3f44-40da-a666-5f0cb2632592}<23.9 && {24781531-3f44-40da-a666-5f0cb2632592}>1.7, !- Program Line 1 - SET {bf0d2260-611e-4ed8-a45a-c10c70aace40} = 29.4, !- Program Line 2 - SET {47984f5c-f128-47d6-865b-8f0e86901bbc} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {24781531-3f44-40da-a666-5f0cb2632592}<23.9 && {24781531-3f44-40da-a666-5f0cb2632592}>1.7, !- Program Line 4 - SET {bf0d2260-611e-4ed8-a45a-c10c70aace40} = 29.4, !- Program Line 5 - SET {47984f5c-f128-47d6-865b-8f0e86901bbc} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {24781531-3f44-40da-a666-5f0cb2632592}<23.9 && {24781531-3f44-40da-a666-5f0cb2632592}>1.7, !- Program Line 7 - SET {bf0d2260-611e-4ed8-a45a-c10c70aace40} = 29.4, !- Program Line 8 - SET {47984f5c-f128-47d6-865b-8f0e86901bbc} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {24781531-3f44-40da-a666-5f0cb2632592}<23.9 && {24781531-3f44-40da-a666-5f0cb2632592}>1.7, !- Program Line 10 - SET {bf0d2260-611e-4ed8-a45a-c10c70aace40} = 29.4, !- Program Line 11 - SET {47984f5c-f128-47d6-865b-8f0e86901bbc} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3a1cbbd0-366a-466d-9ef6-e6f6e5304636}<23.9 && {3a1cbbd0-366a-466d-9ef6-e6f6e5304636}>1.7, !- Program Line 1 + SET {746957f5-cac4-42aa-ac21-886451dfde13} = 29.4, !- Program Line 2 + SET {4545b7e0-1add-4675-979e-98bf2d1b0801} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3a1cbbd0-366a-466d-9ef6-e6f6e5304636}<23.9 && {3a1cbbd0-366a-466d-9ef6-e6f6e5304636}>1.7, !- Program Line 4 + SET {746957f5-cac4-42aa-ac21-886451dfde13} = 29.4, !- Program Line 5 + SET {4545b7e0-1add-4675-979e-98bf2d1b0801} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3a1cbbd0-366a-466d-9ef6-e6f6e5304636}<23.9 && {3a1cbbd0-366a-466d-9ef6-e6f6e5304636}>1.7, !- Program Line 7 + SET {746957f5-cac4-42aa-ac21-886451dfde13} = 29.4, !- Program Line 8 + SET {4545b7e0-1add-4675-979e-98bf2d1b0801} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3a1cbbd0-366a-466d-9ef6-e6f6e5304636}<23.9 && {3a1cbbd0-366a-466d-9ef6-e6f6e5304636}>1.7, !- Program Line 10 + SET {746957f5-cac4-42aa-ac21-886451dfde13} = 29.4, !- Program Line 11 + SET {4545b7e0-1add-4675-979e-98bf2d1b0801} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {bf0d2260-611e-4ed8-a45a-c10c70aace40} = NULL, !- Program Line 14 - SET {47984f5c-f128-47d6-865b-8f0e86901bbc} = NULL, !- Program Line 15 + SET {746957f5-cac4-42aa-ac21-886451dfde13} = NULL, !- Program Line 14 + SET {4545b7e0-1add-4675-979e-98bf2d1b0801} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f2230532-f2d4-4269-94d3-64e1db0f65f7}<23.9 && {f2230532-f2d4-4269-94d3-64e1db0f65f7}>1.7, !- Program Line 1 - SET {e7d082d4-1cce-4c8f-bc0c-9b5869401f35} = 29.4, !- Program Line 2 - SET {287dc24b-a8ac-4e64-93e4-e5335950c8d3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f2230532-f2d4-4269-94d3-64e1db0f65f7}<23.9 && {f2230532-f2d4-4269-94d3-64e1db0f65f7}>1.7, !- Program Line 4 - SET {e7d082d4-1cce-4c8f-bc0c-9b5869401f35} = 29.4, !- Program Line 5 - SET {287dc24b-a8ac-4e64-93e4-e5335950c8d3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f2230532-f2d4-4269-94d3-64e1db0f65f7}<23.9 && {f2230532-f2d4-4269-94d3-64e1db0f65f7}>1.7, !- Program Line 7 - SET {e7d082d4-1cce-4c8f-bc0c-9b5869401f35} = 29.4, !- Program Line 8 - SET {287dc24b-a8ac-4e64-93e4-e5335950c8d3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f2230532-f2d4-4269-94d3-64e1db0f65f7}<23.9 && {f2230532-f2d4-4269-94d3-64e1db0f65f7}>1.7, !- Program Line 10 - SET {e7d082d4-1cce-4c8f-bc0c-9b5869401f35} = 29.4, !- Program Line 11 - SET {287dc24b-a8ac-4e64-93e4-e5335950c8d3} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f5f0888e-3131-4172-847a-2f4de543a84f}<23.9 && {f5f0888e-3131-4172-847a-2f4de543a84f}>1.7, !- Program Line 1 + SET {80de6e05-f224-4059-aed2-f7598e13855b} = 29.4, !- Program Line 2 + SET {400fbf30-806b-486a-a4e3-26133bcef5ec} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f5f0888e-3131-4172-847a-2f4de543a84f}<23.9 && {f5f0888e-3131-4172-847a-2f4de543a84f}>1.7, !- Program Line 4 + SET {80de6e05-f224-4059-aed2-f7598e13855b} = 29.4, !- Program Line 5 + SET {400fbf30-806b-486a-a4e3-26133bcef5ec} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f5f0888e-3131-4172-847a-2f4de543a84f}<23.9 && {f5f0888e-3131-4172-847a-2f4de543a84f}>1.7, !- Program Line 7 + SET {80de6e05-f224-4059-aed2-f7598e13855b} = 29.4, !- Program Line 8 + SET {400fbf30-806b-486a-a4e3-26133bcef5ec} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f5f0888e-3131-4172-847a-2f4de543a84f}<23.9 && {f5f0888e-3131-4172-847a-2f4de543a84f}>1.7, !- Program Line 10 + SET {80de6e05-f224-4059-aed2-f7598e13855b} = 29.4, !- Program Line 11 + SET {400fbf30-806b-486a-a4e3-26133bcef5ec} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e7d082d4-1cce-4c8f-bc0c-9b5869401f35} = NULL, !- Program Line 14 - SET {287dc24b-a8ac-4e64-93e4-e5335950c8d3} = NULL, !- Program Line 15 + SET {80de6e05-f224-4059-aed2-f7598e13855b} = NULL, !- Program Line 14 + SET {400fbf30-806b-486a-a4e3-26133bcef5ec} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000004}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000005}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000006}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000007}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000008}; !- Program Name 1 @@ -17070,841 +17070,841 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000246}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000225}, !- Inlet Port {00000000-0000-0000-0018-000000000227}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000247}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000228}, !- Inlet Port {00000000-0000-0000-0018-000000000226}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000248}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000233}, !- Inlet Port {00000000-0000-0000-0018-000000000234}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000249}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000229}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000250}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000230}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000251}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000223}, !- Inlet Port {00000000-0000-0000-0018-000000000232}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000252}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000231}, !- Inlet Port {00000000-0000-0000-0018-000000000224}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000253}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000423}, !- Inlet Port {00000000-0000-0000-0018-000000000425}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000254}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000426}, !- Inlet Port {00000000-0000-0000-0018-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000255}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000431}, !- Inlet Port {00000000-0000-0000-0018-000000000432}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000256}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000427}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000257}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000428}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000258}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000421}, !- Inlet Port {00000000-0000-0000-0018-000000000430}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000259}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000429}, !- Inlet Port {00000000-0000-0000-0018-000000000422}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000260}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000445}, !- Inlet Port {00000000-0000-0000-0018-000000000447}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000261}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000448}, !- Inlet Port {00000000-0000-0000-0018-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000262}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000453}, !- Inlet Port {00000000-0000-0000-0018-000000000454}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000263}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000264}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000450}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000265}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000443}, !- Inlet Port {00000000-0000-0000-0018-000000000452}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000266}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000451}, !- Inlet Port {00000000-0000-0000-0018-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000267}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000467}, !- Inlet Port {00000000-0000-0000-0018-000000000469}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000268}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000470}, !- Inlet Port {00000000-0000-0000-0018-000000000468}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000269}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000475}, !- Inlet Port {00000000-0000-0000-0018-000000000476}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000270}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000471}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000271}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000472}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000272}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000465}, !- Inlet Port {00000000-0000-0000-0018-000000000474}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000273}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000473}, !- Inlet Port {00000000-0000-0000-0018-000000000466}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000274}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000489}, !- Inlet Port {00000000-0000-0000-0018-000000000491}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000275}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000492}, !- Inlet Port {00000000-0000-0000-0018-000000000490}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000276}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000497}, !- Inlet Port {00000000-0000-0000-0018-000000000498}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000277}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000493}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000278}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000494}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000279}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000487}, !- Inlet Port {00000000-0000-0000-0018-000000000496}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000280}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000495}, !- Inlet Port {00000000-0000-0000-0018-000000000488}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000281}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000511}, !- Inlet Port {00000000-0000-0000-0018-000000000513}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000282}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000514}, !- Inlet Port {00000000-0000-0000-0018-000000000512}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000283}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000519}, !- Inlet Port {00000000-0000-0000-0018-000000000520}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000284}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000515}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000285}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000516}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000286}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000509}, !- Inlet Port {00000000-0000-0000-0018-000000000518}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000287}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000517}, !- Inlet Port {00000000-0000-0000-0018-000000000510}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000288}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000533}, !- Inlet Port {00000000-0000-0000-0018-000000000535}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000289}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000536}, !- Inlet Port {00000000-0000-0000-0018-000000000534}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000290}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000541}, !- Inlet Port {00000000-0000-0000-0018-000000000542}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000291}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000537}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000292}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000538}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000293}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000531}, !- Inlet Port {00000000-0000-0000-0018-000000000540}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000294}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000539}, !- Inlet Port {00000000-0000-0000-0018-000000000532}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000295}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000555}, !- Inlet Port {00000000-0000-0000-0018-000000000557}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000296}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000558}, !- Inlet Port {00000000-0000-0000-0018-000000000556}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000297}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000563}, !- Inlet Port {00000000-0000-0000-0018-000000000564}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000298}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000559}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000299}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000560}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000300}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000553}, !- Inlet Port {00000000-0000-0000-0018-000000000562}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000301}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000561}, !- Inlet Port {00000000-0000-0000-0018-000000000554}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000302}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000577}, !- Inlet Port {00000000-0000-0000-0018-000000000579}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000303}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000580}, !- Inlet Port {00000000-0000-0000-0018-000000000578}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000304}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000585}, !- Inlet Port {00000000-0000-0000-0018-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000305}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000581}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000306}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000582}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000307}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000575}, !- Inlet Port {00000000-0000-0000-0018-000000000584}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000308}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000583}, !- Inlet Port {00000000-0000-0000-0018-000000000576}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000309}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000247}, !- Inlet Port {00000000-0000-0000-0018-000000000249}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000310}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000250}, !- Inlet Port {00000000-0000-0000-0018-000000000248}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000311}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000255}, !- Inlet Port {00000000-0000-0000-0018-000000000256}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000312}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000251}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000313}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000252}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000314}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000245}, !- Inlet Port {00000000-0000-0000-0018-000000000254}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000315}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000253}, !- Inlet Port {00000000-0000-0000-0018-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000316}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000269}, !- Inlet Port {00000000-0000-0000-0018-000000000271}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000317}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000272}, !- Inlet Port {00000000-0000-0000-0018-000000000270}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000318}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000277}, !- Inlet Port {00000000-0000-0000-0018-000000000278}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000319}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000273}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000320}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000274}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000321}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000267}, !- Inlet Port {00000000-0000-0000-0018-000000000276}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000322}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000275}, !- Inlet Port {00000000-0000-0000-0018-000000000268}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000323}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000291}, !- Inlet Port {00000000-0000-0000-0018-000000000293}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000324}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000294}, !- Inlet Port {00000000-0000-0000-0018-000000000292}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000325}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000299}, !- Inlet Port {00000000-0000-0000-0018-000000000300}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000326}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000295}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000327}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000296}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000328}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000289}, !- Inlet Port {00000000-0000-0000-0018-000000000298}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000329}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000297}, !- Inlet Port {00000000-0000-0000-0018-000000000290}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000330}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000313}, !- Inlet Port {00000000-0000-0000-0018-000000000315}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000331}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000316}, !- Inlet Port {00000000-0000-0000-0018-000000000314}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000332}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000321}, !- Inlet Port {00000000-0000-0000-0018-000000000322}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000333}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000317}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000334}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000318}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000335}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000311}, !- Inlet Port {00000000-0000-0000-0018-000000000320}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000336}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000319}, !- Inlet Port {00000000-0000-0000-0018-000000000312}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000337}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000335}, !- Inlet Port {00000000-0000-0000-0018-000000000337}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000338}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000338}, !- Inlet Port {00000000-0000-0000-0018-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000339}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000343}, !- Inlet Port {00000000-0000-0000-0018-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000340}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000339}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000341}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000340}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000342}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000333}, !- Inlet Port {00000000-0000-0000-0018-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000343}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000341}, !- Inlet Port {00000000-0000-0000-0018-000000000334}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000344}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000357}, !- Inlet Port {00000000-0000-0000-0018-000000000359}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000345}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000360}, !- Inlet Port {00000000-0000-0000-0018-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000346}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000365}, !- Inlet Port {00000000-0000-0000-0018-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000347}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000361}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000348}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000362}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000349}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000355}, !- Inlet Port {00000000-0000-0000-0018-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000350}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000363}, !- Inlet Port {00000000-0000-0000-0018-000000000356}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000351}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000379}, !- Inlet Port {00000000-0000-0000-0018-000000000381}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000352}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000382}, !- Inlet Port {00000000-0000-0000-0018-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000353}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000387}, !- Inlet Port {00000000-0000-0000-0018-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000354}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000383}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000355}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000384}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000356}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000377}, !- Inlet Port {00000000-0000-0000-0018-000000000386}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000357}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000385}, !- Inlet Port {00000000-0000-0000-0018-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000358}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000401}, !- Inlet Port {00000000-0000-0000-0018-000000000403}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000359}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000404}, !- Inlet Port {00000000-0000-0000-0018-000000000402}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000360}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000409}, !- Inlet Port {00000000-0000-0000-0018-000000000410}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000361}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000405}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000362}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000406}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000363}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000399}, !- Inlet Port {00000000-0000-0000-0018-000000000408}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000364}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000407}, !- Inlet Port {00000000-0000-0000-0018-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000365}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000203}, !- Inlet Port {00000000-0000-0000-0018-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000366}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000206}, !- Inlet Port {00000000-0000-0000-0018-000000000204}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000367}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000211}, !- Inlet Port {00000000-0000-0000-0018-000000000212}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000368}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000207}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000369}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000208}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000370}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000201}, !- Inlet Port {00000000-0000-0000-0018-000000000210}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000371}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000209}, !- Inlet Port {00000000-0000-0000-0018-000000000202}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000372}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000131}, !- Inlet Port {00000000-0000-0000-0018-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000373}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000134}, !- Inlet Port {00000000-0000-0000-0018-000000000132}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000374}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000139}, !- Inlet Port {00000000-0000-0000-0018-000000000140}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000375}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000376}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000136}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000377}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000129}, !- Inlet Port {00000000-0000-0000-0018-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000378}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000137}, !- Inlet Port {00000000-0000-0000-0018-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000379}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000100}, !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000380}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000381}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000108}, !- Inlet Port {00000000-0000-0000-0018-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000382}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000383}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000105}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000384}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000385}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000106}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port @@ -21953,7 +21953,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21974,7 +21974,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21983,7 +21983,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21992,7 +21992,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -22007,7 +22007,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22016,7 +22016,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22025,7 +22025,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -22040,7 +22040,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22049,7 +22049,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22058,7 +22058,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22073,7 +22073,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22082,7 +22082,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22091,7 +22091,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -22106,7 +22106,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22115,7 +22115,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22124,7 +22124,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22145,7 +22145,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22154,7 +22154,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22163,7 +22163,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22184,7 +22184,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22193,7 +22193,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22202,7 +22202,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22223,7 +22223,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22232,7 +22232,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22241,7 +22241,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22256,7 +22256,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22265,7 +22265,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22274,7 +22274,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -22289,7 +22289,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22298,7 +22298,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22307,7 +22307,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22322,7 +22322,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22331,7 +22331,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22340,7 +22340,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22361,7 +22361,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22370,7 +22370,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22379,7 +22379,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22400,7 +22400,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22409,7 +22409,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22418,7 +22418,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22433,7 +22433,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22442,7 +22442,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22451,7 +22451,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22472,7 +22472,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22481,7 +22481,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22490,7 +22490,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22505,7 +22505,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22514,7 +22514,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22523,7 +22523,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -22538,7 +22538,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22547,7 +22547,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22556,7 +22556,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22577,7 +22577,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22586,7 +22586,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22595,7 +22595,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000209}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22616,7 +22616,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000210}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22625,7 +22625,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000211}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22634,7 +22634,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000212}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22655,7 +22655,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000213}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22664,7 +22664,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000214}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25044,7 +25044,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000155}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000156}, !- Summer Design Day Schedule Name @@ -25052,7 +25052,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000158}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000159}, !- Summer Design Day Schedule Name @@ -25060,7 +25060,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000161}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000162}, !- Summer Design Day Schedule Name @@ -25068,7 +25068,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000164}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000165}, !- Summer Design Day Schedule Name @@ -25076,7 +25076,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000168}, !- Summer Design Day Schedule Name @@ -25084,7 +25084,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000171}, !- Summer Design Day Schedule Name @@ -25092,7 +25092,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000174}, !- Summer Design Day Schedule Name @@ -25100,7 +25100,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000177}, !- Summer Design Day Schedule Name @@ -25108,7 +25108,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000179}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000180}, !- Summer Design Day Schedule Name @@ -25116,7 +25116,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000182}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000183}, !- Summer Design Day Schedule Name @@ -25124,7 +25124,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000186}, !- Summer Design Day Schedule Name @@ -25132,7 +25132,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000189}, !- Summer Design Day Schedule Name @@ -25140,7 +25140,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000192}, !- Summer Design Day Schedule Name @@ -25148,7 +25148,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000195}, !- Summer Design Day Schedule Name @@ -25156,7 +25156,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000198}, !- Summer Design Day Schedule Name @@ -25164,7 +25164,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000201}, !- Summer Design Day Schedule Name @@ -25172,7 +25172,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000204}, !- Summer Design Day Schedule Name @@ -25180,7 +25180,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000206}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000207}, !- Summer Design Day Schedule Name @@ -25188,7 +25188,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000209}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000210}, !- Summer Design Day Schedule Name @@ -25196,7 +25196,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000212}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000213}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 38e43bf1a5..7ccb808dc9 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000038}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000039}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -13825,7 +13825,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13833,7 +13833,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13841,7 +13841,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_ClgSch0, !- Name {00000000-0000-0000-0069-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13849,7 +13849,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_HtgSch0, !- Name {00000000-0000-0000-0069-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13857,7 +13857,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13865,7 +13865,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13873,7 +13873,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0069-000000000025}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13881,7 +13881,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000008}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0069-000000000026}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13889,7 +13889,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000009}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_ClgSch0, !- Name {00000000-0000-0000-0069-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13897,7 +13897,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000010}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_HtgSch0, !- Name {00000000-0000-0000-0069-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13905,7 +13905,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000011}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0069-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13913,7 +13913,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000012}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0069-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13921,7 +13921,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000013}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0069-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13929,7 +13929,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000014}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0069-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13937,7 +13937,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000015}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0069-000000000031}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13945,7 +13945,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000016}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0069-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13953,209 +13953,209 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d0bf8219-f78e-4df6-b01a-3302bfabfb0a}<23.9 && {d0bf8219-f78e-4df6-b01a-3302bfabfb0a}>1.7, !- Program Line 1 - SET {1ea35fa9-2589-497c-9079-b019c78ce1ae} = 29.4, !- Program Line 2 - SET {6145fa42-0958-4548-950e-974592468f6a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d0bf8219-f78e-4df6-b01a-3302bfabfb0a}<23.9 && {d0bf8219-f78e-4df6-b01a-3302bfabfb0a}>1.7, !- Program Line 4 - SET {1ea35fa9-2589-497c-9079-b019c78ce1ae} = 29.4, !- Program Line 5 - SET {6145fa42-0958-4548-950e-974592468f6a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d0bf8219-f78e-4df6-b01a-3302bfabfb0a}<23.9 && {d0bf8219-f78e-4df6-b01a-3302bfabfb0a}>1.7, !- Program Line 7 - SET {1ea35fa9-2589-497c-9079-b019c78ce1ae} = 29.4, !- Program Line 8 - SET {6145fa42-0958-4548-950e-974592468f6a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d0bf8219-f78e-4df6-b01a-3302bfabfb0a}<23.9 && {d0bf8219-f78e-4df6-b01a-3302bfabfb0a}>1.7, !- Program Line 10 - SET {1ea35fa9-2589-497c-9079-b019c78ce1ae} = 29.4, !- Program Line 11 - SET {6145fa42-0958-4548-950e-974592468f6a} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {64002c8a-e5ab-4e5f-8142-f4047835834c}<23.9 && {64002c8a-e5ab-4e5f-8142-f4047835834c}>1.7, !- Program Line 1 + SET {dda5b8cc-8cd2-4553-8844-ff62aafa7cae} = 29.4, !- Program Line 2 + SET {f78084ca-9158-4dae-91fc-5e92a3c15ae4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {64002c8a-e5ab-4e5f-8142-f4047835834c}<23.9 && {64002c8a-e5ab-4e5f-8142-f4047835834c}>1.7, !- Program Line 4 + SET {dda5b8cc-8cd2-4553-8844-ff62aafa7cae} = 29.4, !- Program Line 5 + SET {f78084ca-9158-4dae-91fc-5e92a3c15ae4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {64002c8a-e5ab-4e5f-8142-f4047835834c}<23.9 && {64002c8a-e5ab-4e5f-8142-f4047835834c}>1.7, !- Program Line 7 + SET {dda5b8cc-8cd2-4553-8844-ff62aafa7cae} = 29.4, !- Program Line 8 + SET {f78084ca-9158-4dae-91fc-5e92a3c15ae4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {64002c8a-e5ab-4e5f-8142-f4047835834c}<23.9 && {64002c8a-e5ab-4e5f-8142-f4047835834c}>1.7, !- Program Line 10 + SET {dda5b8cc-8cd2-4553-8844-ff62aafa7cae} = 29.4, !- Program Line 11 + SET {f78084ca-9158-4dae-91fc-5e92a3c15ae4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1ea35fa9-2589-497c-9079-b019c78ce1ae} = NULL, !- Program Line 14 - SET {6145fa42-0958-4548-950e-974592468f6a} = NULL, !- Program Line 15 + SET {dda5b8cc-8cd2-4553-8844-ff62aafa7cae} = NULL, !- Program Line 14 + SET {f78084ca-9158-4dae-91fc-5e92a3c15ae4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3f821cab-708d-4bd3-bac6-545aacd1f23d}<23.9 && {3f821cab-708d-4bd3-bac6-545aacd1f23d}>1.7, !- Program Line 1 - SET {37a71fcb-01a0-4402-9ff9-4fb38a0302fc} = 29.4, !- Program Line 2 - SET {12f0fa4e-f96f-489a-999c-2709e4525981} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3f821cab-708d-4bd3-bac6-545aacd1f23d}<23.9 && {3f821cab-708d-4bd3-bac6-545aacd1f23d}>1.7, !- Program Line 4 - SET {37a71fcb-01a0-4402-9ff9-4fb38a0302fc} = 29.4, !- Program Line 5 - SET {12f0fa4e-f96f-489a-999c-2709e4525981} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3f821cab-708d-4bd3-bac6-545aacd1f23d}<23.9 && {3f821cab-708d-4bd3-bac6-545aacd1f23d}>1.7, !- Program Line 7 - SET {37a71fcb-01a0-4402-9ff9-4fb38a0302fc} = 29.4, !- Program Line 8 - SET {12f0fa4e-f96f-489a-999c-2709e4525981} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3f821cab-708d-4bd3-bac6-545aacd1f23d}<23.9 && {3f821cab-708d-4bd3-bac6-545aacd1f23d}>1.7, !- Program Line 10 - SET {37a71fcb-01a0-4402-9ff9-4fb38a0302fc} = 29.4, !- Program Line 11 - SET {12f0fa4e-f96f-489a-999c-2709e4525981} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {612cbd94-d5e7-48fb-9b38-b34ed60fa9c6}<23.9 && {612cbd94-d5e7-48fb-9b38-b34ed60fa9c6}>1.7, !- Program Line 1 + SET {7f5abbfd-a434-4472-9884-71b417ea0fae} = 29.4, !- Program Line 2 + SET {e01408ef-7070-4241-a6ea-01199fd35020} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {612cbd94-d5e7-48fb-9b38-b34ed60fa9c6}<23.9 && {612cbd94-d5e7-48fb-9b38-b34ed60fa9c6}>1.7, !- Program Line 4 + SET {7f5abbfd-a434-4472-9884-71b417ea0fae} = 29.4, !- Program Line 5 + SET {e01408ef-7070-4241-a6ea-01199fd35020} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {612cbd94-d5e7-48fb-9b38-b34ed60fa9c6}<23.9 && {612cbd94-d5e7-48fb-9b38-b34ed60fa9c6}>1.7, !- Program Line 7 + SET {7f5abbfd-a434-4472-9884-71b417ea0fae} = 29.4, !- Program Line 8 + SET {e01408ef-7070-4241-a6ea-01199fd35020} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {612cbd94-d5e7-48fb-9b38-b34ed60fa9c6}<23.9 && {612cbd94-d5e7-48fb-9b38-b34ed60fa9c6}>1.7, !- Program Line 10 + SET {7f5abbfd-a434-4472-9884-71b417ea0fae} = 29.4, !- Program Line 11 + SET {e01408ef-7070-4241-a6ea-01199fd35020} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {37a71fcb-01a0-4402-9ff9-4fb38a0302fc} = NULL, !- Program Line 14 - SET {12f0fa4e-f96f-489a-999c-2709e4525981} = NULL, !- Program Line 15 + SET {7f5abbfd-a434-4472-9884-71b417ea0fae} = NULL, !- Program Line 14 + SET {e01408ef-7070-4241-a6ea-01199fd35020} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {abcef7bb-88a5-4e33-9a2b-982e40a3e7ed}<23.9 && {abcef7bb-88a5-4e33-9a2b-982e40a3e7ed}>1.7, !- Program Line 1 - SET {b3029a04-1dc6-48a4-b8e1-07571239384a} = 29.4, !- Program Line 2 - SET {faea318d-ff07-4cf0-aa53-bd560798f06f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {abcef7bb-88a5-4e33-9a2b-982e40a3e7ed}<23.9 && {abcef7bb-88a5-4e33-9a2b-982e40a3e7ed}>1.7, !- Program Line 4 - SET {b3029a04-1dc6-48a4-b8e1-07571239384a} = 29.4, !- Program Line 5 - SET {faea318d-ff07-4cf0-aa53-bd560798f06f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {abcef7bb-88a5-4e33-9a2b-982e40a3e7ed}<23.9 && {abcef7bb-88a5-4e33-9a2b-982e40a3e7ed}>1.7, !- Program Line 7 - SET {b3029a04-1dc6-48a4-b8e1-07571239384a} = 29.4, !- Program Line 8 - SET {faea318d-ff07-4cf0-aa53-bd560798f06f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {abcef7bb-88a5-4e33-9a2b-982e40a3e7ed}<23.9 && {abcef7bb-88a5-4e33-9a2b-982e40a3e7ed}>1.7, !- Program Line 10 - SET {b3029a04-1dc6-48a4-b8e1-07571239384a} = 29.4, !- Program Line 11 - SET {faea318d-ff07-4cf0-aa53-bd560798f06f} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fa7379f2-5d40-499c-9207-e2acb8c0a869}<23.9 && {fa7379f2-5d40-499c-9207-e2acb8c0a869}>1.7, !- Program Line 1 + SET {03870afc-cc40-431e-9754-29fad54a968a} = 29.4, !- Program Line 2 + SET {7e02d31c-2dd9-430f-ae7b-544af15ba019} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fa7379f2-5d40-499c-9207-e2acb8c0a869}<23.9 && {fa7379f2-5d40-499c-9207-e2acb8c0a869}>1.7, !- Program Line 4 + SET {03870afc-cc40-431e-9754-29fad54a968a} = 29.4, !- Program Line 5 + SET {7e02d31c-2dd9-430f-ae7b-544af15ba019} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fa7379f2-5d40-499c-9207-e2acb8c0a869}<23.9 && {fa7379f2-5d40-499c-9207-e2acb8c0a869}>1.7, !- Program Line 7 + SET {03870afc-cc40-431e-9754-29fad54a968a} = 29.4, !- Program Line 8 + SET {7e02d31c-2dd9-430f-ae7b-544af15ba019} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fa7379f2-5d40-499c-9207-e2acb8c0a869}<23.9 && {fa7379f2-5d40-499c-9207-e2acb8c0a869}>1.7, !- Program Line 10 + SET {03870afc-cc40-431e-9754-29fad54a968a} = 29.4, !- Program Line 11 + SET {7e02d31c-2dd9-430f-ae7b-544af15ba019} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b3029a04-1dc6-48a4-b8e1-07571239384a} = NULL, !- Program Line 14 - SET {faea318d-ff07-4cf0-aa53-bd560798f06f} = NULL, !- Program Line 15 + SET {03870afc-cc40-431e-9754-29fad54a968a} = NULL, !- Program Line 14 + SET {7e02d31c-2dd9-430f-ae7b-544af15ba019} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3372a7d5-a607-4884-9970-1273094b23ca}<23.9 && {3372a7d5-a607-4884-9970-1273094b23ca}>1.7, !- Program Line 1 - SET {8a921403-caee-4001-b943-503a54670609} = 29.4, !- Program Line 2 - SET {1db98b43-2d37-4d90-bb44-abebf688200f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3372a7d5-a607-4884-9970-1273094b23ca}<23.9 && {3372a7d5-a607-4884-9970-1273094b23ca}>1.7, !- Program Line 4 - SET {8a921403-caee-4001-b943-503a54670609} = 29.4, !- Program Line 5 - SET {1db98b43-2d37-4d90-bb44-abebf688200f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3372a7d5-a607-4884-9970-1273094b23ca}<23.9 && {3372a7d5-a607-4884-9970-1273094b23ca}>1.7, !- Program Line 7 - SET {8a921403-caee-4001-b943-503a54670609} = 29.4, !- Program Line 8 - SET {1db98b43-2d37-4d90-bb44-abebf688200f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3372a7d5-a607-4884-9970-1273094b23ca}<23.9 && {3372a7d5-a607-4884-9970-1273094b23ca}>1.7, !- Program Line 10 - SET {8a921403-caee-4001-b943-503a54670609} = 29.4, !- Program Line 11 - SET {1db98b43-2d37-4d90-bb44-abebf688200f} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ed152f6f-4ec9-4fc7-86d4-f057e6e73728}<23.9 && {ed152f6f-4ec9-4fc7-86d4-f057e6e73728}>1.7, !- Program Line 1 + SET {ce393d04-c009-460f-a475-96011132f1e2} = 29.4, !- Program Line 2 + SET {754ab831-b8e1-4bea-9ecc-609a4b092e7f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ed152f6f-4ec9-4fc7-86d4-f057e6e73728}<23.9 && {ed152f6f-4ec9-4fc7-86d4-f057e6e73728}>1.7, !- Program Line 4 + SET {ce393d04-c009-460f-a475-96011132f1e2} = 29.4, !- Program Line 5 + SET {754ab831-b8e1-4bea-9ecc-609a4b092e7f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ed152f6f-4ec9-4fc7-86d4-f057e6e73728}<23.9 && {ed152f6f-4ec9-4fc7-86d4-f057e6e73728}>1.7, !- Program Line 7 + SET {ce393d04-c009-460f-a475-96011132f1e2} = 29.4, !- Program Line 8 + SET {754ab831-b8e1-4bea-9ecc-609a4b092e7f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ed152f6f-4ec9-4fc7-86d4-f057e6e73728}<23.9 && {ed152f6f-4ec9-4fc7-86d4-f057e6e73728}>1.7, !- Program Line 10 + SET {ce393d04-c009-460f-a475-96011132f1e2} = 29.4, !- Program Line 11 + SET {754ab831-b8e1-4bea-9ecc-609a4b092e7f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8a921403-caee-4001-b943-503a54670609} = NULL, !- Program Line 14 - SET {1db98b43-2d37-4d90-bb44-abebf688200f} = NULL, !- Program Line 15 + SET {ce393d04-c009-460f-a475-96011132f1e2} = NULL, !- Program Line 14 + SET {754ab831-b8e1-4bea-9ecc-609a4b092e7f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ba59c56f-56ec-4593-9bba-9d8b5d0fe1dc}<23.9 && {ba59c56f-56ec-4593-9bba-9d8b5d0fe1dc}>1.7, !- Program Line 1 - SET {308f9d29-0f50-429f-9928-05f0c8fe9b9f} = 29.4, !- Program Line 2 - SET {6564c16e-ba1d-46dd-8158-5e5b8eb113ec} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ba59c56f-56ec-4593-9bba-9d8b5d0fe1dc}<23.9 && {ba59c56f-56ec-4593-9bba-9d8b5d0fe1dc}>1.7, !- Program Line 4 - SET {308f9d29-0f50-429f-9928-05f0c8fe9b9f} = 29.4, !- Program Line 5 - SET {6564c16e-ba1d-46dd-8158-5e5b8eb113ec} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ba59c56f-56ec-4593-9bba-9d8b5d0fe1dc}<23.9 && {ba59c56f-56ec-4593-9bba-9d8b5d0fe1dc}>1.7, !- Program Line 7 - SET {308f9d29-0f50-429f-9928-05f0c8fe9b9f} = 29.4, !- Program Line 8 - SET {6564c16e-ba1d-46dd-8158-5e5b8eb113ec} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ba59c56f-56ec-4593-9bba-9d8b5d0fe1dc}<23.9 && {ba59c56f-56ec-4593-9bba-9d8b5d0fe1dc}>1.7, !- Program Line 10 - SET {308f9d29-0f50-429f-9928-05f0c8fe9b9f} = 29.4, !- Program Line 11 - SET {6564c16e-ba1d-46dd-8158-5e5b8eb113ec} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0062896a-2161-4839-965d-8aa9e0d44145}<23.9 && {0062896a-2161-4839-965d-8aa9e0d44145}>1.7, !- Program Line 1 + SET {62c070b4-bdf1-48bb-bb54-022f8878cd85} = 29.4, !- Program Line 2 + SET {3a7b3485-0df2-4c7d-8bef-294b4a95f3a7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0062896a-2161-4839-965d-8aa9e0d44145}<23.9 && {0062896a-2161-4839-965d-8aa9e0d44145}>1.7, !- Program Line 4 + SET {62c070b4-bdf1-48bb-bb54-022f8878cd85} = 29.4, !- Program Line 5 + SET {3a7b3485-0df2-4c7d-8bef-294b4a95f3a7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0062896a-2161-4839-965d-8aa9e0d44145}<23.9 && {0062896a-2161-4839-965d-8aa9e0d44145}>1.7, !- Program Line 7 + SET {62c070b4-bdf1-48bb-bb54-022f8878cd85} = 29.4, !- Program Line 8 + SET {3a7b3485-0df2-4c7d-8bef-294b4a95f3a7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0062896a-2161-4839-965d-8aa9e0d44145}<23.9 && {0062896a-2161-4839-965d-8aa9e0d44145}>1.7, !- Program Line 10 + SET {62c070b4-bdf1-48bb-bb54-022f8878cd85} = 29.4, !- Program Line 11 + SET {3a7b3485-0df2-4c7d-8bef-294b4a95f3a7} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {308f9d29-0f50-429f-9928-05f0c8fe9b9f} = NULL, !- Program Line 14 - SET {6564c16e-ba1d-46dd-8158-5e5b8eb113ec} = NULL, !- Program Line 15 + SET {62c070b4-bdf1-48bb-bb54-022f8878cd85} = NULL, !- Program Line 14 + SET {3a7b3485-0df2-4c7d-8bef-294b4a95f3a7} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e70e9386-a5bc-4e7a-84da-f092b2a20896}<23.9 && {e70e9386-a5bc-4e7a-84da-f092b2a20896}>1.7, !- Program Line 1 - SET {ec4ca5d4-6b5d-41d7-8158-7825336e4050} = 29.4, !- Program Line 2 - SET {9670222e-38d8-4163-8915-4faa77345ca2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e70e9386-a5bc-4e7a-84da-f092b2a20896}<23.9 && {e70e9386-a5bc-4e7a-84da-f092b2a20896}>1.7, !- Program Line 4 - SET {ec4ca5d4-6b5d-41d7-8158-7825336e4050} = 29.4, !- Program Line 5 - SET {9670222e-38d8-4163-8915-4faa77345ca2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e70e9386-a5bc-4e7a-84da-f092b2a20896}<23.9 && {e70e9386-a5bc-4e7a-84da-f092b2a20896}>1.7, !- Program Line 7 - SET {ec4ca5d4-6b5d-41d7-8158-7825336e4050} = 29.4, !- Program Line 8 - SET {9670222e-38d8-4163-8915-4faa77345ca2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e70e9386-a5bc-4e7a-84da-f092b2a20896}<23.9 && {e70e9386-a5bc-4e7a-84da-f092b2a20896}>1.7, !- Program Line 10 - SET {ec4ca5d4-6b5d-41d7-8158-7825336e4050} = 29.4, !- Program Line 11 - SET {9670222e-38d8-4163-8915-4faa77345ca2} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {639d01fe-d231-4043-b062-f84792083d8d}<23.9 && {639d01fe-d231-4043-b062-f84792083d8d}>1.7, !- Program Line 1 + SET {b65f99d8-b730-4bf4-8905-61de917fd6ea} = 29.4, !- Program Line 2 + SET {3d0f8bbb-3361-4a30-88f6-13e01703f2dd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {639d01fe-d231-4043-b062-f84792083d8d}<23.9 && {639d01fe-d231-4043-b062-f84792083d8d}>1.7, !- Program Line 4 + SET {b65f99d8-b730-4bf4-8905-61de917fd6ea} = 29.4, !- Program Line 5 + SET {3d0f8bbb-3361-4a30-88f6-13e01703f2dd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {639d01fe-d231-4043-b062-f84792083d8d}<23.9 && {639d01fe-d231-4043-b062-f84792083d8d}>1.7, !- Program Line 7 + SET {b65f99d8-b730-4bf4-8905-61de917fd6ea} = 29.4, !- Program Line 8 + SET {3d0f8bbb-3361-4a30-88f6-13e01703f2dd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {639d01fe-d231-4043-b062-f84792083d8d}<23.9 && {639d01fe-d231-4043-b062-f84792083d8d}>1.7, !- Program Line 10 + SET {b65f99d8-b730-4bf4-8905-61de917fd6ea} = 29.4, !- Program Line 11 + SET {3d0f8bbb-3361-4a30-88f6-13e01703f2dd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ec4ca5d4-6b5d-41d7-8158-7825336e4050} = NULL, !- Program Line 14 - SET {9670222e-38d8-4163-8915-4faa77345ca2} = NULL, !- Program Line 15 + SET {b65f99d8-b730-4bf4-8905-61de917fd6ea} = NULL, !- Program Line 14 + SET {3d0f8bbb-3361-4a30-88f6-13e01703f2dd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d14afb40-f5e5-4c9e-b59a-4c55f9f301d3}<23.9 && {d14afb40-f5e5-4c9e-b59a-4c55f9f301d3}>1.7, !- Program Line 1 - SET {f635bd56-f524-497e-ac14-55fd90be72c4} = 29.4, !- Program Line 2 - SET {d4aa3fd4-23f0-4a7d-adad-ad6a652e6cb5} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d14afb40-f5e5-4c9e-b59a-4c55f9f301d3}<23.9 && {d14afb40-f5e5-4c9e-b59a-4c55f9f301d3}>1.7, !- Program Line 4 - SET {f635bd56-f524-497e-ac14-55fd90be72c4} = 29.4, !- Program Line 5 - SET {d4aa3fd4-23f0-4a7d-adad-ad6a652e6cb5} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d14afb40-f5e5-4c9e-b59a-4c55f9f301d3}<23.9 && {d14afb40-f5e5-4c9e-b59a-4c55f9f301d3}>1.7, !- Program Line 7 - SET {f635bd56-f524-497e-ac14-55fd90be72c4} = 29.4, !- Program Line 8 - SET {d4aa3fd4-23f0-4a7d-adad-ad6a652e6cb5} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d14afb40-f5e5-4c9e-b59a-4c55f9f301d3}<23.9 && {d14afb40-f5e5-4c9e-b59a-4c55f9f301d3}>1.7, !- Program Line 10 - SET {f635bd56-f524-497e-ac14-55fd90be72c4} = 29.4, !- Program Line 11 - SET {d4aa3fd4-23f0-4a7d-adad-ad6a652e6cb5} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {763e46ff-aeba-40cb-b664-44f2d7c74615}<23.9 && {763e46ff-aeba-40cb-b664-44f2d7c74615}>1.7, !- Program Line 1 + SET {c427ba9f-5c4f-4a77-9d0e-507fa2f21872} = 29.4, !- Program Line 2 + SET {08913ce2-6688-48f7-b3ab-3898ccb7edf0} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {763e46ff-aeba-40cb-b664-44f2d7c74615}<23.9 && {763e46ff-aeba-40cb-b664-44f2d7c74615}>1.7, !- Program Line 4 + SET {c427ba9f-5c4f-4a77-9d0e-507fa2f21872} = 29.4, !- Program Line 5 + SET {08913ce2-6688-48f7-b3ab-3898ccb7edf0} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {763e46ff-aeba-40cb-b664-44f2d7c74615}<23.9 && {763e46ff-aeba-40cb-b664-44f2d7c74615}>1.7, !- Program Line 7 + SET {c427ba9f-5c4f-4a77-9d0e-507fa2f21872} = 29.4, !- Program Line 8 + SET {08913ce2-6688-48f7-b3ab-3898ccb7edf0} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {763e46ff-aeba-40cb-b664-44f2d7c74615}<23.9 && {763e46ff-aeba-40cb-b664-44f2d7c74615}>1.7, !- Program Line 10 + SET {c427ba9f-5c4f-4a77-9d0e-507fa2f21872} = 29.4, !- Program Line 11 + SET {08913ce2-6688-48f7-b3ab-3898ccb7edf0} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f635bd56-f524-497e-ac14-55fd90be72c4} = NULL, !- Program Line 14 - SET {d4aa3fd4-23f0-4a7d-adad-ad6a652e6cb5} = NULL, !- Program Line 15 + SET {c427ba9f-5c4f-4a77-9d0e-507fa2f21872} = NULL, !- Program Line 14 + SET {08913ce2-6688-48f7-b3ab-3898ccb7edf0} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8c7cbaff-eab6-439f-91a3-e750477c5b13}<23.9 && {8c7cbaff-eab6-439f-91a3-e750477c5b13}>1.7, !- Program Line 1 - SET {498e3d70-2aac-409d-a4a5-f6e5c507531e} = 29.4, !- Program Line 2 - SET {7e0fc92a-21c0-45ee-aa8d-11f18b54cc6c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8c7cbaff-eab6-439f-91a3-e750477c5b13}<23.9 && {8c7cbaff-eab6-439f-91a3-e750477c5b13}>1.7, !- Program Line 4 - SET {498e3d70-2aac-409d-a4a5-f6e5c507531e} = 29.4, !- Program Line 5 - SET {7e0fc92a-21c0-45ee-aa8d-11f18b54cc6c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8c7cbaff-eab6-439f-91a3-e750477c5b13}<23.9 && {8c7cbaff-eab6-439f-91a3-e750477c5b13}>1.7, !- Program Line 7 - SET {498e3d70-2aac-409d-a4a5-f6e5c507531e} = 29.4, !- Program Line 8 - SET {7e0fc92a-21c0-45ee-aa8d-11f18b54cc6c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8c7cbaff-eab6-439f-91a3-e750477c5b13}<23.9 && {8c7cbaff-eab6-439f-91a3-e750477c5b13}>1.7, !- Program Line 10 - SET {498e3d70-2aac-409d-a4a5-f6e5c507531e} = 29.4, !- Program Line 11 - SET {7e0fc92a-21c0-45ee-aa8d-11f18b54cc6c} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0ac66df2-f592-4bc3-8857-57441d27c130}<23.9 && {0ac66df2-f592-4bc3-8857-57441d27c130}>1.7, !- Program Line 1 + SET {ec4932dc-ddc3-4e89-a516-db6e8ea24084} = 29.4, !- Program Line 2 + SET {b6be08d2-860b-451e-a6cf-dea7a539e199} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0ac66df2-f592-4bc3-8857-57441d27c130}<23.9 && {0ac66df2-f592-4bc3-8857-57441d27c130}>1.7, !- Program Line 4 + SET {ec4932dc-ddc3-4e89-a516-db6e8ea24084} = 29.4, !- Program Line 5 + SET {b6be08d2-860b-451e-a6cf-dea7a539e199} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0ac66df2-f592-4bc3-8857-57441d27c130}<23.9 && {0ac66df2-f592-4bc3-8857-57441d27c130}>1.7, !- Program Line 7 + SET {ec4932dc-ddc3-4e89-a516-db6e8ea24084} = 29.4, !- Program Line 8 + SET {b6be08d2-860b-451e-a6cf-dea7a539e199} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0ac66df2-f592-4bc3-8857-57441d27c130}<23.9 && {0ac66df2-f592-4bc3-8857-57441d27c130}>1.7, !- Program Line 10 + SET {ec4932dc-ddc3-4e89-a516-db6e8ea24084} = 29.4, !- Program Line 11 + SET {b6be08d2-860b-451e-a6cf-dea7a539e199} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {498e3d70-2aac-409d-a4a5-f6e5c507531e} = NULL, !- Program Line 14 - SET {7e0fc92a-21c0-45ee-aa8d-11f18b54cc6c} = NULL, !- Program Line 15 + SET {ec4932dc-ddc3-4e89-a516-db6e8ea24084} = NULL, !- Program Line 14 + SET {b6be08d2-860b-451e-a6cf-dea7a539e199} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000004}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000005}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000006}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000007}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000008}; !- Program Name 1 @@ -17160,841 +17160,841 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000246}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000225}, !- Inlet Port {00000000-0000-0000-0018-000000000227}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000247}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000228}, !- Inlet Port {00000000-0000-0000-0018-000000000226}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000248}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000233}, !- Inlet Port {00000000-0000-0000-0018-000000000234}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000249}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000229}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000250}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000230}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000251}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000223}, !- Inlet Port {00000000-0000-0000-0018-000000000232}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000252}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000231}, !- Inlet Port {00000000-0000-0000-0018-000000000224}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000253}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000423}, !- Inlet Port {00000000-0000-0000-0018-000000000425}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000254}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000426}, !- Inlet Port {00000000-0000-0000-0018-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000255}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000431}, !- Inlet Port {00000000-0000-0000-0018-000000000432}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000256}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000427}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000257}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000428}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000258}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000421}, !- Inlet Port {00000000-0000-0000-0018-000000000430}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000259}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000429}, !- Inlet Port {00000000-0000-0000-0018-000000000422}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000260}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000445}, !- Inlet Port {00000000-0000-0000-0018-000000000447}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000261}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000448}, !- Inlet Port {00000000-0000-0000-0018-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000262}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000453}, !- Inlet Port {00000000-0000-0000-0018-000000000454}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000263}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000264}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000450}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000265}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000443}, !- Inlet Port {00000000-0000-0000-0018-000000000452}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000266}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000451}, !- Inlet Port {00000000-0000-0000-0018-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000267}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000467}, !- Inlet Port {00000000-0000-0000-0018-000000000469}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000268}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000470}, !- Inlet Port {00000000-0000-0000-0018-000000000468}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000269}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000475}, !- Inlet Port {00000000-0000-0000-0018-000000000476}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000270}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000471}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000271}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000472}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000272}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000465}, !- Inlet Port {00000000-0000-0000-0018-000000000474}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000273}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000473}, !- Inlet Port {00000000-0000-0000-0018-000000000466}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000274}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000489}, !- Inlet Port {00000000-0000-0000-0018-000000000491}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000275}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000492}, !- Inlet Port {00000000-0000-0000-0018-000000000490}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000276}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000497}, !- Inlet Port {00000000-0000-0000-0018-000000000498}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000277}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000493}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000278}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000494}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000279}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000487}, !- Inlet Port {00000000-0000-0000-0018-000000000496}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000280}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000495}, !- Inlet Port {00000000-0000-0000-0018-000000000488}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000281}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000511}, !- Inlet Port {00000000-0000-0000-0018-000000000513}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000282}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000514}, !- Inlet Port {00000000-0000-0000-0018-000000000512}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000283}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000519}, !- Inlet Port {00000000-0000-0000-0018-000000000520}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000284}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000515}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000285}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000516}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000286}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000509}, !- Inlet Port {00000000-0000-0000-0018-000000000518}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000287}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000517}, !- Inlet Port {00000000-0000-0000-0018-000000000510}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000288}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000533}, !- Inlet Port {00000000-0000-0000-0018-000000000535}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000289}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000536}, !- Inlet Port {00000000-0000-0000-0018-000000000534}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000290}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000541}, !- Inlet Port {00000000-0000-0000-0018-000000000542}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000291}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000537}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000292}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000538}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000293}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000531}, !- Inlet Port {00000000-0000-0000-0018-000000000540}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000294}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000539}, !- Inlet Port {00000000-0000-0000-0018-000000000532}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000295}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000555}, !- Inlet Port {00000000-0000-0000-0018-000000000557}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000296}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000558}, !- Inlet Port {00000000-0000-0000-0018-000000000556}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000297}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000563}, !- Inlet Port {00000000-0000-0000-0018-000000000564}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000298}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000559}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000299}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000560}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000300}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000553}, !- Inlet Port {00000000-0000-0000-0018-000000000562}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000301}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000561}, !- Inlet Port {00000000-0000-0000-0018-000000000554}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000302}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000577}, !- Inlet Port {00000000-0000-0000-0018-000000000579}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000303}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000580}, !- Inlet Port {00000000-0000-0000-0018-000000000578}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000304}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000585}, !- Inlet Port {00000000-0000-0000-0018-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000305}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000581}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000306}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000582}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000307}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000575}, !- Inlet Port {00000000-0000-0000-0018-000000000584}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000308}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000583}, !- Inlet Port {00000000-0000-0000-0018-000000000576}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000309}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000247}, !- Inlet Port {00000000-0000-0000-0018-000000000249}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000310}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000250}, !- Inlet Port {00000000-0000-0000-0018-000000000248}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000311}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000255}, !- Inlet Port {00000000-0000-0000-0018-000000000256}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000312}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000251}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000313}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000252}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000314}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000245}, !- Inlet Port {00000000-0000-0000-0018-000000000254}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000315}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000253}, !- Inlet Port {00000000-0000-0000-0018-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000316}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000269}, !- Inlet Port {00000000-0000-0000-0018-000000000271}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000317}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000272}, !- Inlet Port {00000000-0000-0000-0018-000000000270}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000318}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000277}, !- Inlet Port {00000000-0000-0000-0018-000000000278}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000319}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000273}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000320}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000274}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000321}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000267}, !- Inlet Port {00000000-0000-0000-0018-000000000276}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000322}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000275}, !- Inlet Port {00000000-0000-0000-0018-000000000268}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000323}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000291}, !- Inlet Port {00000000-0000-0000-0018-000000000293}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000324}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000294}, !- Inlet Port {00000000-0000-0000-0018-000000000292}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000325}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000299}, !- Inlet Port {00000000-0000-0000-0018-000000000300}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000326}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000295}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000327}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000296}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000328}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000289}, !- Inlet Port {00000000-0000-0000-0018-000000000298}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000329}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000297}, !- Inlet Port {00000000-0000-0000-0018-000000000290}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000330}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000313}, !- Inlet Port {00000000-0000-0000-0018-000000000315}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000331}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000316}, !- Inlet Port {00000000-0000-0000-0018-000000000314}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000332}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000321}, !- Inlet Port {00000000-0000-0000-0018-000000000322}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000333}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000317}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000334}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000318}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000335}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000311}, !- Inlet Port {00000000-0000-0000-0018-000000000320}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000336}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000319}, !- Inlet Port {00000000-0000-0000-0018-000000000312}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000337}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000335}, !- Inlet Port {00000000-0000-0000-0018-000000000337}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000338}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000338}, !- Inlet Port {00000000-0000-0000-0018-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000339}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000343}, !- Inlet Port {00000000-0000-0000-0018-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000340}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000339}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000341}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000340}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000342}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000333}, !- Inlet Port {00000000-0000-0000-0018-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000343}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000341}, !- Inlet Port {00000000-0000-0000-0018-000000000334}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000344}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000357}, !- Inlet Port {00000000-0000-0000-0018-000000000359}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000345}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000360}, !- Inlet Port {00000000-0000-0000-0018-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000346}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000365}, !- Inlet Port {00000000-0000-0000-0018-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000347}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000361}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000348}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000362}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000349}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000355}, !- Inlet Port {00000000-0000-0000-0018-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000350}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000363}, !- Inlet Port {00000000-0000-0000-0018-000000000356}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000351}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000379}, !- Inlet Port {00000000-0000-0000-0018-000000000381}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000352}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000382}, !- Inlet Port {00000000-0000-0000-0018-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000353}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000387}, !- Inlet Port {00000000-0000-0000-0018-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000354}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000383}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000355}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000384}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000356}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000377}, !- Inlet Port {00000000-0000-0000-0018-000000000386}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000357}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000385}, !- Inlet Port {00000000-0000-0000-0018-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000358}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000401}, !- Inlet Port {00000000-0000-0000-0018-000000000403}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000359}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000404}, !- Inlet Port {00000000-0000-0000-0018-000000000402}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000360}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000409}, !- Inlet Port {00000000-0000-0000-0018-000000000410}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000361}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000405}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000362}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000406}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000363}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000399}, !- Inlet Port {00000000-0000-0000-0018-000000000408}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000364}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000407}, !- Inlet Port {00000000-0000-0000-0018-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000365}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000203}, !- Inlet Port {00000000-0000-0000-0018-000000000205}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000366}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000206}, !- Inlet Port {00000000-0000-0000-0018-000000000204}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000367}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000211}, !- Inlet Port {00000000-0000-0000-0018-000000000212}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000368}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000207}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000369}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000208}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000370}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000201}, !- Inlet Port {00000000-0000-0000-0018-000000000210}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000371}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000209}, !- Inlet Port {00000000-0000-0000-0018-000000000202}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000372}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000131}, !- Inlet Port {00000000-0000-0000-0018-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000373}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000134}, !- Inlet Port {00000000-0000-0000-0018-000000000132}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000374}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000139}, !- Inlet Port {00000000-0000-0000-0018-000000000140}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000375}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000376}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000136}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000377}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000129}, !- Inlet Port {00000000-0000-0000-0018-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000378}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000137}, !- Inlet Port {00000000-0000-0000-0018-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000379}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000100}, !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000380}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000381}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000108}, !- Inlet Port {00000000-0000-0000-0018-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000382}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000383}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000105}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000384}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000385}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000106}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port @@ -22043,7 +22043,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000155}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22064,7 +22064,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000156}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22073,7 +22073,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000157}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22082,7 +22082,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000158}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -22097,7 +22097,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000159}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22106,7 +22106,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000160}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22115,7 +22115,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000161}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -22130,7 +22130,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000162}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22139,7 +22139,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22148,7 +22148,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22163,7 +22163,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22172,7 +22172,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22181,7 +22181,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -22196,7 +22196,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22205,7 +22205,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22214,7 +22214,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22235,7 +22235,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22244,7 +22244,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22253,7 +22253,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22274,7 +22274,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22283,7 +22283,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22292,7 +22292,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22313,7 +22313,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22322,7 +22322,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22331,7 +22331,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22346,7 +22346,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22355,7 +22355,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22364,7 +22364,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -22379,7 +22379,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22388,7 +22388,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22397,7 +22397,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22412,7 +22412,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22421,7 +22421,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22430,7 +22430,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22451,7 +22451,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22460,7 +22460,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22469,7 +22469,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22490,7 +22490,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22499,7 +22499,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22508,7 +22508,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22523,7 +22523,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22532,7 +22532,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22541,7 +22541,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22562,7 +22562,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22571,7 +22571,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22580,7 +22580,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22595,7 +22595,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22604,7 +22604,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22613,7 +22613,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -22628,7 +22628,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22637,7 +22637,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22646,7 +22646,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22667,7 +22667,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22676,7 +22676,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22685,7 +22685,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000209}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22706,7 +22706,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000210}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22715,7 +22715,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000211}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22724,7 +22724,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000212}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22745,7 +22745,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000213}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22754,7 +22754,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000214}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25134,7 +25134,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000155}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000156}, !- Summer Design Day Schedule Name @@ -25142,7 +25142,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000158}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000159}, !- Summer Design Day Schedule Name @@ -25150,7 +25150,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000161}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000162}, !- Summer Design Day Schedule Name @@ -25158,7 +25158,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000164}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000165}, !- Summer Design Day Schedule Name @@ -25166,7 +25166,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000168}, !- Summer Design Day Schedule Name @@ -25174,7 +25174,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000171}, !- Summer Design Day Schedule Name @@ -25182,7 +25182,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000174}, !- Summer Design Day Schedule Name @@ -25190,7 +25190,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000177}, !- Summer Design Day Schedule Name @@ -25198,7 +25198,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000179}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000180}, !- Summer Design Day Schedule Name @@ -25206,7 +25206,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000182}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000183}, !- Summer Design Day Schedule Name @@ -25214,7 +25214,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000186}, !- Summer Design Day Schedule Name @@ -25222,7 +25222,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000189}, !- Summer Design Day Schedule Name @@ -25230,7 +25230,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000192}, !- Summer Design Day Schedule Name @@ -25238,7 +25238,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000195}, !- Summer Design Day Schedule Name @@ -25246,7 +25246,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000198}, !- Summer Design Day Schedule Name @@ -25254,7 +25254,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000201}, !- Summer Design Day Schedule Name @@ -25262,7 +25262,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000204}, !- Summer Design Day Schedule Name @@ -25270,7 +25270,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000206}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000207}, !- Summer Design Day Schedule Name @@ -25278,7 +25278,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000209}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000210}, !- Summer Design Day Schedule Name @@ -25286,7 +25286,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000212}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000213}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-Electricity-CAN_AB_Calgary.osm index f742b19692..46833300b8 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-Electricity-CAN_AB_Calgary.osm @@ -11131,161 +11131,161 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4bcd6f56-72a7-4984-ad70-0031732f28d3}<23.9 && {4bcd6f56-72a7-4984-ad70-0031732f28d3}>1.7, !- Program Line 1 - SET {0f984350-dca7-4412-9b68-a1f38292410d} = 29.4, !- Program Line 2 - SET {b76cc5a1-084d-41eb-aac4-0924cf1e00ff} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4bcd6f56-72a7-4984-ad70-0031732f28d3}<23.9 && {4bcd6f56-72a7-4984-ad70-0031732f28d3}>1.7, !- Program Line 4 - SET {0f984350-dca7-4412-9b68-a1f38292410d} = 29.4, !- Program Line 5 - SET {b76cc5a1-084d-41eb-aac4-0924cf1e00ff} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4bcd6f56-72a7-4984-ad70-0031732f28d3}<23.9 && {4bcd6f56-72a7-4984-ad70-0031732f28d3}>1.7, !- Program Line 7 - SET {0f984350-dca7-4412-9b68-a1f38292410d} = 29.4, !- Program Line 8 - SET {b76cc5a1-084d-41eb-aac4-0924cf1e00ff} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4bcd6f56-72a7-4984-ad70-0031732f28d3}<23.9 && {4bcd6f56-72a7-4984-ad70-0031732f28d3}>1.7, !- Program Line 10 - SET {0f984350-dca7-4412-9b68-a1f38292410d} = 29.4, !- Program Line 11 - SET {b76cc5a1-084d-41eb-aac4-0924cf1e00ff} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bdacf6e5-4627-49a6-84f7-d7e0b2bf46cd}<23.9 && {bdacf6e5-4627-49a6-84f7-d7e0b2bf46cd}>1.7, !- Program Line 1 + SET {6c1dd375-97fd-440c-ad9a-72e9ac1425de} = 29.4, !- Program Line 2 + SET {f3d3e8de-ce2f-4bb8-aacd-464d9618b71d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bdacf6e5-4627-49a6-84f7-d7e0b2bf46cd}<23.9 && {bdacf6e5-4627-49a6-84f7-d7e0b2bf46cd}>1.7, !- Program Line 4 + SET {6c1dd375-97fd-440c-ad9a-72e9ac1425de} = 29.4, !- Program Line 5 + SET {f3d3e8de-ce2f-4bb8-aacd-464d9618b71d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bdacf6e5-4627-49a6-84f7-d7e0b2bf46cd}<23.9 && {bdacf6e5-4627-49a6-84f7-d7e0b2bf46cd}>1.7, !- Program Line 7 + SET {6c1dd375-97fd-440c-ad9a-72e9ac1425de} = 29.4, !- Program Line 8 + SET {f3d3e8de-ce2f-4bb8-aacd-464d9618b71d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bdacf6e5-4627-49a6-84f7-d7e0b2bf46cd}<23.9 && {bdacf6e5-4627-49a6-84f7-d7e0b2bf46cd}>1.7, !- Program Line 10 + SET {6c1dd375-97fd-440c-ad9a-72e9ac1425de} = 29.4, !- Program Line 11 + SET {f3d3e8de-ce2f-4bb8-aacd-464d9618b71d} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0f984350-dca7-4412-9b68-a1f38292410d} = NULL, !- Program Line 14 - SET {b76cc5a1-084d-41eb-aac4-0924cf1e00ff} = NULL, !- Program Line 15 + SET {6c1dd375-97fd-440c-ad9a-72e9ac1425de} = NULL, !- Program Line 14 + SET {f3d3e8de-ce2f-4bb8-aacd-464d9618b71d} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6a0f6bbd-ee59-4a12-9a7c-8d5c667f77a8}<23.9 && {6a0f6bbd-ee59-4a12-9a7c-8d5c667f77a8}>1.7, !- Program Line 1 - SET {dd4ffefa-26ad-491e-9e3d-395160ac8a51} = 29.4, !- Program Line 2 - SET {6c0ab70f-0bd6-49d8-b0ea-0f0edaf2ff42} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6a0f6bbd-ee59-4a12-9a7c-8d5c667f77a8}<23.9 && {6a0f6bbd-ee59-4a12-9a7c-8d5c667f77a8}>1.7, !- Program Line 4 - SET {dd4ffefa-26ad-491e-9e3d-395160ac8a51} = 29.4, !- Program Line 5 - SET {6c0ab70f-0bd6-49d8-b0ea-0f0edaf2ff42} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6a0f6bbd-ee59-4a12-9a7c-8d5c667f77a8}<23.9 && {6a0f6bbd-ee59-4a12-9a7c-8d5c667f77a8}>1.7, !- Program Line 7 - SET {dd4ffefa-26ad-491e-9e3d-395160ac8a51} = 29.4, !- Program Line 8 - SET {6c0ab70f-0bd6-49d8-b0ea-0f0edaf2ff42} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6a0f6bbd-ee59-4a12-9a7c-8d5c667f77a8}<23.9 && {6a0f6bbd-ee59-4a12-9a7c-8d5c667f77a8}>1.7, !- Program Line 10 - SET {dd4ffefa-26ad-491e-9e3d-395160ac8a51} = 29.4, !- Program Line 11 - SET {6c0ab70f-0bd6-49d8-b0ea-0f0edaf2ff42} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {66806565-8fff-41bf-9f6a-e394efe2283d}<23.9 && {66806565-8fff-41bf-9f6a-e394efe2283d}>1.7, !- Program Line 1 + SET {55679866-df25-4852-965c-cf9c9f2d31c6} = 29.4, !- Program Line 2 + SET {3c1d4294-b6ff-44a5-bce8-cf35df9998c0} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {66806565-8fff-41bf-9f6a-e394efe2283d}<23.9 && {66806565-8fff-41bf-9f6a-e394efe2283d}>1.7, !- Program Line 4 + SET {55679866-df25-4852-965c-cf9c9f2d31c6} = 29.4, !- Program Line 5 + SET {3c1d4294-b6ff-44a5-bce8-cf35df9998c0} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {66806565-8fff-41bf-9f6a-e394efe2283d}<23.9 && {66806565-8fff-41bf-9f6a-e394efe2283d}>1.7, !- Program Line 7 + SET {55679866-df25-4852-965c-cf9c9f2d31c6} = 29.4, !- Program Line 8 + SET {3c1d4294-b6ff-44a5-bce8-cf35df9998c0} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {66806565-8fff-41bf-9f6a-e394efe2283d}<23.9 && {66806565-8fff-41bf-9f6a-e394efe2283d}>1.7, !- Program Line 10 + SET {55679866-df25-4852-965c-cf9c9f2d31c6} = 29.4, !- Program Line 11 + SET {3c1d4294-b6ff-44a5-bce8-cf35df9998c0} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {dd4ffefa-26ad-491e-9e3d-395160ac8a51} = NULL, !- Program Line 14 - SET {6c0ab70f-0bd6-49d8-b0ea-0f0edaf2ff42} = NULL, !- Program Line 15 + SET {55679866-df25-4852-965c-cf9c9f2d31c6} = NULL, !- Program Line 14 + SET {3c1d4294-b6ff-44a5-bce8-cf35df9998c0} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000003}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d8eb4d6d-6f59-4c39-9049-296b32689588}<23.9 && {d8eb4d6d-6f59-4c39-9049-296b32689588}>1.7, !- Program Line 1 - SET {031bb28c-87cc-4180-99c6-1aab5ee34103} = 29.4, !- Program Line 2 - SET {7980045c-e56d-4d32-8bc1-305d39af6a8b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d8eb4d6d-6f59-4c39-9049-296b32689588}<23.9 && {d8eb4d6d-6f59-4c39-9049-296b32689588}>1.7, !- Program Line 4 - SET {031bb28c-87cc-4180-99c6-1aab5ee34103} = 29.4, !- Program Line 5 - SET {7980045c-e56d-4d32-8bc1-305d39af6a8b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d8eb4d6d-6f59-4c39-9049-296b32689588}<23.9 && {d8eb4d6d-6f59-4c39-9049-296b32689588}>1.7, !- Program Line 7 - SET {031bb28c-87cc-4180-99c6-1aab5ee34103} = 29.4, !- Program Line 8 - SET {7980045c-e56d-4d32-8bc1-305d39af6a8b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d8eb4d6d-6f59-4c39-9049-296b32689588}<23.9 && {d8eb4d6d-6f59-4c39-9049-296b32689588}>1.7, !- Program Line 10 - SET {031bb28c-87cc-4180-99c6-1aab5ee34103} = 29.4, !- Program Line 11 - SET {7980045c-e56d-4d32-8bc1-305d39af6a8b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b130d0f7-9a78-4d7c-9197-4e42275e55a5}<23.9 && {b130d0f7-9a78-4d7c-9197-4e42275e55a5}>1.7, !- Program Line 1 + SET {ca07c973-4fa2-4368-9146-0af652a55eba} = 29.4, !- Program Line 2 + SET {e6730079-0182-4dd7-9ce5-7cbeee7afe95} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b130d0f7-9a78-4d7c-9197-4e42275e55a5}<23.9 && {b130d0f7-9a78-4d7c-9197-4e42275e55a5}>1.7, !- Program Line 4 + SET {ca07c973-4fa2-4368-9146-0af652a55eba} = 29.4, !- Program Line 5 + SET {e6730079-0182-4dd7-9ce5-7cbeee7afe95} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b130d0f7-9a78-4d7c-9197-4e42275e55a5}<23.9 && {b130d0f7-9a78-4d7c-9197-4e42275e55a5}>1.7, !- Program Line 7 + SET {ca07c973-4fa2-4368-9146-0af652a55eba} = 29.4, !- Program Line 8 + SET {e6730079-0182-4dd7-9ce5-7cbeee7afe95} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b130d0f7-9a78-4d7c-9197-4e42275e55a5}<23.9 && {b130d0f7-9a78-4d7c-9197-4e42275e55a5}>1.7, !- Program Line 10 + SET {ca07c973-4fa2-4368-9146-0af652a55eba} = 29.4, !- Program Line 11 + SET {e6730079-0182-4dd7-9ce5-7cbeee7afe95} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {031bb28c-87cc-4180-99c6-1aab5ee34103} = NULL, !- Program Line 14 - SET {7980045c-e56d-4d32-8bc1-305d39af6a8b} = NULL, !- Program Line 15 + SET {ca07c973-4fa2-4368-9146-0af652a55eba} = NULL, !- Program Line 14 + SET {e6730079-0182-4dd7-9ce5-7cbeee7afe95} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000004}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1f3b1e29-3901-4502-93cd-960077c7d33b}<23.9 && {1f3b1e29-3901-4502-93cd-960077c7d33b}>1.7, !- Program Line 1 - SET {baa0279d-2bb9-4464-a9f7-ee5cd1482aad} = 29.4, !- Program Line 2 - SET {1a9d951a-c23a-4bec-ba6a-96869d885847} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1f3b1e29-3901-4502-93cd-960077c7d33b}<23.9 && {1f3b1e29-3901-4502-93cd-960077c7d33b}>1.7, !- Program Line 4 - SET {baa0279d-2bb9-4464-a9f7-ee5cd1482aad} = 29.4, !- Program Line 5 - SET {1a9d951a-c23a-4bec-ba6a-96869d885847} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1f3b1e29-3901-4502-93cd-960077c7d33b}<23.9 && {1f3b1e29-3901-4502-93cd-960077c7d33b}>1.7, !- Program Line 7 - SET {baa0279d-2bb9-4464-a9f7-ee5cd1482aad} = 29.4, !- Program Line 8 - SET {1a9d951a-c23a-4bec-ba6a-96869d885847} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1f3b1e29-3901-4502-93cd-960077c7d33b}<23.9 && {1f3b1e29-3901-4502-93cd-960077c7d33b}>1.7, !- Program Line 10 - SET {baa0279d-2bb9-4464-a9f7-ee5cd1482aad} = 29.4, !- Program Line 11 - SET {1a9d951a-c23a-4bec-ba6a-96869d885847} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {dfb83d6f-91fe-4c2a-b909-ca7d350fd7a7}<23.9 && {dfb83d6f-91fe-4c2a-b909-ca7d350fd7a7}>1.7, !- Program Line 1 + SET {96da9ca5-272f-4aa8-9fb8-780677cb7bab} = 29.4, !- Program Line 2 + SET {62129720-1097-478f-9a46-ee261f61c6cc} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {dfb83d6f-91fe-4c2a-b909-ca7d350fd7a7}<23.9 && {dfb83d6f-91fe-4c2a-b909-ca7d350fd7a7}>1.7, !- Program Line 4 + SET {96da9ca5-272f-4aa8-9fb8-780677cb7bab} = 29.4, !- Program Line 5 + SET {62129720-1097-478f-9a46-ee261f61c6cc} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {dfb83d6f-91fe-4c2a-b909-ca7d350fd7a7}<23.9 && {dfb83d6f-91fe-4c2a-b909-ca7d350fd7a7}>1.7, !- Program Line 7 + SET {96da9ca5-272f-4aa8-9fb8-780677cb7bab} = 29.4, !- Program Line 8 + SET {62129720-1097-478f-9a46-ee261f61c6cc} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {dfb83d6f-91fe-4c2a-b909-ca7d350fd7a7}<23.9 && {dfb83d6f-91fe-4c2a-b909-ca7d350fd7a7}>1.7, !- Program Line 10 + SET {96da9ca5-272f-4aa8-9fb8-780677cb7bab} = 29.4, !- Program Line 11 + SET {62129720-1097-478f-9a46-ee261f61c6cc} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {baa0279d-2bb9-4464-a9f7-ee5cd1482aad} = NULL, !- Program Line 14 - SET {1a9d951a-c23a-4bec-ba6a-96869d885847} = NULL, !- Program Line 15 + SET {96da9ca5-272f-4aa8-9fb8-780677cb7bab} = NULL, !- Program Line 14 + SET {62129720-1097-478f-9a46-ee261f61c6cc} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000005}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9f4d99ea-3e54-4a7b-9c38-0fee8b0d6388}<23.9 && {9f4d99ea-3e54-4a7b-9c38-0fee8b0d6388}>1.7, !- Program Line 1 - SET {360de9f0-bbb7-44e5-a813-fd5d69e04910} = 29.4, !- Program Line 2 - SET {ea6f0b73-7130-4917-844e-ce357d5998cd} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9f4d99ea-3e54-4a7b-9c38-0fee8b0d6388}<23.9 && {9f4d99ea-3e54-4a7b-9c38-0fee8b0d6388}>1.7, !- Program Line 4 - SET {360de9f0-bbb7-44e5-a813-fd5d69e04910} = 29.4, !- Program Line 5 - SET {ea6f0b73-7130-4917-844e-ce357d5998cd} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9f4d99ea-3e54-4a7b-9c38-0fee8b0d6388}<23.9 && {9f4d99ea-3e54-4a7b-9c38-0fee8b0d6388}>1.7, !- Program Line 7 - SET {360de9f0-bbb7-44e5-a813-fd5d69e04910} = 29.4, !- Program Line 8 - SET {ea6f0b73-7130-4917-844e-ce357d5998cd} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9f4d99ea-3e54-4a7b-9c38-0fee8b0d6388}<23.9 && {9f4d99ea-3e54-4a7b-9c38-0fee8b0d6388}>1.7, !- Program Line 10 - SET {360de9f0-bbb7-44e5-a813-fd5d69e04910} = 29.4, !- Program Line 11 - SET {ea6f0b73-7130-4917-844e-ce357d5998cd} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3a0fed50-8539-40c0-974b-f86043476d58}<23.9 && {3a0fed50-8539-40c0-974b-f86043476d58}>1.7, !- Program Line 1 + SET {48b77890-24e2-42d2-b29f-c6c9e131f8fc} = 29.4, !- Program Line 2 + SET {ccadce0b-c181-45dc-a395-33955f50a638} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3a0fed50-8539-40c0-974b-f86043476d58}<23.9 && {3a0fed50-8539-40c0-974b-f86043476d58}>1.7, !- Program Line 4 + SET {48b77890-24e2-42d2-b29f-c6c9e131f8fc} = 29.4, !- Program Line 5 + SET {ccadce0b-c181-45dc-a395-33955f50a638} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3a0fed50-8539-40c0-974b-f86043476d58}<23.9 && {3a0fed50-8539-40c0-974b-f86043476d58}>1.7, !- Program Line 7 + SET {48b77890-24e2-42d2-b29f-c6c9e131f8fc} = 29.4, !- Program Line 8 + SET {ccadce0b-c181-45dc-a395-33955f50a638} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3a0fed50-8539-40c0-974b-f86043476d58}<23.9 && {3a0fed50-8539-40c0-974b-f86043476d58}>1.7, !- Program Line 10 + SET {48b77890-24e2-42d2-b29f-c6c9e131f8fc} = 29.4, !- Program Line 11 + SET {ccadce0b-c181-45dc-a395-33955f50a638} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {360de9f0-bbb7-44e5-a813-fd5d69e04910} = NULL, !- Program Line 14 - SET {ea6f0b73-7130-4917-844e-ce357d5998cd} = NULL, !- Program Line 15 + SET {48b77890-24e2-42d2-b29f-c6c9e131f8fc} = NULL, !- Program Line 14 + SET {ccadce0b-c181-45dc-a395-33955f50a638} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000006}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f0982cc2-5a63-4528-9ceb-02a163541ca3}<23.9 && {f0982cc2-5a63-4528-9ceb-02a163541ca3}>1.7, !- Program Line 1 - SET {14eaea91-612f-401f-a122-997d8ac2d8c7} = 29.4, !- Program Line 2 - SET {c3633b92-7c95-4570-b47b-f91f7985c84e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f0982cc2-5a63-4528-9ceb-02a163541ca3}<23.9 && {f0982cc2-5a63-4528-9ceb-02a163541ca3}>1.7, !- Program Line 4 - SET {14eaea91-612f-401f-a122-997d8ac2d8c7} = 29.4, !- Program Line 5 - SET {c3633b92-7c95-4570-b47b-f91f7985c84e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f0982cc2-5a63-4528-9ceb-02a163541ca3}<23.9 && {f0982cc2-5a63-4528-9ceb-02a163541ca3}>1.7, !- Program Line 7 - SET {14eaea91-612f-401f-a122-997d8ac2d8c7} = 29.4, !- Program Line 8 - SET {c3633b92-7c95-4570-b47b-f91f7985c84e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f0982cc2-5a63-4528-9ceb-02a163541ca3}<23.9 && {f0982cc2-5a63-4528-9ceb-02a163541ca3}>1.7, !- Program Line 10 - SET {14eaea91-612f-401f-a122-997d8ac2d8c7} = 29.4, !- Program Line 11 - SET {c3633b92-7c95-4570-b47b-f91f7985c84e} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9a480444-2a43-42de-b228-1a30b41f54a6}<23.9 && {9a480444-2a43-42de-b228-1a30b41f54a6}>1.7, !- Program Line 1 + SET {8544bcae-9f34-4d1c-a1d6-79682780007e} = 29.4, !- Program Line 2 + SET {391c4525-fd38-4a5c-90ff-e0ee7b294170} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9a480444-2a43-42de-b228-1a30b41f54a6}<23.9 && {9a480444-2a43-42de-b228-1a30b41f54a6}>1.7, !- Program Line 4 + SET {8544bcae-9f34-4d1c-a1d6-79682780007e} = 29.4, !- Program Line 5 + SET {391c4525-fd38-4a5c-90ff-e0ee7b294170} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9a480444-2a43-42de-b228-1a30b41f54a6}<23.9 && {9a480444-2a43-42de-b228-1a30b41f54a6}>1.7, !- Program Line 7 + SET {8544bcae-9f34-4d1c-a1d6-79682780007e} = 29.4, !- Program Line 8 + SET {391c4525-fd38-4a5c-90ff-e0ee7b294170} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9a480444-2a43-42de-b228-1a30b41f54a6}<23.9 && {9a480444-2a43-42de-b228-1a30b41f54a6}>1.7, !- Program Line 10 + SET {8544bcae-9f34-4d1c-a1d6-79682780007e} = 29.4, !- Program Line 11 + SET {391c4525-fd38-4a5c-90ff-e0ee7b294170} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {14eaea91-612f-401f-a122-997d8ac2d8c7} = NULL, !- Program Line 14 - SET {c3633b92-7c95-4570-b47b-f91f7985c84e} = NULL, !- Program Line 15 + SET {8544bcae-9f34-4d1c-a1d6-79682780007e} = NULL, !- Program Line 14 + SET {391c4525-fd38-4a5c-90ff-e0ee7b294170} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000007}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c5a9c6e9-1851-48d9-8526-e95c55922301}<23.9 && {c5a9c6e9-1851-48d9-8526-e95c55922301}>1.7, !- Program Line 1 - SET {df09f7de-ff36-4ece-846c-61bdf32a2502} = 29.4, !- Program Line 2 - SET {517a06a2-04f7-403e-9888-53b89f5722a0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c5a9c6e9-1851-48d9-8526-e95c55922301}<23.9 && {c5a9c6e9-1851-48d9-8526-e95c55922301}>1.7, !- Program Line 4 - SET {df09f7de-ff36-4ece-846c-61bdf32a2502} = 29.4, !- Program Line 5 - SET {517a06a2-04f7-403e-9888-53b89f5722a0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c5a9c6e9-1851-48d9-8526-e95c55922301}<23.9 && {c5a9c6e9-1851-48d9-8526-e95c55922301}>1.7, !- Program Line 7 - SET {df09f7de-ff36-4ece-846c-61bdf32a2502} = 29.4, !- Program Line 8 - SET {517a06a2-04f7-403e-9888-53b89f5722a0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c5a9c6e9-1851-48d9-8526-e95c55922301}<23.9 && {c5a9c6e9-1851-48d9-8526-e95c55922301}>1.7, !- Program Line 10 - SET {df09f7de-ff36-4ece-846c-61bdf32a2502} = 29.4, !- Program Line 11 - SET {517a06a2-04f7-403e-9888-53b89f5722a0} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5ab1a486-5e98-448f-9560-115df4a93d7e}<23.9 && {5ab1a486-5e98-448f-9560-115df4a93d7e}>1.7, !- Program Line 1 + SET {10a74500-1598-48b1-bed0-79cd272fe97c} = 29.4, !- Program Line 2 + SET {5f1d02ff-cc98-4c41-a027-df640991545e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5ab1a486-5e98-448f-9560-115df4a93d7e}<23.9 && {5ab1a486-5e98-448f-9560-115df4a93d7e}>1.7, !- Program Line 4 + SET {10a74500-1598-48b1-bed0-79cd272fe97c} = 29.4, !- Program Line 5 + SET {5f1d02ff-cc98-4c41-a027-df640991545e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5ab1a486-5e98-448f-9560-115df4a93d7e}<23.9 && {5ab1a486-5e98-448f-9560-115df4a93d7e}>1.7, !- Program Line 7 + SET {10a74500-1598-48b1-bed0-79cd272fe97c} = 29.4, !- Program Line 8 + SET {5f1d02ff-cc98-4c41-a027-df640991545e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5ab1a486-5e98-448f-9560-115df4a93d7e}<23.9 && {5ab1a486-5e98-448f-9560-115df4a93d7e}>1.7, !- Program Line 10 + SET {10a74500-1598-48b1-bed0-79cd272fe97c} = 29.4, !- Program Line 11 + SET {5f1d02ff-cc98-4c41-a027-df640991545e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {df09f7de-ff36-4ece-846c-61bdf32a2502} = NULL, !- Program Line 14 - SET {517a06a2-04f7-403e-9888-53b89f5722a0} = NULL, !- Program Line 15 + SET {10a74500-1598-48b1-bed0-79cd272fe97c} = NULL, !- Program Line 14 + SET {5f1d02ff-cc98-4c41-a027-df640991545e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000008}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {43a9186f-68af-43ac-a587-dd9208344655}<23.9 && {43a9186f-68af-43ac-a587-dd9208344655}>1.7, !- Program Line 1 - SET {50de7269-d359-4e75-bd86-b0a3d9846063} = 29.4, !- Program Line 2 - SET {d6379d94-344a-44ce-9dbf-2a6026654567} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {43a9186f-68af-43ac-a587-dd9208344655}<23.9 && {43a9186f-68af-43ac-a587-dd9208344655}>1.7, !- Program Line 4 - SET {50de7269-d359-4e75-bd86-b0a3d9846063} = 29.4, !- Program Line 5 - SET {d6379d94-344a-44ce-9dbf-2a6026654567} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {43a9186f-68af-43ac-a587-dd9208344655}<23.9 && {43a9186f-68af-43ac-a587-dd9208344655}>1.7, !- Program Line 7 - SET {50de7269-d359-4e75-bd86-b0a3d9846063} = 29.4, !- Program Line 8 - SET {d6379d94-344a-44ce-9dbf-2a6026654567} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {43a9186f-68af-43ac-a587-dd9208344655}<23.9 && {43a9186f-68af-43ac-a587-dd9208344655}>1.7, !- Program Line 10 - SET {50de7269-d359-4e75-bd86-b0a3d9846063} = 29.4, !- Program Line 11 - SET {d6379d94-344a-44ce-9dbf-2a6026654567} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3cb0a320-2326-4cf4-8096-268ed00b6cec}<23.9 && {3cb0a320-2326-4cf4-8096-268ed00b6cec}>1.7, !- Program Line 1 + SET {56f9d8b1-17ae-469a-8914-e9cbedc92b1c} = 29.4, !- Program Line 2 + SET {ddaada63-f450-48cd-ab5c-adefaab35c71} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3cb0a320-2326-4cf4-8096-268ed00b6cec}<23.9 && {3cb0a320-2326-4cf4-8096-268ed00b6cec}>1.7, !- Program Line 4 + SET {56f9d8b1-17ae-469a-8914-e9cbedc92b1c} = 29.4, !- Program Line 5 + SET {ddaada63-f450-48cd-ab5c-adefaab35c71} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3cb0a320-2326-4cf4-8096-268ed00b6cec}<23.9 && {3cb0a320-2326-4cf4-8096-268ed00b6cec}>1.7, !- Program Line 7 + SET {56f9d8b1-17ae-469a-8914-e9cbedc92b1c} = 29.4, !- Program Line 8 + SET {ddaada63-f450-48cd-ab5c-adefaab35c71} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3cb0a320-2326-4cf4-8096-268ed00b6cec}<23.9 && {3cb0a320-2326-4cf4-8096-268ed00b6cec}>1.7, !- Program Line 10 + SET {56f9d8b1-17ae-469a-8914-e9cbedc92b1c} = 29.4, !- Program Line 11 + SET {ddaada63-f450-48cd-ab5c-adefaab35c71} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {50de7269-d359-4e75-bd86-b0a3d9846063} = NULL, !- Program Line 14 - SET {d6379d94-344a-44ce-9dbf-2a6026654567} = NULL, !- Program Line 15 + SET {56f9d8b1-17ae-469a-8914-e9cbedc92b1c} = NULL, !- Program Line 14 + SET {ddaada63-f450-48cd-ab5c-adefaab35c71} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index afb31e033f..ed679bfebe 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000058}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000059}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000060}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -12869,7 +12869,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12877,7 +12877,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12885,7 +12885,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_ClgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12893,7 +12893,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_HtgSch0, !- Name {00000000-0000-0000-0066-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12901,7 +12901,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12909,7 +12909,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12917,7 +12917,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0066-000000000027}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12925,7 +12925,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000008}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0066-000000000028}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12933,7 +12933,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000009}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_ClgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12941,7 +12941,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000010}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_HtgSch0, !- Name {00000000-0000-0000-0066-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12949,7 +12949,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000011}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12957,7 +12957,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000012}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0066-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12965,7 +12965,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000013}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12973,7 +12973,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000014}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0066-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12981,7 +12981,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000015}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12989,7 +12989,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000016}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0066-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12997,209 +12997,209 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {36fb4486-0127-44eb-b235-450ffe68b086}<23.9 && {36fb4486-0127-44eb-b235-450ffe68b086}>1.7, !- Program Line 1 - SET {b6d036d0-2419-4168-be0c-9eff9f522535} = 29.4, !- Program Line 2 - SET {102fb4fc-0c24-491d-834d-13fa77924d7f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {36fb4486-0127-44eb-b235-450ffe68b086}<23.9 && {36fb4486-0127-44eb-b235-450ffe68b086}>1.7, !- Program Line 4 - SET {b6d036d0-2419-4168-be0c-9eff9f522535} = 29.4, !- Program Line 5 - SET {102fb4fc-0c24-491d-834d-13fa77924d7f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {36fb4486-0127-44eb-b235-450ffe68b086}<23.9 && {36fb4486-0127-44eb-b235-450ffe68b086}>1.7, !- Program Line 7 - SET {b6d036d0-2419-4168-be0c-9eff9f522535} = 29.4, !- Program Line 8 - SET {102fb4fc-0c24-491d-834d-13fa77924d7f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {36fb4486-0127-44eb-b235-450ffe68b086}<23.9 && {36fb4486-0127-44eb-b235-450ffe68b086}>1.7, !- Program Line 10 - SET {b6d036d0-2419-4168-be0c-9eff9f522535} = 29.4, !- Program Line 11 - SET {102fb4fc-0c24-491d-834d-13fa77924d7f} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1dfc31b1-13b2-4351-a969-d10db5427430}<23.9 && {1dfc31b1-13b2-4351-a969-d10db5427430}>1.7, !- Program Line 1 + SET {e7428438-2ecb-4d08-ac1a-e12b5048089c} = 29.4, !- Program Line 2 + SET {6cfb10b5-ce4f-4d6e-8356-1d294b070699} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1dfc31b1-13b2-4351-a969-d10db5427430}<23.9 && {1dfc31b1-13b2-4351-a969-d10db5427430}>1.7, !- Program Line 4 + SET {e7428438-2ecb-4d08-ac1a-e12b5048089c} = 29.4, !- Program Line 5 + SET {6cfb10b5-ce4f-4d6e-8356-1d294b070699} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1dfc31b1-13b2-4351-a969-d10db5427430}<23.9 && {1dfc31b1-13b2-4351-a969-d10db5427430}>1.7, !- Program Line 7 + SET {e7428438-2ecb-4d08-ac1a-e12b5048089c} = 29.4, !- Program Line 8 + SET {6cfb10b5-ce4f-4d6e-8356-1d294b070699} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1dfc31b1-13b2-4351-a969-d10db5427430}<23.9 && {1dfc31b1-13b2-4351-a969-d10db5427430}>1.7, !- Program Line 10 + SET {e7428438-2ecb-4d08-ac1a-e12b5048089c} = 29.4, !- Program Line 11 + SET {6cfb10b5-ce4f-4d6e-8356-1d294b070699} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b6d036d0-2419-4168-be0c-9eff9f522535} = NULL, !- Program Line 14 - SET {102fb4fc-0c24-491d-834d-13fa77924d7f} = NULL, !- Program Line 15 + SET {e7428438-2ecb-4d08-ac1a-e12b5048089c} = NULL, !- Program Line 14 + SET {6cfb10b5-ce4f-4d6e-8356-1d294b070699} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {afec9d69-c3c4-430e-a5f8-962036cd7c70}<23.9 && {afec9d69-c3c4-430e-a5f8-962036cd7c70}>1.7, !- Program Line 1 - SET {9c1b6b96-259d-46bd-89c6-92700eac1909} = 29.4, !- Program Line 2 - SET {472bbffe-da31-4e95-9f0b-cb1350e7f6a2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {afec9d69-c3c4-430e-a5f8-962036cd7c70}<23.9 && {afec9d69-c3c4-430e-a5f8-962036cd7c70}>1.7, !- Program Line 4 - SET {9c1b6b96-259d-46bd-89c6-92700eac1909} = 29.4, !- Program Line 5 - SET {472bbffe-da31-4e95-9f0b-cb1350e7f6a2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {afec9d69-c3c4-430e-a5f8-962036cd7c70}<23.9 && {afec9d69-c3c4-430e-a5f8-962036cd7c70}>1.7, !- Program Line 7 - SET {9c1b6b96-259d-46bd-89c6-92700eac1909} = 29.4, !- Program Line 8 - SET {472bbffe-da31-4e95-9f0b-cb1350e7f6a2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {afec9d69-c3c4-430e-a5f8-962036cd7c70}<23.9 && {afec9d69-c3c4-430e-a5f8-962036cd7c70}>1.7, !- Program Line 10 - SET {9c1b6b96-259d-46bd-89c6-92700eac1909} = 29.4, !- Program Line 11 - SET {472bbffe-da31-4e95-9f0b-cb1350e7f6a2} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {12d31f9f-cc6e-4f87-a709-1ea9d43bf55a}<23.9 && {12d31f9f-cc6e-4f87-a709-1ea9d43bf55a}>1.7, !- Program Line 1 + SET {35a811a6-1e56-4882-a477-99787702c735} = 29.4, !- Program Line 2 + SET {7f83e943-d7be-491a-beb0-9da47bdc45ae} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {12d31f9f-cc6e-4f87-a709-1ea9d43bf55a}<23.9 && {12d31f9f-cc6e-4f87-a709-1ea9d43bf55a}>1.7, !- Program Line 4 + SET {35a811a6-1e56-4882-a477-99787702c735} = 29.4, !- Program Line 5 + SET {7f83e943-d7be-491a-beb0-9da47bdc45ae} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {12d31f9f-cc6e-4f87-a709-1ea9d43bf55a}<23.9 && {12d31f9f-cc6e-4f87-a709-1ea9d43bf55a}>1.7, !- Program Line 7 + SET {35a811a6-1e56-4882-a477-99787702c735} = 29.4, !- Program Line 8 + SET {7f83e943-d7be-491a-beb0-9da47bdc45ae} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {12d31f9f-cc6e-4f87-a709-1ea9d43bf55a}<23.9 && {12d31f9f-cc6e-4f87-a709-1ea9d43bf55a}>1.7, !- Program Line 10 + SET {35a811a6-1e56-4882-a477-99787702c735} = 29.4, !- Program Line 11 + SET {7f83e943-d7be-491a-beb0-9da47bdc45ae} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {9c1b6b96-259d-46bd-89c6-92700eac1909} = NULL, !- Program Line 14 - SET {472bbffe-da31-4e95-9f0b-cb1350e7f6a2} = NULL, !- Program Line 15 + SET {35a811a6-1e56-4882-a477-99787702c735} = NULL, !- Program Line 14 + SET {7f83e943-d7be-491a-beb0-9da47bdc45ae} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {86dfe4b2-87d1-432d-8a8a-1bffc12e420e}<23.9 && {86dfe4b2-87d1-432d-8a8a-1bffc12e420e}>1.7, !- Program Line 1 - SET {419a1fbf-caca-48cd-bce9-50562aa2ec08} = 29.4, !- Program Line 2 - SET {8338eeab-e5c8-465b-ba6d-a35b6f1fb03d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {86dfe4b2-87d1-432d-8a8a-1bffc12e420e}<23.9 && {86dfe4b2-87d1-432d-8a8a-1bffc12e420e}>1.7, !- Program Line 4 - SET {419a1fbf-caca-48cd-bce9-50562aa2ec08} = 29.4, !- Program Line 5 - SET {8338eeab-e5c8-465b-ba6d-a35b6f1fb03d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {86dfe4b2-87d1-432d-8a8a-1bffc12e420e}<23.9 && {86dfe4b2-87d1-432d-8a8a-1bffc12e420e}>1.7, !- Program Line 7 - SET {419a1fbf-caca-48cd-bce9-50562aa2ec08} = 29.4, !- Program Line 8 - SET {8338eeab-e5c8-465b-ba6d-a35b6f1fb03d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {86dfe4b2-87d1-432d-8a8a-1bffc12e420e}<23.9 && {86dfe4b2-87d1-432d-8a8a-1bffc12e420e}>1.7, !- Program Line 10 - SET {419a1fbf-caca-48cd-bce9-50562aa2ec08} = 29.4, !- Program Line 11 - SET {8338eeab-e5c8-465b-ba6d-a35b6f1fb03d} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4057889e-8e37-42d8-a049-aabb31f756bd}<23.9 && {4057889e-8e37-42d8-a049-aabb31f756bd}>1.7, !- Program Line 1 + SET {60bd66f4-0f9b-482e-85e5-e9877283e900} = 29.4, !- Program Line 2 + SET {056770d0-ba60-477f-9207-02c228c2a5c7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4057889e-8e37-42d8-a049-aabb31f756bd}<23.9 && {4057889e-8e37-42d8-a049-aabb31f756bd}>1.7, !- Program Line 4 + SET {60bd66f4-0f9b-482e-85e5-e9877283e900} = 29.4, !- Program Line 5 + SET {056770d0-ba60-477f-9207-02c228c2a5c7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4057889e-8e37-42d8-a049-aabb31f756bd}<23.9 && {4057889e-8e37-42d8-a049-aabb31f756bd}>1.7, !- Program Line 7 + SET {60bd66f4-0f9b-482e-85e5-e9877283e900} = 29.4, !- Program Line 8 + SET {056770d0-ba60-477f-9207-02c228c2a5c7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4057889e-8e37-42d8-a049-aabb31f756bd}<23.9 && {4057889e-8e37-42d8-a049-aabb31f756bd}>1.7, !- Program Line 10 + SET {60bd66f4-0f9b-482e-85e5-e9877283e900} = 29.4, !- Program Line 11 + SET {056770d0-ba60-477f-9207-02c228c2a5c7} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {419a1fbf-caca-48cd-bce9-50562aa2ec08} = NULL, !- Program Line 14 - SET {8338eeab-e5c8-465b-ba6d-a35b6f1fb03d} = NULL, !- Program Line 15 + SET {60bd66f4-0f9b-482e-85e5-e9877283e900} = NULL, !- Program Line 14 + SET {056770d0-ba60-477f-9207-02c228c2a5c7} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e56bdf75-962b-4179-8c4b-ede538429127}<23.9 && {e56bdf75-962b-4179-8c4b-ede538429127}>1.7, !- Program Line 1 - SET {47d3975c-a113-484e-a4b9-6d070099a7c5} = 29.4, !- Program Line 2 - SET {8daa7468-ae4d-4390-92cd-c61eacaa8cae} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e56bdf75-962b-4179-8c4b-ede538429127}<23.9 && {e56bdf75-962b-4179-8c4b-ede538429127}>1.7, !- Program Line 4 - SET {47d3975c-a113-484e-a4b9-6d070099a7c5} = 29.4, !- Program Line 5 - SET {8daa7468-ae4d-4390-92cd-c61eacaa8cae} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e56bdf75-962b-4179-8c4b-ede538429127}<23.9 && {e56bdf75-962b-4179-8c4b-ede538429127}>1.7, !- Program Line 7 - SET {47d3975c-a113-484e-a4b9-6d070099a7c5} = 29.4, !- Program Line 8 - SET {8daa7468-ae4d-4390-92cd-c61eacaa8cae} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e56bdf75-962b-4179-8c4b-ede538429127}<23.9 && {e56bdf75-962b-4179-8c4b-ede538429127}>1.7, !- Program Line 10 - SET {47d3975c-a113-484e-a4b9-6d070099a7c5} = 29.4, !- Program Line 11 - SET {8daa7468-ae4d-4390-92cd-c61eacaa8cae} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f1ddcdaa-8984-4666-82c4-235821669b51}<23.9 && {f1ddcdaa-8984-4666-82c4-235821669b51}>1.7, !- Program Line 1 + SET {8d18ab44-b01b-4441-b9de-222471305252} = 29.4, !- Program Line 2 + SET {3070370f-f8c0-4ad3-b506-b2d7aec77a86} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f1ddcdaa-8984-4666-82c4-235821669b51}<23.9 && {f1ddcdaa-8984-4666-82c4-235821669b51}>1.7, !- Program Line 4 + SET {8d18ab44-b01b-4441-b9de-222471305252} = 29.4, !- Program Line 5 + SET {3070370f-f8c0-4ad3-b506-b2d7aec77a86} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f1ddcdaa-8984-4666-82c4-235821669b51}<23.9 && {f1ddcdaa-8984-4666-82c4-235821669b51}>1.7, !- Program Line 7 + SET {8d18ab44-b01b-4441-b9de-222471305252} = 29.4, !- Program Line 8 + SET {3070370f-f8c0-4ad3-b506-b2d7aec77a86} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f1ddcdaa-8984-4666-82c4-235821669b51}<23.9 && {f1ddcdaa-8984-4666-82c4-235821669b51}>1.7, !- Program Line 10 + SET {8d18ab44-b01b-4441-b9de-222471305252} = 29.4, !- Program Line 11 + SET {3070370f-f8c0-4ad3-b506-b2d7aec77a86} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {47d3975c-a113-484e-a4b9-6d070099a7c5} = NULL, !- Program Line 14 - SET {8daa7468-ae4d-4390-92cd-c61eacaa8cae} = NULL, !- Program Line 15 + SET {8d18ab44-b01b-4441-b9de-222471305252} = NULL, !- Program Line 14 + SET {3070370f-f8c0-4ad3-b506-b2d7aec77a86} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {789cc323-ae58-4bda-a0bf-0fd0f91d5b3c}<23.9 && {789cc323-ae58-4bda-a0bf-0fd0f91d5b3c}>1.7, !- Program Line 1 - SET {12637f18-3a54-43ab-aa62-bcd21c83ec22} = 29.4, !- Program Line 2 - SET {4c3ae161-b953-47c0-bc5a-3dd776355e69} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {789cc323-ae58-4bda-a0bf-0fd0f91d5b3c}<23.9 && {789cc323-ae58-4bda-a0bf-0fd0f91d5b3c}>1.7, !- Program Line 4 - SET {12637f18-3a54-43ab-aa62-bcd21c83ec22} = 29.4, !- Program Line 5 - SET {4c3ae161-b953-47c0-bc5a-3dd776355e69} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {789cc323-ae58-4bda-a0bf-0fd0f91d5b3c}<23.9 && {789cc323-ae58-4bda-a0bf-0fd0f91d5b3c}>1.7, !- Program Line 7 - SET {12637f18-3a54-43ab-aa62-bcd21c83ec22} = 29.4, !- Program Line 8 - SET {4c3ae161-b953-47c0-bc5a-3dd776355e69} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {789cc323-ae58-4bda-a0bf-0fd0f91d5b3c}<23.9 && {789cc323-ae58-4bda-a0bf-0fd0f91d5b3c}>1.7, !- Program Line 10 - SET {12637f18-3a54-43ab-aa62-bcd21c83ec22} = 29.4, !- Program Line 11 - SET {4c3ae161-b953-47c0-bc5a-3dd776355e69} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1f2563df-33d0-4a8b-b1c8-01988adab59c}<23.9 && {1f2563df-33d0-4a8b-b1c8-01988adab59c}>1.7, !- Program Line 1 + SET {f5e76cb1-47c1-497b-896a-ba11b573376c} = 29.4, !- Program Line 2 + SET {48e8e977-f107-489e-8519-57cc788152bd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1f2563df-33d0-4a8b-b1c8-01988adab59c}<23.9 && {1f2563df-33d0-4a8b-b1c8-01988adab59c}>1.7, !- Program Line 4 + SET {f5e76cb1-47c1-497b-896a-ba11b573376c} = 29.4, !- Program Line 5 + SET {48e8e977-f107-489e-8519-57cc788152bd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1f2563df-33d0-4a8b-b1c8-01988adab59c}<23.9 && {1f2563df-33d0-4a8b-b1c8-01988adab59c}>1.7, !- Program Line 7 + SET {f5e76cb1-47c1-497b-896a-ba11b573376c} = 29.4, !- Program Line 8 + SET {48e8e977-f107-489e-8519-57cc788152bd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1f2563df-33d0-4a8b-b1c8-01988adab59c}<23.9 && {1f2563df-33d0-4a8b-b1c8-01988adab59c}>1.7, !- Program Line 10 + SET {f5e76cb1-47c1-497b-896a-ba11b573376c} = 29.4, !- Program Line 11 + SET {48e8e977-f107-489e-8519-57cc788152bd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {12637f18-3a54-43ab-aa62-bcd21c83ec22} = NULL, !- Program Line 14 - SET {4c3ae161-b953-47c0-bc5a-3dd776355e69} = NULL, !- Program Line 15 + SET {f5e76cb1-47c1-497b-896a-ba11b573376c} = NULL, !- Program Line 14 + SET {48e8e977-f107-489e-8519-57cc788152bd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {146f0a3a-f801-4a3e-b38e-2dce1f5af341}<23.9 && {146f0a3a-f801-4a3e-b38e-2dce1f5af341}>1.7, !- Program Line 1 - SET {5fe523a9-f7fe-47cf-b21e-2ae052a523b1} = 29.4, !- Program Line 2 - SET {529eaa75-beac-4878-8a43-8ce6f5f62468} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {146f0a3a-f801-4a3e-b38e-2dce1f5af341}<23.9 && {146f0a3a-f801-4a3e-b38e-2dce1f5af341}>1.7, !- Program Line 4 - SET {5fe523a9-f7fe-47cf-b21e-2ae052a523b1} = 29.4, !- Program Line 5 - SET {529eaa75-beac-4878-8a43-8ce6f5f62468} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {146f0a3a-f801-4a3e-b38e-2dce1f5af341}<23.9 && {146f0a3a-f801-4a3e-b38e-2dce1f5af341}>1.7, !- Program Line 7 - SET {5fe523a9-f7fe-47cf-b21e-2ae052a523b1} = 29.4, !- Program Line 8 - SET {529eaa75-beac-4878-8a43-8ce6f5f62468} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {146f0a3a-f801-4a3e-b38e-2dce1f5af341}<23.9 && {146f0a3a-f801-4a3e-b38e-2dce1f5af341}>1.7, !- Program Line 10 - SET {5fe523a9-f7fe-47cf-b21e-2ae052a523b1} = 29.4, !- Program Line 11 - SET {529eaa75-beac-4878-8a43-8ce6f5f62468} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9b87a631-31dc-44c0-9b3e-952151c6723f}<23.9 && {9b87a631-31dc-44c0-9b3e-952151c6723f}>1.7, !- Program Line 1 + SET {10adbd71-5a14-4371-a6b5-fad69fb8e7fd} = 29.4, !- Program Line 2 + SET {ea7817f4-73b8-4867-b03e-f38c02a18f55} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9b87a631-31dc-44c0-9b3e-952151c6723f}<23.9 && {9b87a631-31dc-44c0-9b3e-952151c6723f}>1.7, !- Program Line 4 + SET {10adbd71-5a14-4371-a6b5-fad69fb8e7fd} = 29.4, !- Program Line 5 + SET {ea7817f4-73b8-4867-b03e-f38c02a18f55} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9b87a631-31dc-44c0-9b3e-952151c6723f}<23.9 && {9b87a631-31dc-44c0-9b3e-952151c6723f}>1.7, !- Program Line 7 + SET {10adbd71-5a14-4371-a6b5-fad69fb8e7fd} = 29.4, !- Program Line 8 + SET {ea7817f4-73b8-4867-b03e-f38c02a18f55} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9b87a631-31dc-44c0-9b3e-952151c6723f}<23.9 && {9b87a631-31dc-44c0-9b3e-952151c6723f}>1.7, !- Program Line 10 + SET {10adbd71-5a14-4371-a6b5-fad69fb8e7fd} = 29.4, !- Program Line 11 + SET {ea7817f4-73b8-4867-b03e-f38c02a18f55} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5fe523a9-f7fe-47cf-b21e-2ae052a523b1} = NULL, !- Program Line 14 - SET {529eaa75-beac-4878-8a43-8ce6f5f62468} = NULL, !- Program Line 15 + SET {10adbd71-5a14-4371-a6b5-fad69fb8e7fd} = NULL, !- Program Line 14 + SET {ea7817f4-73b8-4867-b03e-f38c02a18f55} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7af31c6e-f28d-4e6a-ada6-fb0b9c1d8599}<23.9 && {7af31c6e-f28d-4e6a-ada6-fb0b9c1d8599}>1.7, !- Program Line 1 - SET {834d2282-bfe4-4353-9572-5eebb6944bb6} = 29.4, !- Program Line 2 - SET {fddfb877-ae97-4d88-8024-1a175f798fc7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7af31c6e-f28d-4e6a-ada6-fb0b9c1d8599}<23.9 && {7af31c6e-f28d-4e6a-ada6-fb0b9c1d8599}>1.7, !- Program Line 4 - SET {834d2282-bfe4-4353-9572-5eebb6944bb6} = 29.4, !- Program Line 5 - SET {fddfb877-ae97-4d88-8024-1a175f798fc7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7af31c6e-f28d-4e6a-ada6-fb0b9c1d8599}<23.9 && {7af31c6e-f28d-4e6a-ada6-fb0b9c1d8599}>1.7, !- Program Line 7 - SET {834d2282-bfe4-4353-9572-5eebb6944bb6} = 29.4, !- Program Line 8 - SET {fddfb877-ae97-4d88-8024-1a175f798fc7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7af31c6e-f28d-4e6a-ada6-fb0b9c1d8599}<23.9 && {7af31c6e-f28d-4e6a-ada6-fb0b9c1d8599}>1.7, !- Program Line 10 - SET {834d2282-bfe4-4353-9572-5eebb6944bb6} = 29.4, !- Program Line 11 - SET {fddfb877-ae97-4d88-8024-1a175f798fc7} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {50c84d28-14f7-4033-87b2-4a1c63741b1d}<23.9 && {50c84d28-14f7-4033-87b2-4a1c63741b1d}>1.7, !- Program Line 1 + SET {5401c134-3d1b-44d4-8642-a8e2d73a1b61} = 29.4, !- Program Line 2 + SET {64169463-60cb-4e30-b850-5769eafd49ad} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {50c84d28-14f7-4033-87b2-4a1c63741b1d}<23.9 && {50c84d28-14f7-4033-87b2-4a1c63741b1d}>1.7, !- Program Line 4 + SET {5401c134-3d1b-44d4-8642-a8e2d73a1b61} = 29.4, !- Program Line 5 + SET {64169463-60cb-4e30-b850-5769eafd49ad} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {50c84d28-14f7-4033-87b2-4a1c63741b1d}<23.9 && {50c84d28-14f7-4033-87b2-4a1c63741b1d}>1.7, !- Program Line 7 + SET {5401c134-3d1b-44d4-8642-a8e2d73a1b61} = 29.4, !- Program Line 8 + SET {64169463-60cb-4e30-b850-5769eafd49ad} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {50c84d28-14f7-4033-87b2-4a1c63741b1d}<23.9 && {50c84d28-14f7-4033-87b2-4a1c63741b1d}>1.7, !- Program Line 10 + SET {5401c134-3d1b-44d4-8642-a8e2d73a1b61} = 29.4, !- Program Line 11 + SET {64169463-60cb-4e30-b850-5769eafd49ad} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {834d2282-bfe4-4353-9572-5eebb6944bb6} = NULL, !- Program Line 14 - SET {fddfb877-ae97-4d88-8024-1a175f798fc7} = NULL, !- Program Line 15 + SET {5401c134-3d1b-44d4-8642-a8e2d73a1b61} = NULL, !- Program Line 14 + SET {64169463-60cb-4e30-b850-5769eafd49ad} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b1de3410-bc42-49d4-8bd4-d683c4b5c965}<23.9 && {b1de3410-bc42-49d4-8bd4-d683c4b5c965}>1.7, !- Program Line 1 - SET {ab376dbc-bdcb-48f3-b9b0-c7a94a4ad303} = 29.4, !- Program Line 2 - SET {1efd0bb8-384a-4a26-a67d-7c55c6caf6a0} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b1de3410-bc42-49d4-8bd4-d683c4b5c965}<23.9 && {b1de3410-bc42-49d4-8bd4-d683c4b5c965}>1.7, !- Program Line 4 - SET {ab376dbc-bdcb-48f3-b9b0-c7a94a4ad303} = 29.4, !- Program Line 5 - SET {1efd0bb8-384a-4a26-a67d-7c55c6caf6a0} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b1de3410-bc42-49d4-8bd4-d683c4b5c965}<23.9 && {b1de3410-bc42-49d4-8bd4-d683c4b5c965}>1.7, !- Program Line 7 - SET {ab376dbc-bdcb-48f3-b9b0-c7a94a4ad303} = 29.4, !- Program Line 8 - SET {1efd0bb8-384a-4a26-a67d-7c55c6caf6a0} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b1de3410-bc42-49d4-8bd4-d683c4b5c965}<23.9 && {b1de3410-bc42-49d4-8bd4-d683c4b5c965}>1.7, !- Program Line 10 - SET {ab376dbc-bdcb-48f3-b9b0-c7a94a4ad303} = 29.4, !- Program Line 11 - SET {1efd0bb8-384a-4a26-a67d-7c55c6caf6a0} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {cfcd4d79-2451-4ac1-809f-b3a43173b068}<23.9 && {cfcd4d79-2451-4ac1-809f-b3a43173b068}>1.7, !- Program Line 1 + SET {6a70db8d-a998-4cbf-936b-ee77cf19ac45} = 29.4, !- Program Line 2 + SET {1b8cff87-5a67-46eb-8904-0ba95d1ccd88} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {cfcd4d79-2451-4ac1-809f-b3a43173b068}<23.9 && {cfcd4d79-2451-4ac1-809f-b3a43173b068}>1.7, !- Program Line 4 + SET {6a70db8d-a998-4cbf-936b-ee77cf19ac45} = 29.4, !- Program Line 5 + SET {1b8cff87-5a67-46eb-8904-0ba95d1ccd88} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {cfcd4d79-2451-4ac1-809f-b3a43173b068}<23.9 && {cfcd4d79-2451-4ac1-809f-b3a43173b068}>1.7, !- Program Line 7 + SET {6a70db8d-a998-4cbf-936b-ee77cf19ac45} = 29.4, !- Program Line 8 + SET {1b8cff87-5a67-46eb-8904-0ba95d1ccd88} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {cfcd4d79-2451-4ac1-809f-b3a43173b068}<23.9 && {cfcd4d79-2451-4ac1-809f-b3a43173b068}>1.7, !- Program Line 10 + SET {6a70db8d-a998-4cbf-936b-ee77cf19ac45} = 29.4, !- Program Line 11 + SET {1b8cff87-5a67-46eb-8904-0ba95d1ccd88} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ab376dbc-bdcb-48f3-b9b0-c7a94a4ad303} = NULL, !- Program Line 14 - SET {1efd0bb8-384a-4a26-a67d-7c55c6caf6a0} = NULL, !- Program Line 15 + SET {6a70db8d-a998-4cbf-936b-ee77cf19ac45} = NULL, !- Program Line 14 + SET {1b8cff87-5a67-46eb-8904-0ba95d1ccd88} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000004}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000005}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000006}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000007}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000008}; !- Program Name 1 @@ -13796,7 +13796,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13822,7 +13822,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13848,7 +13848,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13874,7 +13874,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13900,7 +13900,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13926,7 +13926,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13952,7 +13952,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13978,7 +13978,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14004,7 +14004,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14030,7 +14030,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14056,7 +14056,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14082,7 +14082,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14108,7 +14108,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14134,7 +14134,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14160,7 +14160,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14186,7 +14186,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14212,7 +14212,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14238,7 +14238,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14264,7 +14264,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14290,7 +14290,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -16340,1081 +16340,1081 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000182}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000159}, !- Inlet Port {00000000-0000-0000-0016-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000183}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000162}, !- Inlet Port {00000000-0000-0000-0016-000000000160}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000184}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000165}, !- Inlet Port {00000000-0000-0000-0016-000000000166}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000185}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000589}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000186}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000594}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000187}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000157}, !- Inlet Port {00000000-0000-0000-0016-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000188}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000163}, !- Inlet Port {00000000-0000-0000-0016-000000000158}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000189}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000303}, !- Inlet Port {00000000-0000-0000-0016-000000000305}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000190}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000306}, !- Inlet Port {00000000-0000-0000-0016-000000000304}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000191}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000309}, !- Inlet Port {00000000-0000-0000-0016-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000192}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000595}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000193}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000600}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000194}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000301}, !- Inlet Port {00000000-0000-0000-0016-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000195}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000307}, !- Inlet Port {00000000-0000-0000-0016-000000000302}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000196}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000319}, !- Inlet Port {00000000-0000-0000-0016-000000000321}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000197}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000322}, !- Inlet Port {00000000-0000-0000-0016-000000000320}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000198}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000325}, !- Inlet Port {00000000-0000-0000-0016-000000000326}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000199}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000601}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000200}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000606}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000201}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000317}, !- Inlet Port {00000000-0000-0000-0016-000000000324}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000202}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000323}, !- Inlet Port {00000000-0000-0000-0016-000000000318}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000203}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000335}, !- Inlet Port {00000000-0000-0000-0016-000000000337}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000204}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000338}, !- Inlet Port {00000000-0000-0000-0016-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000205}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000341}, !- Inlet Port {00000000-0000-0000-0016-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000206}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000607}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000207}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000612}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000208}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000333}, !- Inlet Port {00000000-0000-0000-0016-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000209}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000339}, !- Inlet Port {00000000-0000-0000-0016-000000000334}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000210}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000351}, !- Inlet Port {00000000-0000-0000-0016-000000000353}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000211}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000354}, !- Inlet Port {00000000-0000-0000-0016-000000000352}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000212}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000357}, !- Inlet Port {00000000-0000-0000-0016-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000213}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000613}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000214}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000618}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000215}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000349}, !- Inlet Port {00000000-0000-0000-0016-000000000356}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000216}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000355}, !- Inlet Port {00000000-0000-0000-0016-000000000350}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000217}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000367}, !- Inlet Port {00000000-0000-0000-0016-000000000369}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000218}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000370}, !- Inlet Port {00000000-0000-0000-0016-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000219}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000373}, !- Inlet Port {00000000-0000-0000-0016-000000000374}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000220}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000619}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000221}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000624}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000222}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000365}, !- Inlet Port {00000000-0000-0000-0016-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000223}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000371}, !- Inlet Port {00000000-0000-0000-0016-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000224}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000383}, !- Inlet Port {00000000-0000-0000-0016-000000000385}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000225}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000386}, !- Inlet Port {00000000-0000-0000-0016-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000226}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000389}, !- Inlet Port {00000000-0000-0000-0016-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000227}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000625}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000228}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000630}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000229}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000381}, !- Inlet Port {00000000-0000-0000-0016-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000230}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000387}, !- Inlet Port {00000000-0000-0000-0016-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000231}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000399}, !- Inlet Port {00000000-0000-0000-0016-000000000401}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000232}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000402}, !- Inlet Port {00000000-0000-0000-0016-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000233}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000405}, !- Inlet Port {00000000-0000-0000-0016-000000000406}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000234}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000631}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000235}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000636}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000236}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000397}, !- Inlet Port {00000000-0000-0000-0016-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000237}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000403}, !- Inlet Port {00000000-0000-0000-0016-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000238}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000415}, !- Inlet Port {00000000-0000-0000-0016-000000000417}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000239}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000418}, !- Inlet Port {00000000-0000-0000-0016-000000000416}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000240}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000421}, !- Inlet Port {00000000-0000-0000-0016-000000000422}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000241}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000637}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000242}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000642}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000243}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000413}, !- Inlet Port {00000000-0000-0000-0016-000000000420}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000244}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000419}, !- Inlet Port {00000000-0000-0000-0016-000000000414}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000245}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000175}, !- Inlet Port {00000000-0000-0000-0016-000000000177}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000246}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000178}, !- Inlet Port {00000000-0000-0000-0016-000000000176}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000247}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000181}, !- Inlet Port {00000000-0000-0000-0016-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000248}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000643}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000249}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000648}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000250}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000173}, !- Inlet Port {00000000-0000-0000-0016-000000000180}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000251}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000179}, !- Inlet Port {00000000-0000-0000-0016-000000000174}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000252}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000191}, !- Inlet Port {00000000-0000-0000-0016-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000253}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000194}, !- Inlet Port {00000000-0000-0000-0016-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000254}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000197}, !- Inlet Port {00000000-0000-0000-0016-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000255}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000649}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000256}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000654}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000257}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000189}, !- Inlet Port {00000000-0000-0000-0016-000000000196}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000258}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000195}, !- Inlet Port {00000000-0000-0000-0016-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000259}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000207}, !- Inlet Port {00000000-0000-0000-0016-000000000209}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000260}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000210}, !- Inlet Port {00000000-0000-0000-0016-000000000208}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000261}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000213}, !- Inlet Port {00000000-0000-0000-0016-000000000214}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000262}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000655}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000263}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000660}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000264}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000205}, !- Inlet Port {00000000-0000-0000-0016-000000000212}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000265}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000211}, !- Inlet Port {00000000-0000-0000-0016-000000000206}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000266}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000223}, !- Inlet Port {00000000-0000-0000-0016-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000267}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000226}, !- Inlet Port {00000000-0000-0000-0016-000000000224}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000268}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000229}, !- Inlet Port {00000000-0000-0000-0016-000000000230}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000269}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000661}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000270}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000666}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000271}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000221}, !- Inlet Port {00000000-0000-0000-0016-000000000228}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000272}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000227}, !- Inlet Port {00000000-0000-0000-0016-000000000222}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000273}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000239}, !- Inlet Port {00000000-0000-0000-0016-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000274}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000242}, !- Inlet Port {00000000-0000-0000-0016-000000000240}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000275}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000245}, !- Inlet Port {00000000-0000-0000-0016-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000276}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000667}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000277}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000672}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000278}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000237}, !- Inlet Port {00000000-0000-0000-0016-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000279}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000243}, !- Inlet Port {00000000-0000-0000-0016-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000280}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000255}, !- Inlet Port {00000000-0000-0000-0016-000000000257}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000281}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000258}, !- Inlet Port {00000000-0000-0000-0016-000000000256}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000282}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000261}, !- Inlet Port {00000000-0000-0000-0016-000000000262}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000283}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000673}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000284}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000678}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000285}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000253}, !- Inlet Port {00000000-0000-0000-0016-000000000260}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000286}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000259}, !- Inlet Port {00000000-0000-0000-0016-000000000254}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000287}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000271}, !- Inlet Port {00000000-0000-0000-0016-000000000273}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000288}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000274}, !- Inlet Port {00000000-0000-0000-0016-000000000272}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000289}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000277}, !- Inlet Port {00000000-0000-0000-0016-000000000278}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000290}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000679}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000291}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000684}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000292}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000269}, !- Inlet Port {00000000-0000-0000-0016-000000000276}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000293}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000275}, !- Inlet Port {00000000-0000-0000-0016-000000000270}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000294}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000287}, !- Inlet Port {00000000-0000-0000-0016-000000000289}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000295}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000290}, !- Inlet Port {00000000-0000-0000-0016-000000000288}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000296}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000293}, !- Inlet Port {00000000-0000-0000-0016-000000000294}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000297}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000685}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000298}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000690}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000299}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000285}, !- Inlet Port {00000000-0000-0000-0016-000000000292}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000300}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000291}, !- Inlet Port {00000000-0000-0000-0016-000000000286}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000301}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000143}, !- Inlet Port {00000000-0000-0000-0016-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000302}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000146}, !- Inlet Port {00000000-0000-0000-0016-000000000144}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000303}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000149}, !- Inlet Port {00000000-0000-0000-0016-000000000150}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000304}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000583}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000305}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000588}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000306}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000141}, !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000307}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port {00000000-0000-0000-0016-000000000142}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000308}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000590}, !- Inlet Port {00000000-0000-0000-0016-000000000591}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000309}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000592}, !- Inlet Port {00000000-0000-0000-0016-000000000593}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000310}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000596}, !- Inlet Port {00000000-0000-0000-0016-000000000597}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000311}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000598}, !- Inlet Port {00000000-0000-0000-0016-000000000599}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000312}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000602}, !- Inlet Port {00000000-0000-0000-0016-000000000603}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000313}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000604}, !- Inlet Port {00000000-0000-0000-0016-000000000605}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000314}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000608}, !- Inlet Port {00000000-0000-0000-0016-000000000609}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000315}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000610}, !- Inlet Port {00000000-0000-0000-0016-000000000611}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000316}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000614}, !- Inlet Port {00000000-0000-0000-0016-000000000615}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000317}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000616}, !- Inlet Port {00000000-0000-0000-0016-000000000617}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000318}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000620}, !- Inlet Port {00000000-0000-0000-0016-000000000621}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000319}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000622}, !- Inlet Port {00000000-0000-0000-0016-000000000623}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000320}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000626}, !- Inlet Port {00000000-0000-0000-0016-000000000627}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000321}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000628}, !- Inlet Port {00000000-0000-0000-0016-000000000629}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000322}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000632}, !- Inlet Port {00000000-0000-0000-0016-000000000633}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000323}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000634}, !- Inlet Port {00000000-0000-0000-0016-000000000635}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000324}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000638}, !- Inlet Port {00000000-0000-0000-0016-000000000639}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000325}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000640}, !- Inlet Port {00000000-0000-0000-0016-000000000641}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000326}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000644}, !- Inlet Port {00000000-0000-0000-0016-000000000645}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000327}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000646}, !- Inlet Port {00000000-0000-0000-0016-000000000647}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000328}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000650}, !- Inlet Port {00000000-0000-0000-0016-000000000651}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000329}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000652}, !- Inlet Port {00000000-0000-0000-0016-000000000653}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000330}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000656}, !- Inlet Port {00000000-0000-0000-0016-000000000657}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000331}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000658}, !- Inlet Port {00000000-0000-0000-0016-000000000659}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000332}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000662}, !- Inlet Port {00000000-0000-0000-0016-000000000663}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000333}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000664}, !- Inlet Port {00000000-0000-0000-0016-000000000665}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000334}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000668}, !- Inlet Port {00000000-0000-0000-0016-000000000669}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000335}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000670}, !- Inlet Port {00000000-0000-0000-0016-000000000671}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000336}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000674}, !- Inlet Port {00000000-0000-0000-0016-000000000675}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000337}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000676}, !- Inlet Port {00000000-0000-0000-0016-000000000677}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000338}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000680}, !- Inlet Port {00000000-0000-0000-0016-000000000681}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000339}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000682}, !- Inlet Port {00000000-0000-0000-0016-000000000683}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000340}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000686}, !- Inlet Port {00000000-0000-0000-0016-000000000687}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000341}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000688}, !- Inlet Port {00000000-0000-0000-0016-000000000689}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000342}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000584}, !- Inlet Port {00000000-0000-0000-0016-000000000585}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000343}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000586}, !- Inlet Port {00000000-0000-0000-0016-000000000587}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000344}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000097}, !- Inlet Port {00000000-0000-0000-0016-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000345}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000098}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000346}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000103}, !- Inlet Port {00000000-0000-0000-0016-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000347}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000697}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000348}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000702}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000349}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000095}, !- Inlet Port {00000000-0000-0000-0016-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000350}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000101}, !- Inlet Port {00000000-0000-0000-0016-000000000096}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000351}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000352}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000353}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port {00000000-0000-0000-0016-000000000082}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000354}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000691}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000355}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000696}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000356}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000357}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000358}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000698}, !- Inlet Port {00000000-0000-0000-0016-000000000699}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000359}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000700}, !- Inlet Port {00000000-0000-0000-0016-000000000701}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000360}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000692}, !- Inlet Port {00000000-0000-0000-0016-000000000693}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000361}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000694}, !- Inlet Port {00000000-0000-0000-0016-000000000695}; !- Outlet Port @@ -21658,7 +21658,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21679,7 +21679,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21688,7 +21688,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21697,7 +21697,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -21712,7 +21712,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21721,7 +21721,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21730,7 +21730,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21745,7 +21745,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21754,7 +21754,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21763,7 +21763,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21778,7 +21778,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21787,7 +21787,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21796,7 +21796,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21811,7 +21811,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21820,7 +21820,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21829,7 +21829,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21850,7 +21850,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21859,7 +21859,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21868,7 +21868,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21889,7 +21889,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21898,7 +21898,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21907,7 +21907,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21928,7 +21928,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21937,7 +21937,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21946,7 +21946,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21961,7 +21961,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21970,7 +21970,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21979,7 +21979,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21994,7 +21994,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22003,7 +22003,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22012,7 +22012,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22027,7 +22027,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22036,7 +22036,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22045,7 +22045,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22066,7 +22066,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22075,7 +22075,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22084,7 +22084,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22105,7 +22105,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22114,7 +22114,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22123,7 +22123,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22138,7 +22138,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22147,7 +22147,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22156,7 +22156,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22177,7 +22177,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22186,7 +22186,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22195,7 +22195,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22210,7 +22210,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22219,7 +22219,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22228,7 +22228,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -22243,7 +22243,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22252,7 +22252,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000217}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22261,7 +22261,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000218}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22282,7 +22282,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000219}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22291,7 +22291,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000220}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22300,7 +22300,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000221}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22321,7 +22321,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000222}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22330,7 +22330,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000223}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22339,7 +22339,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000224}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22360,7 +22360,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000225}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22369,7 +22369,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000226}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24938,7 +24938,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000168}, !- Summer Design Day Schedule Name @@ -24946,7 +24946,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000171}, !- Summer Design Day Schedule Name @@ -24954,7 +24954,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000174}, !- Summer Design Day Schedule Name @@ -24962,7 +24962,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000177}, !- Summer Design Day Schedule Name @@ -24970,7 +24970,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000179}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000180}, !- Summer Design Day Schedule Name @@ -24978,7 +24978,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000182}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000183}, !- Summer Design Day Schedule Name @@ -24986,7 +24986,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000186}, !- Summer Design Day Schedule Name @@ -24994,7 +24994,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000189}, !- Summer Design Day Schedule Name @@ -25002,7 +25002,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000192}, !- Summer Design Day Schedule Name @@ -25010,7 +25010,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000195}, !- Summer Design Day Schedule Name @@ -25018,7 +25018,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000198}, !- Summer Design Day Schedule Name @@ -25026,7 +25026,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000201}, !- Summer Design Day Schedule Name @@ -25034,7 +25034,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000204}, !- Summer Design Day Schedule Name @@ -25042,7 +25042,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000206}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000207}, !- Summer Design Day Schedule Name @@ -25050,7 +25050,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000209}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000210}, !- Summer Design Day Schedule Name @@ -25058,7 +25058,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000212}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000213}, !- Summer Design Day Schedule Name @@ -25066,7 +25066,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000215}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000216}, !- Summer Design Day Schedule Name @@ -25074,7 +25074,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000218}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000219}, !- Summer Design Day Schedule Name @@ -25082,7 +25082,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000221}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000222}, !- Summer Design Day Schedule Name @@ -25090,7 +25090,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000224}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000225}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 1999bcd3ed..12d8bc1d8e 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000058}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000059}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000060}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -12959,7 +12959,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12967,7 +12967,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12975,7 +12975,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__15_ClgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12983,7 +12983,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__15_HtgSch0, !- Name {00000000-0000-0000-0066-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12991,7 +12991,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12999,7 +12999,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13007,7 +13007,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0066-000000000027}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13015,7 +13015,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000008}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0066-000000000028}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13023,7 +13023,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000009}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__5_ClgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13031,7 +13031,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000010}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__5_HtgSch0, !- Name {00000000-0000-0000-0066-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13039,7 +13039,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000011}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13047,7 +13047,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000012}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0066-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13055,7 +13055,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000013}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13063,7 +13063,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000014}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0066-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13071,7 +13071,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000015}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13079,7 +13079,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000016}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0066-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13087,209 +13087,209 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a196fc43-2285-40b0-ada8-23af6a1193ec}<23.9 && {a196fc43-2285-40b0-ada8-23af6a1193ec}>1.7, !- Program Line 1 - SET {7da4f714-8859-4022-99a9-bcbaa9f924e0} = 29.4, !- Program Line 2 - SET {976e95b8-6fbf-4d04-971d-f53849a5010e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a196fc43-2285-40b0-ada8-23af6a1193ec}<23.9 && {a196fc43-2285-40b0-ada8-23af6a1193ec}>1.7, !- Program Line 4 - SET {7da4f714-8859-4022-99a9-bcbaa9f924e0} = 29.4, !- Program Line 5 - SET {976e95b8-6fbf-4d04-971d-f53849a5010e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a196fc43-2285-40b0-ada8-23af6a1193ec}<23.9 && {a196fc43-2285-40b0-ada8-23af6a1193ec}>1.7, !- Program Line 7 - SET {7da4f714-8859-4022-99a9-bcbaa9f924e0} = 29.4, !- Program Line 8 - SET {976e95b8-6fbf-4d04-971d-f53849a5010e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a196fc43-2285-40b0-ada8-23af6a1193ec}<23.9 && {a196fc43-2285-40b0-ada8-23af6a1193ec}>1.7, !- Program Line 10 - SET {7da4f714-8859-4022-99a9-bcbaa9f924e0} = 29.4, !- Program Line 11 - SET {976e95b8-6fbf-4d04-971d-f53849a5010e} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2b36fb98-8147-4423-b453-965fcdef0cfb}<23.9 && {2b36fb98-8147-4423-b453-965fcdef0cfb}>1.7, !- Program Line 1 + SET {9aa06dcc-0d67-4690-89d3-04a061a5cd10} = 29.4, !- Program Line 2 + SET {8e9ca770-3342-4e3e-9fd2-141ad03a1377} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2b36fb98-8147-4423-b453-965fcdef0cfb}<23.9 && {2b36fb98-8147-4423-b453-965fcdef0cfb}>1.7, !- Program Line 4 + SET {9aa06dcc-0d67-4690-89d3-04a061a5cd10} = 29.4, !- Program Line 5 + SET {8e9ca770-3342-4e3e-9fd2-141ad03a1377} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2b36fb98-8147-4423-b453-965fcdef0cfb}<23.9 && {2b36fb98-8147-4423-b453-965fcdef0cfb}>1.7, !- Program Line 7 + SET {9aa06dcc-0d67-4690-89d3-04a061a5cd10} = 29.4, !- Program Line 8 + SET {8e9ca770-3342-4e3e-9fd2-141ad03a1377} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2b36fb98-8147-4423-b453-965fcdef0cfb}<23.9 && {2b36fb98-8147-4423-b453-965fcdef0cfb}>1.7, !- Program Line 10 + SET {9aa06dcc-0d67-4690-89d3-04a061a5cd10} = 29.4, !- Program Line 11 + SET {8e9ca770-3342-4e3e-9fd2-141ad03a1377} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7da4f714-8859-4022-99a9-bcbaa9f924e0} = NULL, !- Program Line 14 - SET {976e95b8-6fbf-4d04-971d-f53849a5010e} = NULL, !- Program Line 15 + SET {9aa06dcc-0d67-4690-89d3-04a061a5cd10} = NULL, !- Program Line 14 + SET {8e9ca770-3342-4e3e-9fd2-141ad03a1377} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b9c0094e-a5a6-4a96-835f-ac75ce393596}<23.9 && {b9c0094e-a5a6-4a96-835f-ac75ce393596}>1.7, !- Program Line 1 - SET {5dc4f50e-5269-40b2-949f-1507947ca522} = 29.4, !- Program Line 2 - SET {e8fc9b10-f851-4607-88e9-ee266b0ec336} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b9c0094e-a5a6-4a96-835f-ac75ce393596}<23.9 && {b9c0094e-a5a6-4a96-835f-ac75ce393596}>1.7, !- Program Line 4 - SET {5dc4f50e-5269-40b2-949f-1507947ca522} = 29.4, !- Program Line 5 - SET {e8fc9b10-f851-4607-88e9-ee266b0ec336} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b9c0094e-a5a6-4a96-835f-ac75ce393596}<23.9 && {b9c0094e-a5a6-4a96-835f-ac75ce393596}>1.7, !- Program Line 7 - SET {5dc4f50e-5269-40b2-949f-1507947ca522} = 29.4, !- Program Line 8 - SET {e8fc9b10-f851-4607-88e9-ee266b0ec336} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b9c0094e-a5a6-4a96-835f-ac75ce393596}<23.9 && {b9c0094e-a5a6-4a96-835f-ac75ce393596}>1.7, !- Program Line 10 - SET {5dc4f50e-5269-40b2-949f-1507947ca522} = 29.4, !- Program Line 11 - SET {e8fc9b10-f851-4607-88e9-ee266b0ec336} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {61bde25a-5dcc-4747-80a3-17e77cec922d}<23.9 && {61bde25a-5dcc-4747-80a3-17e77cec922d}>1.7, !- Program Line 1 + SET {3b052f56-7148-4c7b-abf9-e8f2f6c8d9ef} = 29.4, !- Program Line 2 + SET {cc79474b-4803-4b34-8fac-2b91d29d9c95} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {61bde25a-5dcc-4747-80a3-17e77cec922d}<23.9 && {61bde25a-5dcc-4747-80a3-17e77cec922d}>1.7, !- Program Line 4 + SET {3b052f56-7148-4c7b-abf9-e8f2f6c8d9ef} = 29.4, !- Program Line 5 + SET {cc79474b-4803-4b34-8fac-2b91d29d9c95} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {61bde25a-5dcc-4747-80a3-17e77cec922d}<23.9 && {61bde25a-5dcc-4747-80a3-17e77cec922d}>1.7, !- Program Line 7 + SET {3b052f56-7148-4c7b-abf9-e8f2f6c8d9ef} = 29.4, !- Program Line 8 + SET {cc79474b-4803-4b34-8fac-2b91d29d9c95} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {61bde25a-5dcc-4747-80a3-17e77cec922d}<23.9 && {61bde25a-5dcc-4747-80a3-17e77cec922d}>1.7, !- Program Line 10 + SET {3b052f56-7148-4c7b-abf9-e8f2f6c8d9ef} = 29.4, !- Program Line 11 + SET {cc79474b-4803-4b34-8fac-2b91d29d9c95} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5dc4f50e-5269-40b2-949f-1507947ca522} = NULL, !- Program Line 14 - SET {e8fc9b10-f851-4607-88e9-ee266b0ec336} = NULL, !- Program Line 15 + SET {3b052f56-7148-4c7b-abf9-e8f2f6c8d9ef} = NULL, !- Program Line 14 + SET {cc79474b-4803-4b34-8fac-2b91d29d9c95} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9a1cb9ec-c5fd-421b-be64-06b9a49c4bc3}<23.9 && {9a1cb9ec-c5fd-421b-be64-06b9a49c4bc3}>1.7, !- Program Line 1 - SET {848ee4c7-36e9-4033-852d-6f3d9ff7f326} = 29.4, !- Program Line 2 - SET {784ea301-2938-4b99-bda0-a57efd181a8c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9a1cb9ec-c5fd-421b-be64-06b9a49c4bc3}<23.9 && {9a1cb9ec-c5fd-421b-be64-06b9a49c4bc3}>1.7, !- Program Line 4 - SET {848ee4c7-36e9-4033-852d-6f3d9ff7f326} = 29.4, !- Program Line 5 - SET {784ea301-2938-4b99-bda0-a57efd181a8c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9a1cb9ec-c5fd-421b-be64-06b9a49c4bc3}<23.9 && {9a1cb9ec-c5fd-421b-be64-06b9a49c4bc3}>1.7, !- Program Line 7 - SET {848ee4c7-36e9-4033-852d-6f3d9ff7f326} = 29.4, !- Program Line 8 - SET {784ea301-2938-4b99-bda0-a57efd181a8c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9a1cb9ec-c5fd-421b-be64-06b9a49c4bc3}<23.9 && {9a1cb9ec-c5fd-421b-be64-06b9a49c4bc3}>1.7, !- Program Line 10 - SET {848ee4c7-36e9-4033-852d-6f3d9ff7f326} = 29.4, !- Program Line 11 - SET {784ea301-2938-4b99-bda0-a57efd181a8c} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {90444e24-3339-4754-a694-4f75c11dfff0}<23.9 && {90444e24-3339-4754-a694-4f75c11dfff0}>1.7, !- Program Line 1 + SET {f8abb53f-8fdf-4300-85cd-c250a02dc040} = 29.4, !- Program Line 2 + SET {c2e2b674-8dba-4cc0-b554-298209b0e6f4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {90444e24-3339-4754-a694-4f75c11dfff0}<23.9 && {90444e24-3339-4754-a694-4f75c11dfff0}>1.7, !- Program Line 4 + SET {f8abb53f-8fdf-4300-85cd-c250a02dc040} = 29.4, !- Program Line 5 + SET {c2e2b674-8dba-4cc0-b554-298209b0e6f4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {90444e24-3339-4754-a694-4f75c11dfff0}<23.9 && {90444e24-3339-4754-a694-4f75c11dfff0}>1.7, !- Program Line 7 + SET {f8abb53f-8fdf-4300-85cd-c250a02dc040} = 29.4, !- Program Line 8 + SET {c2e2b674-8dba-4cc0-b554-298209b0e6f4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {90444e24-3339-4754-a694-4f75c11dfff0}<23.9 && {90444e24-3339-4754-a694-4f75c11dfff0}>1.7, !- Program Line 10 + SET {f8abb53f-8fdf-4300-85cd-c250a02dc040} = 29.4, !- Program Line 11 + SET {c2e2b674-8dba-4cc0-b554-298209b0e6f4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {848ee4c7-36e9-4033-852d-6f3d9ff7f326} = NULL, !- Program Line 14 - SET {784ea301-2938-4b99-bda0-a57efd181a8c} = NULL, !- Program Line 15 + SET {f8abb53f-8fdf-4300-85cd-c250a02dc040} = NULL, !- Program Line 14 + SET {c2e2b674-8dba-4cc0-b554-298209b0e6f4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bebd01f1-81ab-42c4-b3e9-95162eb0ce69}<23.9 && {bebd01f1-81ab-42c4-b3e9-95162eb0ce69}>1.7, !- Program Line 1 - SET {1561372e-4461-4f73-b397-27a516e30797} = 29.4, !- Program Line 2 - SET {72180833-63a6-4953-a6f3-fbb1c2bf309b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bebd01f1-81ab-42c4-b3e9-95162eb0ce69}<23.9 && {bebd01f1-81ab-42c4-b3e9-95162eb0ce69}>1.7, !- Program Line 4 - SET {1561372e-4461-4f73-b397-27a516e30797} = 29.4, !- Program Line 5 - SET {72180833-63a6-4953-a6f3-fbb1c2bf309b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bebd01f1-81ab-42c4-b3e9-95162eb0ce69}<23.9 && {bebd01f1-81ab-42c4-b3e9-95162eb0ce69}>1.7, !- Program Line 7 - SET {1561372e-4461-4f73-b397-27a516e30797} = 29.4, !- Program Line 8 - SET {72180833-63a6-4953-a6f3-fbb1c2bf309b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bebd01f1-81ab-42c4-b3e9-95162eb0ce69}<23.9 && {bebd01f1-81ab-42c4-b3e9-95162eb0ce69}>1.7, !- Program Line 10 - SET {1561372e-4461-4f73-b397-27a516e30797} = 29.4, !- Program Line 11 - SET {72180833-63a6-4953-a6f3-fbb1c2bf309b} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {02660722-e7f2-477f-b7af-596edbf3a189}<23.9 && {02660722-e7f2-477f-b7af-596edbf3a189}>1.7, !- Program Line 1 + SET {aaa39dc6-9280-4ff3-b078-e744858d1df1} = 29.4, !- Program Line 2 + SET {bdf7e712-2367-4fca-94b6-7e21a6dd9a46} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {02660722-e7f2-477f-b7af-596edbf3a189}<23.9 && {02660722-e7f2-477f-b7af-596edbf3a189}>1.7, !- Program Line 4 + SET {aaa39dc6-9280-4ff3-b078-e744858d1df1} = 29.4, !- Program Line 5 + SET {bdf7e712-2367-4fca-94b6-7e21a6dd9a46} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {02660722-e7f2-477f-b7af-596edbf3a189}<23.9 && {02660722-e7f2-477f-b7af-596edbf3a189}>1.7, !- Program Line 7 + SET {aaa39dc6-9280-4ff3-b078-e744858d1df1} = 29.4, !- Program Line 8 + SET {bdf7e712-2367-4fca-94b6-7e21a6dd9a46} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {02660722-e7f2-477f-b7af-596edbf3a189}<23.9 && {02660722-e7f2-477f-b7af-596edbf3a189}>1.7, !- Program Line 10 + SET {aaa39dc6-9280-4ff3-b078-e744858d1df1} = 29.4, !- Program Line 11 + SET {bdf7e712-2367-4fca-94b6-7e21a6dd9a46} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1561372e-4461-4f73-b397-27a516e30797} = NULL, !- Program Line 14 - SET {72180833-63a6-4953-a6f3-fbb1c2bf309b} = NULL, !- Program Line 15 + SET {aaa39dc6-9280-4ff3-b078-e744858d1df1} = NULL, !- Program Line 14 + SET {bdf7e712-2367-4fca-94b6-7e21a6dd9a46} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8d41261b-39d1-4442-9f63-dfc8b33185ca}<23.9 && {8d41261b-39d1-4442-9f63-dfc8b33185ca}>1.7, !- Program Line 1 - SET {8da24da9-d15f-4463-be19-f6b612fe8eef} = 29.4, !- Program Line 2 - SET {f8e4f0f9-8281-4acd-a958-6da890a75dce} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8d41261b-39d1-4442-9f63-dfc8b33185ca}<23.9 && {8d41261b-39d1-4442-9f63-dfc8b33185ca}>1.7, !- Program Line 4 - SET {8da24da9-d15f-4463-be19-f6b612fe8eef} = 29.4, !- Program Line 5 - SET {f8e4f0f9-8281-4acd-a958-6da890a75dce} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8d41261b-39d1-4442-9f63-dfc8b33185ca}<23.9 && {8d41261b-39d1-4442-9f63-dfc8b33185ca}>1.7, !- Program Line 7 - SET {8da24da9-d15f-4463-be19-f6b612fe8eef} = 29.4, !- Program Line 8 - SET {f8e4f0f9-8281-4acd-a958-6da890a75dce} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8d41261b-39d1-4442-9f63-dfc8b33185ca}<23.9 && {8d41261b-39d1-4442-9f63-dfc8b33185ca}>1.7, !- Program Line 10 - SET {8da24da9-d15f-4463-be19-f6b612fe8eef} = 29.4, !- Program Line 11 - SET {f8e4f0f9-8281-4acd-a958-6da890a75dce} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e1f0c357-51be-4eb8-93f7-4f50be1db39a}<23.9 && {e1f0c357-51be-4eb8-93f7-4f50be1db39a}>1.7, !- Program Line 1 + SET {45766947-858c-42ee-999a-1e3e065b2d81} = 29.4, !- Program Line 2 + SET {2dd9b1d3-753f-481b-af6e-e7822c72a5ee} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e1f0c357-51be-4eb8-93f7-4f50be1db39a}<23.9 && {e1f0c357-51be-4eb8-93f7-4f50be1db39a}>1.7, !- Program Line 4 + SET {45766947-858c-42ee-999a-1e3e065b2d81} = 29.4, !- Program Line 5 + SET {2dd9b1d3-753f-481b-af6e-e7822c72a5ee} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e1f0c357-51be-4eb8-93f7-4f50be1db39a}<23.9 && {e1f0c357-51be-4eb8-93f7-4f50be1db39a}>1.7, !- Program Line 7 + SET {45766947-858c-42ee-999a-1e3e065b2d81} = 29.4, !- Program Line 8 + SET {2dd9b1d3-753f-481b-af6e-e7822c72a5ee} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e1f0c357-51be-4eb8-93f7-4f50be1db39a}<23.9 && {e1f0c357-51be-4eb8-93f7-4f50be1db39a}>1.7, !- Program Line 10 + SET {45766947-858c-42ee-999a-1e3e065b2d81} = 29.4, !- Program Line 11 + SET {2dd9b1d3-753f-481b-af6e-e7822c72a5ee} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8da24da9-d15f-4463-be19-f6b612fe8eef} = NULL, !- Program Line 14 - SET {f8e4f0f9-8281-4acd-a958-6da890a75dce} = NULL, !- Program Line 15 + SET {45766947-858c-42ee-999a-1e3e065b2d81} = NULL, !- Program Line 14 + SET {2dd9b1d3-753f-481b-af6e-e7822c72a5ee} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8d80889b-0824-4bfd-84f5-141c5ee1da18}<23.9 && {8d80889b-0824-4bfd-84f5-141c5ee1da18}>1.7, !- Program Line 1 - SET {0d6a494f-241b-465f-af93-4b4fccaa624e} = 29.4, !- Program Line 2 - SET {0a48c739-5073-4cdd-95ec-9dd9bdab8319} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8d80889b-0824-4bfd-84f5-141c5ee1da18}<23.9 && {8d80889b-0824-4bfd-84f5-141c5ee1da18}>1.7, !- Program Line 4 - SET {0d6a494f-241b-465f-af93-4b4fccaa624e} = 29.4, !- Program Line 5 - SET {0a48c739-5073-4cdd-95ec-9dd9bdab8319} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8d80889b-0824-4bfd-84f5-141c5ee1da18}<23.9 && {8d80889b-0824-4bfd-84f5-141c5ee1da18}>1.7, !- Program Line 7 - SET {0d6a494f-241b-465f-af93-4b4fccaa624e} = 29.4, !- Program Line 8 - SET {0a48c739-5073-4cdd-95ec-9dd9bdab8319} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8d80889b-0824-4bfd-84f5-141c5ee1da18}<23.9 && {8d80889b-0824-4bfd-84f5-141c5ee1da18}>1.7, !- Program Line 10 - SET {0d6a494f-241b-465f-af93-4b4fccaa624e} = 29.4, !- Program Line 11 - SET {0a48c739-5073-4cdd-95ec-9dd9bdab8319} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3a97cf55-9c57-4fbe-a2ad-8aff0b26c08c}<23.9 && {3a97cf55-9c57-4fbe-a2ad-8aff0b26c08c}>1.7, !- Program Line 1 + SET {33ff77af-d4e6-44ee-adcc-a6d504ccd23c} = 29.4, !- Program Line 2 + SET {12ec497c-ed1c-4851-ae2b-4b56c8240f89} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3a97cf55-9c57-4fbe-a2ad-8aff0b26c08c}<23.9 && {3a97cf55-9c57-4fbe-a2ad-8aff0b26c08c}>1.7, !- Program Line 4 + SET {33ff77af-d4e6-44ee-adcc-a6d504ccd23c} = 29.4, !- Program Line 5 + SET {12ec497c-ed1c-4851-ae2b-4b56c8240f89} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3a97cf55-9c57-4fbe-a2ad-8aff0b26c08c}<23.9 && {3a97cf55-9c57-4fbe-a2ad-8aff0b26c08c}>1.7, !- Program Line 7 + SET {33ff77af-d4e6-44ee-adcc-a6d504ccd23c} = 29.4, !- Program Line 8 + SET {12ec497c-ed1c-4851-ae2b-4b56c8240f89} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3a97cf55-9c57-4fbe-a2ad-8aff0b26c08c}<23.9 && {3a97cf55-9c57-4fbe-a2ad-8aff0b26c08c}>1.7, !- Program Line 10 + SET {33ff77af-d4e6-44ee-adcc-a6d504ccd23c} = 29.4, !- Program Line 11 + SET {12ec497c-ed1c-4851-ae2b-4b56c8240f89} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0d6a494f-241b-465f-af93-4b4fccaa624e} = NULL, !- Program Line 14 - SET {0a48c739-5073-4cdd-95ec-9dd9bdab8319} = NULL, !- Program Line 15 + SET {33ff77af-d4e6-44ee-adcc-a6d504ccd23c} = NULL, !- Program Line 14 + SET {12ec497c-ed1c-4851-ae2b-4b56c8240f89} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {97772504-5e16-4eff-9077-5f2d8202dc20}<23.9 && {97772504-5e16-4eff-9077-5f2d8202dc20}>1.7, !- Program Line 1 - SET {943a43de-ac43-4990-9e40-dd28cb884454} = 29.4, !- Program Line 2 - SET {3ae15ffb-e542-4c41-82b1-2347c4764af7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {97772504-5e16-4eff-9077-5f2d8202dc20}<23.9 && {97772504-5e16-4eff-9077-5f2d8202dc20}>1.7, !- Program Line 4 - SET {943a43de-ac43-4990-9e40-dd28cb884454} = 29.4, !- Program Line 5 - SET {3ae15ffb-e542-4c41-82b1-2347c4764af7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {97772504-5e16-4eff-9077-5f2d8202dc20}<23.9 && {97772504-5e16-4eff-9077-5f2d8202dc20}>1.7, !- Program Line 7 - SET {943a43de-ac43-4990-9e40-dd28cb884454} = 29.4, !- Program Line 8 - SET {3ae15ffb-e542-4c41-82b1-2347c4764af7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {97772504-5e16-4eff-9077-5f2d8202dc20}<23.9 && {97772504-5e16-4eff-9077-5f2d8202dc20}>1.7, !- Program Line 10 - SET {943a43de-ac43-4990-9e40-dd28cb884454} = 29.4, !- Program Line 11 - SET {3ae15ffb-e542-4c41-82b1-2347c4764af7} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e150719f-98c7-456d-9ed7-3b1ab04dba41}<23.9 && {e150719f-98c7-456d-9ed7-3b1ab04dba41}>1.7, !- Program Line 1 + SET {eebcadb8-b6e9-4ebb-aa31-c75acd93324b} = 29.4, !- Program Line 2 + SET {87201217-015b-4613-bbe4-8c7b78045af4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e150719f-98c7-456d-9ed7-3b1ab04dba41}<23.9 && {e150719f-98c7-456d-9ed7-3b1ab04dba41}>1.7, !- Program Line 4 + SET {eebcadb8-b6e9-4ebb-aa31-c75acd93324b} = 29.4, !- Program Line 5 + SET {87201217-015b-4613-bbe4-8c7b78045af4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e150719f-98c7-456d-9ed7-3b1ab04dba41}<23.9 && {e150719f-98c7-456d-9ed7-3b1ab04dba41}>1.7, !- Program Line 7 + SET {eebcadb8-b6e9-4ebb-aa31-c75acd93324b} = 29.4, !- Program Line 8 + SET {87201217-015b-4613-bbe4-8c7b78045af4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e150719f-98c7-456d-9ed7-3b1ab04dba41}<23.9 && {e150719f-98c7-456d-9ed7-3b1ab04dba41}>1.7, !- Program Line 10 + SET {eebcadb8-b6e9-4ebb-aa31-c75acd93324b} = 29.4, !- Program Line 11 + SET {87201217-015b-4613-bbe4-8c7b78045af4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {943a43de-ac43-4990-9e40-dd28cb884454} = NULL, !- Program Line 14 - SET {3ae15ffb-e542-4c41-82b1-2347c4764af7} = NULL, !- Program Line 15 + SET {eebcadb8-b6e9-4ebb-aa31-c75acd93324b} = NULL, !- Program Line 14 + SET {87201217-015b-4613-bbe4-8c7b78045af4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {38f003e4-7c3d-4fbb-bd74-bee713871edb}<23.9 && {38f003e4-7c3d-4fbb-bd74-bee713871edb}>1.7, !- Program Line 1 - SET {f1c7d0fa-7fe5-4b4d-b4bf-bcabcb873283} = 29.4, !- Program Line 2 - SET {87a1d85c-fa3f-4fba-809a-c173d691a967} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {38f003e4-7c3d-4fbb-bd74-bee713871edb}<23.9 && {38f003e4-7c3d-4fbb-bd74-bee713871edb}>1.7, !- Program Line 4 - SET {f1c7d0fa-7fe5-4b4d-b4bf-bcabcb873283} = 29.4, !- Program Line 5 - SET {87a1d85c-fa3f-4fba-809a-c173d691a967} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {38f003e4-7c3d-4fbb-bd74-bee713871edb}<23.9 && {38f003e4-7c3d-4fbb-bd74-bee713871edb}>1.7, !- Program Line 7 - SET {f1c7d0fa-7fe5-4b4d-b4bf-bcabcb873283} = 29.4, !- Program Line 8 - SET {87a1d85c-fa3f-4fba-809a-c173d691a967} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {38f003e4-7c3d-4fbb-bd74-bee713871edb}<23.9 && {38f003e4-7c3d-4fbb-bd74-bee713871edb}>1.7, !- Program Line 10 - SET {f1c7d0fa-7fe5-4b4d-b4bf-bcabcb873283} = 29.4, !- Program Line 11 - SET {87a1d85c-fa3f-4fba-809a-c173d691a967} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {95a8d36f-5563-4b46-8f20-0fc1e2fa63fe}<23.9 && {95a8d36f-5563-4b46-8f20-0fc1e2fa63fe}>1.7, !- Program Line 1 + SET {db5d7868-7ca6-480b-9253-48ee5b185162} = 29.4, !- Program Line 2 + SET {e0dfdb3e-7527-4663-8950-bc316d39ef64} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {95a8d36f-5563-4b46-8f20-0fc1e2fa63fe}<23.9 && {95a8d36f-5563-4b46-8f20-0fc1e2fa63fe}>1.7, !- Program Line 4 + SET {db5d7868-7ca6-480b-9253-48ee5b185162} = 29.4, !- Program Line 5 + SET {e0dfdb3e-7527-4663-8950-bc316d39ef64} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {95a8d36f-5563-4b46-8f20-0fc1e2fa63fe}<23.9 && {95a8d36f-5563-4b46-8f20-0fc1e2fa63fe}>1.7, !- Program Line 7 + SET {db5d7868-7ca6-480b-9253-48ee5b185162} = 29.4, !- Program Line 8 + SET {e0dfdb3e-7527-4663-8950-bc316d39ef64} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {95a8d36f-5563-4b46-8f20-0fc1e2fa63fe}<23.9 && {95a8d36f-5563-4b46-8f20-0fc1e2fa63fe}>1.7, !- Program Line 10 + SET {db5d7868-7ca6-480b-9253-48ee5b185162} = 29.4, !- Program Line 11 + SET {e0dfdb3e-7527-4663-8950-bc316d39ef64} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f1c7d0fa-7fe5-4b4d-b4bf-bcabcb873283} = NULL, !- Program Line 14 - SET {87a1d85c-fa3f-4fba-809a-c173d691a967} = NULL, !- Program Line 15 + SET {db5d7868-7ca6-480b-9253-48ee5b185162} = NULL, !- Program Line 14 + SET {e0dfdb3e-7527-4663-8950-bc316d39ef64} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000004}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000005}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000006}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000007}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000008}; !- Program Name 1 @@ -13886,7 +13886,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13912,7 +13912,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13938,7 +13938,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13964,7 +13964,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13990,7 +13990,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14016,7 +14016,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14042,7 +14042,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14068,7 +14068,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14094,7 +14094,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14120,7 +14120,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14146,7 +14146,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14172,7 +14172,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14198,7 +14198,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14224,7 +14224,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14250,7 +14250,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14276,7 +14276,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14302,7 +14302,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14328,7 +14328,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14354,7 +14354,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14380,7 +14380,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -16430,1081 +16430,1081 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000182}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000159}, !- Inlet Port {00000000-0000-0000-0016-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000183}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000162}, !- Inlet Port {00000000-0000-0000-0016-000000000160}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000184}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000165}, !- Inlet Port {00000000-0000-0000-0016-000000000166}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000185}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000589}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000186}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000594}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000187}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000157}, !- Inlet Port {00000000-0000-0000-0016-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000188}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000163}, !- Inlet Port {00000000-0000-0000-0016-000000000158}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000189}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000303}, !- Inlet Port {00000000-0000-0000-0016-000000000305}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000190}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000306}, !- Inlet Port {00000000-0000-0000-0016-000000000304}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000191}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000309}, !- Inlet Port {00000000-0000-0000-0016-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000192}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000595}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000193}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000600}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000194}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000301}, !- Inlet Port {00000000-0000-0000-0016-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000195}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000307}, !- Inlet Port {00000000-0000-0000-0016-000000000302}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000196}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000319}, !- Inlet Port {00000000-0000-0000-0016-000000000321}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000197}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000322}, !- Inlet Port {00000000-0000-0000-0016-000000000320}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000198}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000325}, !- Inlet Port {00000000-0000-0000-0016-000000000326}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000199}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000601}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000200}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000606}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000201}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000317}, !- Inlet Port {00000000-0000-0000-0016-000000000324}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000202}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000323}, !- Inlet Port {00000000-0000-0000-0016-000000000318}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000203}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000335}, !- Inlet Port {00000000-0000-0000-0016-000000000337}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000204}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000338}, !- Inlet Port {00000000-0000-0000-0016-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000205}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000341}, !- Inlet Port {00000000-0000-0000-0016-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000206}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000607}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000207}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000612}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000208}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000333}, !- Inlet Port {00000000-0000-0000-0016-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000209}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000339}, !- Inlet Port {00000000-0000-0000-0016-000000000334}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000210}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000351}, !- Inlet Port {00000000-0000-0000-0016-000000000353}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000211}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000354}, !- Inlet Port {00000000-0000-0000-0016-000000000352}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000212}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000357}, !- Inlet Port {00000000-0000-0000-0016-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000213}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000613}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000214}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000618}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000215}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000349}, !- Inlet Port {00000000-0000-0000-0016-000000000356}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000216}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000355}, !- Inlet Port {00000000-0000-0000-0016-000000000350}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000217}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000367}, !- Inlet Port {00000000-0000-0000-0016-000000000369}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000218}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000370}, !- Inlet Port {00000000-0000-0000-0016-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000219}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000373}, !- Inlet Port {00000000-0000-0000-0016-000000000374}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000220}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000619}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000221}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000624}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000222}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000365}, !- Inlet Port {00000000-0000-0000-0016-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000223}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000371}, !- Inlet Port {00000000-0000-0000-0016-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000224}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000383}, !- Inlet Port {00000000-0000-0000-0016-000000000385}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000225}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000386}, !- Inlet Port {00000000-0000-0000-0016-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000226}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000389}, !- Inlet Port {00000000-0000-0000-0016-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000227}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000625}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000228}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000630}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000229}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000381}, !- Inlet Port {00000000-0000-0000-0016-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000230}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000387}, !- Inlet Port {00000000-0000-0000-0016-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000231}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000399}, !- Inlet Port {00000000-0000-0000-0016-000000000401}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000232}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000402}, !- Inlet Port {00000000-0000-0000-0016-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000233}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000405}, !- Inlet Port {00000000-0000-0000-0016-000000000406}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000234}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000631}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000235}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000636}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000236}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000397}, !- Inlet Port {00000000-0000-0000-0016-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000237}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000403}, !- Inlet Port {00000000-0000-0000-0016-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000238}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000415}, !- Inlet Port {00000000-0000-0000-0016-000000000417}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000239}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000418}, !- Inlet Port {00000000-0000-0000-0016-000000000416}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000240}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000421}, !- Inlet Port {00000000-0000-0000-0016-000000000422}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000241}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000637}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000242}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000642}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000243}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000413}, !- Inlet Port {00000000-0000-0000-0016-000000000420}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000244}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000419}, !- Inlet Port {00000000-0000-0000-0016-000000000414}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000245}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000175}, !- Inlet Port {00000000-0000-0000-0016-000000000177}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000246}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000178}, !- Inlet Port {00000000-0000-0000-0016-000000000176}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000247}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000181}, !- Inlet Port {00000000-0000-0000-0016-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000248}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000643}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000249}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000648}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000250}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000173}, !- Inlet Port {00000000-0000-0000-0016-000000000180}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000251}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000179}, !- Inlet Port {00000000-0000-0000-0016-000000000174}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000252}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000191}, !- Inlet Port {00000000-0000-0000-0016-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000253}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000194}, !- Inlet Port {00000000-0000-0000-0016-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000254}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000197}, !- Inlet Port {00000000-0000-0000-0016-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000255}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000649}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000256}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000654}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000257}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000189}, !- Inlet Port {00000000-0000-0000-0016-000000000196}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000258}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000195}, !- Inlet Port {00000000-0000-0000-0016-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000259}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000207}, !- Inlet Port {00000000-0000-0000-0016-000000000209}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000260}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000210}, !- Inlet Port {00000000-0000-0000-0016-000000000208}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000261}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000213}, !- Inlet Port {00000000-0000-0000-0016-000000000214}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000262}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000655}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000263}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000660}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000264}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000205}, !- Inlet Port {00000000-0000-0000-0016-000000000212}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000265}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000211}, !- Inlet Port {00000000-0000-0000-0016-000000000206}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000266}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000223}, !- Inlet Port {00000000-0000-0000-0016-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000267}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000226}, !- Inlet Port {00000000-0000-0000-0016-000000000224}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000268}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000229}, !- Inlet Port {00000000-0000-0000-0016-000000000230}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000269}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000661}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000270}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000666}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000271}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000221}, !- Inlet Port {00000000-0000-0000-0016-000000000228}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000272}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000227}, !- Inlet Port {00000000-0000-0000-0016-000000000222}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000273}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000239}, !- Inlet Port {00000000-0000-0000-0016-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000274}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000242}, !- Inlet Port {00000000-0000-0000-0016-000000000240}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000275}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000245}, !- Inlet Port {00000000-0000-0000-0016-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000276}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000667}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000277}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000672}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000278}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000237}, !- Inlet Port {00000000-0000-0000-0016-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000279}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000243}, !- Inlet Port {00000000-0000-0000-0016-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000280}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000255}, !- Inlet Port {00000000-0000-0000-0016-000000000257}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000281}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000258}, !- Inlet Port {00000000-0000-0000-0016-000000000256}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000282}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000261}, !- Inlet Port {00000000-0000-0000-0016-000000000262}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000283}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000673}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000284}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000678}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000285}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000253}, !- Inlet Port {00000000-0000-0000-0016-000000000260}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000286}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000259}, !- Inlet Port {00000000-0000-0000-0016-000000000254}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000287}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000271}, !- Inlet Port {00000000-0000-0000-0016-000000000273}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000288}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000274}, !- Inlet Port {00000000-0000-0000-0016-000000000272}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000289}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000277}, !- Inlet Port {00000000-0000-0000-0016-000000000278}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000290}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000679}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000291}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000684}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000292}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000269}, !- Inlet Port {00000000-0000-0000-0016-000000000276}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000293}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000275}, !- Inlet Port {00000000-0000-0000-0016-000000000270}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000294}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000287}, !- Inlet Port {00000000-0000-0000-0016-000000000289}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000295}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000290}, !- Inlet Port {00000000-0000-0000-0016-000000000288}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000296}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000293}, !- Inlet Port {00000000-0000-0000-0016-000000000294}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000297}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000685}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000298}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000690}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000299}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000285}, !- Inlet Port {00000000-0000-0000-0016-000000000292}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000300}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000291}, !- Inlet Port {00000000-0000-0000-0016-000000000286}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000301}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000143}, !- Inlet Port {00000000-0000-0000-0016-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000302}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000146}, !- Inlet Port {00000000-0000-0000-0016-000000000144}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000303}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000149}, !- Inlet Port {00000000-0000-0000-0016-000000000150}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000304}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000583}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000305}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000588}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000306}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000141}, !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000307}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port {00000000-0000-0000-0016-000000000142}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000308}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000590}, !- Inlet Port {00000000-0000-0000-0016-000000000591}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000309}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000592}, !- Inlet Port {00000000-0000-0000-0016-000000000593}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000310}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000596}, !- Inlet Port {00000000-0000-0000-0016-000000000597}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000311}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000598}, !- Inlet Port {00000000-0000-0000-0016-000000000599}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000312}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000602}, !- Inlet Port {00000000-0000-0000-0016-000000000603}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000313}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000604}, !- Inlet Port {00000000-0000-0000-0016-000000000605}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000314}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000608}, !- Inlet Port {00000000-0000-0000-0016-000000000609}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000315}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000610}, !- Inlet Port {00000000-0000-0000-0016-000000000611}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000316}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000614}, !- Inlet Port {00000000-0000-0000-0016-000000000615}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000317}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000616}, !- Inlet Port {00000000-0000-0000-0016-000000000617}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000318}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000620}, !- Inlet Port {00000000-0000-0000-0016-000000000621}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000319}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000622}, !- Inlet Port {00000000-0000-0000-0016-000000000623}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000320}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000626}, !- Inlet Port {00000000-0000-0000-0016-000000000627}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000321}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000628}, !- Inlet Port {00000000-0000-0000-0016-000000000629}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000322}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000632}, !- Inlet Port {00000000-0000-0000-0016-000000000633}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000323}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000634}, !- Inlet Port {00000000-0000-0000-0016-000000000635}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000324}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000638}, !- Inlet Port {00000000-0000-0000-0016-000000000639}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000325}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000640}, !- Inlet Port {00000000-0000-0000-0016-000000000641}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000326}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000644}, !- Inlet Port {00000000-0000-0000-0016-000000000645}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000327}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000646}, !- Inlet Port {00000000-0000-0000-0016-000000000647}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000328}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000650}, !- Inlet Port {00000000-0000-0000-0016-000000000651}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000329}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000652}, !- Inlet Port {00000000-0000-0000-0016-000000000653}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000330}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000656}, !- Inlet Port {00000000-0000-0000-0016-000000000657}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000331}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000658}, !- Inlet Port {00000000-0000-0000-0016-000000000659}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000332}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000662}, !- Inlet Port {00000000-0000-0000-0016-000000000663}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000333}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000664}, !- Inlet Port {00000000-0000-0000-0016-000000000665}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000334}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000668}, !- Inlet Port {00000000-0000-0000-0016-000000000669}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000335}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000670}, !- Inlet Port {00000000-0000-0000-0016-000000000671}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000336}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000674}, !- Inlet Port {00000000-0000-0000-0016-000000000675}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000337}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000676}, !- Inlet Port {00000000-0000-0000-0016-000000000677}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000338}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000680}, !- Inlet Port {00000000-0000-0000-0016-000000000681}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000339}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000682}, !- Inlet Port {00000000-0000-0000-0016-000000000683}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000340}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000686}, !- Inlet Port {00000000-0000-0000-0016-000000000687}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000341}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000688}, !- Inlet Port {00000000-0000-0000-0016-000000000689}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000342}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000584}, !- Inlet Port {00000000-0000-0000-0016-000000000585}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000343}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000586}, !- Inlet Port {00000000-0000-0000-0016-000000000587}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000344}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000097}, !- Inlet Port {00000000-0000-0000-0016-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000345}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000098}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000346}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000103}, !- Inlet Port {00000000-0000-0000-0016-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000347}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000697}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000348}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000702}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000349}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000095}, !- Inlet Port {00000000-0000-0000-0016-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000350}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000101}, !- Inlet Port {00000000-0000-0000-0016-000000000096}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000351}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000352}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000353}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port {00000000-0000-0000-0016-000000000082}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000354}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000691}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000355}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000696}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000356}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000357}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000358}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000698}, !- Inlet Port {00000000-0000-0000-0016-000000000699}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000359}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000700}, !- Inlet Port {00000000-0000-0000-0016-000000000701}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000360}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000692}, !- Inlet Port {00000000-0000-0000-0016-000000000693}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000361}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000694}, !- Inlet Port {00000000-0000-0000-0016-000000000695}; !- Outlet Port @@ -21748,7 +21748,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21769,7 +21769,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21778,7 +21778,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21787,7 +21787,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -21802,7 +21802,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21811,7 +21811,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21820,7 +21820,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21835,7 +21835,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21844,7 +21844,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21853,7 +21853,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21868,7 +21868,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21877,7 +21877,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21886,7 +21886,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21901,7 +21901,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21910,7 +21910,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21919,7 +21919,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21940,7 +21940,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21949,7 +21949,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21958,7 +21958,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21979,7 +21979,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21988,7 +21988,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21997,7 +21997,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22018,7 +22018,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22027,7 +22027,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22036,7 +22036,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22051,7 +22051,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22060,7 +22060,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22069,7 +22069,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -22084,7 +22084,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22093,7 +22093,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22102,7 +22102,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22117,7 +22117,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22126,7 +22126,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22135,7 +22135,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22156,7 +22156,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22165,7 +22165,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22174,7 +22174,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22195,7 +22195,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22204,7 +22204,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22213,7 +22213,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22228,7 +22228,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22237,7 +22237,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22246,7 +22246,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22267,7 +22267,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22276,7 +22276,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22285,7 +22285,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22300,7 +22300,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22309,7 +22309,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22318,7 +22318,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -22333,7 +22333,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22342,7 +22342,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000217}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22351,7 +22351,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000218}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22372,7 +22372,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000219}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22381,7 +22381,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000220}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22390,7 +22390,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000221}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22411,7 +22411,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000222}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22420,7 +22420,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000223}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22429,7 +22429,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000224}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22450,7 +22450,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000225}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22459,7 +22459,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000226}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25028,7 +25028,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000168}, !- Summer Design Day Schedule Name @@ -25036,7 +25036,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000171}, !- Summer Design Day Schedule Name @@ -25044,7 +25044,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000174}, !- Summer Design Day Schedule Name @@ -25052,7 +25052,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000177}, !- Summer Design Day Schedule Name @@ -25060,7 +25060,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000179}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000180}, !- Summer Design Day Schedule Name @@ -25068,7 +25068,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000182}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000183}, !- Summer Design Day Schedule Name @@ -25076,7 +25076,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000186}, !- Summer Design Day Schedule Name @@ -25084,7 +25084,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000189}, !- Summer Design Day Schedule Name @@ -25092,7 +25092,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000192}, !- Summer Design Day Schedule Name @@ -25100,7 +25100,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000195}, !- Summer Design Day Schedule Name @@ -25108,7 +25108,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000198}, !- Summer Design Day Schedule Name @@ -25116,7 +25116,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000201}, !- Summer Design Day Schedule Name @@ -25124,7 +25124,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000204}, !- Summer Design Day Schedule Name @@ -25132,7 +25132,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000206}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000207}, !- Summer Design Day Schedule Name @@ -25140,7 +25140,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000209}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000210}, !- Summer Design Day Schedule Name @@ -25148,7 +25148,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000212}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000213}, !- Summer Design Day Schedule Name @@ -25156,7 +25156,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000215}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000216}, !- Summer Design Day Schedule Name @@ -25164,7 +25164,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000218}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000219}, !- Summer Design Day Schedule Name @@ -25172,7 +25172,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000221}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000222}, !- Summer Design Day Schedule Name @@ -25180,7 +25180,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000224}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000225}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGas-CAN_AB_Calgary.osm index 825147d568..eafe10e6f1 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGas-CAN_AB_Calgary.osm @@ -12599,161 +12599,161 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d86b9e27-1323-4c54-b064-a3c3d5228531}<23.9 && {d86b9e27-1323-4c54-b064-a3c3d5228531}>1.7, !- Program Line 1 - SET {a19ad9bb-88c1-4f66-b78b-8517be0107ab} = 29.4, !- Program Line 2 - SET {86409189-5cff-4dfd-800c-35b1b7e32202} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d86b9e27-1323-4c54-b064-a3c3d5228531}<23.9 && {d86b9e27-1323-4c54-b064-a3c3d5228531}>1.7, !- Program Line 4 - SET {a19ad9bb-88c1-4f66-b78b-8517be0107ab} = 29.4, !- Program Line 5 - SET {86409189-5cff-4dfd-800c-35b1b7e32202} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d86b9e27-1323-4c54-b064-a3c3d5228531}<23.9 && {d86b9e27-1323-4c54-b064-a3c3d5228531}>1.7, !- Program Line 7 - SET {a19ad9bb-88c1-4f66-b78b-8517be0107ab} = 29.4, !- Program Line 8 - SET {86409189-5cff-4dfd-800c-35b1b7e32202} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d86b9e27-1323-4c54-b064-a3c3d5228531}<23.9 && {d86b9e27-1323-4c54-b064-a3c3d5228531}>1.7, !- Program Line 10 - SET {a19ad9bb-88c1-4f66-b78b-8517be0107ab} = 29.4, !- Program Line 11 - SET {86409189-5cff-4dfd-800c-35b1b7e32202} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d1372d65-877f-40a3-a4e2-1cb3d48b6798}<23.9 && {d1372d65-877f-40a3-a4e2-1cb3d48b6798}>1.7, !- Program Line 1 + SET {bf81e097-306a-4298-aa88-fe2c429e47f4} = 29.4, !- Program Line 2 + SET {040a4f8b-c05b-4701-b838-56432e11e97e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d1372d65-877f-40a3-a4e2-1cb3d48b6798}<23.9 && {d1372d65-877f-40a3-a4e2-1cb3d48b6798}>1.7, !- Program Line 4 + SET {bf81e097-306a-4298-aa88-fe2c429e47f4} = 29.4, !- Program Line 5 + SET {040a4f8b-c05b-4701-b838-56432e11e97e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d1372d65-877f-40a3-a4e2-1cb3d48b6798}<23.9 && {d1372d65-877f-40a3-a4e2-1cb3d48b6798}>1.7, !- Program Line 7 + SET {bf81e097-306a-4298-aa88-fe2c429e47f4} = 29.4, !- Program Line 8 + SET {040a4f8b-c05b-4701-b838-56432e11e97e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d1372d65-877f-40a3-a4e2-1cb3d48b6798}<23.9 && {d1372d65-877f-40a3-a4e2-1cb3d48b6798}>1.7, !- Program Line 10 + SET {bf81e097-306a-4298-aa88-fe2c429e47f4} = 29.4, !- Program Line 11 + SET {040a4f8b-c05b-4701-b838-56432e11e97e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a19ad9bb-88c1-4f66-b78b-8517be0107ab} = NULL, !- Program Line 14 - SET {86409189-5cff-4dfd-800c-35b1b7e32202} = NULL, !- Program Line 15 + SET {bf81e097-306a-4298-aa88-fe2c429e47f4} = NULL, !- Program Line 14 + SET {040a4f8b-c05b-4701-b838-56432e11e97e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e1e97c40-3b2e-4314-b2cc-dc9b413e12fc}<23.9 && {e1e97c40-3b2e-4314-b2cc-dc9b413e12fc}>1.7, !- Program Line 1 - SET {bae69ac4-b140-4764-b726-a02f45b7ab4a} = 29.4, !- Program Line 2 - SET {d53d6b20-5c52-427a-9a53-76a3496222c9} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e1e97c40-3b2e-4314-b2cc-dc9b413e12fc}<23.9 && {e1e97c40-3b2e-4314-b2cc-dc9b413e12fc}>1.7, !- Program Line 4 - SET {bae69ac4-b140-4764-b726-a02f45b7ab4a} = 29.4, !- Program Line 5 - SET {d53d6b20-5c52-427a-9a53-76a3496222c9} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e1e97c40-3b2e-4314-b2cc-dc9b413e12fc}<23.9 && {e1e97c40-3b2e-4314-b2cc-dc9b413e12fc}>1.7, !- Program Line 7 - SET {bae69ac4-b140-4764-b726-a02f45b7ab4a} = 29.4, !- Program Line 8 - SET {d53d6b20-5c52-427a-9a53-76a3496222c9} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e1e97c40-3b2e-4314-b2cc-dc9b413e12fc}<23.9 && {e1e97c40-3b2e-4314-b2cc-dc9b413e12fc}>1.7, !- Program Line 10 - SET {bae69ac4-b140-4764-b726-a02f45b7ab4a} = 29.4, !- Program Line 11 - SET {d53d6b20-5c52-427a-9a53-76a3496222c9} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fdfb2a11-7dca-4d45-80aa-09d5bcfa6092}<23.9 && {fdfb2a11-7dca-4d45-80aa-09d5bcfa6092}>1.7, !- Program Line 1 + SET {2808ffd4-4593-4f65-bdba-56b18f924c9c} = 29.4, !- Program Line 2 + SET {66cc734e-57ae-4e31-a062-9083a55a37f5} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fdfb2a11-7dca-4d45-80aa-09d5bcfa6092}<23.9 && {fdfb2a11-7dca-4d45-80aa-09d5bcfa6092}>1.7, !- Program Line 4 + SET {2808ffd4-4593-4f65-bdba-56b18f924c9c} = 29.4, !- Program Line 5 + SET {66cc734e-57ae-4e31-a062-9083a55a37f5} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fdfb2a11-7dca-4d45-80aa-09d5bcfa6092}<23.9 && {fdfb2a11-7dca-4d45-80aa-09d5bcfa6092}>1.7, !- Program Line 7 + SET {2808ffd4-4593-4f65-bdba-56b18f924c9c} = 29.4, !- Program Line 8 + SET {66cc734e-57ae-4e31-a062-9083a55a37f5} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fdfb2a11-7dca-4d45-80aa-09d5bcfa6092}<23.9 && {fdfb2a11-7dca-4d45-80aa-09d5bcfa6092}>1.7, !- Program Line 10 + SET {2808ffd4-4593-4f65-bdba-56b18f924c9c} = 29.4, !- Program Line 11 + SET {66cc734e-57ae-4e31-a062-9083a55a37f5} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {bae69ac4-b140-4764-b726-a02f45b7ab4a} = NULL, !- Program Line 14 - SET {d53d6b20-5c52-427a-9a53-76a3496222c9} = NULL, !- Program Line 15 + SET {2808ffd4-4593-4f65-bdba-56b18f924c9c} = NULL, !- Program Line 14 + SET {66cc734e-57ae-4e31-a062-9083a55a37f5} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000003}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bf29f82c-350e-48e6-a3f0-926a2ae15985}<23.9 && {bf29f82c-350e-48e6-a3f0-926a2ae15985}>1.7, !- Program Line 1 - SET {a444986a-df51-4797-860c-4c8b1f91e25c} = 29.4, !- Program Line 2 - SET {0d9e8b03-0f1e-474b-b4e7-8c5b4db4691b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bf29f82c-350e-48e6-a3f0-926a2ae15985}<23.9 && {bf29f82c-350e-48e6-a3f0-926a2ae15985}>1.7, !- Program Line 4 - SET {a444986a-df51-4797-860c-4c8b1f91e25c} = 29.4, !- Program Line 5 - SET {0d9e8b03-0f1e-474b-b4e7-8c5b4db4691b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bf29f82c-350e-48e6-a3f0-926a2ae15985}<23.9 && {bf29f82c-350e-48e6-a3f0-926a2ae15985}>1.7, !- Program Line 7 - SET {a444986a-df51-4797-860c-4c8b1f91e25c} = 29.4, !- Program Line 8 - SET {0d9e8b03-0f1e-474b-b4e7-8c5b4db4691b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bf29f82c-350e-48e6-a3f0-926a2ae15985}<23.9 && {bf29f82c-350e-48e6-a3f0-926a2ae15985}>1.7, !- Program Line 10 - SET {a444986a-df51-4797-860c-4c8b1f91e25c} = 29.4, !- Program Line 11 - SET {0d9e8b03-0f1e-474b-b4e7-8c5b4db4691b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1c5d9e67-3798-45a2-bc34-4cbba1117173}<23.9 && {1c5d9e67-3798-45a2-bc34-4cbba1117173}>1.7, !- Program Line 1 + SET {26960019-237b-4dc0-9db4-44c5f38e972f} = 29.4, !- Program Line 2 + SET {724e5a08-3457-416a-a363-89bac3f27b4e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1c5d9e67-3798-45a2-bc34-4cbba1117173}<23.9 && {1c5d9e67-3798-45a2-bc34-4cbba1117173}>1.7, !- Program Line 4 + SET {26960019-237b-4dc0-9db4-44c5f38e972f} = 29.4, !- Program Line 5 + SET {724e5a08-3457-416a-a363-89bac3f27b4e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1c5d9e67-3798-45a2-bc34-4cbba1117173}<23.9 && {1c5d9e67-3798-45a2-bc34-4cbba1117173}>1.7, !- Program Line 7 + SET {26960019-237b-4dc0-9db4-44c5f38e972f} = 29.4, !- Program Line 8 + SET {724e5a08-3457-416a-a363-89bac3f27b4e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1c5d9e67-3798-45a2-bc34-4cbba1117173}<23.9 && {1c5d9e67-3798-45a2-bc34-4cbba1117173}>1.7, !- Program Line 10 + SET {26960019-237b-4dc0-9db4-44c5f38e972f} = 29.4, !- Program Line 11 + SET {724e5a08-3457-416a-a363-89bac3f27b4e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a444986a-df51-4797-860c-4c8b1f91e25c} = NULL, !- Program Line 14 - SET {0d9e8b03-0f1e-474b-b4e7-8c5b4db4691b} = NULL, !- Program Line 15 + SET {26960019-237b-4dc0-9db4-44c5f38e972f} = NULL, !- Program Line 14 + SET {724e5a08-3457-416a-a363-89bac3f27b4e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000004}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {73df6e3e-0d31-4df3-84d3-185276f0e032}<23.9 && {73df6e3e-0d31-4df3-84d3-185276f0e032}>1.7, !- Program Line 1 - SET {cea761c5-fa3d-4b55-9f79-549b212d4a9f} = 29.4, !- Program Line 2 - SET {f5f09dba-1be1-4909-8c78-285bffa69014} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {73df6e3e-0d31-4df3-84d3-185276f0e032}<23.9 && {73df6e3e-0d31-4df3-84d3-185276f0e032}>1.7, !- Program Line 4 - SET {cea761c5-fa3d-4b55-9f79-549b212d4a9f} = 29.4, !- Program Line 5 - SET {f5f09dba-1be1-4909-8c78-285bffa69014} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {73df6e3e-0d31-4df3-84d3-185276f0e032}<23.9 && {73df6e3e-0d31-4df3-84d3-185276f0e032}>1.7, !- Program Line 7 - SET {cea761c5-fa3d-4b55-9f79-549b212d4a9f} = 29.4, !- Program Line 8 - SET {f5f09dba-1be1-4909-8c78-285bffa69014} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {73df6e3e-0d31-4df3-84d3-185276f0e032}<23.9 && {73df6e3e-0d31-4df3-84d3-185276f0e032}>1.7, !- Program Line 10 - SET {cea761c5-fa3d-4b55-9f79-549b212d4a9f} = 29.4, !- Program Line 11 - SET {f5f09dba-1be1-4909-8c78-285bffa69014} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e658c488-b008-44b4-94f1-10f7b87c9fc2}<23.9 && {e658c488-b008-44b4-94f1-10f7b87c9fc2}>1.7, !- Program Line 1 + SET {db64ccf8-4115-4caa-b526-e60315df4eba} = 29.4, !- Program Line 2 + SET {c023669d-e6d5-4b77-9af6-4e0d5a4c0263} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e658c488-b008-44b4-94f1-10f7b87c9fc2}<23.9 && {e658c488-b008-44b4-94f1-10f7b87c9fc2}>1.7, !- Program Line 4 + SET {db64ccf8-4115-4caa-b526-e60315df4eba} = 29.4, !- Program Line 5 + SET {c023669d-e6d5-4b77-9af6-4e0d5a4c0263} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e658c488-b008-44b4-94f1-10f7b87c9fc2}<23.9 && {e658c488-b008-44b4-94f1-10f7b87c9fc2}>1.7, !- Program Line 7 + SET {db64ccf8-4115-4caa-b526-e60315df4eba} = 29.4, !- Program Line 8 + SET {c023669d-e6d5-4b77-9af6-4e0d5a4c0263} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e658c488-b008-44b4-94f1-10f7b87c9fc2}<23.9 && {e658c488-b008-44b4-94f1-10f7b87c9fc2}>1.7, !- Program Line 10 + SET {db64ccf8-4115-4caa-b526-e60315df4eba} = 29.4, !- Program Line 11 + SET {c023669d-e6d5-4b77-9af6-4e0d5a4c0263} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {cea761c5-fa3d-4b55-9f79-549b212d4a9f} = NULL, !- Program Line 14 - SET {f5f09dba-1be1-4909-8c78-285bffa69014} = NULL, !- Program Line 15 + SET {db64ccf8-4115-4caa-b526-e60315df4eba} = NULL, !- Program Line 14 + SET {c023669d-e6d5-4b77-9af6-4e0d5a4c0263} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000005}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6519098c-9206-4f4d-9324-037385ac257e}<23.9 && {6519098c-9206-4f4d-9324-037385ac257e}>1.7, !- Program Line 1 - SET {02b77a69-5d48-4e82-a1f9-d085297f8057} = 29.4, !- Program Line 2 - SET {152e93c7-1322-454b-90bd-d5dd184d7f7f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6519098c-9206-4f4d-9324-037385ac257e}<23.9 && {6519098c-9206-4f4d-9324-037385ac257e}>1.7, !- Program Line 4 - SET {02b77a69-5d48-4e82-a1f9-d085297f8057} = 29.4, !- Program Line 5 - SET {152e93c7-1322-454b-90bd-d5dd184d7f7f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6519098c-9206-4f4d-9324-037385ac257e}<23.9 && {6519098c-9206-4f4d-9324-037385ac257e}>1.7, !- Program Line 7 - SET {02b77a69-5d48-4e82-a1f9-d085297f8057} = 29.4, !- Program Line 8 - SET {152e93c7-1322-454b-90bd-d5dd184d7f7f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6519098c-9206-4f4d-9324-037385ac257e}<23.9 && {6519098c-9206-4f4d-9324-037385ac257e}>1.7, !- Program Line 10 - SET {02b77a69-5d48-4e82-a1f9-d085297f8057} = 29.4, !- Program Line 11 - SET {152e93c7-1322-454b-90bd-d5dd184d7f7f} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4d9579dc-6a42-4911-bdb8-9ac5c4cc8580}<23.9 && {4d9579dc-6a42-4911-bdb8-9ac5c4cc8580}>1.7, !- Program Line 1 + SET {96c8b90c-0788-4526-9b14-d53d31eba34a} = 29.4, !- Program Line 2 + SET {b8ad42aa-e2c1-4eba-ba35-fbf3947ec382} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4d9579dc-6a42-4911-bdb8-9ac5c4cc8580}<23.9 && {4d9579dc-6a42-4911-bdb8-9ac5c4cc8580}>1.7, !- Program Line 4 + SET {96c8b90c-0788-4526-9b14-d53d31eba34a} = 29.4, !- Program Line 5 + SET {b8ad42aa-e2c1-4eba-ba35-fbf3947ec382} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4d9579dc-6a42-4911-bdb8-9ac5c4cc8580}<23.9 && {4d9579dc-6a42-4911-bdb8-9ac5c4cc8580}>1.7, !- Program Line 7 + SET {96c8b90c-0788-4526-9b14-d53d31eba34a} = 29.4, !- Program Line 8 + SET {b8ad42aa-e2c1-4eba-ba35-fbf3947ec382} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4d9579dc-6a42-4911-bdb8-9ac5c4cc8580}<23.9 && {4d9579dc-6a42-4911-bdb8-9ac5c4cc8580}>1.7, !- Program Line 10 + SET {96c8b90c-0788-4526-9b14-d53d31eba34a} = 29.4, !- Program Line 11 + SET {b8ad42aa-e2c1-4eba-ba35-fbf3947ec382} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {02b77a69-5d48-4e82-a1f9-d085297f8057} = NULL, !- Program Line 14 - SET {152e93c7-1322-454b-90bd-d5dd184d7f7f} = NULL, !- Program Line 15 + SET {96c8b90c-0788-4526-9b14-d53d31eba34a} = NULL, !- Program Line 14 + SET {b8ad42aa-e2c1-4eba-ba35-fbf3947ec382} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000006}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {cc525803-f86b-4853-ba51-d695264fbefd}<23.9 && {cc525803-f86b-4853-ba51-d695264fbefd}>1.7, !- Program Line 1 - SET {6c0a79a1-fd2f-474b-9ddf-11b9aa35587b} = 29.4, !- Program Line 2 - SET {4cd02e1f-aac0-4ec5-8161-d50c175952ae} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {cc525803-f86b-4853-ba51-d695264fbefd}<23.9 && {cc525803-f86b-4853-ba51-d695264fbefd}>1.7, !- Program Line 4 - SET {6c0a79a1-fd2f-474b-9ddf-11b9aa35587b} = 29.4, !- Program Line 5 - SET {4cd02e1f-aac0-4ec5-8161-d50c175952ae} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {cc525803-f86b-4853-ba51-d695264fbefd}<23.9 && {cc525803-f86b-4853-ba51-d695264fbefd}>1.7, !- Program Line 7 - SET {6c0a79a1-fd2f-474b-9ddf-11b9aa35587b} = 29.4, !- Program Line 8 - SET {4cd02e1f-aac0-4ec5-8161-d50c175952ae} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {cc525803-f86b-4853-ba51-d695264fbefd}<23.9 && {cc525803-f86b-4853-ba51-d695264fbefd}>1.7, !- Program Line 10 - SET {6c0a79a1-fd2f-474b-9ddf-11b9aa35587b} = 29.4, !- Program Line 11 - SET {4cd02e1f-aac0-4ec5-8161-d50c175952ae} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {eb7d70da-9e8b-4df4-801c-6d2084ec81b2}<23.9 && {eb7d70da-9e8b-4df4-801c-6d2084ec81b2}>1.7, !- Program Line 1 + SET {18f9f8be-2edf-4056-8e90-0e8424586490} = 29.4, !- Program Line 2 + SET {37a8397f-5591-4665-88aa-b461399d8a22} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {eb7d70da-9e8b-4df4-801c-6d2084ec81b2}<23.9 && {eb7d70da-9e8b-4df4-801c-6d2084ec81b2}>1.7, !- Program Line 4 + SET {18f9f8be-2edf-4056-8e90-0e8424586490} = 29.4, !- Program Line 5 + SET {37a8397f-5591-4665-88aa-b461399d8a22} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {eb7d70da-9e8b-4df4-801c-6d2084ec81b2}<23.9 && {eb7d70da-9e8b-4df4-801c-6d2084ec81b2}>1.7, !- Program Line 7 + SET {18f9f8be-2edf-4056-8e90-0e8424586490} = 29.4, !- Program Line 8 + SET {37a8397f-5591-4665-88aa-b461399d8a22} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {eb7d70da-9e8b-4df4-801c-6d2084ec81b2}<23.9 && {eb7d70da-9e8b-4df4-801c-6d2084ec81b2}>1.7, !- Program Line 10 + SET {18f9f8be-2edf-4056-8e90-0e8424586490} = 29.4, !- Program Line 11 + SET {37a8397f-5591-4665-88aa-b461399d8a22} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6c0a79a1-fd2f-474b-9ddf-11b9aa35587b} = NULL, !- Program Line 14 - SET {4cd02e1f-aac0-4ec5-8161-d50c175952ae} = NULL, !- Program Line 15 + SET {18f9f8be-2edf-4056-8e90-0e8424586490} = NULL, !- Program Line 14 + SET {37a8397f-5591-4665-88aa-b461399d8a22} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000007}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d2982c46-fb0f-4782-8a1d-33a20b61aaf3}<23.9 && {d2982c46-fb0f-4782-8a1d-33a20b61aaf3}>1.7, !- Program Line 1 - SET {ee7b970f-057b-47ab-beec-597d590e938b} = 29.4, !- Program Line 2 - SET {58ff42ae-bf4f-4b88-a92e-9623291e07ec} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d2982c46-fb0f-4782-8a1d-33a20b61aaf3}<23.9 && {d2982c46-fb0f-4782-8a1d-33a20b61aaf3}>1.7, !- Program Line 4 - SET {ee7b970f-057b-47ab-beec-597d590e938b} = 29.4, !- Program Line 5 - SET {58ff42ae-bf4f-4b88-a92e-9623291e07ec} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d2982c46-fb0f-4782-8a1d-33a20b61aaf3}<23.9 && {d2982c46-fb0f-4782-8a1d-33a20b61aaf3}>1.7, !- Program Line 7 - SET {ee7b970f-057b-47ab-beec-597d590e938b} = 29.4, !- Program Line 8 - SET {58ff42ae-bf4f-4b88-a92e-9623291e07ec} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d2982c46-fb0f-4782-8a1d-33a20b61aaf3}<23.9 && {d2982c46-fb0f-4782-8a1d-33a20b61aaf3}>1.7, !- Program Line 10 - SET {ee7b970f-057b-47ab-beec-597d590e938b} = 29.4, !- Program Line 11 - SET {58ff42ae-bf4f-4b88-a92e-9623291e07ec} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {75ac8db0-5bb7-4f29-b3df-d16a32cd4bb9}<23.9 && {75ac8db0-5bb7-4f29-b3df-d16a32cd4bb9}>1.7, !- Program Line 1 + SET {bc6e2c1f-a11e-4b8b-9df1-d96601a161c3} = 29.4, !- Program Line 2 + SET {e558f4f1-e309-4a98-8db3-1e89a101acd0} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {75ac8db0-5bb7-4f29-b3df-d16a32cd4bb9}<23.9 && {75ac8db0-5bb7-4f29-b3df-d16a32cd4bb9}>1.7, !- Program Line 4 + SET {bc6e2c1f-a11e-4b8b-9df1-d96601a161c3} = 29.4, !- Program Line 5 + SET {e558f4f1-e309-4a98-8db3-1e89a101acd0} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {75ac8db0-5bb7-4f29-b3df-d16a32cd4bb9}<23.9 && {75ac8db0-5bb7-4f29-b3df-d16a32cd4bb9}>1.7, !- Program Line 7 + SET {bc6e2c1f-a11e-4b8b-9df1-d96601a161c3} = 29.4, !- Program Line 8 + SET {e558f4f1-e309-4a98-8db3-1e89a101acd0} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {75ac8db0-5bb7-4f29-b3df-d16a32cd4bb9}<23.9 && {75ac8db0-5bb7-4f29-b3df-d16a32cd4bb9}>1.7, !- Program Line 10 + SET {bc6e2c1f-a11e-4b8b-9df1-d96601a161c3} = 29.4, !- Program Line 11 + SET {e558f4f1-e309-4a98-8db3-1e89a101acd0} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ee7b970f-057b-47ab-beec-597d590e938b} = NULL, !- Program Line 14 - SET {58ff42ae-bf4f-4b88-a92e-9623291e07ec} = NULL, !- Program Line 15 + SET {bc6e2c1f-a11e-4b8b-9df1-d96601a161c3} = NULL, !- Program Line 14 + SET {e558f4f1-e309-4a98-8db3-1e89a101acd0} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000008}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {898229f6-1b79-4268-a994-a12184759b6c}<23.9 && {898229f6-1b79-4268-a994-a12184759b6c}>1.7, !- Program Line 1 - SET {e3231a11-ccdb-4d41-8e47-318d3710048d} = 29.4, !- Program Line 2 - SET {260d5ab8-4129-434b-89ac-617ca853e1ad} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {898229f6-1b79-4268-a994-a12184759b6c}<23.9 && {898229f6-1b79-4268-a994-a12184759b6c}>1.7, !- Program Line 4 - SET {e3231a11-ccdb-4d41-8e47-318d3710048d} = 29.4, !- Program Line 5 - SET {260d5ab8-4129-434b-89ac-617ca853e1ad} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {898229f6-1b79-4268-a994-a12184759b6c}<23.9 && {898229f6-1b79-4268-a994-a12184759b6c}>1.7, !- Program Line 7 - SET {e3231a11-ccdb-4d41-8e47-318d3710048d} = 29.4, !- Program Line 8 - SET {260d5ab8-4129-434b-89ac-617ca853e1ad} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {898229f6-1b79-4268-a994-a12184759b6c}<23.9 && {898229f6-1b79-4268-a994-a12184759b6c}>1.7, !- Program Line 10 - SET {e3231a11-ccdb-4d41-8e47-318d3710048d} = 29.4, !- Program Line 11 - SET {260d5ab8-4129-434b-89ac-617ca853e1ad} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {88160953-c768-4427-a29c-0b64bd79d045}<23.9 && {88160953-c768-4427-a29c-0b64bd79d045}>1.7, !- Program Line 1 + SET {bea549f3-e97d-4d41-a527-c0048cd32ef5} = 29.4, !- Program Line 2 + SET {88fa573c-379b-468d-9289-2a9cfb861e50} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {88160953-c768-4427-a29c-0b64bd79d045}<23.9 && {88160953-c768-4427-a29c-0b64bd79d045}>1.7, !- Program Line 4 + SET {bea549f3-e97d-4d41-a527-c0048cd32ef5} = 29.4, !- Program Line 5 + SET {88fa573c-379b-468d-9289-2a9cfb861e50} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {88160953-c768-4427-a29c-0b64bd79d045}<23.9 && {88160953-c768-4427-a29c-0b64bd79d045}>1.7, !- Program Line 7 + SET {bea549f3-e97d-4d41-a527-c0048cd32ef5} = 29.4, !- Program Line 8 + SET {88fa573c-379b-468d-9289-2a9cfb861e50} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {88160953-c768-4427-a29c-0b64bd79d045}<23.9 && {88160953-c768-4427-a29c-0b64bd79d045}>1.7, !- Program Line 10 + SET {bea549f3-e97d-4d41-a527-c0048cd32ef5} = 29.4, !- Program Line 11 + SET {88fa573c-379b-468d-9289-2a9cfb861e50} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e3231a11-ccdb-4d41-8e47-318d3710048d} = NULL, !- Program Line 14 - SET {260d5ab8-4129-434b-89ac-617ca853e1ad} = NULL, !- Program Line 15 + SET {bea549f3-e97d-4d41-a527-c0048cd32ef5} = NULL, !- Program Line 14 + SET {88fa573c-379b-468d-9289-2a9cfb861e50} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 541b919285..ad71a3cf8a 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000058}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000059}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000060}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -14247,7 +14247,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14255,7 +14255,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14263,7 +14263,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__15_ClgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14271,7 +14271,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__15_HtgSch0, !- Name {00000000-0000-0000-0069-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14279,7 +14279,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14287,7 +14287,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14295,7 +14295,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0069-000000000027}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14303,7 +14303,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000008}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0069-000000000028}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14311,7 +14311,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000009}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__5_ClgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14319,7 +14319,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000010}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__5_HtgSch0, !- Name {00000000-0000-0000-0069-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14327,7 +14327,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000011}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14335,7 +14335,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000012}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0069-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14343,7 +14343,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000013}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14351,7 +14351,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000014}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0069-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14359,7 +14359,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000015}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14367,7 +14367,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000016}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0069-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14375,209 +14375,209 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {866e4fad-1d7b-474b-b7dc-f0119eeb8ef0}<23.9 && {866e4fad-1d7b-474b-b7dc-f0119eeb8ef0}>1.7, !- Program Line 1 - SET {c6117afc-4bd9-4acf-9954-31370a104f4f} = 29.4, !- Program Line 2 - SET {3abf0b23-8821-49a6-a857-1fd42772111f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {866e4fad-1d7b-474b-b7dc-f0119eeb8ef0}<23.9 && {866e4fad-1d7b-474b-b7dc-f0119eeb8ef0}>1.7, !- Program Line 4 - SET {c6117afc-4bd9-4acf-9954-31370a104f4f} = 29.4, !- Program Line 5 - SET {3abf0b23-8821-49a6-a857-1fd42772111f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {866e4fad-1d7b-474b-b7dc-f0119eeb8ef0}<23.9 && {866e4fad-1d7b-474b-b7dc-f0119eeb8ef0}>1.7, !- Program Line 7 - SET {c6117afc-4bd9-4acf-9954-31370a104f4f} = 29.4, !- Program Line 8 - SET {3abf0b23-8821-49a6-a857-1fd42772111f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {866e4fad-1d7b-474b-b7dc-f0119eeb8ef0}<23.9 && {866e4fad-1d7b-474b-b7dc-f0119eeb8ef0}>1.7, !- Program Line 10 - SET {c6117afc-4bd9-4acf-9954-31370a104f4f} = 29.4, !- Program Line 11 - SET {3abf0b23-8821-49a6-a857-1fd42772111f} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1074e714-d6a5-4530-a87d-13fa32d3b11a}<23.9 && {1074e714-d6a5-4530-a87d-13fa32d3b11a}>1.7, !- Program Line 1 + SET {33425b81-9a77-4fad-83fe-c50110deffcd} = 29.4, !- Program Line 2 + SET {bbd41e0a-394d-4909-81e2-2ad9038347e3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1074e714-d6a5-4530-a87d-13fa32d3b11a}<23.9 && {1074e714-d6a5-4530-a87d-13fa32d3b11a}>1.7, !- Program Line 4 + SET {33425b81-9a77-4fad-83fe-c50110deffcd} = 29.4, !- Program Line 5 + SET {bbd41e0a-394d-4909-81e2-2ad9038347e3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1074e714-d6a5-4530-a87d-13fa32d3b11a}<23.9 && {1074e714-d6a5-4530-a87d-13fa32d3b11a}>1.7, !- Program Line 7 + SET {33425b81-9a77-4fad-83fe-c50110deffcd} = 29.4, !- Program Line 8 + SET {bbd41e0a-394d-4909-81e2-2ad9038347e3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1074e714-d6a5-4530-a87d-13fa32d3b11a}<23.9 && {1074e714-d6a5-4530-a87d-13fa32d3b11a}>1.7, !- Program Line 10 + SET {33425b81-9a77-4fad-83fe-c50110deffcd} = 29.4, !- Program Line 11 + SET {bbd41e0a-394d-4909-81e2-2ad9038347e3} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c6117afc-4bd9-4acf-9954-31370a104f4f} = NULL, !- Program Line 14 - SET {3abf0b23-8821-49a6-a857-1fd42772111f} = NULL, !- Program Line 15 + SET {33425b81-9a77-4fad-83fe-c50110deffcd} = NULL, !- Program Line 14 + SET {bbd41e0a-394d-4909-81e2-2ad9038347e3} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {dadd53f3-eb05-495d-9dca-764e9e4ac814}<23.9 && {dadd53f3-eb05-495d-9dca-764e9e4ac814}>1.7, !- Program Line 1 - SET {a213e966-c272-4cf1-a465-a0eeb0648fb1} = 29.4, !- Program Line 2 - SET {531bad65-bbcf-4f21-8a1f-29e8ee09a433} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {dadd53f3-eb05-495d-9dca-764e9e4ac814}<23.9 && {dadd53f3-eb05-495d-9dca-764e9e4ac814}>1.7, !- Program Line 4 - SET {a213e966-c272-4cf1-a465-a0eeb0648fb1} = 29.4, !- Program Line 5 - SET {531bad65-bbcf-4f21-8a1f-29e8ee09a433} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {dadd53f3-eb05-495d-9dca-764e9e4ac814}<23.9 && {dadd53f3-eb05-495d-9dca-764e9e4ac814}>1.7, !- Program Line 7 - SET {a213e966-c272-4cf1-a465-a0eeb0648fb1} = 29.4, !- Program Line 8 - SET {531bad65-bbcf-4f21-8a1f-29e8ee09a433} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {dadd53f3-eb05-495d-9dca-764e9e4ac814}<23.9 && {dadd53f3-eb05-495d-9dca-764e9e4ac814}>1.7, !- Program Line 10 - SET {a213e966-c272-4cf1-a465-a0eeb0648fb1} = 29.4, !- Program Line 11 - SET {531bad65-bbcf-4f21-8a1f-29e8ee09a433} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {97cb40cc-d3ef-412c-b37e-a3d2c5748a24}<23.9 && {97cb40cc-d3ef-412c-b37e-a3d2c5748a24}>1.7, !- Program Line 1 + SET {e65f22c2-562f-42f9-b10b-622a67e19621} = 29.4, !- Program Line 2 + SET {79f80c71-9ab4-477f-b52d-3ceac00d0380} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {97cb40cc-d3ef-412c-b37e-a3d2c5748a24}<23.9 && {97cb40cc-d3ef-412c-b37e-a3d2c5748a24}>1.7, !- Program Line 4 + SET {e65f22c2-562f-42f9-b10b-622a67e19621} = 29.4, !- Program Line 5 + SET {79f80c71-9ab4-477f-b52d-3ceac00d0380} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {97cb40cc-d3ef-412c-b37e-a3d2c5748a24}<23.9 && {97cb40cc-d3ef-412c-b37e-a3d2c5748a24}>1.7, !- Program Line 7 + SET {e65f22c2-562f-42f9-b10b-622a67e19621} = 29.4, !- Program Line 8 + SET {79f80c71-9ab4-477f-b52d-3ceac00d0380} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {97cb40cc-d3ef-412c-b37e-a3d2c5748a24}<23.9 && {97cb40cc-d3ef-412c-b37e-a3d2c5748a24}>1.7, !- Program Line 10 + SET {e65f22c2-562f-42f9-b10b-622a67e19621} = 29.4, !- Program Line 11 + SET {79f80c71-9ab4-477f-b52d-3ceac00d0380} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a213e966-c272-4cf1-a465-a0eeb0648fb1} = NULL, !- Program Line 14 - SET {531bad65-bbcf-4f21-8a1f-29e8ee09a433} = NULL, !- Program Line 15 + SET {e65f22c2-562f-42f9-b10b-622a67e19621} = NULL, !- Program Line 14 + SET {79f80c71-9ab4-477f-b52d-3ceac00d0380} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fce999dc-b5d1-4a4b-892c-eac067b12568}<23.9 && {fce999dc-b5d1-4a4b-892c-eac067b12568}>1.7, !- Program Line 1 - SET {b43f30a2-0810-44b7-9c79-cd92c8fc2128} = 29.4, !- Program Line 2 - SET {b9314cc1-66fd-4440-9c7d-a86b0b2153e6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fce999dc-b5d1-4a4b-892c-eac067b12568}<23.9 && {fce999dc-b5d1-4a4b-892c-eac067b12568}>1.7, !- Program Line 4 - SET {b43f30a2-0810-44b7-9c79-cd92c8fc2128} = 29.4, !- Program Line 5 - SET {b9314cc1-66fd-4440-9c7d-a86b0b2153e6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fce999dc-b5d1-4a4b-892c-eac067b12568}<23.9 && {fce999dc-b5d1-4a4b-892c-eac067b12568}>1.7, !- Program Line 7 - SET {b43f30a2-0810-44b7-9c79-cd92c8fc2128} = 29.4, !- Program Line 8 - SET {b9314cc1-66fd-4440-9c7d-a86b0b2153e6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fce999dc-b5d1-4a4b-892c-eac067b12568}<23.9 && {fce999dc-b5d1-4a4b-892c-eac067b12568}>1.7, !- Program Line 10 - SET {b43f30a2-0810-44b7-9c79-cd92c8fc2128} = 29.4, !- Program Line 11 - SET {b9314cc1-66fd-4440-9c7d-a86b0b2153e6} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {96fb613f-87b5-4376-bad1-8753e5c6d008}<23.9 && {96fb613f-87b5-4376-bad1-8753e5c6d008}>1.7, !- Program Line 1 + SET {9cb1f763-7bfe-44cf-8609-c12066762503} = 29.4, !- Program Line 2 + SET {6fe53403-e679-46e8-b2ab-68d995bebb13} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {96fb613f-87b5-4376-bad1-8753e5c6d008}<23.9 && {96fb613f-87b5-4376-bad1-8753e5c6d008}>1.7, !- Program Line 4 + SET {9cb1f763-7bfe-44cf-8609-c12066762503} = 29.4, !- Program Line 5 + SET {6fe53403-e679-46e8-b2ab-68d995bebb13} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {96fb613f-87b5-4376-bad1-8753e5c6d008}<23.9 && {96fb613f-87b5-4376-bad1-8753e5c6d008}>1.7, !- Program Line 7 + SET {9cb1f763-7bfe-44cf-8609-c12066762503} = 29.4, !- Program Line 8 + SET {6fe53403-e679-46e8-b2ab-68d995bebb13} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {96fb613f-87b5-4376-bad1-8753e5c6d008}<23.9 && {96fb613f-87b5-4376-bad1-8753e5c6d008}>1.7, !- Program Line 10 + SET {9cb1f763-7bfe-44cf-8609-c12066762503} = 29.4, !- Program Line 11 + SET {6fe53403-e679-46e8-b2ab-68d995bebb13} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b43f30a2-0810-44b7-9c79-cd92c8fc2128} = NULL, !- Program Line 14 - SET {b9314cc1-66fd-4440-9c7d-a86b0b2153e6} = NULL, !- Program Line 15 + SET {9cb1f763-7bfe-44cf-8609-c12066762503} = NULL, !- Program Line 14 + SET {6fe53403-e679-46e8-b2ab-68d995bebb13} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c0799427-0a89-4144-a84c-f0b0583bdb83}<23.9 && {c0799427-0a89-4144-a84c-f0b0583bdb83}>1.7, !- Program Line 1 - SET {a53c6a54-a626-455e-b35e-7786f635d300} = 29.4, !- Program Line 2 - SET {52432a15-1608-4b25-a4f8-237da5d25559} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c0799427-0a89-4144-a84c-f0b0583bdb83}<23.9 && {c0799427-0a89-4144-a84c-f0b0583bdb83}>1.7, !- Program Line 4 - SET {a53c6a54-a626-455e-b35e-7786f635d300} = 29.4, !- Program Line 5 - SET {52432a15-1608-4b25-a4f8-237da5d25559} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c0799427-0a89-4144-a84c-f0b0583bdb83}<23.9 && {c0799427-0a89-4144-a84c-f0b0583bdb83}>1.7, !- Program Line 7 - SET {a53c6a54-a626-455e-b35e-7786f635d300} = 29.4, !- Program Line 8 - SET {52432a15-1608-4b25-a4f8-237da5d25559} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c0799427-0a89-4144-a84c-f0b0583bdb83}<23.9 && {c0799427-0a89-4144-a84c-f0b0583bdb83}>1.7, !- Program Line 10 - SET {a53c6a54-a626-455e-b35e-7786f635d300} = 29.4, !- Program Line 11 - SET {52432a15-1608-4b25-a4f8-237da5d25559} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c8cc133c-5aa2-4a4d-954b-988c6e1ba9f2}<23.9 && {c8cc133c-5aa2-4a4d-954b-988c6e1ba9f2}>1.7, !- Program Line 1 + SET {a894b180-7785-4cae-a7f3-8f1212d8de81} = 29.4, !- Program Line 2 + SET {3d287699-7993-4b38-bbc1-480e034ddda1} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c8cc133c-5aa2-4a4d-954b-988c6e1ba9f2}<23.9 && {c8cc133c-5aa2-4a4d-954b-988c6e1ba9f2}>1.7, !- Program Line 4 + SET {a894b180-7785-4cae-a7f3-8f1212d8de81} = 29.4, !- Program Line 5 + SET {3d287699-7993-4b38-bbc1-480e034ddda1} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c8cc133c-5aa2-4a4d-954b-988c6e1ba9f2}<23.9 && {c8cc133c-5aa2-4a4d-954b-988c6e1ba9f2}>1.7, !- Program Line 7 + SET {a894b180-7785-4cae-a7f3-8f1212d8de81} = 29.4, !- Program Line 8 + SET {3d287699-7993-4b38-bbc1-480e034ddda1} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c8cc133c-5aa2-4a4d-954b-988c6e1ba9f2}<23.9 && {c8cc133c-5aa2-4a4d-954b-988c6e1ba9f2}>1.7, !- Program Line 10 + SET {a894b180-7785-4cae-a7f3-8f1212d8de81} = 29.4, !- Program Line 11 + SET {3d287699-7993-4b38-bbc1-480e034ddda1} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a53c6a54-a626-455e-b35e-7786f635d300} = NULL, !- Program Line 14 - SET {52432a15-1608-4b25-a4f8-237da5d25559} = NULL, !- Program Line 15 + SET {a894b180-7785-4cae-a7f3-8f1212d8de81} = NULL, !- Program Line 14 + SET {3d287699-7993-4b38-bbc1-480e034ddda1} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {253069d6-a984-4c1e-b0d2-7a0c39b1acb7}<23.9 && {253069d6-a984-4c1e-b0d2-7a0c39b1acb7}>1.7, !- Program Line 1 - SET {7e89751b-41fc-4984-a2c9-173eb8a9b02e} = 29.4, !- Program Line 2 - SET {5b7c24ba-bf6f-467f-a3d9-8d35748547fb} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {253069d6-a984-4c1e-b0d2-7a0c39b1acb7}<23.9 && {253069d6-a984-4c1e-b0d2-7a0c39b1acb7}>1.7, !- Program Line 4 - SET {7e89751b-41fc-4984-a2c9-173eb8a9b02e} = 29.4, !- Program Line 5 - SET {5b7c24ba-bf6f-467f-a3d9-8d35748547fb} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {253069d6-a984-4c1e-b0d2-7a0c39b1acb7}<23.9 && {253069d6-a984-4c1e-b0d2-7a0c39b1acb7}>1.7, !- Program Line 7 - SET {7e89751b-41fc-4984-a2c9-173eb8a9b02e} = 29.4, !- Program Line 8 - SET {5b7c24ba-bf6f-467f-a3d9-8d35748547fb} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {253069d6-a984-4c1e-b0d2-7a0c39b1acb7}<23.9 && {253069d6-a984-4c1e-b0d2-7a0c39b1acb7}>1.7, !- Program Line 10 - SET {7e89751b-41fc-4984-a2c9-173eb8a9b02e} = 29.4, !- Program Line 11 - SET {5b7c24ba-bf6f-467f-a3d9-8d35748547fb} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8dc22f27-8e84-4730-8b95-57ff168d83b6}<23.9 && {8dc22f27-8e84-4730-8b95-57ff168d83b6}>1.7, !- Program Line 1 + SET {c62bf23b-738d-4a24-ab9c-c868141c29b0} = 29.4, !- Program Line 2 + SET {457f6d74-75be-4885-a1aa-159fa025bd77} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8dc22f27-8e84-4730-8b95-57ff168d83b6}<23.9 && {8dc22f27-8e84-4730-8b95-57ff168d83b6}>1.7, !- Program Line 4 + SET {c62bf23b-738d-4a24-ab9c-c868141c29b0} = 29.4, !- Program Line 5 + SET {457f6d74-75be-4885-a1aa-159fa025bd77} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8dc22f27-8e84-4730-8b95-57ff168d83b6}<23.9 && {8dc22f27-8e84-4730-8b95-57ff168d83b6}>1.7, !- Program Line 7 + SET {c62bf23b-738d-4a24-ab9c-c868141c29b0} = 29.4, !- Program Line 8 + SET {457f6d74-75be-4885-a1aa-159fa025bd77} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8dc22f27-8e84-4730-8b95-57ff168d83b6}<23.9 && {8dc22f27-8e84-4730-8b95-57ff168d83b6}>1.7, !- Program Line 10 + SET {c62bf23b-738d-4a24-ab9c-c868141c29b0} = 29.4, !- Program Line 11 + SET {457f6d74-75be-4885-a1aa-159fa025bd77} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7e89751b-41fc-4984-a2c9-173eb8a9b02e} = NULL, !- Program Line 14 - SET {5b7c24ba-bf6f-467f-a3d9-8d35748547fb} = NULL, !- Program Line 15 + SET {c62bf23b-738d-4a24-ab9c-c868141c29b0} = NULL, !- Program Line 14 + SET {457f6d74-75be-4885-a1aa-159fa025bd77} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1bc97b5a-60bc-4564-9411-827bcf32e816}<23.9 && {1bc97b5a-60bc-4564-9411-827bcf32e816}>1.7, !- Program Line 1 - SET {82c3dfd6-4b6d-4e6b-80c6-bd90d96ce1c7} = 29.4, !- Program Line 2 - SET {2382280a-bccf-4225-a33b-c62e5166a82f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1bc97b5a-60bc-4564-9411-827bcf32e816}<23.9 && {1bc97b5a-60bc-4564-9411-827bcf32e816}>1.7, !- Program Line 4 - SET {82c3dfd6-4b6d-4e6b-80c6-bd90d96ce1c7} = 29.4, !- Program Line 5 - SET {2382280a-bccf-4225-a33b-c62e5166a82f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1bc97b5a-60bc-4564-9411-827bcf32e816}<23.9 && {1bc97b5a-60bc-4564-9411-827bcf32e816}>1.7, !- Program Line 7 - SET {82c3dfd6-4b6d-4e6b-80c6-bd90d96ce1c7} = 29.4, !- Program Line 8 - SET {2382280a-bccf-4225-a33b-c62e5166a82f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1bc97b5a-60bc-4564-9411-827bcf32e816}<23.9 && {1bc97b5a-60bc-4564-9411-827bcf32e816}>1.7, !- Program Line 10 - SET {82c3dfd6-4b6d-4e6b-80c6-bd90d96ce1c7} = 29.4, !- Program Line 11 - SET {2382280a-bccf-4225-a33b-c62e5166a82f} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a6559b19-5be1-4579-8cfc-2a7a0ccfea8e}<23.9 && {a6559b19-5be1-4579-8cfc-2a7a0ccfea8e}>1.7, !- Program Line 1 + SET {4804bba1-d124-4362-9353-c3e977131da2} = 29.4, !- Program Line 2 + SET {3ed03918-f627-4555-a56b-1f5a2b0a121d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a6559b19-5be1-4579-8cfc-2a7a0ccfea8e}<23.9 && {a6559b19-5be1-4579-8cfc-2a7a0ccfea8e}>1.7, !- Program Line 4 + SET {4804bba1-d124-4362-9353-c3e977131da2} = 29.4, !- Program Line 5 + SET {3ed03918-f627-4555-a56b-1f5a2b0a121d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a6559b19-5be1-4579-8cfc-2a7a0ccfea8e}<23.9 && {a6559b19-5be1-4579-8cfc-2a7a0ccfea8e}>1.7, !- Program Line 7 + SET {4804bba1-d124-4362-9353-c3e977131da2} = 29.4, !- Program Line 8 + SET {3ed03918-f627-4555-a56b-1f5a2b0a121d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a6559b19-5be1-4579-8cfc-2a7a0ccfea8e}<23.9 && {a6559b19-5be1-4579-8cfc-2a7a0ccfea8e}>1.7, !- Program Line 10 + SET {4804bba1-d124-4362-9353-c3e977131da2} = 29.4, !- Program Line 11 + SET {3ed03918-f627-4555-a56b-1f5a2b0a121d} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {82c3dfd6-4b6d-4e6b-80c6-bd90d96ce1c7} = NULL, !- Program Line 14 - SET {2382280a-bccf-4225-a33b-c62e5166a82f} = NULL, !- Program Line 15 + SET {4804bba1-d124-4362-9353-c3e977131da2} = NULL, !- Program Line 14 + SET {3ed03918-f627-4555-a56b-1f5a2b0a121d} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {be9b8f97-d13c-4cab-967e-3c54a8c2e27b}<23.9 && {be9b8f97-d13c-4cab-967e-3c54a8c2e27b}>1.7, !- Program Line 1 - SET {22410510-af15-40ec-b8e7-2aeb4e0f017c} = 29.4, !- Program Line 2 - SET {e9c16a2e-0057-4a91-9b37-a353c45bbaab} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {be9b8f97-d13c-4cab-967e-3c54a8c2e27b}<23.9 && {be9b8f97-d13c-4cab-967e-3c54a8c2e27b}>1.7, !- Program Line 4 - SET {22410510-af15-40ec-b8e7-2aeb4e0f017c} = 29.4, !- Program Line 5 - SET {e9c16a2e-0057-4a91-9b37-a353c45bbaab} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {be9b8f97-d13c-4cab-967e-3c54a8c2e27b}<23.9 && {be9b8f97-d13c-4cab-967e-3c54a8c2e27b}>1.7, !- Program Line 7 - SET {22410510-af15-40ec-b8e7-2aeb4e0f017c} = 29.4, !- Program Line 8 - SET {e9c16a2e-0057-4a91-9b37-a353c45bbaab} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {be9b8f97-d13c-4cab-967e-3c54a8c2e27b}<23.9 && {be9b8f97-d13c-4cab-967e-3c54a8c2e27b}>1.7, !- Program Line 10 - SET {22410510-af15-40ec-b8e7-2aeb4e0f017c} = 29.4, !- Program Line 11 - SET {e9c16a2e-0057-4a91-9b37-a353c45bbaab} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9381f5d8-03bf-4a7d-889f-d7cb38d83523}<23.9 && {9381f5d8-03bf-4a7d-889f-d7cb38d83523}>1.7, !- Program Line 1 + SET {01a53de5-aee0-4f97-b24a-a645dbf4a5eb} = 29.4, !- Program Line 2 + SET {9bb92945-af3d-42de-9adc-78f4a176c28f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9381f5d8-03bf-4a7d-889f-d7cb38d83523}<23.9 && {9381f5d8-03bf-4a7d-889f-d7cb38d83523}>1.7, !- Program Line 4 + SET {01a53de5-aee0-4f97-b24a-a645dbf4a5eb} = 29.4, !- Program Line 5 + SET {9bb92945-af3d-42de-9adc-78f4a176c28f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9381f5d8-03bf-4a7d-889f-d7cb38d83523}<23.9 && {9381f5d8-03bf-4a7d-889f-d7cb38d83523}>1.7, !- Program Line 7 + SET {01a53de5-aee0-4f97-b24a-a645dbf4a5eb} = 29.4, !- Program Line 8 + SET {9bb92945-af3d-42de-9adc-78f4a176c28f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9381f5d8-03bf-4a7d-889f-d7cb38d83523}<23.9 && {9381f5d8-03bf-4a7d-889f-d7cb38d83523}>1.7, !- Program Line 10 + SET {01a53de5-aee0-4f97-b24a-a645dbf4a5eb} = 29.4, !- Program Line 11 + SET {9bb92945-af3d-42de-9adc-78f4a176c28f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {22410510-af15-40ec-b8e7-2aeb4e0f017c} = NULL, !- Program Line 14 - SET {e9c16a2e-0057-4a91-9b37-a353c45bbaab} = NULL, !- Program Line 15 + SET {01a53de5-aee0-4f97-b24a-a645dbf4a5eb} = NULL, !- Program Line 14 + SET {9bb92945-af3d-42de-9adc-78f4a176c28f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f944bf66-15e2-4418-9e60-2a6f21ff7e86}<23.9 && {f944bf66-15e2-4418-9e60-2a6f21ff7e86}>1.7, !- Program Line 1 - SET {75b39540-84d0-4c4c-abee-388617a86e21} = 29.4, !- Program Line 2 - SET {c39422fb-608a-45e7-8b97-cff2915a17b4} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f944bf66-15e2-4418-9e60-2a6f21ff7e86}<23.9 && {f944bf66-15e2-4418-9e60-2a6f21ff7e86}>1.7, !- Program Line 4 - SET {75b39540-84d0-4c4c-abee-388617a86e21} = 29.4, !- Program Line 5 - SET {c39422fb-608a-45e7-8b97-cff2915a17b4} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f944bf66-15e2-4418-9e60-2a6f21ff7e86}<23.9 && {f944bf66-15e2-4418-9e60-2a6f21ff7e86}>1.7, !- Program Line 7 - SET {75b39540-84d0-4c4c-abee-388617a86e21} = 29.4, !- Program Line 8 - SET {c39422fb-608a-45e7-8b97-cff2915a17b4} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f944bf66-15e2-4418-9e60-2a6f21ff7e86}<23.9 && {f944bf66-15e2-4418-9e60-2a6f21ff7e86}>1.7, !- Program Line 10 - SET {75b39540-84d0-4c4c-abee-388617a86e21} = 29.4, !- Program Line 11 - SET {c39422fb-608a-45e7-8b97-cff2915a17b4} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {34a974e6-4077-477a-aadd-f119ea9424ca}<23.9 && {34a974e6-4077-477a-aadd-f119ea9424ca}>1.7, !- Program Line 1 + SET {1304cb60-2494-4652-bee5-e85f80522079} = 29.4, !- Program Line 2 + SET {81649ce9-ec68-4e55-bdbe-9433655552dc} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {34a974e6-4077-477a-aadd-f119ea9424ca}<23.9 && {34a974e6-4077-477a-aadd-f119ea9424ca}>1.7, !- Program Line 4 + SET {1304cb60-2494-4652-bee5-e85f80522079} = 29.4, !- Program Line 5 + SET {81649ce9-ec68-4e55-bdbe-9433655552dc} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {34a974e6-4077-477a-aadd-f119ea9424ca}<23.9 && {34a974e6-4077-477a-aadd-f119ea9424ca}>1.7, !- Program Line 7 + SET {1304cb60-2494-4652-bee5-e85f80522079} = 29.4, !- Program Line 8 + SET {81649ce9-ec68-4e55-bdbe-9433655552dc} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {34a974e6-4077-477a-aadd-f119ea9424ca}<23.9 && {34a974e6-4077-477a-aadd-f119ea9424ca}>1.7, !- Program Line 10 + SET {1304cb60-2494-4652-bee5-e85f80522079} = 29.4, !- Program Line 11 + SET {81649ce9-ec68-4e55-bdbe-9433655552dc} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {75b39540-84d0-4c4c-abee-388617a86e21} = NULL, !- Program Line 14 - SET {c39422fb-608a-45e7-8b97-cff2915a17b4} = NULL, !- Program Line 15 + SET {1304cb60-2494-4652-bee5-e85f80522079} = NULL, !- Program Line 14 + SET {81649ce9-ec68-4e55-bdbe-9433655552dc} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000004}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000005}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000006}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000007}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000008}; !- Program Name 1 @@ -15174,7 +15174,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15200,7 +15200,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15226,7 +15226,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15252,7 +15252,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15278,7 +15278,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15304,7 +15304,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15330,7 +15330,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15356,7 +15356,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15382,7 +15382,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15408,7 +15408,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15434,7 +15434,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15460,7 +15460,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15486,7 +15486,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15512,7 +15512,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15538,7 +15538,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15564,7 +15564,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15590,7 +15590,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15616,7 +15616,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15642,7 +15642,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15668,7 +15668,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18102,1081 +18102,1081 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000246}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000219}, !- Inlet Port {00000000-0000-0000-0018-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000247}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000222}, !- Inlet Port {00000000-0000-0000-0018-000000000220}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000248}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000225}, !- Inlet Port {00000000-0000-0000-0018-000000000226}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000249}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000717}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000250}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000722}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000251}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000217}, !- Inlet Port {00000000-0000-0000-0018-000000000224}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000252}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000223}, !- Inlet Port {00000000-0000-0000-0018-000000000218}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000253}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000399}, !- Inlet Port {00000000-0000-0000-0018-000000000401}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000254}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000402}, !- Inlet Port {00000000-0000-0000-0018-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000255}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000405}, !- Inlet Port {00000000-0000-0000-0018-000000000406}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000256}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000723}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000257}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000728}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000258}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000397}, !- Inlet Port {00000000-0000-0000-0018-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000259}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000403}, !- Inlet Port {00000000-0000-0000-0018-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000260}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000419}, !- Inlet Port {00000000-0000-0000-0018-000000000421}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000261}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000422}, !- Inlet Port {00000000-0000-0000-0018-000000000420}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000262}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000425}, !- Inlet Port {00000000-0000-0000-0018-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000263}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000729}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000264}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000734}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000265}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000417}, !- Inlet Port {00000000-0000-0000-0018-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000266}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000423}, !- Inlet Port {00000000-0000-0000-0018-000000000418}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000267}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000439}, !- Inlet Port {00000000-0000-0000-0018-000000000441}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000268}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000442}, !- Inlet Port {00000000-0000-0000-0018-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000269}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000445}, !- Inlet Port {00000000-0000-0000-0018-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000270}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000735}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000271}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000740}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000272}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000437}, !- Inlet Port {00000000-0000-0000-0018-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000273}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000443}, !- Inlet Port {00000000-0000-0000-0018-000000000438}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000274}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000459}, !- Inlet Port {00000000-0000-0000-0018-000000000461}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000275}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000462}, !- Inlet Port {00000000-0000-0000-0018-000000000460}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000276}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000465}, !- Inlet Port {00000000-0000-0000-0018-000000000466}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000277}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000741}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000278}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000746}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000279}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000457}, !- Inlet Port {00000000-0000-0000-0018-000000000464}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000280}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000463}, !- Inlet Port {00000000-0000-0000-0018-000000000458}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000281}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000479}, !- Inlet Port {00000000-0000-0000-0018-000000000481}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000282}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000482}, !- Inlet Port {00000000-0000-0000-0018-000000000480}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000283}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000485}, !- Inlet Port {00000000-0000-0000-0018-000000000486}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000284}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000747}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000285}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000752}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000286}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000477}, !- Inlet Port {00000000-0000-0000-0018-000000000484}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000287}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000483}, !- Inlet Port {00000000-0000-0000-0018-000000000478}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000288}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000499}, !- Inlet Port {00000000-0000-0000-0018-000000000501}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000289}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000502}, !- Inlet Port {00000000-0000-0000-0018-000000000500}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000290}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000505}, !- Inlet Port {00000000-0000-0000-0018-000000000506}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000291}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000753}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000292}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000758}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000293}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000497}, !- Inlet Port {00000000-0000-0000-0018-000000000504}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000294}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000503}, !- Inlet Port {00000000-0000-0000-0018-000000000498}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000295}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000519}, !- Inlet Port {00000000-0000-0000-0018-000000000521}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000296}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000522}, !- Inlet Port {00000000-0000-0000-0018-000000000520}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000297}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000525}, !- Inlet Port {00000000-0000-0000-0018-000000000526}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000298}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000759}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000299}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000764}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000300}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000517}, !- Inlet Port {00000000-0000-0000-0018-000000000524}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000301}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000523}, !- Inlet Port {00000000-0000-0000-0018-000000000518}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000302}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000539}, !- Inlet Port {00000000-0000-0000-0018-000000000541}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000303}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000542}, !- Inlet Port {00000000-0000-0000-0018-000000000540}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000304}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000545}, !- Inlet Port {00000000-0000-0000-0018-000000000546}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000305}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000765}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000306}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000770}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000307}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000537}, !- Inlet Port {00000000-0000-0000-0018-000000000544}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000308}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000543}, !- Inlet Port {00000000-0000-0000-0018-000000000538}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000309}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000239}, !- Inlet Port {00000000-0000-0000-0018-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000310}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000242}, !- Inlet Port {00000000-0000-0000-0018-000000000240}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000311}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000245}, !- Inlet Port {00000000-0000-0000-0018-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000312}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000771}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000313}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000776}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000314}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000237}, !- Inlet Port {00000000-0000-0000-0018-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000315}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000243}, !- Inlet Port {00000000-0000-0000-0018-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000316}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000259}, !- Inlet Port {00000000-0000-0000-0018-000000000261}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000317}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000262}, !- Inlet Port {00000000-0000-0000-0018-000000000260}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000318}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000265}, !- Inlet Port {00000000-0000-0000-0018-000000000266}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000319}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000777}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000320}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000782}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000321}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000257}, !- Inlet Port {00000000-0000-0000-0018-000000000264}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000322}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000263}, !- Inlet Port {00000000-0000-0000-0018-000000000258}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000323}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000279}, !- Inlet Port {00000000-0000-0000-0018-000000000281}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000324}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000282}, !- Inlet Port {00000000-0000-0000-0018-000000000280}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000325}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000285}, !- Inlet Port {00000000-0000-0000-0018-000000000286}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000326}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000783}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000327}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000788}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000328}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000277}, !- Inlet Port {00000000-0000-0000-0018-000000000284}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000329}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000283}, !- Inlet Port {00000000-0000-0000-0018-000000000278}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000330}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000299}, !- Inlet Port {00000000-0000-0000-0018-000000000301}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000331}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000302}, !- Inlet Port {00000000-0000-0000-0018-000000000300}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000332}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000305}, !- Inlet Port {00000000-0000-0000-0018-000000000306}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000333}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000789}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000334}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000794}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000335}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000297}, !- Inlet Port {00000000-0000-0000-0018-000000000304}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000336}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000303}, !- Inlet Port {00000000-0000-0000-0018-000000000298}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000337}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000319}, !- Inlet Port {00000000-0000-0000-0018-000000000321}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000338}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000322}, !- Inlet Port {00000000-0000-0000-0018-000000000320}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000339}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000325}, !- Inlet Port {00000000-0000-0000-0018-000000000326}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000340}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000795}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000341}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000800}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000342}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000317}, !- Inlet Port {00000000-0000-0000-0018-000000000324}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000343}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000323}, !- Inlet Port {00000000-0000-0000-0018-000000000318}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000344}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000339}, !- Inlet Port {00000000-0000-0000-0018-000000000341}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000345}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000342}, !- Inlet Port {00000000-0000-0000-0018-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000346}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000345}, !- Inlet Port {00000000-0000-0000-0018-000000000346}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000347}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000801}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000348}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000806}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000349}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000337}, !- Inlet Port {00000000-0000-0000-0018-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000350}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000343}, !- Inlet Port {00000000-0000-0000-0018-000000000338}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000351}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000359}, !- Inlet Port {00000000-0000-0000-0018-000000000361}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000352}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000362}, !- Inlet Port {00000000-0000-0000-0018-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000353}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000365}, !- Inlet Port {00000000-0000-0000-0018-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000354}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000807}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000355}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000812}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000356}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000357}, !- Inlet Port {00000000-0000-0000-0018-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000357}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000363}, !- Inlet Port {00000000-0000-0000-0018-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000358}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000379}, !- Inlet Port {00000000-0000-0000-0018-000000000381}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000359}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000382}, !- Inlet Port {00000000-0000-0000-0018-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000360}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000385}, !- Inlet Port {00000000-0000-0000-0018-000000000386}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000361}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000362}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000818}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000363}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000377}, !- Inlet Port {00000000-0000-0000-0018-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000364}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000383}, !- Inlet Port {00000000-0000-0000-0018-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000365}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000199}, !- Inlet Port {00000000-0000-0000-0018-000000000201}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000366}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000202}, !- Inlet Port {00000000-0000-0000-0018-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000367}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000205}, !- Inlet Port {00000000-0000-0000-0018-000000000206}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000368}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000711}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000369}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000716}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000370}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000197}, !- Inlet Port {00000000-0000-0000-0018-000000000204}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000371}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000203}, !- Inlet Port {00000000-0000-0000-0018-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000372}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000718}, !- Inlet Port {00000000-0000-0000-0018-000000000719}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000373}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000720}, !- Inlet Port {00000000-0000-0000-0018-000000000721}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000374}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000724}, !- Inlet Port {00000000-0000-0000-0018-000000000725}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000375}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000726}, !- Inlet Port {00000000-0000-0000-0018-000000000727}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000376}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000730}, !- Inlet Port {00000000-0000-0000-0018-000000000731}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000377}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000732}, !- Inlet Port {00000000-0000-0000-0018-000000000733}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000378}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000736}, !- Inlet Port {00000000-0000-0000-0018-000000000737}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000379}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000738}, !- Inlet Port {00000000-0000-0000-0018-000000000739}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000380}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000742}, !- Inlet Port {00000000-0000-0000-0018-000000000743}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000381}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000744}, !- Inlet Port {00000000-0000-0000-0018-000000000745}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000382}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000748}, !- Inlet Port {00000000-0000-0000-0018-000000000749}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000383}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000750}, !- Inlet Port {00000000-0000-0000-0018-000000000751}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000384}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000754}, !- Inlet Port {00000000-0000-0000-0018-000000000755}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000385}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000756}, !- Inlet Port {00000000-0000-0000-0018-000000000757}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000386}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000760}, !- Inlet Port {00000000-0000-0000-0018-000000000761}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000387}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000762}, !- Inlet Port {00000000-0000-0000-0018-000000000763}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000388}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000766}, !- Inlet Port {00000000-0000-0000-0018-000000000767}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000389}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000768}, !- Inlet Port {00000000-0000-0000-0018-000000000769}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000390}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000772}, !- Inlet Port {00000000-0000-0000-0018-000000000773}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000391}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000774}, !- Inlet Port {00000000-0000-0000-0018-000000000775}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000392}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000778}, !- Inlet Port {00000000-0000-0000-0018-000000000779}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000393}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000780}, !- Inlet Port {00000000-0000-0000-0018-000000000781}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000394}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000784}, !- Inlet Port {00000000-0000-0000-0018-000000000785}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000395}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000786}, !- Inlet Port {00000000-0000-0000-0018-000000000787}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000396}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000790}, !- Inlet Port {00000000-0000-0000-0018-000000000791}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000397}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000792}, !- Inlet Port {00000000-0000-0000-0018-000000000793}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000398}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000796}, !- Inlet Port {00000000-0000-0000-0018-000000000797}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000399}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000798}, !- Inlet Port {00000000-0000-0000-0018-000000000799}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000400}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000802}, !- Inlet Port {00000000-0000-0000-0018-000000000803}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000401}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000804}, !- Inlet Port {00000000-0000-0000-0018-000000000805}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000402}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000808}, !- Inlet Port {00000000-0000-0000-0018-000000000809}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000403}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000810}, !- Inlet Port {00000000-0000-0000-0018-000000000811}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000404}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000814}, !- Inlet Port {00000000-0000-0000-0018-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000405}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000816}, !- Inlet Port {00000000-0000-0000-0018-000000000817}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000406}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000712}, !- Inlet Port {00000000-0000-0000-0018-000000000713}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000407}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000714}, !- Inlet Port {00000000-0000-0000-0018-000000000715}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000408}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000129}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000409}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000410}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000135}, !- Inlet Port {00000000-0000-0000-0018-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000411}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000825}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000412}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000830}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000413}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000127}, !- Inlet Port {00000000-0000-0000-0018-000000000134}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000414}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000133}, !- Inlet Port {00000000-0000-0000-0018-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000415}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000100}, !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000416}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000417}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000106}, !- Inlet Port {00000000-0000-0000-0018-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000418}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000419}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000824}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000420}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000105}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000421}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000104}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000422}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000826}, !- Inlet Port {00000000-0000-0000-0018-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000423}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000828}, !- Inlet Port {00000000-0000-0000-0018-000000000829}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000424}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000820}, !- Inlet Port {00000000-0000-0000-0018-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000425}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000822}, !- Inlet Port {00000000-0000-0000-0018-000000000823}; !- Outlet Port @@ -23501,7 +23501,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23522,7 +23522,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23531,7 +23531,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23540,7 +23540,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -23555,7 +23555,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23564,7 +23564,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23573,7 +23573,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23588,7 +23588,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23597,7 +23597,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23606,7 +23606,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23621,7 +23621,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23630,7 +23630,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23639,7 +23639,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23654,7 +23654,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23663,7 +23663,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23672,7 +23672,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23693,7 +23693,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23702,7 +23702,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23711,7 +23711,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23732,7 +23732,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23741,7 +23741,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23750,7 +23750,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23771,7 +23771,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23780,7 +23780,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23789,7 +23789,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23804,7 +23804,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23813,7 +23813,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23822,7 +23822,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23837,7 +23837,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23846,7 +23846,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23855,7 +23855,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23870,7 +23870,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23879,7 +23879,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23888,7 +23888,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23909,7 +23909,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23918,7 +23918,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23927,7 +23927,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23948,7 +23948,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23957,7 +23957,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23966,7 +23966,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23981,7 +23981,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23990,7 +23990,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23999,7 +23999,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24020,7 +24020,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24029,7 +24029,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24038,7 +24038,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24053,7 +24053,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24062,7 +24062,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24071,7 +24071,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -24086,7 +24086,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24095,7 +24095,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000217}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24104,7 +24104,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000218}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24125,7 +24125,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000219}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24134,7 +24134,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000220}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24143,7 +24143,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000221}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24164,7 +24164,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000222}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24173,7 +24173,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000223}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24182,7 +24182,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000224}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24203,7 +24203,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000225}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24212,7 +24212,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000226}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -26781,7 +26781,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000168}, !- Summer Design Day Schedule Name @@ -26789,7 +26789,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000171}, !- Summer Design Day Schedule Name @@ -26797,7 +26797,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000174}, !- Summer Design Day Schedule Name @@ -26805,7 +26805,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000177}, !- Summer Design Day Schedule Name @@ -26813,7 +26813,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000179}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000180}, !- Summer Design Day Schedule Name @@ -26821,7 +26821,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000182}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000183}, !- Summer Design Day Schedule Name @@ -26829,7 +26829,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000186}, !- Summer Design Day Schedule Name @@ -26837,7 +26837,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000189}, !- Summer Design Day Schedule Name @@ -26845,7 +26845,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000192}, !- Summer Design Day Schedule Name @@ -26853,7 +26853,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000195}, !- Summer Design Day Schedule Name @@ -26861,7 +26861,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000198}, !- Summer Design Day Schedule Name @@ -26869,7 +26869,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000201}, !- Summer Design Day Schedule Name @@ -26877,7 +26877,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000204}, !- Summer Design Day Schedule Name @@ -26885,7 +26885,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000206}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000207}, !- Summer Design Day Schedule Name @@ -26893,7 +26893,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000209}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000210}, !- Summer Design Day Schedule Name @@ -26901,7 +26901,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000212}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000213}, !- Summer Design Day Schedule Name @@ -26909,7 +26909,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000215}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000216}, !- Summer Design Day Schedule Name @@ -26917,7 +26917,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000218}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000219}, !- Summer Design Day Schedule Name @@ -26925,7 +26925,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000221}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000222}, !- Summer Design Day Schedule Name @@ -26933,7 +26933,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000224}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000225}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index c746b199cb..a2f703ce32 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000058}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000059}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000060}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -14337,7 +14337,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14345,7 +14345,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14353,7 +14353,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_ClgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14361,7 +14361,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_HtgSch0, !- Name {00000000-0000-0000-0069-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14369,7 +14369,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14377,7 +14377,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14385,7 +14385,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_ClgSch0, !- Name {00000000-0000-0000-0069-000000000027}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14393,7 +14393,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000008}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_HtgSch0, !- Name {00000000-0000-0000-0069-000000000028}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14401,7 +14401,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000009}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_ClgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14409,7 +14409,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000010}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_HtgSch0, !- Name {00000000-0000-0000-0069-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14417,7 +14417,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000011}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_ClgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14425,7 +14425,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000012}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_HtgSch0, !- Name {00000000-0000-0000-0069-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14433,7 +14433,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000013}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14441,7 +14441,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000014}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0069-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14449,7 +14449,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000015}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14457,7 +14457,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000016}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0069-000000000035}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14465,209 +14465,209 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6e4907e3-ee00-4c35-b945-c43bb7589f4e}<23.9 && {6e4907e3-ee00-4c35-b945-c43bb7589f4e}>1.7, !- Program Line 1 - SET {619c9adf-1c2a-4406-8964-98914b82fcc2} = 29.4, !- Program Line 2 - SET {890a7607-19c6-4d25-a511-56099e9233b8} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6e4907e3-ee00-4c35-b945-c43bb7589f4e}<23.9 && {6e4907e3-ee00-4c35-b945-c43bb7589f4e}>1.7, !- Program Line 4 - SET {619c9adf-1c2a-4406-8964-98914b82fcc2} = 29.4, !- Program Line 5 - SET {890a7607-19c6-4d25-a511-56099e9233b8} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6e4907e3-ee00-4c35-b945-c43bb7589f4e}<23.9 && {6e4907e3-ee00-4c35-b945-c43bb7589f4e}>1.7, !- Program Line 7 - SET {619c9adf-1c2a-4406-8964-98914b82fcc2} = 29.4, !- Program Line 8 - SET {890a7607-19c6-4d25-a511-56099e9233b8} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6e4907e3-ee00-4c35-b945-c43bb7589f4e}<23.9 && {6e4907e3-ee00-4c35-b945-c43bb7589f4e}>1.7, !- Program Line 10 - SET {619c9adf-1c2a-4406-8964-98914b82fcc2} = 29.4, !- Program Line 11 - SET {890a7607-19c6-4d25-a511-56099e9233b8} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a9bc72ac-e411-471f-b8d3-3345c7145d44}<23.9 && {a9bc72ac-e411-471f-b8d3-3345c7145d44}>1.7, !- Program Line 1 + SET {0043dfbd-3a92-4c76-a2a5-26a4d8369e4b} = 29.4, !- Program Line 2 + SET {284b9f4c-5e5f-42df-9347-a8a81f736840} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a9bc72ac-e411-471f-b8d3-3345c7145d44}<23.9 && {a9bc72ac-e411-471f-b8d3-3345c7145d44}>1.7, !- Program Line 4 + SET {0043dfbd-3a92-4c76-a2a5-26a4d8369e4b} = 29.4, !- Program Line 5 + SET {284b9f4c-5e5f-42df-9347-a8a81f736840} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a9bc72ac-e411-471f-b8d3-3345c7145d44}<23.9 && {a9bc72ac-e411-471f-b8d3-3345c7145d44}>1.7, !- Program Line 7 + SET {0043dfbd-3a92-4c76-a2a5-26a4d8369e4b} = 29.4, !- Program Line 8 + SET {284b9f4c-5e5f-42df-9347-a8a81f736840} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a9bc72ac-e411-471f-b8d3-3345c7145d44}<23.9 && {a9bc72ac-e411-471f-b8d3-3345c7145d44}>1.7, !- Program Line 10 + SET {0043dfbd-3a92-4c76-a2a5-26a4d8369e4b} = 29.4, !- Program Line 11 + SET {284b9f4c-5e5f-42df-9347-a8a81f736840} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {619c9adf-1c2a-4406-8964-98914b82fcc2} = NULL, !- Program Line 14 - SET {890a7607-19c6-4d25-a511-56099e9233b8} = NULL, !- Program Line 15 + SET {0043dfbd-3a92-4c76-a2a5-26a4d8369e4b} = NULL, !- Program Line 14 + SET {284b9f4c-5e5f-42df-9347-a8a81f736840} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e78f5590-e1b2-4d6b-9f04-8a58f22c3bad}<23.9 && {e78f5590-e1b2-4d6b-9f04-8a58f22c3bad}>1.7, !- Program Line 1 - SET {c7aeda64-6140-4df4-bd1f-a38d8b367d5d} = 29.4, !- Program Line 2 - SET {a70de528-a0c1-44bb-948e-84aab7f3c49b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e78f5590-e1b2-4d6b-9f04-8a58f22c3bad}<23.9 && {e78f5590-e1b2-4d6b-9f04-8a58f22c3bad}>1.7, !- Program Line 4 - SET {c7aeda64-6140-4df4-bd1f-a38d8b367d5d} = 29.4, !- Program Line 5 - SET {a70de528-a0c1-44bb-948e-84aab7f3c49b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e78f5590-e1b2-4d6b-9f04-8a58f22c3bad}<23.9 && {e78f5590-e1b2-4d6b-9f04-8a58f22c3bad}>1.7, !- Program Line 7 - SET {c7aeda64-6140-4df4-bd1f-a38d8b367d5d} = 29.4, !- Program Line 8 - SET {a70de528-a0c1-44bb-948e-84aab7f3c49b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e78f5590-e1b2-4d6b-9f04-8a58f22c3bad}<23.9 && {e78f5590-e1b2-4d6b-9f04-8a58f22c3bad}>1.7, !- Program Line 10 - SET {c7aeda64-6140-4df4-bd1f-a38d8b367d5d} = 29.4, !- Program Line 11 - SET {a70de528-a0c1-44bb-948e-84aab7f3c49b} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {47f8bd5d-5a6f-4bc9-bef2-2db3cfefc535}<23.9 && {47f8bd5d-5a6f-4bc9-bef2-2db3cfefc535}>1.7, !- Program Line 1 + SET {da62895a-4b6d-45fa-a4a4-3d04b94009d5} = 29.4, !- Program Line 2 + SET {eac4a3c1-8ec4-49f5-aed0-74eb520f62bd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {47f8bd5d-5a6f-4bc9-bef2-2db3cfefc535}<23.9 && {47f8bd5d-5a6f-4bc9-bef2-2db3cfefc535}>1.7, !- Program Line 4 + SET {da62895a-4b6d-45fa-a4a4-3d04b94009d5} = 29.4, !- Program Line 5 + SET {eac4a3c1-8ec4-49f5-aed0-74eb520f62bd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {47f8bd5d-5a6f-4bc9-bef2-2db3cfefc535}<23.9 && {47f8bd5d-5a6f-4bc9-bef2-2db3cfefc535}>1.7, !- Program Line 7 + SET {da62895a-4b6d-45fa-a4a4-3d04b94009d5} = 29.4, !- Program Line 8 + SET {eac4a3c1-8ec4-49f5-aed0-74eb520f62bd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {47f8bd5d-5a6f-4bc9-bef2-2db3cfefc535}<23.9 && {47f8bd5d-5a6f-4bc9-bef2-2db3cfefc535}>1.7, !- Program Line 10 + SET {da62895a-4b6d-45fa-a4a4-3d04b94009d5} = 29.4, !- Program Line 11 + SET {eac4a3c1-8ec4-49f5-aed0-74eb520f62bd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c7aeda64-6140-4df4-bd1f-a38d8b367d5d} = NULL, !- Program Line 14 - SET {a70de528-a0c1-44bb-948e-84aab7f3c49b} = NULL, !- Program Line 15 + SET {da62895a-4b6d-45fa-a4a4-3d04b94009d5} = NULL, !- Program Line 14 + SET {eac4a3c1-8ec4-49f5-aed0-74eb520f62bd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9e3254e2-eeb4-4351-9c8d-453fae54e8b8}<23.9 && {9e3254e2-eeb4-4351-9c8d-453fae54e8b8}>1.7, !- Program Line 1 - SET {47a62751-135e-450b-b571-047521ccb8c8} = 29.4, !- Program Line 2 - SET {2db6787f-2073-45c1-bcb7-0bb40501c0cf} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9e3254e2-eeb4-4351-9c8d-453fae54e8b8}<23.9 && {9e3254e2-eeb4-4351-9c8d-453fae54e8b8}>1.7, !- Program Line 4 - SET {47a62751-135e-450b-b571-047521ccb8c8} = 29.4, !- Program Line 5 - SET {2db6787f-2073-45c1-bcb7-0bb40501c0cf} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9e3254e2-eeb4-4351-9c8d-453fae54e8b8}<23.9 && {9e3254e2-eeb4-4351-9c8d-453fae54e8b8}>1.7, !- Program Line 7 - SET {47a62751-135e-450b-b571-047521ccb8c8} = 29.4, !- Program Line 8 - SET {2db6787f-2073-45c1-bcb7-0bb40501c0cf} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9e3254e2-eeb4-4351-9c8d-453fae54e8b8}<23.9 && {9e3254e2-eeb4-4351-9c8d-453fae54e8b8}>1.7, !- Program Line 10 - SET {47a62751-135e-450b-b571-047521ccb8c8} = 29.4, !- Program Line 11 - SET {2db6787f-2073-45c1-bcb7-0bb40501c0cf} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {68c9d2c7-d064-4f23-9a0f-74f962e1909d}<23.9 && {68c9d2c7-d064-4f23-9a0f-74f962e1909d}>1.7, !- Program Line 1 + SET {4159a89c-8e46-4f76-81d4-c859a68ef008} = 29.4, !- Program Line 2 + SET {f1f8eb94-d7b5-4db2-b69e-09f6f43f8e96} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {68c9d2c7-d064-4f23-9a0f-74f962e1909d}<23.9 && {68c9d2c7-d064-4f23-9a0f-74f962e1909d}>1.7, !- Program Line 4 + SET {4159a89c-8e46-4f76-81d4-c859a68ef008} = 29.4, !- Program Line 5 + SET {f1f8eb94-d7b5-4db2-b69e-09f6f43f8e96} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {68c9d2c7-d064-4f23-9a0f-74f962e1909d}<23.9 && {68c9d2c7-d064-4f23-9a0f-74f962e1909d}>1.7, !- Program Line 7 + SET {4159a89c-8e46-4f76-81d4-c859a68ef008} = 29.4, !- Program Line 8 + SET {f1f8eb94-d7b5-4db2-b69e-09f6f43f8e96} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {68c9d2c7-d064-4f23-9a0f-74f962e1909d}<23.9 && {68c9d2c7-d064-4f23-9a0f-74f962e1909d}>1.7, !- Program Line 10 + SET {4159a89c-8e46-4f76-81d4-c859a68ef008} = 29.4, !- Program Line 11 + SET {f1f8eb94-d7b5-4db2-b69e-09f6f43f8e96} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {47a62751-135e-450b-b571-047521ccb8c8} = NULL, !- Program Line 14 - SET {2db6787f-2073-45c1-bcb7-0bb40501c0cf} = NULL, !- Program Line 15 + SET {4159a89c-8e46-4f76-81d4-c859a68ef008} = NULL, !- Program Line 14 + SET {f1f8eb94-d7b5-4db2-b69e-09f6f43f8e96} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {958ca126-0552-419f-b9ea-be9b2fb72078}<23.9 && {958ca126-0552-419f-b9ea-be9b2fb72078}>1.7, !- Program Line 1 - SET {6b343c4f-d774-45db-a90c-ac92da41e49a} = 29.4, !- Program Line 2 - SET {07f81809-0965-4289-bbdc-83269cf863e5} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {958ca126-0552-419f-b9ea-be9b2fb72078}<23.9 && {958ca126-0552-419f-b9ea-be9b2fb72078}>1.7, !- Program Line 4 - SET {6b343c4f-d774-45db-a90c-ac92da41e49a} = 29.4, !- Program Line 5 - SET {07f81809-0965-4289-bbdc-83269cf863e5} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {958ca126-0552-419f-b9ea-be9b2fb72078}<23.9 && {958ca126-0552-419f-b9ea-be9b2fb72078}>1.7, !- Program Line 7 - SET {6b343c4f-d774-45db-a90c-ac92da41e49a} = 29.4, !- Program Line 8 - SET {07f81809-0965-4289-bbdc-83269cf863e5} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {958ca126-0552-419f-b9ea-be9b2fb72078}<23.9 && {958ca126-0552-419f-b9ea-be9b2fb72078}>1.7, !- Program Line 10 - SET {6b343c4f-d774-45db-a90c-ac92da41e49a} = 29.4, !- Program Line 11 - SET {07f81809-0965-4289-bbdc-83269cf863e5} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {79e5ab7d-e3f8-478d-9350-b074a6b275d9}<23.9 && {79e5ab7d-e3f8-478d-9350-b074a6b275d9}>1.7, !- Program Line 1 + SET {a1febc6d-192e-499b-adf2-be9e1f50f6d5} = 29.4, !- Program Line 2 + SET {6e96aa66-a650-4483-9735-7655898579a4} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {79e5ab7d-e3f8-478d-9350-b074a6b275d9}<23.9 && {79e5ab7d-e3f8-478d-9350-b074a6b275d9}>1.7, !- Program Line 4 + SET {a1febc6d-192e-499b-adf2-be9e1f50f6d5} = 29.4, !- Program Line 5 + SET {6e96aa66-a650-4483-9735-7655898579a4} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {79e5ab7d-e3f8-478d-9350-b074a6b275d9}<23.9 && {79e5ab7d-e3f8-478d-9350-b074a6b275d9}>1.7, !- Program Line 7 + SET {a1febc6d-192e-499b-adf2-be9e1f50f6d5} = 29.4, !- Program Line 8 + SET {6e96aa66-a650-4483-9735-7655898579a4} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {79e5ab7d-e3f8-478d-9350-b074a6b275d9}<23.9 && {79e5ab7d-e3f8-478d-9350-b074a6b275d9}>1.7, !- Program Line 10 + SET {a1febc6d-192e-499b-adf2-be9e1f50f6d5} = 29.4, !- Program Line 11 + SET {6e96aa66-a650-4483-9735-7655898579a4} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6b343c4f-d774-45db-a90c-ac92da41e49a} = NULL, !- Program Line 14 - SET {07f81809-0965-4289-bbdc-83269cf863e5} = NULL, !- Program Line 15 + SET {a1febc6d-192e-499b-adf2-be9e1f50f6d5} = NULL, !- Program Line 14 + SET {6e96aa66-a650-4483-9735-7655898579a4} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4eb1c4a8-f6db-4654-8dc2-aff38b54be7c}<23.9 && {4eb1c4a8-f6db-4654-8dc2-aff38b54be7c}>1.7, !- Program Line 1 - SET {1b6492ae-8ccc-44ad-a2ae-213123cbc070} = 29.4, !- Program Line 2 - SET {9f1a993f-a893-4031-809f-a801463e7936} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4eb1c4a8-f6db-4654-8dc2-aff38b54be7c}<23.9 && {4eb1c4a8-f6db-4654-8dc2-aff38b54be7c}>1.7, !- Program Line 4 - SET {1b6492ae-8ccc-44ad-a2ae-213123cbc070} = 29.4, !- Program Line 5 - SET {9f1a993f-a893-4031-809f-a801463e7936} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4eb1c4a8-f6db-4654-8dc2-aff38b54be7c}<23.9 && {4eb1c4a8-f6db-4654-8dc2-aff38b54be7c}>1.7, !- Program Line 7 - SET {1b6492ae-8ccc-44ad-a2ae-213123cbc070} = 29.4, !- Program Line 8 - SET {9f1a993f-a893-4031-809f-a801463e7936} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4eb1c4a8-f6db-4654-8dc2-aff38b54be7c}<23.9 && {4eb1c4a8-f6db-4654-8dc2-aff38b54be7c}>1.7, !- Program Line 10 - SET {1b6492ae-8ccc-44ad-a2ae-213123cbc070} = 29.4, !- Program Line 11 - SET {9f1a993f-a893-4031-809f-a801463e7936} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {625a3061-ba56-48e8-a2cd-bbe8e5aa0d65}<23.9 && {625a3061-ba56-48e8-a2cd-bbe8e5aa0d65}>1.7, !- Program Line 1 + SET {0156ac58-b6ac-4f4c-bff1-d9868ff2c469} = 29.4, !- Program Line 2 + SET {5020622f-6da4-40d7-a26a-c7e715c16bb9} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {625a3061-ba56-48e8-a2cd-bbe8e5aa0d65}<23.9 && {625a3061-ba56-48e8-a2cd-bbe8e5aa0d65}>1.7, !- Program Line 4 + SET {0156ac58-b6ac-4f4c-bff1-d9868ff2c469} = 29.4, !- Program Line 5 + SET {5020622f-6da4-40d7-a26a-c7e715c16bb9} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {625a3061-ba56-48e8-a2cd-bbe8e5aa0d65}<23.9 && {625a3061-ba56-48e8-a2cd-bbe8e5aa0d65}>1.7, !- Program Line 7 + SET {0156ac58-b6ac-4f4c-bff1-d9868ff2c469} = 29.4, !- Program Line 8 + SET {5020622f-6da4-40d7-a26a-c7e715c16bb9} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {625a3061-ba56-48e8-a2cd-bbe8e5aa0d65}<23.9 && {625a3061-ba56-48e8-a2cd-bbe8e5aa0d65}>1.7, !- Program Line 10 + SET {0156ac58-b6ac-4f4c-bff1-d9868ff2c469} = 29.4, !- Program Line 11 + SET {5020622f-6da4-40d7-a26a-c7e715c16bb9} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1b6492ae-8ccc-44ad-a2ae-213123cbc070} = NULL, !- Program Line 14 - SET {9f1a993f-a893-4031-809f-a801463e7936} = NULL, !- Program Line 15 + SET {0156ac58-b6ac-4f4c-bff1-d9868ff2c469} = NULL, !- Program Line 14 + SET {5020622f-6da4-40d7-a26a-c7e715c16bb9} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {39055c5b-96df-43f0-92ab-c6d5af46c7fc}<23.9 && {39055c5b-96df-43f0-92ab-c6d5af46c7fc}>1.7, !- Program Line 1 - SET {8edc3c08-df80-42c5-8450-49f592e83afb} = 29.4, !- Program Line 2 - SET {56551635-cc31-4bc8-aac2-c9b51f42416c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {39055c5b-96df-43f0-92ab-c6d5af46c7fc}<23.9 && {39055c5b-96df-43f0-92ab-c6d5af46c7fc}>1.7, !- Program Line 4 - SET {8edc3c08-df80-42c5-8450-49f592e83afb} = 29.4, !- Program Line 5 - SET {56551635-cc31-4bc8-aac2-c9b51f42416c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {39055c5b-96df-43f0-92ab-c6d5af46c7fc}<23.9 && {39055c5b-96df-43f0-92ab-c6d5af46c7fc}>1.7, !- Program Line 7 - SET {8edc3c08-df80-42c5-8450-49f592e83afb} = 29.4, !- Program Line 8 - SET {56551635-cc31-4bc8-aac2-c9b51f42416c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {39055c5b-96df-43f0-92ab-c6d5af46c7fc}<23.9 && {39055c5b-96df-43f0-92ab-c6d5af46c7fc}>1.7, !- Program Line 10 - SET {8edc3c08-df80-42c5-8450-49f592e83afb} = 29.4, !- Program Line 11 - SET {56551635-cc31-4bc8-aac2-c9b51f42416c} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {153eb4c4-d023-4be0-9178-332512ad5a92}<23.9 && {153eb4c4-d023-4be0-9178-332512ad5a92}>1.7, !- Program Line 1 + SET {f27abf35-17f7-42ae-a02b-8912d406da98} = 29.4, !- Program Line 2 + SET {62f24e65-adb9-4e66-aebf-714624c6ddf0} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {153eb4c4-d023-4be0-9178-332512ad5a92}<23.9 && {153eb4c4-d023-4be0-9178-332512ad5a92}>1.7, !- Program Line 4 + SET {f27abf35-17f7-42ae-a02b-8912d406da98} = 29.4, !- Program Line 5 + SET {62f24e65-adb9-4e66-aebf-714624c6ddf0} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {153eb4c4-d023-4be0-9178-332512ad5a92}<23.9 && {153eb4c4-d023-4be0-9178-332512ad5a92}>1.7, !- Program Line 7 + SET {f27abf35-17f7-42ae-a02b-8912d406da98} = 29.4, !- Program Line 8 + SET {62f24e65-adb9-4e66-aebf-714624c6ddf0} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {153eb4c4-d023-4be0-9178-332512ad5a92}<23.9 && {153eb4c4-d023-4be0-9178-332512ad5a92}>1.7, !- Program Line 10 + SET {f27abf35-17f7-42ae-a02b-8912d406da98} = 29.4, !- Program Line 11 + SET {62f24e65-adb9-4e66-aebf-714624c6ddf0} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8edc3c08-df80-42c5-8450-49f592e83afb} = NULL, !- Program Line 14 - SET {56551635-cc31-4bc8-aac2-c9b51f42416c} = NULL, !- Program Line 15 + SET {f27abf35-17f7-42ae-a02b-8912d406da98} = NULL, !- Program Line 14 + SET {62f24e65-adb9-4e66-aebf-714624c6ddf0} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {295f80d5-a436-4f0f-9e1f-d3f1a86b160b}<23.9 && {295f80d5-a436-4f0f-9e1f-d3f1a86b160b}>1.7, !- Program Line 1 - SET {ff782b69-129a-4c41-b7b2-bd7332624053} = 29.4, !- Program Line 2 - SET {db3d8be8-3cc5-499c-81e5-b86be144aa1e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {295f80d5-a436-4f0f-9e1f-d3f1a86b160b}<23.9 && {295f80d5-a436-4f0f-9e1f-d3f1a86b160b}>1.7, !- Program Line 4 - SET {ff782b69-129a-4c41-b7b2-bd7332624053} = 29.4, !- Program Line 5 - SET {db3d8be8-3cc5-499c-81e5-b86be144aa1e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {295f80d5-a436-4f0f-9e1f-d3f1a86b160b}<23.9 && {295f80d5-a436-4f0f-9e1f-d3f1a86b160b}>1.7, !- Program Line 7 - SET {ff782b69-129a-4c41-b7b2-bd7332624053} = 29.4, !- Program Line 8 - SET {db3d8be8-3cc5-499c-81e5-b86be144aa1e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {295f80d5-a436-4f0f-9e1f-d3f1a86b160b}<23.9 && {295f80d5-a436-4f0f-9e1f-d3f1a86b160b}>1.7, !- Program Line 10 - SET {ff782b69-129a-4c41-b7b2-bd7332624053} = 29.4, !- Program Line 11 - SET {db3d8be8-3cc5-499c-81e5-b86be144aa1e} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {db5dd115-4412-4d1d-94a9-576669e8870b}<23.9 && {db5dd115-4412-4d1d-94a9-576669e8870b}>1.7, !- Program Line 1 + SET {60a8ef05-eba1-4be0-b100-1d348fcc130c} = 29.4, !- Program Line 2 + SET {f927ac83-8f64-4287-b562-4950facb4d6e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {db5dd115-4412-4d1d-94a9-576669e8870b}<23.9 && {db5dd115-4412-4d1d-94a9-576669e8870b}>1.7, !- Program Line 4 + SET {60a8ef05-eba1-4be0-b100-1d348fcc130c} = 29.4, !- Program Line 5 + SET {f927ac83-8f64-4287-b562-4950facb4d6e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {db5dd115-4412-4d1d-94a9-576669e8870b}<23.9 && {db5dd115-4412-4d1d-94a9-576669e8870b}>1.7, !- Program Line 7 + SET {60a8ef05-eba1-4be0-b100-1d348fcc130c} = 29.4, !- Program Line 8 + SET {f927ac83-8f64-4287-b562-4950facb4d6e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {db5dd115-4412-4d1d-94a9-576669e8870b}<23.9 && {db5dd115-4412-4d1d-94a9-576669e8870b}>1.7, !- Program Line 10 + SET {60a8ef05-eba1-4be0-b100-1d348fcc130c} = 29.4, !- Program Line 11 + SET {f927ac83-8f64-4287-b562-4950facb4d6e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ff782b69-129a-4c41-b7b2-bd7332624053} = NULL, !- Program Line 14 - SET {db3d8be8-3cc5-499c-81e5-b86be144aa1e} = NULL, !- Program Line 15 + SET {60a8ef05-eba1-4be0-b100-1d348fcc130c} = NULL, !- Program Line 14 + SET {f927ac83-8f64-4287-b562-4950facb4d6e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ee06d2e1-cd86-4ad9-9140-c6e07596aeca}<23.9 && {ee06d2e1-cd86-4ad9-9140-c6e07596aeca}>1.7, !- Program Line 1 - SET {f1ce087d-e229-4946-a23c-350d94af42b0} = 29.4, !- Program Line 2 - SET {5ade1c8b-6149-4a77-ba8b-50d69587526f} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ee06d2e1-cd86-4ad9-9140-c6e07596aeca}<23.9 && {ee06d2e1-cd86-4ad9-9140-c6e07596aeca}>1.7, !- Program Line 4 - SET {f1ce087d-e229-4946-a23c-350d94af42b0} = 29.4, !- Program Line 5 - SET {5ade1c8b-6149-4a77-ba8b-50d69587526f} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ee06d2e1-cd86-4ad9-9140-c6e07596aeca}<23.9 && {ee06d2e1-cd86-4ad9-9140-c6e07596aeca}>1.7, !- Program Line 7 - SET {f1ce087d-e229-4946-a23c-350d94af42b0} = 29.4, !- Program Line 8 - SET {5ade1c8b-6149-4a77-ba8b-50d69587526f} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ee06d2e1-cd86-4ad9-9140-c6e07596aeca}<23.9 && {ee06d2e1-cd86-4ad9-9140-c6e07596aeca}>1.7, !- Program Line 10 - SET {f1ce087d-e229-4946-a23c-350d94af42b0} = 29.4, !- Program Line 11 - SET {5ade1c8b-6149-4a77-ba8b-50d69587526f} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6b826935-bf89-4e8e-82f9-c45f67cdce17}<23.9 && {6b826935-bf89-4e8e-82f9-c45f67cdce17}>1.7, !- Program Line 1 + SET {5bc59c48-6f2a-4267-b4e6-fbc0c8bfaf1f} = 29.4, !- Program Line 2 + SET {c490506b-33a6-4161-aa34-0293a8e89ad2} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6b826935-bf89-4e8e-82f9-c45f67cdce17}<23.9 && {6b826935-bf89-4e8e-82f9-c45f67cdce17}>1.7, !- Program Line 4 + SET {5bc59c48-6f2a-4267-b4e6-fbc0c8bfaf1f} = 29.4, !- Program Line 5 + SET {c490506b-33a6-4161-aa34-0293a8e89ad2} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6b826935-bf89-4e8e-82f9-c45f67cdce17}<23.9 && {6b826935-bf89-4e8e-82f9-c45f67cdce17}>1.7, !- Program Line 7 + SET {5bc59c48-6f2a-4267-b4e6-fbc0c8bfaf1f} = 29.4, !- Program Line 8 + SET {c490506b-33a6-4161-aa34-0293a8e89ad2} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6b826935-bf89-4e8e-82f9-c45f67cdce17}<23.9 && {6b826935-bf89-4e8e-82f9-c45f67cdce17}>1.7, !- Program Line 10 + SET {5bc59c48-6f2a-4267-b4e6-fbc0c8bfaf1f} = 29.4, !- Program Line 11 + SET {c490506b-33a6-4161-aa34-0293a8e89ad2} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f1ce087d-e229-4946-a23c-350d94af42b0} = NULL, !- Program Line 14 - SET {5ade1c8b-6149-4a77-ba8b-50d69587526f} = NULL, !- Program Line 15 + SET {5bc59c48-6f2a-4267-b4e6-fbc0c8bfaf1f} = NULL, !- Program Line 14 + SET {c490506b-33a6-4161-aa34-0293a8e89ad2} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__15_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__3_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000004}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__5_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000005}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__7_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000006}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000007}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000007}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000008}; !- Program Name 1 @@ -15264,7 +15264,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15290,7 +15290,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15316,7 +15316,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15342,7 +15342,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15368,7 +15368,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15394,7 +15394,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15420,7 +15420,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15446,7 +15446,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15472,7 +15472,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15498,7 +15498,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15524,7 +15524,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15550,7 +15550,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15576,7 +15576,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15602,7 +15602,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15628,7 +15628,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15654,7 +15654,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15680,7 +15680,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15706,7 +15706,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15732,7 +15732,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15758,7 +15758,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18192,1081 +18192,1081 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000246}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000219}, !- Inlet Port {00000000-0000-0000-0018-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000247}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000222}, !- Inlet Port {00000000-0000-0000-0018-000000000220}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000248}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000225}, !- Inlet Port {00000000-0000-0000-0018-000000000226}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000249}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000717}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000250}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000722}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000251}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000217}, !- Inlet Port {00000000-0000-0000-0018-000000000224}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000252}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000223}, !- Inlet Port {00000000-0000-0000-0018-000000000218}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000253}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000399}, !- Inlet Port {00000000-0000-0000-0018-000000000401}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000254}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000402}, !- Inlet Port {00000000-0000-0000-0018-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000255}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000405}, !- Inlet Port {00000000-0000-0000-0018-000000000406}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000256}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000723}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000257}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000728}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000258}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000397}, !- Inlet Port {00000000-0000-0000-0018-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000259}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000403}, !- Inlet Port {00000000-0000-0000-0018-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000260}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000419}, !- Inlet Port {00000000-0000-0000-0018-000000000421}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000261}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000422}, !- Inlet Port {00000000-0000-0000-0018-000000000420}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000262}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000425}, !- Inlet Port {00000000-0000-0000-0018-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000263}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000729}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000264}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000734}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000265}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000417}, !- Inlet Port {00000000-0000-0000-0018-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000266}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000423}, !- Inlet Port {00000000-0000-0000-0018-000000000418}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000267}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000439}, !- Inlet Port {00000000-0000-0000-0018-000000000441}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000268}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000442}, !- Inlet Port {00000000-0000-0000-0018-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000269}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000445}, !- Inlet Port {00000000-0000-0000-0018-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000270}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000735}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000271}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000740}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000272}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000437}, !- Inlet Port {00000000-0000-0000-0018-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000273}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000443}, !- Inlet Port {00000000-0000-0000-0018-000000000438}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000274}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000459}, !- Inlet Port {00000000-0000-0000-0018-000000000461}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000275}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000462}, !- Inlet Port {00000000-0000-0000-0018-000000000460}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000276}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000465}, !- Inlet Port {00000000-0000-0000-0018-000000000466}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000277}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000741}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000278}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000746}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000279}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000457}, !- Inlet Port {00000000-0000-0000-0018-000000000464}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000280}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000463}, !- Inlet Port {00000000-0000-0000-0018-000000000458}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000281}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000479}, !- Inlet Port {00000000-0000-0000-0018-000000000481}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000282}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000482}, !- Inlet Port {00000000-0000-0000-0018-000000000480}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000283}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000485}, !- Inlet Port {00000000-0000-0000-0018-000000000486}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000284}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000747}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000285}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000752}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000286}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000477}, !- Inlet Port {00000000-0000-0000-0018-000000000484}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000287}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000483}, !- Inlet Port {00000000-0000-0000-0018-000000000478}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000288}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000499}, !- Inlet Port {00000000-0000-0000-0018-000000000501}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000289}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000502}, !- Inlet Port {00000000-0000-0000-0018-000000000500}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000290}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000505}, !- Inlet Port {00000000-0000-0000-0018-000000000506}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000291}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000753}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000292}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000758}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000293}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000497}, !- Inlet Port {00000000-0000-0000-0018-000000000504}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000294}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000503}, !- Inlet Port {00000000-0000-0000-0018-000000000498}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000295}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000519}, !- Inlet Port {00000000-0000-0000-0018-000000000521}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000296}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000522}, !- Inlet Port {00000000-0000-0000-0018-000000000520}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000297}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000525}, !- Inlet Port {00000000-0000-0000-0018-000000000526}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000298}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000759}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000299}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000764}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000300}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000517}, !- Inlet Port {00000000-0000-0000-0018-000000000524}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000301}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000523}, !- Inlet Port {00000000-0000-0000-0018-000000000518}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000302}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000539}, !- Inlet Port {00000000-0000-0000-0018-000000000541}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000303}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000542}, !- Inlet Port {00000000-0000-0000-0018-000000000540}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000304}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000545}, !- Inlet Port {00000000-0000-0000-0018-000000000546}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000305}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000765}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000306}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000770}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000307}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000537}, !- Inlet Port {00000000-0000-0000-0018-000000000544}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000308}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000543}, !- Inlet Port {00000000-0000-0000-0018-000000000538}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000309}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000239}, !- Inlet Port {00000000-0000-0000-0018-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000310}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000242}, !- Inlet Port {00000000-0000-0000-0018-000000000240}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000311}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000245}, !- Inlet Port {00000000-0000-0000-0018-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000312}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000771}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000313}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000776}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000314}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000237}, !- Inlet Port {00000000-0000-0000-0018-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000315}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000243}, !- Inlet Port {00000000-0000-0000-0018-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000316}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000259}, !- Inlet Port {00000000-0000-0000-0018-000000000261}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000317}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000262}, !- Inlet Port {00000000-0000-0000-0018-000000000260}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000318}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000265}, !- Inlet Port {00000000-0000-0000-0018-000000000266}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000319}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000777}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000320}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000782}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000321}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000257}, !- Inlet Port {00000000-0000-0000-0018-000000000264}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000322}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000263}, !- Inlet Port {00000000-0000-0000-0018-000000000258}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000323}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000279}, !- Inlet Port {00000000-0000-0000-0018-000000000281}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000324}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000282}, !- Inlet Port {00000000-0000-0000-0018-000000000280}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000325}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000285}, !- Inlet Port {00000000-0000-0000-0018-000000000286}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000326}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000783}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000327}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000788}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000328}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000277}, !- Inlet Port {00000000-0000-0000-0018-000000000284}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000329}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000283}, !- Inlet Port {00000000-0000-0000-0018-000000000278}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000330}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000299}, !- Inlet Port {00000000-0000-0000-0018-000000000301}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000331}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000302}, !- Inlet Port {00000000-0000-0000-0018-000000000300}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000332}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000305}, !- Inlet Port {00000000-0000-0000-0018-000000000306}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000333}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000789}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000334}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000794}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000335}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000297}, !- Inlet Port {00000000-0000-0000-0018-000000000304}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000336}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000303}, !- Inlet Port {00000000-0000-0000-0018-000000000298}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000337}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000319}, !- Inlet Port {00000000-0000-0000-0018-000000000321}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000338}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000322}, !- Inlet Port {00000000-0000-0000-0018-000000000320}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000339}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000325}, !- Inlet Port {00000000-0000-0000-0018-000000000326}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000340}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000795}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000341}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000800}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000342}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000317}, !- Inlet Port {00000000-0000-0000-0018-000000000324}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000343}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000323}, !- Inlet Port {00000000-0000-0000-0018-000000000318}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000344}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000339}, !- Inlet Port {00000000-0000-0000-0018-000000000341}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000345}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000342}, !- Inlet Port {00000000-0000-0000-0018-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000346}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000345}, !- Inlet Port {00000000-0000-0000-0018-000000000346}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000347}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000801}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000348}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000806}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000349}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000337}, !- Inlet Port {00000000-0000-0000-0018-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000350}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000343}, !- Inlet Port {00000000-0000-0000-0018-000000000338}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000351}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000359}, !- Inlet Port {00000000-0000-0000-0018-000000000361}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000352}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000362}, !- Inlet Port {00000000-0000-0000-0018-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000353}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000365}, !- Inlet Port {00000000-0000-0000-0018-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000354}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000807}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000355}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000812}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000356}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000357}, !- Inlet Port {00000000-0000-0000-0018-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000357}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000363}, !- Inlet Port {00000000-0000-0000-0018-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000358}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000379}, !- Inlet Port {00000000-0000-0000-0018-000000000381}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000359}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000382}, !- Inlet Port {00000000-0000-0000-0018-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000360}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000385}, !- Inlet Port {00000000-0000-0000-0018-000000000386}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000361}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000362}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000818}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000363}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000377}, !- Inlet Port {00000000-0000-0000-0018-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000364}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000383}, !- Inlet Port {00000000-0000-0000-0018-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000365}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000199}, !- Inlet Port {00000000-0000-0000-0018-000000000201}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000366}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000202}, !- Inlet Port {00000000-0000-0000-0018-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000367}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000205}, !- Inlet Port {00000000-0000-0000-0018-000000000206}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000368}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000711}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000369}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000716}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000370}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000197}, !- Inlet Port {00000000-0000-0000-0018-000000000204}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000371}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000203}, !- Inlet Port {00000000-0000-0000-0018-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000372}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000718}, !- Inlet Port {00000000-0000-0000-0018-000000000719}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000373}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000720}, !- Inlet Port {00000000-0000-0000-0018-000000000721}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000374}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000724}, !- Inlet Port {00000000-0000-0000-0018-000000000725}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000375}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000726}, !- Inlet Port {00000000-0000-0000-0018-000000000727}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000376}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000730}, !- Inlet Port {00000000-0000-0000-0018-000000000731}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000377}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000732}, !- Inlet Port {00000000-0000-0000-0018-000000000733}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000378}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000736}, !- Inlet Port {00000000-0000-0000-0018-000000000737}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000379}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000738}, !- Inlet Port {00000000-0000-0000-0018-000000000739}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000380}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000742}, !- Inlet Port {00000000-0000-0000-0018-000000000743}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000381}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000744}, !- Inlet Port {00000000-0000-0000-0018-000000000745}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000382}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000748}, !- Inlet Port {00000000-0000-0000-0018-000000000749}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000383}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000750}, !- Inlet Port {00000000-0000-0000-0018-000000000751}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000384}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000754}, !- Inlet Port {00000000-0000-0000-0018-000000000755}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000385}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000756}, !- Inlet Port {00000000-0000-0000-0018-000000000757}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000386}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000760}, !- Inlet Port {00000000-0000-0000-0018-000000000761}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000387}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000762}, !- Inlet Port {00000000-0000-0000-0018-000000000763}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000388}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000766}, !- Inlet Port {00000000-0000-0000-0018-000000000767}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000389}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000768}, !- Inlet Port {00000000-0000-0000-0018-000000000769}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000390}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000772}, !- Inlet Port {00000000-0000-0000-0018-000000000773}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000391}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000774}, !- Inlet Port {00000000-0000-0000-0018-000000000775}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000392}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000778}, !- Inlet Port {00000000-0000-0000-0018-000000000779}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000393}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000780}, !- Inlet Port {00000000-0000-0000-0018-000000000781}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000394}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000784}, !- Inlet Port {00000000-0000-0000-0018-000000000785}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000395}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000786}, !- Inlet Port {00000000-0000-0000-0018-000000000787}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000396}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000790}, !- Inlet Port {00000000-0000-0000-0018-000000000791}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000397}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000792}, !- Inlet Port {00000000-0000-0000-0018-000000000793}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000398}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000796}, !- Inlet Port {00000000-0000-0000-0018-000000000797}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000399}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000798}, !- Inlet Port {00000000-0000-0000-0018-000000000799}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000400}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000802}, !- Inlet Port {00000000-0000-0000-0018-000000000803}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000401}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000804}, !- Inlet Port {00000000-0000-0000-0018-000000000805}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000402}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000808}, !- Inlet Port {00000000-0000-0000-0018-000000000809}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000403}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000810}, !- Inlet Port {00000000-0000-0000-0018-000000000811}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000404}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000814}, !- Inlet Port {00000000-0000-0000-0018-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000405}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000816}, !- Inlet Port {00000000-0000-0000-0018-000000000817}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000406}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000712}, !- Inlet Port {00000000-0000-0000-0018-000000000713}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000407}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000714}, !- Inlet Port {00000000-0000-0000-0018-000000000715}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000408}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000129}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000409}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000410}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000135}, !- Inlet Port {00000000-0000-0000-0018-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000411}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000825}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000412}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000830}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000413}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000127}, !- Inlet Port {00000000-0000-0000-0018-000000000134}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000414}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000133}, !- Inlet Port {00000000-0000-0000-0018-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000415}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000100}, !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000416}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000417}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000106}, !- Inlet Port {00000000-0000-0000-0018-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000418}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000419}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000824}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000420}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000105}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000421}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000104}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000422}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000826}, !- Inlet Port {00000000-0000-0000-0018-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000423}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000828}, !- Inlet Port {00000000-0000-0000-0018-000000000829}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000424}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000820}, !- Inlet Port {00000000-0000-0000-0018-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000425}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000822}, !- Inlet Port {00000000-0000-0000-0018-000000000823}; !- Outlet Port @@ -23591,7 +23591,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23612,7 +23612,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23621,7 +23621,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23630,7 +23630,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -23645,7 +23645,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23654,7 +23654,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23663,7 +23663,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23678,7 +23678,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23687,7 +23687,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23696,7 +23696,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23711,7 +23711,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23720,7 +23720,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23729,7 +23729,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23744,7 +23744,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23753,7 +23753,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23762,7 +23762,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23783,7 +23783,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23792,7 +23792,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23801,7 +23801,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23822,7 +23822,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23831,7 +23831,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23840,7 +23840,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23861,7 +23861,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23870,7 +23870,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23879,7 +23879,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23894,7 +23894,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23903,7 +23903,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23912,7 +23912,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23927,7 +23927,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23936,7 +23936,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23945,7 +23945,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23960,7 +23960,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23969,7 +23969,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23978,7 +23978,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23999,7 +23999,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24008,7 +24008,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24017,7 +24017,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24038,7 +24038,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24047,7 +24047,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24056,7 +24056,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24071,7 +24071,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24080,7 +24080,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24089,7 +24089,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24110,7 +24110,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24119,7 +24119,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24128,7 +24128,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24143,7 +24143,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24152,7 +24152,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24161,7 +24161,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -24176,7 +24176,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24185,7 +24185,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000217}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24194,7 +24194,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000218}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24215,7 +24215,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000219}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24224,7 +24224,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000220}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24233,7 +24233,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000221}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24254,7 +24254,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000222}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24263,7 +24263,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000223}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24272,7 +24272,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000224}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24293,7 +24293,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000225}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24302,7 +24302,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000226}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -26871,7 +26871,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000167}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000168}, !- Summer Design Day Schedule Name @@ -26879,7 +26879,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000170}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000171}, !- Summer Design Day Schedule Name @@ -26887,7 +26887,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000173}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000174}, !- Summer Design Day Schedule Name @@ -26895,7 +26895,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000176}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000177}, !- Summer Design Day Schedule Name @@ -26903,7 +26903,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000179}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000180}, !- Summer Design Day Schedule Name @@ -26911,7 +26911,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000182}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000183}, !- Summer Design Day Schedule Name @@ -26919,7 +26919,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000186}, !- Summer Design Day Schedule Name @@ -26927,7 +26927,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000189}, !- Summer Design Day Schedule Name @@ -26935,7 +26935,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000192}, !- Summer Design Day Schedule Name @@ -26943,7 +26943,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000195}, !- Summer Design Day Schedule Name @@ -26951,7 +26951,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000198}, !- Summer Design Day Schedule Name @@ -26959,7 +26959,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000201}, !- Summer Design Day Schedule Name @@ -26967,7 +26967,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000204}, !- Summer Design Day Schedule Name @@ -26975,7 +26975,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000206}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000207}, !- Summer Design Day Schedule Name @@ -26983,7 +26983,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000209}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000210}, !- Summer Design Day Schedule Name @@ -26991,7 +26991,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000212}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000213}, !- Summer Design Day Schedule Name @@ -26999,7 +26999,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000215}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000216}, !- Summer Design Day Schedule Name @@ -27007,7 +27007,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000218}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000219}, !- Summer Design Day Schedule Name @@ -27015,7 +27015,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000221}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000222}, !- Summer Design Day Schedule Name @@ -27023,7 +27023,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000224}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000225}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-Electricity-CAN_AB_Calgary.osm index b90cc1a9f2..7db23631f8 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-Electricity-CAN_AB_Calgary.osm @@ -11067,81 +11067,81 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ee5a411a-c36f-4a49-a609-daedda4aaa64}<23.9 && {ee5a411a-c36f-4a49-a609-daedda4aaa64}>1.7, !- Program Line 1 - SET {9ddbb894-3979-4889-8a06-6dcabcd27097} = 29.4, !- Program Line 2 - SET {21c49187-2d59-48c4-999e-28d2fa609b5c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ee5a411a-c36f-4a49-a609-daedda4aaa64}<23.9 && {ee5a411a-c36f-4a49-a609-daedda4aaa64}>1.7, !- Program Line 4 - SET {9ddbb894-3979-4889-8a06-6dcabcd27097} = 29.4, !- Program Line 5 - SET {21c49187-2d59-48c4-999e-28d2fa609b5c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ee5a411a-c36f-4a49-a609-daedda4aaa64}<23.9 && {ee5a411a-c36f-4a49-a609-daedda4aaa64}>1.7, !- Program Line 7 - SET {9ddbb894-3979-4889-8a06-6dcabcd27097} = 29.4, !- Program Line 8 - SET {21c49187-2d59-48c4-999e-28d2fa609b5c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ee5a411a-c36f-4a49-a609-daedda4aaa64}<23.9 && {ee5a411a-c36f-4a49-a609-daedda4aaa64}>1.7, !- Program Line 10 - SET {9ddbb894-3979-4889-8a06-6dcabcd27097} = 29.4, !- Program Line 11 - SET {21c49187-2d59-48c4-999e-28d2fa609b5c} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6b1d0e65-3274-4123-9796-3eacaf5a81a9}<23.9 && {6b1d0e65-3274-4123-9796-3eacaf5a81a9}>1.7, !- Program Line 1 + SET {93a03682-7a3e-4ffd-955b-845c95fb0ee7} = 29.4, !- Program Line 2 + SET {e9105f67-93fb-4aa0-8bb7-a4b29ec53b1e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6b1d0e65-3274-4123-9796-3eacaf5a81a9}<23.9 && {6b1d0e65-3274-4123-9796-3eacaf5a81a9}>1.7, !- Program Line 4 + SET {93a03682-7a3e-4ffd-955b-845c95fb0ee7} = 29.4, !- Program Line 5 + SET {e9105f67-93fb-4aa0-8bb7-a4b29ec53b1e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6b1d0e65-3274-4123-9796-3eacaf5a81a9}<23.9 && {6b1d0e65-3274-4123-9796-3eacaf5a81a9}>1.7, !- Program Line 7 + SET {93a03682-7a3e-4ffd-955b-845c95fb0ee7} = 29.4, !- Program Line 8 + SET {e9105f67-93fb-4aa0-8bb7-a4b29ec53b1e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6b1d0e65-3274-4123-9796-3eacaf5a81a9}<23.9 && {6b1d0e65-3274-4123-9796-3eacaf5a81a9}>1.7, !- Program Line 10 + SET {93a03682-7a3e-4ffd-955b-845c95fb0ee7} = 29.4, !- Program Line 11 + SET {e9105f67-93fb-4aa0-8bb7-a4b29ec53b1e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {9ddbb894-3979-4889-8a06-6dcabcd27097} = NULL, !- Program Line 14 - SET {21c49187-2d59-48c4-999e-28d2fa609b5c} = NULL, !- Program Line 15 + SET {93a03682-7a3e-4ffd-955b-845c95fb0ee7} = NULL, !- Program Line 14 + SET {e9105f67-93fb-4aa0-8bb7-a4b29ec53b1e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {50ab9af8-f309-4885-90f5-2108fbee1371}<23.9 && {50ab9af8-f309-4885-90f5-2108fbee1371}>1.7, !- Program Line 1 - SET {ab17f3d9-693e-471f-9032-e0f66df3f7c9} = 29.4, !- Program Line 2 - SET {38487130-fb30-4273-9b07-ccdcb84c6281} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {50ab9af8-f309-4885-90f5-2108fbee1371}<23.9 && {50ab9af8-f309-4885-90f5-2108fbee1371}>1.7, !- Program Line 4 - SET {ab17f3d9-693e-471f-9032-e0f66df3f7c9} = 29.4, !- Program Line 5 - SET {38487130-fb30-4273-9b07-ccdcb84c6281} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {50ab9af8-f309-4885-90f5-2108fbee1371}<23.9 && {50ab9af8-f309-4885-90f5-2108fbee1371}>1.7, !- Program Line 7 - SET {ab17f3d9-693e-471f-9032-e0f66df3f7c9} = 29.4, !- Program Line 8 - SET {38487130-fb30-4273-9b07-ccdcb84c6281} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {50ab9af8-f309-4885-90f5-2108fbee1371}<23.9 && {50ab9af8-f309-4885-90f5-2108fbee1371}>1.7, !- Program Line 10 - SET {ab17f3d9-693e-471f-9032-e0f66df3f7c9} = 29.4, !- Program Line 11 - SET {38487130-fb30-4273-9b07-ccdcb84c6281} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2edba936-db3d-41e4-9cf0-bf1ea5052dff}<23.9 && {2edba936-db3d-41e4-9cf0-bf1ea5052dff}>1.7, !- Program Line 1 + SET {0d4a1458-7d0e-4e82-8747-62a6ec7fe179} = 29.4, !- Program Line 2 + SET {391d2898-0f2a-434f-9b33-a012e48f7ec8} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2edba936-db3d-41e4-9cf0-bf1ea5052dff}<23.9 && {2edba936-db3d-41e4-9cf0-bf1ea5052dff}>1.7, !- Program Line 4 + SET {0d4a1458-7d0e-4e82-8747-62a6ec7fe179} = 29.4, !- Program Line 5 + SET {391d2898-0f2a-434f-9b33-a012e48f7ec8} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2edba936-db3d-41e4-9cf0-bf1ea5052dff}<23.9 && {2edba936-db3d-41e4-9cf0-bf1ea5052dff}>1.7, !- Program Line 7 + SET {0d4a1458-7d0e-4e82-8747-62a6ec7fe179} = 29.4, !- Program Line 8 + SET {391d2898-0f2a-434f-9b33-a012e48f7ec8} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2edba936-db3d-41e4-9cf0-bf1ea5052dff}<23.9 && {2edba936-db3d-41e4-9cf0-bf1ea5052dff}>1.7, !- Program Line 10 + SET {0d4a1458-7d0e-4e82-8747-62a6ec7fe179} = 29.4, !- Program Line 11 + SET {391d2898-0f2a-434f-9b33-a012e48f7ec8} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ab17f3d9-693e-471f-9032-e0f66df3f7c9} = NULL, !- Program Line 14 - SET {38487130-fb30-4273-9b07-ccdcb84c6281} = NULL, !- Program Line 15 + SET {0d4a1458-7d0e-4e82-8747-62a6ec7fe179} = NULL, !- Program Line 14 + SET {391d2898-0f2a-434f-9b33-a012e48f7ec8} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000003}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fee7bb10-9d2f-4507-a961-5968bf489d66}<23.9 && {fee7bb10-9d2f-4507-a961-5968bf489d66}>1.7, !- Program Line 1 - SET {0c78a05f-a506-4e80-8ea0-9040c910bb01} = 29.4, !- Program Line 2 - SET {110e52e6-e358-49f6-a38d-140d27292d61} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fee7bb10-9d2f-4507-a961-5968bf489d66}<23.9 && {fee7bb10-9d2f-4507-a961-5968bf489d66}>1.7, !- Program Line 4 - SET {0c78a05f-a506-4e80-8ea0-9040c910bb01} = 29.4, !- Program Line 5 - SET {110e52e6-e358-49f6-a38d-140d27292d61} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fee7bb10-9d2f-4507-a961-5968bf489d66}<23.9 && {fee7bb10-9d2f-4507-a961-5968bf489d66}>1.7, !- Program Line 7 - SET {0c78a05f-a506-4e80-8ea0-9040c910bb01} = 29.4, !- Program Line 8 - SET {110e52e6-e358-49f6-a38d-140d27292d61} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fee7bb10-9d2f-4507-a961-5968bf489d66}<23.9 && {fee7bb10-9d2f-4507-a961-5968bf489d66}>1.7, !- Program Line 10 - SET {0c78a05f-a506-4e80-8ea0-9040c910bb01} = 29.4, !- Program Line 11 - SET {110e52e6-e358-49f6-a38d-140d27292d61} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ba4d6db2-c710-41d0-8d0d-4e00a588b261}<23.9 && {ba4d6db2-c710-41d0-8d0d-4e00a588b261}>1.7, !- Program Line 1 + SET {1b4d9e84-f72f-4e69-9421-5704813a88b4} = 29.4, !- Program Line 2 + SET {46070f01-2b7f-409d-a0fb-2f94746eb65f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ba4d6db2-c710-41d0-8d0d-4e00a588b261}<23.9 && {ba4d6db2-c710-41d0-8d0d-4e00a588b261}>1.7, !- Program Line 4 + SET {1b4d9e84-f72f-4e69-9421-5704813a88b4} = 29.4, !- Program Line 5 + SET {46070f01-2b7f-409d-a0fb-2f94746eb65f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ba4d6db2-c710-41d0-8d0d-4e00a588b261}<23.9 && {ba4d6db2-c710-41d0-8d0d-4e00a588b261}>1.7, !- Program Line 7 + SET {1b4d9e84-f72f-4e69-9421-5704813a88b4} = 29.4, !- Program Line 8 + SET {46070f01-2b7f-409d-a0fb-2f94746eb65f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ba4d6db2-c710-41d0-8d0d-4e00a588b261}<23.9 && {ba4d6db2-c710-41d0-8d0d-4e00a588b261}>1.7, !- Program Line 10 + SET {1b4d9e84-f72f-4e69-9421-5704813a88b4} = 29.4, !- Program Line 11 + SET {46070f01-2b7f-409d-a0fb-2f94746eb65f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {0c78a05f-a506-4e80-8ea0-9040c910bb01} = NULL, !- Program Line 14 - SET {110e52e6-e358-49f6-a38d-140d27292d61} = NULL, !- Program Line 15 + SET {1b4d9e84-f72f-4e69-9421-5704813a88b4} = NULL, !- Program Line 14 + SET {46070f01-2b7f-409d-a0fb-2f94746eb65f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000004}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f90e14dd-1fbf-4283-8927-c353cfb5e3ac}<23.9 && {f90e14dd-1fbf-4283-8927-c353cfb5e3ac}>1.7, !- Program Line 1 - SET {1bc0158c-e76a-4780-8cdd-2baab726761b} = 29.4, !- Program Line 2 - SET {eec16796-a4c0-46b6-b17b-4cc38de506b9} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f90e14dd-1fbf-4283-8927-c353cfb5e3ac}<23.9 && {f90e14dd-1fbf-4283-8927-c353cfb5e3ac}>1.7, !- Program Line 4 - SET {1bc0158c-e76a-4780-8cdd-2baab726761b} = 29.4, !- Program Line 5 - SET {eec16796-a4c0-46b6-b17b-4cc38de506b9} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f90e14dd-1fbf-4283-8927-c353cfb5e3ac}<23.9 && {f90e14dd-1fbf-4283-8927-c353cfb5e3ac}>1.7, !- Program Line 7 - SET {1bc0158c-e76a-4780-8cdd-2baab726761b} = 29.4, !- Program Line 8 - SET {eec16796-a4c0-46b6-b17b-4cc38de506b9} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f90e14dd-1fbf-4283-8927-c353cfb5e3ac}<23.9 && {f90e14dd-1fbf-4283-8927-c353cfb5e3ac}>1.7, !- Program Line 10 - SET {1bc0158c-e76a-4780-8cdd-2baab726761b} = 29.4, !- Program Line 11 - SET {eec16796-a4c0-46b6-b17b-4cc38de506b9} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a3fe4d13-f9c9-4424-a2b4-827b7fc0ffde}<23.9 && {a3fe4d13-f9c9-4424-a2b4-827b7fc0ffde}>1.7, !- Program Line 1 + SET {957ffd3c-0c93-4136-88af-cdd8ac1fccec} = 29.4, !- Program Line 2 + SET {87978f80-09fa-4056-82f5-8f4fd8cfa7b7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a3fe4d13-f9c9-4424-a2b4-827b7fc0ffde}<23.9 && {a3fe4d13-f9c9-4424-a2b4-827b7fc0ffde}>1.7, !- Program Line 4 + SET {957ffd3c-0c93-4136-88af-cdd8ac1fccec} = 29.4, !- Program Line 5 + SET {87978f80-09fa-4056-82f5-8f4fd8cfa7b7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a3fe4d13-f9c9-4424-a2b4-827b7fc0ffde}<23.9 && {a3fe4d13-f9c9-4424-a2b4-827b7fc0ffde}>1.7, !- Program Line 7 + SET {957ffd3c-0c93-4136-88af-cdd8ac1fccec} = 29.4, !- Program Line 8 + SET {87978f80-09fa-4056-82f5-8f4fd8cfa7b7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a3fe4d13-f9c9-4424-a2b4-827b7fc0ffde}<23.9 && {a3fe4d13-f9c9-4424-a2b4-827b7fc0ffde}>1.7, !- Program Line 10 + SET {957ffd3c-0c93-4136-88af-cdd8ac1fccec} = 29.4, !- Program Line 11 + SET {87978f80-09fa-4056-82f5-8f4fd8cfa7b7} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {1bc0158c-e76a-4780-8cdd-2baab726761b} = NULL, !- Program Line 14 - SET {eec16796-a4c0-46b6-b17b-4cc38de506b9} = NULL, !- Program Line 15 + SET {957ffd3c-0c93-4136-88af-cdd8ac1fccec} = NULL, !- Program Line 14 + SET {87978f80-09fa-4056-82f5-8f4fd8cfa7b7} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index e542bdf1ae..de945ea8f5 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000058}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000059}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -12869,7 +12869,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12877,7 +12877,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12885,7 +12885,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12893,7 +12893,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12901,7 +12901,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0066-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12909,7 +12909,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12917,7 +12917,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000007}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0066-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12925,7 +12925,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12933,105 +12933,105 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a934f8cf-b66d-4469-86a1-c906c87753ca}<23.9 && {a934f8cf-b66d-4469-86a1-c906c87753ca}>1.7, !- Program Line 1 - SET {51a63676-9032-4f22-89ff-a01f7021b8a9} = 29.4, !- Program Line 2 - SET {01b5ced7-876c-4154-8fe5-89189dc14001} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a934f8cf-b66d-4469-86a1-c906c87753ca}<23.9 && {a934f8cf-b66d-4469-86a1-c906c87753ca}>1.7, !- Program Line 4 - SET {51a63676-9032-4f22-89ff-a01f7021b8a9} = 29.4, !- Program Line 5 - SET {01b5ced7-876c-4154-8fe5-89189dc14001} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a934f8cf-b66d-4469-86a1-c906c87753ca}<23.9 && {a934f8cf-b66d-4469-86a1-c906c87753ca}>1.7, !- Program Line 7 - SET {51a63676-9032-4f22-89ff-a01f7021b8a9} = 29.4, !- Program Line 8 - SET {01b5ced7-876c-4154-8fe5-89189dc14001} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a934f8cf-b66d-4469-86a1-c906c87753ca}<23.9 && {a934f8cf-b66d-4469-86a1-c906c87753ca}>1.7, !- Program Line 10 - SET {51a63676-9032-4f22-89ff-a01f7021b8a9} = 29.4, !- Program Line 11 - SET {01b5ced7-876c-4154-8fe5-89189dc14001} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1e1f122f-5a28-41b7-a683-d8ffb7828500}<23.9 && {1e1f122f-5a28-41b7-a683-d8ffb7828500}>1.7, !- Program Line 1 + SET {1f334349-d128-4206-adaf-09c46b521732} = 29.4, !- Program Line 2 + SET {78ecb7bc-2ee7-43cf-8298-53cb5faee3fc} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1e1f122f-5a28-41b7-a683-d8ffb7828500}<23.9 && {1e1f122f-5a28-41b7-a683-d8ffb7828500}>1.7, !- Program Line 4 + SET {1f334349-d128-4206-adaf-09c46b521732} = 29.4, !- Program Line 5 + SET {78ecb7bc-2ee7-43cf-8298-53cb5faee3fc} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1e1f122f-5a28-41b7-a683-d8ffb7828500}<23.9 && {1e1f122f-5a28-41b7-a683-d8ffb7828500}>1.7, !- Program Line 7 + SET {1f334349-d128-4206-adaf-09c46b521732} = 29.4, !- Program Line 8 + SET {78ecb7bc-2ee7-43cf-8298-53cb5faee3fc} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1e1f122f-5a28-41b7-a683-d8ffb7828500}<23.9 && {1e1f122f-5a28-41b7-a683-d8ffb7828500}>1.7, !- Program Line 10 + SET {1f334349-d128-4206-adaf-09c46b521732} = 29.4, !- Program Line 11 + SET {78ecb7bc-2ee7-43cf-8298-53cb5faee3fc} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {51a63676-9032-4f22-89ff-a01f7021b8a9} = NULL, !- Program Line 14 - SET {01b5ced7-876c-4154-8fe5-89189dc14001} = NULL, !- Program Line 15 + SET {1f334349-d128-4206-adaf-09c46b521732} = NULL, !- Program Line 14 + SET {78ecb7bc-2ee7-43cf-8298-53cb5faee3fc} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4fbc31f2-1789-4929-9a5b-24799a338075}<23.9 && {4fbc31f2-1789-4929-9a5b-24799a338075}>1.7, !- Program Line 1 - SET {8c7593dc-9020-44a0-98fb-f7ad16955ac5} = 29.4, !- Program Line 2 - SET {afd49651-198e-4eaa-befa-3b471f7026d2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4fbc31f2-1789-4929-9a5b-24799a338075}<23.9 && {4fbc31f2-1789-4929-9a5b-24799a338075}>1.7, !- Program Line 4 - SET {8c7593dc-9020-44a0-98fb-f7ad16955ac5} = 29.4, !- Program Line 5 - SET {afd49651-198e-4eaa-befa-3b471f7026d2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4fbc31f2-1789-4929-9a5b-24799a338075}<23.9 && {4fbc31f2-1789-4929-9a5b-24799a338075}>1.7, !- Program Line 7 - SET {8c7593dc-9020-44a0-98fb-f7ad16955ac5} = 29.4, !- Program Line 8 - SET {afd49651-198e-4eaa-befa-3b471f7026d2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4fbc31f2-1789-4929-9a5b-24799a338075}<23.9 && {4fbc31f2-1789-4929-9a5b-24799a338075}>1.7, !- Program Line 10 - SET {8c7593dc-9020-44a0-98fb-f7ad16955ac5} = 29.4, !- Program Line 11 - SET {afd49651-198e-4eaa-befa-3b471f7026d2} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2f7a15a6-78e2-4582-be66-ec80f3be56b7}<23.9 && {2f7a15a6-78e2-4582-be66-ec80f3be56b7}>1.7, !- Program Line 1 + SET {09c42109-8f36-413c-ae34-a4f2e75e2a6d} = 29.4, !- Program Line 2 + SET {1c8c5453-1d09-45aa-999b-58ae1ce8a098} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2f7a15a6-78e2-4582-be66-ec80f3be56b7}<23.9 && {2f7a15a6-78e2-4582-be66-ec80f3be56b7}>1.7, !- Program Line 4 + SET {09c42109-8f36-413c-ae34-a4f2e75e2a6d} = 29.4, !- Program Line 5 + SET {1c8c5453-1d09-45aa-999b-58ae1ce8a098} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2f7a15a6-78e2-4582-be66-ec80f3be56b7}<23.9 && {2f7a15a6-78e2-4582-be66-ec80f3be56b7}>1.7, !- Program Line 7 + SET {09c42109-8f36-413c-ae34-a4f2e75e2a6d} = 29.4, !- Program Line 8 + SET {1c8c5453-1d09-45aa-999b-58ae1ce8a098} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2f7a15a6-78e2-4582-be66-ec80f3be56b7}<23.9 && {2f7a15a6-78e2-4582-be66-ec80f3be56b7}>1.7, !- Program Line 10 + SET {09c42109-8f36-413c-ae34-a4f2e75e2a6d} = 29.4, !- Program Line 11 + SET {1c8c5453-1d09-45aa-999b-58ae1ce8a098} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8c7593dc-9020-44a0-98fb-f7ad16955ac5} = NULL, !- Program Line 14 - SET {afd49651-198e-4eaa-befa-3b471f7026d2} = NULL, !- Program Line 15 + SET {09c42109-8f36-413c-ae34-a4f2e75e2a6d} = NULL, !- Program Line 14 + SET {1c8c5453-1d09-45aa-999b-58ae1ce8a098} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a897ef96-e57f-4625-acb5-b16e8a581b74}<23.9 && {a897ef96-e57f-4625-acb5-b16e8a581b74}>1.7, !- Program Line 1 - SET {28573854-ea05-4800-9316-012597638369} = 29.4, !- Program Line 2 - SET {d407d832-2eeb-4bf3-b7ae-570b83de1ba1} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a897ef96-e57f-4625-acb5-b16e8a581b74}<23.9 && {a897ef96-e57f-4625-acb5-b16e8a581b74}>1.7, !- Program Line 4 - SET {28573854-ea05-4800-9316-012597638369} = 29.4, !- Program Line 5 - SET {d407d832-2eeb-4bf3-b7ae-570b83de1ba1} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a897ef96-e57f-4625-acb5-b16e8a581b74}<23.9 && {a897ef96-e57f-4625-acb5-b16e8a581b74}>1.7, !- Program Line 7 - SET {28573854-ea05-4800-9316-012597638369} = 29.4, !- Program Line 8 - SET {d407d832-2eeb-4bf3-b7ae-570b83de1ba1} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a897ef96-e57f-4625-acb5-b16e8a581b74}<23.9 && {a897ef96-e57f-4625-acb5-b16e8a581b74}>1.7, !- Program Line 10 - SET {28573854-ea05-4800-9316-012597638369} = 29.4, !- Program Line 11 - SET {d407d832-2eeb-4bf3-b7ae-570b83de1ba1} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3b49fbfc-59d6-46eb-a1e0-cbc73f3b5161}<23.9 && {3b49fbfc-59d6-46eb-a1e0-cbc73f3b5161}>1.7, !- Program Line 1 + SET {6b323705-db90-4991-b12a-9a558d7715ee} = 29.4, !- Program Line 2 + SET {79e8099c-9e3e-4c59-9279-9d02b960e526} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3b49fbfc-59d6-46eb-a1e0-cbc73f3b5161}<23.9 && {3b49fbfc-59d6-46eb-a1e0-cbc73f3b5161}>1.7, !- Program Line 4 + SET {6b323705-db90-4991-b12a-9a558d7715ee} = 29.4, !- Program Line 5 + SET {79e8099c-9e3e-4c59-9279-9d02b960e526} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3b49fbfc-59d6-46eb-a1e0-cbc73f3b5161}<23.9 && {3b49fbfc-59d6-46eb-a1e0-cbc73f3b5161}>1.7, !- Program Line 7 + SET {6b323705-db90-4991-b12a-9a558d7715ee} = 29.4, !- Program Line 8 + SET {79e8099c-9e3e-4c59-9279-9d02b960e526} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3b49fbfc-59d6-46eb-a1e0-cbc73f3b5161}<23.9 && {3b49fbfc-59d6-46eb-a1e0-cbc73f3b5161}>1.7, !- Program Line 10 + SET {6b323705-db90-4991-b12a-9a558d7715ee} = 29.4, !- Program Line 11 + SET {79e8099c-9e3e-4c59-9279-9d02b960e526} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {28573854-ea05-4800-9316-012597638369} = NULL, !- Program Line 14 - SET {d407d832-2eeb-4bf3-b7ae-570b83de1ba1} = NULL, !- Program Line 15 + SET {6b323705-db90-4991-b12a-9a558d7715ee} = NULL, !- Program Line 14 + SET {79e8099c-9e3e-4c59-9279-9d02b960e526} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8f4ed769-cfc6-4a76-b07b-97c38159a105}<23.9 && {8f4ed769-cfc6-4a76-b07b-97c38159a105}>1.7, !- Program Line 1 - SET {3cb030cb-df62-4cd1-b19e-08b67ab7c08a} = 29.4, !- Program Line 2 - SET {3794b780-5c15-4cd5-87dd-9c28b2dcd627} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8f4ed769-cfc6-4a76-b07b-97c38159a105}<23.9 && {8f4ed769-cfc6-4a76-b07b-97c38159a105}>1.7, !- Program Line 4 - SET {3cb030cb-df62-4cd1-b19e-08b67ab7c08a} = 29.4, !- Program Line 5 - SET {3794b780-5c15-4cd5-87dd-9c28b2dcd627} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8f4ed769-cfc6-4a76-b07b-97c38159a105}<23.9 && {8f4ed769-cfc6-4a76-b07b-97c38159a105}>1.7, !- Program Line 7 - SET {3cb030cb-df62-4cd1-b19e-08b67ab7c08a} = 29.4, !- Program Line 8 - SET {3794b780-5c15-4cd5-87dd-9c28b2dcd627} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8f4ed769-cfc6-4a76-b07b-97c38159a105}<23.9 && {8f4ed769-cfc6-4a76-b07b-97c38159a105}>1.7, !- Program Line 10 - SET {3cb030cb-df62-4cd1-b19e-08b67ab7c08a} = 29.4, !- Program Line 11 - SET {3794b780-5c15-4cd5-87dd-9c28b2dcd627} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1770bd4d-8ba5-4d4b-ba79-853eb7b0b3dc}<23.9 && {1770bd4d-8ba5-4d4b-ba79-853eb7b0b3dc}>1.7, !- Program Line 1 + SET {e97aeb65-22cc-4537-9663-be5792353d75} = 29.4, !- Program Line 2 + SET {6304ffb5-8d0a-40cf-9ac5-04a165edd341} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1770bd4d-8ba5-4d4b-ba79-853eb7b0b3dc}<23.9 && {1770bd4d-8ba5-4d4b-ba79-853eb7b0b3dc}>1.7, !- Program Line 4 + SET {e97aeb65-22cc-4537-9663-be5792353d75} = 29.4, !- Program Line 5 + SET {6304ffb5-8d0a-40cf-9ac5-04a165edd341} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1770bd4d-8ba5-4d4b-ba79-853eb7b0b3dc}<23.9 && {1770bd4d-8ba5-4d4b-ba79-853eb7b0b3dc}>1.7, !- Program Line 7 + SET {e97aeb65-22cc-4537-9663-be5792353d75} = 29.4, !- Program Line 8 + SET {6304ffb5-8d0a-40cf-9ac5-04a165edd341} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1770bd4d-8ba5-4d4b-ba79-853eb7b0b3dc}<23.9 && {1770bd4d-8ba5-4d4b-ba79-853eb7b0b3dc}>1.7, !- Program Line 10 + SET {e97aeb65-22cc-4537-9663-be5792353d75} = 29.4, !- Program Line 11 + SET {6304ffb5-8d0a-40cf-9ac5-04a165edd341} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3cb030cb-df62-4cd1-b19e-08b67ab7c08a} = NULL, !- Program Line 14 - SET {3794b780-5c15-4cd5-87dd-9c28b2dcd627} = NULL, !- Program Line 15 + SET {e97aeb65-22cc-4537-9663-be5792353d75} = NULL, !- Program Line 14 + SET {6304ffb5-8d0a-40cf-9ac5-04a165edd341} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000004}; !- Program Name 1 @@ -13604,7 +13604,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13630,7 +13630,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13656,7 +13656,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13682,7 +13682,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13708,7 +13708,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13734,7 +13734,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13760,7 +13760,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13786,7 +13786,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13812,7 +13812,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13838,7 +13838,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13864,7 +13864,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13890,7 +13890,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13916,7 +13916,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13942,7 +13942,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13968,7 +13968,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13994,7 +13994,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14020,7 +14020,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14046,7 +14046,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14072,7 +14072,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14098,7 +14098,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -16148,1081 +16148,1081 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000182}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000159}, !- Inlet Port {00000000-0000-0000-0016-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000183}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000162}, !- Inlet Port {00000000-0000-0000-0016-000000000160}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000184}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000165}, !- Inlet Port {00000000-0000-0000-0016-000000000166}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000185}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000589}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000186}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000594}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000187}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000157}, !- Inlet Port {00000000-0000-0000-0016-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000188}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000163}, !- Inlet Port {00000000-0000-0000-0016-000000000158}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000189}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000303}, !- Inlet Port {00000000-0000-0000-0016-000000000305}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000190}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000306}, !- Inlet Port {00000000-0000-0000-0016-000000000304}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000191}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000309}, !- Inlet Port {00000000-0000-0000-0016-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000192}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000595}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000193}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000600}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000194}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000301}, !- Inlet Port {00000000-0000-0000-0016-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000195}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000307}, !- Inlet Port {00000000-0000-0000-0016-000000000302}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000196}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000319}, !- Inlet Port {00000000-0000-0000-0016-000000000321}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000197}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000322}, !- Inlet Port {00000000-0000-0000-0016-000000000320}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000198}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000325}, !- Inlet Port {00000000-0000-0000-0016-000000000326}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000199}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000601}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000200}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000606}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000201}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000317}, !- Inlet Port {00000000-0000-0000-0016-000000000324}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000202}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000323}, !- Inlet Port {00000000-0000-0000-0016-000000000318}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000203}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000335}, !- Inlet Port {00000000-0000-0000-0016-000000000337}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000204}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000338}, !- Inlet Port {00000000-0000-0000-0016-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000205}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000341}, !- Inlet Port {00000000-0000-0000-0016-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000206}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000607}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000207}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000612}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000208}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000333}, !- Inlet Port {00000000-0000-0000-0016-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000209}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000339}, !- Inlet Port {00000000-0000-0000-0016-000000000334}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000210}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000351}, !- Inlet Port {00000000-0000-0000-0016-000000000353}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000211}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000354}, !- Inlet Port {00000000-0000-0000-0016-000000000352}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000212}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000357}, !- Inlet Port {00000000-0000-0000-0016-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000213}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000613}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000214}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000618}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000215}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000349}, !- Inlet Port {00000000-0000-0000-0016-000000000356}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000216}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000355}, !- Inlet Port {00000000-0000-0000-0016-000000000350}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000217}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000367}, !- Inlet Port {00000000-0000-0000-0016-000000000369}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000218}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000370}, !- Inlet Port {00000000-0000-0000-0016-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000219}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000373}, !- Inlet Port {00000000-0000-0000-0016-000000000374}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000220}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000619}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000221}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000624}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000222}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000365}, !- Inlet Port {00000000-0000-0000-0016-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000223}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000371}, !- Inlet Port {00000000-0000-0000-0016-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000224}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000383}, !- Inlet Port {00000000-0000-0000-0016-000000000385}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000225}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000386}, !- Inlet Port {00000000-0000-0000-0016-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000226}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000389}, !- Inlet Port {00000000-0000-0000-0016-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000227}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000625}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000228}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000630}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000229}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000381}, !- Inlet Port {00000000-0000-0000-0016-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000230}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000387}, !- Inlet Port {00000000-0000-0000-0016-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000231}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000399}, !- Inlet Port {00000000-0000-0000-0016-000000000401}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000232}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000402}, !- Inlet Port {00000000-0000-0000-0016-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000233}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000405}, !- Inlet Port {00000000-0000-0000-0016-000000000406}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000234}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000631}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000235}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000636}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000236}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000397}, !- Inlet Port {00000000-0000-0000-0016-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000237}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000403}, !- Inlet Port {00000000-0000-0000-0016-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000238}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000415}, !- Inlet Port {00000000-0000-0000-0016-000000000417}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000239}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000418}, !- Inlet Port {00000000-0000-0000-0016-000000000416}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000240}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000421}, !- Inlet Port {00000000-0000-0000-0016-000000000422}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000241}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000637}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000242}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000642}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000243}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000413}, !- Inlet Port {00000000-0000-0000-0016-000000000420}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000244}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000419}, !- Inlet Port {00000000-0000-0000-0016-000000000414}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000245}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000175}, !- Inlet Port {00000000-0000-0000-0016-000000000177}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000246}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000178}, !- Inlet Port {00000000-0000-0000-0016-000000000176}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000247}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000181}, !- Inlet Port {00000000-0000-0000-0016-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000248}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000643}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000249}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000648}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000250}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000173}, !- Inlet Port {00000000-0000-0000-0016-000000000180}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000251}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000179}, !- Inlet Port {00000000-0000-0000-0016-000000000174}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000252}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000191}, !- Inlet Port {00000000-0000-0000-0016-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000253}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000194}, !- Inlet Port {00000000-0000-0000-0016-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000254}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000197}, !- Inlet Port {00000000-0000-0000-0016-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000255}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000649}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000256}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000654}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000257}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000189}, !- Inlet Port {00000000-0000-0000-0016-000000000196}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000258}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000195}, !- Inlet Port {00000000-0000-0000-0016-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000259}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000207}, !- Inlet Port {00000000-0000-0000-0016-000000000209}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000260}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000210}, !- Inlet Port {00000000-0000-0000-0016-000000000208}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000261}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000213}, !- Inlet Port {00000000-0000-0000-0016-000000000214}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000262}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000655}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000263}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000660}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000264}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000205}, !- Inlet Port {00000000-0000-0000-0016-000000000212}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000265}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000211}, !- Inlet Port {00000000-0000-0000-0016-000000000206}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000266}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000223}, !- Inlet Port {00000000-0000-0000-0016-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000267}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000226}, !- Inlet Port {00000000-0000-0000-0016-000000000224}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000268}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000229}, !- Inlet Port {00000000-0000-0000-0016-000000000230}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000269}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000661}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000270}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000666}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000271}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000221}, !- Inlet Port {00000000-0000-0000-0016-000000000228}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000272}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000227}, !- Inlet Port {00000000-0000-0000-0016-000000000222}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000273}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000239}, !- Inlet Port {00000000-0000-0000-0016-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000274}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000242}, !- Inlet Port {00000000-0000-0000-0016-000000000240}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000275}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000245}, !- Inlet Port {00000000-0000-0000-0016-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000276}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000667}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000277}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000672}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000278}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000237}, !- Inlet Port {00000000-0000-0000-0016-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000279}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000243}, !- Inlet Port {00000000-0000-0000-0016-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000280}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000255}, !- Inlet Port {00000000-0000-0000-0016-000000000257}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000281}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000258}, !- Inlet Port {00000000-0000-0000-0016-000000000256}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000282}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000261}, !- Inlet Port {00000000-0000-0000-0016-000000000262}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000283}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000673}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000284}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000678}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000285}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000253}, !- Inlet Port {00000000-0000-0000-0016-000000000260}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000286}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000259}, !- Inlet Port {00000000-0000-0000-0016-000000000254}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000287}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000271}, !- Inlet Port {00000000-0000-0000-0016-000000000273}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000288}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000274}, !- Inlet Port {00000000-0000-0000-0016-000000000272}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000289}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000277}, !- Inlet Port {00000000-0000-0000-0016-000000000278}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000290}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000679}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000291}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000684}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000292}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000269}, !- Inlet Port {00000000-0000-0000-0016-000000000276}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000293}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000275}, !- Inlet Port {00000000-0000-0000-0016-000000000270}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000294}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000287}, !- Inlet Port {00000000-0000-0000-0016-000000000289}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000295}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000290}, !- Inlet Port {00000000-0000-0000-0016-000000000288}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000296}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000293}, !- Inlet Port {00000000-0000-0000-0016-000000000294}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000297}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000685}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000298}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000690}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000299}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000285}, !- Inlet Port {00000000-0000-0000-0016-000000000292}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000300}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000291}, !- Inlet Port {00000000-0000-0000-0016-000000000286}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000301}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000143}, !- Inlet Port {00000000-0000-0000-0016-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000302}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000146}, !- Inlet Port {00000000-0000-0000-0016-000000000144}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000303}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000149}, !- Inlet Port {00000000-0000-0000-0016-000000000150}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000304}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000583}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000305}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000588}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000306}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000141}, !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000307}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port {00000000-0000-0000-0016-000000000142}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000308}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000590}, !- Inlet Port {00000000-0000-0000-0016-000000000591}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000309}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000592}, !- Inlet Port {00000000-0000-0000-0016-000000000593}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000310}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000596}, !- Inlet Port {00000000-0000-0000-0016-000000000597}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000311}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000598}, !- Inlet Port {00000000-0000-0000-0016-000000000599}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000312}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000602}, !- Inlet Port {00000000-0000-0000-0016-000000000603}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000313}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000604}, !- Inlet Port {00000000-0000-0000-0016-000000000605}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000314}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000608}, !- Inlet Port {00000000-0000-0000-0016-000000000609}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000315}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000610}, !- Inlet Port {00000000-0000-0000-0016-000000000611}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000316}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000614}, !- Inlet Port {00000000-0000-0000-0016-000000000615}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000317}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000616}, !- Inlet Port {00000000-0000-0000-0016-000000000617}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000318}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000620}, !- Inlet Port {00000000-0000-0000-0016-000000000621}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000319}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000622}, !- Inlet Port {00000000-0000-0000-0016-000000000623}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000320}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000626}, !- Inlet Port {00000000-0000-0000-0016-000000000627}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000321}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000628}, !- Inlet Port {00000000-0000-0000-0016-000000000629}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000322}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000632}, !- Inlet Port {00000000-0000-0000-0016-000000000633}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000323}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000634}, !- Inlet Port {00000000-0000-0000-0016-000000000635}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000324}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000638}, !- Inlet Port {00000000-0000-0000-0016-000000000639}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000325}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000640}, !- Inlet Port {00000000-0000-0000-0016-000000000641}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000326}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000644}, !- Inlet Port {00000000-0000-0000-0016-000000000645}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000327}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000646}, !- Inlet Port {00000000-0000-0000-0016-000000000647}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000328}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000650}, !- Inlet Port {00000000-0000-0000-0016-000000000651}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000329}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000652}, !- Inlet Port {00000000-0000-0000-0016-000000000653}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000330}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000656}, !- Inlet Port {00000000-0000-0000-0016-000000000657}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000331}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000658}, !- Inlet Port {00000000-0000-0000-0016-000000000659}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000332}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000662}, !- Inlet Port {00000000-0000-0000-0016-000000000663}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000333}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000664}, !- Inlet Port {00000000-0000-0000-0016-000000000665}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000334}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000668}, !- Inlet Port {00000000-0000-0000-0016-000000000669}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000335}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000670}, !- Inlet Port {00000000-0000-0000-0016-000000000671}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000336}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000674}, !- Inlet Port {00000000-0000-0000-0016-000000000675}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000337}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000676}, !- Inlet Port {00000000-0000-0000-0016-000000000677}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000338}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000680}, !- Inlet Port {00000000-0000-0000-0016-000000000681}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000339}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000682}, !- Inlet Port {00000000-0000-0000-0016-000000000683}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000340}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000686}, !- Inlet Port {00000000-0000-0000-0016-000000000687}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000341}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000688}, !- Inlet Port {00000000-0000-0000-0016-000000000689}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000342}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000584}, !- Inlet Port {00000000-0000-0000-0016-000000000585}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000343}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000586}, !- Inlet Port {00000000-0000-0000-0016-000000000587}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000344}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000097}, !- Inlet Port {00000000-0000-0000-0016-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000345}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000098}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000346}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000103}, !- Inlet Port {00000000-0000-0000-0016-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000347}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000697}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000348}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000702}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000349}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000095}, !- Inlet Port {00000000-0000-0000-0016-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000350}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000101}, !- Inlet Port {00000000-0000-0000-0016-000000000096}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000351}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000352}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000353}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port {00000000-0000-0000-0016-000000000082}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000354}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000691}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000355}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000696}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000356}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000357}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000358}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000698}, !- Inlet Port {00000000-0000-0000-0016-000000000699}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000359}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000700}, !- Inlet Port {00000000-0000-0000-0016-000000000701}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000360}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000692}, !- Inlet Port {00000000-0000-0000-0016-000000000693}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000361}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000694}, !- Inlet Port {00000000-0000-0000-0016-000000000695}; !- Outlet Port @@ -21388,7 +21388,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21409,7 +21409,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21418,7 +21418,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21427,7 +21427,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -21442,7 +21442,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21451,7 +21451,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21460,7 +21460,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21475,7 +21475,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21484,7 +21484,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21493,7 +21493,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21508,7 +21508,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21517,7 +21517,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21526,7 +21526,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21541,7 +21541,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21550,7 +21550,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21559,7 +21559,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21580,7 +21580,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21589,7 +21589,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21598,7 +21598,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21619,7 +21619,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21628,7 +21628,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21637,7 +21637,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21658,7 +21658,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21667,7 +21667,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21676,7 +21676,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21691,7 +21691,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21700,7 +21700,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21709,7 +21709,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21724,7 +21724,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21733,7 +21733,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21742,7 +21742,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21757,7 +21757,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21766,7 +21766,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21775,7 +21775,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21796,7 +21796,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21805,7 +21805,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21814,7 +21814,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21835,7 +21835,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21844,7 +21844,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21853,7 +21853,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21868,7 +21868,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21877,7 +21877,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21886,7 +21886,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21907,7 +21907,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21916,7 +21916,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21925,7 +21925,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21940,7 +21940,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21949,7 +21949,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21958,7 +21958,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -21973,7 +21973,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21982,7 +21982,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21991,7 +21991,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22012,7 +22012,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22021,7 +22021,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22030,7 +22030,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000217}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22051,7 +22051,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000218}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22060,7 +22060,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000219}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22069,7 +22069,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000220}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22090,7 +22090,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000221}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22099,7 +22099,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000222}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24605,7 +24605,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000163}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000164}, !- Summer Design Day Schedule Name @@ -24613,7 +24613,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000166}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000167}, !- Summer Design Day Schedule Name @@ -24621,7 +24621,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000170}, !- Summer Design Day Schedule Name @@ -24629,7 +24629,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000173}, !- Summer Design Day Schedule Name @@ -24637,7 +24637,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000175}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000176}, !- Summer Design Day Schedule Name @@ -24645,7 +24645,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000178}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000179}, !- Summer Design Day Schedule Name @@ -24653,7 +24653,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000182}, !- Summer Design Day Schedule Name @@ -24661,7 +24661,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000185}, !- Summer Design Day Schedule Name @@ -24669,7 +24669,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000188}, !- Summer Design Day Schedule Name @@ -24677,7 +24677,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000191}, !- Summer Design Day Schedule Name @@ -24685,7 +24685,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000194}, !- Summer Design Day Schedule Name @@ -24693,7 +24693,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000196}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000197}, !- Summer Design Day Schedule Name @@ -24701,7 +24701,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000199}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000200}, !- Summer Design Day Schedule Name @@ -24709,7 +24709,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000202}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000203}, !- Summer Design Day Schedule Name @@ -24717,7 +24717,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000205}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000206}, !- Summer Design Day Schedule Name @@ -24725,7 +24725,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000208}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000209}, !- Summer Design Day Schedule Name @@ -24733,7 +24733,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000211}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000212}, !- Summer Design Day Schedule Name @@ -24741,7 +24741,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000214}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000215}, !- Summer Design Day Schedule Name @@ -24749,7 +24749,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000217}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000218}, !- Summer Design Day Schedule Name @@ -24757,7 +24757,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000220}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000221}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index cc81c69546..8d084f20ac 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000058}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0066-000000000059}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -12959,7 +12959,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12967,7 +12967,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12975,7 +12975,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0066-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12983,7 +12983,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0066-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12991,7 +12991,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0066-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -12999,7 +12999,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13007,7 +13007,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000007}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0066-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13015,7 +13015,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0066-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13023,105 +13023,105 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b5f7c870-9ac0-48a8-b159-d8a3488d2e81}<23.9 && {b5f7c870-9ac0-48a8-b159-d8a3488d2e81}>1.7, !- Program Line 1 - SET {e0d2061a-4785-4568-b2fd-1f4ad8a6af3a} = 29.4, !- Program Line 2 - SET {7e728500-33bd-4e41-8c32-62c4258b0f13} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b5f7c870-9ac0-48a8-b159-d8a3488d2e81}<23.9 && {b5f7c870-9ac0-48a8-b159-d8a3488d2e81}>1.7, !- Program Line 4 - SET {e0d2061a-4785-4568-b2fd-1f4ad8a6af3a} = 29.4, !- Program Line 5 - SET {7e728500-33bd-4e41-8c32-62c4258b0f13} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b5f7c870-9ac0-48a8-b159-d8a3488d2e81}<23.9 && {b5f7c870-9ac0-48a8-b159-d8a3488d2e81}>1.7, !- Program Line 7 - SET {e0d2061a-4785-4568-b2fd-1f4ad8a6af3a} = 29.4, !- Program Line 8 - SET {7e728500-33bd-4e41-8c32-62c4258b0f13} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b5f7c870-9ac0-48a8-b159-d8a3488d2e81}<23.9 && {b5f7c870-9ac0-48a8-b159-d8a3488d2e81}>1.7, !- Program Line 10 - SET {e0d2061a-4785-4568-b2fd-1f4ad8a6af3a} = 29.4, !- Program Line 11 - SET {7e728500-33bd-4e41-8c32-62c4258b0f13} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {251e24e0-9d72-4c67-8e28-388ada310278}<23.9 && {251e24e0-9d72-4c67-8e28-388ada310278}>1.7, !- Program Line 1 + SET {f717ffc7-b997-4c48-a5a8-69e122ca2bdc} = 29.4, !- Program Line 2 + SET {1c57ea87-9228-45fd-a9d1-f3546a5bb84a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {251e24e0-9d72-4c67-8e28-388ada310278}<23.9 && {251e24e0-9d72-4c67-8e28-388ada310278}>1.7, !- Program Line 4 + SET {f717ffc7-b997-4c48-a5a8-69e122ca2bdc} = 29.4, !- Program Line 5 + SET {1c57ea87-9228-45fd-a9d1-f3546a5bb84a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {251e24e0-9d72-4c67-8e28-388ada310278}<23.9 && {251e24e0-9d72-4c67-8e28-388ada310278}>1.7, !- Program Line 7 + SET {f717ffc7-b997-4c48-a5a8-69e122ca2bdc} = 29.4, !- Program Line 8 + SET {1c57ea87-9228-45fd-a9d1-f3546a5bb84a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {251e24e0-9d72-4c67-8e28-388ada310278}<23.9 && {251e24e0-9d72-4c67-8e28-388ada310278}>1.7, !- Program Line 10 + SET {f717ffc7-b997-4c48-a5a8-69e122ca2bdc} = 29.4, !- Program Line 11 + SET {1c57ea87-9228-45fd-a9d1-f3546a5bb84a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e0d2061a-4785-4568-b2fd-1f4ad8a6af3a} = NULL, !- Program Line 14 - SET {7e728500-33bd-4e41-8c32-62c4258b0f13} = NULL, !- Program Line 15 + SET {f717ffc7-b997-4c48-a5a8-69e122ca2bdc} = NULL, !- Program Line 14 + SET {1c57ea87-9228-45fd-a9d1-f3546a5bb84a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c1cc4aa0-9fa5-4430-9383-69e01d6fffb1}<23.9 && {c1cc4aa0-9fa5-4430-9383-69e01d6fffb1}>1.7, !- Program Line 1 - SET {2e223406-ab12-4421-9b45-aca60fb89282} = 29.4, !- Program Line 2 - SET {88836f68-acaf-4bd1-8302-61186df943bf} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c1cc4aa0-9fa5-4430-9383-69e01d6fffb1}<23.9 && {c1cc4aa0-9fa5-4430-9383-69e01d6fffb1}>1.7, !- Program Line 4 - SET {2e223406-ab12-4421-9b45-aca60fb89282} = 29.4, !- Program Line 5 - SET {88836f68-acaf-4bd1-8302-61186df943bf} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c1cc4aa0-9fa5-4430-9383-69e01d6fffb1}<23.9 && {c1cc4aa0-9fa5-4430-9383-69e01d6fffb1}>1.7, !- Program Line 7 - SET {2e223406-ab12-4421-9b45-aca60fb89282} = 29.4, !- Program Line 8 - SET {88836f68-acaf-4bd1-8302-61186df943bf} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c1cc4aa0-9fa5-4430-9383-69e01d6fffb1}<23.9 && {c1cc4aa0-9fa5-4430-9383-69e01d6fffb1}>1.7, !- Program Line 10 - SET {2e223406-ab12-4421-9b45-aca60fb89282} = 29.4, !- Program Line 11 - SET {88836f68-acaf-4bd1-8302-61186df943bf} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b6a3f18a-00e9-45ba-9ac6-022db2796799}<23.9 && {b6a3f18a-00e9-45ba-9ac6-022db2796799}>1.7, !- Program Line 1 + SET {298b3c61-cf0d-4570-9eb6-52351ab50b23} = 29.4, !- Program Line 2 + SET {320924b2-f822-4e48-821e-8733d35e72fd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b6a3f18a-00e9-45ba-9ac6-022db2796799}<23.9 && {b6a3f18a-00e9-45ba-9ac6-022db2796799}>1.7, !- Program Line 4 + SET {298b3c61-cf0d-4570-9eb6-52351ab50b23} = 29.4, !- Program Line 5 + SET {320924b2-f822-4e48-821e-8733d35e72fd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b6a3f18a-00e9-45ba-9ac6-022db2796799}<23.9 && {b6a3f18a-00e9-45ba-9ac6-022db2796799}>1.7, !- Program Line 7 + SET {298b3c61-cf0d-4570-9eb6-52351ab50b23} = 29.4, !- Program Line 8 + SET {320924b2-f822-4e48-821e-8733d35e72fd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b6a3f18a-00e9-45ba-9ac6-022db2796799}<23.9 && {b6a3f18a-00e9-45ba-9ac6-022db2796799}>1.7, !- Program Line 10 + SET {298b3c61-cf0d-4570-9eb6-52351ab50b23} = 29.4, !- Program Line 11 + SET {320924b2-f822-4e48-821e-8733d35e72fd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {2e223406-ab12-4421-9b45-aca60fb89282} = NULL, !- Program Line 14 - SET {88836f68-acaf-4bd1-8302-61186df943bf} = NULL, !- Program Line 15 + SET {298b3c61-cf0d-4570-9eb6-52351ab50b23} = NULL, !- Program Line 14 + SET {320924b2-f822-4e48-821e-8733d35e72fd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {290df8ee-9cc8-4356-8139-baaf7c009a8d}<23.9 && {290df8ee-9cc8-4356-8139-baaf7c009a8d}>1.7, !- Program Line 1 - SET {e4648572-36d1-4f2c-b246-08c1263b5e80} = 29.4, !- Program Line 2 - SET {8f119b89-f0aa-4761-9ff9-4aa28ac22f4a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {290df8ee-9cc8-4356-8139-baaf7c009a8d}<23.9 && {290df8ee-9cc8-4356-8139-baaf7c009a8d}>1.7, !- Program Line 4 - SET {e4648572-36d1-4f2c-b246-08c1263b5e80} = 29.4, !- Program Line 5 - SET {8f119b89-f0aa-4761-9ff9-4aa28ac22f4a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {290df8ee-9cc8-4356-8139-baaf7c009a8d}<23.9 && {290df8ee-9cc8-4356-8139-baaf7c009a8d}>1.7, !- Program Line 7 - SET {e4648572-36d1-4f2c-b246-08c1263b5e80} = 29.4, !- Program Line 8 - SET {8f119b89-f0aa-4761-9ff9-4aa28ac22f4a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {290df8ee-9cc8-4356-8139-baaf7c009a8d}<23.9 && {290df8ee-9cc8-4356-8139-baaf7c009a8d}>1.7, !- Program Line 10 - SET {e4648572-36d1-4f2c-b246-08c1263b5e80} = 29.4, !- Program Line 11 - SET {8f119b89-f0aa-4761-9ff9-4aa28ac22f4a} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c08e8ffa-77eb-4361-a6dd-6c42db46131e}<23.9 && {c08e8ffa-77eb-4361-a6dd-6c42db46131e}>1.7, !- Program Line 1 + SET {d0739555-3d69-4dcf-bf4b-acbf785bd481} = 29.4, !- Program Line 2 + SET {683a06e8-d482-42cd-90a1-6a98c7446d23} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c08e8ffa-77eb-4361-a6dd-6c42db46131e}<23.9 && {c08e8ffa-77eb-4361-a6dd-6c42db46131e}>1.7, !- Program Line 4 + SET {d0739555-3d69-4dcf-bf4b-acbf785bd481} = 29.4, !- Program Line 5 + SET {683a06e8-d482-42cd-90a1-6a98c7446d23} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c08e8ffa-77eb-4361-a6dd-6c42db46131e}<23.9 && {c08e8ffa-77eb-4361-a6dd-6c42db46131e}>1.7, !- Program Line 7 + SET {d0739555-3d69-4dcf-bf4b-acbf785bd481} = 29.4, !- Program Line 8 + SET {683a06e8-d482-42cd-90a1-6a98c7446d23} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c08e8ffa-77eb-4361-a6dd-6c42db46131e}<23.9 && {c08e8ffa-77eb-4361-a6dd-6c42db46131e}>1.7, !- Program Line 10 + SET {d0739555-3d69-4dcf-bf4b-acbf785bd481} = 29.4, !- Program Line 11 + SET {683a06e8-d482-42cd-90a1-6a98c7446d23} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e4648572-36d1-4f2c-b246-08c1263b5e80} = NULL, !- Program Line 14 - SET {8f119b89-f0aa-4761-9ff9-4aa28ac22f4a} = NULL, !- Program Line 15 + SET {d0739555-3d69-4dcf-bf4b-acbf785bd481} = NULL, !- Program Line 14 + SET {683a06e8-d482-42cd-90a1-6a98c7446d23} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f11beb48-61e4-4663-9cd1-12a0521ce057}<23.9 && {f11beb48-61e4-4663-9cd1-12a0521ce057}>1.7, !- Program Line 1 - SET {67bb2b7d-982a-4a82-8138-61062a534695} = 29.4, !- Program Line 2 - SET {314de99d-b64f-4a9c-85bb-a575cd5d4869} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f11beb48-61e4-4663-9cd1-12a0521ce057}<23.9 && {f11beb48-61e4-4663-9cd1-12a0521ce057}>1.7, !- Program Line 4 - SET {67bb2b7d-982a-4a82-8138-61062a534695} = 29.4, !- Program Line 5 - SET {314de99d-b64f-4a9c-85bb-a575cd5d4869} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f11beb48-61e4-4663-9cd1-12a0521ce057}<23.9 && {f11beb48-61e4-4663-9cd1-12a0521ce057}>1.7, !- Program Line 7 - SET {67bb2b7d-982a-4a82-8138-61062a534695} = 29.4, !- Program Line 8 - SET {314de99d-b64f-4a9c-85bb-a575cd5d4869} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f11beb48-61e4-4663-9cd1-12a0521ce057}<23.9 && {f11beb48-61e4-4663-9cd1-12a0521ce057}>1.7, !- Program Line 10 - SET {67bb2b7d-982a-4a82-8138-61062a534695} = 29.4, !- Program Line 11 - SET {314de99d-b64f-4a9c-85bb-a575cd5d4869} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {04c0d9bb-b5f0-42c8-a1a0-013b645fec7b}<23.9 && {04c0d9bb-b5f0-42c8-a1a0-013b645fec7b}>1.7, !- Program Line 1 + SET {bdbcc977-4d6b-44f1-b4a3-527e3d6c5062} = 29.4, !- Program Line 2 + SET {24118576-0be8-4dac-836b-00ef5cdc4b6f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {04c0d9bb-b5f0-42c8-a1a0-013b645fec7b}<23.9 && {04c0d9bb-b5f0-42c8-a1a0-013b645fec7b}>1.7, !- Program Line 4 + SET {bdbcc977-4d6b-44f1-b4a3-527e3d6c5062} = 29.4, !- Program Line 5 + SET {24118576-0be8-4dac-836b-00ef5cdc4b6f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {04c0d9bb-b5f0-42c8-a1a0-013b645fec7b}<23.9 && {04c0d9bb-b5f0-42c8-a1a0-013b645fec7b}>1.7, !- Program Line 7 + SET {bdbcc977-4d6b-44f1-b4a3-527e3d6c5062} = 29.4, !- Program Line 8 + SET {24118576-0be8-4dac-836b-00ef5cdc4b6f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {04c0d9bb-b5f0-42c8-a1a0-013b645fec7b}<23.9 && {04c0d9bb-b5f0-42c8-a1a0-013b645fec7b}>1.7, !- Program Line 10 + SET {bdbcc977-4d6b-44f1-b4a3-527e3d6c5062} = 29.4, !- Program Line 11 + SET {24118576-0be8-4dac-836b-00ef5cdc4b6f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {67bb2b7d-982a-4a82-8138-61062a534695} = NULL, !- Program Line 14 - SET {314de99d-b64f-4a9c-85bb-a575cd5d4869} = NULL, !- Program Line 15 + SET {bdbcc977-4d6b-44f1-b4a3-527e3d6c5062} = NULL, !- Program Line 14 + SET {24118576-0be8-4dac-836b-00ef5cdc4b6f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000004}; !- Program Name 1 @@ -13694,7 +13694,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13720,7 +13720,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13746,7 +13746,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13772,7 +13772,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13798,7 +13798,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13824,7 +13824,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13850,7 +13850,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13876,7 +13876,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13902,7 +13902,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13928,7 +13928,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13954,7 +13954,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -13980,7 +13980,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14006,7 +14006,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14032,7 +14032,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14058,7 +14058,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14084,7 +14084,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14110,7 +14110,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14136,7 +14136,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14162,7 +14162,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14188,7 +14188,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -16238,1081 +16238,1081 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000182}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000159}, !- Inlet Port {00000000-0000-0000-0016-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000183}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000162}, !- Inlet Port {00000000-0000-0000-0016-000000000160}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000184}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000165}, !- Inlet Port {00000000-0000-0000-0016-000000000166}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000185}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000589}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000186}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000594}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000187}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000157}, !- Inlet Port {00000000-0000-0000-0016-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000188}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000163}, !- Inlet Port {00000000-0000-0000-0016-000000000158}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000189}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000303}, !- Inlet Port {00000000-0000-0000-0016-000000000305}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000190}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000306}, !- Inlet Port {00000000-0000-0000-0016-000000000304}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000191}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000309}, !- Inlet Port {00000000-0000-0000-0016-000000000310}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000192}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000595}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000193}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000600}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000194}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000301}, !- Inlet Port {00000000-0000-0000-0016-000000000308}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000195}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000307}, !- Inlet Port {00000000-0000-0000-0016-000000000302}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000196}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000319}, !- Inlet Port {00000000-0000-0000-0016-000000000321}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000197}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000322}, !- Inlet Port {00000000-0000-0000-0016-000000000320}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000198}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000325}, !- Inlet Port {00000000-0000-0000-0016-000000000326}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000199}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000601}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000200}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000606}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000201}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000317}, !- Inlet Port {00000000-0000-0000-0016-000000000324}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000202}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000323}, !- Inlet Port {00000000-0000-0000-0016-000000000318}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000203}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000335}, !- Inlet Port {00000000-0000-0000-0016-000000000337}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000204}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000338}, !- Inlet Port {00000000-0000-0000-0016-000000000336}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000205}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000341}, !- Inlet Port {00000000-0000-0000-0016-000000000342}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000206}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000607}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000207}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000612}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000208}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000333}, !- Inlet Port {00000000-0000-0000-0016-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000209}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000339}, !- Inlet Port {00000000-0000-0000-0016-000000000334}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000210}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000351}, !- Inlet Port {00000000-0000-0000-0016-000000000353}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000211}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000354}, !- Inlet Port {00000000-0000-0000-0016-000000000352}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000212}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000357}, !- Inlet Port {00000000-0000-0000-0016-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000213}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000613}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000214}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000618}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000215}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000349}, !- Inlet Port {00000000-0000-0000-0016-000000000356}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000216}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000355}, !- Inlet Port {00000000-0000-0000-0016-000000000350}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000217}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000367}, !- Inlet Port {00000000-0000-0000-0016-000000000369}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000218}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000370}, !- Inlet Port {00000000-0000-0000-0016-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000219}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000373}, !- Inlet Port {00000000-0000-0000-0016-000000000374}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000220}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000619}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000221}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000624}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000222}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000365}, !- Inlet Port {00000000-0000-0000-0016-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000223}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000371}, !- Inlet Port {00000000-0000-0000-0016-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000224}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000383}, !- Inlet Port {00000000-0000-0000-0016-000000000385}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000225}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000386}, !- Inlet Port {00000000-0000-0000-0016-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000226}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000389}, !- Inlet Port {00000000-0000-0000-0016-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000227}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000625}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000228}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000630}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000229}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000381}, !- Inlet Port {00000000-0000-0000-0016-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000230}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000387}, !- Inlet Port {00000000-0000-0000-0016-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000231}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000399}, !- Inlet Port {00000000-0000-0000-0016-000000000401}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000232}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000402}, !- Inlet Port {00000000-0000-0000-0016-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000233}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000405}, !- Inlet Port {00000000-0000-0000-0016-000000000406}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000234}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000631}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000235}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000636}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000236}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000397}, !- Inlet Port {00000000-0000-0000-0016-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000237}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000403}, !- Inlet Port {00000000-0000-0000-0016-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000238}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000415}, !- Inlet Port {00000000-0000-0000-0016-000000000417}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000239}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000418}, !- Inlet Port {00000000-0000-0000-0016-000000000416}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000240}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000421}, !- Inlet Port {00000000-0000-0000-0016-000000000422}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000241}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000637}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000242}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000642}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000243}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000413}, !- Inlet Port {00000000-0000-0000-0016-000000000420}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000244}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000419}, !- Inlet Port {00000000-0000-0000-0016-000000000414}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000245}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000175}, !- Inlet Port {00000000-0000-0000-0016-000000000177}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000246}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000178}, !- Inlet Port {00000000-0000-0000-0016-000000000176}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000247}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000181}, !- Inlet Port {00000000-0000-0000-0016-000000000182}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000248}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000643}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000249}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000648}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000250}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000173}, !- Inlet Port {00000000-0000-0000-0016-000000000180}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000251}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000179}, !- Inlet Port {00000000-0000-0000-0016-000000000174}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000252}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000191}, !- Inlet Port {00000000-0000-0000-0016-000000000193}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000253}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000194}, !- Inlet Port {00000000-0000-0000-0016-000000000192}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000254}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000197}, !- Inlet Port {00000000-0000-0000-0016-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000255}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000649}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000256}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000654}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000257}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000189}, !- Inlet Port {00000000-0000-0000-0016-000000000196}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000258}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000195}, !- Inlet Port {00000000-0000-0000-0016-000000000190}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000259}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000207}, !- Inlet Port {00000000-0000-0000-0016-000000000209}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000260}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000210}, !- Inlet Port {00000000-0000-0000-0016-000000000208}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000261}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000213}, !- Inlet Port {00000000-0000-0000-0016-000000000214}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000262}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000655}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000263}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000660}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000264}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000205}, !- Inlet Port {00000000-0000-0000-0016-000000000212}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000265}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000211}, !- Inlet Port {00000000-0000-0000-0016-000000000206}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000266}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000223}, !- Inlet Port {00000000-0000-0000-0016-000000000225}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000267}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000226}, !- Inlet Port {00000000-0000-0000-0016-000000000224}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000268}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000229}, !- Inlet Port {00000000-0000-0000-0016-000000000230}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000269}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000661}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000270}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000666}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000271}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000221}, !- Inlet Port {00000000-0000-0000-0016-000000000228}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000272}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000227}, !- Inlet Port {00000000-0000-0000-0016-000000000222}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000273}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000239}, !- Inlet Port {00000000-0000-0000-0016-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000274}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000242}, !- Inlet Port {00000000-0000-0000-0016-000000000240}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000275}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000245}, !- Inlet Port {00000000-0000-0000-0016-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000276}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000667}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000277}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000672}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000278}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000237}, !- Inlet Port {00000000-0000-0000-0016-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000279}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000243}, !- Inlet Port {00000000-0000-0000-0016-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000280}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000255}, !- Inlet Port {00000000-0000-0000-0016-000000000257}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000281}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000258}, !- Inlet Port {00000000-0000-0000-0016-000000000256}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000282}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000261}, !- Inlet Port {00000000-0000-0000-0016-000000000262}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000283}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000673}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000284}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000678}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000285}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000253}, !- Inlet Port {00000000-0000-0000-0016-000000000260}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000286}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000259}, !- Inlet Port {00000000-0000-0000-0016-000000000254}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000287}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000271}, !- Inlet Port {00000000-0000-0000-0016-000000000273}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000288}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000274}, !- Inlet Port {00000000-0000-0000-0016-000000000272}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000289}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000277}, !- Inlet Port {00000000-0000-0000-0016-000000000278}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000290}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000679}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000291}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000684}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000292}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000269}, !- Inlet Port {00000000-0000-0000-0016-000000000276}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000293}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000275}, !- Inlet Port {00000000-0000-0000-0016-000000000270}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000294}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000287}, !- Inlet Port {00000000-0000-0000-0016-000000000289}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000295}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000290}, !- Inlet Port {00000000-0000-0000-0016-000000000288}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000296}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000293}, !- Inlet Port {00000000-0000-0000-0016-000000000294}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000297}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000685}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000298}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000690}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000299}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000285}, !- Inlet Port {00000000-0000-0000-0016-000000000292}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000300}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000291}, !- Inlet Port {00000000-0000-0000-0016-000000000286}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000301}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000143}, !- Inlet Port {00000000-0000-0000-0016-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000302}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000146}, !- Inlet Port {00000000-0000-0000-0016-000000000144}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000303}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000149}, !- Inlet Port {00000000-0000-0000-0016-000000000150}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000304}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000583}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000305}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000588}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000306}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000141}, !- Inlet Port {00000000-0000-0000-0016-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000307}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000147}, !- Inlet Port {00000000-0000-0000-0016-000000000142}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000308}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000590}, !- Inlet Port {00000000-0000-0000-0016-000000000591}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000309}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000592}, !- Inlet Port {00000000-0000-0000-0016-000000000593}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000310}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000596}, !- Inlet Port {00000000-0000-0000-0016-000000000597}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000311}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000598}, !- Inlet Port {00000000-0000-0000-0016-000000000599}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000312}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000602}, !- Inlet Port {00000000-0000-0000-0016-000000000603}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000313}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000604}, !- Inlet Port {00000000-0000-0000-0016-000000000605}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000314}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000608}, !- Inlet Port {00000000-0000-0000-0016-000000000609}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000315}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000610}, !- Inlet Port {00000000-0000-0000-0016-000000000611}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000316}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000614}, !- Inlet Port {00000000-0000-0000-0016-000000000615}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000317}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000616}, !- Inlet Port {00000000-0000-0000-0016-000000000617}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000318}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000620}, !- Inlet Port {00000000-0000-0000-0016-000000000621}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000319}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000622}, !- Inlet Port {00000000-0000-0000-0016-000000000623}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000320}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000626}, !- Inlet Port {00000000-0000-0000-0016-000000000627}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000321}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000628}, !- Inlet Port {00000000-0000-0000-0016-000000000629}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000322}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000632}, !- Inlet Port {00000000-0000-0000-0016-000000000633}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000323}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000634}, !- Inlet Port {00000000-0000-0000-0016-000000000635}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000324}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000638}, !- Inlet Port {00000000-0000-0000-0016-000000000639}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000325}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000640}, !- Inlet Port {00000000-0000-0000-0016-000000000641}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000326}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000644}, !- Inlet Port {00000000-0000-0000-0016-000000000645}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000327}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000646}, !- Inlet Port {00000000-0000-0000-0016-000000000647}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000328}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000650}, !- Inlet Port {00000000-0000-0000-0016-000000000651}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000329}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000652}, !- Inlet Port {00000000-0000-0000-0016-000000000653}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000330}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000656}, !- Inlet Port {00000000-0000-0000-0016-000000000657}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000331}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000658}, !- Inlet Port {00000000-0000-0000-0016-000000000659}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000332}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000662}, !- Inlet Port {00000000-0000-0000-0016-000000000663}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000333}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000664}, !- Inlet Port {00000000-0000-0000-0016-000000000665}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000334}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000668}, !- Inlet Port {00000000-0000-0000-0016-000000000669}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000335}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000670}, !- Inlet Port {00000000-0000-0000-0016-000000000671}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000336}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000674}, !- Inlet Port {00000000-0000-0000-0016-000000000675}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000337}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000676}, !- Inlet Port {00000000-0000-0000-0016-000000000677}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000338}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000680}, !- Inlet Port {00000000-0000-0000-0016-000000000681}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000339}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000682}, !- Inlet Port {00000000-0000-0000-0016-000000000683}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000340}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000686}, !- Inlet Port {00000000-0000-0000-0016-000000000687}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000341}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000688}, !- Inlet Port {00000000-0000-0000-0016-000000000689}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000342}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000584}, !- Inlet Port {00000000-0000-0000-0016-000000000585}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000343}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000586}, !- Inlet Port {00000000-0000-0000-0016-000000000587}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000344}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000097}, !- Inlet Port {00000000-0000-0000-0016-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000345}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000098}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000346}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000103}, !- Inlet Port {00000000-0000-0000-0016-000000000104}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000347}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000697}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000348}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000702}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000349}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000095}, !- Inlet Port {00000000-0000-0000-0016-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000350}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000101}, !- Inlet Port {00000000-0000-0000-0016-000000000096}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000351}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000075}, !- Inlet Port {00000000-0000-0000-0016-000000000077}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000352}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000078}, !- Inlet Port {00000000-0000-0000-0016-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000353}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000081}, !- Inlet Port {00000000-0000-0000-0016-000000000082}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000354}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000691}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000355}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000696}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000356}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000073}, !- Inlet Port {00000000-0000-0000-0016-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000357}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000079}, !- Inlet Port {00000000-0000-0000-0016-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000358}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000698}, !- Inlet Port {00000000-0000-0000-0016-000000000699}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000359}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000700}, !- Inlet Port {00000000-0000-0000-0016-000000000701}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000360}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000692}, !- Inlet Port {00000000-0000-0000-0016-000000000693}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000361}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000694}, !- Inlet Port {00000000-0000-0000-0016-000000000695}; !- Outlet Port @@ -21478,7 +21478,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21499,7 +21499,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21508,7 +21508,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21517,7 +21517,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -21532,7 +21532,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21541,7 +21541,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21550,7 +21550,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21565,7 +21565,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21574,7 +21574,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21583,7 +21583,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21598,7 +21598,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21607,7 +21607,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21616,7 +21616,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21631,7 +21631,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21640,7 +21640,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21649,7 +21649,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21670,7 +21670,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21679,7 +21679,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21688,7 +21688,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21709,7 +21709,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21718,7 +21718,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21727,7 +21727,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21748,7 +21748,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21757,7 +21757,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21766,7 +21766,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21781,7 +21781,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21790,7 +21790,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21799,7 +21799,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -21814,7 +21814,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21823,7 +21823,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21832,7 +21832,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21847,7 +21847,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21856,7 +21856,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21865,7 +21865,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21886,7 +21886,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21895,7 +21895,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21904,7 +21904,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21925,7 +21925,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21934,7 +21934,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21943,7 +21943,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21958,7 +21958,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21967,7 +21967,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -21976,7 +21976,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -21997,7 +21997,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22006,7 +22006,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22015,7 +22015,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22030,7 +22030,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22039,7 +22039,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22048,7 +22048,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -22063,7 +22063,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22072,7 +22072,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22081,7 +22081,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22102,7 +22102,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22111,7 +22111,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22120,7 +22120,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000217}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22141,7 +22141,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000218}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22150,7 +22150,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000219}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22159,7 +22159,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000220}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -22180,7 +22180,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000221}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -22189,7 +22189,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000222}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24695,7 +24695,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000163}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000164}, !- Summer Design Day Schedule Name @@ -24703,7 +24703,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000166}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000167}, !- Summer Design Day Schedule Name @@ -24711,7 +24711,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000170}, !- Summer Design Day Schedule Name @@ -24719,7 +24719,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000173}, !- Summer Design Day Schedule Name @@ -24727,7 +24727,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000175}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000176}, !- Summer Design Day Schedule Name @@ -24735,7 +24735,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000178}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000179}, !- Summer Design Day Schedule Name @@ -24743,7 +24743,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000182}, !- Summer Design Day Schedule Name @@ -24751,7 +24751,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000185}, !- Summer Design Day Schedule Name @@ -24759,7 +24759,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000188}, !- Summer Design Day Schedule Name @@ -24767,7 +24767,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000191}, !- Summer Design Day Schedule Name @@ -24775,7 +24775,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000194}, !- Summer Design Day Schedule Name @@ -24783,7 +24783,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000196}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000197}, !- Summer Design Day Schedule Name @@ -24791,7 +24791,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000199}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000200}, !- Summer Design Day Schedule Name @@ -24799,7 +24799,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000202}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000203}, !- Summer Design Day Schedule Name @@ -24807,7 +24807,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000205}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000206}, !- Summer Design Day Schedule Name @@ -24815,7 +24815,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000208}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000209}, !- Summer Design Day Schedule Name @@ -24823,7 +24823,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000211}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000212}, !- Summer Design Day Schedule Name @@ -24831,7 +24831,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000214}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000215}, !- Summer Design Day Schedule Name @@ -24839,7 +24839,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000217}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000218}, !- Summer Design Day Schedule Name @@ -24847,7 +24847,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0064-000000000220}, !- Default Day Schedule Name {00000000-0000-0000-0064-000000000221}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGas-CAN_AB_Calgary.osm index 33b76e1822..d58187df9d 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGas-CAN_AB_Calgary.osm @@ -12535,81 +12535,81 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000001}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f0b0b3b5-10d0-4636-87e1-e33442234efc}<23.9 && {f0b0b3b5-10d0-4636-87e1-e33442234efc}>1.7, !- Program Line 1 - SET {63057279-ae99-407a-96cc-20b857790228} = 29.4, !- Program Line 2 - SET {b1295ed2-4d4a-49f6-ac23-b4c0a7c06267} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f0b0b3b5-10d0-4636-87e1-e33442234efc}<23.9 && {f0b0b3b5-10d0-4636-87e1-e33442234efc}>1.7, !- Program Line 4 - SET {63057279-ae99-407a-96cc-20b857790228} = 29.4, !- Program Line 5 - SET {b1295ed2-4d4a-49f6-ac23-b4c0a7c06267} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f0b0b3b5-10d0-4636-87e1-e33442234efc}<23.9 && {f0b0b3b5-10d0-4636-87e1-e33442234efc}>1.7, !- Program Line 7 - SET {63057279-ae99-407a-96cc-20b857790228} = 29.4, !- Program Line 8 - SET {b1295ed2-4d4a-49f6-ac23-b4c0a7c06267} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f0b0b3b5-10d0-4636-87e1-e33442234efc}<23.9 && {f0b0b3b5-10d0-4636-87e1-e33442234efc}>1.7, !- Program Line 10 - SET {63057279-ae99-407a-96cc-20b857790228} = 29.4, !- Program Line 11 - SET {b1295ed2-4d4a-49f6-ac23-b4c0a7c06267} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {90175a46-4b2c-4a71-b169-8b3c6db0ae55}<23.9 && {90175a46-4b2c-4a71-b169-8b3c6db0ae55}>1.7, !- Program Line 1 + SET {fdc189fe-e4b1-4440-93eb-4ee6ee8ba060} = 29.4, !- Program Line 2 + SET {ef14382a-990e-48c8-8719-128a3714f462} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {90175a46-4b2c-4a71-b169-8b3c6db0ae55}<23.9 && {90175a46-4b2c-4a71-b169-8b3c6db0ae55}>1.7, !- Program Line 4 + SET {fdc189fe-e4b1-4440-93eb-4ee6ee8ba060} = 29.4, !- Program Line 5 + SET {ef14382a-990e-48c8-8719-128a3714f462} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {90175a46-4b2c-4a71-b169-8b3c6db0ae55}<23.9 && {90175a46-4b2c-4a71-b169-8b3c6db0ae55}>1.7, !- Program Line 7 + SET {fdc189fe-e4b1-4440-93eb-4ee6ee8ba060} = 29.4, !- Program Line 8 + SET {ef14382a-990e-48c8-8719-128a3714f462} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {90175a46-4b2c-4a71-b169-8b3c6db0ae55}<23.9 && {90175a46-4b2c-4a71-b169-8b3c6db0ae55}>1.7, !- Program Line 10 + SET {fdc189fe-e4b1-4440-93eb-4ee6ee8ba060} = 29.4, !- Program Line 11 + SET {ef14382a-990e-48c8-8719-128a3714f462} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {63057279-ae99-407a-96cc-20b857790228} = NULL, !- Program Line 14 - SET {b1295ed2-4d4a-49f6-ac23-b4c0a7c06267} = NULL, !- Program Line 15 + SET {fdc189fe-e4b1-4440-93eb-4ee6ee8ba060} = NULL, !- Program Line 14 + SET {ef14382a-990e-48c8-8719-128a3714f462} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000002}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e4b3763d-151a-4ef2-8fb6-42e73138602f}<23.9 && {e4b3763d-151a-4ef2-8fb6-42e73138602f}>1.7, !- Program Line 1 - SET {18133d44-f5ed-4a26-8dd3-1dcfb199baf2} = 29.4, !- Program Line 2 - SET {501efd8d-b950-4793-bb1c-7237936a58e8} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e4b3763d-151a-4ef2-8fb6-42e73138602f}<23.9 && {e4b3763d-151a-4ef2-8fb6-42e73138602f}>1.7, !- Program Line 4 - SET {18133d44-f5ed-4a26-8dd3-1dcfb199baf2} = 29.4, !- Program Line 5 - SET {501efd8d-b950-4793-bb1c-7237936a58e8} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e4b3763d-151a-4ef2-8fb6-42e73138602f}<23.9 && {e4b3763d-151a-4ef2-8fb6-42e73138602f}>1.7, !- Program Line 7 - SET {18133d44-f5ed-4a26-8dd3-1dcfb199baf2} = 29.4, !- Program Line 8 - SET {501efd8d-b950-4793-bb1c-7237936a58e8} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e4b3763d-151a-4ef2-8fb6-42e73138602f}<23.9 && {e4b3763d-151a-4ef2-8fb6-42e73138602f}>1.7, !- Program Line 10 - SET {18133d44-f5ed-4a26-8dd3-1dcfb199baf2} = 29.4, !- Program Line 11 - SET {501efd8d-b950-4793-bb1c-7237936a58e8} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {02402216-b25c-4911-a39d-3906d18a06b2}<23.9 && {02402216-b25c-4911-a39d-3906d18a06b2}>1.7, !- Program Line 1 + SET {fd42aaea-7d8e-43b3-9d09-40c35c0653d8} = 29.4, !- Program Line 2 + SET {ef3d1542-90fe-4a05-8397-d9086b1841f1} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {02402216-b25c-4911-a39d-3906d18a06b2}<23.9 && {02402216-b25c-4911-a39d-3906d18a06b2}>1.7, !- Program Line 4 + SET {fd42aaea-7d8e-43b3-9d09-40c35c0653d8} = 29.4, !- Program Line 5 + SET {ef3d1542-90fe-4a05-8397-d9086b1841f1} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {02402216-b25c-4911-a39d-3906d18a06b2}<23.9 && {02402216-b25c-4911-a39d-3906d18a06b2}>1.7, !- Program Line 7 + SET {fd42aaea-7d8e-43b3-9d09-40c35c0653d8} = 29.4, !- Program Line 8 + SET {ef3d1542-90fe-4a05-8397-d9086b1841f1} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {02402216-b25c-4911-a39d-3906d18a06b2}<23.9 && {02402216-b25c-4911-a39d-3906d18a06b2}>1.7, !- Program Line 10 + SET {fd42aaea-7d8e-43b3-9d09-40c35c0653d8} = 29.4, !- Program Line 11 + SET {ef3d1542-90fe-4a05-8397-d9086b1841f1} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {18133d44-f5ed-4a26-8dd3-1dcfb199baf2} = NULL, !- Program Line 14 - SET {501efd8d-b950-4793-bb1c-7237936a58e8} = NULL, !- Program Line 15 + SET {fd42aaea-7d8e-43b3-9d09-40c35c0653d8} = NULL, !- Program Line 14 + SET {ef3d1542-90fe-4a05-8397-d9086b1841f1} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000003}, !- Handle ems_sys_3_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6ad3ab72-a395-4b06-bda0-0507a3022dc3}<23.9 && {6ad3ab72-a395-4b06-bda0-0507a3022dc3}>1.7, !- Program Line 1 - SET {4aa85bed-67dd-43fa-8ce9-c87eebf5dbde} = 29.4, !- Program Line 2 - SET {ec36135d-4b4a-4a14-a352-01fbe40d4344} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6ad3ab72-a395-4b06-bda0-0507a3022dc3}<23.9 && {6ad3ab72-a395-4b06-bda0-0507a3022dc3}>1.7, !- Program Line 4 - SET {4aa85bed-67dd-43fa-8ce9-c87eebf5dbde} = 29.4, !- Program Line 5 - SET {ec36135d-4b4a-4a14-a352-01fbe40d4344} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6ad3ab72-a395-4b06-bda0-0507a3022dc3}<23.9 && {6ad3ab72-a395-4b06-bda0-0507a3022dc3}>1.7, !- Program Line 7 - SET {4aa85bed-67dd-43fa-8ce9-c87eebf5dbde} = 29.4, !- Program Line 8 - SET {ec36135d-4b4a-4a14-a352-01fbe40d4344} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6ad3ab72-a395-4b06-bda0-0507a3022dc3}<23.9 && {6ad3ab72-a395-4b06-bda0-0507a3022dc3}>1.7, !- Program Line 10 - SET {4aa85bed-67dd-43fa-8ce9-c87eebf5dbde} = 29.4, !- Program Line 11 - SET {ec36135d-4b4a-4a14-a352-01fbe40d4344} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a1c2d795-aac1-4b89-8b8a-f38a001110d5}<23.9 && {a1c2d795-aac1-4b89-8b8a-f38a001110d5}>1.7, !- Program Line 1 + SET {e4c04fad-6c2f-4949-8e5f-51e55e0b3ca1} = 29.4, !- Program Line 2 + SET {3fecffff-87c3-45e5-9bdb-22687171d386} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a1c2d795-aac1-4b89-8b8a-f38a001110d5}<23.9 && {a1c2d795-aac1-4b89-8b8a-f38a001110d5}>1.7, !- Program Line 4 + SET {e4c04fad-6c2f-4949-8e5f-51e55e0b3ca1} = 29.4, !- Program Line 5 + SET {3fecffff-87c3-45e5-9bdb-22687171d386} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a1c2d795-aac1-4b89-8b8a-f38a001110d5}<23.9 && {a1c2d795-aac1-4b89-8b8a-f38a001110d5}>1.7, !- Program Line 7 + SET {e4c04fad-6c2f-4949-8e5f-51e55e0b3ca1} = 29.4, !- Program Line 8 + SET {3fecffff-87c3-45e5-9bdb-22687171d386} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a1c2d795-aac1-4b89-8b8a-f38a001110d5}<23.9 && {a1c2d795-aac1-4b89-8b8a-f38a001110d5}>1.7, !- Program Line 10 + SET {e4c04fad-6c2f-4949-8e5f-51e55e0b3ca1} = 29.4, !- Program Line 11 + SET {3fecffff-87c3-45e5-9bdb-22687171d386} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {4aa85bed-67dd-43fa-8ce9-c87eebf5dbde} = NULL, !- Program Line 14 - SET {ec36135d-4b4a-4a14-a352-01fbe40d4344} = NULL, !- Program Line 15 + SET {e4c04fad-6c2f-4949-8e5f-51e55e0b3ca1} = NULL, !- Program Line 14 + SET {3fecffff-87c3-45e5-9bdb-22687171d386} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000004}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6e8bb2db-e0c9-4261-92c0-55e3cebde9d2}<23.9 && {6e8bb2db-e0c9-4261-92c0-55e3cebde9d2}>1.7, !- Program Line 1 - SET {a911c669-6a5a-4e95-b96c-5ed2d394a23f} = 29.4, !- Program Line 2 - SET {c671d914-9839-48dc-aaaa-698e172c150b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6e8bb2db-e0c9-4261-92c0-55e3cebde9d2}<23.9 && {6e8bb2db-e0c9-4261-92c0-55e3cebde9d2}>1.7, !- Program Line 4 - SET {a911c669-6a5a-4e95-b96c-5ed2d394a23f} = 29.4, !- Program Line 5 - SET {c671d914-9839-48dc-aaaa-698e172c150b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6e8bb2db-e0c9-4261-92c0-55e3cebde9d2}<23.9 && {6e8bb2db-e0c9-4261-92c0-55e3cebde9d2}>1.7, !- Program Line 7 - SET {a911c669-6a5a-4e95-b96c-5ed2d394a23f} = 29.4, !- Program Line 8 - SET {c671d914-9839-48dc-aaaa-698e172c150b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6e8bb2db-e0c9-4261-92c0-55e3cebde9d2}<23.9 && {6e8bb2db-e0c9-4261-92c0-55e3cebde9d2}>1.7, !- Program Line 10 - SET {a911c669-6a5a-4e95-b96c-5ed2d394a23f} = 29.4, !- Program Line 11 - SET {c671d914-9839-48dc-aaaa-698e172c150b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7734547f-b5d5-4a6e-a9bc-5edcb25c6af1}<23.9 && {7734547f-b5d5-4a6e-a9bc-5edcb25c6af1}>1.7, !- Program Line 1 + SET {3cc38162-6d81-4224-8193-16ebf496295d} = 29.4, !- Program Line 2 + SET {29e964f2-6119-44b5-90a0-4de3e9b6f850} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7734547f-b5d5-4a6e-a9bc-5edcb25c6af1}<23.9 && {7734547f-b5d5-4a6e-a9bc-5edcb25c6af1}>1.7, !- Program Line 4 + SET {3cc38162-6d81-4224-8193-16ebf496295d} = 29.4, !- Program Line 5 + SET {29e964f2-6119-44b5-90a0-4de3e9b6f850} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7734547f-b5d5-4a6e-a9bc-5edcb25c6af1}<23.9 && {7734547f-b5d5-4a6e-a9bc-5edcb25c6af1}>1.7, !- Program Line 7 + SET {3cc38162-6d81-4224-8193-16ebf496295d} = 29.4, !- Program Line 8 + SET {29e964f2-6119-44b5-90a0-4de3e9b6f850} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7734547f-b5d5-4a6e-a9bc-5edcb25c6af1}<23.9 && {7734547f-b5d5-4a6e-a9bc-5edcb25c6af1}>1.7, !- Program Line 10 + SET {3cc38162-6d81-4224-8193-16ebf496295d} = 29.4, !- Program Line 11 + SET {29e964f2-6119-44b5-90a0-4de3e9b6f850} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a911c669-6a5a-4e95-b96c-5ed2d394a23f} = NULL, !- Program Line 14 - SET {c671d914-9839-48dc-aaaa-698e172c150b} = NULL, !- Program Line 15 + SET {3cc38162-6d81-4224-8193-16ebf496295d} = NULL, !- Program Line 14 + SET {29e964f2-6119-44b5-90a0-4de3e9b6f850} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 17c4070fad..cfc2784e5c 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000058}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000059}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -14247,7 +14247,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14255,7 +14255,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14263,7 +14263,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14271,7 +14271,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14279,7 +14279,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0069-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14287,7 +14287,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14295,7 +14295,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000007}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0069-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14303,7 +14303,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14311,105 +14311,105 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1fa9c593-3ab4-479b-aa78-b4590e7f63e6}<23.9 && {1fa9c593-3ab4-479b-aa78-b4590e7f63e6}>1.7, !- Program Line 1 - SET {b6051634-62a3-4619-abbe-f57296da43cf} = 29.4, !- Program Line 2 - SET {712a9d2b-9d77-4508-a5ce-7c2f4daecba9} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1fa9c593-3ab4-479b-aa78-b4590e7f63e6}<23.9 && {1fa9c593-3ab4-479b-aa78-b4590e7f63e6}>1.7, !- Program Line 4 - SET {b6051634-62a3-4619-abbe-f57296da43cf} = 29.4, !- Program Line 5 - SET {712a9d2b-9d77-4508-a5ce-7c2f4daecba9} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1fa9c593-3ab4-479b-aa78-b4590e7f63e6}<23.9 && {1fa9c593-3ab4-479b-aa78-b4590e7f63e6}>1.7, !- Program Line 7 - SET {b6051634-62a3-4619-abbe-f57296da43cf} = 29.4, !- Program Line 8 - SET {712a9d2b-9d77-4508-a5ce-7c2f4daecba9} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1fa9c593-3ab4-479b-aa78-b4590e7f63e6}<23.9 && {1fa9c593-3ab4-479b-aa78-b4590e7f63e6}>1.7, !- Program Line 10 - SET {b6051634-62a3-4619-abbe-f57296da43cf} = 29.4, !- Program Line 11 - SET {712a9d2b-9d77-4508-a5ce-7c2f4daecba9} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3d4f99fd-bf7d-4886-9191-ebead6feac25}<23.9 && {3d4f99fd-bf7d-4886-9191-ebead6feac25}>1.7, !- Program Line 1 + SET {bbd270c8-7484-4905-809a-55abbf854faa} = 29.4, !- Program Line 2 + SET {4086cf12-4863-4c01-b7aa-5c809fd1b4ca} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3d4f99fd-bf7d-4886-9191-ebead6feac25}<23.9 && {3d4f99fd-bf7d-4886-9191-ebead6feac25}>1.7, !- Program Line 4 + SET {bbd270c8-7484-4905-809a-55abbf854faa} = 29.4, !- Program Line 5 + SET {4086cf12-4863-4c01-b7aa-5c809fd1b4ca} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3d4f99fd-bf7d-4886-9191-ebead6feac25}<23.9 && {3d4f99fd-bf7d-4886-9191-ebead6feac25}>1.7, !- Program Line 7 + SET {bbd270c8-7484-4905-809a-55abbf854faa} = 29.4, !- Program Line 8 + SET {4086cf12-4863-4c01-b7aa-5c809fd1b4ca} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3d4f99fd-bf7d-4886-9191-ebead6feac25}<23.9 && {3d4f99fd-bf7d-4886-9191-ebead6feac25}>1.7, !- Program Line 10 + SET {bbd270c8-7484-4905-809a-55abbf854faa} = 29.4, !- Program Line 11 + SET {4086cf12-4863-4c01-b7aa-5c809fd1b4ca} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b6051634-62a3-4619-abbe-f57296da43cf} = NULL, !- Program Line 14 - SET {712a9d2b-9d77-4508-a5ce-7c2f4daecba9} = NULL, !- Program Line 15 + SET {bbd270c8-7484-4905-809a-55abbf854faa} = NULL, !- Program Line 14 + SET {4086cf12-4863-4c01-b7aa-5c809fd1b4ca} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {db489169-920c-4cb7-ae39-7a312ff598c4}<23.9 && {db489169-920c-4cb7-ae39-7a312ff598c4}>1.7, !- Program Line 1 - SET {6dec257a-c982-4008-80bc-2293bed4c15d} = 29.4, !- Program Line 2 - SET {279d4ee9-924a-46ba-bd16-65058f3e86fc} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {db489169-920c-4cb7-ae39-7a312ff598c4}<23.9 && {db489169-920c-4cb7-ae39-7a312ff598c4}>1.7, !- Program Line 4 - SET {6dec257a-c982-4008-80bc-2293bed4c15d} = 29.4, !- Program Line 5 - SET {279d4ee9-924a-46ba-bd16-65058f3e86fc} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {db489169-920c-4cb7-ae39-7a312ff598c4}<23.9 && {db489169-920c-4cb7-ae39-7a312ff598c4}>1.7, !- Program Line 7 - SET {6dec257a-c982-4008-80bc-2293bed4c15d} = 29.4, !- Program Line 8 - SET {279d4ee9-924a-46ba-bd16-65058f3e86fc} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {db489169-920c-4cb7-ae39-7a312ff598c4}<23.9 && {db489169-920c-4cb7-ae39-7a312ff598c4}>1.7, !- Program Line 10 - SET {6dec257a-c982-4008-80bc-2293bed4c15d} = 29.4, !- Program Line 11 - SET {279d4ee9-924a-46ba-bd16-65058f3e86fc} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d7791318-51a7-4d7d-8f1e-8bdfeac671be}<23.9 && {d7791318-51a7-4d7d-8f1e-8bdfeac671be}>1.7, !- Program Line 1 + SET {a70a80e4-927b-4c05-ace3-8a20c1460d56} = 29.4, !- Program Line 2 + SET {08086e3b-b9c1-4407-b935-77707f5050d6} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d7791318-51a7-4d7d-8f1e-8bdfeac671be}<23.9 && {d7791318-51a7-4d7d-8f1e-8bdfeac671be}>1.7, !- Program Line 4 + SET {a70a80e4-927b-4c05-ace3-8a20c1460d56} = 29.4, !- Program Line 5 + SET {08086e3b-b9c1-4407-b935-77707f5050d6} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d7791318-51a7-4d7d-8f1e-8bdfeac671be}<23.9 && {d7791318-51a7-4d7d-8f1e-8bdfeac671be}>1.7, !- Program Line 7 + SET {a70a80e4-927b-4c05-ace3-8a20c1460d56} = 29.4, !- Program Line 8 + SET {08086e3b-b9c1-4407-b935-77707f5050d6} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d7791318-51a7-4d7d-8f1e-8bdfeac671be}<23.9 && {d7791318-51a7-4d7d-8f1e-8bdfeac671be}>1.7, !- Program Line 10 + SET {a70a80e4-927b-4c05-ace3-8a20c1460d56} = 29.4, !- Program Line 11 + SET {08086e3b-b9c1-4407-b935-77707f5050d6} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6dec257a-c982-4008-80bc-2293bed4c15d} = NULL, !- Program Line 14 - SET {279d4ee9-924a-46ba-bd16-65058f3e86fc} = NULL, !- Program Line 15 + SET {a70a80e4-927b-4c05-ace3-8a20c1460d56} = NULL, !- Program Line 14 + SET {08086e3b-b9c1-4407-b935-77707f5050d6} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {12e44d99-b441-4b68-8b52-ac7ce26165bb}<23.9 && {12e44d99-b441-4b68-8b52-ac7ce26165bb}>1.7, !- Program Line 1 - SET {118ddfee-ae5d-40f8-912e-51745f30c906} = 29.4, !- Program Line 2 - SET {52a1667b-2f6e-4cc8-a2b3-6c35b195a25e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {12e44d99-b441-4b68-8b52-ac7ce26165bb}<23.9 && {12e44d99-b441-4b68-8b52-ac7ce26165bb}>1.7, !- Program Line 4 - SET {118ddfee-ae5d-40f8-912e-51745f30c906} = 29.4, !- Program Line 5 - SET {52a1667b-2f6e-4cc8-a2b3-6c35b195a25e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {12e44d99-b441-4b68-8b52-ac7ce26165bb}<23.9 && {12e44d99-b441-4b68-8b52-ac7ce26165bb}>1.7, !- Program Line 7 - SET {118ddfee-ae5d-40f8-912e-51745f30c906} = 29.4, !- Program Line 8 - SET {52a1667b-2f6e-4cc8-a2b3-6c35b195a25e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {12e44d99-b441-4b68-8b52-ac7ce26165bb}<23.9 && {12e44d99-b441-4b68-8b52-ac7ce26165bb}>1.7, !- Program Line 10 - SET {118ddfee-ae5d-40f8-912e-51745f30c906} = 29.4, !- Program Line 11 - SET {52a1667b-2f6e-4cc8-a2b3-6c35b195a25e} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7b80efe7-658f-4fb9-818e-c4a042b46347}<23.9 && {7b80efe7-658f-4fb9-818e-c4a042b46347}>1.7, !- Program Line 1 + SET {e073fe7f-bcda-48e2-968c-87cd64efa54f} = 29.4, !- Program Line 2 + SET {c2538d82-cad1-4c00-a7ca-85cf27c83bdf} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7b80efe7-658f-4fb9-818e-c4a042b46347}<23.9 && {7b80efe7-658f-4fb9-818e-c4a042b46347}>1.7, !- Program Line 4 + SET {e073fe7f-bcda-48e2-968c-87cd64efa54f} = 29.4, !- Program Line 5 + SET {c2538d82-cad1-4c00-a7ca-85cf27c83bdf} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7b80efe7-658f-4fb9-818e-c4a042b46347}<23.9 && {7b80efe7-658f-4fb9-818e-c4a042b46347}>1.7, !- Program Line 7 + SET {e073fe7f-bcda-48e2-968c-87cd64efa54f} = 29.4, !- Program Line 8 + SET {c2538d82-cad1-4c00-a7ca-85cf27c83bdf} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7b80efe7-658f-4fb9-818e-c4a042b46347}<23.9 && {7b80efe7-658f-4fb9-818e-c4a042b46347}>1.7, !- Program Line 10 + SET {e073fe7f-bcda-48e2-968c-87cd64efa54f} = 29.4, !- Program Line 11 + SET {c2538d82-cad1-4c00-a7ca-85cf27c83bdf} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {118ddfee-ae5d-40f8-912e-51745f30c906} = NULL, !- Program Line 14 - SET {52a1667b-2f6e-4cc8-a2b3-6c35b195a25e} = NULL, !- Program Line 15 + SET {e073fe7f-bcda-48e2-968c-87cd64efa54f} = NULL, !- Program Line 14 + SET {c2538d82-cad1-4c00-a7ca-85cf27c83bdf} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4034486f-b335-4f93-8ae7-e02a1fbcde0b}<23.9 && {4034486f-b335-4f93-8ae7-e02a1fbcde0b}>1.7, !- Program Line 1 - SET {3c59054b-b050-42d4-8dbf-2d2ee2103a79} = 29.4, !- Program Line 2 - SET {186d2f21-9c1b-4da7-a6b3-8b5b2af07e7d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4034486f-b335-4f93-8ae7-e02a1fbcde0b}<23.9 && {4034486f-b335-4f93-8ae7-e02a1fbcde0b}>1.7, !- Program Line 4 - SET {3c59054b-b050-42d4-8dbf-2d2ee2103a79} = 29.4, !- Program Line 5 - SET {186d2f21-9c1b-4da7-a6b3-8b5b2af07e7d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4034486f-b335-4f93-8ae7-e02a1fbcde0b}<23.9 && {4034486f-b335-4f93-8ae7-e02a1fbcde0b}>1.7, !- Program Line 7 - SET {3c59054b-b050-42d4-8dbf-2d2ee2103a79} = 29.4, !- Program Line 8 - SET {186d2f21-9c1b-4da7-a6b3-8b5b2af07e7d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4034486f-b335-4f93-8ae7-e02a1fbcde0b}<23.9 && {4034486f-b335-4f93-8ae7-e02a1fbcde0b}>1.7, !- Program Line 10 - SET {3c59054b-b050-42d4-8dbf-2d2ee2103a79} = 29.4, !- Program Line 11 - SET {186d2f21-9c1b-4da7-a6b3-8b5b2af07e7d} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f939d0c5-56f2-4ee2-8e73-3ad09a46cbc6}<23.9 && {f939d0c5-56f2-4ee2-8e73-3ad09a46cbc6}>1.7, !- Program Line 1 + SET {68b3d897-1eda-48c5-bd28-115b60dce99c} = 29.4, !- Program Line 2 + SET {b0b91b90-bb53-49f0-a3f3-17e25d4689ec} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f939d0c5-56f2-4ee2-8e73-3ad09a46cbc6}<23.9 && {f939d0c5-56f2-4ee2-8e73-3ad09a46cbc6}>1.7, !- Program Line 4 + SET {68b3d897-1eda-48c5-bd28-115b60dce99c} = 29.4, !- Program Line 5 + SET {b0b91b90-bb53-49f0-a3f3-17e25d4689ec} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f939d0c5-56f2-4ee2-8e73-3ad09a46cbc6}<23.9 && {f939d0c5-56f2-4ee2-8e73-3ad09a46cbc6}>1.7, !- Program Line 7 + SET {68b3d897-1eda-48c5-bd28-115b60dce99c} = 29.4, !- Program Line 8 + SET {b0b91b90-bb53-49f0-a3f3-17e25d4689ec} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f939d0c5-56f2-4ee2-8e73-3ad09a46cbc6}<23.9 && {f939d0c5-56f2-4ee2-8e73-3ad09a46cbc6}>1.7, !- Program Line 10 + SET {68b3d897-1eda-48c5-bd28-115b60dce99c} = 29.4, !- Program Line 11 + SET {b0b91b90-bb53-49f0-a3f3-17e25d4689ec} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3c59054b-b050-42d4-8dbf-2d2ee2103a79} = NULL, !- Program Line 14 - SET {186d2f21-9c1b-4da7-a6b3-8b5b2af07e7d} = NULL, !- Program Line 15 + SET {68b3d897-1eda-48c5-bd28-115b60dce99c} = NULL, !- Program Line 14 + SET {b0b91b90-bb53-49f0-a3f3-17e25d4689ec} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000004}; !- Program Name 1 @@ -14982,7 +14982,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15008,7 +15008,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15034,7 +15034,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15060,7 +15060,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15086,7 +15086,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15112,7 +15112,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15138,7 +15138,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15164,7 +15164,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15190,7 +15190,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15216,7 +15216,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15242,7 +15242,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15268,7 +15268,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15294,7 +15294,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15320,7 +15320,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15346,7 +15346,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15372,7 +15372,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15398,7 +15398,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15424,7 +15424,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15450,7 +15450,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15476,7 +15476,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -17910,1081 +17910,1081 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000246}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000219}, !- Inlet Port {00000000-0000-0000-0018-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000247}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000222}, !- Inlet Port {00000000-0000-0000-0018-000000000220}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000248}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000225}, !- Inlet Port {00000000-0000-0000-0018-000000000226}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000249}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000717}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000250}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000722}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000251}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000217}, !- Inlet Port {00000000-0000-0000-0018-000000000224}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000252}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000223}, !- Inlet Port {00000000-0000-0000-0018-000000000218}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000253}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000399}, !- Inlet Port {00000000-0000-0000-0018-000000000401}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000254}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000402}, !- Inlet Port {00000000-0000-0000-0018-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000255}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000405}, !- Inlet Port {00000000-0000-0000-0018-000000000406}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000256}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000723}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000257}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000728}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000258}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000397}, !- Inlet Port {00000000-0000-0000-0018-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000259}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000403}, !- Inlet Port {00000000-0000-0000-0018-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000260}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000419}, !- Inlet Port {00000000-0000-0000-0018-000000000421}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000261}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000422}, !- Inlet Port {00000000-0000-0000-0018-000000000420}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000262}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000425}, !- Inlet Port {00000000-0000-0000-0018-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000263}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000729}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000264}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000734}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000265}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000417}, !- Inlet Port {00000000-0000-0000-0018-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000266}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000423}, !- Inlet Port {00000000-0000-0000-0018-000000000418}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000267}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000439}, !- Inlet Port {00000000-0000-0000-0018-000000000441}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000268}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000442}, !- Inlet Port {00000000-0000-0000-0018-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000269}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000445}, !- Inlet Port {00000000-0000-0000-0018-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000270}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000735}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000271}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000740}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000272}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000437}, !- Inlet Port {00000000-0000-0000-0018-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000273}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000443}, !- Inlet Port {00000000-0000-0000-0018-000000000438}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000274}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000459}, !- Inlet Port {00000000-0000-0000-0018-000000000461}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000275}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000462}, !- Inlet Port {00000000-0000-0000-0018-000000000460}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000276}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000465}, !- Inlet Port {00000000-0000-0000-0018-000000000466}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000277}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000741}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000278}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000746}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000279}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000457}, !- Inlet Port {00000000-0000-0000-0018-000000000464}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000280}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000463}, !- Inlet Port {00000000-0000-0000-0018-000000000458}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000281}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000479}, !- Inlet Port {00000000-0000-0000-0018-000000000481}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000282}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000482}, !- Inlet Port {00000000-0000-0000-0018-000000000480}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000283}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000485}, !- Inlet Port {00000000-0000-0000-0018-000000000486}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000284}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000747}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000285}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000752}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000286}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000477}, !- Inlet Port {00000000-0000-0000-0018-000000000484}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000287}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000483}, !- Inlet Port {00000000-0000-0000-0018-000000000478}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000288}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000499}, !- Inlet Port {00000000-0000-0000-0018-000000000501}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000289}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000502}, !- Inlet Port {00000000-0000-0000-0018-000000000500}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000290}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000505}, !- Inlet Port {00000000-0000-0000-0018-000000000506}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000291}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000753}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000292}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000758}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000293}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000497}, !- Inlet Port {00000000-0000-0000-0018-000000000504}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000294}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000503}, !- Inlet Port {00000000-0000-0000-0018-000000000498}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000295}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000519}, !- Inlet Port {00000000-0000-0000-0018-000000000521}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000296}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000522}, !- Inlet Port {00000000-0000-0000-0018-000000000520}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000297}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000525}, !- Inlet Port {00000000-0000-0000-0018-000000000526}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000298}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000759}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000299}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000764}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000300}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000517}, !- Inlet Port {00000000-0000-0000-0018-000000000524}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000301}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000523}, !- Inlet Port {00000000-0000-0000-0018-000000000518}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000302}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000539}, !- Inlet Port {00000000-0000-0000-0018-000000000541}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000303}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000542}, !- Inlet Port {00000000-0000-0000-0018-000000000540}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000304}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000545}, !- Inlet Port {00000000-0000-0000-0018-000000000546}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000305}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000765}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000306}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000770}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000307}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000537}, !- Inlet Port {00000000-0000-0000-0018-000000000544}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000308}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000543}, !- Inlet Port {00000000-0000-0000-0018-000000000538}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000309}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000239}, !- Inlet Port {00000000-0000-0000-0018-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000310}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000242}, !- Inlet Port {00000000-0000-0000-0018-000000000240}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000311}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000245}, !- Inlet Port {00000000-0000-0000-0018-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000312}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000771}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000313}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000776}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000314}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000237}, !- Inlet Port {00000000-0000-0000-0018-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000315}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000243}, !- Inlet Port {00000000-0000-0000-0018-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000316}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000259}, !- Inlet Port {00000000-0000-0000-0018-000000000261}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000317}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000262}, !- Inlet Port {00000000-0000-0000-0018-000000000260}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000318}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000265}, !- Inlet Port {00000000-0000-0000-0018-000000000266}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000319}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000777}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000320}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000782}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000321}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000257}, !- Inlet Port {00000000-0000-0000-0018-000000000264}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000322}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000263}, !- Inlet Port {00000000-0000-0000-0018-000000000258}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000323}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000279}, !- Inlet Port {00000000-0000-0000-0018-000000000281}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000324}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000282}, !- Inlet Port {00000000-0000-0000-0018-000000000280}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000325}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000285}, !- Inlet Port {00000000-0000-0000-0018-000000000286}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000326}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000783}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000327}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000788}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000328}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000277}, !- Inlet Port {00000000-0000-0000-0018-000000000284}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000329}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000283}, !- Inlet Port {00000000-0000-0000-0018-000000000278}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000330}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000299}, !- Inlet Port {00000000-0000-0000-0018-000000000301}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000331}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000302}, !- Inlet Port {00000000-0000-0000-0018-000000000300}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000332}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000305}, !- Inlet Port {00000000-0000-0000-0018-000000000306}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000333}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000789}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000334}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000794}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000335}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000297}, !- Inlet Port {00000000-0000-0000-0018-000000000304}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000336}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000303}, !- Inlet Port {00000000-0000-0000-0018-000000000298}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000337}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000319}, !- Inlet Port {00000000-0000-0000-0018-000000000321}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000338}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000322}, !- Inlet Port {00000000-0000-0000-0018-000000000320}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000339}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000325}, !- Inlet Port {00000000-0000-0000-0018-000000000326}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000340}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000795}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000341}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000800}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000342}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000317}, !- Inlet Port {00000000-0000-0000-0018-000000000324}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000343}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000323}, !- Inlet Port {00000000-0000-0000-0018-000000000318}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000344}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000339}, !- Inlet Port {00000000-0000-0000-0018-000000000341}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000345}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000342}, !- Inlet Port {00000000-0000-0000-0018-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000346}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000345}, !- Inlet Port {00000000-0000-0000-0018-000000000346}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000347}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000801}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000348}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000806}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000349}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000337}, !- Inlet Port {00000000-0000-0000-0018-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000350}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000343}, !- Inlet Port {00000000-0000-0000-0018-000000000338}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000351}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000359}, !- Inlet Port {00000000-0000-0000-0018-000000000361}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000352}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000362}, !- Inlet Port {00000000-0000-0000-0018-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000353}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000365}, !- Inlet Port {00000000-0000-0000-0018-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000354}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000807}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000355}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000812}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000356}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000357}, !- Inlet Port {00000000-0000-0000-0018-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000357}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000363}, !- Inlet Port {00000000-0000-0000-0018-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000358}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000379}, !- Inlet Port {00000000-0000-0000-0018-000000000381}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000359}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000382}, !- Inlet Port {00000000-0000-0000-0018-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000360}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000385}, !- Inlet Port {00000000-0000-0000-0018-000000000386}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000361}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000362}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000818}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000363}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000377}, !- Inlet Port {00000000-0000-0000-0018-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000364}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000383}, !- Inlet Port {00000000-0000-0000-0018-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000365}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000199}, !- Inlet Port {00000000-0000-0000-0018-000000000201}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000366}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000202}, !- Inlet Port {00000000-0000-0000-0018-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000367}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000205}, !- Inlet Port {00000000-0000-0000-0018-000000000206}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000368}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000711}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000369}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000716}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000370}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000197}, !- Inlet Port {00000000-0000-0000-0018-000000000204}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000371}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000203}, !- Inlet Port {00000000-0000-0000-0018-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000372}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000718}, !- Inlet Port {00000000-0000-0000-0018-000000000719}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000373}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000720}, !- Inlet Port {00000000-0000-0000-0018-000000000721}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000374}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000724}, !- Inlet Port {00000000-0000-0000-0018-000000000725}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000375}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000726}, !- Inlet Port {00000000-0000-0000-0018-000000000727}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000376}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000730}, !- Inlet Port {00000000-0000-0000-0018-000000000731}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000377}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000732}, !- Inlet Port {00000000-0000-0000-0018-000000000733}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000378}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000736}, !- Inlet Port {00000000-0000-0000-0018-000000000737}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000379}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000738}, !- Inlet Port {00000000-0000-0000-0018-000000000739}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000380}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000742}, !- Inlet Port {00000000-0000-0000-0018-000000000743}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000381}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000744}, !- Inlet Port {00000000-0000-0000-0018-000000000745}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000382}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000748}, !- Inlet Port {00000000-0000-0000-0018-000000000749}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000383}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000750}, !- Inlet Port {00000000-0000-0000-0018-000000000751}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000384}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000754}, !- Inlet Port {00000000-0000-0000-0018-000000000755}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000385}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000756}, !- Inlet Port {00000000-0000-0000-0018-000000000757}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000386}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000760}, !- Inlet Port {00000000-0000-0000-0018-000000000761}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000387}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000762}, !- Inlet Port {00000000-0000-0000-0018-000000000763}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000388}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000766}, !- Inlet Port {00000000-0000-0000-0018-000000000767}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000389}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000768}, !- Inlet Port {00000000-0000-0000-0018-000000000769}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000390}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000772}, !- Inlet Port {00000000-0000-0000-0018-000000000773}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000391}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000774}, !- Inlet Port {00000000-0000-0000-0018-000000000775}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000392}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000778}, !- Inlet Port {00000000-0000-0000-0018-000000000779}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000393}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000780}, !- Inlet Port {00000000-0000-0000-0018-000000000781}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000394}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000784}, !- Inlet Port {00000000-0000-0000-0018-000000000785}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000395}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000786}, !- Inlet Port {00000000-0000-0000-0018-000000000787}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000396}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000790}, !- Inlet Port {00000000-0000-0000-0018-000000000791}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000397}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000792}, !- Inlet Port {00000000-0000-0000-0018-000000000793}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000398}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000796}, !- Inlet Port {00000000-0000-0000-0018-000000000797}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000399}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000798}, !- Inlet Port {00000000-0000-0000-0018-000000000799}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000400}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000802}, !- Inlet Port {00000000-0000-0000-0018-000000000803}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000401}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000804}, !- Inlet Port {00000000-0000-0000-0018-000000000805}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000402}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000808}, !- Inlet Port {00000000-0000-0000-0018-000000000809}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000403}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000810}, !- Inlet Port {00000000-0000-0000-0018-000000000811}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000404}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000814}, !- Inlet Port {00000000-0000-0000-0018-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000405}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000816}, !- Inlet Port {00000000-0000-0000-0018-000000000817}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000406}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000712}, !- Inlet Port {00000000-0000-0000-0018-000000000713}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000407}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000714}, !- Inlet Port {00000000-0000-0000-0018-000000000715}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000408}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000129}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000409}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000410}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000135}, !- Inlet Port {00000000-0000-0000-0018-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000411}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000825}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000412}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000830}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000413}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000127}, !- Inlet Port {00000000-0000-0000-0018-000000000134}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000414}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000133}, !- Inlet Port {00000000-0000-0000-0018-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000415}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000100}, !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000416}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000417}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000106}, !- Inlet Port {00000000-0000-0000-0018-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000418}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000419}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000824}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000420}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000105}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000421}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000104}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000422}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000826}, !- Inlet Port {00000000-0000-0000-0018-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000423}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000828}, !- Inlet Port {00000000-0000-0000-0018-000000000829}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000424}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000820}, !- Inlet Port {00000000-0000-0000-0018-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000425}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000822}, !- Inlet Port {00000000-0000-0000-0018-000000000823}; !- Outlet Port @@ -23231,7 +23231,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23252,7 +23252,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23261,7 +23261,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23270,7 +23270,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -23285,7 +23285,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23294,7 +23294,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23303,7 +23303,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23318,7 +23318,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23327,7 +23327,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23336,7 +23336,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23351,7 +23351,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23360,7 +23360,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23369,7 +23369,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23384,7 +23384,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23393,7 +23393,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23402,7 +23402,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23423,7 +23423,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23432,7 +23432,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23441,7 +23441,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23462,7 +23462,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23471,7 +23471,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23480,7 +23480,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23501,7 +23501,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23510,7 +23510,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23519,7 +23519,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23534,7 +23534,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23543,7 +23543,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23552,7 +23552,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23567,7 +23567,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23576,7 +23576,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23585,7 +23585,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23600,7 +23600,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23609,7 +23609,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23618,7 +23618,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23639,7 +23639,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23648,7 +23648,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23657,7 +23657,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23678,7 +23678,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23687,7 +23687,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23696,7 +23696,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23711,7 +23711,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23720,7 +23720,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23729,7 +23729,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23750,7 +23750,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23759,7 +23759,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23768,7 +23768,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23783,7 +23783,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23792,7 +23792,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23801,7 +23801,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -23816,7 +23816,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23825,7 +23825,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23834,7 +23834,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23855,7 +23855,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23864,7 +23864,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23873,7 +23873,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000217}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23894,7 +23894,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000218}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23903,7 +23903,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000219}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23912,7 +23912,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000220}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23933,7 +23933,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000221}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23942,7 +23942,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000222}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -26448,7 +26448,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000163}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000164}, !- Summer Design Day Schedule Name @@ -26456,7 +26456,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000166}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000167}, !- Summer Design Day Schedule Name @@ -26464,7 +26464,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000170}, !- Summer Design Day Schedule Name @@ -26472,7 +26472,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000173}, !- Summer Design Day Schedule Name @@ -26480,7 +26480,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000175}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000176}, !- Summer Design Day Schedule Name @@ -26488,7 +26488,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000178}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000179}, !- Summer Design Day Schedule Name @@ -26496,7 +26496,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000182}, !- Summer Design Day Schedule Name @@ -26504,7 +26504,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000185}, !- Summer Design Day Schedule Name @@ -26512,7 +26512,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000188}, !- Summer Design Day Schedule Name @@ -26520,7 +26520,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000191}, !- Summer Design Day Schedule Name @@ -26528,7 +26528,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000194}, !- Summer Design Day Schedule Name @@ -26536,7 +26536,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000196}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000197}, !- Summer Design Day Schedule Name @@ -26544,7 +26544,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000199}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000200}, !- Summer Design Day Schedule Name @@ -26552,7 +26552,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000202}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000203}, !- Summer Design Day Schedule Name @@ -26560,7 +26560,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000205}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000206}, !- Summer Design Day Schedule Name @@ -26568,7 +26568,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000208}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000209}, !- Summer Design Day Schedule Name @@ -26576,7 +26576,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000211}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000212}, !- Summer Design Day Schedule Name @@ -26584,7 +26584,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000214}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000215}, !- Summer Design Day Schedule Name @@ -26592,7 +26592,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000217}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000218}, !- Summer Design Day Schedule Name @@ -26600,7 +26600,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000220}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000221}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 0bd9ac2452..ee2007b478 100644 --- a/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SecondarySchool-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -320,7 +320,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000040}, !- Availability Schedule {00000000-0000-0000-0009-000000000013}, !- Availability Manager List Name @@ -342,7 +342,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000041}, !- Availability Schedule {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name @@ -364,7 +364,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000042}, !- Availability Schedule {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name @@ -386,7 +386,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000043}, !- Availability Schedule {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name @@ -408,7 +408,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000044}, !- Availability Schedule {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name @@ -430,7 +430,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000045}, !- Availability Schedule {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name @@ -452,7 +452,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000046}, !- Availability Schedule {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name @@ -474,7 +474,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000008}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000047}, !- Availability Schedule {00000000-0000-0000-0009-000000000010}, !- Availability Manager List Name @@ -496,7 +496,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000009}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000048}, !- Availability Schedule {00000000-0000-0000-0009-000000000011}, !- Availability Manager List Name @@ -518,7 +518,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000010}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000049}, !- Availability Schedule {00000000-0000-0000-0009-000000000014}, !- Availability Manager List Name @@ -540,7 +540,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000011}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000050}, !- Availability Schedule {00000000-0000-0000-0009-000000000015}, !- Availability Manager List Name @@ -562,7 +562,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000012}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000051}, !- Availability Schedule {00000000-0000-0000-0009-000000000016}, !- Availability Manager List Name @@ -584,7 +584,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000013}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000052}, !- Availability Schedule {00000000-0000-0000-0009-000000000017}, !- Availability Manager List Name @@ -606,7 +606,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000014}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000053}, !- Availability Schedule {00000000-0000-0000-0009-000000000018}, !- Availability Manager List Name @@ -628,7 +628,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000015}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000054}, !- Availability Schedule {00000000-0000-0000-0009-000000000019}, !- Availability Manager List Name @@ -650,7 +650,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000016}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000055}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -672,7 +672,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000017}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000056}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -694,7 +694,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000018}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000057}, !- Availability Schedule {00000000-0000-0000-0009-000000000012}, !- Availability Manager List Name @@ -716,7 +716,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000019}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000058}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -738,7 +738,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000020}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0069-000000000059}, !- Availability Schedule {00000000-0000-0000-0009-000000000020}, !- Availability Manager List Name @@ -14337,7 +14337,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14345,7 +14345,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14353,7 +14353,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_ClgSch0, !- Name {00000000-0000-0000-0069-000000000019}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14361,7 +14361,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_HtgSch0, !- Name {00000000-0000-0000-0069-000000000020}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14369,7 +14369,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000005}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0069-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14377,7 +14377,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000006}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14385,7 +14385,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000007}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0069-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14393,7 +14393,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000008}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0069-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14401,105 +14401,105 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {979e2063-4d56-4bb9-a31c-d46a4ffbd36e}<23.9 && {979e2063-4d56-4bb9-a31c-d46a4ffbd36e}>1.7, !- Program Line 1 - SET {c39b3aa4-06de-438a-a4f4-d8cc0b3a6d38} = 29.4, !- Program Line 2 - SET {25894f01-1773-42bd-8d66-626e6dc5c684} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {979e2063-4d56-4bb9-a31c-d46a4ffbd36e}<23.9 && {979e2063-4d56-4bb9-a31c-d46a4ffbd36e}>1.7, !- Program Line 4 - SET {c39b3aa4-06de-438a-a4f4-d8cc0b3a6d38} = 29.4, !- Program Line 5 - SET {25894f01-1773-42bd-8d66-626e6dc5c684} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {979e2063-4d56-4bb9-a31c-d46a4ffbd36e}<23.9 && {979e2063-4d56-4bb9-a31c-d46a4ffbd36e}>1.7, !- Program Line 7 - SET {c39b3aa4-06de-438a-a4f4-d8cc0b3a6d38} = 29.4, !- Program Line 8 - SET {25894f01-1773-42bd-8d66-626e6dc5c684} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {979e2063-4d56-4bb9-a31c-d46a4ffbd36e}<23.9 && {979e2063-4d56-4bb9-a31c-d46a4ffbd36e}>1.7, !- Program Line 10 - SET {c39b3aa4-06de-438a-a4f4-d8cc0b3a6d38} = 29.4, !- Program Line 11 - SET {25894f01-1773-42bd-8d66-626e6dc5c684} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7d4ba101-9cbc-4068-bc7d-09bcff09832f}<23.9 && {7d4ba101-9cbc-4068-bc7d-09bcff09832f}>1.7, !- Program Line 1 + SET {292b3736-ad2f-4746-92b4-df439dc54d9f} = 29.4, !- Program Line 2 + SET {2a951665-e2a7-425d-850f-e148dff17fae} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7d4ba101-9cbc-4068-bc7d-09bcff09832f}<23.9 && {7d4ba101-9cbc-4068-bc7d-09bcff09832f}>1.7, !- Program Line 4 + SET {292b3736-ad2f-4746-92b4-df439dc54d9f} = 29.4, !- Program Line 5 + SET {2a951665-e2a7-425d-850f-e148dff17fae} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7d4ba101-9cbc-4068-bc7d-09bcff09832f}<23.9 && {7d4ba101-9cbc-4068-bc7d-09bcff09832f}>1.7, !- Program Line 7 + SET {292b3736-ad2f-4746-92b4-df439dc54d9f} = 29.4, !- Program Line 8 + SET {2a951665-e2a7-425d-850f-e148dff17fae} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7d4ba101-9cbc-4068-bc7d-09bcff09832f}<23.9 && {7d4ba101-9cbc-4068-bc7d-09bcff09832f}>1.7, !- Program Line 10 + SET {292b3736-ad2f-4746-92b4-df439dc54d9f} = 29.4, !- Program Line 11 + SET {2a951665-e2a7-425d-850f-e148dff17fae} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c39b3aa4-06de-438a-a4f4-d8cc0b3a6d38} = NULL, !- Program Line 14 - SET {25894f01-1773-42bd-8d66-626e6dc5c684} = NULL, !- Program Line 15 + SET {292b3736-ad2f-4746-92b4-df439dc54d9f} = NULL, !- Program Line 14 + SET {2a951665-e2a7-425d-850f-e148dff17fae} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8e4ce2b3-d4ba-476c-ba4d-b04d7ab5d96c}<23.9 && {8e4ce2b3-d4ba-476c-ba4d-b04d7ab5d96c}>1.7, !- Program Line 1 - SET {c8c9e2b4-2709-47b6-a455-299c03e32e8b} = 29.4, !- Program Line 2 - SET {6adb7cec-2243-4507-814e-80ef7c6db21c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8e4ce2b3-d4ba-476c-ba4d-b04d7ab5d96c}<23.9 && {8e4ce2b3-d4ba-476c-ba4d-b04d7ab5d96c}>1.7, !- Program Line 4 - SET {c8c9e2b4-2709-47b6-a455-299c03e32e8b} = 29.4, !- Program Line 5 - SET {6adb7cec-2243-4507-814e-80ef7c6db21c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8e4ce2b3-d4ba-476c-ba4d-b04d7ab5d96c}<23.9 && {8e4ce2b3-d4ba-476c-ba4d-b04d7ab5d96c}>1.7, !- Program Line 7 - SET {c8c9e2b4-2709-47b6-a455-299c03e32e8b} = 29.4, !- Program Line 8 - SET {6adb7cec-2243-4507-814e-80ef7c6db21c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8e4ce2b3-d4ba-476c-ba4d-b04d7ab5d96c}<23.9 && {8e4ce2b3-d4ba-476c-ba4d-b04d7ab5d96c}>1.7, !- Program Line 10 - SET {c8c9e2b4-2709-47b6-a455-299c03e32e8b} = 29.4, !- Program Line 11 - SET {6adb7cec-2243-4507-814e-80ef7c6db21c} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e2f06676-de7e-4113-b0ce-8e5068871eb1}<23.9 && {e2f06676-de7e-4113-b0ce-8e5068871eb1}>1.7, !- Program Line 1 + SET {2e41be97-5546-4bce-a878-ae5fe06eabf7} = 29.4, !- Program Line 2 + SET {e5a65a9b-4e57-4bf5-a43f-feacbb638170} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e2f06676-de7e-4113-b0ce-8e5068871eb1}<23.9 && {e2f06676-de7e-4113-b0ce-8e5068871eb1}>1.7, !- Program Line 4 + SET {2e41be97-5546-4bce-a878-ae5fe06eabf7} = 29.4, !- Program Line 5 + SET {e5a65a9b-4e57-4bf5-a43f-feacbb638170} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e2f06676-de7e-4113-b0ce-8e5068871eb1}<23.9 && {e2f06676-de7e-4113-b0ce-8e5068871eb1}>1.7, !- Program Line 7 + SET {2e41be97-5546-4bce-a878-ae5fe06eabf7} = 29.4, !- Program Line 8 + SET {e5a65a9b-4e57-4bf5-a43f-feacbb638170} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e2f06676-de7e-4113-b0ce-8e5068871eb1}<23.9 && {e2f06676-de7e-4113-b0ce-8e5068871eb1}>1.7, !- Program Line 10 + SET {2e41be97-5546-4bce-a878-ae5fe06eabf7} = 29.4, !- Program Line 11 + SET {e5a65a9b-4e57-4bf5-a43f-feacbb638170} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c8c9e2b4-2709-47b6-a455-299c03e32e8b} = NULL, !- Program Line 14 - SET {6adb7cec-2243-4507-814e-80ef7c6db21c} = NULL, !- Program Line 15 + SET {2e41be97-5546-4bce-a878-ae5fe06eabf7} = NULL, !- Program Line 14 + SET {e5a65a9b-4e57-4bf5-a43f-feacbb638170} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {958e975b-13cb-41c6-a9ae-b7b823bff076}<23.9 && {958e975b-13cb-41c6-a9ae-b7b823bff076}>1.7, !- Program Line 1 - SET {f347643c-4bab-48d3-9302-a61322aae53e} = 29.4, !- Program Line 2 - SET {8b122795-1367-46d9-b6e8-007f23702f82} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {958e975b-13cb-41c6-a9ae-b7b823bff076}<23.9 && {958e975b-13cb-41c6-a9ae-b7b823bff076}>1.7, !- Program Line 4 - SET {f347643c-4bab-48d3-9302-a61322aae53e} = 29.4, !- Program Line 5 - SET {8b122795-1367-46d9-b6e8-007f23702f82} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {958e975b-13cb-41c6-a9ae-b7b823bff076}<23.9 && {958e975b-13cb-41c6-a9ae-b7b823bff076}>1.7, !- Program Line 7 - SET {f347643c-4bab-48d3-9302-a61322aae53e} = 29.4, !- Program Line 8 - SET {8b122795-1367-46d9-b6e8-007f23702f82} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {958e975b-13cb-41c6-a9ae-b7b823bff076}<23.9 && {958e975b-13cb-41c6-a9ae-b7b823bff076}>1.7, !- Program Line 10 - SET {f347643c-4bab-48d3-9302-a61322aae53e} = 29.4, !- Program Line 11 - SET {8b122795-1367-46d9-b6e8-007f23702f82} = 15.6, !- Program Line 12 + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8eacddb9-992a-43cc-9b2b-95e79c409bda}<23.9 && {8eacddb9-992a-43cc-9b2b-95e79c409bda}>1.7, !- Program Line 1 + SET {f3f83168-07da-47a5-903f-f444c2439d5c} = 29.4, !- Program Line 2 + SET {b115455a-8701-4aea-b483-4099dfd37251} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8eacddb9-992a-43cc-9b2b-95e79c409bda}<23.9 && {8eacddb9-992a-43cc-9b2b-95e79c409bda}>1.7, !- Program Line 4 + SET {f3f83168-07da-47a5-903f-f444c2439d5c} = 29.4, !- Program Line 5 + SET {b115455a-8701-4aea-b483-4099dfd37251} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8eacddb9-992a-43cc-9b2b-95e79c409bda}<23.9 && {8eacddb9-992a-43cc-9b2b-95e79c409bda}>1.7, !- Program Line 7 + SET {f3f83168-07da-47a5-903f-f444c2439d5c} = 29.4, !- Program Line 8 + SET {b115455a-8701-4aea-b483-4099dfd37251} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8eacddb9-992a-43cc-9b2b-95e79c409bda}<23.9 && {8eacddb9-992a-43cc-9b2b-95e79c409bda}>1.7, !- Program Line 10 + SET {f3f83168-07da-47a5-903f-f444c2439d5c} = 29.4, !- Program Line 11 + SET {b115455a-8701-4aea-b483-4099dfd37251} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f347643c-4bab-48d3-9302-a61322aae53e} = NULL, !- Program Line 14 - SET {8b122795-1367-46d9-b6e8-007f23702f82} = NULL, !- Program Line 15 + SET {f3f83168-07da-47a5-903f-f444c2439d5c} = NULL, !- Program Line 14 + SET {b115455a-8701-4aea-b483-4099dfd37251} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a747b58b-af8b-4098-aa42-36e2e9d5a7f3}<23.9 && {a747b58b-af8b-4098-aa42-36e2e9d5a7f3}>1.7, !- Program Line 1 - SET {7cf88483-726c-4d4c-b16d-3d255b5a8964} = 29.4, !- Program Line 2 - SET {9137803a-029f-42d2-b7ae-cf78815ec0a5} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a747b58b-af8b-4098-aa42-36e2e9d5a7f3}<23.9 && {a747b58b-af8b-4098-aa42-36e2e9d5a7f3}>1.7, !- Program Line 4 - SET {7cf88483-726c-4d4c-b16d-3d255b5a8964} = 29.4, !- Program Line 5 - SET {9137803a-029f-42d2-b7ae-cf78815ec0a5} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a747b58b-af8b-4098-aa42-36e2e9d5a7f3}<23.9 && {a747b58b-af8b-4098-aa42-36e2e9d5a7f3}>1.7, !- Program Line 7 - SET {7cf88483-726c-4d4c-b16d-3d255b5a8964} = 29.4, !- Program Line 8 - SET {9137803a-029f-42d2-b7ae-cf78815ec0a5} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a747b58b-af8b-4098-aa42-36e2e9d5a7f3}<23.9 && {a747b58b-af8b-4098-aa42-36e2e9d5a7f3}>1.7, !- Program Line 10 - SET {7cf88483-726c-4d4c-b16d-3d255b5a8964} = 29.4, !- Program Line 11 - SET {9137803a-029f-42d2-b7ae-cf78815ec0a5} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0f7985cf-8528-4b9a-a313-e5d9d8568714}<23.9 && {0f7985cf-8528-4b9a-a313-e5d9d8568714}>1.7, !- Program Line 1 + SET {fd9fe7ac-92ac-4683-ac38-cfd83de7e52a} = 29.4, !- Program Line 2 + SET {fdcb964b-353e-47af-b70d-fb67168a2135} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0f7985cf-8528-4b9a-a313-e5d9d8568714}<23.9 && {0f7985cf-8528-4b9a-a313-e5d9d8568714}>1.7, !- Program Line 4 + SET {fd9fe7ac-92ac-4683-ac38-cfd83de7e52a} = 29.4, !- Program Line 5 + SET {fdcb964b-353e-47af-b70d-fb67168a2135} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0f7985cf-8528-4b9a-a313-e5d9d8568714}<23.9 && {0f7985cf-8528-4b9a-a313-e5d9d8568714}>1.7, !- Program Line 7 + SET {fd9fe7ac-92ac-4683-ac38-cfd83de7e52a} = 29.4, !- Program Line 8 + SET {fdcb964b-353e-47af-b70d-fb67168a2135} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0f7985cf-8528-4b9a-a313-e5d9d8568714}<23.9 && {0f7985cf-8528-4b9a-a313-e5d9d8568714}>1.7, !- Program Line 10 + SET {fd9fe7ac-92ac-4683-ac38-cfd83de7e52a} = 29.4, !- Program Line 11 + SET {fdcb964b-353e-47af-b70d-fb67168a2135} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7cf88483-726c-4d4c-b16d-3d255b5a8964} = NULL, !- Program Line 14 - SET {9137803a-029f-42d2-b7ae-cf78815ec0a5} = NULL, !- Program Line 15 + SET {fd9fe7ac-92ac-4683-ac38-cfd83de7e52a} = NULL, !- Program Line 14 + SET {fdcb964b-353e-47af-b70d-fb67168a2135} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__13_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__2_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000003}, !- Handle - ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_3_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000003}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000004}; !- Program Name 1 @@ -15072,7 +15072,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15098,7 +15098,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15124,7 +15124,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15150,7 +15150,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15176,7 +15176,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000005}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15202,7 +15202,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000006}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15228,7 +15228,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000007}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15254,7 +15254,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000008}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15280,7 +15280,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000009}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15306,7 +15306,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000010}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15332,7 +15332,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000011}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15358,7 +15358,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000012}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15384,7 +15384,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000013}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15410,7 +15410,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000014}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15436,7 +15436,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000015}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15462,7 +15462,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000016}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15488,7 +15488,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000017}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15514,7 +15514,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000018}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15540,7 +15540,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000019}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -15566,7 +15566,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000020}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0066-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18000,1081 +18000,1081 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000246}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000219}, !- Inlet Port {00000000-0000-0000-0018-000000000221}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000247}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000222}, !- Inlet Port {00000000-0000-0000-0018-000000000220}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000248}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000225}, !- Inlet Port {00000000-0000-0000-0018-000000000226}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000249}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000717}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000250}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000722}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000251}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000217}, !- Inlet Port {00000000-0000-0000-0018-000000000224}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000252}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000223}, !- Inlet Port {00000000-0000-0000-0018-000000000218}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000253}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000399}, !- Inlet Port {00000000-0000-0000-0018-000000000401}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000254}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000402}, !- Inlet Port {00000000-0000-0000-0018-000000000400}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000255}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000405}, !- Inlet Port {00000000-0000-0000-0018-000000000406}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000256}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000723}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000257}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000728}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000258}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000397}, !- Inlet Port {00000000-0000-0000-0018-000000000404}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000259}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000403}, !- Inlet Port {00000000-0000-0000-0018-000000000398}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000260}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000419}, !- Inlet Port {00000000-0000-0000-0018-000000000421}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000261}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000422}, !- Inlet Port {00000000-0000-0000-0018-000000000420}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000262}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000425}, !- Inlet Port {00000000-0000-0000-0018-000000000426}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000263}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000729}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000264}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000734}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000265}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000417}, !- Inlet Port {00000000-0000-0000-0018-000000000424}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000266}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000423}, !- Inlet Port {00000000-0000-0000-0018-000000000418}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000267}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000439}, !- Inlet Port {00000000-0000-0000-0018-000000000441}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000268}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000442}, !- Inlet Port {00000000-0000-0000-0018-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000269}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000445}, !- Inlet Port {00000000-0000-0000-0018-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000270}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000735}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000271}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000740}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000272}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000437}, !- Inlet Port {00000000-0000-0000-0018-000000000444}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000273}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000443}, !- Inlet Port {00000000-0000-0000-0018-000000000438}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000274}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000459}, !- Inlet Port {00000000-0000-0000-0018-000000000461}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000275}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000462}, !- Inlet Port {00000000-0000-0000-0018-000000000460}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000276}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000465}, !- Inlet Port {00000000-0000-0000-0018-000000000466}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000277}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000741}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000278}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000746}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000279}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000457}, !- Inlet Port {00000000-0000-0000-0018-000000000464}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000280}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000463}, !- Inlet Port {00000000-0000-0000-0018-000000000458}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000281}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000479}, !- Inlet Port {00000000-0000-0000-0018-000000000481}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000282}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000482}, !- Inlet Port {00000000-0000-0000-0018-000000000480}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000283}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000485}, !- Inlet Port {00000000-0000-0000-0018-000000000486}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000284}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000747}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000285}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000752}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000286}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000477}, !- Inlet Port {00000000-0000-0000-0018-000000000484}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000287}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000483}, !- Inlet Port {00000000-0000-0000-0018-000000000478}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000288}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000499}, !- Inlet Port {00000000-0000-0000-0018-000000000501}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000289}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000502}, !- Inlet Port {00000000-0000-0000-0018-000000000500}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000290}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000505}, !- Inlet Port {00000000-0000-0000-0018-000000000506}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000291}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000753}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000292}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000758}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000293}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000497}, !- Inlet Port {00000000-0000-0000-0018-000000000504}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000294}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000503}, !- Inlet Port {00000000-0000-0000-0018-000000000498}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000295}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000519}, !- Inlet Port {00000000-0000-0000-0018-000000000521}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000296}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000522}, !- Inlet Port {00000000-0000-0000-0018-000000000520}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000297}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000525}, !- Inlet Port {00000000-0000-0000-0018-000000000526}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000298}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000759}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000299}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000764}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000300}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000517}, !- Inlet Port {00000000-0000-0000-0018-000000000524}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000301}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000523}, !- Inlet Port {00000000-0000-0000-0018-000000000518}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000302}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000539}, !- Inlet Port {00000000-0000-0000-0018-000000000541}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000303}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000542}, !- Inlet Port {00000000-0000-0000-0018-000000000540}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000304}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000545}, !- Inlet Port {00000000-0000-0000-0018-000000000546}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000305}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000765}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000306}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000770}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000307}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000537}, !- Inlet Port {00000000-0000-0000-0018-000000000544}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000308}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000543}, !- Inlet Port {00000000-0000-0000-0018-000000000538}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000309}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000239}, !- Inlet Port {00000000-0000-0000-0018-000000000241}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000310}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000242}, !- Inlet Port {00000000-0000-0000-0018-000000000240}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000311}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000245}, !- Inlet Port {00000000-0000-0000-0018-000000000246}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000312}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000771}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000313}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000776}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000314}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000237}, !- Inlet Port {00000000-0000-0000-0018-000000000244}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000315}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000243}, !- Inlet Port {00000000-0000-0000-0018-000000000238}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000316}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000259}, !- Inlet Port {00000000-0000-0000-0018-000000000261}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000317}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000262}, !- Inlet Port {00000000-0000-0000-0018-000000000260}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000318}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000265}, !- Inlet Port {00000000-0000-0000-0018-000000000266}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000319}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000777}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000320}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000782}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000321}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000257}, !- Inlet Port {00000000-0000-0000-0018-000000000264}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000322}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000263}, !- Inlet Port {00000000-0000-0000-0018-000000000258}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000323}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000279}, !- Inlet Port {00000000-0000-0000-0018-000000000281}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000324}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000282}, !- Inlet Port {00000000-0000-0000-0018-000000000280}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000325}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000285}, !- Inlet Port {00000000-0000-0000-0018-000000000286}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000326}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000783}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000327}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000788}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000328}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000277}, !- Inlet Port {00000000-0000-0000-0018-000000000284}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000329}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000283}, !- Inlet Port {00000000-0000-0000-0018-000000000278}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000330}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000299}, !- Inlet Port {00000000-0000-0000-0018-000000000301}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000331}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000302}, !- Inlet Port {00000000-0000-0000-0018-000000000300}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000332}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000305}, !- Inlet Port {00000000-0000-0000-0018-000000000306}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000333}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000789}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000334}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000794}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000335}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000297}, !- Inlet Port {00000000-0000-0000-0018-000000000304}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000336}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000303}, !- Inlet Port {00000000-0000-0000-0018-000000000298}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000337}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000319}, !- Inlet Port {00000000-0000-0000-0018-000000000321}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000338}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000322}, !- Inlet Port {00000000-0000-0000-0018-000000000320}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000339}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000325}, !- Inlet Port {00000000-0000-0000-0018-000000000326}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000340}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000795}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000341}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000800}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000342}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000317}, !- Inlet Port {00000000-0000-0000-0018-000000000324}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000343}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000323}, !- Inlet Port {00000000-0000-0000-0018-000000000318}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000344}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000339}, !- Inlet Port {00000000-0000-0000-0018-000000000341}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000345}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000342}, !- Inlet Port {00000000-0000-0000-0018-000000000340}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000346}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000345}, !- Inlet Port {00000000-0000-0000-0018-000000000346}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000347}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000801}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000348}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000806}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000349}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000337}, !- Inlet Port {00000000-0000-0000-0018-000000000344}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000350}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000343}, !- Inlet Port {00000000-0000-0000-0018-000000000338}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000351}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000359}, !- Inlet Port {00000000-0000-0000-0018-000000000361}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000352}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000362}, !- Inlet Port {00000000-0000-0000-0018-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000353}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000365}, !- Inlet Port {00000000-0000-0000-0018-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000354}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000807}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000355}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000812}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000356}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000357}, !- Inlet Port {00000000-0000-0000-0018-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000357}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000363}, !- Inlet Port {00000000-0000-0000-0018-000000000358}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000358}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000379}, !- Inlet Port {00000000-0000-0000-0018-000000000381}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000359}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000382}, !- Inlet Port {00000000-0000-0000-0018-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000360}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000385}, !- Inlet Port {00000000-0000-0000-0018-000000000386}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000361}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000362}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000818}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000363}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000377}, !- Inlet Port {00000000-0000-0000-0018-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000364}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000383}, !- Inlet Port {00000000-0000-0000-0018-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000365}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000199}, !- Inlet Port {00000000-0000-0000-0018-000000000201}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000366}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000202}, !- Inlet Port {00000000-0000-0000-0018-000000000200}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000367}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000205}, !- Inlet Port {00000000-0000-0000-0018-000000000206}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000368}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000711}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000369}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000716}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000370}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000197}, !- Inlet Port {00000000-0000-0000-0018-000000000204}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000371}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000203}, !- Inlet Port {00000000-0000-0000-0018-000000000198}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000372}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000718}, !- Inlet Port {00000000-0000-0000-0018-000000000719}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000373}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000720}, !- Inlet Port {00000000-0000-0000-0018-000000000721}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000374}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000724}, !- Inlet Port {00000000-0000-0000-0018-000000000725}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000375}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000726}, !- Inlet Port {00000000-0000-0000-0018-000000000727}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000376}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000730}, !- Inlet Port {00000000-0000-0000-0018-000000000731}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000377}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000732}, !- Inlet Port {00000000-0000-0000-0018-000000000733}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000378}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000736}, !- Inlet Port {00000000-0000-0000-0018-000000000737}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000379}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000738}, !- Inlet Port {00000000-0000-0000-0018-000000000739}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000380}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000742}, !- Inlet Port {00000000-0000-0000-0018-000000000743}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000381}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000744}, !- Inlet Port {00000000-0000-0000-0018-000000000745}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000382}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000748}, !- Inlet Port {00000000-0000-0000-0018-000000000749}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000383}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000750}, !- Inlet Port {00000000-0000-0000-0018-000000000751}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000384}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000754}, !- Inlet Port {00000000-0000-0000-0018-000000000755}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000385}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000756}, !- Inlet Port {00000000-0000-0000-0018-000000000757}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000386}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000760}, !- Inlet Port {00000000-0000-0000-0018-000000000761}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000387}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000762}, !- Inlet Port {00000000-0000-0000-0018-000000000763}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000388}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000766}, !- Inlet Port {00000000-0000-0000-0018-000000000767}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000389}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000768}, !- Inlet Port {00000000-0000-0000-0018-000000000769}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000390}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000772}, !- Inlet Port {00000000-0000-0000-0018-000000000773}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000391}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000774}, !- Inlet Port {00000000-0000-0000-0018-000000000775}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000392}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000778}, !- Inlet Port {00000000-0000-0000-0018-000000000779}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000393}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000780}, !- Inlet Port {00000000-0000-0000-0018-000000000781}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000394}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000784}, !- Inlet Port {00000000-0000-0000-0018-000000000785}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000395}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000786}, !- Inlet Port {00000000-0000-0000-0018-000000000787}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000396}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000790}, !- Inlet Port {00000000-0000-0000-0018-000000000791}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000397}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000792}, !- Inlet Port {00000000-0000-0000-0018-000000000793}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000398}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000796}, !- Inlet Port {00000000-0000-0000-0018-000000000797}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000399}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000798}, !- Inlet Port {00000000-0000-0000-0018-000000000799}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000400}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000802}, !- Inlet Port {00000000-0000-0000-0018-000000000803}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000401}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000804}, !- Inlet Port {00000000-0000-0000-0018-000000000805}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000402}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000808}, !- Inlet Port {00000000-0000-0000-0018-000000000809}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000403}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000810}, !- Inlet Port {00000000-0000-0000-0018-000000000811}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000404}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000814}, !- Inlet Port {00000000-0000-0000-0018-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000405}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000816}, !- Inlet Port {00000000-0000-0000-0018-000000000817}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000406}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000712}, !- Inlet Port {00000000-0000-0000-0018-000000000713}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000407}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000714}, !- Inlet Port {00000000-0000-0000-0018-000000000715}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000408}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000129}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000409}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000130}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000410}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000135}, !- Inlet Port {00000000-0000-0000-0018-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000411}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000825}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000412}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000830}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000413}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000127}, !- Inlet Port {00000000-0000-0000-0018-000000000134}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000414}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000133}, !- Inlet Port {00000000-0000-0000-0018-000000000128}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000415}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000100}, !- Inlet Port {00000000-0000-0000-0018-000000000102}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000416}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000103}, !- Inlet Port {00000000-0000-0000-0018-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000417}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000106}, !- Inlet Port {00000000-0000-0000-0018-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000418}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000419}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000824}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000420}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000098}, !- Inlet Port {00000000-0000-0000-0018-000000000105}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000421}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000104}, !- Inlet Port {00000000-0000-0000-0018-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000422}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000826}, !- Inlet Port {00000000-0000-0000-0018-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000423}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000828}, !- Inlet Port {00000000-0000-0000-0018-000000000829}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000424}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000820}, !- Inlet Port {00000000-0000-0000-0018-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000425}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000822}, !- Inlet Port {00000000-0000-0000-0018-000000000823}; !- Outlet Port @@ -23321,7 +23321,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000163}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23342,7 +23342,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000164}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23351,7 +23351,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000165}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23360,7 +23360,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000166}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -23375,7 +23375,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000167}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23384,7 +23384,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23393,7 +23393,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23408,7 +23408,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23417,7 +23417,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23426,7 +23426,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23441,7 +23441,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23450,7 +23450,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23459,7 +23459,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23474,7 +23474,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23483,7 +23483,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23492,7 +23492,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23513,7 +23513,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23522,7 +23522,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23531,7 +23531,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000181}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23552,7 +23552,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000182}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23561,7 +23561,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000183}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23570,7 +23570,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000184}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23591,7 +23591,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000185}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23600,7 +23600,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000186}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23609,7 +23609,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000187}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23624,7 +23624,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23633,7 +23633,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23642,7 +23642,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -23657,7 +23657,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23666,7 +23666,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23675,7 +23675,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23690,7 +23690,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23699,7 +23699,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23708,7 +23708,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23729,7 +23729,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000197}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23738,7 +23738,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000198}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23747,7 +23747,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000199}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23768,7 +23768,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000200}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23777,7 +23777,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000201}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23786,7 +23786,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000202}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23801,7 +23801,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000203}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23810,7 +23810,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000204}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23819,7 +23819,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000205}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23840,7 +23840,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000206}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23849,7 +23849,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000207}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23858,7 +23858,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000208}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23873,7 +23873,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000209}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23882,7 +23882,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000210}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23891,7 +23891,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000211}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -23906,7 +23906,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000212}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23915,7 +23915,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000213}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23924,7 +23924,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000214}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23945,7 +23945,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000215}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23954,7 +23954,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000216}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23963,7 +23963,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000217}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -23984,7 +23984,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000218}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23993,7 +23993,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000219}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24002,7 +24002,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000220}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24023,7 +24023,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000221}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24032,7 +24032,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000222}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -26538,7 +26538,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000163}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000164}, !- Summer Design Day Schedule Name @@ -26546,7 +26546,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000041}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 10 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000166}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000167}, !- Summer Design Day Schedule Name @@ -26554,7 +26554,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000042}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 11 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000170}, !- Summer Design Day Schedule Name @@ -26562,7 +26562,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000043}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 12 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000173}, !- Summer Design Day Schedule Name @@ -26570,7 +26570,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000044}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 13 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000175}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000176}, !- Summer Design Day Schedule Name @@ -26578,7 +26578,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000045}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 14 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000178}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000179}, !- Summer Design Day Schedule Name @@ -26586,7 +26586,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000046}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 15 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000182}, !- Summer Design Day Schedule Name @@ -26594,7 +26594,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000047}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 16 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000185}, !- Summer Design Day Schedule Name @@ -26602,7 +26602,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 17 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000188}, !- Summer Design Day Schedule Name @@ -26610,7 +26610,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000190}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000191}, !- Summer Design Day Schedule Name @@ -26618,7 +26618,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 3 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000193}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000194}, !- Summer Design Day Schedule Name @@ -26626,7 +26626,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 4 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000196}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000197}, !- Summer Design Day Schedule Name @@ -26634,7 +26634,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 5 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000199}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000200}, !- Summer Design Day Schedule Name @@ -26642,7 +26642,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 6 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000202}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000203}, !- Summer Design Day Schedule Name @@ -26650,7 +26650,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 7 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000205}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000206}, !- Summer Design Day Schedule Name @@ -26658,7 +26658,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 8 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000208}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000209}, !- Summer Design Day Schedule Name @@ -26666,7 +26666,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 9 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000211}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000212}, !- Summer Design Day Schedule Name @@ -26674,7 +26674,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000214}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000215}, !- Summer Design Day Schedule Name @@ -26682,7 +26682,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000217}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000218}, !- Summer Design Day Schedule Name @@ -26690,7 +26690,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0070-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000220}, !- Default Day Schedule Name {00000000-0000-0000-0067-000000000221}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm index 2ee2539cd7..8d192630a4 100644 --- a/test/necb/regression_tests/expected/SmallHotel-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-BTAP1980TO2010-Electricity-CAN_AB_Calgary.osm @@ -27673,7 +27673,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000175}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -27751,7 +27751,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000176}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -27760,7 +27760,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000177}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -27970,7 +27970,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000185}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -28438,7 +28438,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000191}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -29143,7 +29143,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000221}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -32019,7 +32019,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000175}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -32291,13 +32291,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000049}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000176}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000050}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0063-000000000177}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/SmallHotel-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm index 147dd3dbf3..b0e929e314 100644 --- a/test/necb/regression_tests/expected/SmallHotel-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-BTAP1980TO2010-NaturalGas-CAN_AB_Calgary.osm @@ -31983,7 +31983,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000174}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -32061,7 +32061,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000175}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -32139,7 +32139,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000176}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -32148,7 +32148,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000177}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -32202,7 +32202,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000183}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -32358,7 +32358,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000185}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -32670,7 +32670,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000189}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -32826,7 +32826,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000191}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -33375,7 +33375,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000219}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -33531,7 +33531,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0067-000000000221}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -36401,13 +36401,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000174}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000175}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -36679,13 +36679,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000049}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000176}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0069-000000000050}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0070-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0070-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0067-000000000177}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2011-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2011-Electricity-CAN_AB_Calgary.osm index 7438f0e864..b050f98dc2 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2011-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2011-Electricity-CAN_AB_Calgary.osm @@ -26227,7 +26227,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000174}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -26455,7 +26455,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000184}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -26923,7 +26923,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000190}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -27628,7 +27628,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000220}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -30654,7 +30654,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000174}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index a4f7cbfb7f..9c1663ed28 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000057}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000058}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10874,7 +10874,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10882,7 +10882,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10890,27 +10890,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {82680afc-5ef3-45fb-b93d-7b1c368e0d6b}<23.9 && {82680afc-5ef3-45fb-b93d-7b1c368e0d6b}>1.7, !- Program Line 1 - SET {8220fb80-4f7c-4137-9668-0d7ac27d1949} = 29.4, !- Program Line 2 - SET {9451613d-a2d6-4875-9923-8fda7cd5f5ae} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {82680afc-5ef3-45fb-b93d-7b1c368e0d6b}<23.9 && {82680afc-5ef3-45fb-b93d-7b1c368e0d6b}>1.7, !- Program Line 4 - SET {8220fb80-4f7c-4137-9668-0d7ac27d1949} = 29.4, !- Program Line 5 - SET {9451613d-a2d6-4875-9923-8fda7cd5f5ae} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {82680afc-5ef3-45fb-b93d-7b1c368e0d6b}<23.9 && {82680afc-5ef3-45fb-b93d-7b1c368e0d6b}>1.7, !- Program Line 7 - SET {8220fb80-4f7c-4137-9668-0d7ac27d1949} = 29.4, !- Program Line 8 - SET {9451613d-a2d6-4875-9923-8fda7cd5f5ae} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {82680afc-5ef3-45fb-b93d-7b1c368e0d6b}<23.9 && {82680afc-5ef3-45fb-b93d-7b1c368e0d6b}>1.7, !- Program Line 10 - SET {8220fb80-4f7c-4137-9668-0d7ac27d1949} = 29.4, !- Program Line 11 - SET {9451613d-a2d6-4875-9923-8fda7cd5f5ae} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b13af9c6-0863-4949-a3fd-e119bfe04a5d}<23.9 && {b13af9c6-0863-4949-a3fd-e119bfe04a5d}>1.7, !- Program Line 1 + SET {0e289803-3725-4aa0-8467-4c5accae255d} = 29.4, !- Program Line 2 + SET {f0674761-9ac2-4a91-8e14-4012a367dd18} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b13af9c6-0863-4949-a3fd-e119bfe04a5d}<23.9 && {b13af9c6-0863-4949-a3fd-e119bfe04a5d}>1.7, !- Program Line 4 + SET {0e289803-3725-4aa0-8467-4c5accae255d} = 29.4, !- Program Line 5 + SET {f0674761-9ac2-4a91-8e14-4012a367dd18} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b13af9c6-0863-4949-a3fd-e119bfe04a5d}<23.9 && {b13af9c6-0863-4949-a3fd-e119bfe04a5d}>1.7, !- Program Line 7 + SET {0e289803-3725-4aa0-8467-4c5accae255d} = 29.4, !- Program Line 8 + SET {f0674761-9ac2-4a91-8e14-4012a367dd18} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b13af9c6-0863-4949-a3fd-e119bfe04a5d}<23.9 && {b13af9c6-0863-4949-a3fd-e119bfe04a5d}>1.7, !- Program Line 10 + SET {0e289803-3725-4aa0-8467-4c5accae255d} = 29.4, !- Program Line 11 + SET {f0674761-9ac2-4a91-8e14-4012a367dd18} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {8220fb80-4f7c-4137-9668-0d7ac27d1949} = NULL, !- Program Line 14 - SET {9451613d-a2d6-4875-9923-8fda7cd5f5ae} = NULL, !- Program Line 15 + SET {0e289803-3725-4aa0-8467-4c5accae255d} = NULL, !- Program Line 14 + SET {f0674761-9ac2-4a91-8e14-4012a367dd18} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -14127,295 +14127,295 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000385}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000386}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000140}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000387}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000149}, !- Inlet Port {00000000-0000-0000-0017-000000000150}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000388}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000141}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000389}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000142}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000390}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000135}, !- Inlet Port {00000000-0000-0000-0017-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000391}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000143}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000392}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000579}, !- Inlet Port {00000000-0000-0000-0017-000000000581}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000393}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000582}, !- Inlet Port {00000000-0000-0000-0017-000000000580}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000394}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000587}, !- Inlet Port {00000000-0000-0000-0017-000000000588}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000395}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000583}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000396}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000584}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000397}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000577}, !- Inlet Port {00000000-0000-0000-0017-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000398}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000585}, !- Inlet Port {00000000-0000-0000-0017-000000000578}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000399}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000597}, !- Inlet Port {00000000-0000-0000-0017-000000000599}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000400}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000600}, !- Inlet Port {00000000-0000-0000-0017-000000000598}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000401}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000605}, !- Inlet Port {00000000-0000-0000-0017-000000000606}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000402}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000601}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000403}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000602}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000404}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000595}, !- Inlet Port {00000000-0000-0000-0017-000000000604}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000405}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000603}, !- Inlet Port {00000000-0000-0000-0017-000000000596}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000406}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000561}, !- Inlet Port {00000000-0000-0000-0017-000000000563}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000407}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000564}, !- Inlet Port {00000000-0000-0000-0017-000000000562}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000408}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000569}, !- Inlet Port {00000000-0000-0000-0017-000000000570}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000409}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000565}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000410}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000566}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000411}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000559}, !- Inlet Port {00000000-0000-0000-0017-000000000568}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000412}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000567}, !- Inlet Port {00000000-0000-0000-0017-000000000560}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000413}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000381}, !- Inlet Port {00000000-0000-0000-0017-000000000383}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000414}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000384}, !- Inlet Port {00000000-0000-0000-0017-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000415}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000389}, !- Inlet Port {00000000-0000-0000-0017-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000416}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000385}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000417}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000386}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000418}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000379}, !- Inlet Port {00000000-0000-0000-0017-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000419}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000387}, !- Inlet Port {00000000-0000-0000-0017-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000420}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000447}, !- Inlet Port {00000000-0000-0000-0017-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000421}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000450}, !- Inlet Port {00000000-0000-0000-0017-000000000448}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000422}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000455}, !- Inlet Port {00000000-0000-0000-0017-000000000456}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000423}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000451}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000424}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000452}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000425}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000445}, !- Inlet Port {00000000-0000-0000-0017-000000000454}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000426}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000453}, !- Inlet Port {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000427}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000363}, !- Inlet Port {00000000-0000-0000-0017-000000000365}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000428}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000366}, !- Inlet Port {00000000-0000-0000-0017-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000429}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000371}, !- Inlet Port {00000000-0000-0000-0017-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000430}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000367}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000431}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000368}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000432}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000361}, !- Inlet Port {00000000-0000-0000-0017-000000000370}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000433}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000369}, !- Inlet Port {00000000-0000-0000-0017-000000000362}; !- Outlet Port @@ -20498,7 +20498,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000185}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20507,7 +20507,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000186}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20516,7 +20516,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000187}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20525,7 +20525,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20540,7 +20540,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20549,7 +20549,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20558,7 +20558,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20573,7 +20573,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20582,7 +20582,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20591,7 +20591,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20600,7 +20600,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20609,7 +20609,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20618,7 +20618,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000197}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20633,7 +20633,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000198}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20642,7 +20642,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000199}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20651,7 +20651,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000200}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20660,7 +20660,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000201}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20669,7 +20669,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000202}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20678,7 +20678,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000203}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20687,7 +20687,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000204}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20696,7 +20696,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000205}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23631,7 +23631,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000186}, !- Summer Design Day Schedule Name @@ -23639,7 +23639,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000189}, !- Summer Design Day Schedule Name @@ -23647,7 +23647,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000192}, !- Summer Design Day Schedule Name @@ -23655,7 +23655,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000195}, !- Summer Design Day Schedule Name @@ -23663,7 +23663,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000198}, !- Summer Design Day Schedule Name @@ -23671,7 +23671,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000201}, !- Summer Design Day Schedule Name @@ -23679,7 +23679,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000204}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 3e4d55dd3f..5925016f4f 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000057}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000058}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -11056,7 +11056,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -11064,7 +11064,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -11072,27 +11072,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bdde7845-d5dd-4df8-84c5-eec8e2e275dd}<23.9 && {bdde7845-d5dd-4df8-84c5-eec8e2e275dd}>1.7, !- Program Line 1 - SET {513ae37a-00a6-4108-a694-da67015207e4} = 29.4, !- Program Line 2 - SET {f5bbe8fc-6b12-4954-a146-f72a02d3313a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bdde7845-d5dd-4df8-84c5-eec8e2e275dd}<23.9 && {bdde7845-d5dd-4df8-84c5-eec8e2e275dd}>1.7, !- Program Line 4 - SET {513ae37a-00a6-4108-a694-da67015207e4} = 29.4, !- Program Line 5 - SET {f5bbe8fc-6b12-4954-a146-f72a02d3313a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bdde7845-d5dd-4df8-84c5-eec8e2e275dd}<23.9 && {bdde7845-d5dd-4df8-84c5-eec8e2e275dd}>1.7, !- Program Line 7 - SET {513ae37a-00a6-4108-a694-da67015207e4} = 29.4, !- Program Line 8 - SET {f5bbe8fc-6b12-4954-a146-f72a02d3313a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bdde7845-d5dd-4df8-84c5-eec8e2e275dd}<23.9 && {bdde7845-d5dd-4df8-84c5-eec8e2e275dd}>1.7, !- Program Line 10 - SET {513ae37a-00a6-4108-a694-da67015207e4} = 29.4, !- Program Line 11 - SET {f5bbe8fc-6b12-4954-a146-f72a02d3313a} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {31149902-d475-4a1f-9337-1911aa3774e4}<23.9 && {31149902-d475-4a1f-9337-1911aa3774e4}>1.7, !- Program Line 1 + SET {e555467c-ff96-46ba-b740-89ffd89d8027} = 29.4, !- Program Line 2 + SET {183979ed-32fe-4478-82db-d799d10c200c} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {31149902-d475-4a1f-9337-1911aa3774e4}<23.9 && {31149902-d475-4a1f-9337-1911aa3774e4}>1.7, !- Program Line 4 + SET {e555467c-ff96-46ba-b740-89ffd89d8027} = 29.4, !- Program Line 5 + SET {183979ed-32fe-4478-82db-d799d10c200c} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {31149902-d475-4a1f-9337-1911aa3774e4}<23.9 && {31149902-d475-4a1f-9337-1911aa3774e4}>1.7, !- Program Line 7 + SET {e555467c-ff96-46ba-b740-89ffd89d8027} = 29.4, !- Program Line 8 + SET {183979ed-32fe-4478-82db-d799d10c200c} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {31149902-d475-4a1f-9337-1911aa3774e4}<23.9 && {31149902-d475-4a1f-9337-1911aa3774e4}>1.7, !- Program Line 10 + SET {e555467c-ff96-46ba-b740-89ffd89d8027} = 29.4, !- Program Line 11 + SET {183979ed-32fe-4478-82db-d799d10c200c} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {513ae37a-00a6-4108-a694-da67015207e4} = NULL, !- Program Line 14 - SET {f5bbe8fc-6b12-4954-a146-f72a02d3313a} = NULL, !- Program Line 15 + SET {e555467c-ff96-46ba-b740-89ffd89d8027} = NULL, !- Program Line 14 + SET {183979ed-32fe-4478-82db-d799d10c200c} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0036-000000000001}; !- Program Name 1 @@ -14309,295 +14309,295 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000385}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000386}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000140}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000387}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000149}, !- Inlet Port {00000000-0000-0000-0017-000000000150}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000388}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000141}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000389}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000142}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000390}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000135}, !- Inlet Port {00000000-0000-0000-0017-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000391}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000143}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000392}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000579}, !- Inlet Port {00000000-0000-0000-0017-000000000581}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000393}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000582}, !- Inlet Port {00000000-0000-0000-0017-000000000580}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000394}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000587}, !- Inlet Port {00000000-0000-0000-0017-000000000588}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000395}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000583}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000396}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000584}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000397}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000577}, !- Inlet Port {00000000-0000-0000-0017-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000398}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000585}, !- Inlet Port {00000000-0000-0000-0017-000000000578}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000399}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000597}, !- Inlet Port {00000000-0000-0000-0017-000000000599}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000400}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000600}, !- Inlet Port {00000000-0000-0000-0017-000000000598}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000401}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000605}, !- Inlet Port {00000000-0000-0000-0017-000000000606}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000402}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000601}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000403}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000602}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000404}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000595}, !- Inlet Port {00000000-0000-0000-0017-000000000604}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000405}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000603}, !- Inlet Port {00000000-0000-0000-0017-000000000596}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000406}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000561}, !- Inlet Port {00000000-0000-0000-0017-000000000563}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000407}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000564}, !- Inlet Port {00000000-0000-0000-0017-000000000562}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000408}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000569}, !- Inlet Port {00000000-0000-0000-0017-000000000570}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000409}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000565}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000410}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000566}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000411}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000559}, !- Inlet Port {00000000-0000-0000-0017-000000000568}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000412}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000567}, !- Inlet Port {00000000-0000-0000-0017-000000000560}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000413}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000381}, !- Inlet Port {00000000-0000-0000-0017-000000000383}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000414}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000384}, !- Inlet Port {00000000-0000-0000-0017-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000415}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000389}, !- Inlet Port {00000000-0000-0000-0017-000000000390}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000416}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000385}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000417}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000386}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000418}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000379}, !- Inlet Port {00000000-0000-0000-0017-000000000388}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000419}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000387}, !- Inlet Port {00000000-0000-0000-0017-000000000380}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000420}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000447}, !- Inlet Port {00000000-0000-0000-0017-000000000449}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000421}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000450}, !- Inlet Port {00000000-0000-0000-0017-000000000448}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000422}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000455}, !- Inlet Port {00000000-0000-0000-0017-000000000456}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000423}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000451}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000424}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000452}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000425}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000445}, !- Inlet Port {00000000-0000-0000-0017-000000000454}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000426}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000453}, !- Inlet Port {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000427}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000363}, !- Inlet Port {00000000-0000-0000-0017-000000000365}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000428}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000366}, !- Inlet Port {00000000-0000-0000-0017-000000000364}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000429}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000371}, !- Inlet Port {00000000-0000-0000-0017-000000000372}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000430}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000367}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000431}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000368}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000432}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000361}, !- Inlet Port {00000000-0000-0000-0017-000000000370}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000433}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000369}, !- Inlet Port {00000000-0000-0000-0017-000000000362}; !- Outlet Port @@ -20680,7 +20680,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000185}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20689,7 +20689,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000186}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20698,7 +20698,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000187}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20707,7 +20707,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20722,7 +20722,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20731,7 +20731,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20740,7 +20740,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20755,7 +20755,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20764,7 +20764,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20773,7 +20773,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20782,7 +20782,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20791,7 +20791,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20800,7 +20800,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000197}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20815,7 +20815,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000198}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20824,7 +20824,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000199}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20833,7 +20833,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000200}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20842,7 +20842,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000201}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20851,7 +20851,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000202}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20860,7 +20860,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000203}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20869,7 +20869,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000204}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20878,7 +20878,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000205}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23813,7 +23813,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000186}, !- Summer Design Day Schedule Name @@ -23821,7 +23821,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000189}, !- Summer Design Day Schedule Name @@ -23829,7 +23829,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000192}, !- Summer Design Day Schedule Name @@ -23837,7 +23837,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000195}, !- Summer Design Day Schedule Name @@ -23845,7 +23845,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000198}, !- Summer Design Day Schedule Name @@ -23853,7 +23853,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000201}, !- Summer Design Day Schedule Name @@ -23861,7 +23861,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000204}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 3ec3be538b..38064789cc 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000057}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000058}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14015,7 +14015,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14023,7 +14023,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14031,27 +14031,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b099e41f-d538-4869-9ce8-2ea56694466b}<23.9 && {b099e41f-d538-4869-9ce8-2ea56694466b}>1.7, !- Program Line 1 - SET {7bb9a42e-b7f7-41a5-a6e3-8a7a211c6f11} = 29.4, !- Program Line 2 - SET {5a175594-f156-4503-b27f-724b0606e75b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b099e41f-d538-4869-9ce8-2ea56694466b}<23.9 && {b099e41f-d538-4869-9ce8-2ea56694466b}>1.7, !- Program Line 4 - SET {7bb9a42e-b7f7-41a5-a6e3-8a7a211c6f11} = 29.4, !- Program Line 5 - SET {5a175594-f156-4503-b27f-724b0606e75b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b099e41f-d538-4869-9ce8-2ea56694466b}<23.9 && {b099e41f-d538-4869-9ce8-2ea56694466b}>1.7, !- Program Line 7 - SET {7bb9a42e-b7f7-41a5-a6e3-8a7a211c6f11} = 29.4, !- Program Line 8 - SET {5a175594-f156-4503-b27f-724b0606e75b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b099e41f-d538-4869-9ce8-2ea56694466b}<23.9 && {b099e41f-d538-4869-9ce8-2ea56694466b}>1.7, !- Program Line 10 - SET {7bb9a42e-b7f7-41a5-a6e3-8a7a211c6f11} = 29.4, !- Program Line 11 - SET {5a175594-f156-4503-b27f-724b0606e75b} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9e2cb38b-99f0-4742-9297-53794c8895de}<23.9 && {9e2cb38b-99f0-4742-9297-53794c8895de}>1.7, !- Program Line 1 + SET {3cd0d239-78c6-4c4b-bac5-5781f54d9c90} = 29.4, !- Program Line 2 + SET {d4703156-695e-48d4-ba71-e4a1da99c554} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9e2cb38b-99f0-4742-9297-53794c8895de}<23.9 && {9e2cb38b-99f0-4742-9297-53794c8895de}>1.7, !- Program Line 4 + SET {3cd0d239-78c6-4c4b-bac5-5781f54d9c90} = 29.4, !- Program Line 5 + SET {d4703156-695e-48d4-ba71-e4a1da99c554} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9e2cb38b-99f0-4742-9297-53794c8895de}<23.9 && {9e2cb38b-99f0-4742-9297-53794c8895de}>1.7, !- Program Line 7 + SET {3cd0d239-78c6-4c4b-bac5-5781f54d9c90} = 29.4, !- Program Line 8 + SET {d4703156-695e-48d4-ba71-e4a1da99c554} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9e2cb38b-99f0-4742-9297-53794c8895de}<23.9 && {9e2cb38b-99f0-4742-9297-53794c8895de}>1.7, !- Program Line 10 + SET {3cd0d239-78c6-4c4b-bac5-5781f54d9c90} = 29.4, !- Program Line 11 + SET {d4703156-695e-48d4-ba71-e4a1da99c554} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7bb9a42e-b7f7-41a5-a6e3-8a7a211c6f11} = NULL, !- Program Line 14 - SET {5a175594-f156-4503-b27f-724b0606e75b} = NULL, !- Program Line 15 + SET {3cd0d239-78c6-4c4b-bac5-5781f54d9c90} = NULL, !- Program Line 14 + SET {d4703156-695e-48d4-ba71-e4a1da99c554} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -18144,295 +18144,295 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000531}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000162}, !- Inlet Port {00000000-0000-0000-0019-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000532}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000165}, !- Inlet Port {00000000-0000-0000-0019-000000000163}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000533}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000174}, !- Inlet Port {00000000-0000-0000-0019-000000000175}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000534}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000166}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000535}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000167}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000536}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000160}, !- Inlet Port {00000000-0000-0000-0019-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000537}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000168}, !- Inlet Port {00000000-0000-0000-0019-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000538}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000855}, !- Inlet Port {00000000-0000-0000-0019-000000000857}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000539}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000858}, !- Inlet Port {00000000-0000-0000-0019-000000000856}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000540}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000863}, !- Inlet Port {00000000-0000-0000-0019-000000000864}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000541}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000859}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000542}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000860}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000543}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000853}, !- Inlet Port {00000000-0000-0000-0019-000000000862}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000544}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000861}, !- Inlet Port {00000000-0000-0000-0019-000000000854}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000545}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000877}, !- Inlet Port {00000000-0000-0000-0019-000000000879}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000546}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000880}, !- Inlet Port {00000000-0000-0000-0019-000000000878}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000547}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000885}, !- Inlet Port {00000000-0000-0000-0019-000000000886}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000548}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000881}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000549}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000882}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000550}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000875}, !- Inlet Port {00000000-0000-0000-0019-000000000884}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000551}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000883}, !- Inlet Port {00000000-0000-0000-0019-000000000876}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000552}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000833}, !- Inlet Port {00000000-0000-0000-0019-000000000835}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000553}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000836}, !- Inlet Port {00000000-0000-0000-0019-000000000834}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000554}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000841}, !- Inlet Port {00000000-0000-0000-0019-000000000842}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000555}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000837}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000556}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000838}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000557}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000831}, !- Inlet Port {00000000-0000-0000-0019-000000000840}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000558}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000839}, !- Inlet Port {00000000-0000-0000-0019-000000000832}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000559}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000549}, !- Inlet Port {00000000-0000-0000-0019-000000000551}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000560}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000552}, !- Inlet Port {00000000-0000-0000-0019-000000000550}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000561}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000557}, !- Inlet Port {00000000-0000-0000-0019-000000000558}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000562}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000553}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000563}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000554}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000564}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000547}, !- Inlet Port {00000000-0000-0000-0019-000000000556}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000565}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000555}, !- Inlet Port {00000000-0000-0000-0019-000000000548}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000566}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000651}, !- Inlet Port {00000000-0000-0000-0019-000000000653}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000567}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000654}, !- Inlet Port {00000000-0000-0000-0019-000000000652}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000568}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000659}, !- Inlet Port {00000000-0000-0000-0019-000000000660}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000569}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000655}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000570}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000656}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000571}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000649}, !- Inlet Port {00000000-0000-0000-0019-000000000658}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000572}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000657}, !- Inlet Port {00000000-0000-0000-0019-000000000650}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000573}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000527}, !- Inlet Port {00000000-0000-0000-0019-000000000529}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000574}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000530}, !- Inlet Port {00000000-0000-0000-0019-000000000528}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000575}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000535}, !- Inlet Port {00000000-0000-0000-0019-000000000536}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000576}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000531}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000577}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000532}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000578}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000525}, !- Inlet Port {00000000-0000-0000-0019-000000000534}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000579}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000533}, !- Inlet Port {00000000-0000-0000-0019-000000000526}; !- Outlet Port @@ -24596,7 +24596,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000185}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24605,7 +24605,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000186}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24614,7 +24614,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000187}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24623,7 +24623,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -24638,7 +24638,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24647,7 +24647,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24656,7 +24656,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24671,7 +24671,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24680,7 +24680,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24689,7 +24689,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24698,7 +24698,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24707,7 +24707,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24716,7 +24716,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000197}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -24731,7 +24731,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000198}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24740,7 +24740,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000199}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24749,7 +24749,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000200}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24758,7 +24758,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000201}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24767,7 +24767,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000202}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24776,7 +24776,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000203}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24785,7 +24785,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000204}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24794,7 +24794,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000205}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -27729,7 +27729,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000186}, !- Summer Design Day Schedule Name @@ -27737,7 +27737,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000189}, !- Summer Design Day Schedule Name @@ -27745,7 +27745,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000192}, !- Summer Design Day Schedule Name @@ -27753,7 +27753,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000195}, !- Summer Design Day Schedule Name @@ -27761,7 +27761,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000198}, !- Summer Design Day Schedule Name @@ -27769,7 +27769,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000201}, !- Summer Design Day Schedule Name @@ -27777,7 +27777,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000204}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 1d66a29465..75366f9871 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000055}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000056}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000057}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000058}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14197,7 +14197,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000037}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14205,7 +14205,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000038}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14213,27 +14213,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b4b4130d-e3d8-4b7c-b321-74c8b48808f8}<23.9 && {b4b4130d-e3d8-4b7c-b321-74c8b48808f8}>1.7, !- Program Line 1 - SET {cd155e2d-d146-43a5-aa0c-ec0876ceb3bd} = 29.4, !- Program Line 2 - SET {e5638d70-0321-40fd-b528-9e481c16d9b3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b4b4130d-e3d8-4b7c-b321-74c8b48808f8}<23.9 && {b4b4130d-e3d8-4b7c-b321-74c8b48808f8}>1.7, !- Program Line 4 - SET {cd155e2d-d146-43a5-aa0c-ec0876ceb3bd} = 29.4, !- Program Line 5 - SET {e5638d70-0321-40fd-b528-9e481c16d9b3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b4b4130d-e3d8-4b7c-b321-74c8b48808f8}<23.9 && {b4b4130d-e3d8-4b7c-b321-74c8b48808f8}>1.7, !- Program Line 7 - SET {cd155e2d-d146-43a5-aa0c-ec0876ceb3bd} = 29.4, !- Program Line 8 - SET {e5638d70-0321-40fd-b528-9e481c16d9b3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b4b4130d-e3d8-4b7c-b321-74c8b48808f8}<23.9 && {b4b4130d-e3d8-4b7c-b321-74c8b48808f8}>1.7, !- Program Line 10 - SET {cd155e2d-d146-43a5-aa0c-ec0876ceb3bd} = 29.4, !- Program Line 11 - SET {e5638d70-0321-40fd-b528-9e481c16d9b3} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7e6bf242-78e2-4604-9c85-0d52bd70a1e6}<23.9 && {7e6bf242-78e2-4604-9c85-0d52bd70a1e6}>1.7, !- Program Line 1 + SET {73e8cd64-e5aa-480b-b343-4fcdb81bc0e0} = 29.4, !- Program Line 2 + SET {e7e7d7c8-9f0a-41c1-a723-928fc6c39680} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7e6bf242-78e2-4604-9c85-0d52bd70a1e6}<23.9 && {7e6bf242-78e2-4604-9c85-0d52bd70a1e6}>1.7, !- Program Line 4 + SET {73e8cd64-e5aa-480b-b343-4fcdb81bc0e0} = 29.4, !- Program Line 5 + SET {e7e7d7c8-9f0a-41c1-a723-928fc6c39680} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7e6bf242-78e2-4604-9c85-0d52bd70a1e6}<23.9 && {7e6bf242-78e2-4604-9c85-0d52bd70a1e6}>1.7, !- Program Line 7 + SET {73e8cd64-e5aa-480b-b343-4fcdb81bc0e0} = 29.4, !- Program Line 8 + SET {e7e7d7c8-9f0a-41c1-a723-928fc6c39680} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7e6bf242-78e2-4604-9c85-0d52bd70a1e6}<23.9 && {7e6bf242-78e2-4604-9c85-0d52bd70a1e6}>1.7, !- Program Line 10 + SET {73e8cd64-e5aa-480b-b343-4fcdb81bc0e0} = 29.4, !- Program Line 11 + SET {e7e7d7c8-9f0a-41c1-a723-928fc6c39680} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {cd155e2d-d146-43a5-aa0c-ec0876ceb3bd} = NULL, !- Program Line 14 - SET {e5638d70-0321-40fd-b528-9e481c16d9b3} = NULL, !- Program Line 15 + SET {73e8cd64-e5aa-480b-b343-4fcdb81bc0e0} = NULL, !- Program Line 14 + SET {e7e7d7c8-9f0a-41c1-a723-928fc6c39680} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0039-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0038-000000000001}; !- Program Name 1 @@ -18326,295 +18326,295 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000531}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000162}, !- Inlet Port {00000000-0000-0000-0019-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000532}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000165}, !- Inlet Port {00000000-0000-0000-0019-000000000163}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000533}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000174}, !- Inlet Port {00000000-0000-0000-0019-000000000175}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000534}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000166}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000535}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000167}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000536}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000160}, !- Inlet Port {00000000-0000-0000-0019-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000537}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000168}, !- Inlet Port {00000000-0000-0000-0019-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000538}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000855}, !- Inlet Port {00000000-0000-0000-0019-000000000857}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000539}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000858}, !- Inlet Port {00000000-0000-0000-0019-000000000856}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000540}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000863}, !- Inlet Port {00000000-0000-0000-0019-000000000864}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000541}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000859}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000542}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000860}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000543}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000853}, !- Inlet Port {00000000-0000-0000-0019-000000000862}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000544}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000861}, !- Inlet Port {00000000-0000-0000-0019-000000000854}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000545}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000877}, !- Inlet Port {00000000-0000-0000-0019-000000000879}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000546}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000880}, !- Inlet Port {00000000-0000-0000-0019-000000000878}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000547}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000885}, !- Inlet Port {00000000-0000-0000-0019-000000000886}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000548}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000881}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000549}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000882}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000550}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000875}, !- Inlet Port {00000000-0000-0000-0019-000000000884}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000551}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000883}, !- Inlet Port {00000000-0000-0000-0019-000000000876}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000552}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000833}, !- Inlet Port {00000000-0000-0000-0019-000000000835}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000553}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000836}, !- Inlet Port {00000000-0000-0000-0019-000000000834}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000554}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000841}, !- Inlet Port {00000000-0000-0000-0019-000000000842}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000555}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000837}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000556}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000838}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000557}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000831}, !- Inlet Port {00000000-0000-0000-0019-000000000840}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000558}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000839}, !- Inlet Port {00000000-0000-0000-0019-000000000832}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000559}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000549}, !- Inlet Port {00000000-0000-0000-0019-000000000551}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000560}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000552}, !- Inlet Port {00000000-0000-0000-0019-000000000550}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000561}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000557}, !- Inlet Port {00000000-0000-0000-0019-000000000558}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000562}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000553}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000563}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000554}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000564}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000547}, !- Inlet Port {00000000-0000-0000-0019-000000000556}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000565}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000555}, !- Inlet Port {00000000-0000-0000-0019-000000000548}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000566}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000651}, !- Inlet Port {00000000-0000-0000-0019-000000000653}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000567}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000654}, !- Inlet Port {00000000-0000-0000-0019-000000000652}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000568}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000659}, !- Inlet Port {00000000-0000-0000-0019-000000000660}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000569}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000655}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000570}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000000656}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000571}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000649}, !- Inlet Port {00000000-0000-0000-0019-000000000658}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000572}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000657}, !- Inlet Port {00000000-0000-0000-0019-000000000650}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000573}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000527}, !- Inlet Port {00000000-0000-0000-0019-000000000529}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000574}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000530}, !- Inlet Port {00000000-0000-0000-0019-000000000528}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000575}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000535}, !- Inlet Port {00000000-0000-0000-0019-000000000536}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000576}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000000531}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000577}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000000532}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000578}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000525}, !- Inlet Port {00000000-0000-0000-0019-000000000534}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000579}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000533}, !- Inlet Port {00000000-0000-0000-0019-000000000526}; !- Outlet Port @@ -24778,7 +24778,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000185}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24787,7 +24787,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000186}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24796,7 +24796,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000187}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24805,7 +24805,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000188}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -24820,7 +24820,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000189}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24829,7 +24829,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000190}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24838,7 +24838,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000191}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24853,7 +24853,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000192}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24862,7 +24862,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000193}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24871,7 +24871,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000194}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24880,7 +24880,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000195}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24889,7 +24889,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000196}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24898,7 +24898,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000197}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -24913,7 +24913,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000198}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24922,7 +24922,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000199}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24931,7 +24931,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000200}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24940,7 +24940,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000201}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24949,7 +24949,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000202}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24958,7 +24958,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000203}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24967,7 +24967,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000204}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24976,7 +24976,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000205}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -27911,7 +27911,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000052}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000185}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000186}, !- Summer Design Day Schedule Name @@ -27919,7 +27919,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000188}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000189}, !- Summer Design Day Schedule Name @@ -27927,7 +27927,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000191}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000192}, !- Summer Design Day Schedule Name @@ -27935,7 +27935,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000194}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000195}, !- Summer Design Day Schedule Name @@ -27943,7 +27943,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000197}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000198}, !- Summer Design Day Schedule Name @@ -27951,7 +27951,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000200}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000201}, !- Summer Design Day Schedule Name @@ -27959,7 +27959,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000203}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000204}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2017-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2017-Electricity-CAN_AB_Calgary.osm index 82753453f6..993a18c055 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2017-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2017-Electricity-CAN_AB_Calgary.osm @@ -26340,7 +26340,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000159}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -26418,7 +26418,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000160}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -26427,7 +26427,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000161}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -26475,7 +26475,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000165}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -26658,7 +26658,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000170}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -27126,7 +27126,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000176}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -27849,7 +27849,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000206}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -30497,7 +30497,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000159}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -30745,13 +30745,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000045}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000160}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000046}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000161}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -30763,7 +30763,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000048}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000165}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index c781a1213e..b9aa286c89 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10812,7 +10812,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10820,7 +10820,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10828,27 +10828,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8ee3f589-1de9-45b1-8623-b504f4e8d367}<23.9 && {8ee3f589-1de9-45b1-8623-b504f4e8d367}>1.7, !- Program Line 1 - SET {6d3219b9-3347-4afd-89e2-74293cf271fa} = 29.4, !- Program Line 2 - SET {ca11160a-5630-4f0b-a7ac-d631ebecc7d3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8ee3f589-1de9-45b1-8623-b504f4e8d367}<23.9 && {8ee3f589-1de9-45b1-8623-b504f4e8d367}>1.7, !- Program Line 4 - SET {6d3219b9-3347-4afd-89e2-74293cf271fa} = 29.4, !- Program Line 5 - SET {ca11160a-5630-4f0b-a7ac-d631ebecc7d3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8ee3f589-1de9-45b1-8623-b504f4e8d367}<23.9 && {8ee3f589-1de9-45b1-8623-b504f4e8d367}>1.7, !- Program Line 7 - SET {6d3219b9-3347-4afd-89e2-74293cf271fa} = 29.4, !- Program Line 8 - SET {ca11160a-5630-4f0b-a7ac-d631ebecc7d3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8ee3f589-1de9-45b1-8623-b504f4e8d367}<23.9 && {8ee3f589-1de9-45b1-8623-b504f4e8d367}>1.7, !- Program Line 10 - SET {6d3219b9-3347-4afd-89e2-74293cf271fa} = 29.4, !- Program Line 11 - SET {ca11160a-5630-4f0b-a7ac-d631ebecc7d3} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {cdaaa210-2731-4d39-8e43-4412a9d17bba}<23.9 && {cdaaa210-2731-4d39-8e43-4412a9d17bba}>1.7, !- Program Line 1 + SET {808f4809-b0c2-4d16-a12b-1f1a2bcd3fce} = 29.4, !- Program Line 2 + SET {6e570767-5b7c-45ff-ab4c-a0703342957e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {cdaaa210-2731-4d39-8e43-4412a9d17bba}<23.9 && {cdaaa210-2731-4d39-8e43-4412a9d17bba}>1.7, !- Program Line 4 + SET {808f4809-b0c2-4d16-a12b-1f1a2bcd3fce} = 29.4, !- Program Line 5 + SET {6e570767-5b7c-45ff-ab4c-a0703342957e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {cdaaa210-2731-4d39-8e43-4412a9d17bba}<23.9 && {cdaaa210-2731-4d39-8e43-4412a9d17bba}>1.7, !- Program Line 7 + SET {808f4809-b0c2-4d16-a12b-1f1a2bcd3fce} = 29.4, !- Program Line 8 + SET {6e570767-5b7c-45ff-ab4c-a0703342957e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {cdaaa210-2731-4d39-8e43-4412a9d17bba}<23.9 && {cdaaa210-2731-4d39-8e43-4412a9d17bba}>1.7, !- Program Line 10 + SET {808f4809-b0c2-4d16-a12b-1f1a2bcd3fce} = 29.4, !- Program Line 11 + SET {6e570767-5b7c-45ff-ab4c-a0703342957e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6d3219b9-3347-4afd-89e2-74293cf271fa} = NULL, !- Program Line 14 - SET {ca11160a-5630-4f0b-a7ac-d631ebecc7d3} = NULL, !- Program Line 15 + SET {808f4809-b0c2-4d16-a12b-1f1a2bcd3fce} = NULL, !- Program Line 14 + SET {6e570767-5b7c-45ff-ab4c-a0703342957e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -11032,7 +11032,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11058,7 +11058,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11084,7 +11084,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11110,7 +11110,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11136,7 +11136,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11162,7 +11162,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11188,7 +11188,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14165,379 +14165,379 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000367}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000368}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000140}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000369}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000147}, !- Inlet Port {00000000-0000-0000-0017-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000370}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000371}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000818}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000372}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000135}, !- Inlet Port {00000000-0000-0000-0017-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000373}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000141}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000374}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000814}, !- Inlet Port {00000000-0000-0000-0017-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000375}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000816}, !- Inlet Port {00000000-0000-0000-0017-000000000817}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000376}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000569}, !- Inlet Port {00000000-0000-0000-0017-000000000571}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000377}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000572}, !- Inlet Port {00000000-0000-0000-0017-000000000570}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000378}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000575}, !- Inlet Port {00000000-0000-0000-0017-000000000576}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000379}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000825}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000380}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000830}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000381}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000567}, !- Inlet Port {00000000-0000-0000-0017-000000000574}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000382}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000573}, !- Inlet Port {00000000-0000-0000-0017-000000000568}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000383}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000585}, !- Inlet Port {00000000-0000-0000-0017-000000000587}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000384}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000588}, !- Inlet Port {00000000-0000-0000-0017-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000385}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000591}, !- Inlet Port {00000000-0000-0000-0017-000000000592}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000386}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000831}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000387}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000836}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000388}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000583}, !- Inlet Port {00000000-0000-0000-0017-000000000590}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000389}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000589}, !- Inlet Port {00000000-0000-0000-0017-000000000584}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000390}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000553}, !- Inlet Port {00000000-0000-0000-0017-000000000555}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000391}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000556}, !- Inlet Port {00000000-0000-0000-0017-000000000554}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000392}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000559}, !- Inlet Port {00000000-0000-0000-0017-000000000560}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000393}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000394}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000824}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000395}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000551}, !- Inlet Port {00000000-0000-0000-0017-000000000558}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000396}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000557}, !- Inlet Port {00000000-0000-0000-0017-000000000552}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000397}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000826}, !- Inlet Port {00000000-0000-0000-0017-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000398}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000828}, !- Inlet Port {00000000-0000-0000-0017-000000000829}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000399}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000832}, !- Inlet Port {00000000-0000-0000-0017-000000000833}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000400}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000834}, !- Inlet Port {00000000-0000-0000-0017-000000000835}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000401}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000820}, !- Inlet Port {00000000-0000-0000-0017-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000402}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000822}, !- Inlet Port {00000000-0000-0000-0017-000000000823}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000403}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000377}, !- Inlet Port {00000000-0000-0000-0017-000000000379}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000404}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000380}, !- Inlet Port {00000000-0000-0000-0017-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000405}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000383}, !- Inlet Port {00000000-0000-0000-0017-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000406}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000843}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000407}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000848}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000408}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000375}, !- Inlet Port {00000000-0000-0000-0017-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000409}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000381}, !- Inlet Port {00000000-0000-0000-0017-000000000376}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000410}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000441}, !- Inlet Port {00000000-0000-0000-0017-000000000443}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000411}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000444}, !- Inlet Port {00000000-0000-0000-0017-000000000442}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000412}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000447}, !- Inlet Port {00000000-0000-0000-0017-000000000448}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000413}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000849}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000414}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000854}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000415}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000439}, !- Inlet Port {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000416}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000445}, !- Inlet Port {00000000-0000-0000-0017-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000417}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000361}, !- Inlet Port {00000000-0000-0000-0017-000000000363}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000418}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000364}, !- Inlet Port {00000000-0000-0000-0017-000000000362}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000419}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000367}, !- Inlet Port {00000000-0000-0000-0017-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000420}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000837}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000421}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000842}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000422}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000359}, !- Inlet Port {00000000-0000-0000-0017-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000423}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000365}, !- Inlet Port {00000000-0000-0000-0017-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000424}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000844}, !- Inlet Port {00000000-0000-0000-0017-000000000845}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000425}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000846}, !- Inlet Port {00000000-0000-0000-0017-000000000847}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000426}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000850}, !- Inlet Port {00000000-0000-0000-0017-000000000851}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000427}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000852}, !- Inlet Port {00000000-0000-0000-0017-000000000853}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000428}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000838}, !- Inlet Port {00000000-0000-0000-0017-000000000839}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000429}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000840}, !- Inlet Port {00000000-0000-0000-0017-000000000841}; !- Outlet Port @@ -20545,7 +20545,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000169}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20560,7 +20560,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000170}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20569,7 +20569,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000171}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20578,7 +20578,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20593,7 +20593,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20602,7 +20602,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20611,7 +20611,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20626,7 +20626,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20635,7 +20635,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20644,7 +20644,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20653,7 +20653,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20662,7 +20662,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20671,7 +20671,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20686,7 +20686,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20695,7 +20695,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20704,7 +20704,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20719,7 +20719,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20728,7 +20728,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000186}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20737,7 +20737,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000187}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20752,7 +20752,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000188}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20761,7 +20761,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000189}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23444,7 +23444,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000048}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000170}, !- Summer Design Day Schedule Name @@ -23452,7 +23452,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000173}, !- Summer Design Day Schedule Name @@ -23460,7 +23460,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000175}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000176}, !- Summer Design Day Schedule Name @@ -23468,7 +23468,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000178}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000179}, !- Summer Design Day Schedule Name @@ -23476,7 +23476,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000182}, !- Summer Design Day Schedule Name @@ -23484,7 +23484,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000185}, !- Summer Design Day Schedule Name @@ -23492,7 +23492,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000188}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 418acf5aff..c96a0c47b2 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10994,7 +10994,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -11002,7 +11002,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -11010,27 +11010,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {51cec00d-be58-4831-a2c8-109c459a140f}<23.9 && {51cec00d-be58-4831-a2c8-109c459a140f}>1.7, !- Program Line 1 - SET {bc945452-c0c1-4732-899f-ddec5e5921dd} = 29.4, !- Program Line 2 - SET {436c5d72-933b-4b5e-aa44-3750f9f6dd79} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {51cec00d-be58-4831-a2c8-109c459a140f}<23.9 && {51cec00d-be58-4831-a2c8-109c459a140f}>1.7, !- Program Line 4 - SET {bc945452-c0c1-4732-899f-ddec5e5921dd} = 29.4, !- Program Line 5 - SET {436c5d72-933b-4b5e-aa44-3750f9f6dd79} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {51cec00d-be58-4831-a2c8-109c459a140f}<23.9 && {51cec00d-be58-4831-a2c8-109c459a140f}>1.7, !- Program Line 7 - SET {bc945452-c0c1-4732-899f-ddec5e5921dd} = 29.4, !- Program Line 8 - SET {436c5d72-933b-4b5e-aa44-3750f9f6dd79} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {51cec00d-be58-4831-a2c8-109c459a140f}<23.9 && {51cec00d-be58-4831-a2c8-109c459a140f}>1.7, !- Program Line 10 - SET {bc945452-c0c1-4732-899f-ddec5e5921dd} = 29.4, !- Program Line 11 - SET {436c5d72-933b-4b5e-aa44-3750f9f6dd79} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bef36404-c43c-4354-9152-035ea15fd122}<23.9 && {bef36404-c43c-4354-9152-035ea15fd122}>1.7, !- Program Line 1 + SET {9c02da07-e070-4d02-af91-4bccbe54e9b2} = 29.4, !- Program Line 2 + SET {d684bada-1bd5-41df-a195-eecf3be19c6d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bef36404-c43c-4354-9152-035ea15fd122}<23.9 && {bef36404-c43c-4354-9152-035ea15fd122}>1.7, !- Program Line 4 + SET {9c02da07-e070-4d02-af91-4bccbe54e9b2} = 29.4, !- Program Line 5 + SET {d684bada-1bd5-41df-a195-eecf3be19c6d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bef36404-c43c-4354-9152-035ea15fd122}<23.9 && {bef36404-c43c-4354-9152-035ea15fd122}>1.7, !- Program Line 7 + SET {9c02da07-e070-4d02-af91-4bccbe54e9b2} = 29.4, !- Program Line 8 + SET {d684bada-1bd5-41df-a195-eecf3be19c6d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bef36404-c43c-4354-9152-035ea15fd122}<23.9 && {bef36404-c43c-4354-9152-035ea15fd122}>1.7, !- Program Line 10 + SET {9c02da07-e070-4d02-af91-4bccbe54e9b2} = 29.4, !- Program Line 11 + SET {d684bada-1bd5-41df-a195-eecf3be19c6d} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {bc945452-c0c1-4732-899f-ddec5e5921dd} = NULL, !- Program Line 14 - SET {436c5d72-933b-4b5e-aa44-3750f9f6dd79} = NULL, !- Program Line 15 + SET {9c02da07-e070-4d02-af91-4bccbe54e9b2} = NULL, !- Program Line 14 + SET {d684bada-1bd5-41df-a195-eecf3be19c6d} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -11214,7 +11214,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11240,7 +11240,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11266,7 +11266,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11292,7 +11292,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11318,7 +11318,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11344,7 +11344,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11370,7 +11370,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14347,379 +14347,379 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000367}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000368}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000140}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000369}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000147}, !- Inlet Port {00000000-0000-0000-0017-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000370}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000371}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000818}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000372}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000135}, !- Inlet Port {00000000-0000-0000-0017-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000373}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000141}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000374}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000814}, !- Inlet Port {00000000-0000-0000-0017-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000375}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000816}, !- Inlet Port {00000000-0000-0000-0017-000000000817}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000376}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000569}, !- Inlet Port {00000000-0000-0000-0017-000000000571}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000377}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000572}, !- Inlet Port {00000000-0000-0000-0017-000000000570}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000378}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000575}, !- Inlet Port {00000000-0000-0000-0017-000000000576}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000379}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000825}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000380}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000830}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000381}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000567}, !- Inlet Port {00000000-0000-0000-0017-000000000574}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000382}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000573}, !- Inlet Port {00000000-0000-0000-0017-000000000568}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000383}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000585}, !- Inlet Port {00000000-0000-0000-0017-000000000587}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000384}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000588}, !- Inlet Port {00000000-0000-0000-0017-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000385}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000591}, !- Inlet Port {00000000-0000-0000-0017-000000000592}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000386}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000831}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000387}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000836}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000388}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000583}, !- Inlet Port {00000000-0000-0000-0017-000000000590}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000389}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000589}, !- Inlet Port {00000000-0000-0000-0017-000000000584}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000390}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000553}, !- Inlet Port {00000000-0000-0000-0017-000000000555}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000391}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000556}, !- Inlet Port {00000000-0000-0000-0017-000000000554}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000392}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000559}, !- Inlet Port {00000000-0000-0000-0017-000000000560}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000393}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000394}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000824}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000395}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000551}, !- Inlet Port {00000000-0000-0000-0017-000000000558}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000396}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000557}, !- Inlet Port {00000000-0000-0000-0017-000000000552}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000397}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000826}, !- Inlet Port {00000000-0000-0000-0017-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000398}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000828}, !- Inlet Port {00000000-0000-0000-0017-000000000829}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000399}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000832}, !- Inlet Port {00000000-0000-0000-0017-000000000833}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000400}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000834}, !- Inlet Port {00000000-0000-0000-0017-000000000835}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000401}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000820}, !- Inlet Port {00000000-0000-0000-0017-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000402}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000822}, !- Inlet Port {00000000-0000-0000-0017-000000000823}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000403}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000377}, !- Inlet Port {00000000-0000-0000-0017-000000000379}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000404}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000380}, !- Inlet Port {00000000-0000-0000-0017-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000405}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000383}, !- Inlet Port {00000000-0000-0000-0017-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000406}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000843}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000407}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000848}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000408}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000375}, !- Inlet Port {00000000-0000-0000-0017-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000409}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000381}, !- Inlet Port {00000000-0000-0000-0017-000000000376}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000410}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000441}, !- Inlet Port {00000000-0000-0000-0017-000000000443}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000411}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000444}, !- Inlet Port {00000000-0000-0000-0017-000000000442}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000412}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000447}, !- Inlet Port {00000000-0000-0000-0017-000000000448}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000413}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000849}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000414}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000854}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000415}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000439}, !- Inlet Port {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000416}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000445}, !- Inlet Port {00000000-0000-0000-0017-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000417}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000361}, !- Inlet Port {00000000-0000-0000-0017-000000000363}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000418}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000364}, !- Inlet Port {00000000-0000-0000-0017-000000000362}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000419}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000367}, !- Inlet Port {00000000-0000-0000-0017-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000420}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000837}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000421}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000842}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000422}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000359}, !- Inlet Port {00000000-0000-0000-0017-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000423}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000365}, !- Inlet Port {00000000-0000-0000-0017-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000424}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000844}, !- Inlet Port {00000000-0000-0000-0017-000000000845}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000425}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000846}, !- Inlet Port {00000000-0000-0000-0017-000000000847}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000426}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000850}, !- Inlet Port {00000000-0000-0000-0017-000000000851}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000427}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000852}, !- Inlet Port {00000000-0000-0000-0017-000000000853}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000428}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000838}, !- Inlet Port {00000000-0000-0000-0017-000000000839}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000429}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000840}, !- Inlet Port {00000000-0000-0000-0017-000000000841}; !- Outlet Port @@ -20727,7 +20727,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000169}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20742,7 +20742,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000170}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20751,7 +20751,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000171}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20760,7 +20760,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20775,7 +20775,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20784,7 +20784,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20793,7 +20793,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20808,7 +20808,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20817,7 +20817,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20826,7 +20826,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20835,7 +20835,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20844,7 +20844,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20853,7 +20853,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20868,7 +20868,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20877,7 +20877,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20886,7 +20886,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20901,7 +20901,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20910,7 +20910,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000186}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20919,7 +20919,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000187}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20934,7 +20934,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000188}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20943,7 +20943,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000189}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23626,7 +23626,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000048}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000170}, !- Summer Design Day Schedule Name @@ -23634,7 +23634,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000173}, !- Summer Design Day Schedule Name @@ -23642,7 +23642,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000175}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000176}, !- Summer Design Day Schedule Name @@ -23650,7 +23650,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000178}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000179}, !- Summer Design Day Schedule Name @@ -23658,7 +23658,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000182}, !- Summer Design Day Schedule Name @@ -23666,7 +23666,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000185}, !- Summer Design Day Schedule Name @@ -23674,7 +23674,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000188}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGas-CAN_AB_Calgary.osm index e68bf65ce0..f08f0a2969 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGas-CAN_AB_Calgary.osm @@ -30728,7 +30728,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000159}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -30806,7 +30806,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000160}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -30815,7 +30815,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000161}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -30863,7 +30863,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000165}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -31046,7 +31046,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000170}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -31514,7 +31514,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000176}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -32237,7 +32237,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000206}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -34885,7 +34885,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000159}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -35133,13 +35133,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000045}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000160}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000046}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000161}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -35151,7 +35151,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000048}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000165}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 599408ca7c..6d51f744c7 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -13953,7 +13953,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13961,7 +13961,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13969,27 +13969,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {828c252b-8a32-4e81-8043-2ff00996d019}<23.9 && {828c252b-8a32-4e81-8043-2ff00996d019}>1.7, !- Program Line 1 - SET {d501a959-6b5f-4447-a1a8-830322742909} = 29.4, !- Program Line 2 - SET {d26ad398-ba8f-4642-8b48-524f55f181df} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {828c252b-8a32-4e81-8043-2ff00996d019}<23.9 && {828c252b-8a32-4e81-8043-2ff00996d019}>1.7, !- Program Line 4 - SET {d501a959-6b5f-4447-a1a8-830322742909} = 29.4, !- Program Line 5 - SET {d26ad398-ba8f-4642-8b48-524f55f181df} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {828c252b-8a32-4e81-8043-2ff00996d019}<23.9 && {828c252b-8a32-4e81-8043-2ff00996d019}>1.7, !- Program Line 7 - SET {d501a959-6b5f-4447-a1a8-830322742909} = 29.4, !- Program Line 8 - SET {d26ad398-ba8f-4642-8b48-524f55f181df} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {828c252b-8a32-4e81-8043-2ff00996d019}<23.9 && {828c252b-8a32-4e81-8043-2ff00996d019}>1.7, !- Program Line 10 - SET {d501a959-6b5f-4447-a1a8-830322742909} = 29.4, !- Program Line 11 - SET {d26ad398-ba8f-4642-8b48-524f55f181df} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a4bf6581-8b64-4d8a-ba1a-f745fec2e700}<23.9 && {a4bf6581-8b64-4d8a-ba1a-f745fec2e700}>1.7, !- Program Line 1 + SET {023fba94-0475-49c5-9483-32f31b676f43} = 29.4, !- Program Line 2 + SET {20a2a266-8d87-4c77-8ee3-19814d133456} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a4bf6581-8b64-4d8a-ba1a-f745fec2e700}<23.9 && {a4bf6581-8b64-4d8a-ba1a-f745fec2e700}>1.7, !- Program Line 4 + SET {023fba94-0475-49c5-9483-32f31b676f43} = 29.4, !- Program Line 5 + SET {20a2a266-8d87-4c77-8ee3-19814d133456} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a4bf6581-8b64-4d8a-ba1a-f745fec2e700}<23.9 && {a4bf6581-8b64-4d8a-ba1a-f745fec2e700}>1.7, !- Program Line 7 + SET {023fba94-0475-49c5-9483-32f31b676f43} = 29.4, !- Program Line 8 + SET {20a2a266-8d87-4c77-8ee3-19814d133456} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a4bf6581-8b64-4d8a-ba1a-f745fec2e700}<23.9 && {a4bf6581-8b64-4d8a-ba1a-f745fec2e700}>1.7, !- Program Line 10 + SET {023fba94-0475-49c5-9483-32f31b676f43} = 29.4, !- Program Line 11 + SET {20a2a266-8d87-4c77-8ee3-19814d133456} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {d501a959-6b5f-4447-a1a8-830322742909} = NULL, !- Program Line 14 - SET {d26ad398-ba8f-4642-8b48-524f55f181df} = NULL, !- Program Line 15 + SET {023fba94-0475-49c5-9483-32f31b676f43} = NULL, !- Program Line 14 + SET {20a2a266-8d87-4c77-8ee3-19814d133456} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -14173,7 +14173,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14199,7 +14199,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14225,7 +14225,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14251,7 +14251,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14277,7 +14277,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14303,7 +14303,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14329,7 +14329,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18182,379 +18182,379 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000513}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000162}, !- Inlet Port {00000000-0000-0000-0019-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000514}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000165}, !- Inlet Port {00000000-0000-0000-0019-000000000163}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000515}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000172}, !- Inlet Port {00000000-0000-0000-0019-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000516}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001105}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000517}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001110}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000518}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000160}, !- Inlet Port {00000000-0000-0000-0019-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000519}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000166}, !- Inlet Port {00000000-0000-0000-0019-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000520}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001106}, !- Inlet Port {00000000-0000-0000-0019-000000001107}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000521}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001108}, !- Inlet Port {00000000-0000-0000-0019-000000001109}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000522}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000845}, !- Inlet Port {00000000-0000-0000-0019-000000000847}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000523}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000848}, !- Inlet Port {00000000-0000-0000-0019-000000000846}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000524}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000851}, !- Inlet Port {00000000-0000-0000-0019-000000000852}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000525}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001117}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000526}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001122}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000527}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000843}, !- Inlet Port {00000000-0000-0000-0019-000000000850}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000528}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000849}, !- Inlet Port {00000000-0000-0000-0019-000000000844}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000529}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000865}, !- Inlet Port {00000000-0000-0000-0019-000000000867}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000530}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000868}, !- Inlet Port {00000000-0000-0000-0019-000000000866}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000531}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000871}, !- Inlet Port {00000000-0000-0000-0019-000000000872}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000532}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001123}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000533}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001128}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000534}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000863}, !- Inlet Port {00000000-0000-0000-0019-000000000870}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000535}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000869}, !- Inlet Port {00000000-0000-0000-0019-000000000864}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000536}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000825}, !- Inlet Port {00000000-0000-0000-0019-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000537}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000828}, !- Inlet Port {00000000-0000-0000-0019-000000000826}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000538}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000831}, !- Inlet Port {00000000-0000-0000-0019-000000000832}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000539}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001111}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000540}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001116}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000541}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000823}, !- Inlet Port {00000000-0000-0000-0019-000000000830}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000542}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000829}, !- Inlet Port {00000000-0000-0000-0019-000000000824}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000543}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001118}, !- Inlet Port {00000000-0000-0000-0019-000000001119}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000544}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001120}, !- Inlet Port {00000000-0000-0000-0019-000000001121}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000545}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001124}, !- Inlet Port {00000000-0000-0000-0019-000000001125}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000546}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001126}, !- Inlet Port {00000000-0000-0000-0019-000000001127}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000547}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001112}, !- Inlet Port {00000000-0000-0000-0019-000000001113}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000548}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001114}, !- Inlet Port {00000000-0000-0000-0019-000000001115}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000549}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000545}, !- Inlet Port {00000000-0000-0000-0019-000000000547}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000550}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000548}, !- Inlet Port {00000000-0000-0000-0019-000000000546}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000551}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000551}, !- Inlet Port {00000000-0000-0000-0019-000000000552}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000552}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001135}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000553}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001140}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000554}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000543}, !- Inlet Port {00000000-0000-0000-0019-000000000550}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000555}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000549}, !- Inlet Port {00000000-0000-0000-0019-000000000544}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000556}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000645}, !- Inlet Port {00000000-0000-0000-0019-000000000647}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000557}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000648}, !- Inlet Port {00000000-0000-0000-0019-000000000646}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000558}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000651}, !- Inlet Port {00000000-0000-0000-0019-000000000652}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000559}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001141}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000560}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001146}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000561}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000643}, !- Inlet Port {00000000-0000-0000-0019-000000000650}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000562}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000649}, !- Inlet Port {00000000-0000-0000-0019-000000000644}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000563}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000525}, !- Inlet Port {00000000-0000-0000-0019-000000000527}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000564}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000528}, !- Inlet Port {00000000-0000-0000-0019-000000000526}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000565}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000531}, !- Inlet Port {00000000-0000-0000-0019-000000000532}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000566}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001129}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000567}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001134}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000568}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000523}, !- Inlet Port {00000000-0000-0000-0019-000000000530}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000569}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000529}, !- Inlet Port {00000000-0000-0000-0019-000000000524}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000570}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001136}, !- Inlet Port {00000000-0000-0000-0019-000000001137}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000571}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001138}, !- Inlet Port {00000000-0000-0000-0019-000000001139}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000572}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001142}, !- Inlet Port {00000000-0000-0000-0019-000000001143}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000573}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001144}, !- Inlet Port {00000000-0000-0000-0019-000000001145}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000574}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001130}, !- Inlet Port {00000000-0000-0000-0019-000000001131}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000575}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001132}, !- Inlet Port {00000000-0000-0000-0019-000000001133}; !- Outlet Port @@ -24643,7 +24643,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000169}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24658,7 +24658,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000170}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24667,7 +24667,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000171}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24676,7 +24676,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -24691,7 +24691,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24700,7 +24700,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24709,7 +24709,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24724,7 +24724,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24733,7 +24733,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24742,7 +24742,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24751,7 +24751,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24760,7 +24760,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24769,7 +24769,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -24784,7 +24784,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24793,7 +24793,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24802,7 +24802,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24817,7 +24817,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24826,7 +24826,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000186}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24835,7 +24835,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000187}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24850,7 +24850,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000188}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24859,7 +24859,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000189}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -27542,7 +27542,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000048}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000170}, !- Summer Design Day Schedule Name @@ -27550,7 +27550,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000173}, !- Summer Design Day Schedule Name @@ -27558,7 +27558,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000175}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000176}, !- Summer Design Day Schedule Name @@ -27566,7 +27566,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000178}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000179}, !- Summer Design Day Schedule Name @@ -27574,7 +27574,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000182}, !- Summer Design Day Schedule Name @@ -27582,7 +27582,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000185}, !- Summer Design Day Schedule Name @@ -27590,7 +27590,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000188}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index c79418cb22..b295040ab7 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000054}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14135,7 +14135,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14143,7 +14143,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000034}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14151,27 +14151,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {66ca9791-c722-4430-86e3-737f404d2ff0}<23.9 && {66ca9791-c722-4430-86e3-737f404d2ff0}>1.7, !- Program Line 1 - SET {bf9d18fa-db3a-4021-acb4-0ef600794931} = 29.4, !- Program Line 2 - SET {ce9d4de4-7050-4197-8df5-db181fbe1fa6} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {66ca9791-c722-4430-86e3-737f404d2ff0}<23.9 && {66ca9791-c722-4430-86e3-737f404d2ff0}>1.7, !- Program Line 4 - SET {bf9d18fa-db3a-4021-acb4-0ef600794931} = 29.4, !- Program Line 5 - SET {ce9d4de4-7050-4197-8df5-db181fbe1fa6} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {66ca9791-c722-4430-86e3-737f404d2ff0}<23.9 && {66ca9791-c722-4430-86e3-737f404d2ff0}>1.7, !- Program Line 7 - SET {bf9d18fa-db3a-4021-acb4-0ef600794931} = 29.4, !- Program Line 8 - SET {ce9d4de4-7050-4197-8df5-db181fbe1fa6} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {66ca9791-c722-4430-86e3-737f404d2ff0}<23.9 && {66ca9791-c722-4430-86e3-737f404d2ff0}>1.7, !- Program Line 10 - SET {bf9d18fa-db3a-4021-acb4-0ef600794931} = 29.4, !- Program Line 11 - SET {ce9d4de4-7050-4197-8df5-db181fbe1fa6} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d533e37b-516a-4738-87e9-d195b5128b68}<23.9 && {d533e37b-516a-4738-87e9-d195b5128b68}>1.7, !- Program Line 1 + SET {c1fa5465-76e1-4959-a08c-196878ed7e51} = 29.4, !- Program Line 2 + SET {d81deadc-f015-445f-a335-ffe035a49152} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d533e37b-516a-4738-87e9-d195b5128b68}<23.9 && {d533e37b-516a-4738-87e9-d195b5128b68}>1.7, !- Program Line 4 + SET {c1fa5465-76e1-4959-a08c-196878ed7e51} = 29.4, !- Program Line 5 + SET {d81deadc-f015-445f-a335-ffe035a49152} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d533e37b-516a-4738-87e9-d195b5128b68}<23.9 && {d533e37b-516a-4738-87e9-d195b5128b68}>1.7, !- Program Line 7 + SET {c1fa5465-76e1-4959-a08c-196878ed7e51} = 29.4, !- Program Line 8 + SET {d81deadc-f015-445f-a335-ffe035a49152} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d533e37b-516a-4738-87e9-d195b5128b68}<23.9 && {d533e37b-516a-4738-87e9-d195b5128b68}>1.7, !- Program Line 10 + SET {c1fa5465-76e1-4959-a08c-196878ed7e51} = 29.4, !- Program Line 11 + SET {d81deadc-f015-445f-a335-ffe035a49152} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {bf9d18fa-db3a-4021-acb4-0ef600794931} = NULL, !- Program Line 14 - SET {ce9d4de4-7050-4197-8df5-db181fbe1fa6} = NULL, !- Program Line 15 + SET {c1fa5465-76e1-4959-a08c-196878ed7e51} = NULL, !- Program Line 14 + SET {d81deadc-f015-445f-a335-ffe035a49152} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -14355,7 +14355,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14381,7 +14381,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14407,7 +14407,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14433,7 +14433,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14459,7 +14459,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14485,7 +14485,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14511,7 +14511,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18364,379 +18364,379 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000513}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000162}, !- Inlet Port {00000000-0000-0000-0019-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000514}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000165}, !- Inlet Port {00000000-0000-0000-0019-000000000163}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000515}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000172}, !- Inlet Port {00000000-0000-0000-0019-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000516}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001105}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000517}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001110}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000518}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000160}, !- Inlet Port {00000000-0000-0000-0019-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000519}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000166}, !- Inlet Port {00000000-0000-0000-0019-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000520}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001106}, !- Inlet Port {00000000-0000-0000-0019-000000001107}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000521}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001108}, !- Inlet Port {00000000-0000-0000-0019-000000001109}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000522}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000845}, !- Inlet Port {00000000-0000-0000-0019-000000000847}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000523}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000848}, !- Inlet Port {00000000-0000-0000-0019-000000000846}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000524}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000851}, !- Inlet Port {00000000-0000-0000-0019-000000000852}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000525}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001117}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000526}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001122}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000527}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000843}, !- Inlet Port {00000000-0000-0000-0019-000000000850}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000528}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000849}, !- Inlet Port {00000000-0000-0000-0019-000000000844}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000529}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000865}, !- Inlet Port {00000000-0000-0000-0019-000000000867}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000530}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000868}, !- Inlet Port {00000000-0000-0000-0019-000000000866}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000531}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000871}, !- Inlet Port {00000000-0000-0000-0019-000000000872}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000532}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001123}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000533}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001128}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000534}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000863}, !- Inlet Port {00000000-0000-0000-0019-000000000870}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000535}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000869}, !- Inlet Port {00000000-0000-0000-0019-000000000864}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000536}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000825}, !- Inlet Port {00000000-0000-0000-0019-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000537}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000828}, !- Inlet Port {00000000-0000-0000-0019-000000000826}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000538}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000831}, !- Inlet Port {00000000-0000-0000-0019-000000000832}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000539}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001111}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000540}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001116}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000541}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000823}, !- Inlet Port {00000000-0000-0000-0019-000000000830}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000542}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000829}, !- Inlet Port {00000000-0000-0000-0019-000000000824}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000543}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001118}, !- Inlet Port {00000000-0000-0000-0019-000000001119}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000544}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001120}, !- Inlet Port {00000000-0000-0000-0019-000000001121}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000545}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001124}, !- Inlet Port {00000000-0000-0000-0019-000000001125}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000546}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001126}, !- Inlet Port {00000000-0000-0000-0019-000000001127}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000547}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001112}, !- Inlet Port {00000000-0000-0000-0019-000000001113}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000548}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001114}, !- Inlet Port {00000000-0000-0000-0019-000000001115}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000549}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000545}, !- Inlet Port {00000000-0000-0000-0019-000000000547}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000550}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000548}, !- Inlet Port {00000000-0000-0000-0019-000000000546}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000551}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000551}, !- Inlet Port {00000000-0000-0000-0019-000000000552}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000552}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001135}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000553}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001140}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000554}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000543}, !- Inlet Port {00000000-0000-0000-0019-000000000550}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000555}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000549}, !- Inlet Port {00000000-0000-0000-0019-000000000544}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000556}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000645}, !- Inlet Port {00000000-0000-0000-0019-000000000647}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000557}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000648}, !- Inlet Port {00000000-0000-0000-0019-000000000646}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000558}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000651}, !- Inlet Port {00000000-0000-0000-0019-000000000652}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000559}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001141}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000560}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001146}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000561}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000643}, !- Inlet Port {00000000-0000-0000-0019-000000000650}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000562}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000649}, !- Inlet Port {00000000-0000-0000-0019-000000000644}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000563}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000525}, !- Inlet Port {00000000-0000-0000-0019-000000000527}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000564}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000528}, !- Inlet Port {00000000-0000-0000-0019-000000000526}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000565}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000531}, !- Inlet Port {00000000-0000-0000-0019-000000000532}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000566}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001129}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000567}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001134}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000568}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000523}, !- Inlet Port {00000000-0000-0000-0019-000000000530}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000569}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000529}, !- Inlet Port {00000000-0000-0000-0019-000000000524}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000570}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001136}, !- Inlet Port {00000000-0000-0000-0019-000000001137}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000571}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001138}, !- Inlet Port {00000000-0000-0000-0019-000000001139}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000572}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001142}, !- Inlet Port {00000000-0000-0000-0019-000000001143}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000573}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001144}, !- Inlet Port {00000000-0000-0000-0019-000000001145}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000574}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001130}, !- Inlet Port {00000000-0000-0000-0019-000000001131}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000575}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001132}, !- Inlet Port {00000000-0000-0000-0019-000000001133}; !- Outlet Port @@ -24825,7 +24825,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000169}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24840,7 +24840,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000170}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24849,7 +24849,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000171}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24858,7 +24858,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -24873,7 +24873,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24882,7 +24882,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24891,7 +24891,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24906,7 +24906,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24915,7 +24915,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000177}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24924,7 +24924,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000178}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24933,7 +24933,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000179}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24942,7 +24942,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000180}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24951,7 +24951,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -24966,7 +24966,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24975,7 +24975,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24984,7 +24984,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24999,7 +24999,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25008,7 +25008,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000186}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25017,7 +25017,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000187}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -25032,7 +25032,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000188}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -25041,7 +25041,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000189}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -27724,7 +27724,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000048}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000169}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000170}, !- Summer Design Day Schedule Name @@ -27732,7 +27732,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000172}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000173}, !- Summer Design Day Schedule Name @@ -27740,7 +27740,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000175}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000176}, !- Summer Design Day Schedule Name @@ -27748,7 +27748,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000178}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000179}, !- Summer Design Day Schedule Name @@ -27756,7 +27756,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000181}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000182}, !- Summer Design Day Schedule Name @@ -27764,7 +27764,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000184}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000185}, !- Summer Design Day Schedule Name @@ -27772,7 +27772,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000187}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000188}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2020-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2020-Electricity-CAN_AB_Calgary.osm index 36241776f8..3b157a4cd6 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2020-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2020-Electricity-CAN_AB_Calgary.osm @@ -26067,7 +26067,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000154}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -26145,7 +26145,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000155}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -26223,7 +26223,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000156}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -26232,7 +26232,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000157}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -26280,7 +26280,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000161}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -26307,7 +26307,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000164}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -26463,7 +26463,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000166}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -26775,7 +26775,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000170}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -26931,7 +26931,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000172}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -27498,7 +27498,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000200}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -27654,7 +27654,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000202}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -30239,13 +30239,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000154}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000155}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -30487,13 +30487,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000044}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000156}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000045}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000157}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -30505,7 +30505,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000047}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0065-000000000010}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000009}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000161}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index d6b2a1cf6e..24e844bf38 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000047}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10812,7 +10812,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10820,7 +10820,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -10828,27 +10828,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {627a25c3-04c3-4ce2-a466-48172e827560}<23.9 && {627a25c3-04c3-4ce2-a466-48172e827560}>1.7, !- Program Line 1 - SET {aeb1381b-116b-42ba-a727-f238e1f699d1} = 29.4, !- Program Line 2 - SET {dff7d71b-e3bd-4367-a7d6-4d547ddbb7c2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {627a25c3-04c3-4ce2-a466-48172e827560}<23.9 && {627a25c3-04c3-4ce2-a466-48172e827560}>1.7, !- Program Line 4 - SET {aeb1381b-116b-42ba-a727-f238e1f699d1} = 29.4, !- Program Line 5 - SET {dff7d71b-e3bd-4367-a7d6-4d547ddbb7c2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {627a25c3-04c3-4ce2-a466-48172e827560}<23.9 && {627a25c3-04c3-4ce2-a466-48172e827560}>1.7, !- Program Line 7 - SET {aeb1381b-116b-42ba-a727-f238e1f699d1} = 29.4, !- Program Line 8 - SET {dff7d71b-e3bd-4367-a7d6-4d547ddbb7c2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {627a25c3-04c3-4ce2-a466-48172e827560}<23.9 && {627a25c3-04c3-4ce2-a466-48172e827560}>1.7, !- Program Line 10 - SET {aeb1381b-116b-42ba-a727-f238e1f699d1} = 29.4, !- Program Line 11 - SET {dff7d71b-e3bd-4367-a7d6-4d547ddbb7c2} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {240e4c1d-a3e4-40df-a675-d9b9235a7dd0}<23.9 && {240e4c1d-a3e4-40df-a675-d9b9235a7dd0}>1.7, !- Program Line 1 + SET {4cbc6915-c6e2-4a50-80e8-3bf21371dff9} = 29.4, !- Program Line 2 + SET {1ba0c5bc-adf3-4590-9c68-ca352d092fba} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {240e4c1d-a3e4-40df-a675-d9b9235a7dd0}<23.9 && {240e4c1d-a3e4-40df-a675-d9b9235a7dd0}>1.7, !- Program Line 4 + SET {4cbc6915-c6e2-4a50-80e8-3bf21371dff9} = 29.4, !- Program Line 5 + SET {1ba0c5bc-adf3-4590-9c68-ca352d092fba} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {240e4c1d-a3e4-40df-a675-d9b9235a7dd0}<23.9 && {240e4c1d-a3e4-40df-a675-d9b9235a7dd0}>1.7, !- Program Line 7 + SET {4cbc6915-c6e2-4a50-80e8-3bf21371dff9} = 29.4, !- Program Line 8 + SET {1ba0c5bc-adf3-4590-9c68-ca352d092fba} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {240e4c1d-a3e4-40df-a675-d9b9235a7dd0}<23.9 && {240e4c1d-a3e4-40df-a675-d9b9235a7dd0}>1.7, !- Program Line 10 + SET {4cbc6915-c6e2-4a50-80e8-3bf21371dff9} = 29.4, !- Program Line 11 + SET {1ba0c5bc-adf3-4590-9c68-ca352d092fba} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {aeb1381b-116b-42ba-a727-f238e1f699d1} = NULL, !- Program Line 14 - SET {dff7d71b-e3bd-4367-a7d6-4d547ddbb7c2} = NULL, !- Program Line 15 + SET {4cbc6915-c6e2-4a50-80e8-3bf21371dff9} = NULL, !- Program Line 14 + SET {1ba0c5bc-adf3-4590-9c68-ca352d092fba} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -11032,7 +11032,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11058,7 +11058,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11084,7 +11084,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11110,7 +11110,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11136,7 +11136,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11162,7 +11162,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11188,7 +11188,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14165,379 +14165,379 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000367}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000368}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000140}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000369}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000147}, !- Inlet Port {00000000-0000-0000-0017-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000370}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000371}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000818}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000372}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000135}, !- Inlet Port {00000000-0000-0000-0017-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000373}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000141}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000374}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000814}, !- Inlet Port {00000000-0000-0000-0017-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000375}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000816}, !- Inlet Port {00000000-0000-0000-0017-000000000817}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000376}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000569}, !- Inlet Port {00000000-0000-0000-0017-000000000571}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000377}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000572}, !- Inlet Port {00000000-0000-0000-0017-000000000570}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000378}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000575}, !- Inlet Port {00000000-0000-0000-0017-000000000576}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000379}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000825}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000380}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000830}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000381}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000567}, !- Inlet Port {00000000-0000-0000-0017-000000000574}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000382}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000573}, !- Inlet Port {00000000-0000-0000-0017-000000000568}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000383}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000585}, !- Inlet Port {00000000-0000-0000-0017-000000000587}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000384}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000588}, !- Inlet Port {00000000-0000-0000-0017-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000385}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000591}, !- Inlet Port {00000000-0000-0000-0017-000000000592}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000386}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000831}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000387}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000836}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000388}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000583}, !- Inlet Port {00000000-0000-0000-0017-000000000590}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000389}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000589}, !- Inlet Port {00000000-0000-0000-0017-000000000584}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000390}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000553}, !- Inlet Port {00000000-0000-0000-0017-000000000555}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000391}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000556}, !- Inlet Port {00000000-0000-0000-0017-000000000554}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000392}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000559}, !- Inlet Port {00000000-0000-0000-0017-000000000560}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000393}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000394}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000824}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000395}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000551}, !- Inlet Port {00000000-0000-0000-0017-000000000558}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000396}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000557}, !- Inlet Port {00000000-0000-0000-0017-000000000552}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000397}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000826}, !- Inlet Port {00000000-0000-0000-0017-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000398}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000828}, !- Inlet Port {00000000-0000-0000-0017-000000000829}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000399}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000832}, !- Inlet Port {00000000-0000-0000-0017-000000000833}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000400}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000834}, !- Inlet Port {00000000-0000-0000-0017-000000000835}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000401}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000820}, !- Inlet Port {00000000-0000-0000-0017-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000402}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000822}, !- Inlet Port {00000000-0000-0000-0017-000000000823}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000403}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000377}, !- Inlet Port {00000000-0000-0000-0017-000000000379}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000404}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000380}, !- Inlet Port {00000000-0000-0000-0017-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000405}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000383}, !- Inlet Port {00000000-0000-0000-0017-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000406}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000843}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000407}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000848}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000408}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000375}, !- Inlet Port {00000000-0000-0000-0017-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000409}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000381}, !- Inlet Port {00000000-0000-0000-0017-000000000376}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000410}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000441}, !- Inlet Port {00000000-0000-0000-0017-000000000443}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000411}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000444}, !- Inlet Port {00000000-0000-0000-0017-000000000442}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000412}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000447}, !- Inlet Port {00000000-0000-0000-0017-000000000448}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000413}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000849}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000414}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000854}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000415}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000439}, !- Inlet Port {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000416}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000445}, !- Inlet Port {00000000-0000-0000-0017-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000417}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000361}, !- Inlet Port {00000000-0000-0000-0017-000000000363}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000418}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000364}, !- Inlet Port {00000000-0000-0000-0017-000000000362}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000419}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000367}, !- Inlet Port {00000000-0000-0000-0017-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000420}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000837}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000421}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000842}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000422}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000359}, !- Inlet Port {00000000-0000-0000-0017-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000423}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000365}, !- Inlet Port {00000000-0000-0000-0017-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000424}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000844}, !- Inlet Port {00000000-0000-0000-0017-000000000845}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000425}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000846}, !- Inlet Port {00000000-0000-0000-0017-000000000847}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000426}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000850}, !- Inlet Port {00000000-0000-0000-0017-000000000851}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000427}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000852}, !- Inlet Port {00000000-0000-0000-0017-000000000853}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000428}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000838}, !- Inlet Port {00000000-0000-0000-0017-000000000839}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000429}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000840}, !- Inlet Port {00000000-0000-0000-0017-000000000841}; !- Outlet Port @@ -20350,7 +20350,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000165}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20365,7 +20365,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000166}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20374,7 +20374,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000167}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20383,7 +20383,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20398,7 +20398,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20407,7 +20407,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20416,7 +20416,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20431,7 +20431,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20440,7 +20440,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20449,7 +20449,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20458,7 +20458,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20467,7 +20467,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20476,7 +20476,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20491,7 +20491,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20500,7 +20500,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20509,7 +20509,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20524,7 +20524,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20533,7 +20533,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20542,7 +20542,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20557,7 +20557,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20566,7 +20566,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23186,7 +23186,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000047}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000166}, !- Summer Design Day Schedule Name @@ -23194,7 +23194,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000169}, !- Summer Design Day Schedule Name @@ -23202,7 +23202,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000172}, !- Summer Design Day Schedule Name @@ -23210,7 +23210,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000175}, !- Summer Design Day Schedule Name @@ -23218,7 +23218,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000177}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000178}, !- Summer Design Day Schedule Name @@ -23226,7 +23226,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000180}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000181}, !- Summer Design Day Schedule Name @@ -23234,7 +23234,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000183}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000184}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 2bca47c615..6e874004a7 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000047}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -10994,7 +10994,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -11002,7 +11002,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -11010,27 +11010,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5568da2a-0b4e-4f9e-961e-957e9edcb6f0}<23.9 && {5568da2a-0b4e-4f9e-961e-957e9edcb6f0}>1.7, !- Program Line 1 - SET {5eafa452-ac13-40cc-a243-a420b1176685} = 29.4, !- Program Line 2 - SET {d35ece8e-9539-4f5b-b1c4-ac9cc822555a} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5568da2a-0b4e-4f9e-961e-957e9edcb6f0}<23.9 && {5568da2a-0b4e-4f9e-961e-957e9edcb6f0}>1.7, !- Program Line 4 - SET {5eafa452-ac13-40cc-a243-a420b1176685} = 29.4, !- Program Line 5 - SET {d35ece8e-9539-4f5b-b1c4-ac9cc822555a} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5568da2a-0b4e-4f9e-961e-957e9edcb6f0}<23.9 && {5568da2a-0b4e-4f9e-961e-957e9edcb6f0}>1.7, !- Program Line 7 - SET {5eafa452-ac13-40cc-a243-a420b1176685} = 29.4, !- Program Line 8 - SET {d35ece8e-9539-4f5b-b1c4-ac9cc822555a} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5568da2a-0b4e-4f9e-961e-957e9edcb6f0}<23.9 && {5568da2a-0b4e-4f9e-961e-957e9edcb6f0}>1.7, !- Program Line 10 - SET {5eafa452-ac13-40cc-a243-a420b1176685} = 29.4, !- Program Line 11 - SET {d35ece8e-9539-4f5b-b1c4-ac9cc822555a} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {aa60d32d-aded-4875-a925-9272ff656c7b}<23.9 && {aa60d32d-aded-4875-a925-9272ff656c7b}>1.7, !- Program Line 1 + SET {40f1280b-87d6-40f0-a965-79a0ec4f3071} = 29.4, !- Program Line 2 + SET {e4471dc8-fc13-4833-80f6-86bda3589cf7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {aa60d32d-aded-4875-a925-9272ff656c7b}<23.9 && {aa60d32d-aded-4875-a925-9272ff656c7b}>1.7, !- Program Line 4 + SET {40f1280b-87d6-40f0-a965-79a0ec4f3071} = 29.4, !- Program Line 5 + SET {e4471dc8-fc13-4833-80f6-86bda3589cf7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {aa60d32d-aded-4875-a925-9272ff656c7b}<23.9 && {aa60d32d-aded-4875-a925-9272ff656c7b}>1.7, !- Program Line 7 + SET {40f1280b-87d6-40f0-a965-79a0ec4f3071} = 29.4, !- Program Line 8 + SET {e4471dc8-fc13-4833-80f6-86bda3589cf7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {aa60d32d-aded-4875-a925-9272ff656c7b}<23.9 && {aa60d32d-aded-4875-a925-9272ff656c7b}>1.7, !- Program Line 10 + SET {40f1280b-87d6-40f0-a965-79a0ec4f3071} = 29.4, !- Program Line 11 + SET {e4471dc8-fc13-4833-80f6-86bda3589cf7} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {5eafa452-ac13-40cc-a243-a420b1176685} = NULL, !- Program Line 14 - SET {d35ece8e-9539-4f5b-b1c4-ac9cc822555a} = NULL, !- Program Line 15 + SET {40f1280b-87d6-40f0-a965-79a0ec4f3071} = NULL, !- Program Line 14 + SET {e4471dc8-fc13-4833-80f6-86bda3589cf7} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 @@ -11214,7 +11214,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11240,7 +11240,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11266,7 +11266,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11292,7 +11292,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11318,7 +11318,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11344,7 +11344,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -11370,7 +11370,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14347,379 +14347,379 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000367}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000368}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000140}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000369}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000147}, !- Inlet Port {00000000-0000-0000-0017-000000000148}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000370}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000813}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000371}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000818}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000372}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000135}, !- Inlet Port {00000000-0000-0000-0017-000000000146}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000373}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000141}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000374}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000814}, !- Inlet Port {00000000-0000-0000-0017-000000000815}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000375}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000816}, !- Inlet Port {00000000-0000-0000-0017-000000000817}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000376}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000569}, !- Inlet Port {00000000-0000-0000-0017-000000000571}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000377}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000572}, !- Inlet Port {00000000-0000-0000-0017-000000000570}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000378}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000575}, !- Inlet Port {00000000-0000-0000-0017-000000000576}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000379}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000825}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000380}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000830}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000381}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000567}, !- Inlet Port {00000000-0000-0000-0017-000000000574}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000382}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000573}, !- Inlet Port {00000000-0000-0000-0017-000000000568}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000383}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000585}, !- Inlet Port {00000000-0000-0000-0017-000000000587}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000384}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000588}, !- Inlet Port {00000000-0000-0000-0017-000000000586}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000385}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000591}, !- Inlet Port {00000000-0000-0000-0017-000000000592}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000386}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000831}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000387}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000836}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000388}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000583}, !- Inlet Port {00000000-0000-0000-0017-000000000590}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000389}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000589}, !- Inlet Port {00000000-0000-0000-0017-000000000584}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000390}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000553}, !- Inlet Port {00000000-0000-0000-0017-000000000555}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000391}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000556}, !- Inlet Port {00000000-0000-0000-0017-000000000554}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000392}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000559}, !- Inlet Port {00000000-0000-0000-0017-000000000560}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000393}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000819}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000394}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000824}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000395}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000551}, !- Inlet Port {00000000-0000-0000-0017-000000000558}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000396}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000557}, !- Inlet Port {00000000-0000-0000-0017-000000000552}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000397}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000826}, !- Inlet Port {00000000-0000-0000-0017-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000398}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000828}, !- Inlet Port {00000000-0000-0000-0017-000000000829}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000399}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000832}, !- Inlet Port {00000000-0000-0000-0017-000000000833}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000400}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000834}, !- Inlet Port {00000000-0000-0000-0017-000000000835}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000401}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000820}, !- Inlet Port {00000000-0000-0000-0017-000000000821}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000402}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000822}, !- Inlet Port {00000000-0000-0000-0017-000000000823}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000403}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000377}, !- Inlet Port {00000000-0000-0000-0017-000000000379}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000404}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000380}, !- Inlet Port {00000000-0000-0000-0017-000000000378}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000405}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000383}, !- Inlet Port {00000000-0000-0000-0017-000000000384}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000406}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000843}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000407}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000848}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000408}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000375}, !- Inlet Port {00000000-0000-0000-0017-000000000382}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000409}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000381}, !- Inlet Port {00000000-0000-0000-0017-000000000376}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000410}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000441}, !- Inlet Port {00000000-0000-0000-0017-000000000443}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000411}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000444}, !- Inlet Port {00000000-0000-0000-0017-000000000442}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000412}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000447}, !- Inlet Port {00000000-0000-0000-0017-000000000448}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000413}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000849}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000414}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0017-000000000854}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000415}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000439}, !- Inlet Port {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000416}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000445}, !- Inlet Port {00000000-0000-0000-0017-000000000440}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000417}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000361}, !- Inlet Port {00000000-0000-0000-0017-000000000363}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000418}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000364}, !- Inlet Port {00000000-0000-0000-0017-000000000362}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000419}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000367}, !- Inlet Port {00000000-0000-0000-0017-000000000368}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000420}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000837}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000421}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000842}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000422}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000359}, !- Inlet Port {00000000-0000-0000-0017-000000000366}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000423}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000365}, !- Inlet Port {00000000-0000-0000-0017-000000000360}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000424}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000844}, !- Inlet Port {00000000-0000-0000-0017-000000000845}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000425}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000846}, !- Inlet Port {00000000-0000-0000-0017-000000000847}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000426}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000850}, !- Inlet Port {00000000-0000-0000-0017-000000000851}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000427}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000852}, !- Inlet Port {00000000-0000-0000-0017-000000000853}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000428}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000838}, !- Inlet Port {00000000-0000-0000-0017-000000000839}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000429}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000840}, !- Inlet Port {00000000-0000-0000-0017-000000000841}; !- Outlet Port @@ -20532,7 +20532,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000165}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20547,7 +20547,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000166}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20556,7 +20556,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000167}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20565,7 +20565,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -20580,7 +20580,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20589,7 +20589,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20598,7 +20598,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -20613,7 +20613,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20622,7 +20622,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20631,7 +20631,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20640,7 +20640,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20649,7 +20649,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20658,7 +20658,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -20673,7 +20673,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20682,7 +20682,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20691,7 +20691,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20706,7 +20706,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20715,7 +20715,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20724,7 +20724,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -20739,7 +20739,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -20748,7 +20748,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -23368,7 +23368,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000047}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000166}, !- Summer Design Day Schedule Name @@ -23376,7 +23376,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000169}, !- Summer Design Day Schedule Name @@ -23384,7 +23384,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000172}, !- Summer Design Day Schedule Name @@ -23392,7 +23392,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000175}, !- Summer Design Day Schedule Name @@ -23400,7 +23400,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000177}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000178}, !- Summer Design Day Schedule Name @@ -23408,7 +23408,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000180}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000181}, !- Summer Design Day Schedule Name @@ -23416,7 +23416,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000183}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000184}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGas-CAN_AB_Calgary.osm index 009aa0ffbc..0b3b6afd8a 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGas-CAN_AB_Calgary.osm @@ -30455,7 +30455,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000154}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -30533,7 +30533,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000155}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -30611,7 +30611,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000156}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -30620,7 +30620,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000157}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -30668,7 +30668,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000161}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 @@ -30695,7 +30695,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000164}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -30851,7 +30851,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000166}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -31163,7 +31163,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000170}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -31319,7 +31319,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000172}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -31886,7 +31886,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000200}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -32042,7 +32042,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0066-000000000202}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -34627,13 +34627,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0069-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000154}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000155}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -34875,13 +34875,13 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000044}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000156}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000045}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000157}; !- Default Day Schedule Name OS:Schedule:Ruleset, @@ -34893,7 +34893,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0068-000000000047}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0069-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0069-000000000010}, !- Schedule Type Limits Name {00000000-0000-0000-0066-000000000161}; !- Default Day Schedule Name OS:Schedule:Ruleset, diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 09ca3a0b03..7effe6be3e 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000047}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -13953,7 +13953,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13961,7 +13961,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -13969,27 +13969,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7d9cbad5-7c35-450c-9841-aa7748e0a51f}<23.9 && {7d9cbad5-7c35-450c-9841-aa7748e0a51f}>1.7, !- Program Line 1 - SET {61c1a888-aae9-4569-a430-40180cef4ceb} = 29.4, !- Program Line 2 - SET {21cfbe18-170f-455d-a9d8-c0eb1408878d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7d9cbad5-7c35-450c-9841-aa7748e0a51f}<23.9 && {7d9cbad5-7c35-450c-9841-aa7748e0a51f}>1.7, !- Program Line 4 - SET {61c1a888-aae9-4569-a430-40180cef4ceb} = 29.4, !- Program Line 5 - SET {21cfbe18-170f-455d-a9d8-c0eb1408878d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7d9cbad5-7c35-450c-9841-aa7748e0a51f}<23.9 && {7d9cbad5-7c35-450c-9841-aa7748e0a51f}>1.7, !- Program Line 7 - SET {61c1a888-aae9-4569-a430-40180cef4ceb} = 29.4, !- Program Line 8 - SET {21cfbe18-170f-455d-a9d8-c0eb1408878d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7d9cbad5-7c35-450c-9841-aa7748e0a51f}<23.9 && {7d9cbad5-7c35-450c-9841-aa7748e0a51f}>1.7, !- Program Line 10 - SET {61c1a888-aae9-4569-a430-40180cef4ceb} = 29.4, !- Program Line 11 - SET {21cfbe18-170f-455d-a9d8-c0eb1408878d} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b77cf8a1-a991-4b24-8275-37c167409f95}<23.9 && {b77cf8a1-a991-4b24-8275-37c167409f95}>1.7, !- Program Line 1 + SET {a656ae81-81ea-4475-845a-888b29e1e060} = 29.4, !- Program Line 2 + SET {4f575650-801f-451f-8ac3-cd89dcda01be} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b77cf8a1-a991-4b24-8275-37c167409f95}<23.9 && {b77cf8a1-a991-4b24-8275-37c167409f95}>1.7, !- Program Line 4 + SET {a656ae81-81ea-4475-845a-888b29e1e060} = 29.4, !- Program Line 5 + SET {4f575650-801f-451f-8ac3-cd89dcda01be} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b77cf8a1-a991-4b24-8275-37c167409f95}<23.9 && {b77cf8a1-a991-4b24-8275-37c167409f95}>1.7, !- Program Line 7 + SET {a656ae81-81ea-4475-845a-888b29e1e060} = 29.4, !- Program Line 8 + SET {4f575650-801f-451f-8ac3-cd89dcda01be} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b77cf8a1-a991-4b24-8275-37c167409f95}<23.9 && {b77cf8a1-a991-4b24-8275-37c167409f95}>1.7, !- Program Line 10 + SET {a656ae81-81ea-4475-845a-888b29e1e060} = 29.4, !- Program Line 11 + SET {4f575650-801f-451f-8ac3-cd89dcda01be} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {61c1a888-aae9-4569-a430-40180cef4ceb} = NULL, !- Program Line 14 - SET {21cfbe18-170f-455d-a9d8-c0eb1408878d} = NULL, !- Program Line 15 + SET {a656ae81-81ea-4475-845a-888b29e1e060} = NULL, !- Program Line 14 + SET {4f575650-801f-451f-8ac3-cd89dcda01be} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -14173,7 +14173,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14199,7 +14199,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14225,7 +14225,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14251,7 +14251,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14277,7 +14277,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14303,7 +14303,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14329,7 +14329,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18182,379 +18182,379 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000513}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000162}, !- Inlet Port {00000000-0000-0000-0019-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000514}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000165}, !- Inlet Port {00000000-0000-0000-0019-000000000163}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000515}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000172}, !- Inlet Port {00000000-0000-0000-0019-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000516}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001105}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000517}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001110}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000518}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000160}, !- Inlet Port {00000000-0000-0000-0019-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000519}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000166}, !- Inlet Port {00000000-0000-0000-0019-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000520}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001106}, !- Inlet Port {00000000-0000-0000-0019-000000001107}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000521}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001108}, !- Inlet Port {00000000-0000-0000-0019-000000001109}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000522}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000845}, !- Inlet Port {00000000-0000-0000-0019-000000000847}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000523}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000848}, !- Inlet Port {00000000-0000-0000-0019-000000000846}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000524}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000851}, !- Inlet Port {00000000-0000-0000-0019-000000000852}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000525}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001117}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000526}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001122}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000527}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000843}, !- Inlet Port {00000000-0000-0000-0019-000000000850}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000528}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000849}, !- Inlet Port {00000000-0000-0000-0019-000000000844}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000529}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000865}, !- Inlet Port {00000000-0000-0000-0019-000000000867}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000530}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000868}, !- Inlet Port {00000000-0000-0000-0019-000000000866}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000531}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000871}, !- Inlet Port {00000000-0000-0000-0019-000000000872}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000532}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001123}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000533}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001128}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000534}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000863}, !- Inlet Port {00000000-0000-0000-0019-000000000870}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000535}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000869}, !- Inlet Port {00000000-0000-0000-0019-000000000864}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000536}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000825}, !- Inlet Port {00000000-0000-0000-0019-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000537}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000828}, !- Inlet Port {00000000-0000-0000-0019-000000000826}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000538}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000831}, !- Inlet Port {00000000-0000-0000-0019-000000000832}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000539}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001111}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000540}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001116}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000541}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000823}, !- Inlet Port {00000000-0000-0000-0019-000000000830}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000542}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000829}, !- Inlet Port {00000000-0000-0000-0019-000000000824}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000543}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001118}, !- Inlet Port {00000000-0000-0000-0019-000000001119}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000544}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001120}, !- Inlet Port {00000000-0000-0000-0019-000000001121}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000545}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001124}, !- Inlet Port {00000000-0000-0000-0019-000000001125}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000546}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001126}, !- Inlet Port {00000000-0000-0000-0019-000000001127}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000547}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001112}, !- Inlet Port {00000000-0000-0000-0019-000000001113}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000548}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001114}, !- Inlet Port {00000000-0000-0000-0019-000000001115}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000549}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000545}, !- Inlet Port {00000000-0000-0000-0019-000000000547}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000550}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000548}, !- Inlet Port {00000000-0000-0000-0019-000000000546}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000551}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000551}, !- Inlet Port {00000000-0000-0000-0019-000000000552}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000552}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001135}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000553}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001140}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000554}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000543}, !- Inlet Port {00000000-0000-0000-0019-000000000550}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000555}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000549}, !- Inlet Port {00000000-0000-0000-0019-000000000544}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000556}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000645}, !- Inlet Port {00000000-0000-0000-0019-000000000647}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000557}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000648}, !- Inlet Port {00000000-0000-0000-0019-000000000646}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000558}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000651}, !- Inlet Port {00000000-0000-0000-0019-000000000652}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000559}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001141}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000560}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001146}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000561}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000643}, !- Inlet Port {00000000-0000-0000-0019-000000000650}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000562}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000649}, !- Inlet Port {00000000-0000-0000-0019-000000000644}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000563}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000525}, !- Inlet Port {00000000-0000-0000-0019-000000000527}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000564}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000528}, !- Inlet Port {00000000-0000-0000-0019-000000000526}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000565}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000531}, !- Inlet Port {00000000-0000-0000-0019-000000000532}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000566}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001129}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000567}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001134}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000568}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000523}, !- Inlet Port {00000000-0000-0000-0019-000000000530}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000569}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000529}, !- Inlet Port {00000000-0000-0000-0019-000000000524}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000570}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001136}, !- Inlet Port {00000000-0000-0000-0019-000000001137}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000571}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001138}, !- Inlet Port {00000000-0000-0000-0019-000000001139}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000572}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001142}, !- Inlet Port {00000000-0000-0000-0019-000000001143}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000573}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001144}, !- Inlet Port {00000000-0000-0000-0019-000000001145}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000574}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001130}, !- Inlet Port {00000000-0000-0000-0019-000000001131}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000575}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001132}, !- Inlet Port {00000000-0000-0000-0019-000000001133}; !- Outlet Port @@ -24448,7 +24448,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000165}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24463,7 +24463,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000166}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24472,7 +24472,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000167}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24481,7 +24481,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -24496,7 +24496,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24505,7 +24505,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24514,7 +24514,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24529,7 +24529,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24538,7 +24538,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24547,7 +24547,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24556,7 +24556,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24565,7 +24565,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24574,7 +24574,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -24589,7 +24589,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24598,7 +24598,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24607,7 +24607,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24622,7 +24622,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24631,7 +24631,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24640,7 +24640,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24655,7 +24655,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24664,7 +24664,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -27284,7 +27284,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000047}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000166}, !- Summer Design Day Schedule Name @@ -27292,7 +27292,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000169}, !- Summer Design Day Schedule Name @@ -27300,7 +27300,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000172}, !- Summer Design Day Schedule Name @@ -27308,7 +27308,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000175}, !- Summer Design Day Schedule Name @@ -27316,7 +27316,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000177}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000178}, !- Summer Design Day Schedule Name @@ -27324,7 +27324,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000180}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000181}, !- Summer Design Day Schedule Name @@ -27332,7 +27332,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000183}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000184}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 03df558cbe..b015fd0629 100644 --- a/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/SmallHotel-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -128,7 +128,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000047}, !- Availability Schedule {00000000-0000-0000-0010-000000000008}, !- Availability Manager List Name @@ -150,7 +150,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000048}, !- Availability Schedule {00000000-0000-0000-0010-000000000005}, !- Availability Manager List Name @@ -172,7 +172,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000049}, !- Availability Schedule {00000000-0000-0000-0010-000000000006}, !- Availability Manager List Name @@ -194,7 +194,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000004}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000050}, !- Availability Schedule {00000000-0000-0000-0010-000000000004}, !- Availability Manager List Name @@ -216,7 +216,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000005}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000051}, !- Availability Schedule {00000000-0000-0000-0010-000000000002}, !- Availability Manager List Name @@ -238,7 +238,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000006}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000052}, !- Availability Schedule {00000000-0000-0000-0010-000000000003}, !- Availability Manager List Name @@ -260,7 +260,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000007}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0067-000000000053}, !- Availability Schedule {00000000-0000-0000-0010-000000000001}, !- Availability Manager List Name @@ -14135,7 +14135,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0067-000000000032}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14143,7 +14143,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0067-000000000033}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -14151,27 +14151,27 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {503e0627-c3d6-45eb-81b0-bbb3938d5151}<23.9 && {503e0627-c3d6-45eb-81b0-bbb3938d5151}>1.7, !- Program Line 1 - SET {44c761f5-9ffe-4571-bfaa-ef7418c9b093} = 29.4, !- Program Line 2 - SET {a9862a0a-fa09-4330-87a8-4e81027fb580} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {503e0627-c3d6-45eb-81b0-bbb3938d5151}<23.9 && {503e0627-c3d6-45eb-81b0-bbb3938d5151}>1.7, !- Program Line 4 - SET {44c761f5-9ffe-4571-bfaa-ef7418c9b093} = 29.4, !- Program Line 5 - SET {a9862a0a-fa09-4330-87a8-4e81027fb580} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {503e0627-c3d6-45eb-81b0-bbb3938d5151}<23.9 && {503e0627-c3d6-45eb-81b0-bbb3938d5151}>1.7, !- Program Line 7 - SET {44c761f5-9ffe-4571-bfaa-ef7418c9b093} = 29.4, !- Program Line 8 - SET {a9862a0a-fa09-4330-87a8-4e81027fb580} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {503e0627-c3d6-45eb-81b0-bbb3938d5151}<23.9 && {503e0627-c3d6-45eb-81b0-bbb3938d5151}>1.7, !- Program Line 10 - SET {44c761f5-9ffe-4571-bfaa-ef7418c9b093} = 29.4, !- Program Line 11 - SET {a9862a0a-fa09-4330-87a8-4e81027fb580} = 15.6, !- Program Line 12 + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e2ca317a-3c6d-4757-b68f-702dbecd4438}<23.9 && {e2ca317a-3c6d-4757-b68f-702dbecd4438}>1.7, !- Program Line 1 + SET {5739f2bf-c9e1-432a-9218-4378b8b931b2} = 29.4, !- Program Line 2 + SET {4deb2a79-86cb-472a-a201-cd3fa2fb3e2e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e2ca317a-3c6d-4757-b68f-702dbecd4438}<23.9 && {e2ca317a-3c6d-4757-b68f-702dbecd4438}>1.7, !- Program Line 4 + SET {5739f2bf-c9e1-432a-9218-4378b8b931b2} = 29.4, !- Program Line 5 + SET {4deb2a79-86cb-472a-a201-cd3fa2fb3e2e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e2ca317a-3c6d-4757-b68f-702dbecd4438}<23.9 && {e2ca317a-3c6d-4757-b68f-702dbecd4438}>1.7, !- Program Line 7 + SET {5739f2bf-c9e1-432a-9218-4378b8b931b2} = 29.4, !- Program Line 8 + SET {4deb2a79-86cb-472a-a201-cd3fa2fb3e2e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e2ca317a-3c6d-4757-b68f-702dbecd4438}<23.9 && {e2ca317a-3c6d-4757-b68f-702dbecd4438}>1.7, !- Program Line 10 + SET {5739f2bf-c9e1-432a-9218-4378b8b931b2} = 29.4, !- Program Line 11 + SET {4deb2a79-86cb-472a-a201-cd3fa2fb3e2e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {44c761f5-9ffe-4571-bfaa-ef7418c9b093} = NULL, !- Program Line 14 - SET {a9862a0a-fa09-4330-87a8-4e81027fb580} = NULL, !- Program Line 15 + SET {5739f2bf-c9e1-432a-9218-4378b8b931b2} = NULL, !- Program Line 14 + SET {4deb2a79-86cb-472a-a201-cd3fa2fb3e2e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_1_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 @@ -14355,7 +14355,7 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000001}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14381,7 +14381,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000002}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14407,7 +14407,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000003}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14433,7 +14433,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000004}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14459,7 +14459,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000005}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14485,7 +14485,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000006}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -14511,7 +14511,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0046-000000000007}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0064-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -18364,379 +18364,379 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000513}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000162}, !- Inlet Port {00000000-0000-0000-0019-000000000164}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000514}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000165}, !- Inlet Port {00000000-0000-0000-0019-000000000163}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000515}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000172}, !- Inlet Port {00000000-0000-0000-0019-000000000173}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000516}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001105}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000517}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001110}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000518}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000160}, !- Inlet Port {00000000-0000-0000-0019-000000000171}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000519}, !- Handle - sys_1|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_1|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000166}, !- Inlet Port {00000000-0000-0000-0019-000000000161}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000520}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001106}, !- Inlet Port {00000000-0000-0000-0019-000000001107}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000521}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001108}, !- Inlet Port {00000000-0000-0000-0019-000000001109}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000522}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000845}, !- Inlet Port {00000000-0000-0000-0019-000000000847}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000523}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000848}, !- Inlet Port {00000000-0000-0000-0019-000000000846}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000524}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000851}, !- Inlet Port {00000000-0000-0000-0019-000000000852}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000525}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001117}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000526}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001122}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000527}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000843}, !- Inlet Port {00000000-0000-0000-0019-000000000850}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000528}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000849}, !- Inlet Port {00000000-0000-0000-0019-000000000844}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000529}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000865}, !- Inlet Port {00000000-0000-0000-0019-000000000867}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000530}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000868}, !- Inlet Port {00000000-0000-0000-0019-000000000866}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000531}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000871}, !- Inlet Port {00000000-0000-0000-0019-000000000872}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000532}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001123}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000533}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001128}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000534}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000863}, !- Inlet Port {00000000-0000-0000-0019-000000000870}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000535}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000869}, !- Inlet Port {00000000-0000-0000-0019-000000000864}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000536}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000825}, !- Inlet Port {00000000-0000-0000-0019-000000000827}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000537}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000828}, !- Inlet Port {00000000-0000-0000-0019-000000000826}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000538}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000831}, !- Inlet Port {00000000-0000-0000-0019-000000000832}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000539}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001111}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000540}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001116}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000541}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000823}, !- Inlet Port {00000000-0000-0000-0019-000000000830}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000542}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000829}, !- Inlet Port {00000000-0000-0000-0019-000000000824}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000543}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001118}, !- Inlet Port {00000000-0000-0000-0019-000000001119}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000544}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001120}, !- Inlet Port {00000000-0000-0000-0019-000000001121}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000545}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001124}, !- Inlet Port {00000000-0000-0000-0019-000000001125}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000546}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001126}, !- Inlet Port {00000000-0000-0000-0019-000000001127}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000547}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001112}, !- Inlet Port {00000000-0000-0000-0019-000000001113}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000548}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001114}, !- Inlet Port {00000000-0000-0000-0019-000000001115}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000549}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000545}, !- Inlet Port {00000000-0000-0000-0019-000000000547}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000550}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000548}, !- Inlet Port {00000000-0000-0000-0019-000000000546}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000551}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000551}, !- Inlet Port {00000000-0000-0000-0019-000000000552}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000552}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001135}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000553}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001140}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000554}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000543}, !- Inlet Port {00000000-0000-0000-0019-000000000550}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000555}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000549}, !- Inlet Port {00000000-0000-0000-0019-000000000544}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000556}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000645}, !- Inlet Port {00000000-0000-0000-0019-000000000647}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000557}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000648}, !- Inlet Port {00000000-0000-0000-0019-000000000646}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000558}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000651}, !- Inlet Port {00000000-0000-0000-0019-000000000652}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000559}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001141}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000560}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Relief Air Node, !- Name {00000000-0000-0000-0019-000000001146}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000561}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000643}, !- Inlet Port {00000000-0000-0000-0019-000000000650}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000562}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000649}, !- Inlet Port {00000000-0000-0000-0019-000000000644}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000563}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0019-000000000525}, !- Inlet Port {00000000-0000-0000-0019-000000000527}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000564}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0019-000000000528}, !- Inlet Port {00000000-0000-0000-0019-000000000526}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000565}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0019-000000000531}, !- Inlet Port {00000000-0000-0000-0019-000000000532}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000566}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0019-000000001129}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000567}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0019-000000001134}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000568}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0019-000000000523}, !- Inlet Port {00000000-0000-0000-0019-000000000530}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000569}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0019-000000000529}, !- Inlet Port {00000000-0000-0000-0019-000000000524}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000570}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001136}, !- Inlet Port {00000000-0000-0000-0019-000000001137}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000571}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001138}, !- Inlet Port {00000000-0000-0000-0019-000000001139}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000572}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001142}, !- Inlet Port {00000000-0000-0000-0019-000000001143}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000573}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001144}, !- Inlet Port {00000000-0000-0000-0019-000000001145}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000574}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0019-000000001130}, !- Inlet Port {00000000-0000-0000-0019-000000001131}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000575}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0019-000000001132}, !- Inlet Port {00000000-0000-0000-0019-000000001133}; !- Outlet Port @@ -24630,7 +24630,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000165}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24645,7 +24645,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000166}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24654,7 +24654,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000167}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24663,7 +24663,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000168}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 @@ -24678,7 +24678,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000169}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24687,7 +24687,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000170}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24696,7 +24696,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000171}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 9, !- Hour 1 @@ -24711,7 +24711,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000172}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24720,7 +24720,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000173}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24729,7 +24729,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000174}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24738,7 +24738,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000175}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24747,7 +24747,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000176}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24756,7 +24756,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000177}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -24771,7 +24771,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000178}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24780,7 +24780,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000179}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24789,7 +24789,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000180}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24804,7 +24804,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000181}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24813,7 +24813,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000182}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24822,7 +24822,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000183}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 10, !- Hour 1 @@ -24837,7 +24837,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000184}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -24846,7 +24846,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0065-000000000185}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -27466,7 +27466,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000047}, !- Handle - sys_1|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000005}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000165}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000166}, !- Summer Design Day Schedule Name @@ -27474,7 +27474,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000048}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000168}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000169}, !- Summer Design Day Schedule Name @@ -27482,7 +27482,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000171}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000172}, !- Summer Design Day Schedule Name @@ -27490,7 +27490,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000174}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000175}, !- Summer Design Day Schedule Name @@ -27498,7 +27498,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000177}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000178}, !- Summer Design Day Schedule Name @@ -27506,7 +27506,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 2 Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000180}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000181}, !- Summer Design Day Schedule Name @@ -27514,7 +27514,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0067-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0068-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0065-000000000183}, !- Default Day Schedule Name {00000000-0000-0000-0065-000000000184}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2011-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2011-Electricity-CAN_AB_Calgary.osm index 908db7827f..1f887e2334 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2011-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2011-Electricity-CAN_AB_Calgary.osm @@ -2098,41 +2098,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000001}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {95e95e63-fd74-4195-9e72-6c2777667438}<23.9 && {95e95e63-fd74-4195-9e72-6c2777667438}>1.7, !- Program Line 1 - SET {28bace57-5ad8-440f-ae00-ef0a36c5352f} = 29.4, !- Program Line 2 - SET {690e492e-4e8e-478a-8acf-fae5c5289c44} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {95e95e63-fd74-4195-9e72-6c2777667438}<23.9 && {95e95e63-fd74-4195-9e72-6c2777667438}>1.7, !- Program Line 4 - SET {28bace57-5ad8-440f-ae00-ef0a36c5352f} = 29.4, !- Program Line 5 - SET {690e492e-4e8e-478a-8acf-fae5c5289c44} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {95e95e63-fd74-4195-9e72-6c2777667438}<23.9 && {95e95e63-fd74-4195-9e72-6c2777667438}>1.7, !- Program Line 7 - SET {28bace57-5ad8-440f-ae00-ef0a36c5352f} = 29.4, !- Program Line 8 - SET {690e492e-4e8e-478a-8acf-fae5c5289c44} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {95e95e63-fd74-4195-9e72-6c2777667438}<23.9 && {95e95e63-fd74-4195-9e72-6c2777667438}>1.7, !- Program Line 10 - SET {28bace57-5ad8-440f-ae00-ef0a36c5352f} = 29.4, !- Program Line 11 - SET {690e492e-4e8e-478a-8acf-fae5c5289c44} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8a0adef2-8035-4e4c-85a1-5fc9d2f445b6}<23.9 && {8a0adef2-8035-4e4c-85a1-5fc9d2f445b6}>1.7, !- Program Line 1 + SET {6390107d-a406-4aa8-b7d2-8a845e9a656b} = 29.4, !- Program Line 2 + SET {ecac4bb5-7f4b-4bb9-b0c2-6e4bc99792ec} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8a0adef2-8035-4e4c-85a1-5fc9d2f445b6}<23.9 && {8a0adef2-8035-4e4c-85a1-5fc9d2f445b6}>1.7, !- Program Line 4 + SET {6390107d-a406-4aa8-b7d2-8a845e9a656b} = 29.4, !- Program Line 5 + SET {ecac4bb5-7f4b-4bb9-b0c2-6e4bc99792ec} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8a0adef2-8035-4e4c-85a1-5fc9d2f445b6}<23.9 && {8a0adef2-8035-4e4c-85a1-5fc9d2f445b6}>1.7, !- Program Line 7 + SET {6390107d-a406-4aa8-b7d2-8a845e9a656b} = 29.4, !- Program Line 8 + SET {ecac4bb5-7f4b-4bb9-b0c2-6e4bc99792ec} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8a0adef2-8035-4e4c-85a1-5fc9d2f445b6}<23.9 && {8a0adef2-8035-4e4c-85a1-5fc9d2f445b6}>1.7, !- Program Line 10 + SET {6390107d-a406-4aa8-b7d2-8a845e9a656b} = 29.4, !- Program Line 11 + SET {ecac4bb5-7f4b-4bb9-b0c2-6e4bc99792ec} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {28bace57-5ad8-440f-ae00-ef0a36c5352f} = NULL, !- Program Line 14 - SET {690e492e-4e8e-478a-8acf-fae5c5289c44} = NULL, !- Program Line 15 + SET {6390107d-a406-4aa8-b7d2-8a845e9a656b} = NULL, !- Program Line 14 + SET {ecac4bb5-7f4b-4bb9-b0c2-6e4bc99792ec} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000002}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0a57b842-8450-4160-98fb-4a34c6a427a8}<23.9 && {0a57b842-8450-4160-98fb-4a34c6a427a8}>1.7, !- Program Line 1 - SET {715ca4d8-9dce-45e1-b926-739a0ddb53f4} = 29.4, !- Program Line 2 - SET {c929eda0-91e7-4e59-acc5-a69b1696b2d3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0a57b842-8450-4160-98fb-4a34c6a427a8}<23.9 && {0a57b842-8450-4160-98fb-4a34c6a427a8}>1.7, !- Program Line 4 - SET {715ca4d8-9dce-45e1-b926-739a0ddb53f4} = 29.4, !- Program Line 5 - SET {c929eda0-91e7-4e59-acc5-a69b1696b2d3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0a57b842-8450-4160-98fb-4a34c6a427a8}<23.9 && {0a57b842-8450-4160-98fb-4a34c6a427a8}>1.7, !- Program Line 7 - SET {715ca4d8-9dce-45e1-b926-739a0ddb53f4} = 29.4, !- Program Line 8 - SET {c929eda0-91e7-4e59-acc5-a69b1696b2d3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0a57b842-8450-4160-98fb-4a34c6a427a8}<23.9 && {0a57b842-8450-4160-98fb-4a34c6a427a8}>1.7, !- Program Line 10 - SET {715ca4d8-9dce-45e1-b926-739a0ddb53f4} = 29.4, !- Program Line 11 - SET {c929eda0-91e7-4e59-acc5-a69b1696b2d3} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ae47cc45-63e2-4c86-be8d-1aafe514c729}<23.9 && {ae47cc45-63e2-4c86-be8d-1aafe514c729}>1.7, !- Program Line 1 + SET {83176c5e-09c5-4747-a727-618b3db6f24a} = 29.4, !- Program Line 2 + SET {18224764-fccf-4263-aeb2-3ce875d71408} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ae47cc45-63e2-4c86-be8d-1aafe514c729}<23.9 && {ae47cc45-63e2-4c86-be8d-1aafe514c729}>1.7, !- Program Line 4 + SET {83176c5e-09c5-4747-a727-618b3db6f24a} = 29.4, !- Program Line 5 + SET {18224764-fccf-4263-aeb2-3ce875d71408} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ae47cc45-63e2-4c86-be8d-1aafe514c729}<23.9 && {ae47cc45-63e2-4c86-be8d-1aafe514c729}>1.7, !- Program Line 7 + SET {83176c5e-09c5-4747-a727-618b3db6f24a} = 29.4, !- Program Line 8 + SET {18224764-fccf-4263-aeb2-3ce875d71408} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ae47cc45-63e2-4c86-be8d-1aafe514c729}<23.9 && {ae47cc45-63e2-4c86-be8d-1aafe514c729}>1.7, !- Program Line 10 + SET {83176c5e-09c5-4747-a727-618b3db6f24a} = 29.4, !- Program Line 11 + SET {18224764-fccf-4263-aeb2-3ce875d71408} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {715ca4d8-9dce-45e1-b926-739a0ddb53f4} = NULL, !- Program Line 14 - SET {c929eda0-91e7-4e59-acc5-a69b1696b2d3} = NULL, !- Program Line 15 + SET {83176c5e-09c5-4747-a727-618b3db6f24a} = NULL, !- Program Line 14 + SET {18224764-fccf-4263-aeb2-3ce875d71408} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 0a53f37e43..1eaf29d6c0 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2011-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2385,7 +2385,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0060-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2393,7 +2393,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0060-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2401,7 +2401,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0060-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2409,7 +2409,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0060-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2417,53 +2417,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fe690767-3c4e-42d4-997a-e484406709e3}<23.9 && {fe690767-3c4e-42d4-997a-e484406709e3}>1.7, !- Program Line 1 - SET {845fc45f-e122-491a-80e6-2474672b2021} = 29.4, !- Program Line 2 - SET {bf3c204e-a9cb-4fce-b24f-6c383e8895d7} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fe690767-3c4e-42d4-997a-e484406709e3}<23.9 && {fe690767-3c4e-42d4-997a-e484406709e3}>1.7, !- Program Line 4 - SET {845fc45f-e122-491a-80e6-2474672b2021} = 29.4, !- Program Line 5 - SET {bf3c204e-a9cb-4fce-b24f-6c383e8895d7} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fe690767-3c4e-42d4-997a-e484406709e3}<23.9 && {fe690767-3c4e-42d4-997a-e484406709e3}>1.7, !- Program Line 7 - SET {845fc45f-e122-491a-80e6-2474672b2021} = 29.4, !- Program Line 8 - SET {bf3c204e-a9cb-4fce-b24f-6c383e8895d7} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fe690767-3c4e-42d4-997a-e484406709e3}<23.9 && {fe690767-3c4e-42d4-997a-e484406709e3}>1.7, !- Program Line 10 - SET {845fc45f-e122-491a-80e6-2474672b2021} = 29.4, !- Program Line 11 - SET {bf3c204e-a9cb-4fce-b24f-6c383e8895d7} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {04a5df64-b8e5-4b79-86b5-68d1354b00fb}<23.9 && {04a5df64-b8e5-4b79-86b5-68d1354b00fb}>1.7, !- Program Line 1 + SET {b628d6d8-1d8d-4d44-917c-3c7e0b8a76da} = 29.4, !- Program Line 2 + SET {4a45dacf-0ed2-496d-b5f8-7a62139051f1} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {04a5df64-b8e5-4b79-86b5-68d1354b00fb}<23.9 && {04a5df64-b8e5-4b79-86b5-68d1354b00fb}>1.7, !- Program Line 4 + SET {b628d6d8-1d8d-4d44-917c-3c7e0b8a76da} = 29.4, !- Program Line 5 + SET {4a45dacf-0ed2-496d-b5f8-7a62139051f1} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {04a5df64-b8e5-4b79-86b5-68d1354b00fb}<23.9 && {04a5df64-b8e5-4b79-86b5-68d1354b00fb}>1.7, !- Program Line 7 + SET {b628d6d8-1d8d-4d44-917c-3c7e0b8a76da} = 29.4, !- Program Line 8 + SET {4a45dacf-0ed2-496d-b5f8-7a62139051f1} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {04a5df64-b8e5-4b79-86b5-68d1354b00fb}<23.9 && {04a5df64-b8e5-4b79-86b5-68d1354b00fb}>1.7, !- Program Line 10 + SET {b628d6d8-1d8d-4d44-917c-3c7e0b8a76da} = 29.4, !- Program Line 11 + SET {4a45dacf-0ed2-496d-b5f8-7a62139051f1} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {845fc45f-e122-491a-80e6-2474672b2021} = NULL, !- Program Line 14 - SET {bf3c204e-a9cb-4fce-b24f-6c383e8895d7} = NULL, !- Program Line 15 + SET {b628d6d8-1d8d-4d44-917c-3c7e0b8a76da} = NULL, !- Program Line 14 + SET {4a45dacf-0ed2-496d-b5f8-7a62139051f1} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {84b2473d-93a6-468a-9535-79ae21a9c3dc}<23.9 && {84b2473d-93a6-468a-9535-79ae21a9c3dc}>1.7, !- Program Line 1 - SET {16439a87-74c4-4cce-81af-aba723b4fed1} = 29.4, !- Program Line 2 - SET {ea90119b-ad50-4aae-b167-5966ef58a37e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {84b2473d-93a6-468a-9535-79ae21a9c3dc}<23.9 && {84b2473d-93a6-468a-9535-79ae21a9c3dc}>1.7, !- Program Line 4 - SET {16439a87-74c4-4cce-81af-aba723b4fed1} = 29.4, !- Program Line 5 - SET {ea90119b-ad50-4aae-b167-5966ef58a37e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {84b2473d-93a6-468a-9535-79ae21a9c3dc}<23.9 && {84b2473d-93a6-468a-9535-79ae21a9c3dc}>1.7, !- Program Line 7 - SET {16439a87-74c4-4cce-81af-aba723b4fed1} = 29.4, !- Program Line 8 - SET {ea90119b-ad50-4aae-b167-5966ef58a37e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {84b2473d-93a6-468a-9535-79ae21a9c3dc}<23.9 && {84b2473d-93a6-468a-9535-79ae21a9c3dc}>1.7, !- Program Line 10 - SET {16439a87-74c4-4cce-81af-aba723b4fed1} = 29.4, !- Program Line 11 - SET {ea90119b-ad50-4aae-b167-5966ef58a37e} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a4828724-4cf1-460a-a55f-d38ff7856e9f}<23.9 && {a4828724-4cf1-460a-a55f-d38ff7856e9f}>1.7, !- Program Line 1 + SET {b38691d5-1372-4167-a60c-3cc7d7ff0d19} = 29.4, !- Program Line 2 + SET {96c524aa-42d1-43ac-b4bc-f8c72bc1b25d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a4828724-4cf1-460a-a55f-d38ff7856e9f}<23.9 && {a4828724-4cf1-460a-a55f-d38ff7856e9f}>1.7, !- Program Line 4 + SET {b38691d5-1372-4167-a60c-3cc7d7ff0d19} = 29.4, !- Program Line 5 + SET {96c524aa-42d1-43ac-b4bc-f8c72bc1b25d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a4828724-4cf1-460a-a55f-d38ff7856e9f}<23.9 && {a4828724-4cf1-460a-a55f-d38ff7856e9f}>1.7, !- Program Line 7 + SET {b38691d5-1372-4167-a60c-3cc7d7ff0d19} = 29.4, !- Program Line 8 + SET {96c524aa-42d1-43ac-b4bc-f8c72bc1b25d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a4828724-4cf1-460a-a55f-d38ff7856e9f}<23.9 && {a4828724-4cf1-460a-a55f-d38ff7856e9f}>1.7, !- Program Line 10 + SET {b38691d5-1372-4167-a60c-3cc7d7ff0d19} = 29.4, !- Program Line 11 + SET {96c524aa-42d1-43ac-b4bc-f8c72bc1b25d} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {16439a87-74c4-4cce-81af-aba723b4fed1} = NULL, !- Program Line 14 - SET {ea90119b-ad50-4aae-b167-5966ef58a37e} = NULL, !- Program Line 15 + SET {b38691d5-1372-4167-a60c-3cc7d7ff0d19} = NULL, !- Program Line 14 + SET {96c524aa-42d1-43ac-b4bc-f8c72bc1b25d} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 @@ -3256,127 +3256,127 @@ OS:Node, OS:Node, {00000000-0000-0000-0048-000000000032}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000033}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000034}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000017}, !- Inlet Port {00000000-0000-0000-0016-000000000018}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000035}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000036}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000037}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000007}, !- Inlet Port {00000000-0000-0000-0016-000000000016}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000015}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000039}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000047}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000040}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000048}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000041}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000053}, !- Inlet Port {00000000-0000-0000-0016-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000042}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000043}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000050}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000044}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000043}, !- Inlet Port {00000000-0000-0000-0016-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000045}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000051}, !- Inlet Port {00000000-0000-0000-0016-000000000044}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000046}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000027}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000047}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000030}, !- Inlet Port {00000000-0000-0000-0016-000000000028}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000048}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000035}, !- Inlet Port {00000000-0000-0000-0016-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000049}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000032}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000034}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000033}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port @@ -4343,7 +4343,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4358,7 +4358,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4367,7 +4367,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4376,7 +4376,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4391,7 +4391,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4400,7 +4400,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4409,7 +4409,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4424,7 +4424,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4433,7 +4433,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5033,7 +5033,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000049}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000050}, !- Summer Design Day Schedule Name @@ -5041,7 +5041,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000021}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000053}, !- Summer Design Day Schedule Name @@ -5049,7 +5049,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 098afab336..5642d33ce5 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2011-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0060-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2407,7 +2407,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0060-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2415,7 +2415,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0060-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2423,7 +2423,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0060-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2431,7 +2431,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0060-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2439,53 +2439,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7035299b-0ed3-4341-963f-4a0e32080a0d}<23.9 && {7035299b-0ed3-4341-963f-4a0e32080a0d}>1.7, !- Program Line 1 - SET {25d67b85-cd65-4a00-9488-c2b8b658466c} = 29.4, !- Program Line 2 - SET {2f3427f4-8024-40e8-9eb1-6234eabb9d05} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7035299b-0ed3-4341-963f-4a0e32080a0d}<23.9 && {7035299b-0ed3-4341-963f-4a0e32080a0d}>1.7, !- Program Line 4 - SET {25d67b85-cd65-4a00-9488-c2b8b658466c} = 29.4, !- Program Line 5 - SET {2f3427f4-8024-40e8-9eb1-6234eabb9d05} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7035299b-0ed3-4341-963f-4a0e32080a0d}<23.9 && {7035299b-0ed3-4341-963f-4a0e32080a0d}>1.7, !- Program Line 7 - SET {25d67b85-cd65-4a00-9488-c2b8b658466c} = 29.4, !- Program Line 8 - SET {2f3427f4-8024-40e8-9eb1-6234eabb9d05} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7035299b-0ed3-4341-963f-4a0e32080a0d}<23.9 && {7035299b-0ed3-4341-963f-4a0e32080a0d}>1.7, !- Program Line 10 - SET {25d67b85-cd65-4a00-9488-c2b8b658466c} = 29.4, !- Program Line 11 - SET {2f3427f4-8024-40e8-9eb1-6234eabb9d05} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {703495ce-f41a-49fb-a20f-3758f22e6d24}<23.9 && {703495ce-f41a-49fb-a20f-3758f22e6d24}>1.7, !- Program Line 1 + SET {fd407444-ca6b-4835-bc99-a92aeba2d6a1} = 29.4, !- Program Line 2 + SET {2f386eff-ed3e-4d1c-abc5-3f4eab940a28} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {703495ce-f41a-49fb-a20f-3758f22e6d24}<23.9 && {703495ce-f41a-49fb-a20f-3758f22e6d24}>1.7, !- Program Line 4 + SET {fd407444-ca6b-4835-bc99-a92aeba2d6a1} = 29.4, !- Program Line 5 + SET {2f386eff-ed3e-4d1c-abc5-3f4eab940a28} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {703495ce-f41a-49fb-a20f-3758f22e6d24}<23.9 && {703495ce-f41a-49fb-a20f-3758f22e6d24}>1.7, !- Program Line 7 + SET {fd407444-ca6b-4835-bc99-a92aeba2d6a1} = 29.4, !- Program Line 8 + SET {2f386eff-ed3e-4d1c-abc5-3f4eab940a28} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {703495ce-f41a-49fb-a20f-3758f22e6d24}<23.9 && {703495ce-f41a-49fb-a20f-3758f22e6d24}>1.7, !- Program Line 10 + SET {fd407444-ca6b-4835-bc99-a92aeba2d6a1} = 29.4, !- Program Line 11 + SET {2f386eff-ed3e-4d1c-abc5-3f4eab940a28} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {25d67b85-cd65-4a00-9488-c2b8b658466c} = NULL, !- Program Line 14 - SET {2f3427f4-8024-40e8-9eb1-6234eabb9d05} = NULL, !- Program Line 15 + SET {fd407444-ca6b-4835-bc99-a92aeba2d6a1} = NULL, !- Program Line 14 + SET {2f386eff-ed3e-4d1c-abc5-3f4eab940a28} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c9a867e9-90ab-4979-b496-4c60ebdbc2eb}<23.9 && {c9a867e9-90ab-4979-b496-4c60ebdbc2eb}>1.7, !- Program Line 1 - SET {cc6fec93-3593-43cf-84f4-5a671854e0f8} = 29.4, !- Program Line 2 - SET {3f5787ed-499b-4d0c-97cf-666cf07e5716} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c9a867e9-90ab-4979-b496-4c60ebdbc2eb}<23.9 && {c9a867e9-90ab-4979-b496-4c60ebdbc2eb}>1.7, !- Program Line 4 - SET {cc6fec93-3593-43cf-84f4-5a671854e0f8} = 29.4, !- Program Line 5 - SET {3f5787ed-499b-4d0c-97cf-666cf07e5716} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c9a867e9-90ab-4979-b496-4c60ebdbc2eb}<23.9 && {c9a867e9-90ab-4979-b496-4c60ebdbc2eb}>1.7, !- Program Line 7 - SET {cc6fec93-3593-43cf-84f4-5a671854e0f8} = 29.4, !- Program Line 8 - SET {3f5787ed-499b-4d0c-97cf-666cf07e5716} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c9a867e9-90ab-4979-b496-4c60ebdbc2eb}<23.9 && {c9a867e9-90ab-4979-b496-4c60ebdbc2eb}>1.7, !- Program Line 10 - SET {cc6fec93-3593-43cf-84f4-5a671854e0f8} = 29.4, !- Program Line 11 - SET {3f5787ed-499b-4d0c-97cf-666cf07e5716} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7029645d-5afd-4d55-9f81-ac8a76ff34b2}<23.9 && {7029645d-5afd-4d55-9f81-ac8a76ff34b2}>1.7, !- Program Line 1 + SET {1905f6a1-7efb-4a70-8989-f89fcf0f68cc} = 29.4, !- Program Line 2 + SET {a8aeaa9e-284b-47d4-97a0-bc420100ca2e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7029645d-5afd-4d55-9f81-ac8a76ff34b2}<23.9 && {7029645d-5afd-4d55-9f81-ac8a76ff34b2}>1.7, !- Program Line 4 + SET {1905f6a1-7efb-4a70-8989-f89fcf0f68cc} = 29.4, !- Program Line 5 + SET {a8aeaa9e-284b-47d4-97a0-bc420100ca2e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7029645d-5afd-4d55-9f81-ac8a76ff34b2}<23.9 && {7029645d-5afd-4d55-9f81-ac8a76ff34b2}>1.7, !- Program Line 7 + SET {1905f6a1-7efb-4a70-8989-f89fcf0f68cc} = 29.4, !- Program Line 8 + SET {a8aeaa9e-284b-47d4-97a0-bc420100ca2e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7029645d-5afd-4d55-9f81-ac8a76ff34b2}<23.9 && {7029645d-5afd-4d55-9f81-ac8a76ff34b2}>1.7, !- Program Line 10 + SET {1905f6a1-7efb-4a70-8989-f89fcf0f68cc} = 29.4, !- Program Line 11 + SET {a8aeaa9e-284b-47d4-97a0-bc420100ca2e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {cc6fec93-3593-43cf-84f4-5a671854e0f8} = NULL, !- Program Line 14 - SET {3f5787ed-499b-4d0c-97cf-666cf07e5716} = NULL, !- Program Line 15 + SET {1905f6a1-7efb-4a70-8989-f89fcf0f68cc} = NULL, !- Program Line 14 + SET {a8aeaa9e-284b-47d4-97a0-bc420100ca2e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 @@ -3278,127 +3278,127 @@ OS:Node, OS:Node, {00000000-0000-0000-0048-000000000032}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000033}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000034}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000017}, !- Inlet Port {00000000-0000-0000-0016-000000000018}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000035}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000013}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000036}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000014}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000037}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000007}, !- Inlet Port {00000000-0000-0000-0016-000000000016}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000038}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000015}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000039}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000047}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000040}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000048}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000041}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000053}, !- Inlet Port {00000000-0000-0000-0016-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000042}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000049}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000043}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000050}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000044}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000043}, !- Inlet Port {00000000-0000-0000-0016-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000045}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000051}, !- Inlet Port {00000000-0000-0000-0016-000000000044}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000046}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000027}, !- Inlet Port {00000000-0000-0000-0016-000000000029}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000047}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000030}, !- Inlet Port {00000000-0000-0000-0016-000000000028}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000048}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000035}, !- Inlet Port {00000000-0000-0000-0016-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000049}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000031}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000050}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000032}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000051}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000034}; !- Outlet Port OS:Node, {00000000-0000-0000-0048-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000033}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port @@ -4365,7 +4365,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4380,7 +4380,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4389,7 +4389,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4398,7 +4398,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4413,7 +4413,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4422,7 +4422,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4431,7 +4431,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4446,7 +4446,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4455,7 +4455,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0058-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5055,7 +5055,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000049}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000050}, !- Summer Design Day Schedule Name @@ -5063,7 +5063,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000021}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000053}, !- Summer Design Day Schedule Name @@ -5071,7 +5071,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0060-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0061-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0058-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0058-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGas-CAN_AB_Calgary.osm index 007a80646a..8b3526d675 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGas-CAN_AB_Calgary.osm @@ -2509,41 +2509,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000001}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9e3d3a2b-9ee6-42df-888f-356d0997904a}<23.9 && {9e3d3a2b-9ee6-42df-888f-356d0997904a}>1.7, !- Program Line 1 - SET {275b4889-6df9-4abc-a9bf-587c6dc984c3} = 29.4, !- Program Line 2 - SET {94258110-51ce-4041-b59f-f01055355f4b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9e3d3a2b-9ee6-42df-888f-356d0997904a}<23.9 && {9e3d3a2b-9ee6-42df-888f-356d0997904a}>1.7, !- Program Line 4 - SET {275b4889-6df9-4abc-a9bf-587c6dc984c3} = 29.4, !- Program Line 5 - SET {94258110-51ce-4041-b59f-f01055355f4b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9e3d3a2b-9ee6-42df-888f-356d0997904a}<23.9 && {9e3d3a2b-9ee6-42df-888f-356d0997904a}>1.7, !- Program Line 7 - SET {275b4889-6df9-4abc-a9bf-587c6dc984c3} = 29.4, !- Program Line 8 - SET {94258110-51ce-4041-b59f-f01055355f4b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9e3d3a2b-9ee6-42df-888f-356d0997904a}<23.9 && {9e3d3a2b-9ee6-42df-888f-356d0997904a}>1.7, !- Program Line 10 - SET {275b4889-6df9-4abc-a9bf-587c6dc984c3} = 29.4, !- Program Line 11 - SET {94258110-51ce-4041-b59f-f01055355f4b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {052c1136-dbb0-4735-b39c-a880a45612a8}<23.9 && {052c1136-dbb0-4735-b39c-a880a45612a8}>1.7, !- Program Line 1 + SET {360d926d-4eb4-4435-a086-27e011042a6b} = 29.4, !- Program Line 2 + SET {91a5693b-1e70-4126-9f52-a623a191cf1e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {052c1136-dbb0-4735-b39c-a880a45612a8}<23.9 && {052c1136-dbb0-4735-b39c-a880a45612a8}>1.7, !- Program Line 4 + SET {360d926d-4eb4-4435-a086-27e011042a6b} = 29.4, !- Program Line 5 + SET {91a5693b-1e70-4126-9f52-a623a191cf1e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {052c1136-dbb0-4735-b39c-a880a45612a8}<23.9 && {052c1136-dbb0-4735-b39c-a880a45612a8}>1.7, !- Program Line 7 + SET {360d926d-4eb4-4435-a086-27e011042a6b} = 29.4, !- Program Line 8 + SET {91a5693b-1e70-4126-9f52-a623a191cf1e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {052c1136-dbb0-4735-b39c-a880a45612a8}<23.9 && {052c1136-dbb0-4735-b39c-a880a45612a8}>1.7, !- Program Line 10 + SET {360d926d-4eb4-4435-a086-27e011042a6b} = 29.4, !- Program Line 11 + SET {91a5693b-1e70-4126-9f52-a623a191cf1e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {275b4889-6df9-4abc-a9bf-587c6dc984c3} = NULL, !- Program Line 14 - SET {94258110-51ce-4041-b59f-f01055355f4b} = NULL, !- Program Line 15 + SET {360d926d-4eb4-4435-a086-27e011042a6b} = NULL, !- Program Line 14 + SET {91a5693b-1e70-4126-9f52-a623a191cf1e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000002}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {187bbb9d-b73b-4332-82c9-4f0ef9cea2fa}<23.9 && {187bbb9d-b73b-4332-82c9-4f0ef9cea2fa}>1.7, !- Program Line 1 - SET {e8f9547e-d7e3-45f3-90a1-e27ae023b75d} = 29.4, !- Program Line 2 - SET {24ecd1ad-5fe0-4687-85e7-3be806a80d4c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {187bbb9d-b73b-4332-82c9-4f0ef9cea2fa}<23.9 && {187bbb9d-b73b-4332-82c9-4f0ef9cea2fa}>1.7, !- Program Line 4 - SET {e8f9547e-d7e3-45f3-90a1-e27ae023b75d} = 29.4, !- Program Line 5 - SET {24ecd1ad-5fe0-4687-85e7-3be806a80d4c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {187bbb9d-b73b-4332-82c9-4f0ef9cea2fa}<23.9 && {187bbb9d-b73b-4332-82c9-4f0ef9cea2fa}>1.7, !- Program Line 7 - SET {e8f9547e-d7e3-45f3-90a1-e27ae023b75d} = 29.4, !- Program Line 8 - SET {24ecd1ad-5fe0-4687-85e7-3be806a80d4c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {187bbb9d-b73b-4332-82c9-4f0ef9cea2fa}<23.9 && {187bbb9d-b73b-4332-82c9-4f0ef9cea2fa}>1.7, !- Program Line 10 - SET {e8f9547e-d7e3-45f3-90a1-e27ae023b75d} = 29.4, !- Program Line 11 - SET {24ecd1ad-5fe0-4687-85e7-3be806a80d4c} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1e91484b-b8ba-4ead-863e-5266c532fdc2}<23.9 && {1e91484b-b8ba-4ead-863e-5266c532fdc2}>1.7, !- Program Line 1 + SET {36d18806-a7c6-4243-8db3-8aac3d522b3b} = 29.4, !- Program Line 2 + SET {0e6fd4a7-18c1-44b3-ae05-25fa27b726e2} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1e91484b-b8ba-4ead-863e-5266c532fdc2}<23.9 && {1e91484b-b8ba-4ead-863e-5266c532fdc2}>1.7, !- Program Line 4 + SET {36d18806-a7c6-4243-8db3-8aac3d522b3b} = 29.4, !- Program Line 5 + SET {0e6fd4a7-18c1-44b3-ae05-25fa27b726e2} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1e91484b-b8ba-4ead-863e-5266c532fdc2}<23.9 && {1e91484b-b8ba-4ead-863e-5266c532fdc2}>1.7, !- Program Line 7 + SET {36d18806-a7c6-4243-8db3-8aac3d522b3b} = 29.4, !- Program Line 8 + SET {0e6fd4a7-18c1-44b3-ae05-25fa27b726e2} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1e91484b-b8ba-4ead-863e-5266c532fdc2}<23.9 && {1e91484b-b8ba-4ead-863e-5266c532fdc2}>1.7, !- Program Line 10 + SET {36d18806-a7c6-4243-8db3-8aac3d522b3b} = 29.4, !- Program Line 11 + SET {0e6fd4a7-18c1-44b3-ae05-25fa27b726e2} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e8f9547e-d7e3-45f3-90a1-e27ae023b75d} = NULL, !- Program Line 14 - SET {24ecd1ad-5fe0-4687-85e7-3be806a80d4c} = NULL, !- Program Line 15 + SET {36d18806-a7c6-4243-8db3-8aac3d522b3b} = NULL, !- Program Line 14 + SET {0e6fd4a7-18c1-44b3-ae05-25fa27b726e2} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 478c6f8d2f..0136d54917 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2774,7 +2774,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0063-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2782,7 +2782,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0063-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2790,7 +2790,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0063-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2798,7 +2798,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0063-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2806,53 +2806,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {76cfe481-a968-450b-bceb-4fa28c701861}<23.9 && {76cfe481-a968-450b-bceb-4fa28c701861}>1.7, !- Program Line 1 - SET {ee17d68a-1bad-4159-a594-dbea01cc8096} = 29.4, !- Program Line 2 - SET {edf24a09-ff9a-4cbb-bcb1-0a141a3c28cd} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {76cfe481-a968-450b-bceb-4fa28c701861}<23.9 && {76cfe481-a968-450b-bceb-4fa28c701861}>1.7, !- Program Line 4 - SET {ee17d68a-1bad-4159-a594-dbea01cc8096} = 29.4, !- Program Line 5 - SET {edf24a09-ff9a-4cbb-bcb1-0a141a3c28cd} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {76cfe481-a968-450b-bceb-4fa28c701861}<23.9 && {76cfe481-a968-450b-bceb-4fa28c701861}>1.7, !- Program Line 7 - SET {ee17d68a-1bad-4159-a594-dbea01cc8096} = 29.4, !- Program Line 8 - SET {edf24a09-ff9a-4cbb-bcb1-0a141a3c28cd} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {76cfe481-a968-450b-bceb-4fa28c701861}<23.9 && {76cfe481-a968-450b-bceb-4fa28c701861}>1.7, !- Program Line 10 - SET {ee17d68a-1bad-4159-a594-dbea01cc8096} = 29.4, !- Program Line 11 - SET {edf24a09-ff9a-4cbb-bcb1-0a141a3c28cd} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9d1be639-6e12-4c19-9a78-be3d5d6632a4}<23.9 && {9d1be639-6e12-4c19-9a78-be3d5d6632a4}>1.7, !- Program Line 1 + SET {52ea41ed-aeaf-4876-8fe0-1cded875128a} = 29.4, !- Program Line 2 + SET {6aab3ca0-cae9-4efd-a464-7b65b618a634} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9d1be639-6e12-4c19-9a78-be3d5d6632a4}<23.9 && {9d1be639-6e12-4c19-9a78-be3d5d6632a4}>1.7, !- Program Line 4 + SET {52ea41ed-aeaf-4876-8fe0-1cded875128a} = 29.4, !- Program Line 5 + SET {6aab3ca0-cae9-4efd-a464-7b65b618a634} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9d1be639-6e12-4c19-9a78-be3d5d6632a4}<23.9 && {9d1be639-6e12-4c19-9a78-be3d5d6632a4}>1.7, !- Program Line 7 + SET {52ea41ed-aeaf-4876-8fe0-1cded875128a} = 29.4, !- Program Line 8 + SET {6aab3ca0-cae9-4efd-a464-7b65b618a634} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9d1be639-6e12-4c19-9a78-be3d5d6632a4}<23.9 && {9d1be639-6e12-4c19-9a78-be3d5d6632a4}>1.7, !- Program Line 10 + SET {52ea41ed-aeaf-4876-8fe0-1cded875128a} = 29.4, !- Program Line 11 + SET {6aab3ca0-cae9-4efd-a464-7b65b618a634} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ee17d68a-1bad-4159-a594-dbea01cc8096} = NULL, !- Program Line 14 - SET {edf24a09-ff9a-4cbb-bcb1-0a141a3c28cd} = NULL, !- Program Line 15 + SET {52ea41ed-aeaf-4876-8fe0-1cded875128a} = NULL, !- Program Line 14 + SET {6aab3ca0-cae9-4efd-a464-7b65b618a634} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {31105464-16f1-44fe-8f2c-b5b1d83d51b6}<23.9 && {31105464-16f1-44fe-8f2c-b5b1d83d51b6}>1.7, !- Program Line 1 - SET {92d5176e-e018-4f0f-8394-82ab897c9c88} = 29.4, !- Program Line 2 - SET {3c586c96-05c0-411f-9347-e8e889481e62} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {31105464-16f1-44fe-8f2c-b5b1d83d51b6}<23.9 && {31105464-16f1-44fe-8f2c-b5b1d83d51b6}>1.7, !- Program Line 4 - SET {92d5176e-e018-4f0f-8394-82ab897c9c88} = 29.4, !- Program Line 5 - SET {3c586c96-05c0-411f-9347-e8e889481e62} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {31105464-16f1-44fe-8f2c-b5b1d83d51b6}<23.9 && {31105464-16f1-44fe-8f2c-b5b1d83d51b6}>1.7, !- Program Line 7 - SET {92d5176e-e018-4f0f-8394-82ab897c9c88} = 29.4, !- Program Line 8 - SET {3c586c96-05c0-411f-9347-e8e889481e62} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {31105464-16f1-44fe-8f2c-b5b1d83d51b6}<23.9 && {31105464-16f1-44fe-8f2c-b5b1d83d51b6}>1.7, !- Program Line 10 - SET {92d5176e-e018-4f0f-8394-82ab897c9c88} = 29.4, !- Program Line 11 - SET {3c586c96-05c0-411f-9347-e8e889481e62} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {89cadf53-d35f-4212-a1c1-1b758f69483d}<23.9 && {89cadf53-d35f-4212-a1c1-1b758f69483d}>1.7, !- Program Line 1 + SET {4eb6556b-7209-4ed0-9692-d75496e1ad21} = 29.4, !- Program Line 2 + SET {61673d6a-242b-4b44-91bd-ba71239a9854} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {89cadf53-d35f-4212-a1c1-1b758f69483d}<23.9 && {89cadf53-d35f-4212-a1c1-1b758f69483d}>1.7, !- Program Line 4 + SET {4eb6556b-7209-4ed0-9692-d75496e1ad21} = 29.4, !- Program Line 5 + SET {61673d6a-242b-4b44-91bd-ba71239a9854} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {89cadf53-d35f-4212-a1c1-1b758f69483d}<23.9 && {89cadf53-d35f-4212-a1c1-1b758f69483d}>1.7, !- Program Line 7 + SET {4eb6556b-7209-4ed0-9692-d75496e1ad21} = 29.4, !- Program Line 8 + SET {61673d6a-242b-4b44-91bd-ba71239a9854} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {89cadf53-d35f-4212-a1c1-1b758f69483d}<23.9 && {89cadf53-d35f-4212-a1c1-1b758f69483d}>1.7, !- Program Line 10 + SET {4eb6556b-7209-4ed0-9692-d75496e1ad21} = 29.4, !- Program Line 11 + SET {61673d6a-242b-4b44-91bd-ba71239a9854} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {92d5176e-e018-4f0f-8394-82ab897c9c88} = NULL, !- Program Line 14 - SET {3c586c96-05c0-411f-9347-e8e889481e62} = NULL, !- Program Line 15 + SET {4eb6556b-7209-4ed0-9692-d75496e1ad21} = NULL, !- Program Line 14 + SET {61673d6a-242b-4b44-91bd-ba71239a9854} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 @@ -3753,127 +3753,127 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000042}, !- Inlet Port {00000000-0000-0000-0018-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000032}, !- Inlet Port {00000000-0000-0000-0018-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000040}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000077}, !- Inlet Port {00000000-0000-0000-0018-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000080}, !- Inlet Port {00000000-0000-0000-0018-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000085}, !- Inlet Port {00000000-0000-0000-0018-000000000086}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000061}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000082}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000062}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000075}, !- Inlet Port {00000000-0000-0000-0018-000000000084}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000063}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000083}, !- Inlet Port {00000000-0000-0000-0018-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000064}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000055}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000065}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000058}, !- Inlet Port {00000000-0000-0000-0018-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000066}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000063}, !- Inlet Port {00000000-0000-0000-0018-000000000064}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000067}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000068}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000060}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000069}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000062}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000070}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000061}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port @@ -4921,7 +4921,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4936,7 +4936,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4945,7 +4945,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4954,7 +4954,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4969,7 +4969,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4978,7 +4978,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4987,7 +4987,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5002,7 +5002,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5011,7 +5011,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5611,7 +5611,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000049}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000050}, !- Summer Design Day Schedule Name @@ -5619,7 +5619,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000021}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000053}, !- Summer Design Day Schedule Name @@ -5627,7 +5627,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index e90b548475..fb437b611f 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2011-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0063-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2796,7 +2796,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0063-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2804,7 +2804,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0063-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2812,7 +2812,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0063-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2820,7 +2820,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0063-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2828,53 +2828,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2c70cf4a-51af-44b8-b1bd-969c05b4b42a}<23.9 && {2c70cf4a-51af-44b8-b1bd-969c05b4b42a}>1.7, !- Program Line 1 - SET {7efb69e4-9cab-42ce-a544-0efcb4578ad2} = 29.4, !- Program Line 2 - SET {8b72a289-9255-4c0e-95ed-3f045aea959d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2c70cf4a-51af-44b8-b1bd-969c05b4b42a}<23.9 && {2c70cf4a-51af-44b8-b1bd-969c05b4b42a}>1.7, !- Program Line 4 - SET {7efb69e4-9cab-42ce-a544-0efcb4578ad2} = 29.4, !- Program Line 5 - SET {8b72a289-9255-4c0e-95ed-3f045aea959d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2c70cf4a-51af-44b8-b1bd-969c05b4b42a}<23.9 && {2c70cf4a-51af-44b8-b1bd-969c05b4b42a}>1.7, !- Program Line 7 - SET {7efb69e4-9cab-42ce-a544-0efcb4578ad2} = 29.4, !- Program Line 8 - SET {8b72a289-9255-4c0e-95ed-3f045aea959d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2c70cf4a-51af-44b8-b1bd-969c05b4b42a}<23.9 && {2c70cf4a-51af-44b8-b1bd-969c05b4b42a}>1.7, !- Program Line 10 - SET {7efb69e4-9cab-42ce-a544-0efcb4578ad2} = 29.4, !- Program Line 11 - SET {8b72a289-9255-4c0e-95ed-3f045aea959d} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f62496fb-a506-4166-8ccb-7788e3ffdac4}<23.9 && {f62496fb-a506-4166-8ccb-7788e3ffdac4}>1.7, !- Program Line 1 + SET {a3fd8732-3a59-4ee9-b36e-1ec3d9e925b8} = 29.4, !- Program Line 2 + SET {675d842d-c54c-4598-b09d-c54ca4b41d70} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f62496fb-a506-4166-8ccb-7788e3ffdac4}<23.9 && {f62496fb-a506-4166-8ccb-7788e3ffdac4}>1.7, !- Program Line 4 + SET {a3fd8732-3a59-4ee9-b36e-1ec3d9e925b8} = 29.4, !- Program Line 5 + SET {675d842d-c54c-4598-b09d-c54ca4b41d70} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f62496fb-a506-4166-8ccb-7788e3ffdac4}<23.9 && {f62496fb-a506-4166-8ccb-7788e3ffdac4}>1.7, !- Program Line 7 + SET {a3fd8732-3a59-4ee9-b36e-1ec3d9e925b8} = 29.4, !- Program Line 8 + SET {675d842d-c54c-4598-b09d-c54ca4b41d70} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f62496fb-a506-4166-8ccb-7788e3ffdac4}<23.9 && {f62496fb-a506-4166-8ccb-7788e3ffdac4}>1.7, !- Program Line 10 + SET {a3fd8732-3a59-4ee9-b36e-1ec3d9e925b8} = 29.4, !- Program Line 11 + SET {675d842d-c54c-4598-b09d-c54ca4b41d70} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7efb69e4-9cab-42ce-a544-0efcb4578ad2} = NULL, !- Program Line 14 - SET {8b72a289-9255-4c0e-95ed-3f045aea959d} = NULL, !- Program Line 15 + SET {a3fd8732-3a59-4ee9-b36e-1ec3d9e925b8} = NULL, !- Program Line 14 + SET {675d842d-c54c-4598-b09d-c54ca4b41d70} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8ef7f4e9-ae31-4fc9-9ce4-ac842c9ab4d5}<23.9 && {8ef7f4e9-ae31-4fc9-9ce4-ac842c9ab4d5}>1.7, !- Program Line 1 - SET {abe35d5d-545a-43b9-b634-7037dcf5d874} = 29.4, !- Program Line 2 - SET {162e3bb3-372e-4b70-9e28-484d128435c3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8ef7f4e9-ae31-4fc9-9ce4-ac842c9ab4d5}<23.9 && {8ef7f4e9-ae31-4fc9-9ce4-ac842c9ab4d5}>1.7, !- Program Line 4 - SET {abe35d5d-545a-43b9-b634-7037dcf5d874} = 29.4, !- Program Line 5 - SET {162e3bb3-372e-4b70-9e28-484d128435c3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8ef7f4e9-ae31-4fc9-9ce4-ac842c9ab4d5}<23.9 && {8ef7f4e9-ae31-4fc9-9ce4-ac842c9ab4d5}>1.7, !- Program Line 7 - SET {abe35d5d-545a-43b9-b634-7037dcf5d874} = 29.4, !- Program Line 8 - SET {162e3bb3-372e-4b70-9e28-484d128435c3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8ef7f4e9-ae31-4fc9-9ce4-ac842c9ab4d5}<23.9 && {8ef7f4e9-ae31-4fc9-9ce4-ac842c9ab4d5}>1.7, !- Program Line 10 - SET {abe35d5d-545a-43b9-b634-7037dcf5d874} = 29.4, !- Program Line 11 - SET {162e3bb3-372e-4b70-9e28-484d128435c3} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1c79f0c8-9533-49da-854b-157afb0b0e1d}<23.9 && {1c79f0c8-9533-49da-854b-157afb0b0e1d}>1.7, !- Program Line 1 + SET {5848c0df-1537-4a04-a004-b8279b2dbea7} = 29.4, !- Program Line 2 + SET {1a65354b-c2fc-4f46-aa10-5dd7ec609c83} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1c79f0c8-9533-49da-854b-157afb0b0e1d}<23.9 && {1c79f0c8-9533-49da-854b-157afb0b0e1d}>1.7, !- Program Line 4 + SET {5848c0df-1537-4a04-a004-b8279b2dbea7} = 29.4, !- Program Line 5 + SET {1a65354b-c2fc-4f46-aa10-5dd7ec609c83} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1c79f0c8-9533-49da-854b-157afb0b0e1d}<23.9 && {1c79f0c8-9533-49da-854b-157afb0b0e1d}>1.7, !- Program Line 7 + SET {5848c0df-1537-4a04-a004-b8279b2dbea7} = 29.4, !- Program Line 8 + SET {1a65354b-c2fc-4f46-aa10-5dd7ec609c83} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1c79f0c8-9533-49da-854b-157afb0b0e1d}<23.9 && {1c79f0c8-9533-49da-854b-157afb0b0e1d}>1.7, !- Program Line 10 + SET {5848c0df-1537-4a04-a004-b8279b2dbea7} = 29.4, !- Program Line 11 + SET {1a65354b-c2fc-4f46-aa10-5dd7ec609c83} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {abe35d5d-545a-43b9-b634-7037dcf5d874} = NULL, !- Program Line 14 - SET {162e3bb3-372e-4b70-9e28-484d128435c3} = NULL, !- Program Line 15 + SET {5848c0df-1537-4a04-a004-b8279b2dbea7} = NULL, !- Program Line 14 + SET {1a65354b-c2fc-4f46-aa10-5dd7ec609c83} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 @@ -3775,127 +3775,127 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000052}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000042}, !- Inlet Port {00000000-0000-0000-0018-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000038}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000039}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000032}, !- Inlet Port {00000000-0000-0000-0018-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000056}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000040}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000077}, !- Inlet Port {00000000-0000-0000-0018-000000000079}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000080}, !- Inlet Port {00000000-0000-0000-0018-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000085}, !- Inlet Port {00000000-0000-0000-0018-000000000086}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000081}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000061}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000082}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000062}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000075}, !- Inlet Port {00000000-0000-0000-0018-000000000084}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000063}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000083}, !- Inlet Port {00000000-0000-0000-0018-000000000076}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000064}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000055}, !- Inlet Port {00000000-0000-0000-0018-000000000057}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000065}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000058}, !- Inlet Port {00000000-0000-0000-0018-000000000056}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000066}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000063}, !- Inlet Port {00000000-0000-0000-0018-000000000064}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000067}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000059}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000068}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000060}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000069}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000062}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000070}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000061}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port @@ -4943,7 +4943,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4958,7 +4958,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4967,7 +4967,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4976,7 +4976,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4991,7 +4991,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5000,7 +5000,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5009,7 +5009,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5024,7 +5024,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5033,7 +5033,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5633,7 +5633,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000049}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000050}, !- Summer Design Day Schedule Name @@ -5641,7 +5641,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000021}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000053}, !- Summer Design Day Schedule Name @@ -5649,7 +5649,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0061-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0061-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2017-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2017-Electricity-CAN_AB_Calgary.osm index 01c4df9849..67a67ce69f 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2017-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2017-Electricity-CAN_AB_Calgary.osm @@ -2166,41 +2166,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000001}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {846bea51-bfd3-46c8-a6c5-b96f66a8baa0}<23.9 && {846bea51-bfd3-46c8-a6c5-b96f66a8baa0}>1.7, !- Program Line 1 - SET {95378d59-689d-409a-94f0-3651b9510092} = 29.4, !- Program Line 2 - SET {76e3a715-2905-49ae-887f-f29344a80968} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {846bea51-bfd3-46c8-a6c5-b96f66a8baa0}<23.9 && {846bea51-bfd3-46c8-a6c5-b96f66a8baa0}>1.7, !- Program Line 4 - SET {95378d59-689d-409a-94f0-3651b9510092} = 29.4, !- Program Line 5 - SET {76e3a715-2905-49ae-887f-f29344a80968} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {846bea51-bfd3-46c8-a6c5-b96f66a8baa0}<23.9 && {846bea51-bfd3-46c8-a6c5-b96f66a8baa0}>1.7, !- Program Line 7 - SET {95378d59-689d-409a-94f0-3651b9510092} = 29.4, !- Program Line 8 - SET {76e3a715-2905-49ae-887f-f29344a80968} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {846bea51-bfd3-46c8-a6c5-b96f66a8baa0}<23.9 && {846bea51-bfd3-46c8-a6c5-b96f66a8baa0}>1.7, !- Program Line 10 - SET {95378d59-689d-409a-94f0-3651b9510092} = 29.4, !- Program Line 11 - SET {76e3a715-2905-49ae-887f-f29344a80968} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b989014c-9887-4b21-89ff-9a025896800c}<23.9 && {b989014c-9887-4b21-89ff-9a025896800c}>1.7, !- Program Line 1 + SET {e3b33847-ae48-4c45-8b78-9f181f49f48b} = 29.4, !- Program Line 2 + SET {bf01940a-2690-49bf-ba66-af578cedd711} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b989014c-9887-4b21-89ff-9a025896800c}<23.9 && {b989014c-9887-4b21-89ff-9a025896800c}>1.7, !- Program Line 4 + SET {e3b33847-ae48-4c45-8b78-9f181f49f48b} = 29.4, !- Program Line 5 + SET {bf01940a-2690-49bf-ba66-af578cedd711} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b989014c-9887-4b21-89ff-9a025896800c}<23.9 && {b989014c-9887-4b21-89ff-9a025896800c}>1.7, !- Program Line 7 + SET {e3b33847-ae48-4c45-8b78-9f181f49f48b} = 29.4, !- Program Line 8 + SET {bf01940a-2690-49bf-ba66-af578cedd711} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b989014c-9887-4b21-89ff-9a025896800c}<23.9 && {b989014c-9887-4b21-89ff-9a025896800c}>1.7, !- Program Line 10 + SET {e3b33847-ae48-4c45-8b78-9f181f49f48b} = 29.4, !- Program Line 11 + SET {bf01940a-2690-49bf-ba66-af578cedd711} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {95378d59-689d-409a-94f0-3651b9510092} = NULL, !- Program Line 14 - SET {76e3a715-2905-49ae-887f-f29344a80968} = NULL, !- Program Line 15 + SET {e3b33847-ae48-4c45-8b78-9f181f49f48b} = NULL, !- Program Line 14 + SET {bf01940a-2690-49bf-ba66-af578cedd711} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000002}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {56e08325-407f-4c49-b41e-d529de313249}<23.9 && {56e08325-407f-4c49-b41e-d529de313249}>1.7, !- Program Line 1 - SET {00a18fc8-1a1c-4e34-8cd4-97bc426b413f} = 29.4, !- Program Line 2 - SET {813890ab-9518-41ee-ba66-90e7696a31c9} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {56e08325-407f-4c49-b41e-d529de313249}<23.9 && {56e08325-407f-4c49-b41e-d529de313249}>1.7, !- Program Line 4 - SET {00a18fc8-1a1c-4e34-8cd4-97bc426b413f} = 29.4, !- Program Line 5 - SET {813890ab-9518-41ee-ba66-90e7696a31c9} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {56e08325-407f-4c49-b41e-d529de313249}<23.9 && {56e08325-407f-4c49-b41e-d529de313249}>1.7, !- Program Line 7 - SET {00a18fc8-1a1c-4e34-8cd4-97bc426b413f} = 29.4, !- Program Line 8 - SET {813890ab-9518-41ee-ba66-90e7696a31c9} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {56e08325-407f-4c49-b41e-d529de313249}<23.9 && {56e08325-407f-4c49-b41e-d529de313249}>1.7, !- Program Line 10 - SET {00a18fc8-1a1c-4e34-8cd4-97bc426b413f} = 29.4, !- Program Line 11 - SET {813890ab-9518-41ee-ba66-90e7696a31c9} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {052de5ce-27da-4dc3-81b2-6cdcf9d91bbb}<23.9 && {052de5ce-27da-4dc3-81b2-6cdcf9d91bbb}>1.7, !- Program Line 1 + SET {e867f881-837d-48ae-b5a8-68a6bc4586be} = 29.4, !- Program Line 2 + SET {7e13daed-98ae-45de-9f9f-51c6990b1a6e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {052de5ce-27da-4dc3-81b2-6cdcf9d91bbb}<23.9 && {052de5ce-27da-4dc3-81b2-6cdcf9d91bbb}>1.7, !- Program Line 4 + SET {e867f881-837d-48ae-b5a8-68a6bc4586be} = 29.4, !- Program Line 5 + SET {7e13daed-98ae-45de-9f9f-51c6990b1a6e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {052de5ce-27da-4dc3-81b2-6cdcf9d91bbb}<23.9 && {052de5ce-27da-4dc3-81b2-6cdcf9d91bbb}>1.7, !- Program Line 7 + SET {e867f881-837d-48ae-b5a8-68a6bc4586be} = 29.4, !- Program Line 8 + SET {7e13daed-98ae-45de-9f9f-51c6990b1a6e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {052de5ce-27da-4dc3-81b2-6cdcf9d91bbb}<23.9 && {052de5ce-27da-4dc3-81b2-6cdcf9d91bbb}>1.7, !- Program Line 10 + SET {e867f881-837d-48ae-b5a8-68a6bc4586be} = 29.4, !- Program Line 11 + SET {7e13daed-98ae-45de-9f9f-51c6990b1a6e} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {00a18fc8-1a1c-4e34-8cd4-97bc426b413f} = NULL, !- Program Line 14 - SET {813890ab-9518-41ee-ba66-90e7696a31c9} = NULL, !- Program Line 15 + SET {e867f881-837d-48ae-b5a8-68a6bc4586be} = NULL, !- Program Line 14 + SET {7e13daed-98ae-45de-9f9f-51c6990b1a6e} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm index e685f691b8..f94f9d5429 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2017-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000023}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2453,7 +2453,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0061-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2461,7 +2461,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0061-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2469,7 +2469,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0061-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2477,7 +2477,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0061-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2485,53 +2485,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e52c9cfb-fb51-4b48-8331-0ff8eb6e1af2}<23.9 && {e52c9cfb-fb51-4b48-8331-0ff8eb6e1af2}>1.7, !- Program Line 1 - SET {532858ce-bb0f-461b-9139-55127183a258} = 29.4, !- Program Line 2 - SET {b88ee6fa-8e58-4161-82ce-95bbf1879f71} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e52c9cfb-fb51-4b48-8331-0ff8eb6e1af2}<23.9 && {e52c9cfb-fb51-4b48-8331-0ff8eb6e1af2}>1.7, !- Program Line 4 - SET {532858ce-bb0f-461b-9139-55127183a258} = 29.4, !- Program Line 5 - SET {b88ee6fa-8e58-4161-82ce-95bbf1879f71} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e52c9cfb-fb51-4b48-8331-0ff8eb6e1af2}<23.9 && {e52c9cfb-fb51-4b48-8331-0ff8eb6e1af2}>1.7, !- Program Line 7 - SET {532858ce-bb0f-461b-9139-55127183a258} = 29.4, !- Program Line 8 - SET {b88ee6fa-8e58-4161-82ce-95bbf1879f71} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e52c9cfb-fb51-4b48-8331-0ff8eb6e1af2}<23.9 && {e52c9cfb-fb51-4b48-8331-0ff8eb6e1af2}>1.7, !- Program Line 10 - SET {532858ce-bb0f-461b-9139-55127183a258} = 29.4, !- Program Line 11 - SET {b88ee6fa-8e58-4161-82ce-95bbf1879f71} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {27577b58-6fac-4ca0-88c9-080fae35a2b6}<23.9 && {27577b58-6fac-4ca0-88c9-080fae35a2b6}>1.7, !- Program Line 1 + SET {473e66ae-f5a4-460f-af67-3424d389eb5a} = 29.4, !- Program Line 2 + SET {35970e8a-9a48-4d43-a21b-b33c02e4b1aa} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {27577b58-6fac-4ca0-88c9-080fae35a2b6}<23.9 && {27577b58-6fac-4ca0-88c9-080fae35a2b6}>1.7, !- Program Line 4 + SET {473e66ae-f5a4-460f-af67-3424d389eb5a} = 29.4, !- Program Line 5 + SET {35970e8a-9a48-4d43-a21b-b33c02e4b1aa} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {27577b58-6fac-4ca0-88c9-080fae35a2b6}<23.9 && {27577b58-6fac-4ca0-88c9-080fae35a2b6}>1.7, !- Program Line 7 + SET {473e66ae-f5a4-460f-af67-3424d389eb5a} = 29.4, !- Program Line 8 + SET {35970e8a-9a48-4d43-a21b-b33c02e4b1aa} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {27577b58-6fac-4ca0-88c9-080fae35a2b6}<23.9 && {27577b58-6fac-4ca0-88c9-080fae35a2b6}>1.7, !- Program Line 10 + SET {473e66ae-f5a4-460f-af67-3424d389eb5a} = 29.4, !- Program Line 11 + SET {35970e8a-9a48-4d43-a21b-b33c02e4b1aa} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {532858ce-bb0f-461b-9139-55127183a258} = NULL, !- Program Line 14 - SET {b88ee6fa-8e58-4161-82ce-95bbf1879f71} = NULL, !- Program Line 15 + SET {473e66ae-f5a4-460f-af67-3424d389eb5a} = NULL, !- Program Line 14 + SET {35970e8a-9a48-4d43-a21b-b33c02e4b1aa} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {924fc7b2-f713-4337-9837-86600097c500}<23.9 && {924fc7b2-f713-4337-9837-86600097c500}>1.7, !- Program Line 1 - SET {659f4fbe-c421-48a3-86a2-f2616bed691b} = 29.4, !- Program Line 2 - SET {e3347c8a-4f35-48fb-8b9f-27039c3102b5} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {924fc7b2-f713-4337-9837-86600097c500}<23.9 && {924fc7b2-f713-4337-9837-86600097c500}>1.7, !- Program Line 4 - SET {659f4fbe-c421-48a3-86a2-f2616bed691b} = 29.4, !- Program Line 5 - SET {e3347c8a-4f35-48fb-8b9f-27039c3102b5} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {924fc7b2-f713-4337-9837-86600097c500}<23.9 && {924fc7b2-f713-4337-9837-86600097c500}>1.7, !- Program Line 7 - SET {659f4fbe-c421-48a3-86a2-f2616bed691b} = 29.4, !- Program Line 8 - SET {e3347c8a-4f35-48fb-8b9f-27039c3102b5} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {924fc7b2-f713-4337-9837-86600097c500}<23.9 && {924fc7b2-f713-4337-9837-86600097c500}>1.7, !- Program Line 10 - SET {659f4fbe-c421-48a3-86a2-f2616bed691b} = 29.4, !- Program Line 11 - SET {e3347c8a-4f35-48fb-8b9f-27039c3102b5} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {359225db-7704-42af-bff0-7542dca2ad46}<23.9 && {359225db-7704-42af-bff0-7542dca2ad46}>1.7, !- Program Line 1 + SET {7ccad5cd-614f-42d7-8384-99b1bd2afd71} = 29.4, !- Program Line 2 + SET {81f7b9fc-3987-4866-848d-21d97bed1535} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {359225db-7704-42af-bff0-7542dca2ad46}<23.9 && {359225db-7704-42af-bff0-7542dca2ad46}>1.7, !- Program Line 4 + SET {7ccad5cd-614f-42d7-8384-99b1bd2afd71} = 29.4, !- Program Line 5 + SET {81f7b9fc-3987-4866-848d-21d97bed1535} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {359225db-7704-42af-bff0-7542dca2ad46}<23.9 && {359225db-7704-42af-bff0-7542dca2ad46}>1.7, !- Program Line 7 + SET {7ccad5cd-614f-42d7-8384-99b1bd2afd71} = 29.4, !- Program Line 8 + SET {81f7b9fc-3987-4866-848d-21d97bed1535} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {359225db-7704-42af-bff0-7542dca2ad46}<23.9 && {359225db-7704-42af-bff0-7542dca2ad46}>1.7, !- Program Line 10 + SET {7ccad5cd-614f-42d7-8384-99b1bd2afd71} = 29.4, !- Program Line 11 + SET {81f7b9fc-3987-4866-848d-21d97bed1535} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {659f4fbe-c421-48a3-86a2-f2616bed691b} = NULL, !- Program Line 14 - SET {e3347c8a-4f35-48fb-8b9f-27039c3102b5} = NULL, !- Program Line 15 + SET {7ccad5cd-614f-42d7-8384-99b1bd2afd71} = NULL, !- Program Line 14 + SET {81f7b9fc-3987-4866-848d-21d97bed1535} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 @@ -2632,7 +2632,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2658,7 +2658,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2684,7 +2684,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3402,163 +3402,163 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000015}, !- Inlet Port {00000000-0000-0000-0016-000000000016}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000098}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000007}, !- Inlet Port {00000000-0000-0000-0016-000000000014}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000013}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000094}, !- Inlet Port {00000000-0000-0000-0016-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000096}, !- Inlet Port {00000000-0000-0000-0016-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000041}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000041}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000042}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000042}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000043}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port {00000000-0000-0000-0016-000000000048}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000044}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000105}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000045}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000110}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000046}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000039}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000047}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000048}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000049}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000050}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000031}, !- Inlet Port {00000000-0000-0000-0016-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000051}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000052}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000104}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000053}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000023}, !- Inlet Port {00000000-0000-0000-0016-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000054}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000029}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000106}, !- Inlet Port {00000000-0000-0000-0016-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000108}, !- Inlet Port {00000000-0000-0000-0016-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000102}, !- Inlet Port {00000000-0000-0000-0016-000000000103}; !- Outlet Port @@ -4609,7 +4609,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4624,7 +4624,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4633,7 +4633,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4642,7 +4642,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4657,7 +4657,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4666,7 +4666,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4675,7 +4675,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4690,7 +4690,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4699,7 +4699,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000061}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5362,7 +5362,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000053}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000054}, !- Summer Design Day Schedule Name @@ -5370,7 +5370,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000056}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000057}, !- Summer Design Day Schedule Name @@ -5378,7 +5378,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000023}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000059}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000060}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 4d205a573c..b13083708b 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2017-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000023}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2475,7 +2475,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0061-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2483,7 +2483,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0061-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2491,7 +2491,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0061-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2499,7 +2499,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0061-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2507,53 +2507,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {72a6beb9-b332-4e13-a130-41a501771c5c}<23.9 && {72a6beb9-b332-4e13-a130-41a501771c5c}>1.7, !- Program Line 1 - SET {c9414218-284d-4e6e-bd4d-e71bda811ea0} = 29.4, !- Program Line 2 - SET {f99686c9-3645-4764-aa2a-c00b871fad29} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {72a6beb9-b332-4e13-a130-41a501771c5c}<23.9 && {72a6beb9-b332-4e13-a130-41a501771c5c}>1.7, !- Program Line 4 - SET {c9414218-284d-4e6e-bd4d-e71bda811ea0} = 29.4, !- Program Line 5 - SET {f99686c9-3645-4764-aa2a-c00b871fad29} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {72a6beb9-b332-4e13-a130-41a501771c5c}<23.9 && {72a6beb9-b332-4e13-a130-41a501771c5c}>1.7, !- Program Line 7 - SET {c9414218-284d-4e6e-bd4d-e71bda811ea0} = 29.4, !- Program Line 8 - SET {f99686c9-3645-4764-aa2a-c00b871fad29} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {72a6beb9-b332-4e13-a130-41a501771c5c}<23.9 && {72a6beb9-b332-4e13-a130-41a501771c5c}>1.7, !- Program Line 10 - SET {c9414218-284d-4e6e-bd4d-e71bda811ea0} = 29.4, !- Program Line 11 - SET {f99686c9-3645-4764-aa2a-c00b871fad29} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {aca03ad2-5eb4-4577-a7da-3be250e431b9}<23.9 && {aca03ad2-5eb4-4577-a7da-3be250e431b9}>1.7, !- Program Line 1 + SET {8b556b4c-454f-4080-8933-4bcb8f6fd7e3} = 29.4, !- Program Line 2 + SET {a4acd428-4929-488a-8a69-9c054ddd145c} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {aca03ad2-5eb4-4577-a7da-3be250e431b9}<23.9 && {aca03ad2-5eb4-4577-a7da-3be250e431b9}>1.7, !- Program Line 4 + SET {8b556b4c-454f-4080-8933-4bcb8f6fd7e3} = 29.4, !- Program Line 5 + SET {a4acd428-4929-488a-8a69-9c054ddd145c} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {aca03ad2-5eb4-4577-a7da-3be250e431b9}<23.9 && {aca03ad2-5eb4-4577-a7da-3be250e431b9}>1.7, !- Program Line 7 + SET {8b556b4c-454f-4080-8933-4bcb8f6fd7e3} = 29.4, !- Program Line 8 + SET {a4acd428-4929-488a-8a69-9c054ddd145c} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {aca03ad2-5eb4-4577-a7da-3be250e431b9}<23.9 && {aca03ad2-5eb4-4577-a7da-3be250e431b9}>1.7, !- Program Line 10 + SET {8b556b4c-454f-4080-8933-4bcb8f6fd7e3} = 29.4, !- Program Line 11 + SET {a4acd428-4929-488a-8a69-9c054ddd145c} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {c9414218-284d-4e6e-bd4d-e71bda811ea0} = NULL, !- Program Line 14 - SET {f99686c9-3645-4764-aa2a-c00b871fad29} = NULL, !- Program Line 15 + SET {8b556b4c-454f-4080-8933-4bcb8f6fd7e3} = NULL, !- Program Line 14 + SET {a4acd428-4929-488a-8a69-9c054ddd145c} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {06b4517c-c274-4aa9-9afc-cda724be3a39}<23.9 && {06b4517c-c274-4aa9-9afc-cda724be3a39}>1.7, !- Program Line 1 - SET {ecdb96da-b1a7-4602-8c5f-79b0b3d7fa1e} = 29.4, !- Program Line 2 - SET {34ce95d2-1b35-459a-963f-b01ebaa82abf} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {06b4517c-c274-4aa9-9afc-cda724be3a39}<23.9 && {06b4517c-c274-4aa9-9afc-cda724be3a39}>1.7, !- Program Line 4 - SET {ecdb96da-b1a7-4602-8c5f-79b0b3d7fa1e} = 29.4, !- Program Line 5 - SET {34ce95d2-1b35-459a-963f-b01ebaa82abf} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {06b4517c-c274-4aa9-9afc-cda724be3a39}<23.9 && {06b4517c-c274-4aa9-9afc-cda724be3a39}>1.7, !- Program Line 7 - SET {ecdb96da-b1a7-4602-8c5f-79b0b3d7fa1e} = 29.4, !- Program Line 8 - SET {34ce95d2-1b35-459a-963f-b01ebaa82abf} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {06b4517c-c274-4aa9-9afc-cda724be3a39}<23.9 && {06b4517c-c274-4aa9-9afc-cda724be3a39}>1.7, !- Program Line 10 - SET {ecdb96da-b1a7-4602-8c5f-79b0b3d7fa1e} = 29.4, !- Program Line 11 - SET {34ce95d2-1b35-459a-963f-b01ebaa82abf} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e3e58d13-89a4-4f3b-ab62-4baaa2603d8e}<23.9 && {e3e58d13-89a4-4f3b-ab62-4baaa2603d8e}>1.7, !- Program Line 1 + SET {32a95453-9db2-4480-b233-bec0af893ba9} = 29.4, !- Program Line 2 + SET {9a8b36d6-ec5a-467b-a749-0c28a038cede} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e3e58d13-89a4-4f3b-ab62-4baaa2603d8e}<23.9 && {e3e58d13-89a4-4f3b-ab62-4baaa2603d8e}>1.7, !- Program Line 4 + SET {32a95453-9db2-4480-b233-bec0af893ba9} = 29.4, !- Program Line 5 + SET {9a8b36d6-ec5a-467b-a749-0c28a038cede} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e3e58d13-89a4-4f3b-ab62-4baaa2603d8e}<23.9 && {e3e58d13-89a4-4f3b-ab62-4baaa2603d8e}>1.7, !- Program Line 7 + SET {32a95453-9db2-4480-b233-bec0af893ba9} = 29.4, !- Program Line 8 + SET {9a8b36d6-ec5a-467b-a749-0c28a038cede} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e3e58d13-89a4-4f3b-ab62-4baaa2603d8e}<23.9 && {e3e58d13-89a4-4f3b-ab62-4baaa2603d8e}>1.7, !- Program Line 10 + SET {32a95453-9db2-4480-b233-bec0af893ba9} = 29.4, !- Program Line 11 + SET {9a8b36d6-ec5a-467b-a749-0c28a038cede} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ecdb96da-b1a7-4602-8c5f-79b0b3d7fa1e} = NULL, !- Program Line 14 - SET {34ce95d2-1b35-459a-963f-b01ebaa82abf} = NULL, !- Program Line 15 + SET {32a95453-9db2-4480-b233-bec0af893ba9} = NULL, !- Program Line 14 + SET {9a8b36d6-ec5a-467b-a749-0c28a038cede} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 @@ -2654,7 +2654,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2680,7 +2680,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2706,7 +2706,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3424,163 +3424,163 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000015}, !- Inlet Port {00000000-0000-0000-0016-000000000016}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000098}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000007}, !- Inlet Port {00000000-0000-0000-0016-000000000014}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000013}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000094}, !- Inlet Port {00000000-0000-0000-0016-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000096}, !- Inlet Port {00000000-0000-0000-0016-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000041}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000041}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000042}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000042}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000043}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port {00000000-0000-0000-0016-000000000048}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000044}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000105}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000045}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000110}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000046}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000039}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000047}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000048}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000049}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000050}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000031}, !- Inlet Port {00000000-0000-0000-0016-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000051}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000052}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000104}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000053}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000023}, !- Inlet Port {00000000-0000-0000-0016-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000054}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000029}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000106}, !- Inlet Port {00000000-0000-0000-0016-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000108}, !- Inlet Port {00000000-0000-0000-0016-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000102}, !- Inlet Port {00000000-0000-0000-0016-000000000103}; !- Outlet Port @@ -4631,7 +4631,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4646,7 +4646,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4655,7 +4655,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4664,7 +4664,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4679,7 +4679,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4688,7 +4688,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4697,7 +4697,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4712,7 +4712,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4721,7 +4721,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000061}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5384,7 +5384,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000053}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000054}, !- Summer Design Day Schedule Name @@ -5392,7 +5392,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000056}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000057}, !- Summer Design Day Schedule Name @@ -5400,7 +5400,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000023}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000059}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000060}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGas-CAN_AB_Calgary.osm index 52eb109dd5..a62e5c56a0 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGas-CAN_AB_Calgary.osm @@ -2577,41 +2577,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000001}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3b8b7ba2-9fd9-4079-a0a0-553b7dab34cb}<23.9 && {3b8b7ba2-9fd9-4079-a0a0-553b7dab34cb}>1.7, !- Program Line 1 - SET {7dfed31d-db11-4350-9b7f-7d89a6d4bac8} = 29.4, !- Program Line 2 - SET {a0f940a3-978e-4161-a045-1b3cd6a9647b} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3b8b7ba2-9fd9-4079-a0a0-553b7dab34cb}<23.9 && {3b8b7ba2-9fd9-4079-a0a0-553b7dab34cb}>1.7, !- Program Line 4 - SET {7dfed31d-db11-4350-9b7f-7d89a6d4bac8} = 29.4, !- Program Line 5 - SET {a0f940a3-978e-4161-a045-1b3cd6a9647b} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3b8b7ba2-9fd9-4079-a0a0-553b7dab34cb}<23.9 && {3b8b7ba2-9fd9-4079-a0a0-553b7dab34cb}>1.7, !- Program Line 7 - SET {7dfed31d-db11-4350-9b7f-7d89a6d4bac8} = 29.4, !- Program Line 8 - SET {a0f940a3-978e-4161-a045-1b3cd6a9647b} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3b8b7ba2-9fd9-4079-a0a0-553b7dab34cb}<23.9 && {3b8b7ba2-9fd9-4079-a0a0-553b7dab34cb}>1.7, !- Program Line 10 - SET {7dfed31d-db11-4350-9b7f-7d89a6d4bac8} = 29.4, !- Program Line 11 - SET {a0f940a3-978e-4161-a045-1b3cd6a9647b} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {322121bc-7f90-4402-9210-eb4941475e99}<23.9 && {322121bc-7f90-4402-9210-eb4941475e99}>1.7, !- Program Line 1 + SET {b1f46d91-cc03-4185-a9bf-2ad55b05842a} = 29.4, !- Program Line 2 + SET {1f9f9b86-ff44-493c-a8c7-0db78ee294db} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {322121bc-7f90-4402-9210-eb4941475e99}<23.9 && {322121bc-7f90-4402-9210-eb4941475e99}>1.7, !- Program Line 4 + SET {b1f46d91-cc03-4185-a9bf-2ad55b05842a} = 29.4, !- Program Line 5 + SET {1f9f9b86-ff44-493c-a8c7-0db78ee294db} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {322121bc-7f90-4402-9210-eb4941475e99}<23.9 && {322121bc-7f90-4402-9210-eb4941475e99}>1.7, !- Program Line 7 + SET {b1f46d91-cc03-4185-a9bf-2ad55b05842a} = 29.4, !- Program Line 8 + SET {1f9f9b86-ff44-493c-a8c7-0db78ee294db} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {322121bc-7f90-4402-9210-eb4941475e99}<23.9 && {322121bc-7f90-4402-9210-eb4941475e99}>1.7, !- Program Line 10 + SET {b1f46d91-cc03-4185-a9bf-2ad55b05842a} = 29.4, !- Program Line 11 + SET {1f9f9b86-ff44-493c-a8c7-0db78ee294db} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {7dfed31d-db11-4350-9b7f-7d89a6d4bac8} = NULL, !- Program Line 14 - SET {a0f940a3-978e-4161-a045-1b3cd6a9647b} = NULL, !- Program Line 15 + SET {b1f46d91-cc03-4185-a9bf-2ad55b05842a} = NULL, !- Program Line 14 + SET {1f9f9b86-ff44-493c-a8c7-0db78ee294db} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000002}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {28a4ee22-2189-4811-a92e-55f98bc45f6d}<23.9 && {28a4ee22-2189-4811-a92e-55f98bc45f6d}>1.7, !- Program Line 1 - SET {f4454ce2-e8e2-483f-83f8-81e96547fc3d} = 29.4, !- Program Line 2 - SET {66819d62-c044-4c5a-a970-9ae630edc3e4} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {28a4ee22-2189-4811-a92e-55f98bc45f6d}<23.9 && {28a4ee22-2189-4811-a92e-55f98bc45f6d}>1.7, !- Program Line 4 - SET {f4454ce2-e8e2-483f-83f8-81e96547fc3d} = 29.4, !- Program Line 5 - SET {66819d62-c044-4c5a-a970-9ae630edc3e4} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {28a4ee22-2189-4811-a92e-55f98bc45f6d}<23.9 && {28a4ee22-2189-4811-a92e-55f98bc45f6d}>1.7, !- Program Line 7 - SET {f4454ce2-e8e2-483f-83f8-81e96547fc3d} = 29.4, !- Program Line 8 - SET {66819d62-c044-4c5a-a970-9ae630edc3e4} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {28a4ee22-2189-4811-a92e-55f98bc45f6d}<23.9 && {28a4ee22-2189-4811-a92e-55f98bc45f6d}>1.7, !- Program Line 10 - SET {f4454ce2-e8e2-483f-83f8-81e96547fc3d} = 29.4, !- Program Line 11 - SET {66819d62-c044-4c5a-a970-9ae630edc3e4} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c68e94a9-7047-42a2-9f28-cfbabe4756fb}<23.9 && {c68e94a9-7047-42a2-9f28-cfbabe4756fb}>1.7, !- Program Line 1 + SET {1419bbac-05a0-407c-8bcf-1e3d4ee42329} = 29.4, !- Program Line 2 + SET {5a4adac2-7fc8-49f0-8b5b-a41a30eb8d97} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c68e94a9-7047-42a2-9f28-cfbabe4756fb}<23.9 && {c68e94a9-7047-42a2-9f28-cfbabe4756fb}>1.7, !- Program Line 4 + SET {1419bbac-05a0-407c-8bcf-1e3d4ee42329} = 29.4, !- Program Line 5 + SET {5a4adac2-7fc8-49f0-8b5b-a41a30eb8d97} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c68e94a9-7047-42a2-9f28-cfbabe4756fb}<23.9 && {c68e94a9-7047-42a2-9f28-cfbabe4756fb}>1.7, !- Program Line 7 + SET {1419bbac-05a0-407c-8bcf-1e3d4ee42329} = 29.4, !- Program Line 8 + SET {5a4adac2-7fc8-49f0-8b5b-a41a30eb8d97} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c68e94a9-7047-42a2-9f28-cfbabe4756fb}<23.9 && {c68e94a9-7047-42a2-9f28-cfbabe4756fb}>1.7, !- Program Line 10 + SET {1419bbac-05a0-407c-8bcf-1e3d4ee42329} = 29.4, !- Program Line 11 + SET {5a4adac2-7fc8-49f0-8b5b-a41a30eb8d97} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {f4454ce2-e8e2-483f-83f8-81e96547fc3d} = NULL, !- Program Line 14 - SET {66819d62-c044-4c5a-a970-9ae630edc3e4} = NULL, !- Program Line 15 + SET {1419bbac-05a0-407c-8bcf-1e3d4ee42329} = NULL, !- Program Line 14 + SET {5a4adac2-7fc8-49f0-8b5b-a41a30eb8d97} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 0a39bf8192..a804023893 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000023}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2842,7 +2842,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0064-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2850,7 +2850,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2858,7 +2858,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2866,7 +2866,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2874,53 +2874,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {833cf356-9de5-4839-afed-546d826239b6}<23.9 && {833cf356-9de5-4839-afed-546d826239b6}>1.7, !- Program Line 1 - SET {b6ae816f-2cd6-4dc9-908b-604716c3b348} = 29.4, !- Program Line 2 - SET {9766e2b9-0795-4773-913b-c52706d2de1c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {833cf356-9de5-4839-afed-546d826239b6}<23.9 && {833cf356-9de5-4839-afed-546d826239b6}>1.7, !- Program Line 4 - SET {b6ae816f-2cd6-4dc9-908b-604716c3b348} = 29.4, !- Program Line 5 - SET {9766e2b9-0795-4773-913b-c52706d2de1c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {833cf356-9de5-4839-afed-546d826239b6}<23.9 && {833cf356-9de5-4839-afed-546d826239b6}>1.7, !- Program Line 7 - SET {b6ae816f-2cd6-4dc9-908b-604716c3b348} = 29.4, !- Program Line 8 - SET {9766e2b9-0795-4773-913b-c52706d2de1c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {833cf356-9de5-4839-afed-546d826239b6}<23.9 && {833cf356-9de5-4839-afed-546d826239b6}>1.7, !- Program Line 10 - SET {b6ae816f-2cd6-4dc9-908b-604716c3b348} = 29.4, !- Program Line 11 - SET {9766e2b9-0795-4773-913b-c52706d2de1c} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {be20ce3e-7cbd-49e4-ba19-f32586a1f95a}<23.9 && {be20ce3e-7cbd-49e4-ba19-f32586a1f95a}>1.7, !- Program Line 1 + SET {e1e4a903-7df2-47f2-a0ca-81292bab4356} = 29.4, !- Program Line 2 + SET {3f09b923-c91d-49cc-a285-b4b3ca4e10bd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {be20ce3e-7cbd-49e4-ba19-f32586a1f95a}<23.9 && {be20ce3e-7cbd-49e4-ba19-f32586a1f95a}>1.7, !- Program Line 4 + SET {e1e4a903-7df2-47f2-a0ca-81292bab4356} = 29.4, !- Program Line 5 + SET {3f09b923-c91d-49cc-a285-b4b3ca4e10bd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {be20ce3e-7cbd-49e4-ba19-f32586a1f95a}<23.9 && {be20ce3e-7cbd-49e4-ba19-f32586a1f95a}>1.7, !- Program Line 7 + SET {e1e4a903-7df2-47f2-a0ca-81292bab4356} = 29.4, !- Program Line 8 + SET {3f09b923-c91d-49cc-a285-b4b3ca4e10bd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {be20ce3e-7cbd-49e4-ba19-f32586a1f95a}<23.9 && {be20ce3e-7cbd-49e4-ba19-f32586a1f95a}>1.7, !- Program Line 10 + SET {e1e4a903-7df2-47f2-a0ca-81292bab4356} = 29.4, !- Program Line 11 + SET {3f09b923-c91d-49cc-a285-b4b3ca4e10bd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b6ae816f-2cd6-4dc9-908b-604716c3b348} = NULL, !- Program Line 14 - SET {9766e2b9-0795-4773-913b-c52706d2de1c} = NULL, !- Program Line 15 + SET {e1e4a903-7df2-47f2-a0ca-81292bab4356} = NULL, !- Program Line 14 + SET {3f09b923-c91d-49cc-a285-b4b3ca4e10bd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {429f68da-03ae-4910-9995-5bc375be0609}<23.9 && {429f68da-03ae-4910-9995-5bc375be0609}>1.7, !- Program Line 1 - SET {2a611a08-ebf3-4cf4-a02f-a9703a7fbf11} = 29.4, !- Program Line 2 - SET {24ef2a58-4f28-4f68-acf6-440e323c9e17} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {429f68da-03ae-4910-9995-5bc375be0609}<23.9 && {429f68da-03ae-4910-9995-5bc375be0609}>1.7, !- Program Line 4 - SET {2a611a08-ebf3-4cf4-a02f-a9703a7fbf11} = 29.4, !- Program Line 5 - SET {24ef2a58-4f28-4f68-acf6-440e323c9e17} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {429f68da-03ae-4910-9995-5bc375be0609}<23.9 && {429f68da-03ae-4910-9995-5bc375be0609}>1.7, !- Program Line 7 - SET {2a611a08-ebf3-4cf4-a02f-a9703a7fbf11} = 29.4, !- Program Line 8 - SET {24ef2a58-4f28-4f68-acf6-440e323c9e17} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {429f68da-03ae-4910-9995-5bc375be0609}<23.9 && {429f68da-03ae-4910-9995-5bc375be0609}>1.7, !- Program Line 10 - SET {2a611a08-ebf3-4cf4-a02f-a9703a7fbf11} = 29.4, !- Program Line 11 - SET {24ef2a58-4f28-4f68-acf6-440e323c9e17} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1ae74ac0-b31a-44ad-a26d-01372d0fb02e}<23.9 && {1ae74ac0-b31a-44ad-a26d-01372d0fb02e}>1.7, !- Program Line 1 + SET {a29b1644-a0b8-4fe5-a523-3ac4d6b63081} = 29.4, !- Program Line 2 + SET {2a0f7f2f-af39-4ce8-aca7-2568bd1793af} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1ae74ac0-b31a-44ad-a26d-01372d0fb02e}<23.9 && {1ae74ac0-b31a-44ad-a26d-01372d0fb02e}>1.7, !- Program Line 4 + SET {a29b1644-a0b8-4fe5-a523-3ac4d6b63081} = 29.4, !- Program Line 5 + SET {2a0f7f2f-af39-4ce8-aca7-2568bd1793af} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1ae74ac0-b31a-44ad-a26d-01372d0fb02e}<23.9 && {1ae74ac0-b31a-44ad-a26d-01372d0fb02e}>1.7, !- Program Line 7 + SET {a29b1644-a0b8-4fe5-a523-3ac4d6b63081} = 29.4, !- Program Line 8 + SET {2a0f7f2f-af39-4ce8-aca7-2568bd1793af} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1ae74ac0-b31a-44ad-a26d-01372d0fb02e}<23.9 && {1ae74ac0-b31a-44ad-a26d-01372d0fb02e}>1.7, !- Program Line 10 + SET {a29b1644-a0b8-4fe5-a523-3ac4d6b63081} = 29.4, !- Program Line 11 + SET {2a0f7f2f-af39-4ce8-aca7-2568bd1793af} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {2a611a08-ebf3-4cf4-a02f-a9703a7fbf11} = NULL, !- Program Line 14 - SET {24ef2a58-4f28-4f68-acf6-440e323c9e17} = NULL, !- Program Line 15 + SET {a29b1644-a0b8-4fe5-a523-3ac4d6b63081} = NULL, !- Program Line 14 + SET {2a0f7f2f-af39-4ce8-aca7-2568bd1793af} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 @@ -3021,7 +3021,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3047,7 +3047,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3073,7 +3073,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3899,163 +3899,163 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000040}, !- Inlet Port {00000000-0000-0000-0018-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000134}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000032}, !- Inlet Port {00000000-0000-0000-0018-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000038}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000130}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000059}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000073}, !- Inlet Port {00000000-0000-0000-0018-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000060}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000076}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000061}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000079}, !- Inlet Port {00000000-0000-0000-0018-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000062}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000141}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000063}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000146}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000064}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000071}, !- Inlet Port {00000000-0000-0000-0018-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000065}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000077}, !- Inlet Port {00000000-0000-0000-0018-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000066}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000067}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000068}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000059}, !- Inlet Port {00000000-0000-0000-0018-000000000060}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000069}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000070}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000140}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000071}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000051}, !- Inlet Port {00000000-0000-0000-0018-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000072}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000057}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000073}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000142}, !- Inlet Port {00000000-0000-0000-0018-000000000143}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000074}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000144}, !- Inlet Port {00000000-0000-0000-0018-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000075}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000136}, !- Inlet Port {00000000-0000-0000-0018-000000000137}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000076}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000138}, !- Inlet Port {00000000-0000-0000-0018-000000000139}; !- Outlet Port @@ -5187,7 +5187,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5202,7 +5202,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5211,7 +5211,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5220,7 +5220,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5235,7 +5235,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5244,7 +5244,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5253,7 +5253,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5268,7 +5268,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5277,7 +5277,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000061}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5940,7 +5940,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000053}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000054}, !- Summer Design Day Schedule Name @@ -5948,7 +5948,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000056}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000057}, !- Summer Design Day Schedule Name @@ -5956,7 +5956,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000023}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000059}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000060}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index 9dc9f4a89a..c545018ca9 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2017-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000023}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2864,7 +2864,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0064-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2872,7 +2872,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2880,7 +2880,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2888,7 +2888,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2896,53 +2896,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d4cc3627-5587-46d4-a865-e3b599e59b60}<23.9 && {d4cc3627-5587-46d4-a865-e3b599e59b60}>1.7, !- Program Line 1 - SET {95e9a891-ded5-49b8-82b5-3234a7bc4e8b} = 29.4, !- Program Line 2 - SET {23810f87-3471-4462-a67f-b5651b846f46} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d4cc3627-5587-46d4-a865-e3b599e59b60}<23.9 && {d4cc3627-5587-46d4-a865-e3b599e59b60}>1.7, !- Program Line 4 - SET {95e9a891-ded5-49b8-82b5-3234a7bc4e8b} = 29.4, !- Program Line 5 - SET {23810f87-3471-4462-a67f-b5651b846f46} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d4cc3627-5587-46d4-a865-e3b599e59b60}<23.9 && {d4cc3627-5587-46d4-a865-e3b599e59b60}>1.7, !- Program Line 7 - SET {95e9a891-ded5-49b8-82b5-3234a7bc4e8b} = 29.4, !- Program Line 8 - SET {23810f87-3471-4462-a67f-b5651b846f46} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d4cc3627-5587-46d4-a865-e3b599e59b60}<23.9 && {d4cc3627-5587-46d4-a865-e3b599e59b60}>1.7, !- Program Line 10 - SET {95e9a891-ded5-49b8-82b5-3234a7bc4e8b} = 29.4, !- Program Line 11 - SET {23810f87-3471-4462-a67f-b5651b846f46} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {938af2e0-616e-42b0-a3db-f57670be2ad6}<23.9 && {938af2e0-616e-42b0-a3db-f57670be2ad6}>1.7, !- Program Line 1 + SET {3f1ea277-29f0-49d6-aabb-dd8e0cb60eac} = 29.4, !- Program Line 2 + SET {5d17f3ea-c272-4ee4-996e-2fda85042aef} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {938af2e0-616e-42b0-a3db-f57670be2ad6}<23.9 && {938af2e0-616e-42b0-a3db-f57670be2ad6}>1.7, !- Program Line 4 + SET {3f1ea277-29f0-49d6-aabb-dd8e0cb60eac} = 29.4, !- Program Line 5 + SET {5d17f3ea-c272-4ee4-996e-2fda85042aef} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {938af2e0-616e-42b0-a3db-f57670be2ad6}<23.9 && {938af2e0-616e-42b0-a3db-f57670be2ad6}>1.7, !- Program Line 7 + SET {3f1ea277-29f0-49d6-aabb-dd8e0cb60eac} = 29.4, !- Program Line 8 + SET {5d17f3ea-c272-4ee4-996e-2fda85042aef} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {938af2e0-616e-42b0-a3db-f57670be2ad6}<23.9 && {938af2e0-616e-42b0-a3db-f57670be2ad6}>1.7, !- Program Line 10 + SET {3f1ea277-29f0-49d6-aabb-dd8e0cb60eac} = 29.4, !- Program Line 11 + SET {5d17f3ea-c272-4ee4-996e-2fda85042aef} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {95e9a891-ded5-49b8-82b5-3234a7bc4e8b} = NULL, !- Program Line 14 - SET {23810f87-3471-4462-a67f-b5651b846f46} = NULL, !- Program Line 15 + SET {3f1ea277-29f0-49d6-aabb-dd8e0cb60eac} = NULL, !- Program Line 14 + SET {5d17f3ea-c272-4ee4-996e-2fda85042aef} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {dddfcfdf-27aa-4f14-b255-1be1b461c701}<23.9 && {dddfcfdf-27aa-4f14-b255-1be1b461c701}>1.7, !- Program Line 1 - SET {d9d6291f-91ea-45fe-9ef4-1c8c01f1da81} = 29.4, !- Program Line 2 - SET {3b997a70-d597-4c1f-8627-a36a870cd12d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {dddfcfdf-27aa-4f14-b255-1be1b461c701}<23.9 && {dddfcfdf-27aa-4f14-b255-1be1b461c701}>1.7, !- Program Line 4 - SET {d9d6291f-91ea-45fe-9ef4-1c8c01f1da81} = 29.4, !- Program Line 5 - SET {3b997a70-d597-4c1f-8627-a36a870cd12d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {dddfcfdf-27aa-4f14-b255-1be1b461c701}<23.9 && {dddfcfdf-27aa-4f14-b255-1be1b461c701}>1.7, !- Program Line 7 - SET {d9d6291f-91ea-45fe-9ef4-1c8c01f1da81} = 29.4, !- Program Line 8 - SET {3b997a70-d597-4c1f-8627-a36a870cd12d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {dddfcfdf-27aa-4f14-b255-1be1b461c701}<23.9 && {dddfcfdf-27aa-4f14-b255-1be1b461c701}>1.7, !- Program Line 10 - SET {d9d6291f-91ea-45fe-9ef4-1c8c01f1da81} = 29.4, !- Program Line 11 - SET {3b997a70-d597-4c1f-8627-a36a870cd12d} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c82a3441-47c0-4582-aca7-f6cb7a0d46aa}<23.9 && {c82a3441-47c0-4582-aca7-f6cb7a0d46aa}>1.7, !- Program Line 1 + SET {90af632c-6061-42a9-859f-783fec71bb38} = 29.4, !- Program Line 2 + SET {3ac3bc0b-320d-4700-b9a9-9c249f31ce9c} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c82a3441-47c0-4582-aca7-f6cb7a0d46aa}<23.9 && {c82a3441-47c0-4582-aca7-f6cb7a0d46aa}>1.7, !- Program Line 4 + SET {90af632c-6061-42a9-859f-783fec71bb38} = 29.4, !- Program Line 5 + SET {3ac3bc0b-320d-4700-b9a9-9c249f31ce9c} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c82a3441-47c0-4582-aca7-f6cb7a0d46aa}<23.9 && {c82a3441-47c0-4582-aca7-f6cb7a0d46aa}>1.7, !- Program Line 7 + SET {90af632c-6061-42a9-859f-783fec71bb38} = 29.4, !- Program Line 8 + SET {3ac3bc0b-320d-4700-b9a9-9c249f31ce9c} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c82a3441-47c0-4582-aca7-f6cb7a0d46aa}<23.9 && {c82a3441-47c0-4582-aca7-f6cb7a0d46aa}>1.7, !- Program Line 10 + SET {90af632c-6061-42a9-859f-783fec71bb38} = 29.4, !- Program Line 11 + SET {3ac3bc0b-320d-4700-b9a9-9c249f31ce9c} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {d9d6291f-91ea-45fe-9ef4-1c8c01f1da81} = NULL, !- Program Line 14 - SET {3b997a70-d597-4c1f-8627-a36a870cd12d} = NULL, !- Program Line 15 + SET {90af632c-6061-42a9-859f-783fec71bb38} = NULL, !- Program Line 14 + SET {3ac3bc0b-320d-4700-b9a9-9c249f31ce9c} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 @@ -3043,7 +3043,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3069,7 +3069,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3095,7 +3095,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3921,163 +3921,163 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000040}, !- Inlet Port {00000000-0000-0000-0018-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000134}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000032}, !- Inlet Port {00000000-0000-0000-0018-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000038}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000130}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000059}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000073}, !- Inlet Port {00000000-0000-0000-0018-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000060}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000076}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000061}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000079}, !- Inlet Port {00000000-0000-0000-0018-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000062}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000141}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000063}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000146}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000064}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000071}, !- Inlet Port {00000000-0000-0000-0018-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000065}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000077}, !- Inlet Port {00000000-0000-0000-0018-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000066}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000067}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000068}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000059}, !- Inlet Port {00000000-0000-0000-0018-000000000060}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000069}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000070}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000140}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000071}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000051}, !- Inlet Port {00000000-0000-0000-0018-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000072}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000057}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000073}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000142}, !- Inlet Port {00000000-0000-0000-0018-000000000143}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000074}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000144}, !- Inlet Port {00000000-0000-0000-0018-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000075}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000136}, !- Inlet Port {00000000-0000-0000-0018-000000000137}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000076}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000138}, !- Inlet Port {00000000-0000-0000-0018-000000000139}; !- Outlet Port @@ -5209,7 +5209,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000053}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5224,7 +5224,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000054}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5233,7 +5233,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000055}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5242,7 +5242,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5257,7 +5257,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5266,7 +5266,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5275,7 +5275,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5290,7 +5290,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5299,7 +5299,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000061}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5962,7 +5962,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000021}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000053}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000054}, !- Summer Design Day Schedule Name @@ -5970,7 +5970,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000056}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000057}, !- Summer Design Day Schedule Name @@ -5978,7 +5978,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000023}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000059}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000060}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2020-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2020-Electricity-CAN_AB_Calgary.osm index 1b7fa7f288..13294f872c 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2020-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2020-Electricity-CAN_AB_Calgary.osm @@ -2166,41 +2166,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000001}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {66fb4f2f-d573-4cf8-85ea-f5628178ef84}<23.9 && {66fb4f2f-d573-4cf8-85ea-f5628178ef84}>1.7, !- Program Line 1 - SET {3979a909-1e6d-4e4d-88bd-398581138b68} = 29.4, !- Program Line 2 - SET {df75cde6-5737-4742-b6a8-7c3526ccc862} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {66fb4f2f-d573-4cf8-85ea-f5628178ef84}<23.9 && {66fb4f2f-d573-4cf8-85ea-f5628178ef84}>1.7, !- Program Line 4 - SET {3979a909-1e6d-4e4d-88bd-398581138b68} = 29.4, !- Program Line 5 - SET {df75cde6-5737-4742-b6a8-7c3526ccc862} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {66fb4f2f-d573-4cf8-85ea-f5628178ef84}<23.9 && {66fb4f2f-d573-4cf8-85ea-f5628178ef84}>1.7, !- Program Line 7 - SET {3979a909-1e6d-4e4d-88bd-398581138b68} = 29.4, !- Program Line 8 - SET {df75cde6-5737-4742-b6a8-7c3526ccc862} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {66fb4f2f-d573-4cf8-85ea-f5628178ef84}<23.9 && {66fb4f2f-d573-4cf8-85ea-f5628178ef84}>1.7, !- Program Line 10 - SET {3979a909-1e6d-4e4d-88bd-398581138b68} = 29.4, !- Program Line 11 - SET {df75cde6-5737-4742-b6a8-7c3526ccc862} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {41689c09-e68a-45f4-88f1-e76b791d8334}<23.9 && {41689c09-e68a-45f4-88f1-e76b791d8334}>1.7, !- Program Line 1 + SET {99a06dc7-1e85-4194-b17e-04125ff907df} = 29.4, !- Program Line 2 + SET {8319d2df-d567-450b-8c39-2192807c1311} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {41689c09-e68a-45f4-88f1-e76b791d8334}<23.9 && {41689c09-e68a-45f4-88f1-e76b791d8334}>1.7, !- Program Line 4 + SET {99a06dc7-1e85-4194-b17e-04125ff907df} = 29.4, !- Program Line 5 + SET {8319d2df-d567-450b-8c39-2192807c1311} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {41689c09-e68a-45f4-88f1-e76b791d8334}<23.9 && {41689c09-e68a-45f4-88f1-e76b791d8334}>1.7, !- Program Line 7 + SET {99a06dc7-1e85-4194-b17e-04125ff907df} = 29.4, !- Program Line 8 + SET {8319d2df-d567-450b-8c39-2192807c1311} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {41689c09-e68a-45f4-88f1-e76b791d8334}<23.9 && {41689c09-e68a-45f4-88f1-e76b791d8334}>1.7, !- Program Line 10 + SET {99a06dc7-1e85-4194-b17e-04125ff907df} = 29.4, !- Program Line 11 + SET {8319d2df-d567-450b-8c39-2192807c1311} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {3979a909-1e6d-4e4d-88bd-398581138b68} = NULL, !- Program Line 14 - SET {df75cde6-5737-4742-b6a8-7c3526ccc862} = NULL, !- Program Line 15 + SET {99a06dc7-1e85-4194-b17e-04125ff907df} = NULL, !- Program Line 14 + SET {8319d2df-d567-450b-8c39-2192807c1311} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0032-000000000002}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {67bee567-d5ec-4430-beab-e05d9e5d71b2}<23.9 && {67bee567-d5ec-4430-beab-e05d9e5d71b2}>1.7, !- Program Line 1 - SET {52f71ce3-0d3d-4b5e-8f49-cb80d06555f7} = 29.4, !- Program Line 2 - SET {e70e8d61-14df-412d-a3c1-fd5ff50457e1} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {67bee567-d5ec-4430-beab-e05d9e5d71b2}<23.9 && {67bee567-d5ec-4430-beab-e05d9e5d71b2}>1.7, !- Program Line 4 - SET {52f71ce3-0d3d-4b5e-8f49-cb80d06555f7} = 29.4, !- Program Line 5 - SET {e70e8d61-14df-412d-a3c1-fd5ff50457e1} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {67bee567-d5ec-4430-beab-e05d9e5d71b2}<23.9 && {67bee567-d5ec-4430-beab-e05d9e5d71b2}>1.7, !- Program Line 7 - SET {52f71ce3-0d3d-4b5e-8f49-cb80d06555f7} = 29.4, !- Program Line 8 - SET {e70e8d61-14df-412d-a3c1-fd5ff50457e1} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {67bee567-d5ec-4430-beab-e05d9e5d71b2}<23.9 && {67bee567-d5ec-4430-beab-e05d9e5d71b2}>1.7, !- Program Line 10 - SET {52f71ce3-0d3d-4b5e-8f49-cb80d06555f7} = 29.4, !- Program Line 11 - SET {e70e8d61-14df-412d-a3c1-fd5ff50457e1} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {201edec5-9a27-4ea1-9bf2-1cb50087973d}<23.9 && {201edec5-9a27-4ea1-9bf2-1cb50087973d}>1.7, !- Program Line 1 + SET {f2c1815d-b74d-462a-9610-b6839d3498fd} = 29.4, !- Program Line 2 + SET {71c408dd-64ee-4542-bdc7-b612b81736b7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {201edec5-9a27-4ea1-9bf2-1cb50087973d}<23.9 && {201edec5-9a27-4ea1-9bf2-1cb50087973d}>1.7, !- Program Line 4 + SET {f2c1815d-b74d-462a-9610-b6839d3498fd} = 29.4, !- Program Line 5 + SET {71c408dd-64ee-4542-bdc7-b612b81736b7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {201edec5-9a27-4ea1-9bf2-1cb50087973d}<23.9 && {201edec5-9a27-4ea1-9bf2-1cb50087973d}>1.7, !- Program Line 7 + SET {f2c1815d-b74d-462a-9610-b6839d3498fd} = 29.4, !- Program Line 8 + SET {71c408dd-64ee-4542-bdc7-b612b81736b7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {201edec5-9a27-4ea1-9bf2-1cb50087973d}<23.9 && {201edec5-9a27-4ea1-9bf2-1cb50087973d}>1.7, !- Program Line 10 + SET {f2c1815d-b74d-462a-9610-b6839d3498fd} = 29.4, !- Program Line 11 + SET {71c408dd-64ee-4542-bdc7-b612b81736b7} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {52f71ce3-0d3d-4b5e-8f49-cb80d06555f7} = NULL, !- Program Line 14 - SET {e70e8d61-14df-412d-a3c1-fd5ff50457e1} = NULL, !- Program Line 15 + SET {f2c1815d-b74d-462a-9610-b6839d3498fd} = NULL, !- Program Line 14 + SET {71c408dd-64ee-4542-bdc7-b612b81736b7} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm index 15b9f68136..b252a2ee08 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2020-ElectricityHPElecBackup-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2453,7 +2453,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0061-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2461,7 +2461,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0061-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2469,7 +2469,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0061-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2477,7 +2477,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0061-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2485,53 +2485,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2d2f2563-df2d-4130-919d-5859bc21a669}<23.9 && {2d2f2563-df2d-4130-919d-5859bc21a669}>1.7, !- Program Line 1 - SET {d9c09ed0-fc8d-4d52-9649-9b17be8e22a7} = 29.4, !- Program Line 2 - SET {347bdd68-ef05-4ca1-98f7-30a4d0cb1db2} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2d2f2563-df2d-4130-919d-5859bc21a669}<23.9 && {2d2f2563-df2d-4130-919d-5859bc21a669}>1.7, !- Program Line 4 - SET {d9c09ed0-fc8d-4d52-9649-9b17be8e22a7} = 29.4, !- Program Line 5 - SET {347bdd68-ef05-4ca1-98f7-30a4d0cb1db2} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2d2f2563-df2d-4130-919d-5859bc21a669}<23.9 && {2d2f2563-df2d-4130-919d-5859bc21a669}>1.7, !- Program Line 7 - SET {d9c09ed0-fc8d-4d52-9649-9b17be8e22a7} = 29.4, !- Program Line 8 - SET {347bdd68-ef05-4ca1-98f7-30a4d0cb1db2} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2d2f2563-df2d-4130-919d-5859bc21a669}<23.9 && {2d2f2563-df2d-4130-919d-5859bc21a669}>1.7, !- Program Line 10 - SET {d9c09ed0-fc8d-4d52-9649-9b17be8e22a7} = 29.4, !- Program Line 11 - SET {347bdd68-ef05-4ca1-98f7-30a4d0cb1db2} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f02915af-55e1-43fe-ac4e-2c7edd5ba1fb}<23.9 && {f02915af-55e1-43fe-ac4e-2c7edd5ba1fb}>1.7, !- Program Line 1 + SET {12f91ea5-eb93-44c6-80bd-a3d738d67bd0} = 29.4, !- Program Line 2 + SET {93c36c6b-d88c-47a0-b331-b8dc8083e4f9} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f02915af-55e1-43fe-ac4e-2c7edd5ba1fb}<23.9 && {f02915af-55e1-43fe-ac4e-2c7edd5ba1fb}>1.7, !- Program Line 4 + SET {12f91ea5-eb93-44c6-80bd-a3d738d67bd0} = 29.4, !- Program Line 5 + SET {93c36c6b-d88c-47a0-b331-b8dc8083e4f9} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f02915af-55e1-43fe-ac4e-2c7edd5ba1fb}<23.9 && {f02915af-55e1-43fe-ac4e-2c7edd5ba1fb}>1.7, !- Program Line 7 + SET {12f91ea5-eb93-44c6-80bd-a3d738d67bd0} = 29.4, !- Program Line 8 + SET {93c36c6b-d88c-47a0-b331-b8dc8083e4f9} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f02915af-55e1-43fe-ac4e-2c7edd5ba1fb}<23.9 && {f02915af-55e1-43fe-ac4e-2c7edd5ba1fb}>1.7, !- Program Line 10 + SET {12f91ea5-eb93-44c6-80bd-a3d738d67bd0} = 29.4, !- Program Line 11 + SET {93c36c6b-d88c-47a0-b331-b8dc8083e4f9} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {d9c09ed0-fc8d-4d52-9649-9b17be8e22a7} = NULL, !- Program Line 14 - SET {347bdd68-ef05-4ca1-98f7-30a4d0cb1db2} = NULL, !- Program Line 15 + SET {12f91ea5-eb93-44c6-80bd-a3d738d67bd0} = NULL, !- Program Line 14 + SET {93c36c6b-d88c-47a0-b331-b8dc8083e4f9} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {af89a8d3-451a-4bf5-959e-003e69c4520d}<23.9 && {af89a8d3-451a-4bf5-959e-003e69c4520d}>1.7, !- Program Line 1 - SET {ff214d92-b7d0-4264-b7ac-083a0017c06b} = 29.4, !- Program Line 2 - SET {09fd38c8-75c5-422e-b98c-707d496db66e} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {af89a8d3-451a-4bf5-959e-003e69c4520d}<23.9 && {af89a8d3-451a-4bf5-959e-003e69c4520d}>1.7, !- Program Line 4 - SET {ff214d92-b7d0-4264-b7ac-083a0017c06b} = 29.4, !- Program Line 5 - SET {09fd38c8-75c5-422e-b98c-707d496db66e} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {af89a8d3-451a-4bf5-959e-003e69c4520d}<23.9 && {af89a8d3-451a-4bf5-959e-003e69c4520d}>1.7, !- Program Line 7 - SET {ff214d92-b7d0-4264-b7ac-083a0017c06b} = 29.4, !- Program Line 8 - SET {09fd38c8-75c5-422e-b98c-707d496db66e} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {af89a8d3-451a-4bf5-959e-003e69c4520d}<23.9 && {af89a8d3-451a-4bf5-959e-003e69c4520d}>1.7, !- Program Line 10 - SET {ff214d92-b7d0-4264-b7ac-083a0017c06b} = 29.4, !- Program Line 11 - SET {09fd38c8-75c5-422e-b98c-707d496db66e} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2ebc2667-aef5-46b9-9f71-f7786a354191}<23.9 && {2ebc2667-aef5-46b9-9f71-f7786a354191}>1.7, !- Program Line 1 + SET {ab1e59c6-4f18-4cd4-a77a-da4fbaf9fcba} = 29.4, !- Program Line 2 + SET {e78b1ce6-04b3-4fc8-9fc1-2b548e732823} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2ebc2667-aef5-46b9-9f71-f7786a354191}<23.9 && {2ebc2667-aef5-46b9-9f71-f7786a354191}>1.7, !- Program Line 4 + SET {ab1e59c6-4f18-4cd4-a77a-da4fbaf9fcba} = 29.4, !- Program Line 5 + SET {e78b1ce6-04b3-4fc8-9fc1-2b548e732823} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2ebc2667-aef5-46b9-9f71-f7786a354191}<23.9 && {2ebc2667-aef5-46b9-9f71-f7786a354191}>1.7, !- Program Line 7 + SET {ab1e59c6-4f18-4cd4-a77a-da4fbaf9fcba} = 29.4, !- Program Line 8 + SET {e78b1ce6-04b3-4fc8-9fc1-2b548e732823} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2ebc2667-aef5-46b9-9f71-f7786a354191}<23.9 && {2ebc2667-aef5-46b9-9f71-f7786a354191}>1.7, !- Program Line 10 + SET {ab1e59c6-4f18-4cd4-a77a-da4fbaf9fcba} = 29.4, !- Program Line 11 + SET {e78b1ce6-04b3-4fc8-9fc1-2b548e732823} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ff214d92-b7d0-4264-b7ac-083a0017c06b} = NULL, !- Program Line 14 - SET {09fd38c8-75c5-422e-b98c-707d496db66e} = NULL, !- Program Line 15 + SET {ab1e59c6-4f18-4cd4-a77a-da4fbaf9fcba} = NULL, !- Program Line 14 + SET {e78b1ce6-04b3-4fc8-9fc1-2b548e732823} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 @@ -2632,7 +2632,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2658,7 +2658,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2684,7 +2684,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3402,163 +3402,163 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000015}, !- Inlet Port {00000000-0000-0000-0016-000000000016}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000098}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000007}, !- Inlet Port {00000000-0000-0000-0016-000000000014}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000013}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000094}, !- Inlet Port {00000000-0000-0000-0016-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000096}, !- Inlet Port {00000000-0000-0000-0016-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000041}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000041}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000042}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000042}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000043}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port {00000000-0000-0000-0016-000000000048}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000044}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000105}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000045}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000110}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000046}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000039}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000047}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000048}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000049}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000050}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000031}, !- Inlet Port {00000000-0000-0000-0016-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000051}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000052}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000104}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000053}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000023}, !- Inlet Port {00000000-0000-0000-0016-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000054}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000029}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000106}, !- Inlet Port {00000000-0000-0000-0016-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000108}, !- Inlet Port {00000000-0000-0000-0016-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000102}, !- Inlet Port {00000000-0000-0000-0016-000000000103}; !- Outlet Port @@ -4525,7 +4525,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4540,7 +4540,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4549,7 +4549,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4558,7 +4558,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4573,7 +4573,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4582,7 +4582,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4591,7 +4591,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4606,7 +4606,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4615,7 +4615,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5215,7 +5215,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000049}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000050}, !- Summer Design Day Schedule Name @@ -5223,7 +5223,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000021}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000053}, !- Summer Design Day Schedule Name @@ -5231,7 +5231,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm index 8dd0231481..9ce5fb9d16 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2020-ElectricityHPGasBackupMixed-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0061-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2475,7 +2475,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0061-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2483,7 +2483,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0061-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2491,7 +2491,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0061-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2499,7 +2499,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0061-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2507,53 +2507,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c457ed1b-f588-480f-b38b-9db8d5cd085e}<23.9 && {c457ed1b-f588-480f-b38b-9db8d5cd085e}>1.7, !- Program Line 1 - SET {ea74c961-dacd-4c6e-9132-7df949b394ae} = 29.4, !- Program Line 2 - SET {2764f340-6519-4593-a845-896ee875fee3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c457ed1b-f588-480f-b38b-9db8d5cd085e}<23.9 && {c457ed1b-f588-480f-b38b-9db8d5cd085e}>1.7, !- Program Line 4 - SET {ea74c961-dacd-4c6e-9132-7df949b394ae} = 29.4, !- Program Line 5 - SET {2764f340-6519-4593-a845-896ee875fee3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c457ed1b-f588-480f-b38b-9db8d5cd085e}<23.9 && {c457ed1b-f588-480f-b38b-9db8d5cd085e}>1.7, !- Program Line 7 - SET {ea74c961-dacd-4c6e-9132-7df949b394ae} = 29.4, !- Program Line 8 - SET {2764f340-6519-4593-a845-896ee875fee3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c457ed1b-f588-480f-b38b-9db8d5cd085e}<23.9 && {c457ed1b-f588-480f-b38b-9db8d5cd085e}>1.7, !- Program Line 10 - SET {ea74c961-dacd-4c6e-9132-7df949b394ae} = 29.4, !- Program Line 11 - SET {2764f340-6519-4593-a845-896ee875fee3} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {85d9e1aa-be2e-4c6f-88ed-165aee403535}<23.9 && {85d9e1aa-be2e-4c6f-88ed-165aee403535}>1.7, !- Program Line 1 + SET {b2e9c243-8a3b-4241-b315-4695eb3b6c88} = 29.4, !- Program Line 2 + SET {7f31d476-7a3c-48ae-91d7-6b66278b668a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {85d9e1aa-be2e-4c6f-88ed-165aee403535}<23.9 && {85d9e1aa-be2e-4c6f-88ed-165aee403535}>1.7, !- Program Line 4 + SET {b2e9c243-8a3b-4241-b315-4695eb3b6c88} = 29.4, !- Program Line 5 + SET {7f31d476-7a3c-48ae-91d7-6b66278b668a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {85d9e1aa-be2e-4c6f-88ed-165aee403535}<23.9 && {85d9e1aa-be2e-4c6f-88ed-165aee403535}>1.7, !- Program Line 7 + SET {b2e9c243-8a3b-4241-b315-4695eb3b6c88} = 29.4, !- Program Line 8 + SET {7f31d476-7a3c-48ae-91d7-6b66278b668a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {85d9e1aa-be2e-4c6f-88ed-165aee403535}<23.9 && {85d9e1aa-be2e-4c6f-88ed-165aee403535}>1.7, !- Program Line 10 + SET {b2e9c243-8a3b-4241-b315-4695eb3b6c88} = 29.4, !- Program Line 11 + SET {7f31d476-7a3c-48ae-91d7-6b66278b668a} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {ea74c961-dacd-4c6e-9132-7df949b394ae} = NULL, !- Program Line 14 - SET {2764f340-6519-4593-a845-896ee875fee3} = NULL, !- Program Line 15 + SET {b2e9c243-8a3b-4241-b315-4695eb3b6c88} = NULL, !- Program Line 14 + SET {7f31d476-7a3c-48ae-91d7-6b66278b668a} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a007f33c-f213-4e3d-a11b-96e6cea75b9c}<23.9 && {a007f33c-f213-4e3d-a11b-96e6cea75b9c}>1.7, !- Program Line 1 - SET {390f120c-3a0c-43d6-975d-ae60613fd6c1} = 29.4, !- Program Line 2 - SET {9a7f8ae8-ce8f-44ab-aa7f-ea95b916f095} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a007f33c-f213-4e3d-a11b-96e6cea75b9c}<23.9 && {a007f33c-f213-4e3d-a11b-96e6cea75b9c}>1.7, !- Program Line 4 - SET {390f120c-3a0c-43d6-975d-ae60613fd6c1} = 29.4, !- Program Line 5 - SET {9a7f8ae8-ce8f-44ab-aa7f-ea95b916f095} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a007f33c-f213-4e3d-a11b-96e6cea75b9c}<23.9 && {a007f33c-f213-4e3d-a11b-96e6cea75b9c}>1.7, !- Program Line 7 - SET {390f120c-3a0c-43d6-975d-ae60613fd6c1} = 29.4, !- Program Line 8 - SET {9a7f8ae8-ce8f-44ab-aa7f-ea95b916f095} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a007f33c-f213-4e3d-a11b-96e6cea75b9c}<23.9 && {a007f33c-f213-4e3d-a11b-96e6cea75b9c}>1.7, !- Program Line 10 - SET {390f120c-3a0c-43d6-975d-ae60613fd6c1} = 29.4, !- Program Line 11 - SET {9a7f8ae8-ce8f-44ab-aa7f-ea95b916f095} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ab04df1b-a87d-466b-8a23-7393ee5ff4e0}<23.9 && {ab04df1b-a87d-466b-8a23-7393ee5ff4e0}>1.7, !- Program Line 1 + SET {8fdd93a0-9f8a-4ea3-8f78-24f583b35849} = 29.4, !- Program Line 2 + SET {88d8bcdb-114c-4f70-924c-3715dd67aec7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ab04df1b-a87d-466b-8a23-7393ee5ff4e0}<23.9 && {ab04df1b-a87d-466b-8a23-7393ee5ff4e0}>1.7, !- Program Line 4 + SET {8fdd93a0-9f8a-4ea3-8f78-24f583b35849} = 29.4, !- Program Line 5 + SET {88d8bcdb-114c-4f70-924c-3715dd67aec7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ab04df1b-a87d-466b-8a23-7393ee5ff4e0}<23.9 && {ab04df1b-a87d-466b-8a23-7393ee5ff4e0}>1.7, !- Program Line 7 + SET {8fdd93a0-9f8a-4ea3-8f78-24f583b35849} = 29.4, !- Program Line 8 + SET {88d8bcdb-114c-4f70-924c-3715dd67aec7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ab04df1b-a87d-466b-8a23-7393ee5ff4e0}<23.9 && {ab04df1b-a87d-466b-8a23-7393ee5ff4e0}>1.7, !- Program Line 10 + SET {8fdd93a0-9f8a-4ea3-8f78-24f583b35849} = 29.4, !- Program Line 11 + SET {88d8bcdb-114c-4f70-924c-3715dd67aec7} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {390f120c-3a0c-43d6-975d-ae60613fd6c1} = NULL, !- Program Line 14 - SET {9a7f8ae8-ce8f-44ab-aa7f-ea95b916f095} = NULL, !- Program Line 15 + SET {8fdd93a0-9f8a-4ea3-8f78-24f583b35849} = NULL, !- Program Line 14 + SET {88d8bcdb-114c-4f70-924c-3715dd67aec7} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_e_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000002}; !- Program Name 1 @@ -2654,7 +2654,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2680,7 +2680,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -2706,7 +2706,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0042-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0058-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3424,163 +3424,163 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000032}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000009}, !- Inlet Port {00000000-0000-0000-0016-000000000011}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000033}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000012}, !- Inlet Port {00000000-0000-0000-0016-000000000010}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000034}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000015}, !- Inlet Port {00000000-0000-0000-0016-000000000016}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000035}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000093}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000036}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000098}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000037}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000007}, !- Inlet Port {00000000-0000-0000-0016-000000000014}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000038}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000013}, !- Inlet Port {00000000-0000-0000-0016-000000000008}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000039}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000094}, !- Inlet Port {00000000-0000-0000-0016-000000000095}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000040}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000096}, !- Inlet Port {00000000-0000-0000-0016-000000000097}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000041}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000041}, !- Inlet Port {00000000-0000-0000-0016-000000000043}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000042}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000044}, !- Inlet Port {00000000-0000-0000-0016-000000000042}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000043}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000047}, !- Inlet Port {00000000-0000-0000-0016-000000000048}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000044}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000105}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000045}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0016-000000000110}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000046}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000039}, !- Inlet Port {00000000-0000-0000-0016-000000000046}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000047}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000045}, !- Inlet Port {00000000-0000-0000-0016-000000000040}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000048}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0016-000000000025}, !- Inlet Port {00000000-0000-0000-0016-000000000027}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000049}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0016-000000000028}, !- Inlet Port {00000000-0000-0000-0016-000000000026}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000050}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0016-000000000031}, !- Inlet Port {00000000-0000-0000-0016-000000000032}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000051}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0016-000000000099}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000052}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0016-000000000104}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000053}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0016-000000000023}, !- Inlet Port {00000000-0000-0000-0016-000000000030}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000054}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0016-000000000029}, !- Inlet Port {00000000-0000-0000-0016-000000000024}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000106}, !- Inlet Port {00000000-0000-0000-0016-000000000107}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000108}, !- Inlet Port {00000000-0000-0000-0016-000000000109}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0016-000000000100}, !- Inlet Port {00000000-0000-0000-0016-000000000101}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0016-000000000102}, !- Inlet Port {00000000-0000-0000-0016-000000000103}; !- Outlet Port @@ -4547,7 +4547,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4562,7 +4562,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4571,7 +4571,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4580,7 +4580,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4595,7 +4595,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4604,7 +4604,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4613,7 +4613,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -4628,7 +4628,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -4637,7 +4637,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0059-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5237,7 +5237,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000049}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000050}, !- Summer Design Day Schedule Name @@ -5245,7 +5245,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000021}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000053}, !- Summer Design Day Schedule Name @@ -5253,7 +5253,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0061-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0059-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0059-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGas-CAN_AB_Calgary.osm index faa4c4c08d..cf804fb85c 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGas-CAN_AB_Calgary.osm @@ -2577,41 +2577,41 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000001}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fcb50c95-91c8-403a-b4fc-742d806866d6}<23.9 && {fcb50c95-91c8-403a-b4fc-742d806866d6}>1.7, !- Program Line 1 - SET {a50db5cc-e36b-4a03-997e-c6d0e40ff40c} = 29.4, !- Program Line 2 - SET {ce7c63da-586f-403d-bf80-b4f3c848c467} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fcb50c95-91c8-403a-b4fc-742d806866d6}<23.9 && {fcb50c95-91c8-403a-b4fc-742d806866d6}>1.7, !- Program Line 4 - SET {a50db5cc-e36b-4a03-997e-c6d0e40ff40c} = 29.4, !- Program Line 5 - SET {ce7c63da-586f-403d-bf80-b4f3c848c467} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fcb50c95-91c8-403a-b4fc-742d806866d6}<23.9 && {fcb50c95-91c8-403a-b4fc-742d806866d6}>1.7, !- Program Line 7 - SET {a50db5cc-e36b-4a03-997e-c6d0e40ff40c} = 29.4, !- Program Line 8 - SET {ce7c63da-586f-403d-bf80-b4f3c848c467} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fcb50c95-91c8-403a-b4fc-742d806866d6}<23.9 && {fcb50c95-91c8-403a-b4fc-742d806866d6}>1.7, !- Program Line 10 - SET {a50db5cc-e36b-4a03-997e-c6d0e40ff40c} = 29.4, !- Program Line 11 - SET {ce7c63da-586f-403d-bf80-b4f3c848c467} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2e0b323c-0d97-4aae-a9cc-60d920258960}<23.9 && {2e0b323c-0d97-4aae-a9cc-60d920258960}>1.7, !- Program Line 1 + SET {493b97d5-c9ed-4024-b0a8-ae322d7c1f44} = 29.4, !- Program Line 2 + SET {ad4db82e-5d96-41a8-b299-7cd5178a2d85} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2e0b323c-0d97-4aae-a9cc-60d920258960}<23.9 && {2e0b323c-0d97-4aae-a9cc-60d920258960}>1.7, !- Program Line 4 + SET {493b97d5-c9ed-4024-b0a8-ae322d7c1f44} = 29.4, !- Program Line 5 + SET {ad4db82e-5d96-41a8-b299-7cd5178a2d85} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2e0b323c-0d97-4aae-a9cc-60d920258960}<23.9 && {2e0b323c-0d97-4aae-a9cc-60d920258960}>1.7, !- Program Line 7 + SET {493b97d5-c9ed-4024-b0a8-ae322d7c1f44} = 29.4, !- Program Line 8 + SET {ad4db82e-5d96-41a8-b299-7cd5178a2d85} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2e0b323c-0d97-4aae-a9cc-60d920258960}<23.9 && {2e0b323c-0d97-4aae-a9cc-60d920258960}>1.7, !- Program Line 10 + SET {493b97d5-c9ed-4024-b0a8-ae322d7c1f44} = 29.4, !- Program Line 11 + SET {ad4db82e-5d96-41a8-b299-7cd5178a2d85} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a50db5cc-e36b-4a03-997e-c6d0e40ff40c} = NULL, !- Program Line 14 - SET {ce7c63da-586f-403d-bf80-b4f3c848c467} = NULL, !- Program Line 15 + SET {493b97d5-c9ed-4024-b0a8-ae322d7c1f44} = NULL, !- Program Line 14 + SET {ad4db82e-5d96-41a8-b299-7cd5178a2d85} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0034-000000000002}, !- Handle ems_sys_4_mixed_shr_none_sc_dx_sh_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0afda1a5-6299-4733-b0c6-4cc517db318c}<23.9 && {0afda1a5-6299-4733-b0c6-4cc517db318c}>1.7, !- Program Line 1 - SET {6fba52c4-206f-472c-bdc7-441f2f6834fa} = 29.4, !- Program Line 2 - SET {cb1d57f9-1189-42df-9a25-92b0721d11dc} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0afda1a5-6299-4733-b0c6-4cc517db318c}<23.9 && {0afda1a5-6299-4733-b0c6-4cc517db318c}>1.7, !- Program Line 4 - SET {6fba52c4-206f-472c-bdc7-441f2f6834fa} = 29.4, !- Program Line 5 - SET {cb1d57f9-1189-42df-9a25-92b0721d11dc} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0afda1a5-6299-4733-b0c6-4cc517db318c}<23.9 && {0afda1a5-6299-4733-b0c6-4cc517db318c}>1.7, !- Program Line 7 - SET {6fba52c4-206f-472c-bdc7-441f2f6834fa} = 29.4, !- Program Line 8 - SET {cb1d57f9-1189-42df-9a25-92b0721d11dc} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0afda1a5-6299-4733-b0c6-4cc517db318c}<23.9 && {0afda1a5-6299-4733-b0c6-4cc517db318c}>1.7, !- Program Line 10 - SET {6fba52c4-206f-472c-bdc7-441f2f6834fa} = 29.4, !- Program Line 11 - SET {cb1d57f9-1189-42df-9a25-92b0721d11dc} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f18924a7-f51b-4ba6-9c8a-a7c8125a1281}<23.9 && {f18924a7-f51b-4ba6-9c8a-a7c8125a1281}>1.7, !- Program Line 1 + SET {997f2ad2-bbc1-4449-88d9-2a500547e21b} = 29.4, !- Program Line 2 + SET {7d001a32-011e-4292-8a58-873d36838252} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f18924a7-f51b-4ba6-9c8a-a7c8125a1281}<23.9 && {f18924a7-f51b-4ba6-9c8a-a7c8125a1281}>1.7, !- Program Line 4 + SET {997f2ad2-bbc1-4449-88d9-2a500547e21b} = 29.4, !- Program Line 5 + SET {7d001a32-011e-4292-8a58-873d36838252} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f18924a7-f51b-4ba6-9c8a-a7c8125a1281}<23.9 && {f18924a7-f51b-4ba6-9c8a-a7c8125a1281}>1.7, !- Program Line 7 + SET {997f2ad2-bbc1-4449-88d9-2a500547e21b} = 29.4, !- Program Line 8 + SET {7d001a32-011e-4292-8a58-873d36838252} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f18924a7-f51b-4ba6-9c8a-a7c8125a1281}<23.9 && {f18924a7-f51b-4ba6-9c8a-a7c8125a1281}>1.7, !- Program Line 10 + SET {997f2ad2-bbc1-4449-88d9-2a500547e21b} = 29.4, !- Program Line 11 + SET {7d001a32-011e-4292-8a58-873d36838252} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6fba52c4-206f-472c-bdc7-441f2f6834fa} = NULL, !- Program Line 14 - SET {cb1d57f9-1189-42df-9a25-92b0721d11dc} = NULL, !- Program Line 15 + SET {997f2ad2-bbc1-4449-88d9-2a500547e21b} = NULL, !- Program Line 14 + SET {7d001a32-011e-4292-8a58-873d36838252} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm index 57ea8ef168..01b8f1c7fb 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGasHPElecBackupMixed-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2842,7 +2842,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0064-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2850,7 +2850,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0064-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2858,7 +2858,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2866,7 +2866,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2874,53 +2874,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {86d28219-9eb3-4f92-93d8-56ec80c8a23d}<23.9 && {86d28219-9eb3-4f92-93d8-56ec80c8a23d}>1.7, !- Program Line 1 - SET {2f46775f-acfd-478c-bae5-3466cb5e3408} = 29.4, !- Program Line 2 - SET {9018eca4-c7e8-4f4a-aacd-934550797d00} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {86d28219-9eb3-4f92-93d8-56ec80c8a23d}<23.9 && {86d28219-9eb3-4f92-93d8-56ec80c8a23d}>1.7, !- Program Line 4 - SET {2f46775f-acfd-478c-bae5-3466cb5e3408} = 29.4, !- Program Line 5 - SET {9018eca4-c7e8-4f4a-aacd-934550797d00} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {86d28219-9eb3-4f92-93d8-56ec80c8a23d}<23.9 && {86d28219-9eb3-4f92-93d8-56ec80c8a23d}>1.7, !- Program Line 7 - SET {2f46775f-acfd-478c-bae5-3466cb5e3408} = 29.4, !- Program Line 8 - SET {9018eca4-c7e8-4f4a-aacd-934550797d00} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {86d28219-9eb3-4f92-93d8-56ec80c8a23d}<23.9 && {86d28219-9eb3-4f92-93d8-56ec80c8a23d}>1.7, !- Program Line 10 - SET {2f46775f-acfd-478c-bae5-3466cb5e3408} = 29.4, !- Program Line 11 - SET {9018eca4-c7e8-4f4a-aacd-934550797d00} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {08cd5cae-786b-41c4-b69d-f69efd7a6284}<23.9 && {08cd5cae-786b-41c4-b69d-f69efd7a6284}>1.7, !- Program Line 1 + SET {a85819eb-372d-4715-bbcd-08f58cd4b087} = 29.4, !- Program Line 2 + SET {7d5e2b7d-a43a-4e50-8705-d7debef4b32f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {08cd5cae-786b-41c4-b69d-f69efd7a6284}<23.9 && {08cd5cae-786b-41c4-b69d-f69efd7a6284}>1.7, !- Program Line 4 + SET {a85819eb-372d-4715-bbcd-08f58cd4b087} = 29.4, !- Program Line 5 + SET {7d5e2b7d-a43a-4e50-8705-d7debef4b32f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {08cd5cae-786b-41c4-b69d-f69efd7a6284}<23.9 && {08cd5cae-786b-41c4-b69d-f69efd7a6284}>1.7, !- Program Line 7 + SET {a85819eb-372d-4715-bbcd-08f58cd4b087} = 29.4, !- Program Line 8 + SET {7d5e2b7d-a43a-4e50-8705-d7debef4b32f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {08cd5cae-786b-41c4-b69d-f69efd7a6284}<23.9 && {08cd5cae-786b-41c4-b69d-f69efd7a6284}>1.7, !- Program Line 10 + SET {a85819eb-372d-4715-bbcd-08f58cd4b087} = 29.4, !- Program Line 11 + SET {7d5e2b7d-a43a-4e50-8705-d7debef4b32f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {2f46775f-acfd-478c-bae5-3466cb5e3408} = NULL, !- Program Line 14 - SET {9018eca4-c7e8-4f4a-aacd-934550797d00} = NULL, !- Program Line 15 + SET {a85819eb-372d-4715-bbcd-08f58cd4b087} = NULL, !- Program Line 14 + SET {7d5e2b7d-a43a-4e50-8705-d7debef4b32f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ee2d9c66-ac8c-427a-8da1-7c9d47f9b85c}<23.9 && {ee2d9c66-ac8c-427a-8da1-7c9d47f9b85c}>1.7, !- Program Line 1 - SET {e504abc3-7634-4e9c-86cb-28bb0acd32dc} = 29.4, !- Program Line 2 - SET {94102a91-ffc1-4e3c-8d42-9aaa4e7be48c} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ee2d9c66-ac8c-427a-8da1-7c9d47f9b85c}<23.9 && {ee2d9c66-ac8c-427a-8da1-7c9d47f9b85c}>1.7, !- Program Line 4 - SET {e504abc3-7634-4e9c-86cb-28bb0acd32dc} = 29.4, !- Program Line 5 - SET {94102a91-ffc1-4e3c-8d42-9aaa4e7be48c} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ee2d9c66-ac8c-427a-8da1-7c9d47f9b85c}<23.9 && {ee2d9c66-ac8c-427a-8da1-7c9d47f9b85c}>1.7, !- Program Line 7 - SET {e504abc3-7634-4e9c-86cb-28bb0acd32dc} = 29.4, !- Program Line 8 - SET {94102a91-ffc1-4e3c-8d42-9aaa4e7be48c} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ee2d9c66-ac8c-427a-8da1-7c9d47f9b85c}<23.9 && {ee2d9c66-ac8c-427a-8da1-7c9d47f9b85c}>1.7, !- Program Line 10 - SET {e504abc3-7634-4e9c-86cb-28bb0acd32dc} = 29.4, !- Program Line 11 - SET {94102a91-ffc1-4e3c-8d42-9aaa4e7be48c} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {0f1930e6-5d43-4ae4-8525-c364c52150ef}<23.9 && {0f1930e6-5d43-4ae4-8525-c364c52150ef}>1.7, !- Program Line 1 + SET {a615c254-87b8-42fc-8d31-41a62e5f5606} = 29.4, !- Program Line 2 + SET {bda5faa6-dfa7-4ebe-b580-657593d38312} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {0f1930e6-5d43-4ae4-8525-c364c52150ef}<23.9 && {0f1930e6-5d43-4ae4-8525-c364c52150ef}>1.7, !- Program Line 4 + SET {a615c254-87b8-42fc-8d31-41a62e5f5606} = 29.4, !- Program Line 5 + SET {bda5faa6-dfa7-4ebe-b580-657593d38312} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {0f1930e6-5d43-4ae4-8525-c364c52150ef}<23.9 && {0f1930e6-5d43-4ae4-8525-c364c52150ef}>1.7, !- Program Line 7 + SET {a615c254-87b8-42fc-8d31-41a62e5f5606} = 29.4, !- Program Line 8 + SET {bda5faa6-dfa7-4ebe-b580-657593d38312} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {0f1930e6-5d43-4ae4-8525-c364c52150ef}<23.9 && {0f1930e6-5d43-4ae4-8525-c364c52150ef}>1.7, !- Program Line 10 + SET {a615c254-87b8-42fc-8d31-41a62e5f5606} = 29.4, !- Program Line 11 + SET {bda5faa6-dfa7-4ebe-b580-657593d38312} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {e504abc3-7634-4e9c-86cb-28bb0acd32dc} = NULL, !- Program Line 14 - SET {94102a91-ffc1-4e3c-8d42-9aaa4e7be48c} = NULL, !- Program Line 15 + SET {a615c254-87b8-42fc-8d31-41a62e5f5606} = NULL, !- Program Line 14 + SET {bda5faa6-dfa7-4ebe-b580-657593d38312} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_e_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 @@ -3021,7 +3021,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3047,7 +3047,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3073,7 +3073,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3899,163 +3899,163 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000040}, !- Inlet Port {00000000-0000-0000-0018-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000134}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000032}, !- Inlet Port {00000000-0000-0000-0018-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000038}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000130}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000059}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000073}, !- Inlet Port {00000000-0000-0000-0018-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000060}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000076}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000061}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000079}, !- Inlet Port {00000000-0000-0000-0018-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000062}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000141}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000063}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000146}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000064}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000071}, !- Inlet Port {00000000-0000-0000-0018-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000065}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000077}, !- Inlet Port {00000000-0000-0000-0018-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000066}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000067}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000068}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000059}, !- Inlet Port {00000000-0000-0000-0018-000000000060}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000069}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000070}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000140}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000071}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000051}, !- Inlet Port {00000000-0000-0000-0018-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000072}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000057}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000073}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000142}, !- Inlet Port {00000000-0000-0000-0018-000000000143}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000074}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000144}, !- Inlet Port {00000000-0000-0000-0018-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000075}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000136}, !- Inlet Port {00000000-0000-0000-0018-000000000137}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000076}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000138}, !- Inlet Port {00000000-0000-0000-0018-000000000139}; !- Outlet Port @@ -5103,7 +5103,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5118,7 +5118,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5127,7 +5127,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5136,7 +5136,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5151,7 +5151,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5160,7 +5160,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5169,7 +5169,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5184,7 +5184,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5193,7 +5193,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5793,7 +5793,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000049}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000050}, !- Summer Design Day Schedule Name @@ -5801,7 +5801,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000021}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000053}, !- Summer Design Day Schedule Name @@ -5809,7 +5809,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000056}, !- Summer Design Day Schedule Name diff --git a/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm index d9a4fb6e18..295fdcfe8f 100644 --- a/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/Warehouse-NECB2020-NaturalGasHPGasBackup-CAN_AB_Calgary.osm @@ -48,7 +48,7 @@ OS:AdditionalProperties, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000020}, !- Availability Schedule {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name @@ -70,7 +70,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000021}, !- Availability Schedule {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name @@ -92,7 +92,7 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000003}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name {00000000-0000-0000-0064-000000000022}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name @@ -2864,7 +2864,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_ClgSch0, !- Name {00000000-0000-0000-0064-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2872,7 +2872,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_HtgSch0, !- Name {00000000-0000-0000-0064-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2880,7 +2880,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000003}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__ClgSch0, !- Name {00000000-0000-0000-0064-000000000012}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2888,7 +2888,7 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000004}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__HtgSch0, !- Name {00000000-0000-0000-0064-000000000013}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2896,53 +2896,53 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b6146163-d4b1-4ffc-b31a-6370adff3c4e}<23.9 && {b6146163-d4b1-4ffc-b31a-6370adff3c4e}>1.7, !- Program Line 1 - SET {a3794fdf-cb01-4e04-91c7-63a311a46cfe} = 29.4, !- Program Line 2 - SET {2ee8a164-db28-44fc-938a-15bbcb6fa6f1} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b6146163-d4b1-4ffc-b31a-6370adff3c4e}<23.9 && {b6146163-d4b1-4ffc-b31a-6370adff3c4e}>1.7, !- Program Line 4 - SET {a3794fdf-cb01-4e04-91c7-63a311a46cfe} = 29.4, !- Program Line 5 - SET {2ee8a164-db28-44fc-938a-15bbcb6fa6f1} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b6146163-d4b1-4ffc-b31a-6370adff3c4e}<23.9 && {b6146163-d4b1-4ffc-b31a-6370adff3c4e}>1.7, !- Program Line 7 - SET {a3794fdf-cb01-4e04-91c7-63a311a46cfe} = 29.4, !- Program Line 8 - SET {2ee8a164-db28-44fc-938a-15bbcb6fa6f1} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b6146163-d4b1-4ffc-b31a-6370adff3c4e}<23.9 && {b6146163-d4b1-4ffc-b31a-6370adff3c4e}>1.7, !- Program Line 10 - SET {a3794fdf-cb01-4e04-91c7-63a311a46cfe} = 29.4, !- Program Line 11 - SET {2ee8a164-db28-44fc-938a-15bbcb6fa6f1} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4d7f1091-0d72-46ab-90a3-fb26d44575f2}<23.9 && {4d7f1091-0d72-46ab-90a3-fb26d44575f2}>1.7, !- Program Line 1 + SET {ecd1051a-f552-43fd-851b-e83804bd0ce1} = 29.4, !- Program Line 2 + SET {3f986c39-7667-4029-a092-2af65c5dd1b9} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4d7f1091-0d72-46ab-90a3-fb26d44575f2}<23.9 && {4d7f1091-0d72-46ab-90a3-fb26d44575f2}>1.7, !- Program Line 4 + SET {ecd1051a-f552-43fd-851b-e83804bd0ce1} = 29.4, !- Program Line 5 + SET {3f986c39-7667-4029-a092-2af65c5dd1b9} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4d7f1091-0d72-46ab-90a3-fb26d44575f2}<23.9 && {4d7f1091-0d72-46ab-90a3-fb26d44575f2}>1.7, !- Program Line 7 + SET {ecd1051a-f552-43fd-851b-e83804bd0ce1} = 29.4, !- Program Line 8 + SET {3f986c39-7667-4029-a092-2af65c5dd1b9} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4d7f1091-0d72-46ab-90a3-fb26d44575f2}<23.9 && {4d7f1091-0d72-46ab-90a3-fb26d44575f2}>1.7, !- Program Line 10 + SET {ecd1051a-f552-43fd-851b-e83804bd0ce1} = 29.4, !- Program Line 11 + SET {3f986c39-7667-4029-a092-2af65c5dd1b9} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a3794fdf-cb01-4e04-91c7-63a311a46cfe} = NULL, !- Program Line 14 - SET {2ee8a164-db28-44fc-938a-15bbcb6fa6f1} = NULL, !- Program Line 15 + SET {ecd1051a-f552-43fd-851b-e83804bd0ce1} = NULL, !- Program Line 14 + SET {3f986c39-7667-4029-a092-2af65c5dd1b9} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3cb53351-577b-4a27-908f-8eab9b12ecd0}<23.9 && {3cb53351-577b-4a27-908f-8eab9b12ecd0}>1.7, !- Program Line 1 - SET {bfe946d2-7730-422b-8a12-4d65eda61f19} = 29.4, !- Program Line 2 - SET {8124e16a-20f3-46e9-afa2-53da2a8c74ea} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3cb53351-577b-4a27-908f-8eab9b12ecd0}<23.9 && {3cb53351-577b-4a27-908f-8eab9b12ecd0}>1.7, !- Program Line 4 - SET {bfe946d2-7730-422b-8a12-4d65eda61f19} = 29.4, !- Program Line 5 - SET {8124e16a-20f3-46e9-afa2-53da2a8c74ea} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3cb53351-577b-4a27-908f-8eab9b12ecd0}<23.9 && {3cb53351-577b-4a27-908f-8eab9b12ecd0}>1.7, !- Program Line 7 - SET {bfe946d2-7730-422b-8a12-4d65eda61f19} = 29.4, !- Program Line 8 - SET {8124e16a-20f3-46e9-afa2-53da2a8c74ea} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3cb53351-577b-4a27-908f-8eab9b12ecd0}<23.9 && {3cb53351-577b-4a27-908f-8eab9b12ecd0}>1.7, !- Program Line 10 - SET {bfe946d2-7730-422b-8a12-4d65eda61f19} = 29.4, !- Program Line 11 - SET {8124e16a-20f3-46e9-afa2-53da2a8c74ea} = 15.6, !- Program Line 12 + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {88a16ebe-23aa-438c-95f4-ceee1645042e}<23.9 && {88a16ebe-23aa-438c-95f4-ceee1645042e}>1.7, !- Program Line 1 + SET {9bf17ab5-41d9-453d-8ea5-d8a49ca2db47} = 29.4, !- Program Line 2 + SET {d3b9255c-d09c-44cc-b04c-e811e51d68cd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {88a16ebe-23aa-438c-95f4-ceee1645042e}<23.9 && {88a16ebe-23aa-438c-95f4-ceee1645042e}>1.7, !- Program Line 4 + SET {9bf17ab5-41d9-453d-8ea5-d8a49ca2db47} = 29.4, !- Program Line 5 + SET {d3b9255c-d09c-44cc-b04c-e811e51d68cd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {88a16ebe-23aa-438c-95f4-ceee1645042e}<23.9 && {88a16ebe-23aa-438c-95f4-ceee1645042e}>1.7, !- Program Line 7 + SET {9bf17ab5-41d9-453d-8ea5-d8a49ca2db47} = 29.4, !- Program Line 8 + SET {d3b9255c-d09c-44cc-b04c-e811e51d68cd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {88a16ebe-23aa-438c-95f4-ceee1645042e}<23.9 && {88a16ebe-23aa-438c-95f4-ceee1645042e}>1.7, !- Program Line 10 + SET {9bf17ab5-41d9-453d-8ea5-d8a49ca2db47} = 29.4, !- Program Line 11 + SET {d3b9255c-d09c-44cc-b04c-e811e51d68cd} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {bfe946d2-7730-422b-8a12-4d65eda61f19} = NULL, !- Program Line 14 - SET {8124e16a-20f3-46e9-afa2-53da2a8c74ea} = NULL, !- Program Line 15 + SET {9bf17ab5-41d9-453d-8ea5-d8a49ca2db47} = NULL, !- Program Line 14 + SET {d3b9255c-d09c-44cc-b04c-e811e51d68cd} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000002}, !- Handle - ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name + ems_sys_4_mixed_shr_none_sc_ashp_sh_ashp_c_g_ssf_cv_zh_b_hw_zc_none_srf_none__OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000002}; !- Program Name 1 @@ -3043,7 +3043,7 @@ OS:Foundation:Kiva:Settings, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000001}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3069,7 +3069,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000002}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3095,7 +3095,7 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0044-000000000003}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3921,163 +3921,163 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000050}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000034}, !- Inlet Port {00000000-0000-0000-0018-000000000036}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000051}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000037}, !- Inlet Port {00000000-0000-0000-0018-000000000035}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000052}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000040}, !- Inlet Port {00000000-0000-0000-0018-000000000041}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000053}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000129}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000054}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000134}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000055}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000032}, !- Inlet Port {00000000-0000-0000-0018-000000000039}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000056}, !- Handle - sys_3|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_3|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000038}, !- Inlet Port {00000000-0000-0000-0018-000000000033}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000057}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000130}, !- Inlet Port {00000000-0000-0000-0018-000000000131}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000058}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000132}, !- Inlet Port {00000000-0000-0000-0018-000000000133}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000059}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000073}, !- Inlet Port {00000000-0000-0000-0018-000000000075}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000060}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000076}, !- Inlet Port {00000000-0000-0000-0018-000000000074}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000061}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000079}, !- Inlet Port {00000000-0000-0000-0018-000000000080}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000062}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000141}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000063}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Relief Air Node, !- Name {00000000-0000-0000-0018-000000000146}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000064}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000071}, !- Inlet Port {00000000-0000-0000-0018-000000000078}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000065}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000077}, !- Inlet Port {00000000-0000-0000-0018-000000000072}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000066}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0018-000000000053}, !- Inlet Port {00000000-0000-0000-0018-000000000055}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000067}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0018-000000000056}, !- Inlet Port {00000000-0000-0000-0018-000000000054}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000068}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0018-000000000059}, !- Inlet Port {00000000-0000-0000-0018-000000000060}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000069}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0018-000000000135}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000070}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0018-000000000140}, !- Inlet Port ; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000071}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0018-000000000051}, !- Inlet Port {00000000-0000-0000-0018-000000000058}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000072}, !- Handle - sys_4|mixed|shr>erv|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name + sys_4|mixed|shr>erv|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0018-000000000057}, !- Inlet Port {00000000-0000-0000-0018-000000000052}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000073}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000142}, !- Inlet Port {00000000-0000-0000-0018-000000000143}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000074}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000144}, !- Inlet Port {00000000-0000-0000-0018-000000000145}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000075}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name {00000000-0000-0000-0018-000000000136}, !- Inlet Port {00000000-0000-0000-0018-000000000137}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000076}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name {00000000-0000-0000-0018-000000000138}, !- Inlet Port {00000000-0000-0000-0018-000000000139}; !- Outlet Port @@ -5125,7 +5125,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000049}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5140,7 +5140,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000050}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5149,7 +5149,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000051}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5158,7 +5158,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000052}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5173,7 +5173,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000053}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5182,7 +5182,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000054}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5191,7 +5191,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000055}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 @@ -5206,7 +5206,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000056}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5215,7 +5215,7 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000057}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 @@ -5815,7 +5815,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000020}, !- Handle - sys_3|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000049}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000050}, !- Summer Design Day Schedule Name @@ -5823,7 +5823,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000021}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| 1 Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000052}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000053}, !- Summer Design Day Schedule Name @@ -5831,7 +5831,7 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000022}, !- Handle - sys_4|mixed|shr>none|sc>ashp|sh>ashp|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name + sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name {00000000-0000-0000-0062-000000000055}, !- Default Day Schedule Name {00000000-0000-0000-0062-000000000056}, !- Summer Design Day Schedule Name From 58ed59aa4963d83def68555ecd7f788c78fc88ef Mon Sep 17 00:00:00 2001 From: plopez Date: Tue, 3 Dec 2024 03:17:57 +0000 Subject: [PATCH 11/38] update that include removing NECB2011 from autozone.rb code. --- .../standards/necb/NECB2011/autozone.rb | 491 ++++++++++----- .../standards/necb/NECB2011/data/systems.json | 588 ++++++++++++++++++ .../standards/necb/NECB2011/necb_2011.rb | 30 + utilities/btap_cli/print_available_systems.rb | 39 +- utilities/btap_cli/tests/run_options.yml | 5 + 5 files changed, 993 insertions(+), 160 deletions(-) create mode 100644 lib/openstudio-standards/standards/necb/NECB2011/data/systems.json diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 73747aaddc..571671f7b5 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -94,6 +94,11 @@ def apply_auto_zoning(model:, sizing_run_dir: Dir.pwd, lights_type: 'NECB_Defaul # Organizes Zones and assigns them to appropriate systems according to NECB 2011-17 systems spacetype rules in Sec 8. # requires requires fuel type to be assigned for each system aspect. Defaults to gas hydronic. def apply_systems(model:, + hvac_system_primary:, + hvac_system_dwelling_units:, + hvac_system_washrooms:, + hvac_system_corridor:, + hvac_system_storage:, sizing_run_dir:, shw_scale:, baseline_system_zones_map_option:) @@ -125,6 +130,7 @@ def apply_systems(model:, model) # Rule that all dwelling units have their own zone and system. auto_system_dwelling_units(model: model, + hvac_system_dwelling_units: hvac_system_dwelling_units, necb_reference_hp: self.fuel_type_set.necb_reference_hp, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, baseboard_type: self.fuel_type_set.baseboard_type, @@ -141,7 +147,9 @@ def apply_systems(model:, baseline_system_zones_map_option: baseline_system_zones_map_option) # Assign a single system 4 for all wet spaces.. and assign the control zone to the one with the largest load. - auto_system_wet_spaces(baseboard_type: self.fuel_type_set.baseboard_type, + auto_system_wet_spaces( + hvac_system_washrooms: hvac_system_washrooms, + baseboard_type: self.fuel_type_set.baseboard_type, necb_reference_hp: self.fuel_type_set.necb_reference_hp, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, boiler_fueltype: self.fuel_type_set.boiler_fueltype, @@ -149,7 +157,9 @@ def apply_systems(model:, model: model) # Assign a single system 4 for all storage spaces.. and assign the control zone to the one with the largest load. - auto_system_storage_spaces(baseboard_type: self.fuel_type_set.baseboard_type, + auto_system_storage_spaces( + hvac_system_storage: hvac_system_storage, + baseboard_type: self.fuel_type_set.baseboard_type, necb_reference_hp: self.fuel_type_set.necb_reference_hp, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, boiler_fueltype: self.fuel_type_set.boiler_fueltype, @@ -157,13 +167,16 @@ def apply_systems(model:, model: model) # Assign the wild spaces to a single system 4 system with a control zone with the largest load. - auto_system_wild_spaces(baseboard_type: self.fuel_type_set.baseboard_type, + auto_system_wild_spaces( + hvac_system_corridor: hvac_system_corridor, + baseboard_type: self.fuel_type_set.baseboard_type, necb_reference_hp: self.fuel_type_set.necb_reference_hp, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, heating_coil_type_sys4: self.fuel_type_set.heating_coil_type_sys4, model: model) # do the regular assignment for the rest and group where possible. auto_system_all_other_spaces(model: model, + hvac_system_primary: hvac_system_primary, necb_reference_hp: self.fuel_type_set.necb_reference_hp, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, baseboard_type: self.fuel_type_set.baseboard_type, @@ -207,7 +220,7 @@ def store_space_sizing_loads(model) def stored_space_heating_load(space) if @stored_space_heating_sizing_loads.nil? # do a sizing run. - raise('autorun sizing run failed!') if model_run_sizing_run(space.model, "#{Dir.pwd}/autozone") == false + raise("autorun sizing run failed! in #{Dir.pwd}/autozone ") if model_run_sizing_run(space.model, "#{Dir.pwd}/autozone") == false # collect sizing information on each space. store_space_sizing_loads(space.model) @@ -863,7 +876,8 @@ def create_hw_loop_if_required(baseboard_type, boiler_fueltype, backup_boiler_fu # Default method to create a necb system and assign array of zones to be supported by it. It will try to bring zones with # similar loads on the same airloops and set control zones where possible for single zone systems and will create monolithic # system 6 multizones where possible. - def create_necb_system(baseboard_type:, + def create_necb_system(hvac_system_primary: 'NECB_Default', + baseboard_type:, boiler_fueltype:, chiller_type:, fan_type:, @@ -892,86 +906,141 @@ def create_necb_system(baseboard_type:, # Do nothing no system assigned to zone. Used for Unconditioned spaces when 1 group_similar_zones_together(sys_zones).each do |curr_zones| - mau_air_loop = add_sys1_unitary_ac_baseboard_heating(model: model, - necb_reference_hp: necb_reference_hp, - necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, - zones: curr_zones, - mau_type: mau_type, - mau_heating_coil_type: mau_heating_coil_type, - baseboard_type: baseboard_type, - hw_loop: @hw_loop, - multispeed: false) + if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? + mau_air_loop = add_sys1_unitary_ac_baseboard_heating(model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: curr_zones, + mau_type: mau_type, + mau_heating_coil_type: mau_heating_coil_type, + baseboard_type: baseboard_type, + hw_loop: @hw_loop, + multispeed: false) + else + create_hvac_by_name( model: model, + hvac_system_primary: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones + ) + end end + when 2 group_similar_zones_together(sys_zones).each do |curr_zones| - add_sys2_FPFC_sys5_TPFC(model: model, - zones: curr_zones, - chiller_type: chiller_type, - mau_cooling_type: mau_cooling_type, - fan_coil_type: 'FPFC', - hw_loop: @hw_loop) + if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? + add_sys2_FPFC_sys5_TPFC(model: model, + zones: curr_zones, + chiller_type: chiller_type, + mau_cooling_type: mau_cooling_type, + fan_coil_type: 'FPFC', + hw_loop: @hw_loop) + else + create_hvac_by_name( model: model, + hvac_system_primary: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones + ) + end end when 3 group_similar_zones_together(sys_zones).each do |curr_zones| - add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating(model: model, - necb_reference_hp: necb_reference_hp, - necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, - zones: curr_zones, - heating_coil_type: heating_coil_type_sys3, - baseboard_type: baseboard_type, - hw_loop: @hw_loop, - multispeed: false) + if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? + add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating(model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: curr_zones, + heating_coil_type: heating_coil_type_sys3, + baseboard_type: baseboard_type, + hw_loop: @hw_loop, + multispeed: false) + else + create_hvac_by_name( model: model, + hvac_system_primary: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones + ) + end end + when 4 group_similar_zones_together(sys_zones).each do |curr_zones| - add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, - necb_reference_hp: necb_reference_hp, - necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, - zones: curr_zones, - heating_coil_type: heating_coil_type_sys4, - baseboard_type: baseboard_type, - hw_loop: @hw_loop) - # add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating(model: model, - # zones: zones, - # heating_coil_type: heating_coil_type_sys4, - # baseboard_type: baseboard_type, - # hw_loop: @hw_loop, - # multispeed: false) + if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? + add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: curr_zones, + heating_coil_type: heating_coil_type_sys4, + baseboard_type: baseboard_type, + hw_loop: @hw_loop) + else + create_hvac_by_name( model: model, + hvac_system_primary: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones + ) + end end + when 5 group_similar_zones_together(sys_zones).each do |curr_zones| - add_sys2_FPFC_sys5_TPFC(model: model, - zones: curr_zones, - chiller_type: chiller_type, - mau_cooling_type: mau_cooling_type, - fan_coil_type: 'TPFC', - hw_loop: @hw_loop) + if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? + add_sys2_FPFC_sys5_TPFC(model: model, + zones: curr_zones, + chiller_type: chiller_type, + mau_cooling_type: mau_cooling_type, + fan_coil_type: 'TPFC', + hw_loop: @hw_loop) + else + create_hvac_by_name( model: model, + hvac_system_primary: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones + ) + end end + when 6 - if necb_reference_hp - add_sys6_multi_zone_reference_hp_with_baseboard_heating(model: model, - zones: sys_zones, - heating_coil_type: heating_coil_type_sys6, - baseboard_type: baseboard_type, - hw_loop:@hw_loop, - necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel) - else - add_sys6_multi_zone_built_up_system_with_baseboard_heating(model: model, + if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? + if necb_reference_hp + add_sys6_multi_zone_reference_hp_with_baseboard_heating(model: model, zones: sys_zones, heating_coil_type: heating_coil_type_sys6, baseboard_type: baseboard_type, - chiller_type: chiller_type, - fan_type: fan_type, - hw_loop: @hw_loop) + hw_loop:@hw_loop, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel) + else + add_sys6_multi_zone_built_up_system_with_baseboard_heating(model: model, + zones: sys_zones, + heating_coil_type: heating_coil_type_sys6, + baseboard_type: baseboard_type, + chiller_type: chiller_type, + fan_type: fan_type, + hw_loop: @hw_loop) + end + else + create_hvac_by_name( model: model, + hvac_system_primary: hvac_system_primary, + hw_loop: @hw_loop, + zones: sys_zones + ) end + when 7 group_similar_zones_together(sys_zones).each do |curr_zones| - add_sys2_FPFC_sys5_TPFC(model: model, - zones: curr_zones, - chiller_type: chiller_type, - fan_coil_type: 'FPFC', - mau_cooling_type: mau_cooling_type, - hw_loop: @hw_loop) + if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? + add_sys2_FPFC_sys5_TPFC(model: model, + zones: curr_zones, + chiller_type: chiller_type, + fan_coil_type: 'FPFC', + mau_cooling_type: mau_cooling_type, + hw_loop: @hw_loop) + else + create_hvac_by_name( model: model, + hvac_system_primary: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones + ) + end end end end @@ -979,6 +1048,7 @@ def create_necb_system(baseboard_type:, # This method will deal with all non wet, non-wild, and non-dwelling units thermal zones. def auto_system_all_other_spaces(baseboard_type:, + hvac_system_primary:, necb_reference_hp:false, necb_reference_hp_supp_fuel:'DefaultFuel', boiler_fueltype:, @@ -1005,7 +1075,8 @@ def auto_system_all_other_spaces(baseboard_type:, zones.uniq! # since dwelling units are all zoned 1:1 to space:zone we simply add the zone to the appropriate btap system. - create_necb_system(baseboard_type: baseboard_type, + create_necb_system(hvac_system_primary: hvac_system_primary, + baseboard_type: baseboard_type, boiler_fueltype: boiler_fueltype, chiller_type: chiller_type, fan_type: fan_type, @@ -1025,7 +1096,9 @@ def auto_system_all_other_spaces(baseboard_type:, # This method will ensure that all dwelling units are assigned to a system 1 or 3. # There is an option to have a shared AHU or not. - def auto_system_dwelling_units(baseboard_type:, + def auto_system_dwelling_units( + hvac_system_dwelling_units:, + baseboard_type:, necb_reference_hp:false, necb_reference_hp_supp_fuel:'DefaultFuel', boiler_fueltype:, @@ -1054,70 +1127,92 @@ def auto_system_dwelling_units(baseboard_type:, end zones.uniq! - # sort system 1 or 3 used for each dwelling unit as per T8.4.4.8.A NECB 2011-17 - zones.each do |zone| - system_zones_hash[get_necb_thermal_zone_system_selection(zone)] = [] if system_zones_hash[get_necb_thermal_zone_system_selection(zone)].nil? - system_zones_hash[get_necb_thermal_zone_system_selection(zone)] << zone - end + if hvac_system_dwelling_units == 'NECB_Default' or hvac_system_dwelling_units.nil? - # go through each system and zones pairs to - system_zones_hash.each_pair do |system, sys_zones| - case system - when 1 - if dwelling_shared_ahu - add_sys1_unitary_ac_baseboard_heating(model: model, - necb_reference_hp: necb_reference_hp, - necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, - zones: sys_zones, - mau_type: mau_type, - mau_heating_coil_type: mau_heating_coil_type, - baseboard_type: baseboard_type, - hw_loop: @hw_loop, - multispeed: false) - else - # Create a separate air loop for each unit. - sys_zones.each do |zone| + # sort system 1 or 3 used for each dwelling unit as per T8.4.4.8.A NECB 2011-17 + zones.each do |zone| + system_zones_hash[get_necb_thermal_zone_system_selection(zone)] = [] if system_zones_hash[get_necb_thermal_zone_system_selection(zone)].nil? + system_zones_hash[get_necb_thermal_zone_system_selection(zone)] << zone + end # zone + + # go through each system and zones pairs to + system_zones_hash.each_pair do |system, sys_zones| + case system + when 1 + if dwelling_shared_ahu add_sys1_unitary_ac_baseboard_heating(model: model, necb_reference_hp: necb_reference_hp, necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, - zones: [zone], + zones: sys_zones, mau_type: mau_type, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type, hw_loop: @hw_loop, multispeed: false) - end - end - - when 3 - if dwelling_shared_ahu - add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating(model: model, - necb_reference_hp: necb_reference_hp, - necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, - zones: sys_zones, - heating_coil_type: heating_coil_type_sys3, - baseboard_type: baseboard_type, - hw_loop: @hw_loop, - multispeed: false) - else - # Create a separate air loop for each unit. - sys_zones.each do |zone| + else + # Create a separate air loop for each unit. + sys_zones.each do |zone| + add_sys1_unitary_ac_baseboard_heating(model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: [zone], + mau_type: mau_type, + mau_heating_coil_type: mau_heating_coil_type, + baseboard_type: baseboard_type, + hw_loop: @hw_loop, + multispeed: false) + end # if + end # when 1 + + when 3 + if dwelling_shared_ahu add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating(model: model, necb_reference_hp: necb_reference_hp, necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, - zones: [zone], + zones: sys_zones, heating_coil_type: heating_coil_type_sys3, baseboard_type: baseboard_type, hw_loop: @hw_loop, multispeed: false) - end - end - end - end + else + + # Create a separate air loop for each unit. + sys_zones.each do |zone| + add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating(model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: [zone], + heating_coil_type: heating_coil_type_sys3, + baseboard_type: baseboard_type, + hw_loop: @hw_loop, + multispeed: false) + end # end zone + end # end if + end # end when 3 + end # Sys_zone loop + else # New HVAC system + system_zones_hash.each_pair do |system, sys_zones| + if dwelling_shared_ahu + create_hvac_by_name( model: model, + hvac_system_name: hvac_system_washrooms, + zones: sys_zones, + hw_loop: hw_loop) # Add this method to create the system. + else + # Create a separate air loop for each unit. + sys_zones.each do |zone| + create_hvac_by_name( model: model, + hvac_system_name: hvac_system_washrooms, + zones: [zone], + hw_loop: hw_loop) # Add this method to create the system. + end # zone + end # if + end # Sys_zone loop + end # if new HVAC system end # All wet spaces will be on their own system 4 AHU. - def auto_system_wet_spaces(baseboard_type:, + def auto_system_wet_spaces(hvac_system_washrooms: 'NECB_Default', + baseboard_type:, necb_reference_hp:false, necb_reference_hp_supp_fuel:'DefaultFuel', boiler_fueltype:, @@ -1130,24 +1225,25 @@ def auto_system_wet_spaces(baseboard_type:, wet_tz.uniq! # create a system 4 for the wet zones. return if wet_tz.empty? - - add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, - necb_reference_hp: necb_reference_hp, - necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, - zones: wet_tz, - heating_coil_type: heating_coil_type_sys4, - baseboard_type: baseboard_type, - hw_loop: @hw_loop) - # add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating(model: model, - # zones: wet_tz, - # heating_coil_type: heating_coil_type_sys4, - # baseboard_type: baseboard_type, - # hw_loop: @hw_loop, - # multispeed: false) + if hvac_system_washrooms == 'NECB_Default' or hvac_system_washrooms.nil? + add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: wet_tz, + heating_coil_type: heating_coil_type_sys4, + baseboard_type: baseboard_type, + hw_loop: @hw_loop) + else + create_hvac_by_name( model: model, + hvac_system_name: hvac_system_washrooms, + zones: wet_tz, + hw_loop: hw_loop) # Add this method to create the system. + end end # All wet spaces will be on their own system 4 AHU. - def auto_system_storage_spaces(baseboard_type:, + def auto_system_storage_spaces(hvac_system_storage: 'NECB_Default', + baseboard_type:, necb_reference_hp:false, necb_reference_hp_supp_fuel:'DefaultFuel', boiler_fueltype:, @@ -1160,25 +1256,27 @@ def auto_system_storage_spaces(baseboard_type:, tz.uniq! return if tz.empty? + if hvac_system_storage == 'NECB_Default' or hvac_system_storage.nil? + # create a system 4 for the zones. + add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: tz, + heating_coil_type: heating_coil_type_sys4, + baseboard_type: baseboard_type, + hw_loop: @hw_loop) + else + create_hvac_by_name( model: model, + hvac_system_name: hvac_system_washrooms, + zones: tz, + hw_loop: hw_loop) # Add this method to create the system. + end - # create a system 4 for the zones. - add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, - necb_reference_hp: necb_reference_hp, - necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, - zones: tz, - heating_coil_type: heating_coil_type_sys4, - baseboard_type: baseboard_type, - hw_loop: @hw_loop) - # add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating(model: model, - # zones: tz, - # heating_coil_type: heating_coil_type_sys4, - # baseboard_type: baseboard_type, - # hw_loop: @hw_loop, - # multispeed: true) end # All wild spaces will be on a single system 4 ahu with the largests heating load zone being the control zone. - def auto_system_wild_spaces(baseboard_type:, + def auto_system_wild_spaces(hvac_system_corridor: 'NECB_Default', + baseboard_type:, necb_reference_hp:false, necb_reference_hp_supp_fuel:'Defaultfuel', heating_coil_type_sys4:, @@ -1191,20 +1289,22 @@ def auto_system_wild_spaces(baseboard_type:, return if zones.empty? - # create a system 4 for the wild zones. - add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, - necb_reference_hp: necb_reference_hp, - necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, - zones: zones, - heating_coil_type: heating_coil_type_sys4, - baseboard_type: baseboard_type, - hw_loop: @hw_loop) - # add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating(model: model, - # zones: zones, - # heating_coil_type: heating_coil_type_sys4, - # baseboard_type: baseboard_type, - # hw_loop: @hw_loop, - # multispeed: true) + if hvac_system_corridor == 'NECB_Default' or hvac_system_corridor.nil? + + # create a system 4 for the wild zones. + add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, + necb_reference_hp: necb_reference_hp, + necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, + zones: zones, + heating_coil_type: heating_coil_type_sys4, + baseboard_type: baseboard_type, + hw_loop: @hw_loop) + else + create_hvac_by_name( model: model, + hvac_system_name: hvac_system_corridor, + zones: zones, + hw_loop: hw_loop) # Add this method to create the system. + end end # This method will determine the control zone from the last sizing run space loads. @@ -1265,4 +1365,83 @@ def set_random_rendering_color(object, random) rendering_color.setRenderingBlueValue(random.rand(255)) return rendering_color end + + def create_hvac_by_name(model:, hvac_system_name:, zones:, hw_loop: nil) + # Get the HVAC system properties + standard = Standard.build('NECB2011') + # Get the HVAC system properties from lib/openstudio-standards/standards/necb/NECB2011/data/systems.json from description field. + hvac_system_data = standard.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_name } + raise("Could not find hvac_system_data for #{hvac_system_name}") if hvac_system_data.nil? + + + # !!!!!!!!!!!!!!!!!!Create plant loop and boiler. This is a temporary solution until Chris changes the logic for deciding if a boiler is needed. + hw_loop = OpenStudio::Model::PlantLoop.new(model) + setup_hw_loop_with_components( model, + hw_loop, + 'Electricity', + 'Electricity', + model.alwaysOnDiscreteSchedule) + + + case hvac_system_data['system'] + when 'sys_1' + add_sys1_unitary_ac_baseboard_heating_single_speed( + model: model, + necb_reference_hp: hvac_system_data['necb_reference_hp'], + necb_reference_hp_supp_fuel: hvac_system_data['necb_reference_hp_supp_fuel'], + zones: zones, + mau_type: hvac_system_data['mau_type'], + mau_heating_coil_type: hvac_system_data['mau_heating_type'], + baseboard_type: hvac_system_data['baseboard_type'], + hw_loop: hw_loop + ) + when 'sys_2' + add_sys2_FPFC_sys5_TPFC( model: model, + zones:zones, + chiller_type: hvac_system_data['chiller_type'], + fan_coil_type: hvac_system_data['fan_coil_type'], + mau_cooling_type: hvac_system_data['mau_cooling_type'], + hw_loop: hw_loop) + when 'sys_3' + add_sys3and8_single_zone_packaged_rooftop_unit_with_baseboard_heating_single_speed( + model: model, + necb_reference_hp: hvac_system_data['necb_reference_hp'], + necb_reference_hp_supp_fuel: hvac_system_data['necb_reference_hp_supp_fuel'], + zones: zones, + heating_coil_type: hvac_system_data['heating_coil_type'], + baseboard_type: hvac_system_data['baseboard_type'], + hw_loop: hw_loop, + new_auto_zoner: true) + when 'sys_4' + add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, + necb_reference_hp: hvac_system_data['necb_reference_hp'], + necb_reference_hp_supp_fuel: hvac_system_data['necb_reference_hp_supp_fuel'], + zones: zones, + heating_coil_type: hvac_system_data['heating_coil_type'], + baseboard_type: hvac_system_data['baseboard_type'], + hw_loop: hw_loop) + when 'sys_5' + add_sys2_FPFC_sys5_TPFC( model: model, + zones:zones, + chiller_type: hvac_system_data['chiller_type'], + fan_coil_type: hvac_system_data['fan_coil_type'], + mau_cooling_type: hvac_system_data['mau_cooling_type'], + hw_loop: hw_loop) + when 'sys_6' + add_sys6_multi_zone_built_up_system_with_baseboard_heating( + model:model, + zones:zones, + heating_coil_type: hvac_system_data['heating_coil_type'], + baseboard_type: hvac_system_data['baseboard_type'], + chiller_type: hvac_system_data['chiller_type'], + fan_type: hvac_system_data['fan_type'], + hw_loop: hw_loop + ) + end + + end + + + + end diff --git a/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json b/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json new file mode 100644 index 0000000000..e44370a2ac --- /dev/null +++ b/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json @@ -0,0 +1,588 @@ +{ + "tables": { + "hvac_types": { + "data_type": "table", + "refs": [ + "assumption" + ], + "table":[ + { + "description": "PSZ RTU ASHP with Gas and ASHP Coils and Hot Water Baseboard with Gas Reheat", + "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "mau_heating_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_1", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Gas and ASHP Coils and Electric Baseboard with Gas Reheat", + "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "mau_heating_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_1", + "needs_boiler": false + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP Coils and Hot Water Baseboard with Electric Reheat", + "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "mau_heating_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_1", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP Coils and Electric Baseboard with Electric Reheat", + "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "mau_heating_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_1", + "needs_boiler": false + }, + { + "description": "PSZ MAU Hot Water and DX Coils and Hot Water Baseboard with PTAC", + "name": "sys_1|doas|shr>none|sc>dx|sh>c-hw|ssf>cv|zh>b-hw|zc>ptac|srf>none|", + "baseboard_type": "Hot Water", + "mau_heating_type": "Hot Water", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_1", + "needs_boiler": true + }, + { + "description": "PSZ MAU Hot Water and DX Coils and Electric Baseboard with PTAC", + "name": "sys_1|doas|shr>none|sc>dx|sh>c-hw|ssf>cv|zh>b-e|zc>ptac|srf>none|", + "baseboard_type": "Electric", + "mau_heating_type": "Hot Water", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_1", + "needs_boiler": true + }, + { + "description": "PSZ MAU Electric and DX Coils and Hot Water Baseboard with PTAC", + "name": "sys_1|doas|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>ptac|srf>none|", + "baseboard_type": "Hot Water", + "mau_heating_type": "Electric", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_1", + "needs_boiler": true + }, + { + "description": "PSZ MAU Electric and DX Coils and Electric Baseboard with PTAC", + "name": "sys_1|doas|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>ptac|srf>none|", + "baseboard_type": "Electric", + "mau_heating_type": "Electric", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_1", + "needs_boiler": false + }, + { + "description": "FPFC MAU DX Coils with Scroll Chiller", + "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Scroll", + "fan_coil_type": "FPFC", + "mau_cooling_type": "DX", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU DX Coils with Centrifugal Chiller", + "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Centrifugal", + "fan_coil_type": "FPFC", + "mau_cooling_type": "DX", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU DX Coils with Rotary Screw Chiller", + "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "RotaryScrew", + "fan_coil_type": "FPFC", + "mau_cooling_type": "DX", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU DX Coils with Reciprocating Chiller", + "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Reciprocating", + "fan_coil_type": "FPFC", + "mau_cooling_type": "DX", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU Chilled Water Coils with Scroll Chiller", + "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Scroll", + "fan_coil_type": "FPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU Chilled Water Coils with Centrifugal Chiller", + "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Centrifugal", + "fan_coil_type": "FPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU Chilled Water Coils with Rotary Screw Chiller", + "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "RotaryScrew", + "fan_coil_type": "FPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU Chilled Water Coils with Reciprocating Chiller", + "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Reciprocating", + "fan_coil_type": "FPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard", + "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_3", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Electric Baseboard", + "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_3", + "needs_boiler": false + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Hot Water Baseboard", + "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_3", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Electric Baseboard", + "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_3", + "needs_boiler": false + }, + { + "description": "PSZ RTU Gas and DX Coils and Hot Water Baseboard", + "name": "sys_3|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "Gas", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_3", + "needs_boiler": true + }, + { + "description": "PSZ RTU Gas and DX Coils and Electric Baseboard", + "name": "sys_3|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "Gas", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_3", + "needs_boiler": false + }, + { + "description": "PSZ RTU Electric and DX Coils and Hot Water Baseboard", + "name": "sys_3|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "Electric", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_3", + "needs_boiler": true + }, + { + "description": "PSZ RTU Electric and DX Coils and Electric Baseboard", + "name": "sys_3|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "Electric", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_3", + "needs_boiler": false + }, + { + "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard", + "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "DX", + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_4", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Electric Baseboard", + "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "DX", + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_4", + "needs_boiler": false + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Hot Water Baseboard", + "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "DX", + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_4", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Electric Baseboard", + "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "DX", + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_4", + "needs_boiler": false + }, + { + "description": "PSZ RTU Gas and DX Coils and Hot Water Baseboard", + "name": "sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "Gas", + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_4", + "needs_boiler": true + }, + { + "description": "PSZ RTU Gas and DX Coils and Electric Baseboard", + "name": "sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "Gas", + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_4", + "needs_boiler": false + }, + { + "description": "PSZ RTU Electric and DX Coils and Hot Water Baseboard", + "name": "sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "Electric", + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_4", + "needs_boiler": true + }, + { + "description": "PSZ RTU Electric and DX Coils and Electric Baseboard", + "name": "sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "Electric", + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_4", + "needs_boiler": false + }, + { + "description": "TPFC MAU DX Coils with Scroll Chiller", + "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Scroll", + "fan_coil_type": "TPFC", + "mau_cooling_type": "DX", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU DX Coils with Centrifugal Chiller", + "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Centrifugal", + "fan_coil_type": "TPFC", + "mau_cooling_type": "DX", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU DX Coils with Rotary Screw Chiller", + "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "RotaryScrew", + "fan_coil_type": "TPFC", + "mau_cooling_type": "DX", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU DX Coils with Reciprocating Chiller", + "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Reciprocating", + "fan_coil_type": "TPFC", + "mau_cooling_type": "DX", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU Chilled Water Coils with Scroll Chiller", + "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Scroll", + "fan_coil_type": "TPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU Chilled Water Coils with Centrifugal Chiller", + "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Centrifugal", + "fan_coil_type": "TPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU Chilled Water Coils with Rotary Screw Chiller", + "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "RotaryScrew", + "fan_coil_type": "TPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU Chilled Water Coils with Reciprocating Chiller", + "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Reciprocating", + "fan_coil_type": "TPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "MZ BU RTU Electric Heating Coil Scroll Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Scroll", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": false + }, + { + "description": "MZ BU RTU Electric Heating Coil Centrifugal Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Centrifugal", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": false + }, + { + "description": "MZ BU RTU Electric Heating Coil Rotary Screw Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "RotaryScrew", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": false + }, + { + "description": "MZ BU RTU Electric Heating Coil Reciprocating Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Reciprocating", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": false + }, + { + "description": "MZ BU RTU Electric Heating Coil Scroll Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Scroll", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Electric Heating Coil Centrifugal Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Centrifugal", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Electric Heating Coil Rotary Screw Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "RotaryScrew", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Electric Heating Coil Reciprocating Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Reciprocating", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Scroll Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Scroll", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Centrifugal Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Centrifugal", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Rotary Screw Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "RotaryScrew", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Reciprocating Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Reciprocating", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Scroll Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Scroll", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Centrifugal Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Centrifugal", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Rotary Screw Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "RotaryScrew", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Reciprocating Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Reciprocating", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + } + ] + } + } +} \ No newline at end of file diff --git a/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb b/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb index 935bb0f120..cd4fdf7757 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb @@ -215,6 +215,11 @@ def model_create_prototype_model(template:, custom_weather_folder: nil, debug: false, sizing_run_dir: Dir.pwd, + hvac_system_primary: nil, + hvac_system_dwelling_units: nil, + hvac_system_washrooms: nil, + hvac_system_corridor: nil, + hvac_system_storage: nil, primary_heating_fuel: 'Electricity', swh_fuel: nil, dcv_type: 'NECB_Default', @@ -279,6 +284,11 @@ def model_create_prototype_model(template:, epw_file: epw_file, custom_weather_folder: custom_weather_folder, sizing_run_dir: sizing_run_dir, + hvac_system_primary: nil, + hvac_system_dwelling_units: nil, + hvac_system_washrooms: nil, + hvac_system_corridor: nil, + hvac_system_storage: nil, primary_heating_fuel: primary_heating_fuel, swh_fuel: swh_fuel, dcv_type: dcv_type, # Four options: (1) 'NECB_Default', (2) 'No_DCV', (3) 'Occupancy_based_DCV' , (4) 'CO2_based_DCV' @@ -357,6 +367,11 @@ def model_apply_standard(model:, sizing_run_dir: Dir.pwd, necb_reference_hp: false, necb_reference_hp_supp_fuel: 'DefaultFuel', + hvac_system_primary: 'NECB_Default', + hvac_system_dwelling_units: 'NECB_Default', + hvac_system_washrooms: 'NECB_Default', + hvac_system_corridor: 'NECB_Default', + hvac_system_storage: 'NECB_Default', primary_heating_fuel: 'Electricity', swh_fuel: nil, dcv_type: 'NECB_Default', @@ -474,6 +489,11 @@ def model_apply_standard(model:, apply_kiva_foundation(model) apply_systems_and_efficiencies(model: model, sizing_run_dir: sizing_run_dir, + hvac_system_primary: hvac_system_primary, + hvac_system_dwelling_units: hvac_system_dwelling_units, + hvac_system_washrooms: hvac_system_washrooms, + hvac_system_corridor: hvac_system_corridor, + hvac_system_storage: hvac_system_storage, primary_heating_fuel: primary_heating_fuel, dcv_type: dcv_type, ecm_system_name: ecm_system_name, @@ -546,6 +566,11 @@ def clean_and_scale_model(model:, rotation_degrees: nil, scale_x: nil, scale_y: def apply_systems_and_efficiencies(model:, sizing_run_dir:, + hvac_system_primary: 'NECB_Default', + hvac_system_dwelling_units: 'NECB_Default', + hvac_system_washrooms: 'NECB_Default', + hvac_system_corridor: 'NECB_Default', + hvac_system_storage: 'NECB_Default', primary_heating_fuel:, dcv_type: 'NECB_Default', ecm_system_name: 'NECB_Default', @@ -577,6 +602,11 @@ def apply_systems_and_efficiencies(model:, # Create Default Systems. apply_systems(model: model, + hvac_system_primary: hvac_system_primary, + hvac_system_dwelling_units: hvac_system_dwelling_units, + hvac_system_washrooms: hvac_system_washrooms, + hvac_system_corridor: hvac_system_corridor, + hvac_system_storage: hvac_system_storage, sizing_run_dir: sizing_run_dir, shw_scale: shw_scale, baseline_system_zones_map_option: baseline_system_zones_map_option) diff --git a/utilities/btap_cli/print_available_systems.rb b/utilities/btap_cli/print_available_systems.rb index a353bcae11..6b896578ec 100644 --- a/utilities/btap_cli/print_available_systems.rb +++ b/utilities/btap_cli/print_available_systems.rb @@ -151,7 +151,11 @@ def system3() hw_loop = nil if (baseboard_type == "Hot Water") hw_loop = OpenStudio::Model::PlantLoop.new(model) - NECB.setup_hw_loop_with_components(model, hw_loop, 'Electricity', model.alwaysOnDiscreteSchedule) + NECB.setup_hw_loop_with_components( model, + hw_loop, + 'Electricity', + 'Electricity', + model.alwaysOnDiscreteSchedule) end if (mau_type == false and necb_reference_hp == true) or @@ -197,7 +201,11 @@ def system4() hw_loop = nil if (baseboard_type == "Hot Water") hw_loop = OpenStudio::Model::PlantLoop.new(model) - NECB.setup_hw_loop_with_components(model, hw_loop, 'Electricity', model.alwaysOnDiscreteSchedule) + NECB.setup_hw_loop_with_components( model, + hw_loop, + 'Electricity', + 'Electricity', + model.alwaysOnDiscreteSchedule) end arguments = Hash[ "necb_reference_hp", necb_reference_hp, @@ -332,6 +340,16 @@ def system6() system4() system5() system6() + +$successes.each do |hash| + if hash.values.any? { |value| value == 'Hot Water' } + hash['needs_boiler'] = true + else + hash['needs_boiler'] = false + end +end + + puts ("Successes: #{$successes}") puts("Failures: #{$failures}") #Save $failures hash to the csv file. @@ -365,8 +383,8 @@ def system6() end # save $successes array of hashes as a pretty yaml file. -File.open('successes.yaml', 'w') do |file| - file.write($successes.to_yaml) +File.open('successes.json', 'w') do |file| + file.write(JSON.pretty_generate($successes)) end cvslist = ["sys_1.csv","sys_2.csv","sys_3.csv","sys_4.csv","sys_5.csv","sys_6.csv"] @@ -400,6 +418,19 @@ def system6() # Write the workbook to an Excel file workbook.write('systems.xlsx') +# --------------------------------------------- +# Iterate over the $successes array of hashes + + +# $successes.each do |success| + model = create_model() + standard = Standard.build('NECB2011') + description = 'PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard' + #description = success['description'] + puts("Creating HVAC system: #{description}") + standard.create_hvac_by_name(model: model, hvac_system_name: description, zones: model.getThermalZones, hw_loop: nil) +# end + diff --git a/utilities/btap_cli/tests/run_options.yml b/utilities/btap_cli/tests/run_options.yml index d110b1f1a7..0d7b1fcee8 100644 --- a/utilities/btap_cli/tests/run_options.yml +++ b/utilities/btap_cli/tests/run_options.yml @@ -28,6 +28,11 @@ :ground_floor_cond: NECB_Default :ground_roof_cond: NECB_Default :ground_wall_cond: NECB_Default +:hvac_system_primary: NECB_Default, +:hvac_system_dwelling_units: NECB_Default, +:hvac_system_washrooms: NECB_Default, +:hvac_system_corridor: NECB_Default, +:hvac_system_storage: NECB_Default, :infiltration_scale: NECB_Default :lights_scale: NECB_Default :lights_type: NECB_Default From 7d629e048019719851c7b76a55f44c524bbc8f48 Mon Sep 17 00:00:00 2001 From: plopez Date: Tue, 3 Dec 2024 13:07:42 +0000 Subject: [PATCH 12/38] added new fields to datapoint.rb --- .../standards/necb/common/btap_datapoint.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb b/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb index 94b5adeb7a..b09cb82af3 100644 --- a/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb +++ b/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb @@ -121,6 +121,11 @@ def initialize(input_folder: nil, epw_file: @options[:epw_file], custom_weather_folder: weather_folder, sizing_run_dir: File.join(@dp_temp_folder, 'sizing_folder'), + hvac_system_primary: @options[:hvac_system_primary], + hvac_system_dwelling_units: @options[:hvac_system_dwelling_units], + hvac_system_washrooms: @options[:hvac_system_washrooms], + hvac_system_corridor: @options[:hvac_system_corridor], + hvac_system_storage: @options[:hvac_system_storage], primary_heating_fuel: @options[:primary_heating_fuel], necb_reference_hp: @options[:necb_reference_hp], necb_reference_hp_supp_fuel: @options[:necb_reference_hp_supp_fuel], From 9cf53239eef39e7e63480e1277f5d54c9e88e642 Mon Sep 17 00:00:00 2001 From: srgilani Date: Fri, 6 Dec 2024 15:41:00 -0500 Subject: [PATCH 13/38] Revised NECB version in create_hvac_by_name method --- .../standards/necb/NECB2011/autozone.rb | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 571671f7b5..47b4b130c8 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -918,9 +918,9 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', multispeed: false) else create_hvac_by_name( model: model, - hvac_system_primary: hvac_system_primary, - hw_loop: @hw_loop, - zones: curr_zones + hvac_system_name: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones ) end end @@ -936,9 +936,9 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', hw_loop: @hw_loop) else create_hvac_by_name( model: model, - hvac_system_primary: hvac_system_primary, - hw_loop: @hw_loop, - zones: curr_zones + hvac_system_name: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones ) end end @@ -955,9 +955,9 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', multispeed: false) else create_hvac_by_name( model: model, - hvac_system_primary: hvac_system_primary, - hw_loop: @hw_loop, - zones: curr_zones + hvac_system_name: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones ) end end @@ -974,9 +974,9 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', hw_loop: @hw_loop) else create_hvac_by_name( model: model, - hvac_system_primary: hvac_system_primary, - hw_loop: @hw_loop, - zones: curr_zones + hvac_system_name: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones ) end end @@ -992,9 +992,9 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', hw_loop: @hw_loop) else create_hvac_by_name( model: model, - hvac_system_primary: hvac_system_primary, - hw_loop: @hw_loop, - zones: curr_zones + hvac_system_name: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones ) end end @@ -1019,9 +1019,9 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', end else create_hvac_by_name( model: model, - hvac_system_primary: hvac_system_primary, - hw_loop: @hw_loop, - zones: sys_zones + hvac_system_name: hvac_system_primary, + hw_loop: @hw_loop, + zones: sys_zones ) end @@ -1036,9 +1036,9 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', hw_loop: @hw_loop) else create_hvac_by_name( model: model, - hvac_system_primary: hvac_system_primary, - hw_loop: @hw_loop, - zones: curr_zones + hvac_system_name: hvac_system_primary, + hw_loop: @hw_loop, + zones: curr_zones ) end end @@ -1368,7 +1368,7 @@ def set_random_rendering_color(object, random) def create_hvac_by_name(model:, hvac_system_name:, zones:, hw_loop: nil) # Get the HVAC system properties - standard = Standard.build('NECB2011') + standard = Standard.build(@options[:template]) # Get the HVAC system properties from lib/openstudio-standards/standards/necb/NECB2011/data/systems.json from description field. hvac_system_data = standard.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_name } raise("Could not find hvac_system_data for #{hvac_system_name}") if hvac_system_data.nil? From 401cc5e8edff30dbcdaca0ff21f25d3dd2117e5b Mon Sep 17 00:00:00 2001 From: srgilani Date: Fri, 6 Dec 2024 20:44:31 -0500 Subject: [PATCH 14/38] Revised NECB version in create_hvac_by_name method --- lib/openstudio-standards/standards/necb/NECB2011/autozone.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 47b4b130c8..4d23078dc6 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -1368,7 +1368,8 @@ def set_random_rendering_color(object, random) def create_hvac_by_name(model:, hvac_system_name:, zones:, hw_loop: nil) # Get the HVAC system properties - standard = Standard.build(@options[:template]) + template = determine_spacetype_vintage(model) + standard = Standard.build(template) # Get the HVAC system properties from lib/openstudio-standards/standards/necb/NECB2011/data/systems.json from description field. hvac_system_data = standard.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_name } raise("Could not find hvac_system_data for #{hvac_system_name}") if hvac_system_data.nil? From 371b81bae88d15c5b3c4151187e999d9731c987a Mon Sep 17 00:00:00 2001 From: srgilani Date: Mon, 9 Dec 2024 17:15:59 -0500 Subject: [PATCH 15/38] Modified add_sys6_multi_zone_built_up_system_with_baseboard_heating method in NECB2011/hvac_system_6.rb as it did not add sys6 to all the zones that need, causing errors in unit tests of NV and DCV ECMs --- .../standards/necb/NECB2011/hvac_system_6.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb index 612642a52b..2a6ee665b3 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb @@ -148,7 +148,7 @@ def add_sys6_multi_zone_built_up_system_with_baseboard_heating(model:, sys_name_pars['zone_htg'] = baseboard_type sys_name_pars['zone_clg'] = 'none' sys_name_pars['sys_rf'] = 'vv' - return assign_base_sys_name(air_loop: air_loop, + assign_base_sys_name(air_loop: air_loop, sys_abbr: 'sys_6', sys_oa: 'mixed', sys_name_pars: sys_name_pars) From 9a8d8e9f4d620294ae0dd98f8b13bd4c3b255bb1 Mon Sep 17 00:00:00 2001 From: srgilani Date: Tue, 10 Dec 2024 10:24:24 -0500 Subject: [PATCH 16/38] Updated expected results of regression tests for LargeOffice and MediumOffice 2011, 2017, 2020 for both NaturalGas and Electricity as they did not have required airloops as the nrcan branch --- ...ce-NECB2011-Electricity-CAN_AB_Calgary.osm | 10366 +++++++--- ...ice-NECB2011-NaturalGas-CAN_AB_Calgary.osm | 15916 ++++++++++----- ...ce-NECB2017-Electricity-CAN_AB_Calgary.osm | 10772 +++++++--- ...ice-NECB2017-NaturalGas-CAN_AB_Calgary.osm | 16520 +++++++++++----- ...ce-NECB2020-Electricity-CAN_AB_Calgary.osm | 10734 +++++++--- ...ice-NECB2020-NaturalGas-CAN_AB_Calgary.osm | 16476 ++++++++++----- ...ce-NECB2011-Electricity-CAN_AB_Calgary.osm | 4303 +++- ...ice-NECB2011-NaturalGas-CAN_AB_Calgary.osm | 6189 ++++-- ...ce-NECB2017-Electricity-CAN_AB_Calgary.osm | 4401 +++- ...ice-NECB2017-NaturalGas-CAN_AB_Calgary.osm | 6275 ++++-- ...ce-NECB2020-Electricity-CAN_AB_Calgary.osm | 4605 ++++- ...ice-NECB2020-NaturalGas-CAN_AB_Calgary.osm | 6257 ++++-- 12 files changed, 81936 insertions(+), 30878 deletions(-) diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2011-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2011-Electricity-CAN_AB_Calgary.osm index 1fa7b942e9..75721f9a08 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2011-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2011-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0058-000000000023}, !- Object Name + {00000000-0000-0000-0062-000000000026}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.762049603789063, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0058-000000000024}, !- Object Name + {00000000-0000-0000-0062-000000000030}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.224865342415058, !- Feature Value 1 @@ -32,18 +32,66 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0012-000000000001}; !- Object Name + {00000000-0000-0000-0062-000000000027}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.34123633723931, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000028}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.34123633723931, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0062-000000000029}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.34123633723931, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000006}, !- Handle + {00000000-0000-0000-0012-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000007}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0058-000000000023}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0062-000000000026}, !- Availability Schedule + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -62,9 +110,75 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name + , !- Controller List Name + {00000000-0000-0000-0062-000000000027}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000149}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000152}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000151}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000150}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0062-000000000028}, !- Availability Schedule + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000207}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000210}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000208}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000004}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3, !- Name + , !- Controller List Name + {00000000-0000-0000-0062-000000000029}, !- Availability Schedule + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000265}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000268}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000267}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000266}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0058-000000000024}, !- Availability Schedule + {00000000-0000-0000-0062-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -104,6 +218,39 @@ OS:AirLoopHVAC:OutdoorAirSystem, {00000000-0000-0000-0017-000000000132}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000142}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0022-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000166}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000159}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000160}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000170}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000004}, !- Handle + Air Loop HVAC Outdoor Air System 4, !- Name + {00000000-0000-0000-0022-000000000004}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000224}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000217}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000218}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000228}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000005}, !- Handle + Air Loop HVAC Outdoor Air System 5, !- Name + {00000000-0000-0000-0022-000000000005}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000282}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000275}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000276}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000286}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -116,6 +263,39 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000127}, !- Outlet Node Name {00000000-0000-0000-0017-000000000145}; !- Inlet Node Name 1 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0017-000000000154}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000173}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000179}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000185}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000191}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000197}, !- Inlet Node Name 5 + {00000000-0000-0000-0017-000000000203}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000004}, !- Handle + Air Loop HVAC Zone Mixer 4, !- Name + {00000000-0000-0000-0017-000000000212}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000231}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000237}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000243}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000249}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000255}, !- Inlet Node Name 5 + {00000000-0000-0000-0017-000000000261}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000005}, !- Handle + Air Loop HVAC Zone Mixer 5, !- Name + {00000000-0000-0000-0017-000000000270}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000289}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000295}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000301}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000307}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000313}, !- Inlet Node Name 5 + {00000000-0000-0000-0017-000000000319}; !- Inlet Node Name 6 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -128,10 +308,43 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000126}, !- Inlet Node Name {00000000-0000-0000-0017-000000000146}; !- Outlet Node Name 1 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0017-000000000153}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000174}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000180}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000186}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000192}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000198}, !- Outlet Node Name 5 + {00000000-0000-0000-0017-000000000204}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000004}, !- Handle + Air Loop HVAC Zone Splitter 4, !- Name + {00000000-0000-0000-0017-000000000211}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000232}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000238}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000244}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000250}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000256}, !- Outlet Node Name 5 + {00000000-0000-0000-0017-000000000262}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000005}, !- Handle + Air Loop HVAC Zone Splitter 5, !- Name + {00000000-0000-0000-0017-000000000269}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000290}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000296}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000302}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000308}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000314}, !- Outlet Node Name 5 + {00000000-0000-0000-0017-000000000320}; !- Outlet Node Name 6 + OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000067}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000068}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -139,14 +352,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000147}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000003}, !- Reheat Coil Name + {00000000-0000-0000-0016-000000000018}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000148}, !- Air Outlet Node Name @@ -157,82 +370,517 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0055-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0044-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0044-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0044-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0044-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000245}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000246}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0055-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0044-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0044-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0044-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0044-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000251}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000252}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000257}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000258}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000263}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000009}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000264}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000291}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000011}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000292}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000297}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000013}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000298}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000008}, !- Handle + Air Terminal Single Duct VAV Reheat 16, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000303}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000014}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000304}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:Building, - {00000000-0000-0000-0010-000000000001}, !- Handle - LargeOffice, !- Name - , !- Building Sector Type - 0, !- North Axis {deg} - , !- Nominal Floor to Floor Height {m} - , !- Space Type Name - {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name - , !- Default Schedule Set Name - 13, !- Standards Number of Stories - 12, !- Standards Number of Above Ground Stories - NECB2011, !- Standards Template - LargeOffice, !- Standards Building Type - , !- Standards Number of Living Units - , !- Relocatable - ; !- Nominal Floor to Ceiling Height {m} +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000009}, !- Handle + Air Terminal Single Duct VAV Reheat 17, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000309}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000015}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000310}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:BuildingStory, - {00000000-0000-0000-0011-000000000001}, !- Handle - Basement Story 0, !- Name - -2.439, !- Nominal Z Coordinate {m} - , !- Nominal Floor to Floor Height {m} - , !- Default Construction Set Name - , !- Default Schedule Set Name - {00000000-0000-0000-0054-000000000023}, !- Group Rendering Name - ; !- Nominal Floor to Ceiling Height {m} +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000010}, !- Handle + Air Terminal Single Duct VAV Reheat 18, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000315}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000016}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000316}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000011}, !- Handle + Air Terminal Single Duct VAV Reheat 19, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000321}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000017}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000322}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000175}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000020}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000176}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 3, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000181}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000021}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000182}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 4, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000187}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000022}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000188}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 5, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000193}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000023}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000194}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000016}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000199}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000024}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000200}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000017}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000205}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000002}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000206}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000018}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000233}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000234}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000019}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000239}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000005}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000240}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000004}, !- Handle + Availability Manager Night Cycle 4, !- Name + {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000013}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000014}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000015}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000005}, !- Handle + Availability Manager Night Cycle 5, !- Name + {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000017}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000018}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000019}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name + {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name + {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000007}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000008}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:Building, + {00000000-0000-0000-0010-000000000001}, !- Handle + LargeOffice, !- Name + , !- Building Sector Type + 0, !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + , !- Space Type Name + {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name + , !- Default Schedule Set Name + 13, !- Standards Number of Stories + 12, !- Standards Number of Above Ground Stories + NECB2011, !- Standards Template + LargeOffice, !- Standards Building Type + , !- Standards Number of Living Units + , !- Relocatable + ; !- Nominal Floor to Ceiling Height {m} + +OS:BuildingStory, + {00000000-0000-0000-0011-000000000001}, !- Handle + Basement Story 0, !- Name + -2.439, !- Nominal Z Coordinate {m} + , !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {00000000-0000-0000-0058-000000000023}, !- Group Rendering Name + ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, {00000000-0000-0000-0011-000000000002}, !- Handle @@ -241,7 +889,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0054-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -251,7 +899,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0054-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -261,14 +909,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0054-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton, !- Name - 18839.7768690201, !- Reference Capacity {W} - 4.50320102432778, !- Reference COP {W/W} + Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton, !- Name + 2078476.93007681, !- Reference Capacity {W} + 5.67258064516129, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -310,9 +958,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0025-000000000009}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0025-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0027-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0025-000000000011}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0025-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0027-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -347,8 +995,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0014-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 170kBtu/hr 9.7EER, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 79kBtu/hr 9.7EER, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.36680611439836, !- Rated COP {W/W} @@ -383,7 +1031,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -398,31 +1046,274 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000001}, !- Handle - Coil Heating Electric 1, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000059}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000056}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Electric 2, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000137}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000134}; !- Air Outlet Node Name +OS:Coil:Cooling:Water, + {00000000-0000-0000-0015-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000156}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000157}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000167}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000164}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Electric 3, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name - , !- Efficiency - 13429.1124343872, !- Nominal Capacity {W} - , !- Air Inlet Node Name +OS:Coil:Cooling:Water, + {00000000-0000-0000-0015-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000214}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000215}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000225}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000222}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0015-000000000004}, !- Handle + Coil Cooling Water 4, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000272}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000273}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000283}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000280}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000001}, !- Handle + Coil Heating Electric 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000059}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000056}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000002}, !- Handle + Coil Heating Electric 10, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 16455.8840274811, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000003}, !- Handle + Coil Heating Electric 11, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000223}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000220}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000004}, !- Handle + Coil Heating Electric 12, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 521863.206481934, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000005}, !- Handle + Coil Heating Electric 13, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 28803.8040161133, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000006}, !- Handle + Coil Heating Electric 14, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 239518.954467773, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000007}, !- Handle + Coil Heating Electric 15, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 203699.336242676, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000008}, !- Handle + Coil Heating Electric 16, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 107736.966705322, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000009}, !- Handle + Coil Heating Electric 17, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 217597.975158691, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000010}, !- Handle + Coil Heating Electric 18, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000281}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000278}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000011}, !- Handle + Coil Heating Electric 19, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 53357.7684402466, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000012}, !- Handle + Coil Heating Electric 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000137}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000134}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000013}, !- Handle + Coil Heating Electric 20, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 2942.2459602356, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000014}, !- Handle + Coil Heating Electric 21, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 23778.5219192505, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000015}, !- Handle + Coil Heating Electric 22, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 19808.1024169922, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000016}, !- Handle + Coil Heating Electric 23, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 11997.4925994873, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000017}, !- Handle + Coil Heating Electric 24, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 21937.6467704773, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000018}, !- Handle + Coil Heating Electric 3, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 7891.34902954102, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000019}, !- Handle + Coil Heating Electric 4, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000165}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000162}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000020}, !- Handle + Coil Heating Electric 5, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 35953.6145210266, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000021}, !- Handle + Coil Heating Electric 6, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 2269.37075257301, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000022}, !- Handle + Coil Heating Electric 7, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 17228.0280590057, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000023}, !- Handle + Coil Heating Electric 8, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 14666.8137073517, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000024}, !- Handle + Coil Heating Electric 9, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + , !- Efficiency + 7806.96694850922, !- Nominal Capacity {W} + , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Connection, @@ -588,175 +1479,175 @@ OS:Connection, OS:Connection, {00000000-0000-0000-0017-000000000024}, !- Handle - {00000000-0000-0000-0084-000000000010}, !- Source Object + {00000000-0000-0000-0088-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000013}, !- Target Object + {00000000-0000-0000-0049-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle - {00000000-0000-0000-0084-000000000001}, !- Source Object + {00000000-0000-0000-0088-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000003}, !- Target Object + {00000000-0000-0000-0049-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle - {00000000-0000-0000-0084-000000000022}, !- Source Object + {00000000-0000-0000-0088-000000000022}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000025}, !- Target Object + {00000000-0000-0000-0049-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000027}, !- Handle - {00000000-0000-0000-0084-000000000003}, !- Source Object + {00000000-0000-0000-0088-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000005}, !- Target Object + {00000000-0000-0000-0049-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle - {00000000-0000-0000-0084-000000000016}, !- Source Object + {00000000-0000-0000-0088-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000019}, !- Target Object + {00000000-0000-0000-0049-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000029}, !- Handle - {00000000-0000-0000-0084-000000000017}, !- Source Object + {00000000-0000-0000-0088-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000020}, !- Target Object + {00000000-0000-0000-0049-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000030}, !- Handle - {00000000-0000-0000-0084-000000000005}, !- Source Object + {00000000-0000-0000-0088-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000008}, !- Target Object + {00000000-0000-0000-0049-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle - {00000000-0000-0000-0084-000000000006}, !- Source Object + {00000000-0000-0000-0088-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000009}, !- Target Object + {00000000-0000-0000-0049-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000032}, !- Handle - {00000000-0000-0000-0084-000000000018}, !- Source Object + {00000000-0000-0000-0088-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000021}, !- Target Object + {00000000-0000-0000-0049-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000033}, !- Handle - {00000000-0000-0000-0084-000000000011}, !- Source Object + {00000000-0000-0000-0088-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000014}, !- Target Object + {00000000-0000-0000-0049-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle - {00000000-0000-0000-0084-000000000019}, !- Source Object + {00000000-0000-0000-0088-000000000019}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000022}, !- Target Object + {00000000-0000-0000-0049-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000035}, !- Handle - {00000000-0000-0000-0084-000000000012}, !- Source Object + {00000000-0000-0000-0088-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000015}, !- Target Object + {00000000-0000-0000-0049-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000036}, !- Handle - {00000000-0000-0000-0084-000000000004}, !- Source Object + {00000000-0000-0000-0088-000000000004}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000007}, !- Target Object + {00000000-0000-0000-0049-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle - {00000000-0000-0000-0084-000000000002}, !- Source Object + {00000000-0000-0000-0088-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000004}, !- Target Object + {00000000-0000-0000-0049-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle - {00000000-0000-0000-0084-000000000007}, !- Source Object + {00000000-0000-0000-0088-000000000007}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000010}, !- Target Object + {00000000-0000-0000-0049-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0084-000000000020}, !- Source Object + {00000000-0000-0000-0088-000000000020}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000023}, !- Target Object + {00000000-0000-0000-0049-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle - {00000000-0000-0000-0084-000000000013}, !- Source Object + {00000000-0000-0000-0088-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000016}, !- Target Object + {00000000-0000-0000-0049-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0084-000000000021}, !- Source Object + {00000000-0000-0000-0088-000000000021}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000024}, !- Target Object + {00000000-0000-0000-0049-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle - {00000000-0000-0000-0084-000000000014}, !- Source Object + {00000000-0000-0000-0088-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000017}, !- Target Object + {00000000-0000-0000-0049-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle - {00000000-0000-0000-0084-000000000008}, !- Source Object + {00000000-0000-0000-0088-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000011}, !- Target Object + {00000000-0000-0000-0049-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0084-000000000015}, !- Source Object + {00000000-0000-0000-0088-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000018}, !- Target Object + {00000000-0000-0000-0049-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0084-000000000009}, !- Source Object + {00000000-0000-0000-0088-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000012}, !- Target Object + {00000000-0000-0000-0049-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle - {00000000-0000-0000-0084-000000000023}, !- Source Object + {00000000-0000-0000-0088-000000000023}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000113}, !- Target Object + {00000000-0000-0000-0049-000000000182}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0045-000000000119}, !- Target Object + {00000000-0000-0000-0049-000000000188}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0045-000000000120}, !- Source Object + {00000000-0000-0000-0049-000000000189}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -765,19 +1656,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000114}, !- Target Object + {00000000-0000-0000-0049-000000000183}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0045-000000000115}, !- Source Object + {00000000-0000-0000-0049-000000000184}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle - {00000000-0000-0000-0045-000000000114}, !- Source Object + {00000000-0000-0000-0049-000000000183}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -786,12 +1677,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0045-000000000115}, !- Target Object + {00000000-0000-0000-0049-000000000184}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle - {00000000-0000-0000-0045-000000000117}, !- Source Object + {00000000-0000-0000-0049-000000000186}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port @@ -800,47 +1691,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0045-000000000118}, !- Target Object + {00000000-0000-0000-0049-000000000187}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle - {00000000-0000-0000-0036-000000000001}, !- Source Object + {00000000-0000-0000-0040-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0045-000000000120}, !- Target Object + {00000000-0000-0000-0049-000000000189}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0045-000000000037}, !- Target Object + {00000000-0000-0000-0049-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle - {00000000-0000-0000-0045-000000000037}, !- Source Object + {00000000-0000-0000-0049-000000000100}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0036-000000000001}, !- Target Object + {00000000-0000-0000-0040-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0045-000000000039}, !- Target Object + {00000000-0000-0000-0049-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle - {00000000-0000-0000-0045-000000000039}, !- Source Object + {00000000-0000-0000-0049-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0045-000000000119}, !- Source Object + {00000000-0000-0000-0049-000000000188}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -849,33 +1740,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0045-000000000116}, !- Target Object + {00000000-0000-0000-0049-000000000185}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle - {00000000-0000-0000-0045-000000000116}, !- Source Object + {00000000-0000-0000-0049-000000000185}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle - {00000000-0000-0000-0045-000000000027}, !- Source Object + {00000000-0000-0000-0049-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000067}, !- Target Object + {00000000-0000-0000-0055-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle - {00000000-0000-0000-0051-000000000069}, !- Source Object + {00000000-0000-0000-0055-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0045-000000000112}, !- Target Object + {00000000-0000-0000-0049-000000000181}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle - {00000000-0000-0000-0045-000000000112}, !- Source Object + {00000000-0000-0000-0049-000000000181}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -884,12 +1775,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000026}, !- Target Object + {00000000-0000-0000-0049-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle - {00000000-0000-0000-0045-000000000026}, !- Source Object + {00000000-0000-0000-0049-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -898,40 +1789,40 @@ OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0045-000000000027}, !- Target Object + {00000000-0000-0000-0049-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0050-000000000001}, !- Source Object + {00000000-0000-0000-0054-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0045-000000000032}, !- Target Object + {00000000-0000-0000-0049-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000103}, !- Target Object + {00000000-0000-0000-0049-000000000169}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle - {00000000-0000-0000-0045-000000000033}, !- Source Object + {00000000-0000-0000-0049-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000001}, !- Target Object + {00000000-0000-0000-0054-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle - {00000000-0000-0000-0050-000000000001}, !- Source Object + {00000000-0000-0000-0054-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0045-000000000030}, !- Target Object + {00000000-0000-0000-0049-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle - {00000000-0000-0000-0045-000000000030}, !- Source Object + {00000000-0000-0000-0049-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -940,47 +1831,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000034}, !- Target Object + {00000000-0000-0000-0049-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0045-000000000031}, !- Target Object + {00000000-0000-0000-0049-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle - {00000000-0000-0000-0045-000000000031}, !- Source Object + {00000000-0000-0000-0049-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000001}, !- Target Object + {00000000-0000-0000-0054-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0045-000000000032}, !- Source Object + {00000000-0000-0000-0049-000000000086}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000001}, !- Target Object + {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Source Object + {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000105}, !- Target Object + {00000000-0000-0000-0049-000000000171}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle - {00000000-0000-0000-0045-000000000105}, !- Source Object + {00000000-0000-0000-0049-000000000171}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle - {00000000-0000-0000-0045-000000000103}, !- Source Object + {00000000-0000-0000-0049-000000000169}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -989,12 +1880,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0045-000000000104}, !- Target Object + {00000000-0000-0000-0049-000000000170}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle - {00000000-0000-0000-0045-000000000104}, !- Source Object + {00000000-0000-0000-0049-000000000170}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -1003,12 +1894,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0045-000000000109}, !- Target Object + {00000000-0000-0000-0049-000000000175}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle - {00000000-0000-0000-0045-000000000109}, !- Source Object + {00000000-0000-0000-0049-000000000175}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1017,12 +1908,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0045-000000000110}, !- Target Object + {00000000-0000-0000-0049-000000000176}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle - {00000000-0000-0000-0045-000000000110}, !- Source Object + {00000000-0000-0000-0049-000000000176}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -1031,26 +1922,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0045-000000000089}, !- Target Object + {00000000-0000-0000-0049-000000000155}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle - {00000000-0000-0000-0045-000000000089}, !- Source Object + {00000000-0000-0000-0049-000000000155}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000001}, !- Target Object + {00000000-0000-0000-0053-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle - {00000000-0000-0000-0049-000000000001}, !- Source Object + {00000000-0000-0000-0053-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000090}, !- Target Object + {00000000-0000-0000-0049-000000000156}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle - {00000000-0000-0000-0045-000000000090}, !- Source Object + {00000000-0000-0000-0049-000000000156}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1059,54 +1950,54 @@ OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0045-000000000091}, !- Target Object + {00000000-0000-0000-0049-000000000157}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle - {00000000-0000-0000-0045-000000000091}, !- Source Object + {00000000-0000-0000-0049-000000000157}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000002}, !- Target Object + {00000000-0000-0000-0053-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle - {00000000-0000-0000-0049-000000000002}, !- Source Object + {00000000-0000-0000-0053-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000033}, !- Target Object + {00000000-0000-0000-0049-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0050-000000000002}, !- Source Object + {00000000-0000-0000-0054-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0045-000000000042}, !- Target Object + {00000000-0000-0000-0049-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000044}, !- Target Object + {00000000-0000-0000-0049-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle - {00000000-0000-0000-0045-000000000043}, !- Source Object + {00000000-0000-0000-0049-000000000109}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000002}, !- Target Object + {00000000-0000-0000-0054-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle - {00000000-0000-0000-0050-000000000002}, !- Source Object + {00000000-0000-0000-0054-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0045-000000000040}, !- Target Object + {00000000-0000-0000-0049-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle - {00000000-0000-0000-0045-000000000040}, !- Source Object + {00000000-0000-0000-0049-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1115,47 +2006,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000101}, !- Target Object + {00000000-0000-0000-0049-000000000167}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0045-000000000041}, !- Target Object + {00000000-0000-0000-0049-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle - {00000000-0000-0000-0045-000000000041}, !- Source Object + {00000000-0000-0000-0049-000000000107}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000002}, !- Target Object + {00000000-0000-0000-0054-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0045-000000000042}, !- Source Object + {00000000-0000-0000-0049-000000000108}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000002}, !- Target Object + {00000000-0000-0000-0057-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle - {00000000-0000-0000-0053-000000000002}, !- Source Object + {00000000-0000-0000-0057-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000106}, !- Target Object + {00000000-0000-0000-0049-000000000172}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle - {00000000-0000-0000-0045-000000000106}, !- Source Object + {00000000-0000-0000-0049-000000000172}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle - {00000000-0000-0000-0045-000000000044}, !- Source Object + {00000000-0000-0000-0049-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0024-000000000001}, !- Target Object 2; !- Inlet Port @@ -1164,12 +2055,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle {00000000-0000-0000-0024-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000045}, !- Target Object + {00000000-0000-0000-0049-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle - {00000000-0000-0000-0045-000000000045}, !- Source Object + {00000000-0000-0000-0049-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -1178,26 +2069,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0045-000000000092}, !- Target Object + {00000000-0000-0000-0049-000000000158}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle - {00000000-0000-0000-0045-000000000092}, !- Source Object + {00000000-0000-0000-0049-000000000158}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000003}, !- Target Object + {00000000-0000-0000-0053-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle - {00000000-0000-0000-0049-000000000003}, !- Source Object + {00000000-0000-0000-0053-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000093}, !- Target Object + {00000000-0000-0000-0049-000000000159}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle - {00000000-0000-0000-0045-000000000093}, !- Source Object + {00000000-0000-0000-0049-000000000159}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -1206,26 +2097,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0045-000000000094}, !- Target Object + {00000000-0000-0000-0049-000000000160}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle - {00000000-0000-0000-0045-000000000094}, !- Source Object + {00000000-0000-0000-0049-000000000160}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000004}, !- Target Object + {00000000-0000-0000-0053-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle - {00000000-0000-0000-0049-000000000004}, !- Source Object + {00000000-0000-0000-0053-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000043}, !- Target Object + {00000000-0000-0000-0049-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0045-000000000101}, !- Source Object + {00000000-0000-0000-0049-000000000167}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -1234,12 +2125,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0045-000000000102}, !- Target Object + {00000000-0000-0000-0049-000000000168}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0045-000000000102}, !- Source Object + {00000000-0000-0000-0049-000000000168}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 3; !- Inlet Port @@ -1248,12 +2139,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0045-000000000107}, !- Target Object + {00000000-0000-0000-0049-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0045-000000000107}, !- Source Object + {00000000-0000-0000-0049-000000000173}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -1262,47 +2153,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0045-000000000108}, !- Target Object + {00000000-0000-0000-0049-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0045-000000000108}, !- Source Object + {00000000-0000-0000-0049-000000000174}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000122}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0045-000000000126}, !- Target Object + {00000000-0000-0000-0049-000000000216}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0045-000000000127}, !- Source Object + {00000000-0000-0000-0049-000000000217}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000121}, !- Target Object + {00000000-0000-0000-0049-000000000211}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000125}, !- Handle - {00000000-0000-0000-0045-000000000122}, !- Source Object + {00000000-0000-0000-0049-000000000212}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0045-000000000121}, !- Source Object + {00000000-0000-0000-0049-000000000211}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -1311,12 +2202,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000127}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0045-000000000122}, !- Target Object + {00000000-0000-0000-0049-000000000212}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000128}, !- Handle - {00000000-0000-0000-0045-000000000034}, !- Source Object + {00000000-0000-0000-0049-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 10; !- Inlet Port @@ -1325,19 +2216,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000129}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0045-000000000036}, !- Target Object + {00000000-0000-0000-0049-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000130}, !- Handle - {00000000-0000-0000-0045-000000000036}, !- Source Object + {00000000-0000-0000-0049-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0045-000000000124}, !- Source Object + {00000000-0000-0000-0049-000000000214}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 6; !- Inlet Port @@ -1346,96 +2237,96 @@ OS:Connection, {00000000-0000-0000-0017-000000000132}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0045-000000000125}, !- Target Object + {00000000-0000-0000-0049-000000000215}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0037-000000000002}, !- Source Object + {00000000-0000-0000-0041-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0045-000000000127}, !- Target Object + {00000000-0000-0000-0049-000000000217}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000134}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object + {00000000-0000-0000-0016-000000000012}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0045-000000000038}, !- Target Object + {00000000-0000-0000-0049-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0045-000000000038}, !- Source Object + {00000000-0000-0000-0049-000000000103}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0037-000000000002}, !- Target Object + {00000000-0000-0000-0041-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000136}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0045-000000000035}, !- Target Object + {00000000-0000-0000-0049-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000137}, !- Handle - {00000000-0000-0000-0045-000000000035}, !- Source Object + {00000000-0000-0000-0049-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object + {00000000-0000-0000-0016-000000000012}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000138}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0045-000000000123}, !- Target Object + {00000000-0000-0000-0049-000000000213}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000139}, !- Handle - {00000000-0000-0000-0045-000000000123}, !- Source Object + {00000000-0000-0000-0049-000000000213}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0045-000000000126}, !- Source Object + {00000000-0000-0000-0049-000000000216}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0037-000000000001}, !- Target Object + {00000000-0000-0000-0041-000000000004}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000141}, !- Handle - {00000000-0000-0000-0037-000000000001}, !- Source Object + {00000000-0000-0000-0041-000000000004}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0045-000000000111}, !- Target Object + {00000000-0000-0000-0049-000000000180}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000142}, !- Handle - {00000000-0000-0000-0045-000000000111}, !- Source Object + {00000000-0000-0000-0049-000000000180}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000143}, !- Handle - {00000000-0000-0000-0045-000000000029}, !- Source Object + {00000000-0000-0000-0049-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000037}, !- Target Object + {00000000-0000-0000-0055-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000144}, !- Handle - {00000000-0000-0000-0051-000000000039}, !- Source Object + {00000000-0000-0000-0055-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0045-000000000006}, !- Target Object + {00000000-0000-0000-0049-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0045-000000000006}, !- Source Object + {00000000-0000-0000-0049-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -1444,12 +2335,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000146}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000028}, !- Target Object + {00000000-0000-0000-0049-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000147}, !- Handle - {00000000-0000-0000-0045-000000000028}, !- Source Object + {00000000-0000-0000-0049-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -1458,782 +2349,2003 @@ OS:Connection, {00000000-0000-0000-0017-000000000148}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0045-000000000029}, !- Target Object + {00000000-0000-0000-0049-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0050-000000000003}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0045-000000000063}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0049-000000000195}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000150}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object + {00000000-0000-0000-0049-000000000196}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000151}, !- Handle - {00000000-0000-0000-0045-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000003}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000190}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0050-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0045-000000000061}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000191}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000153}, !- Handle - {00000000-0000-0000-0045-000000000061}, !- Source Object + {00000000-0000-0000-0049-000000000190}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000006}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000097}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000191}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000155}, !- Handle - {00000000-0000-0000-0045-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000003}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0019-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000091}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0045-000000000063}, !- Source Object + {00000000-0000-0000-0049-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000157}, !- Handle - {00000000-0000-0000-0052-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000060}, !- Target Object + {00000000-0000-0000-0015-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0045-000000000060}, !- Source Object + {00000000-0000-0000-0049-000000000093}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000005}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0045-000000000001}, !- Source Object + {00000000-0000-0000-0049-000000000193}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0088-000000000001}, !- Target Object - 31; !- Inlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000160}, !- Handle - {00000000-0000-0000-0088-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0045-000000000002}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000194}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000161}, !- Handle - {00000000-0000-0000-0045-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0041-000000000005}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000196}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000162}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0045-000000000095}, !- Target Object + {00000000-0000-0000-0016-000000000019}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0045-000000000095}, !- Source Object + {00000000-0000-0000-0049-000000000104}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000005}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0041-000000000005}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0049-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000096}, !- Target Object + {00000000-0000-0000-0015-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000165}, !- Handle - {00000000-0000-0000-0045-000000000096}, !- Source Object + {00000000-0000-0000-0049-000000000092}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0016-000000000019}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0045-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000006}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000192}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000167}, !- Handle - {00000000-0000-0000-0049-000000000006}, !- Source Object + {00000000-0000-0000-0049-000000000192}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000098}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0045-000000000098}, !- Source Object + {00000000-0000-0000-0049-000000000195}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0041-000000000001}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000169}, !- Handle - {00000000-0000-0000-0018-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0045-000000000099}, !- Target Object + {00000000-0000-0000-0041-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000177}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0045-000000000099}, !- Source Object + {00000000-0000-0000-0049-000000000177}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000007}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000171}, !- Handle - {00000000-0000-0000-0049-000000000007}, !- Source Object + {00000000-0000-0000-0049-000000000069}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000064}, !- Target Object + {00000000-0000-0000-0055-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0018-000000000006}, !- Source Object + {00000000-0000-0000-0055-000000000045}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0045-000000000100}, !- Target Object + {00000000-0000-0000-0049-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0045-000000000100}, !- Source Object + {00000000-0000-0000-0049-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000008}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000174}, !- Handle - {00000000-0000-0000-0049-000000000008}, !- Source Object + {00000000-0000-0000-0005-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000062}, !- Target Object + {00000000-0000-0000-0049-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000175}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0045-000000000046}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000068}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000012}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000176}, !- Handle - {00000000-0000-0000-0045-000000000046}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000001}, !- Target Object + {00000000-0000-0000-0007-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Source Object + {00000000-0000-0000-0049-000000000071}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000047}, !- Target Object + {00000000-0000-0000-0055-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0045-000000000047}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 4; !- Inlet Port - + {00000000-0000-0000-0055-000000000021}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000008}, !- Target Object + 2; !- Inlet Port + OS:Connection, {00000000-0000-0000-0017-000000000179}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0045-000000000048}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0045-000000000048}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000002}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000181}, !- Handle - {00000000-0000-0000-0090-000000000002}, !- Source Object + {00000000-0000-0000-0049-000000000070}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000049}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000013}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0045-000000000049}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0007-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000071}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000183}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0045-000000000050}, !- Target Object + {00000000-0000-0000-0049-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0045-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000003}, !- Target Object + {00000000-0000-0000-0055-000000000066}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000185}, !- Handle - {00000000-0000-0000-0090-000000000003}, !- Source Object + {00000000-0000-0000-0049-000000000016}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000051}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0045-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000072}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0045-000000000052}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000072}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000014}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000188}, !- Handle - {00000000-0000-0000-0045-000000000052}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000004}, !- Target Object + {00000000-0000-0000-0007-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000073}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000189}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- Source Object + {00000000-0000-0000-0049-000000000075}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000053}, !- Target Object + {00000000-0000-0000-0055-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000190}, !- Handle - {00000000-0000-0000-0045-000000000053}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0055-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000010}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0045-000000000054}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0045-000000000054}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000005}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000074}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000193}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- Source Object + {00000000-0000-0000-0049-000000000074}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000055}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000015}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0045-000000000055}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0007-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000075}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000195}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0045-000000000056}, !- Target Object + {00000000-0000-0000-0049-000000000077}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0045-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000006}, !- Target Object + {00000000-0000-0000-0055-000000000060}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000197}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- Source Object + {00000000-0000-0000-0049-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000057}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0045-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000076}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000199}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0045-000000000058}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000076}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000016}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0045-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000007}, !- Target Object + {00000000-0000-0000-0007-000000000016}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- Source Object + {00000000-0000-0000-0049-000000000079}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000059}, !- Target Object + {00000000-0000-0000-0055-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000202}, !- Handle - {00000000-0000-0000-0045-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0055-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000018}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000203}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0045-000000000065}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000204}, !- Handle - {00000000-0000-0000-0045-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000008}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0049-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- Source Object + {00000000-0000-0000-0049-000000000078}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000066}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000017}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0045-000000000066}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 11; !- Inlet Port + {00000000-0000-0000-0007-000000000017}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000079}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000207}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0045-000000000067}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0049-000000000202}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000208}, !- Handle - {00000000-0000-0000-0045-000000000067}, !- Source Object + {00000000-0000-0000-0049-000000000203}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0090-000000000009}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000068}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000197}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000210}, !- Handle - {00000000-0000-0000-0045-000000000068}, !- Source Object + {00000000-0000-0000-0049-000000000198}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0045-000000000069}, !- Target Object + {00000000-0000-0000-0049-000000000197}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000212}, !- Handle - {00000000-0000-0000-0045-000000000069}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000010}, !- Target Object + {00000000-0000-0000-0004-000000000004}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000198}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0045-000000000070}, !- Target Object + {00000000-0000-0000-0019-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0045-000000000070}, !- Source Object + {00000000-0000-0000-0049-000000000094}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 13; !- Inlet Port + {00000000-0000-0000-0015-000000000003}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000215}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0045-000000000071}, !- Target Object + {00000000-0000-0000-0015-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0045-000000000071}, !- Source Object + {00000000-0000-0000-0049-000000000096}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0090-000000000011}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000217}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- Source Object + {00000000-0000-0000-0049-000000000200}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000072}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000218}, !- Handle - {00000000-0000-0000-0045-000000000072}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0003-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000201}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000219}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0045-000000000073}, !- Target Object + {00000000-0000-0000-0041-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000203}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000220}, !- Handle - {00000000-0000-0000-0045-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000012}, !- Target Object + {00000000-0000-0000-0016-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- Source Object + {00000000-0000-0000-0049-000000000101}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000074}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0041-000000000006}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000222}, !- Handle - {00000000-0000-0000-0045-000000000074}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0015-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000095}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0045-000000000075}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000095}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0045-000000000075}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000013}, !- Target Object + {00000000-0000-0000-0003-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000199}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000225}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- Source Object + {00000000-0000-0000-0049-000000000199}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000076}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000003}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0045-000000000076}, !- Source Object + {00000000-0000-0000-0049-000000000202}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object + {00000000-0000-0000-0041-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000227}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object + {00000000-0000-0000-0041-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0045-000000000077}, !- Target Object + {00000000-0000-0000-0049-000000000178}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0045-000000000077}, !- Source Object + {00000000-0000-0000-0049-000000000178}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0090-000000000014}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000229}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- Source Object + {00000000-0000-0000-0049-000000000081}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000078}, !- Target Object + {00000000-0000-0000-0055-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000230}, !- Handle - {00000000-0000-0000-0045-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0055-000000000057}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000026}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0045-000000000079}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000026}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000232}, !- Handle - {00000000-0000-0000-0045-000000000079}, !- Source Object + {00000000-0000-0000-0005-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0090-000000000015}, !- Target Object + {00000000-0000-0000-0049-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000233}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- Source Object + {00000000-0000-0000-0049-000000000080}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000080}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000018}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0045-000000000080}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0007-000000000018}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000081}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000235}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0045-000000000081}, !- Target Object + {00000000-0000-0000-0049-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0045-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000016}, !- Target Object + {00000000-0000-0000-0055-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000237}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- Source Object + {00000000-0000-0000-0049-000000000024}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000082}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0045-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 19; !- Inlet Port + {00000000-0000-0000-0005-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000082}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000239}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0045-000000000083}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000019}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0045-000000000083}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000017}, !- Target Object + {00000000-0000-0000-0007-000000000019}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000241}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- Source Object + {00000000-0000-0000-0049-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000084}, !- Target Object + {00000000-0000-0000-0055-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0045-000000000084}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 20; !- Inlet Port + {00000000-0000-0000-0055-000000000036}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000022}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000243}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0045-000000000085}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0049-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0045-000000000085}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000018}, !- Target Object + {00000000-0000-0000-0005-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000245}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- Source Object + {00000000-0000-0000-0049-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000086}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000002}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0045-000000000086}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 21; !- Inlet Port + {00000000-0000-0000-0007-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000049}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000247}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0045-000000000087}, !- Target Object + {00000000-0000-0000-0049-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0045-000000000087}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000019}, !- Target Object + {00000000-0000-0000-0055-000000000030}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000249}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- Source Object + {00000000-0000-0000-0049-000000000020}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000088}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0045-000000000088}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 22; !- Inlet Port + {00000000-0000-0000-0005-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000050}, !- Target Object + 2; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000001}, !- Handle - Connector Mixer 1, !- Name - {00000000-0000-0000-0017-000000000091}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000082}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000086}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000090}; !- Inlet Branch Name 3 +OS:Connection, + {00000000-0000-0000-0017-000000000251}, !- Handle + {00000000-0000-0000-0049-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000003}, !- Target Object + 3; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000002}, !- Handle - Connector Mixer 2, !- Name - {00000000-0000-0000-0017-000000000075}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000130}; !- Inlet Branch Name 1 +OS:Connection, + {00000000-0000-0000-0017-000000000252}, !- Handle + {00000000-0000-0000-0007-000000000003}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000051}, !- Target Object + 2; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000003}, !- Handle - Connector Mixer 3, !- Name - {00000000-0000-0000-0017-000000000112}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000107}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000111}; !- Inlet Branch Name 2 +OS:Connection, + {00000000-0000-0000-0017-000000000253}, !- Handle + {00000000-0000-0000-0049-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000061}, !- Target Object + 2; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0018-000000000004}, !- Handle - Connector Mixer 4, !- Name - {00000000-0000-0000-0017-000000000100}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000117}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000121}; !- Inlet Branch Name 2 +OS:Connection, + {00000000-0000-0000-0017-000000000254}, !- Handle + {00000000-0000-0000-0055-000000000063}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000028}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000255}, !- Handle + {00000000-0000-0000-0049-000000000028}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000256}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000257}, !- Handle + {00000000-0000-0000-0049-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000258}, !- Handle + {00000000-0000-0000-0007-000000000004}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000053}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000259}, !- Handle + {00000000-0000-0000-0049-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000260}, !- Handle + {00000000-0000-0000-0055-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000030}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000261}, !- Handle + {00000000-0000-0000-0049-000000000030}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000262}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0049-000000000054}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000263}, !- Handle + {00000000-0000-0000-0049-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000264}, !- Handle + {00000000-0000-0000-0007-000000000005}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000265}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0049-000000000209}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000266}, !- Handle + {00000000-0000-0000-0049-000000000210}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000267}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000204}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000268}, !- Handle + {00000000-0000-0000-0049-000000000205}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000269}, !- Handle + {00000000-0000-0000-0049-000000000204}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000270}, !- Handle + {00000000-0000-0000-0004-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000205}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000271}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000097}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000272}, !- Handle + {00000000-0000-0000-0049-000000000097}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000273}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000099}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000274}, !- Handle + {00000000-0000-0000-0049-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000275}, !- Handle + {00000000-0000-0000-0049-000000000207}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000276}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000208}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000277}, !- Handle + {00000000-0000-0000-0041-000000000007}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000210}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000278}, !- Handle + {00000000-0000-0000-0016-000000000010}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000102}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000279}, !- Handle + {00000000-0000-0000-0049-000000000102}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000007}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000280}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000098}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000281}, !- Handle + {00000000-0000-0000-0049-000000000098}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000010}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000282}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000206}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000283}, !- Handle + {00000000-0000-0000-0049-000000000206}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000284}, !- Handle + {00000000-0000-0000-0049-000000000209}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000285}, !- Handle + {00000000-0000-0000-0041-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000179}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000286}, !- Handle + {00000000-0000-0000-0049-000000000179}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000287}, !- Handle + {00000000-0000-0000-0049-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000288}, !- Handle + {00000000-0000-0000-0055-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000289}, !- Handle + {00000000-0000-0000-0049-000000000040}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000290}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000291}, !- Handle + {00000000-0000-0000-0049-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000006}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000292}, !- Handle + {00000000-0000-0000-0007-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000293}, !- Handle + {00000000-0000-0000-0049-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000294}, !- Handle + {00000000-0000-0000-0055-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000295}, !- Handle + {00000000-0000-0000-0049-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000296}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000297}, !- Handle + {00000000-0000-0000-0049-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000007}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000298}, !- Handle + {00000000-0000-0000-0007-000000000007}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000299}, !- Handle + {00000000-0000-0000-0049-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000300}, !- Handle + {00000000-0000-0000-0055-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000032}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000301}, !- Handle + {00000000-0000-0000-0049-000000000032}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000302}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000303}, !- Handle + {00000000-0000-0000-0049-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000304}, !- Handle + {00000000-0000-0000-0007-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000305}, !- Handle + {00000000-0000-0000-0049-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000025}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000306}, !- Handle + {00000000-0000-0000-0055-000000000027}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000034}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000307}, !- Handle + {00000000-0000-0000-0049-000000000034}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000308}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000309}, !- Handle + {00000000-0000-0000-0049-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000310}, !- Handle + {00000000-0000-0000-0007-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000311}, !- Handle + {00000000-0000-0000-0049-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000312}, !- Handle + {00000000-0000-0000-0055-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000038}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000313}, !- Handle + {00000000-0000-0000-0049-000000000038}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000314}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000315}, !- Handle + {00000000-0000-0000-0049-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000316}, !- Handle + {00000000-0000-0000-0007-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000065}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000317}, !- Handle + {00000000-0000-0000-0049-000000000067}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000318}, !- Handle + {00000000-0000-0000-0055-000000000009}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000042}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000319}, !- Handle + {00000000-0000-0000-0049-000000000042}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000320}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0049-000000000066}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000321}, !- Handle + {00000000-0000-0000-0049-000000000066}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000322}, !- Handle + {00000000-0000-0000-0007-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000067}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000323}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0049-000000000129}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000324}, !- Handle + {00000000-0000-0000-0019-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000325}, !- Handle + {00000000-0000-0000-0049-000000000130}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000003}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000326}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000127}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000327}, !- Handle + {00000000-0000-0000-0049-000000000127}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000328}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000163}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000329}, !- Handle + {00000000-0000-0000-0049-000000000128}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000003}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000330}, !- Handle + {00000000-0000-0000-0049-000000000129}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000331}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000126}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000332}, !- Handle + {00000000-0000-0000-0049-000000000126}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000333}, !- Handle + {00000000-0000-0000-0049-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0092-000000000001}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000334}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0049-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000335}, !- Handle + {00000000-0000-0000-0049-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000336}, !- Handle + {00000000-0000-0000-0019-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000161}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000337}, !- Handle + {00000000-0000-0000-0049-000000000161}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000338}, !- Handle + {00000000-0000-0000-0053-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000162}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000339}, !- Handle + {00000000-0000-0000-0049-000000000162}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000340}, !- Handle + {00000000-0000-0000-0049-000000000163}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000341}, !- Handle + {00000000-0000-0000-0053-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000164}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000342}, !- Handle + {00000000-0000-0000-0049-000000000164}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000343}, !- Handle + {00000000-0000-0000-0018-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000165}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000344}, !- Handle + {00000000-0000-0000-0049-000000000165}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000345}, !- Handle + {00000000-0000-0000-0053-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000130}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000346}, !- Handle + {00000000-0000-0000-0018-000000000006}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000166}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000347}, !- Handle + {00000000-0000-0000-0049-000000000166}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000348}, !- Handle + {00000000-0000-0000-0053-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000128}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000349}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000112}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000350}, !- Handle + {00000000-0000-0000-0049-000000000112}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000351}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000113}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000352}, !- Handle + {00000000-0000-0000-0049-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000353}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000114}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000354}, !- Handle + {00000000-0000-0000-0049-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000355}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000115}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000356}, !- Handle + {00000000-0000-0000-0049-000000000115}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000357}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000116}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000358}, !- Handle + {00000000-0000-0000-0049-000000000116}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000003}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000359}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000117}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000360}, !- Handle + {00000000-0000-0000-0049-000000000117}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000361}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000118}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000362}, !- Handle + {00000000-0000-0000-0049-000000000118}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000363}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000119}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000364}, !- Handle + {00000000-0000-0000-0049-000000000119}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000365}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0049-000000000120}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000366}, !- Handle + {00000000-0000-0000-0049-000000000120}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000367}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000121}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000368}, !- Handle + {00000000-0000-0000-0049-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000369}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0049-000000000122}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000370}, !- Handle + {00000000-0000-0000-0049-000000000122}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000371}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000123}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000372}, !- Handle + {00000000-0000-0000-0049-000000000123}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000373}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0049-000000000124}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000374}, !- Handle + {00000000-0000-0000-0049-000000000124}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000375}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000125}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000376}, !- Handle + {00000000-0000-0000-0049-000000000125}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000377}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000131}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000378}, !- Handle + {00000000-0000-0000-0049-000000000131}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000379}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000132}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000380}, !- Handle + {00000000-0000-0000-0049-000000000132}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000381}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000133}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000382}, !- Handle + {00000000-0000-0000-0049-000000000133}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000383}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000134}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000384}, !- Handle + {00000000-0000-0000-0049-000000000134}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000385}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000135}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000386}, !- Handle + {00000000-0000-0000-0049-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000387}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000136}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000388}, !- Handle + {00000000-0000-0000-0049-000000000136}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 13; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000389}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0049-000000000137}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000390}, !- Handle + {00000000-0000-0000-0049-000000000137}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000011}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000391}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000138}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000392}, !- Handle + {00000000-0000-0000-0049-000000000138}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000393}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0049-000000000139}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000394}, !- Handle + {00000000-0000-0000-0049-000000000139}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000395}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000140}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000396}, !- Handle + {00000000-0000-0000-0049-000000000140}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000397}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0049-000000000141}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000398}, !- Handle + {00000000-0000-0000-0049-000000000141}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000399}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000142}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000400}, !- Handle + {00000000-0000-0000-0049-000000000142}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000401}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000143}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000402}, !- Handle + {00000000-0000-0000-0049-000000000143}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000403}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000144}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000404}, !- Handle + {00000000-0000-0000-0049-000000000144}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000405}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0049-000000000145}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000406}, !- Handle + {00000000-0000-0000-0049-000000000145}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000015}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000407}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000146}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000408}, !- Handle + {00000000-0000-0000-0049-000000000146}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000409}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0049-000000000147}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000410}, !- Handle + {00000000-0000-0000-0049-000000000147}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000411}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000148}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000412}, !- Handle + {00000000-0000-0000-0049-000000000148}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000413}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0049-000000000149}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000414}, !- Handle + {00000000-0000-0000-0049-000000000149}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000017}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000415}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000150}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000416}, !- Handle + {00000000-0000-0000-0049-000000000150}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000417}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0049-000000000151}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000418}, !- Handle + {00000000-0000-0000-0049-000000000151}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000419}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000152}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000420}, !- Handle + {00000000-0000-0000-0049-000000000152}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000421}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0049-000000000153}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000422}, !- Handle + {00000000-0000-0000-0049-000000000153}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000019}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000423}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000154}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000424}, !- Handle + {00000000-0000-0000-0049-000000000154}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 22; !- Inlet Port + +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000001}, !- Handle + Connector Mixer 1, !- Name + {00000000-0000-0000-0017-000000000091}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000082}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000086}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000090}; !- Inlet Branch Name 3 + +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000002}, !- Handle + Connector Mixer 2, !- Name + {00000000-0000-0000-0017-000000000075}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000130}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000158}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000216}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000274}; !- Inlet Branch Name 4 + +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000003}, !- Handle + Connector Mixer 3, !- Name + {00000000-0000-0000-0017-000000000112}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000107}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000111}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0018-000000000004}, !- Handle + Connector Mixer 4, !- Name + {00000000-0000-0000-0017-000000000100}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000117}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000121}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0017-000000000169}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000161}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000165}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000343}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000335}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000339}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0017-000000000172}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000168}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000178}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000182}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000186}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000190}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000194}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000198}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000202}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000206}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000210}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000214}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000218}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000222}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000226}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000230}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000234}, !- Inlet Branch Name 16 - {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 17 - {00000000-0000-0000-0017-000000000242}, !- Inlet Branch Name 18 - {00000000-0000-0000-0017-000000000246}, !- Inlet Branch Name 19 - {00000000-0000-0000-0017-000000000250}; !- Inlet Branch Name 20 + {00000000-0000-0000-0017-000000000346}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000342}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000352}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000356}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000360}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000364}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000368}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000372}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000376}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000380}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000384}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000388}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000392}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000396}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000400}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000404}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000408}, !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000412}, !- Inlet Branch Name 17 + {00000000-0000-0000-0017-000000000416}, !- Inlet Branch Name 18 + {00000000-0000-0000-0017-000000000420}, !- Inlet Branch Name 19 + {00000000-0000-0000-0017-000000000424}; !- Inlet Branch Name 20 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -2247,7 +4359,10 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0017-000000000073}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000074}; !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000074}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000155}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000213}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000271}; !- Outlet Branch Name 4 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -2266,303 +4381,324 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0017-000000000158}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000150}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000162}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000332}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000324}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000336}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0017-000000000153}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000154}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000175}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000179}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000183}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000187}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000191}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000195}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000199}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000203}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000207}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000211}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000215}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000219}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000223}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000227}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000231}, !- Outlet Branch Name 16 - {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 17 - {00000000-0000-0000-0017-000000000239}, !- Outlet Branch Name 18 - {00000000-0000-0000-0017-000000000243}, !- Outlet Branch Name 19 - {00000000-0000-0000-0017-000000000247}; !- Outlet Branch Name 20 + {00000000-0000-0000-0017-000000000327}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000328}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000349}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000353}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000357}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000361}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000365}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000369}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000373}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000377}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000381}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000385}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000389}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000393}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000397}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000401}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000405}, !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000409}, !- Outlet Branch Name 17 + {00000000-0000-0000-0017-000000000413}, !- Outlet Branch Name 18 + {00000000-0000-0000-0017-000000000417}, !- Outlet Branch Name 19 + {00000000-0000-0000-0017-000000000421}; !- Outlet Branch Name 20 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle BTAP-Ext-DaylightDiffuser, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000001}; !- Layer 1 + {00000000-0000-0000-0098-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000002}, !- Handle BTAP-Ext-DaylightDiffuser:U=0.220 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000002}; !- Layer 1 + {00000000-0000-0000-0098-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000003}, !- Handle BTAP-Ext-DaylightDomes, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000001}; !- Layer 1 + {00000000-0000-0000-0098-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000004}, !- Handle BTAP-Ext-DaylightDomes:U=0.220 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000002}; !- Layer 1 + {00000000-0000-0000-0098-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000005}, !- Handle BTAP-Ext-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000018}, !- Layer 1 - {00000000-0000-0000-0043-000000000013}; !- Layer 2 + {00000000-0000-0000-0046-000000000018}, !- Layer 1 + {00000000-0000-0000-0047-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000006}, !- Handle BTAP-Ext-Door:U-2.2, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000017}, !- Layer 1 - {00000000-0000-0000-0043-000000000011}; !- Layer 2 + {00000000-0000-0000-0046-000000000017}, !- Layer 1 + {00000000-0000-0000-0047-000000000011}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000007}, !- Handle BTAP-Ext-FixedWindow, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000001}; !- Layer 1 + {00000000-0000-0000-0098-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000008}, !- Handle BTAP-Ext-FixedWindow:U=0.220 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000002}; !- Layer 1 + {00000000-0000-0000-0098-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000009}, !- Handle BTAP-Ext-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000013}, !- Layer 1 - {00000000-0000-0000-0042-000000000008}, !- Layer 2 - {00000000-0000-0000-0043-000000000007}; !- Layer 3 + {00000000-0000-0000-0047-000000000013}, !- Layer 1 + {00000000-0000-0000-0046-000000000008}, !- Layer 2 + {00000000-0000-0000-0047-000000000007}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000010}, !- Handle BTAP-Ext-Floor-Mass:U-0.162, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000008}, !- Layer 1 - {00000000-0000-0000-0042-000000000007}, !- Layer 2 - {00000000-0000-0000-0043-000000000003}; !- Layer 3 + {00000000-0000-0000-0047-000000000008}, !- Layer 1 + {00000000-0000-0000-0046-000000000007}, !- Layer 2 + {00000000-0000-0000-0047-000000000003}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000011}, !- Handle BTAP-Ext-GlassDoors, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000001}; !- Layer 1 + {00000000-0000-0000-0098-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000012}, !- Handle BTAP-Ext-GlassDoors:U=0.220 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000002}; !- Layer 1 + {00000000-0000-0000-0098-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000013}, !- Handle BTAP-Ext-OverHeadDoor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000013}; !- Layer 1 + {00000000-0000-0000-0047-000000000013}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000014}, !- Handle BTAP-Ext-OverHeadDoor:U-2.2, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000012}; !- Layer 1 + {00000000-0000-0000-0047-000000000012}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000015}, !- Handle BTAP-Ext-Roof-Metal, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000024}, !- Layer 1 - {00000000-0000-0000-0043-000000000013}; !- Layer 2 + {00000000-0000-0000-0046-000000000024}, !- Layer 1 + {00000000-0000-0000-0047-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000016}, !- Handle BTAP-Ext-Roof-Metal:U-0.162, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000023}, !- Layer 1 - {00000000-0000-0000-0043-000000000010}; !- Layer 2 + {00000000-0000-0000-0046-000000000023}, !- Layer 1 + {00000000-0000-0000-0047-000000000010}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000017}, !- Handle BTAP-Ext-Skylights, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000001}; !- Layer 1 + {00000000-0000-0000-0098-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000018}, !- Handle BTAP-Ext-Skylights:U=0.220 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000002}; !- Layer 1 + {00000000-0000-0000-0098-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000019}, !- Handle BTAP-Ext-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000006}, !- Layer 1 - {00000000-0000-0000-0042-000000000014}, !- Layer 2 - {00000000-0000-0000-0043-000000000013}, !- Layer 3 - {00000000-0000-0000-0042-000000000002}; !- Layer 4 + {00000000-0000-0000-0046-000000000006}, !- Layer 1 + {00000000-0000-0000-0046-000000000014}, !- Layer 2 + {00000000-0000-0000-0047-000000000013}, !- Layer 3 + {00000000-0000-0000-0046-000000000002}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000020}, !- Handle BTAP-Ext-Wall-Mass:U-0.21, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000005}, !- Layer 1 - {00000000-0000-0000-0042-000000000013}, !- Layer 2 - {00000000-0000-0000-0043-000000000009}, !- Layer 3 - {00000000-0000-0000-0042-000000000001}; !- Layer 4 + {00000000-0000-0000-0046-000000000005}, !- Layer 1 + {00000000-0000-0000-0046-000000000013}, !- Layer 2 + {00000000-0000-0000-0047-000000000009}, !- Layer 3 + {00000000-0000-0000-0046-000000000001}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000021}, !- Handle BTAP-Grnd-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000012}, !- Layer 1 - {00000000-0000-0000-0043-000000000007}; !- Layer 2 + {00000000-0000-0000-0046-000000000012}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000022}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000009}, !- Layer 1 - {00000000-0000-0000-0043-000000000004}; !- Layer 2 + {00000000-0000-0000-0046-000000000009}, !- Layer 1 + {00000000-0000-0000-0047-000000000004}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000023}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000009}, !- Layer 1 - {00000000-0000-0000-0042-000000000016}; !- Layer 2 + {00000000-0000-0000-0046-000000000009}, !- Layer 1 + {00000000-0000-0000-0046-000000000016}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000024}, !- Handle BTAP-Grnd-Roof-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000012}, !- Layer 1 - {00000000-0000-0000-0043-000000000007}; !- Layer 2 + {00000000-0000-0000-0046-000000000012}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000025}, !- Handle BTAP-Grnd-Roof-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000011}, !- Layer 1 - {00000000-0000-0000-0043-000000000006}; !- Layer 2 + {00000000-0000-0000-0046-000000000011}, !- Layer 1 + {00000000-0000-0000-0047-000000000006}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000026}, !- Handle BTAP-Grnd-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000012}, !- Layer 1 - {00000000-0000-0000-0043-000000000007}; !- Layer 2 + {00000000-0000-0000-0046-000000000012}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000027}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000010}, !- Layer 1 - {00000000-0000-0000-0043-000000000005}; !- Layer 2 + {00000000-0000-0000-0046-000000000010}, !- Layer 1 + {00000000-0000-0000-0047-000000000005}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000028}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000010}, !- Layer 1 - {00000000-0000-0000-0042-000000000015}; !- Layer 2 + {00000000-0000-0000-0046-000000000010}, !- Layer 1 + {00000000-0000-0000-0046-000000000015}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000029}, !- Handle BTAP-Int-Ceiling, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000007}, !- Layer 1 - {00000000-0000-0000-0042-000000000003}; !- Layer 2 + {00000000-0000-0000-0047-000000000007}, !- Layer 1 + {00000000-0000-0000-0046-000000000003}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000030}, !- Handle BTAP-Int-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000021}; !- Layer 1 + {00000000-0000-0000-0046-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000031}, !- Handle BTAP-Int-Floor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000003}, !- Layer 1 - {00000000-0000-0000-0043-000000000007}; !- Layer 2 + {00000000-0000-0000-0046-000000000003}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000032}, !- Handle BTAP-Int-Partition, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000021}; !- Layer 1 + {00000000-0000-0000-0046-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000033}, !- Handle BTAP-Int-Wall, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000019}, !- Layer 1 - {00000000-0000-0000-0042-000000000019}; !- Layer 2 + {00000000-0000-0000-0046-000000000019}, !- Layer 1 + {00000000-0000-0000-0046-000000000019}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000034}, !- Handle BTAP-Int-Window, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0094-000000000001}; !- Layer 1 + {00000000-0000-0000-0098-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000035}, !- Handle Basement Floor construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000022}, !- Layer 1 - {00000000-0000-0000-0043-000000000001}; !- Layer 2 + {00000000-0000-0000-0046-000000000022}, !- Layer 1 + {00000000-0000-0000-0047-000000000001}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000036}, !- Handle Basement Wall construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000022}; !- Layer 1 + {00000000-0000-0000-0046-000000000022}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000037}, !- Handle Floor Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000001}, !- Layer 1 - {00000000-0000-0000-0042-000000000004}, !- Layer 2 - {00000000-0000-0000-0043-000000000002}; !- Layer 3 + {00000000-0000-0000-0047-000000000001}, !- Layer 1 + {00000000-0000-0000-0046-000000000004}, !- Layer 2 + {00000000-0000-0000-0047-000000000002}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000038}, !- Handle Wall Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0042-000000000020}, !- Layer 1 - {00000000-0000-0000-0042-000000000020}; !- Layer 2 + {00000000-0000-0000-0046-000000000020}, !- Layer 1 + {00000000-0000-0000-0046-000000000020}; !- Layer 2 OS:Controller:MechanicalVentilation, {00000000-0000-0000-0021-000000000001}, !- Handle Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method OS:Controller:MechanicalVentilation, {00000000-0000-0000-0021-000000000002}, !- Handle Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000004}, !- Handle + Controller Mechanical Ventilation 4, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000005}, !- Handle + Controller Mechanical Ventilation 5, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method @@ -2584,7 +4720,7 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0058-000000000023}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0062-000000000026}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation @@ -2614,7 +4750,7 @@ OS:Controller:OutdoorAir, -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0058-000000000024}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0062-000000000030}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation @@ -2626,6 +4762,96 @@ OS:Controller:OutdoorAir, BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0062-000000000027}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000004}, !- Handle + Controller Outdoor Air 4, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0062-000000000028}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000004}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000005}, !- Handle + Controller Outdoor Air 5, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0062-000000000029}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000005}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + OS:Controller:WaterCoil, {00000000-0000-0000-0023-000000000001}, !- Handle Controller Water Coil 1, !- Name @@ -2639,6 +4865,45 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000002}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0015-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000003}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0015-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000004}, !- Handle + Controller Water Coil 4, !- Name + {00000000-0000-0000-0015-000000000004}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0024-000000000001}, !- Handle Cooling Tower Single Speed 1, !- Name @@ -2646,7 +4911,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000106}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 345.351269475612, !- Fan Power at Design Air Flow Rate {W} + 36673.2686653161, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -2664,7 +4929,7 @@ OS:CoolingTower:SingleSpeed, , !- Blowdown Makeup Water Usage Schedule Name , !- Outdoor Air Inlet Node Name FanCycling, !- Capacity Control - 1, !- Number of Cells + 2, !- Number of Cells MinimalCell, !- Cell Control 0.33, !- Cell Minimum Water Flow Rate Fraction 2.5, !- Cell Maximum Water Flow Rate Fraction @@ -2793,6 +5058,34 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0025-000000000009}, !- Handle + WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name + 0.707908, !- Coefficient1 Constant + -0.00200657, !- Coefficient2 x + -0.00259605, !- Coefficient3 x**2 + 0.0300588, !- Coefficient4 y + -0.00105643, !- Coefficient5 y**2 + 0.0020457, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0025-000000000010}, !- Handle + WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name + 0.560523, !- Coefficient1 Constant + -0.0137816, !- Coefficient2 x + 6.56424e-05, !- Coefficient3 x**2 + 0.0132194, !- Coefficient4 y + 0.000268596, !- Coefficient5 y**2 + -0.000501131, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0025-000000000011}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -2806,7 +5099,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000010}, !- Handle + {00000000-0000-0000-0025-000000000012}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -2849,6 +5142,26 @@ OS:Curve:Cubic, 0.68, !- Minimum Value of x 1; !- Maximum Value of x +OS:Curve:Cubic, + {00000000-0000-0000-0026-000000000004}, !- Handle + VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name + -4.1457, !- Coefficient1 Constant + 16.803, !- Coefficient2 x + -19.471, !- Coefficient3 x**2 + 7.8488, !- Coefficient4 x**3 + 0.5, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0026-000000000005}, !- Handle + VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name + -0.3477, !- Coefficient1 Constant + 4.0976, !- Coefficient2 x + -5.0024, !- Coefficient3 x**2 + 2.268, !- Coefficient4 x**3 + 0.22, !- Minimum Value of x + 1; !- Maximum Value of x + OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000001}, !- Handle Curve Quadratic 1, !- Name @@ -2905,6 +5218,15 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000007}, !- Handle + WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name + 0.171493, !- Coefficient1 Constant + 0.588202, !- Coefficient2 x + 0.237373, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0027-000000000008}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -2936,7 +5258,7 @@ OS:DefaultScheduleSet, , !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0058-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -2944,13 +5266,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000002}, !- Handle Space Function Electrical/Mechanical-sch-A Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0058-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0058-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0058-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0058-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0062-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0062-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0058-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -2958,13 +5280,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000003}, !- Handle Space Function Office - open plan Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0058-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0058-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0058-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0058-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0062-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0062-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0058-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -3073,7 +5395,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A Elec Equip, !- Name {00000000-0000-0000-0034-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0076-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -3082,7 +5404,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000002}, !- Handle Space Function Office - open plan Elec Equip, !- Name {00000000-0000-0000-0034-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0076-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -3107,26 +5429,233 @@ OS:ElectricEquipment:Definition, , !- Fraction Latent 0.5; !- Fraction Radiant +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name + {00000000-0000-0000-0062-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0062-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0062-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name + {00000000-0000-0000-0062-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000005}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_ClgSch0, !- Name + {00000000-0000-0000-0062-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000006}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_HtgSch0, !- Name + {00000000-0000-0000-0062-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0036-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a22e383f-8f67-4224-8a85-16ad825daef8}<23.9 && {a22e383f-8f67-4224-8a85-16ad825daef8}>1.7, !- Program Line 1 + SET {89bf28ea-2be3-4edf-81d9-dc9f4b41b423} = 29.4, !- Program Line 2 + SET {beb0b5fa-3466-4186-8b4e-e759c8e899d5} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a22e383f-8f67-4224-8a85-16ad825daef8}<23.9 && {a22e383f-8f67-4224-8a85-16ad825daef8}>1.7, !- Program Line 4 + SET {89bf28ea-2be3-4edf-81d9-dc9f4b41b423} = 29.4, !- Program Line 5 + SET {beb0b5fa-3466-4186-8b4e-e759c8e899d5} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a22e383f-8f67-4224-8a85-16ad825daef8}<23.9 && {a22e383f-8f67-4224-8a85-16ad825daef8}>1.7, !- Program Line 7 + SET {89bf28ea-2be3-4edf-81d9-dc9f4b41b423} = 29.4, !- Program Line 8 + SET {beb0b5fa-3466-4186-8b4e-e759c8e899d5} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a22e383f-8f67-4224-8a85-16ad825daef8}<23.9 && {a22e383f-8f67-4224-8a85-16ad825daef8}>1.7, !- Program Line 10 + SET {89bf28ea-2be3-4edf-81d9-dc9f4b41b423} = 29.4, !- Program Line 11 + SET {beb0b5fa-3466-4186-8b4e-e759c8e899d5} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {89bf28ea-2be3-4edf-81d9-dc9f4b41b423} = NULL, !- Program Line 14 + SET {beb0b5fa-3466-4186-8b4e-e759c8e899d5} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0036-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7386923d-633d-4619-a22e-8642797b876f}<23.9 && {7386923d-633d-4619-a22e-8642797b876f}>1.7, !- Program Line 1 + SET {9c06be63-9eb8-4468-9020-7efbff12c26e} = 29.4, !- Program Line 2 + SET {59bfb1b2-8c0d-4534-ac2d-19f5e2ae96b2} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7386923d-633d-4619-a22e-8642797b876f}<23.9 && {7386923d-633d-4619-a22e-8642797b876f}>1.7, !- Program Line 4 + SET {9c06be63-9eb8-4468-9020-7efbff12c26e} = 29.4, !- Program Line 5 + SET {59bfb1b2-8c0d-4534-ac2d-19f5e2ae96b2} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7386923d-633d-4619-a22e-8642797b876f}<23.9 && {7386923d-633d-4619-a22e-8642797b876f}>1.7, !- Program Line 7 + SET {9c06be63-9eb8-4468-9020-7efbff12c26e} = 29.4, !- Program Line 8 + SET {59bfb1b2-8c0d-4534-ac2d-19f5e2ae96b2} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7386923d-633d-4619-a22e-8642797b876f}<23.9 && {7386923d-633d-4619-a22e-8642797b876f}>1.7, !- Program Line 10 + SET {9c06be63-9eb8-4468-9020-7efbff12c26e} = 29.4, !- Program Line 11 + SET {59bfb1b2-8c0d-4534-ac2d-19f5e2ae96b2} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {9c06be63-9eb8-4468-9020-7efbff12c26e} = NULL, !- Program Line 14 + SET {59bfb1b2-8c0d-4534-ac2d-19f5e2ae96b2} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0036-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {06ba6739-827e-4bde-95dd-01df390c0399}<23.9 && {06ba6739-827e-4bde-95dd-01df390c0399}>1.7, !- Program Line 1 + SET {2dbf61b3-e5d8-4fb6-aa2d-1b1664958501} = 29.4, !- Program Line 2 + SET {5a9e4e87-a059-4e3a-be0c-6b1e2d02148e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {06ba6739-827e-4bde-95dd-01df390c0399}<23.9 && {06ba6739-827e-4bde-95dd-01df390c0399}>1.7, !- Program Line 4 + SET {2dbf61b3-e5d8-4fb6-aa2d-1b1664958501} = 29.4, !- Program Line 5 + SET {5a9e4e87-a059-4e3a-be0c-6b1e2d02148e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {06ba6739-827e-4bde-95dd-01df390c0399}<23.9 && {06ba6739-827e-4bde-95dd-01df390c0399}>1.7, !- Program Line 7 + SET {2dbf61b3-e5d8-4fb6-aa2d-1b1664958501} = 29.4, !- Program Line 8 + SET {5a9e4e87-a059-4e3a-be0c-6b1e2d02148e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {06ba6739-827e-4bde-95dd-01df390c0399}<23.9 && {06ba6739-827e-4bde-95dd-01df390c0399}>1.7, !- Program Line 10 + SET {2dbf61b3-e5d8-4fb6-aa2d-1b1664958501} = 29.4, !- Program Line 11 + SET {5a9e4e87-a059-4e3a-be0c-6b1e2d02148e} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {2dbf61b3-e5d8-4fb6-aa2d-1b1664958501} = NULL, !- Program Line 14 + SET {5a9e4e87-a059-4e3a-be0c-6b1e2d02148e} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0037-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0036-000000000001}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0037-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0036-000000000002}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0037-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0036-000000000003}; !- Program Name 1 + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0038-000000000001}, !- Handle + OAT, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0038-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0038-000000000003}, !- Handle + OAT_2, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + OS:Facility, - {00000000-0000-0000-0035-000000000001}; !- Handle + {00000000-0000-0000-0039-000000000001}; !- Handle + +OS:Fan:ConstantVolume, + {00000000-0000-0000-0040-000000000001}, !- Handle + Fan Constant Volume 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.39975, !- Fan Total Efficiency + 640, !- Pressure Rise {Pa} + AutoSize, !- Maximum Flow Rate {m3/s} + 0.615, !- Motor Efficiency + , !- Motor In Airstream Fraction + {00000000-0000-0000-0017-000000000057}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000055}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000168}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000169}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000226}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000227}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:Fan:ConstantVolume, - {00000000-0000-0000-0036-000000000001}, !- Handle - Fan Constant Volume 1, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name - 0.39975, !- Fan Total Efficiency - 640, !- Pressure Rise {Pa} - AutoSize, !- Maximum Flow Rate {m3/s} - 0.615, !- Motor Efficiency - , !- Motor In Airstream Fraction - {00000000-0000-0000-0017-000000000057}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000055}, !- Air Outlet Node Name +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000003}, !- Handle + Sys6 Return Fan 3, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000284}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000285}, !- Air Outlet Node Name ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0037-000000000001}, !- Handle + {00000000-0000-0000-0041-000000000004}, !- Handle Sys6 Return Fan, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency 250, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -3145,9 +5674,72 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0037-000000000002}, !- Handle + {00000000-0000-0000-0041-000000000005}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000163}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000161}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000006}, !- Handle + Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000221}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000219}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000007}, !- Handle + Sys6 Supply Fan 3, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000279}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000277}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000008}, !- Handle Sys6 Supply Fan, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -3166,7 +5758,7 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Foundation:Kiva, - {00000000-0000-0000-0038-000000000001}, !- Handle + {00000000-0000-0000-0042-000000000001}, !- Handle Bldg Kiva Foundation, !- Name , !- Initial Indoor Air Temperature {C} , !- Interior Horizontal Insulation Material Name @@ -3186,7 +5778,7 @@ OS:Foundation:Kiva, ; !- Footing Depth {m} OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0039-000000000001}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Handle , !- Soil Conductivity {W/m-K} , !- Soil Density {kg/m3} , !- Soil Specific Heat {J/kg-K} @@ -3201,27 +5793,27 @@ OS:Foundation:Kiva:Settings, ; !- Simulation Timestep OS:Lights, - {00000000-0000-0000-0040-000000000001}, !- Handle + {00000000-0000-0000-0044-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A Lights, !- Name - {00000000-0000-0000-0041-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0076-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0045-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights, - {00000000-0000-0000-0040-000000000002}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Handle Space Function Office - open plan Lights, !- Name - {00000000-0000-0000-0041-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0076-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0045-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights:Definition, - {00000000-0000-0000-0041-000000000001}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -3231,7 +5823,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Lights:Definition, - {00000000-0000-0000-0041-000000000002}, !- Handle + {00000000-0000-0000-0045-000000000002}, !- Handle Space Function Office - open plan Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -3241,7 +5833,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Material, - {00000000-0000-0000-0042-000000000001}, !- Handle + {00000000-0000-0000-0046-000000000001}, !- Handle 1/2IN Gypsum 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3253,7 +5845,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000002}, !- Handle + {00000000-0000-0000-0046-000000000002}, !- Handle 1/2IN Gypsum, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3265,7 +5857,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000003}, !- Handle + {00000000-0000-0000-0046-000000000003}, !- Handle 100mm Normalweight concrete floor 1, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -3274,7 +5866,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0042-000000000004}, !- Handle + {00000000-0000-0000-0046-000000000004}, !- Handle 100mm Normalweight concrete floor, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -3283,7 +5875,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0042-000000000005}, !- Handle + {00000000-0000-0000-0046-000000000005}, !- Handle 1IN Stucco 1, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -3295,7 +5887,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000006}, !- Handle + {00000000-0000-0000-0046-000000000006}, !- Handle 1IN Stucco, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -3307,7 +5899,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000007}, !- Handle + {00000000-0000-0000-0046-000000000007}, !- Handle 4 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -3319,7 +5911,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000008}, !- Handle + {00000000-0000-0000-0046-000000000008}, !- Handle 4 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -3331,7 +5923,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000009}, !- Handle + {00000000-0000-0000-0046-000000000009}, !- Handle 6 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3343,7 +5935,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000010}, !- Handle + {00000000-0000-0000-0046-000000000010}, !- Handle 6 in. Normalweight Concrete Floor 2, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3355,7 +5947,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000011}, !- Handle + {00000000-0000-0000-0046-000000000011}, !- Handle 6 in. Normalweight Concrete Floor 3, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3367,7 +5959,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000012}, !- Handle + {00000000-0000-0000-0046-000000000012}, !- Handle 6 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3379,7 +5971,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000013}, !- Handle + {00000000-0000-0000-0046-000000000013}, !- Handle 8IN CONCRETE HW RefBldg 1, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -3391,7 +5983,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000014}, !- Handle + {00000000-0000-0000-0046-000000000014}, !- Handle 8IN CONCRETE HW RefBldg, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -3403,7 +5995,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000015}, !- Handle + {00000000-0000-0000-0046-000000000015}, !- Handle Expanded Polystyrene 1, !- Name MediumSmooth, !- Roughness 0.100199429303091, !- Thickness {m} @@ -3412,7 +6004,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0042-000000000016}, !- Handle + {00000000-0000-0000-0046-000000000016}, !- Handle Expanded Polystyrene, !- Name MediumSmooth, !- Roughness 0.0363958681740979, !- Thickness {m} @@ -3421,7 +6013,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0042-000000000017}, !- Handle + {00000000-0000-0000-0046-000000000017}, !- Handle F08 Metal surface 1, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -3433,7 +6025,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000018}, !- Handle + {00000000-0000-0000-0046-000000000018}, !- Handle F08 Metal surface, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -3445,7 +6037,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000019}, !- Handle + {00000000-0000-0000-0046-000000000019}, !- Handle G01 13mm gypsum board 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3457,7 +6049,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000020}, !- Handle + {00000000-0000-0000-0046-000000000020}, !- Handle G01 13mm gypsum board, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3469,7 +6061,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000021}, !- Handle + {00000000-0000-0000-0046-000000000021}, !- Handle G05 25mm wood, !- Name MediumSmooth, !- Roughness 0.0254, !- Thickness {m} @@ -3481,7 +6073,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000022}, !- Handle + {00000000-0000-0000-0046-000000000022}, !- Handle M10 200mm concrete block basement wall, !- Name MediumRough, !- Roughness 0.2032, !- Thickness {m} @@ -3490,7 +6082,7 @@ OS:Material, 912; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0042-000000000023}, !- Handle + {00000000-0000-0000-0046-000000000023}, !- Handle Metal Roof Surface 1, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -3502,7 +6094,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0042-000000000024}, !- Handle + {00000000-0000-0000-0046-000000000024}, !- Handle Metal Roof Surface, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -3514,7 +6106,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000001}, !- Handle + {00000000-0000-0000-0047-000000000001}, !- Handle CP02 CARPET PAD, !- Name VeryRough, !- Roughness 0.21648, !- Thermal Resistance {m2-K/W} @@ -3523,7 +6115,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000002}, !- Handle + {00000000-0000-0000-0047-000000000002}, !- Handle Nonres_Floor_Insulation, !- Name MediumSmooth, !- Roughness 2.88291975297193, !- Thermal Resistance {m2-K/W} @@ -3532,7 +6124,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000003}, !- Handle + {00000000-0000-0000-0047-000000000003}, !- Handle Typical Carpet Pad 1, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -3541,7 +6133,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000004}, !- Handle + {00000000-0000-0000-0047-000000000004}, !- Handle Typical Carpet Pad 2, !- Name Smooth, !- Roughness 1.25502993703786, !- Thermal Resistance {m2-K/W} @@ -3550,7 +6142,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000005}, !- Handle + {00000000-0000-0000-0047-000000000005}, !- Handle Typical Carpet Pad 3, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -3559,7 +6151,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000006}, !- Handle + {00000000-0000-0000-0047-000000000006}, !- Handle Typical Carpet Pad 4, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -3568,7 +6160,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000007}, !- Handle + {00000000-0000-0000-0047-000000000007}, !- Handle Typical Carpet Pad, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -3577,7 +6169,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000008}, !- Handle + {00000000-0000-0000-0047-000000000008}, !- Handle Typical Insulation 1, !- Name Smooth, !- Roughness 5.91237683519488, !- Thermal Resistance {m2-K/W} @@ -3586,7 +6178,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000009}, !- Handle + {00000000-0000-0000-0047-000000000009}, !- Handle Typical Insulation 2, !- Name Smooth, !- Roughness 4.49096231241638, !- Thermal Resistance {m2-K/W} @@ -3595,7 +6187,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000010}, !- Handle + {00000000-0000-0000-0047-000000000010}, !- Handle Typical Insulation 3, !- Name Smooth, !- Roughness 6.17282183832832, !- Thermal Resistance {m2-K/W} @@ -3604,7 +6196,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000011}, !- Handle + {00000000-0000-0000-0047-000000000011}, !- Handle Typical Insulation 4, !- Name Smooth, !- Roughness 0.454527786700932, !- Thermal Resistance {m2-K/W} @@ -3613,7 +6205,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000012}, !- Handle + {00000000-0000-0000-0047-000000000012}, !- Handle Typical Insulation 5, !- Name Smooth, !- Roughness 0.454545454545455, !- Thermal Resistance {m2-K/W} @@ -3622,7 +6214,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0043-000000000013}, !- Handle + {00000000-0000-0000-0047-000000000013}, !- Handle Typical Insulation, !- Name Smooth, !- Roughness 0.101874652714525, !- Thermal Resistance {m2-K/W} @@ -3631,832 +6223,1420 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:ModelObjectList, - {00000000-0000-0000-0044-000000000001}, !- Handle + {00000000-0000-0000-0048-000000000001}, !- Handle Availability Manager Night Cycle 1 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0044-000000000002}, !- Handle + {00000000-0000-0000-0048-000000000002}, !- Handle Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0044-000000000003}, !- Handle + {00000000-0000-0000-0048-000000000003}, !- Handle Availability Manager Night Cycle 1 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0044-000000000004}, !- Handle + {00000000-0000-0000-0048-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0044-000000000005}, !- Handle + {00000000-0000-0000-0048-000000000005}, !- Handle Availability Manager Night Cycle 2 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0044-000000000006}, !- Handle + {00000000-0000-0000-0048-000000000006}, !- Handle Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0044-000000000007}, !- Handle + {00000000-0000-0000-0048-000000000007}, !- Handle Availability Manager Night Cycle 2 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0044-000000000008}, !- Handle + {00000000-0000-0000-0048-000000000008}, !- Handle Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000013}, !- Handle + Availability Manager Night Cycle 4 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000014}, !- Handle + Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000015}, !- Handle + Availability Manager Night Cycle 4 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000016}, !- Handle + Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000017}, !- Handle + Availability Manager Night Cycle 5 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000018}, !- Handle + Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000019}, !- Handle + Availability Manager Night Cycle 5 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000020}, !- Handle + Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name + OS:Node, - {00000000-0000-0000-0045-000000000001}, !- Handle + {00000000-0000-0000-0049-000000000001}, !- Handle 1103gal Electricity Water Heater - 744kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000150}, !- Inlet Port - {00000000-0000-0000-0017-000000000159}; !- Outlet Port + {00000000-0000-0000-0017-000000000324}, !- Inlet Port + {00000000-0000-0000-0017-000000000333}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000002}, !- Handle + {00000000-0000-0000-0049-000000000002}, !- Handle 1103gal Electricity Water Heater - 744kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000160}, !- Inlet Port - {00000000-0000-0000-0017-000000000161}; !- Outlet Port + {00000000-0000-0000-0017-000000000334}, !- Inlet Port + {00000000-0000-0000-0017-000000000335}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000003}, !- Handle + {00000000-0000-0000-0049-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000004}, !- Handle + {00000000-0000-0000-0049-000000000004}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000005}, !- Handle + {00000000-0000-0000-0049-000000000005}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000027}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000006}, !- Handle + {00000000-0000-0000-0049-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000144}, !- Inlet Port {00000000-0000-0000-0017-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000007}, !- Handle + {00000000-0000-0000-0049-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000036}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000008}, !- Handle + {00000000-0000-0000-0049-000000000008}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000178}, !- Inlet Port + {00000000-0000-0000-0017-000000000179}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000009}, !- Handle + {00000000-0000-0000-0049-000000000010}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000190}, !- Inlet Port + {00000000-0000-0000-0017-000000000191}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000010}, !- Handle + {00000000-0000-0000-0049-000000000012}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000172}, !- Inlet Port + {00000000-0000-0000-0017-000000000173}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000011}, !- Handle + {00000000-0000-0000-0049-000000000014}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000196}, !- Inlet Port + {00000000-0000-0000-0017-000000000197}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000012}, !- Handle + {00000000-0000-0000-0049-000000000016}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000184}, !- Inlet Port + {00000000-0000-0000-0017-000000000185}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000045}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000013}, !- Handle + {00000000-0000-0000-0049-000000000018}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000202}, !- Inlet Port + {00000000-0000-0000-0017-000000000203}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000024}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000014}, !- Handle + {00000000-0000-0000-0049-000000000020}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000248}, !- Inlet Port + {00000000-0000-0000-0017-000000000249}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000015}, !- Handle + {00000000-0000-0000-0049-000000000022}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000242}, !- Inlet Port + {00000000-0000-0000-0017-000000000243}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000023}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000035}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000016}, !- Handle + {00000000-0000-0000-0049-000000000024}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000236}, !- Inlet Port + {00000000-0000-0000-0017-000000000237}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000025}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000017}, !- Handle + {00000000-0000-0000-0049-000000000026}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000230}, !- Inlet Port + {00000000-0000-0000-0017-000000000231}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000027}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000042}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000018}, !- Handle + {00000000-0000-0000-0049-000000000028}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000254}, !- Inlet Port + {00000000-0000-0000-0017-000000000255}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000029}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000044}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000019}, !- Handle + {00000000-0000-0000-0049-000000000030}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000260}, !- Inlet Port + {00000000-0000-0000-0017-000000000261}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000031}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000020}, !- Handle + {00000000-0000-0000-0049-000000000032}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000300}, !- Inlet Port + {00000000-0000-0000-0017-000000000301}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000033}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000029}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000021}, !- Handle + {00000000-0000-0000-0049-000000000034}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000306}, !- Inlet Port + {00000000-0000-0000-0017-000000000307}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000035}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000032}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000022}, !- Handle + {00000000-0000-0000-0049-000000000036}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000294}, !- Inlet Port + {00000000-0000-0000-0017-000000000295}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000037}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000023}, !- Handle + {00000000-0000-0000-0049-000000000038}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000312}, !- Inlet Port + {00000000-0000-0000-0017-000000000313}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000039}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000039}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000024}, !- Handle + {00000000-0000-0000-0049-000000000040}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000288}, !- Inlet Port + {00000000-0000-0000-0017-000000000289}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000041}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000041}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000025}, !- Handle + {00000000-0000-0000-0049-000000000042}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000318}, !- Inlet Port + {00000000-0000-0000-0017-000000000319}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000043}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000026}, !- Handle + {00000000-0000-0000-0049-000000000044}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000066}, !- Inlet Port {00000000-0000-0000-0017-000000000067}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000027}, !- Handle + {00000000-0000-0000-0049-000000000045}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000063}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000028}, !- Handle + {00000000-0000-0000-0049-000000000046}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000146}, !- Inlet Port {00000000-0000-0000-0017-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000029}, !- Handle + {00000000-0000-0000-0049-000000000047}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000148}, !- Inlet Port {00000000-0000-0000-0017-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000030}, !- Handle + {00000000-0000-0000-0049-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000244}, !- Inlet Port + {00000000-0000-0000-0017-000000000245}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000246}, !- Inlet Port + {00000000-0000-0000-0017-000000000241}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000050}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000250}, !- Inlet Port + {00000000-0000-0000-0017-000000000251}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000051}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000252}, !- Inlet Port + {00000000-0000-0000-0017-000000000247}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000052}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000256}, !- Inlet Port + {00000000-0000-0000-0017-000000000257}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000053}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000258}, !- Inlet Port + {00000000-0000-0000-0017-000000000253}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000054}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000262}, !- Inlet Port + {00000000-0000-0000-0017-000000000263}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000055}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000264}, !- Inlet Port + {00000000-0000-0000-0017-000000000259}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000056}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000290}, !- Inlet Port + {00000000-0000-0000-0017-000000000291}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000057}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000292}, !- Inlet Port + {00000000-0000-0000-0017-000000000287}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000296}, !- Inlet Port + {00000000-0000-0000-0017-000000000297}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000298}, !- Inlet Port + {00000000-0000-0000-0017-000000000293}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000302}, !- Inlet Port + {00000000-0000-0000-0017-000000000303}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000304}, !- Inlet Port + {00000000-0000-0000-0017-000000000299}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000308}, !- Inlet Port + {00000000-0000-0000-0017-000000000309}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000310}, !- Inlet Port + {00000000-0000-0000-0017-000000000305}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000314}, !- Inlet Port + {00000000-0000-0000-0017-000000000315}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000316}, !- Inlet Port + {00000000-0000-0000-0017-000000000311}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000066}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000320}, !- Inlet Port + {00000000-0000-0000-0017-000000000321}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000067}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000322}, !- Inlet Port + {00000000-0000-0000-0017-000000000317}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000068}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000174}, !- Inlet Port + {00000000-0000-0000-0017-000000000175}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000069}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000176}, !- Inlet Port + {00000000-0000-0000-0017-000000000171}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000070}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000180}, !- Inlet Port + {00000000-0000-0000-0017-000000000181}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000071}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000182}, !- Inlet Port + {00000000-0000-0000-0017-000000000177}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000072}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000186}, !- Inlet Port + {00000000-0000-0000-0017-000000000187}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000073}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000188}, !- Inlet Port + {00000000-0000-0000-0017-000000000183}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000074}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000192}, !- Inlet Port + {00000000-0000-0000-0017-000000000193}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000075}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000194}, !- Inlet Port + {00000000-0000-0000-0017-000000000189}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000076}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000198}, !- Inlet Port + {00000000-0000-0000-0017-000000000199}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000077}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000200}, !- Inlet Port + {00000000-0000-0000-0017-000000000195}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000078}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000204}, !- Inlet Port + {00000000-0000-0000-0017-000000000205}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000079}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000206}, !- Inlet Port + {00000000-0000-0000-0017-000000000201}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000080}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000232}, !- Inlet Port + {00000000-0000-0000-0017-000000000233}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000081}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000234}, !- Inlet Port + {00000000-0000-0000-0017-000000000229}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000082}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000238}, !- Inlet Port + {00000000-0000-0000-0017-000000000239}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000083}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000240}, !- Inlet Port + {00000000-0000-0000-0017-000000000235}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000084}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000072}, !- Inlet Port {00000000-0000-0000-0017-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000031}, !- Handle + {00000000-0000-0000-0049-000000000085}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000075}, !- Inlet Port {00000000-0000-0000-0017-000000000076}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000032}, !- Handle + {00000000-0000-0000-0049-000000000086}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000069}, !- Inlet Port {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000033}, !- Handle + {00000000-0000-0000-0049-000000000087}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000071}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000034}, !- Handle + {00000000-0000-0000-0049-000000000088}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000074}, !- Inlet Port {00000000-0000-0000-0017-000000000128}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000035}, !- Handle - Coil Cooling Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000136}, !- Inlet Port - {00000000-0000-0000-0017-000000000137}; !- Outlet Port + {00000000-0000-0000-0049-000000000089}, !- Handle + Coil Cooling Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000136}, !- Inlet Port + {00000000-0000-0000-0017-000000000137}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000090}, !- Handle + Coil Cooling Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000129}, !- Inlet Port + {00000000-0000-0000-0017-000000000130}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000091}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000155}, !- Inlet Port + {00000000-0000-0000-0017-000000000156}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000092}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000164}, !- Inlet Port + {00000000-0000-0000-0017-000000000165}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000093}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000157}, !- Inlet Port + {00000000-0000-0000-0017-000000000158}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000094}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000213}, !- Inlet Port + {00000000-0000-0000-0017-000000000214}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000095}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000222}, !- Inlet Port + {00000000-0000-0000-0017-000000000223}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000096}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000215}, !- Inlet Port + {00000000-0000-0000-0017-000000000216}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000097}, !- Handle + Coil Cooling Water 4 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000271}, !- Inlet Port + {00000000-0000-0000-0017-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000036}, !- Handle - Coil Cooling Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000129}, !- Inlet Port - {00000000-0000-0000-0017-000000000130}; !- Outlet Port + {00000000-0000-0000-0049-000000000098}, !- Handle + Coil Cooling Water 4 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000280}, !- Inlet Port + {00000000-0000-0000-0017-000000000281}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000099}, !- Handle + Coil Cooling Water 4 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000273}, !- Inlet Port + {00000000-0000-0000-0017-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000037}, !- Handle + {00000000-0000-0000-0049-000000000100}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000056}, !- Inlet Port {00000000-0000-0000-0017-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000038}, !- Handle + {00000000-0000-0000-0049-000000000101}, !- Handle + Coil Heating Electric 11 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000220}, !- Inlet Port + {00000000-0000-0000-0017-000000000221}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000102}, !- Handle + Coil Heating Electric 18 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000278}, !- Inlet Port + {00000000-0000-0000-0017-000000000279}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000103}, !- Handle Coil Heating Electric 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000134}, !- Inlet Port {00000000-0000-0000-0017-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000039}, !- Handle - CoilCoolingDXSingleSpeed_dx 170kBtu/hr 9.7EER Outlet Air Node, !- Name + {00000000-0000-0000-0049-000000000104}, !- Handle + Coil Heating Electric 4 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000162}, !- Inlet Port + {00000000-0000-0000-0017-000000000163}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000105}, !- Handle + CoilCoolingDXSingleSpeed_dx 79kBtu/hr 9.7EER Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000058}, !- Inlet Port {00000000-0000-0000-0017-000000000059}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000040}, !- Handle + {00000000-0000-0000-0049-000000000106}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000097}, !- Inlet Port {00000000-0000-0000-0017-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000041}, !- Handle + {00000000-0000-0000-0049-000000000107}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000100}, !- Inlet Port {00000000-0000-0000-0017-000000000101}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000042}, !- Handle + {00000000-0000-0000-0049-000000000108}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000094}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000043}, !- Handle + {00000000-0000-0000-0049-000000000109}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000114}, !- Inlet Port {00000000-0000-0000-0017-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000044}, !- Handle + {00000000-0000-0000-0049-000000000110}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000095}, !- Inlet Port {00000000-0000-0000-0017-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000045}, !- Handle + {00000000-0000-0000-0049-000000000111}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000106}, !- Inlet Port {00000000-0000-0000-0017-000000000107}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000046}, !- Handle + {00000000-0000-0000-0049-000000000112}, !- Handle Core_bottom WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000175}, !- Inlet Port - {00000000-0000-0000-0017-000000000176}; !- Outlet Port + {00000000-0000-0000-0017-000000000349}, !- Inlet Port + {00000000-0000-0000-0017-000000000350}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000047}, !- Handle + {00000000-0000-0000-0049-000000000113}, !- Handle Core_bottom WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000177}, !- Inlet Port - {00000000-0000-0000-0017-000000000178}; !- Outlet Port + {00000000-0000-0000-0017-000000000351}, !- Inlet Port + {00000000-0000-0000-0017-000000000352}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000048}, !- Handle + {00000000-0000-0000-0049-000000000114}, !- Handle Core_mid WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000179}, !- Inlet Port - {00000000-0000-0000-0017-000000000180}; !- Outlet Port + {00000000-0000-0000-0017-000000000353}, !- Inlet Port + {00000000-0000-0000-0017-000000000354}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000049}, !- Handle + {00000000-0000-0000-0049-000000000115}, !- Handle Core_mid WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000181}, !- Inlet Port - {00000000-0000-0000-0017-000000000182}; !- Outlet Port + {00000000-0000-0000-0017-000000000355}, !- Inlet Port + {00000000-0000-0000-0017-000000000356}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000050}, !- Handle + {00000000-0000-0000-0049-000000000116}, !- Handle Core_top WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000183}, !- Inlet Port - {00000000-0000-0000-0017-000000000184}; !- Outlet Port + {00000000-0000-0000-0017-000000000357}, !- Inlet Port + {00000000-0000-0000-0017-000000000358}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000051}, !- Handle + {00000000-0000-0000-0049-000000000117}, !- Handle Core_top WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000185}, !- Inlet Port - {00000000-0000-0000-0017-000000000186}; !- Outlet Port + {00000000-0000-0000-0017-000000000359}, !- Inlet Port + {00000000-0000-0000-0017-000000000360}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000052}, !- Handle + {00000000-0000-0000-0049-000000000118}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000187}, !- Inlet Port - {00000000-0000-0000-0017-000000000188}; !- Outlet Port + {00000000-0000-0000-0017-000000000361}, !- Inlet Port + {00000000-0000-0000-0017-000000000362}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000053}, !- Handle + {00000000-0000-0000-0049-000000000119}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000189}, !- Inlet Port - {00000000-0000-0000-0017-000000000190}; !- Outlet Port + {00000000-0000-0000-0017-000000000363}, !- Inlet Port + {00000000-0000-0000-0017-000000000364}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000054}, !- Handle + {00000000-0000-0000-0049-000000000120}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000191}, !- Inlet Port - {00000000-0000-0000-0017-000000000192}; !- Outlet Port + {00000000-0000-0000-0017-000000000365}, !- Inlet Port + {00000000-0000-0000-0017-000000000366}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000055}, !- Handle + {00000000-0000-0000-0049-000000000121}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000193}, !- Inlet Port - {00000000-0000-0000-0017-000000000194}; !- Outlet Port + {00000000-0000-0000-0017-000000000367}, !- Inlet Port + {00000000-0000-0000-0017-000000000368}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000056}, !- Handle + {00000000-0000-0000-0049-000000000122}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000195}, !- Inlet Port - {00000000-0000-0000-0017-000000000196}; !- Outlet Port + {00000000-0000-0000-0017-000000000369}, !- Inlet Port + {00000000-0000-0000-0017-000000000370}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000057}, !- Handle + {00000000-0000-0000-0049-000000000123}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000197}, !- Inlet Port - {00000000-0000-0000-0017-000000000198}; !- Outlet Port + {00000000-0000-0000-0017-000000000371}, !- Inlet Port + {00000000-0000-0000-0017-000000000372}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000058}, !- Handle + {00000000-0000-0000-0049-000000000124}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000199}, !- Inlet Port - {00000000-0000-0000-0017-000000000200}; !- Outlet Port + {00000000-0000-0000-0017-000000000373}, !- Inlet Port + {00000000-0000-0000-0017-000000000374}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000059}, !- Handle + {00000000-0000-0000-0049-000000000125}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000201}, !- Inlet Port - {00000000-0000-0000-0017-000000000202}; !- Outlet Port + {00000000-0000-0000-0017-000000000375}, !- Inlet Port + {00000000-0000-0000-0017-000000000376}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000060}, !- Handle + {00000000-0000-0000-0049-000000000126}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000157}, !- Inlet Port - {00000000-0000-0000-0017-000000000158}; !- Outlet Port + {00000000-0000-0000-0017-000000000331}, !- Inlet Port + {00000000-0000-0000-0017-000000000332}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000061}, !- Handle + {00000000-0000-0000-0049-000000000127}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000152}, !- Inlet Port - {00000000-0000-0000-0017-000000000153}; !- Outlet Port + {00000000-0000-0000-0017-000000000326}, !- Inlet Port + {00000000-0000-0000-0017-000000000327}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000062}, !- Handle + {00000000-0000-0000-0049-000000000128}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000174}, !- Inlet Port - {00000000-0000-0000-0017-000000000155}; !- Outlet Port + {00000000-0000-0000-0017-000000000348}, !- Inlet Port + {00000000-0000-0000-0017-000000000329}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000063}, !- Handle + {00000000-0000-0000-0049-000000000129}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000149}, !- Inlet Port - {00000000-0000-0000-0017-000000000156}; !- Outlet Port + {00000000-0000-0000-0017-000000000323}, !- Inlet Port + {00000000-0000-0000-0017-000000000330}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000064}, !- Handle + {00000000-0000-0000-0049-000000000130}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000171}, !- Inlet Port - {00000000-0000-0000-0017-000000000151}; !- Outlet Port + {00000000-0000-0000-0017-000000000345}, !- Inlet Port + {00000000-0000-0000-0017-000000000325}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000065}, !- Handle + {00000000-0000-0000-0049-000000000131}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000203}, !- Inlet Port - {00000000-0000-0000-0017-000000000204}; !- Outlet Port + {00000000-0000-0000-0017-000000000377}, !- Inlet Port + {00000000-0000-0000-0017-000000000378}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000066}, !- Handle + {00000000-0000-0000-0049-000000000132}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000205}, !- Inlet Port - {00000000-0000-0000-0017-000000000206}; !- Outlet Port + {00000000-0000-0000-0017-000000000379}, !- Inlet Port + {00000000-0000-0000-0017-000000000380}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000067}, !- Handle + {00000000-0000-0000-0049-000000000133}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000207}, !- Inlet Port - {00000000-0000-0000-0017-000000000208}; !- Outlet Port + {00000000-0000-0000-0017-000000000381}, !- Inlet Port + {00000000-0000-0000-0017-000000000382}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000068}, !- Handle + {00000000-0000-0000-0049-000000000134}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000209}, !- Inlet Port - {00000000-0000-0000-0017-000000000210}; !- Outlet Port + {00000000-0000-0000-0017-000000000383}, !- Inlet Port + {00000000-0000-0000-0017-000000000384}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000069}, !- Handle + {00000000-0000-0000-0049-000000000135}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Port - {00000000-0000-0000-0017-000000000212}; !- Outlet Port + {00000000-0000-0000-0017-000000000385}, !- Inlet Port + {00000000-0000-0000-0017-000000000386}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000070}, !- Handle + {00000000-0000-0000-0049-000000000136}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000213}, !- Inlet Port - {00000000-0000-0000-0017-000000000214}; !- Outlet Port + {00000000-0000-0000-0017-000000000387}, !- Inlet Port + {00000000-0000-0000-0017-000000000388}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000071}, !- Handle + {00000000-0000-0000-0049-000000000137}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000215}, !- Inlet Port - {00000000-0000-0000-0017-000000000216}; !- Outlet Port + {00000000-0000-0000-0017-000000000389}, !- Inlet Port + {00000000-0000-0000-0017-000000000390}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000072}, !- Handle + {00000000-0000-0000-0049-000000000138}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000217}, !- Inlet Port - {00000000-0000-0000-0017-000000000218}; !- Outlet Port + {00000000-0000-0000-0017-000000000391}, !- Inlet Port + {00000000-0000-0000-0017-000000000392}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000073}, !- Handle + {00000000-0000-0000-0049-000000000139}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Port - {00000000-0000-0000-0017-000000000220}; !- Outlet Port + {00000000-0000-0000-0017-000000000393}, !- Inlet Port + {00000000-0000-0000-0017-000000000394}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000074}, !- Handle + {00000000-0000-0000-0049-000000000140}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000221}, !- Inlet Port - {00000000-0000-0000-0017-000000000222}; !- Outlet Port + {00000000-0000-0000-0017-000000000395}, !- Inlet Port + {00000000-0000-0000-0017-000000000396}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000075}, !- Handle + {00000000-0000-0000-0049-000000000141}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000223}, !- Inlet Port - {00000000-0000-0000-0017-000000000224}; !- Outlet Port + {00000000-0000-0000-0017-000000000397}, !- Inlet Port + {00000000-0000-0000-0017-000000000398}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000076}, !- Handle + {00000000-0000-0000-0049-000000000142}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000225}, !- Inlet Port - {00000000-0000-0000-0017-000000000226}; !- Outlet Port + {00000000-0000-0000-0017-000000000399}, !- Inlet Port + {00000000-0000-0000-0017-000000000400}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000077}, !- Handle + {00000000-0000-0000-0049-000000000143}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000227}, !- Inlet Port - {00000000-0000-0000-0017-000000000228}; !- Outlet Port + {00000000-0000-0000-0017-000000000401}, !- Inlet Port + {00000000-0000-0000-0017-000000000402}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000078}, !- Handle + {00000000-0000-0000-0049-000000000144}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000229}, !- Inlet Port - {00000000-0000-0000-0017-000000000230}; !- Outlet Port + {00000000-0000-0000-0017-000000000403}, !- Inlet Port + {00000000-0000-0000-0017-000000000404}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000079}, !- Handle + {00000000-0000-0000-0049-000000000145}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000231}, !- Inlet Port - {00000000-0000-0000-0017-000000000232}; !- Outlet Port + {00000000-0000-0000-0017-000000000405}, !- Inlet Port + {00000000-0000-0000-0017-000000000406}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000080}, !- Handle + {00000000-0000-0000-0049-000000000146}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000233}, !- Inlet Port - {00000000-0000-0000-0017-000000000234}; !- Outlet Port + {00000000-0000-0000-0017-000000000407}, !- Inlet Port + {00000000-0000-0000-0017-000000000408}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000081}, !- Handle + {00000000-0000-0000-0049-000000000147}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000235}, !- Inlet Port - {00000000-0000-0000-0017-000000000236}; !- Outlet Port + {00000000-0000-0000-0017-000000000409}, !- Inlet Port + {00000000-0000-0000-0017-000000000410}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000082}, !- Handle + {00000000-0000-0000-0049-000000000148}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000237}, !- Inlet Port - {00000000-0000-0000-0017-000000000238}; !- Outlet Port + {00000000-0000-0000-0017-000000000411}, !- Inlet Port + {00000000-0000-0000-0017-000000000412}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000083}, !- Handle + {00000000-0000-0000-0049-000000000149}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000239}, !- Inlet Port - {00000000-0000-0000-0017-000000000240}; !- Outlet Port + {00000000-0000-0000-0017-000000000413}, !- Inlet Port + {00000000-0000-0000-0017-000000000414}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000084}, !- Handle + {00000000-0000-0000-0049-000000000150}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000241}, !- Inlet Port - {00000000-0000-0000-0017-000000000242}; !- Outlet Port + {00000000-0000-0000-0017-000000000415}, !- Inlet Port + {00000000-0000-0000-0017-000000000416}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000085}, !- Handle + {00000000-0000-0000-0049-000000000151}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000243}, !- Inlet Port - {00000000-0000-0000-0017-000000000244}; !- Outlet Port + {00000000-0000-0000-0017-000000000417}, !- Inlet Port + {00000000-0000-0000-0017-000000000418}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000086}, !- Handle + {00000000-0000-0000-0049-000000000152}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000245}, !- Inlet Port - {00000000-0000-0000-0017-000000000246}; !- Outlet Port + {00000000-0000-0000-0017-000000000419}, !- Inlet Port + {00000000-0000-0000-0017-000000000420}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000087}, !- Handle + {00000000-0000-0000-0049-000000000153}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000247}, !- Inlet Port - {00000000-0000-0000-0017-000000000248}; !- Outlet Port + {00000000-0000-0000-0017-000000000421}, !- Inlet Port + {00000000-0000-0000-0017-000000000422}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000088}, !- Handle + {00000000-0000-0000-0049-000000000154}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000249}, !- Inlet Port - {00000000-0000-0000-0017-000000000250}; !- Outlet Port + {00000000-0000-0000-0017-000000000423}, !- Inlet Port + {00000000-0000-0000-0017-000000000424}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000089}, !- Handle + {00000000-0000-0000-0049-000000000155}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000090}, !- Handle + {00000000-0000-0000-0049-000000000156}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000089}, !- Inlet Port {00000000-0000-0000-0017-000000000090}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000091}, !- Handle + {00000000-0000-0000-0049-000000000157}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000092}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000092}, !- Handle + {00000000-0000-0000-0049-000000000158}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000108}, !- Inlet Port {00000000-0000-0000-0017-000000000109}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000093}, !- Handle + {00000000-0000-0000-0049-000000000159}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000110}, !- Inlet Port {00000000-0000-0000-0017-000000000111}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000094}, !- Handle + {00000000-0000-0000-0049-000000000160}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000112}, !- Inlet Port {00000000-0000-0000-0017-000000000113}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000095}, !- Handle + {00000000-0000-0000-0049-000000000161}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000162}, !- Inlet Port - {00000000-0000-0000-0017-000000000163}; !- Outlet Port + {00000000-0000-0000-0017-000000000336}, !- Inlet Port + {00000000-0000-0000-0017-000000000337}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000096}, !- Handle + {00000000-0000-0000-0049-000000000162}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000164}, !- Inlet Port - {00000000-0000-0000-0017-000000000165}; !- Outlet Port + {00000000-0000-0000-0017-000000000338}, !- Inlet Port + {00000000-0000-0000-0017-000000000339}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000097}, !- Handle + {00000000-0000-0000-0049-000000000163}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000154}, !- Inlet Port - {00000000-0000-0000-0017-000000000166}; !- Outlet Port + {00000000-0000-0000-0017-000000000328}, !- Inlet Port + {00000000-0000-0000-0017-000000000340}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000098}, !- Handle + {00000000-0000-0000-0049-000000000164}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000167}, !- Inlet Port - {00000000-0000-0000-0017-000000000168}; !- Outlet Port + {00000000-0000-0000-0017-000000000341}, !- Inlet Port + {00000000-0000-0000-0017-000000000342}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000099}, !- Handle + {00000000-0000-0000-0049-000000000165}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000169}, !- Inlet Port - {00000000-0000-0000-0017-000000000170}; !- Outlet Port + {00000000-0000-0000-0017-000000000343}, !- Inlet Port + {00000000-0000-0000-0017-000000000344}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000100}, !- Handle + {00000000-0000-0000-0049-000000000166}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000172}, !- Inlet Port - {00000000-0000-0000-0017-000000000173}; !- Outlet Port + {00000000-0000-0000-0017-000000000346}, !- Inlet Port + {00000000-0000-0000-0017-000000000347}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000101}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000167}, !- Handle + Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000099}, !- Inlet Port {00000000-0000-0000-0017-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000102}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000168}, !- Handle + Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000116}, !- Inlet Port {00000000-0000-0000-0017-000000000117}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000103}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000169}, !- Handle + Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000070}, !- Inlet Port {00000000-0000-0000-0017-000000000080}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000104}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000170}, !- Handle + Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000081}, !- Inlet Port {00000000-0000-0000-0017-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000105}, !- Handle + {00000000-0000-0000-0049-000000000171}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000078}, !- Inlet Port {00000000-0000-0000-0017-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000106}, !- Handle + {00000000-0000-0000-0049-000000000172}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000107}, !- Handle + {00000000-0000-0000-0049-000000000173}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000118}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000108}, !- Handle + {00000000-0000-0000-0049-000000000174}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000109}, !- Handle + {00000000-0000-0000-0049-000000000175}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000083}, !- Inlet Port {00000000-0000-0000-0017-000000000084}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000110}, !- Handle + {00000000-0000-0000-0049-000000000176}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000085}, !- Inlet Port {00000000-0000-0000-0017-000000000086}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000111}, !- Handle + {00000000-0000-0000-0049-000000000177}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000169}, !- Inlet Port + {00000000-0000-0000-0017-000000000170}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000178}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000227}, !- Inlet Port + {00000000-0000-0000-0017-000000000228}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000179}, !- Handle + Sys6 Return Fan 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000285}, !- Inlet Port + {00000000-0000-0000-0017-000000000286}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000180}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000141}, !- Inlet Port {00000000-0000-0000-0017-000000000142}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000112}, !- Handle + {00000000-0000-0000-0049-000000000181}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000064}, !- Inlet Port {00000000-0000-0000-0017-000000000065}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000113}, !- Handle + {00000000-0000-0000-0049-000000000182}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000114}, !- Handle + {00000000-0000-0000-0049-000000000183}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000115}, !- Handle + {00000000-0000-0000-0049-000000000184}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000116}, !- Handle + {00000000-0000-0000-0049-000000000185}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000061}, !- Inlet Port {00000000-0000-0000-0017-000000000062}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000117}, !- Handle + {00000000-0000-0000-0049-000000000186}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000053}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000118}, !- Handle + {00000000-0000-0000-0049-000000000187}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000054}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000119}, !- Handle + {00000000-0000-0000-0049-000000000188}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000120}, !- Handle + {00000000-0000-0000-0049-000000000189}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000121}, !- Handle + {00000000-0000-0000-0049-000000000190}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000151}, !- Inlet Port + {00000000-0000-0000-0017-000000000153}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000191}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000154}, !- Inlet Port + {00000000-0000-0000-0017-000000000152}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000192}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000166}, !- Inlet Port + {00000000-0000-0000-0017-000000000167}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000193}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000159}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000194}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000160}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000195}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000149}, !- Inlet Port + {00000000-0000-0000-0017-000000000168}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000196}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000161}, !- Inlet Port + {00000000-0000-0000-0017-000000000150}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000197}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000209}, !- Inlet Port + {00000000-0000-0000-0017-000000000211}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000198}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000212}, !- Inlet Port + {00000000-0000-0000-0017-000000000210}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000199}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Port + {00000000-0000-0000-0017-000000000225}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000200}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000217}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000201}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000218}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000202}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000207}, !- Inlet Port + {00000000-0000-0000-0017-000000000226}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000203}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000219}, !- Inlet Port + {00000000-0000-0000-0017-000000000208}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000204}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000267}, !- Inlet Port + {00000000-0000-0000-0017-000000000269}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000205}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000270}, !- Inlet Port + {00000000-0000-0000-0017-000000000268}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000206}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000282}, !- Inlet Port + {00000000-0000-0000-0017-000000000283}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000207}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000275}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000208}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000276}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000209}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000265}, !- Inlet Port + {00000000-0000-0000-0017-000000000284}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000210}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000277}, !- Inlet Port + {00000000-0000-0000-0017-000000000266}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000211}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000124}, !- Inlet Port {00000000-0000-0000-0017-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000122}, !- Handle + {00000000-0000-0000-0049-000000000212}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000127}, !- Inlet Port {00000000-0000-0000-0017-000000000125}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000123}, !- Handle + {00000000-0000-0000-0049-000000000213}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000138}, !- Inlet Port {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000124}, !- Handle + {00000000-0000-0000-0049-000000000214}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000125}, !- Handle + {00000000-0000-0000-0049-000000000215}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000126}, !- Handle + {00000000-0000-0000-0049-000000000216}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000122}, !- Inlet Port {00000000-0000-0000-0017-000000000140}; !- Outlet Port OS:Node, - {00000000-0000-0000-0045-000000000127}, !- Handle + {00000000-0000-0000-0049-000000000217}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000133}, !- Inlet Port {00000000-0000-0000-0017-000000000123}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0046-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0047-000000000001}, !- Handle + {00000000-0000-0000-0051-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A People, !- Name - {00000000-0000-0000-0048-000000000001}, !- People Definition Name - {00000000-0000-0000-0076-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0052-000000000001}, !- People Definition Name + {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0058-000000000022}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0058-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0058-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0062-000000000025}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0047-000000000002}, !- Handle + {00000000-0000-0000-0051-000000000002}, !- Handle Space Function Office - open plan People, !- Name - {00000000-0000-0000-0048-000000000002}, !- People Definition Name - {00000000-0000-0000-0076-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0052-000000000002}, !- People Definition Name + {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0058-000000000022}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0058-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0058-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0062-000000000025}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0048-000000000001}, !- Handle + {00000000-0000-0000-0052-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -4465,7 +7645,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0048-000000000002}, !- Handle + {00000000-0000-0000-0052-000000000002}, !- Handle Space Function Office - open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -4474,55 +7654,55 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0049-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Node Name {00000000-0000-0000-0017-000000000089}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0049-000000000002}, !- Handle + {00000000-0000-0000-0053-000000000002}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Node Name {00000000-0000-0000-0017-000000000093}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0049-000000000003}, !- Handle + {00000000-0000-0000-0053-000000000003}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0017-000000000109}, !- Inlet Node Name {00000000-0000-0000-0017-000000000110}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0049-000000000004}, !- Handle + {00000000-0000-0000-0053-000000000004}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0017-000000000113}, !- Inlet Node Name {00000000-0000-0000-0017-000000000114}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0049-000000000005}, !- Handle + {00000000-0000-0000-0053-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0017-000000000163}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000164}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000337}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000338}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0049-000000000006}, !- Handle + {00000000-0000-0000-0053-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0017-000000000166}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000167}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000340}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000341}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0049-000000000007}, !- Handle + {00000000-0000-0000-0053-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000170}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000171}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000344}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000345}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0049-000000000008}, !- Handle + {00000000-0000-0000-0053-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000173}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000174}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000347}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000348}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0050-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -4530,7 +7710,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0045-000000000033}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000087}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4544,7 +7724,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4558,7 +7738,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0050-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -4566,7 +7746,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0045-000000000043}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000109}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4580,7 +7760,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4594,7 +7774,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0050-000000000003}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -4602,21 +7782,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0045-000000000064}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000130}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000149}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000151}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000323}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000325}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000152}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000155}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000326}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000329}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4630,290 +7810,326 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000005}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0051-000000000001}, !- Handle - {00000000-0000-0000-0084-000000000010}; !- HVAC Component + {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000201}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000002}, !- Handle - {00000000-0000-0000-0084-000000000010}; !- HVAC Component + {00000000-0000-0000-0055-000000000002}, !- Handle + {00000000-0000-0000-0088-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000003}, !- Handle - {00000000-0000-0000-0084-000000000010}; !- HVAC Component + {00000000-0000-0000-0055-000000000003}, !- Handle + {00000000-0000-0000-0088-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000202}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000004}, !- Handle - {00000000-0000-0000-0084-000000000001}; !- HVAC Component + {00000000-0000-0000-0055-000000000004}, !- Handle + {00000000-0000-0000-0088-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000005}, !- Handle - {00000000-0000-0000-0084-000000000001}; !- HVAC Component + {00000000-0000-0000-0055-000000000005}, !- Handle + {00000000-0000-0000-0088-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000006}, !- Handle - {00000000-0000-0000-0084-000000000001}; !- HVAC Component + {00000000-0000-0000-0055-000000000006}, !- Handle + {00000000-0000-0000-0088-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000007}, !- Handle - {00000000-0000-0000-0084-000000000022}; !- HVAC Component + {00000000-0000-0000-0055-000000000007}, !- Handle + {00000000-0000-0000-0088-000000000022}, !- HVAC Component + {00000000-0000-0000-0017-000000000317}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000008}, !- Handle - {00000000-0000-0000-0084-000000000022}; !- HVAC Component + {00000000-0000-0000-0055-000000000008}, !- Handle + {00000000-0000-0000-0088-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000009}, !- Handle - {00000000-0000-0000-0084-000000000022}; !- HVAC Component + {00000000-0000-0000-0055-000000000009}, !- Handle + {00000000-0000-0000-0088-000000000022}, !- HVAC Component + {00000000-0000-0000-0017-000000000318}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000010}, !- Handle - {00000000-0000-0000-0084-000000000003}; !- HVAC Component + {00000000-0000-0000-0055-000000000010}, !- Handle + {00000000-0000-0000-0088-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000011}, !- Handle - {00000000-0000-0000-0084-000000000003}; !- HVAC Component + {00000000-0000-0000-0055-000000000011}, !- Handle + {00000000-0000-0000-0088-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000012}, !- Handle - {00000000-0000-0000-0084-000000000003}; !- HVAC Component + {00000000-0000-0000-0055-000000000012}, !- Handle + {00000000-0000-0000-0088-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000013}, !- Handle - {00000000-0000-0000-0084-000000000016}; !- HVAC Component + {00000000-0000-0000-0055-000000000013}, !- Handle + {00000000-0000-0000-0088-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000259}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000014}, !- Handle - {00000000-0000-0000-0084-000000000016}; !- HVAC Component + {00000000-0000-0000-0055-000000000014}, !- Handle + {00000000-0000-0000-0088-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000015}, !- Handle - {00000000-0000-0000-0084-000000000016}; !- HVAC Component + {00000000-0000-0000-0055-000000000015}, !- Handle + {00000000-0000-0000-0088-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000260}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000016}, !- Handle - {00000000-0000-0000-0084-000000000017}; !- HVAC Component + {00000000-0000-0000-0055-000000000016}, !- Handle + {00000000-0000-0000-0088-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000299}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000017}, !- Handle - {00000000-0000-0000-0084-000000000017}; !- HVAC Component + {00000000-0000-0000-0055-000000000017}, !- Handle + {00000000-0000-0000-0088-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000018}, !- Handle - {00000000-0000-0000-0084-000000000017}; !- HVAC Component + {00000000-0000-0000-0055-000000000018}, !- Handle + {00000000-0000-0000-0088-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000300}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000019}, !- Handle - {00000000-0000-0000-0084-000000000005}; !- HVAC Component + {00000000-0000-0000-0055-000000000019}, !- Handle + {00000000-0000-0000-0088-000000000005}, !- HVAC Component + {00000000-0000-0000-0017-000000000177}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000020}, !- Handle - {00000000-0000-0000-0084-000000000005}; !- HVAC Component + {00000000-0000-0000-0055-000000000020}, !- Handle + {00000000-0000-0000-0088-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000021}, !- Handle - {00000000-0000-0000-0084-000000000005}; !- HVAC Component + {00000000-0000-0000-0055-000000000021}, !- Handle + {00000000-0000-0000-0088-000000000005}, !- HVAC Component + {00000000-0000-0000-0017-000000000178}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000022}, !- Handle - {00000000-0000-0000-0084-000000000006}; !- HVAC Component + {00000000-0000-0000-0055-000000000022}, !- Handle + {00000000-0000-0000-0088-000000000006}, !- HVAC Component + {00000000-0000-0000-0017-000000000189}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000023}, !- Handle - {00000000-0000-0000-0084-000000000006}; !- HVAC Component + {00000000-0000-0000-0055-000000000023}, !- Handle + {00000000-0000-0000-0088-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000024}, !- Handle - {00000000-0000-0000-0084-000000000006}; !- HVAC Component + {00000000-0000-0000-0055-000000000024}, !- Handle + {00000000-0000-0000-0088-000000000006}, !- HVAC Component + {00000000-0000-0000-0017-000000000190}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000025}, !- Handle - {00000000-0000-0000-0084-000000000018}; !- HVAC Component + {00000000-0000-0000-0055-000000000025}, !- Handle + {00000000-0000-0000-0088-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000305}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000026}, !- Handle - {00000000-0000-0000-0084-000000000018}; !- HVAC Component + {00000000-0000-0000-0055-000000000026}, !- Handle + {00000000-0000-0000-0088-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000027}, !- Handle - {00000000-0000-0000-0084-000000000018}; !- HVAC Component + {00000000-0000-0000-0055-000000000027}, !- Handle + {00000000-0000-0000-0088-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000306}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000028}, !- Handle - {00000000-0000-0000-0084-000000000011}; !- HVAC Component + {00000000-0000-0000-0055-000000000028}, !- Handle + {00000000-0000-0000-0088-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000247}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000029}, !- Handle - {00000000-0000-0000-0084-000000000011}; !- HVAC Component + {00000000-0000-0000-0055-000000000029}, !- Handle + {00000000-0000-0000-0088-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000030}, !- Handle - {00000000-0000-0000-0084-000000000011}; !- HVAC Component + {00000000-0000-0000-0055-000000000030}, !- Handle + {00000000-0000-0000-0088-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000248}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000031}, !- Handle - {00000000-0000-0000-0084-000000000019}; !- HVAC Component + {00000000-0000-0000-0055-000000000031}, !- Handle + {00000000-0000-0000-0088-000000000019}, !- HVAC Component + {00000000-0000-0000-0017-000000000293}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000032}, !- Handle - {00000000-0000-0000-0084-000000000019}; !- HVAC Component + {00000000-0000-0000-0055-000000000032}, !- Handle + {00000000-0000-0000-0088-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000033}, !- Handle - {00000000-0000-0000-0084-000000000019}; !- HVAC Component + {00000000-0000-0000-0055-000000000033}, !- Handle + {00000000-0000-0000-0088-000000000019}, !- HVAC Component + {00000000-0000-0000-0017-000000000294}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000034}, !- Handle - {00000000-0000-0000-0084-000000000012}; !- HVAC Component + {00000000-0000-0000-0055-000000000034}, !- Handle + {00000000-0000-0000-0088-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000241}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000035}, !- Handle - {00000000-0000-0000-0084-000000000012}; !- HVAC Component + {00000000-0000-0000-0055-000000000035}, !- Handle + {00000000-0000-0000-0088-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000036}, !- Handle - {00000000-0000-0000-0084-000000000012}; !- HVAC Component + {00000000-0000-0000-0055-000000000036}, !- Handle + {00000000-0000-0000-0088-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000242}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000037}, !- Handle - {00000000-0000-0000-0084-000000000004}, !- HVAC Component + {00000000-0000-0000-0055-000000000037}, !- Handle + {00000000-0000-0000-0088-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000143}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000038}, !- Handle - {00000000-0000-0000-0084-000000000004}; !- HVAC Component + {00000000-0000-0000-0055-000000000038}, !- Handle + {00000000-0000-0000-0088-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000039}, !- Handle - {00000000-0000-0000-0084-000000000004}, !- HVAC Component + {00000000-0000-0000-0055-000000000039}, !- Handle + {00000000-0000-0000-0088-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000144}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000040}, !- Handle - {00000000-0000-0000-0084-000000000002}; !- HVAC Component + {00000000-0000-0000-0055-000000000040}, !- Handle + {00000000-0000-0000-0088-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000041}, !- Handle - {00000000-0000-0000-0084-000000000002}; !- HVAC Component + {00000000-0000-0000-0055-000000000041}, !- Handle + {00000000-0000-0000-0088-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000042}, !- Handle - {00000000-0000-0000-0084-000000000002}; !- HVAC Component + {00000000-0000-0000-0055-000000000042}, !- Handle + {00000000-0000-0000-0088-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000043}, !- Handle - {00000000-0000-0000-0084-000000000007}; !- HVAC Component + {00000000-0000-0000-0055-000000000043}, !- Handle + {00000000-0000-0000-0088-000000000007}, !- HVAC Component + {00000000-0000-0000-0017-000000000171}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000044}, !- Handle - {00000000-0000-0000-0084-000000000007}; !- HVAC Component + {00000000-0000-0000-0055-000000000044}, !- Handle + {00000000-0000-0000-0088-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000045}, !- Handle - {00000000-0000-0000-0084-000000000007}; !- HVAC Component + {00000000-0000-0000-0055-000000000045}, !- Handle + {00000000-0000-0000-0088-000000000007}, !- HVAC Component + {00000000-0000-0000-0017-000000000172}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000046}, !- Handle - {00000000-0000-0000-0084-000000000020}; !- HVAC Component + {00000000-0000-0000-0055-000000000046}, !- Handle + {00000000-0000-0000-0088-000000000020}, !- HVAC Component + {00000000-0000-0000-0017-000000000311}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000047}, !- Handle - {00000000-0000-0000-0084-000000000020}; !- HVAC Component + {00000000-0000-0000-0055-000000000047}, !- Handle + {00000000-0000-0000-0088-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000048}, !- Handle - {00000000-0000-0000-0084-000000000020}; !- HVAC Component + {00000000-0000-0000-0055-000000000048}, !- Handle + {00000000-0000-0000-0088-000000000020}, !- HVAC Component + {00000000-0000-0000-0017-000000000312}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000049}, !- Handle - {00000000-0000-0000-0084-000000000013}; !- HVAC Component + {00000000-0000-0000-0055-000000000049}, !- Handle + {00000000-0000-0000-0088-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000235}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000050}, !- Handle - {00000000-0000-0000-0084-000000000013}; !- HVAC Component + {00000000-0000-0000-0055-000000000050}, !- Handle + {00000000-0000-0000-0088-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000051}, !- Handle - {00000000-0000-0000-0084-000000000013}; !- HVAC Component + {00000000-0000-0000-0055-000000000051}, !- Handle + {00000000-0000-0000-0088-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000236}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000052}, !- Handle - {00000000-0000-0000-0084-000000000021}; !- HVAC Component + {00000000-0000-0000-0055-000000000052}, !- Handle + {00000000-0000-0000-0088-000000000021}, !- HVAC Component + {00000000-0000-0000-0017-000000000287}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000053}, !- Handle - {00000000-0000-0000-0084-000000000021}; !- HVAC Component + {00000000-0000-0000-0055-000000000053}, !- Handle + {00000000-0000-0000-0088-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000054}, !- Handle - {00000000-0000-0000-0084-000000000021}; !- HVAC Component + {00000000-0000-0000-0055-000000000054}, !- Handle + {00000000-0000-0000-0088-000000000021}, !- HVAC Component + {00000000-0000-0000-0017-000000000288}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000055}, !- Handle - {00000000-0000-0000-0084-000000000014}; !- HVAC Component + {00000000-0000-0000-0055-000000000055}, !- Handle + {00000000-0000-0000-0088-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000229}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000056}, !- Handle - {00000000-0000-0000-0084-000000000014}; !- HVAC Component + {00000000-0000-0000-0055-000000000056}, !- Handle + {00000000-0000-0000-0088-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000057}, !- Handle - {00000000-0000-0000-0084-000000000014}; !- HVAC Component + {00000000-0000-0000-0055-000000000057}, !- Handle + {00000000-0000-0000-0088-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000230}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000058}, !- Handle - {00000000-0000-0000-0084-000000000008}; !- HVAC Component + {00000000-0000-0000-0055-000000000058}, !- Handle + {00000000-0000-0000-0088-000000000008}, !- HVAC Component + {00000000-0000-0000-0017-000000000195}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000059}, !- Handle - {00000000-0000-0000-0084-000000000008}; !- HVAC Component + {00000000-0000-0000-0055-000000000059}, !- Handle + {00000000-0000-0000-0088-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000060}, !- Handle - {00000000-0000-0000-0084-000000000008}; !- HVAC Component + {00000000-0000-0000-0055-000000000060}, !- Handle + {00000000-0000-0000-0088-000000000008}, !- HVAC Component + {00000000-0000-0000-0017-000000000196}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000061}, !- Handle - {00000000-0000-0000-0084-000000000015}; !- HVAC Component + {00000000-0000-0000-0055-000000000061}, !- Handle + {00000000-0000-0000-0088-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000253}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000062}, !- Handle - {00000000-0000-0000-0084-000000000015}; !- HVAC Component + {00000000-0000-0000-0055-000000000062}, !- Handle + {00000000-0000-0000-0088-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000063}, !- Handle - {00000000-0000-0000-0084-000000000015}; !- HVAC Component + {00000000-0000-0000-0055-000000000063}, !- Handle + {00000000-0000-0000-0088-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000254}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000064}, !- Handle - {00000000-0000-0000-0084-000000000009}; !- HVAC Component + {00000000-0000-0000-0055-000000000064}, !- Handle + {00000000-0000-0000-0088-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000183}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000065}, !- Handle - {00000000-0000-0000-0084-000000000009}; !- HVAC Component + {00000000-0000-0000-0055-000000000065}, !- Handle + {00000000-0000-0000-0088-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000066}, !- Handle - {00000000-0000-0000-0084-000000000009}; !- HVAC Component + {00000000-0000-0000-0055-000000000066}, !- Handle + {00000000-0000-0000-0088-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000184}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000067}, !- Handle - {00000000-0000-0000-0084-000000000023}, !- HVAC Component + {00000000-0000-0000-0055-000000000067}, !- Handle + {00000000-0000-0000-0088-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000063}; !- Port 1 OS:PortList, - {00000000-0000-0000-0051-000000000068}, !- Handle - {00000000-0000-0000-0084-000000000023}; !- HVAC Component + {00000000-0000-0000-0055-000000000068}, !- Handle + {00000000-0000-0000-0088-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0051-000000000069}, !- Handle - {00000000-0000-0000-0084-000000000023}, !- HVAC Component + {00000000-0000-0000-0055-000000000069}, !- Handle + {00000000-0000-0000-0088-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000064}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0052-000000000001}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000156}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000157}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000330}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000331}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 739784.190131565, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -4932,14 +8148,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0053-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0017-000000000077}, !- Inlet Node Name {00000000-0000-0000-0017-000000000078}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.936, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -4965,14 +8181,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0053-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0017-000000000102}, !- Inlet Node Name {00000000-0000-0000-0017-000000000103}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.954, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -4998,322 +8214,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000003}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000004}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000005}, !- Handle + {00000000-0000-0000-0058-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000006}, !- Handle + {00000000-0000-0000-0058-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000007}, !- Handle + {00000000-0000-0000-0058-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000008}, !- Handle + {00000000-0000-0000-0058-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000009}, !- Handle + {00000000-0000-0000-0058-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000010}, !- Handle + {00000000-0000-0000-0058-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000011}, !- Handle + {00000000-0000-0000-0058-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000012}, !- Handle + {00000000-0000-0000-0058-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000013}, !- Handle + {00000000-0000-0000-0058-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000014}, !- Handle + {00000000-0000-0000-0058-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000015}, !- Handle + {00000000-0000-0000-0058-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000016}, !- Handle + {00000000-0000-0000-0058-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000017}, !- Handle + {00000000-0000-0000-0058-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000018}, !- Handle + {00000000-0000-0000-0058-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000019}, !- Handle + {00000000-0000-0000-0058-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000020}, !- Handle + {00000000-0000-0000-0058-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000021}, !- Handle + {00000000-0000-0000-0058-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000022}, !- Handle + {00000000-0000-0000-0058-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000023}, !- Handle + {00000000-0000-0000-0058-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000024}, !- Handle + {00000000-0000-0000-0058-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000025}, !- Handle + {00000000-0000-0000-0058-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000026}, !- Handle + {00000000-0000-0000-0058-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000027}, !- Handle + {00000000-0000-0000-0058-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000028}, !- Handle + {00000000-0000-0000-0058-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000029}, !- Handle + {00000000-0000-0000-0058-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000030}, !- Handle + {00000000-0000-0000-0058-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000031}, !- Handle + {00000000-0000-0000-0058-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000032}, !- Handle + {00000000-0000-0000-0058-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000033}, !- Handle + {00000000-0000-0000-0058-000000000033}, !- Handle Space Function Electrical/Mechanical-sch-A 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000034}, !- Handle + {00000000-0000-0000-0058-000000000034}, !- Handle Space Function Electrical/Mechanical-sch-A 2, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000035}, !- Handle + {00000000-0000-0000-0058-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000036}, !- Handle + {00000000-0000-0000-0058-000000000036}, !- Handle Space Function Office - open plan 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000037}, !- Handle + {00000000-0000-0000-0058-000000000037}, !- Handle Space Function Office - open plan 2, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000038}, !- Handle + {00000000-0000-0000-0058-000000000038}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0054-000000000039}, !- Handle + {00000000-0000-0000-0058-000000000039}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0059-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0059-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000002}, !- Handle + {00000000-0000-0000-0060-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000003}, !- Handle + {00000000-0000-0000-0060-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0059-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000004}, !- Handle + {00000000-0000-0000-0060-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0059-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000005}, !- Handle + {00000000-0000-0000-0060-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5322,36 +8538,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000006}, !- Handle + {00000000-0000-0000-0060-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000007}, !- Handle + {00000000-0000-0000-0060-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000008}, !- Handle + {00000000-0000-0000-0060-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000009}, !- Handle + {00000000-0000-0000-0060-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5376,9 +8592,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000010}, !- Handle + {00000000-0000-0000-0060-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5403,27 +8619,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000011}, !- Handle + {00000000-0000-0000-0060-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000012}, !- Handle + {00000000-0000-0000-0060-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000013}, !- Handle + {00000000-0000-0000-0060-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5454,9 +8670,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000014}, !- Handle + {00000000-0000-0000-0060-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5487,27 +8703,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000015}, !- Handle + {00000000-0000-0000-0060-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000016}, !- Handle + {00000000-0000-0000-0060-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000017}, !- Handle + {00000000-0000-0000-0060-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5541,9 +8757,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000018}, !- Handle + {00000000-0000-0000-0060-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5577,27 +8793,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000019}, !- Handle + {00000000-0000-0000-0060-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000020}, !- Handle + {00000000-0000-0000-0060-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000021}, !- Handle + {00000000-0000-0000-0060-000000000021}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5628,9 +8844,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000022}, !- Handle + {00000000-0000-0000-0060-000000000022}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5661,27 +8877,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000023}, !- Handle + {00000000-0000-0000-0060-000000000023}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000024}, !- Handle + {00000000-0000-0000-0060-000000000024}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000025}, !- Handle + {00000000-0000-0000-0060-000000000025}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5694,9 +8910,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000026}, !- Handle + {00000000-0000-0000-0060-000000000026}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5709,27 +8925,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000027}, !- Handle + {00000000-0000-0000-0060-000000000027}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000028}, !- Handle + {00000000-0000-0000-0060-000000000028}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000029}, !- Handle + {00000000-0000-0000-0060-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5745,9 +8961,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000030}, !- Handle + {00000000-0000-0000-0060-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5763,52 +8979,52 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000031}, !- Handle + {00000000-0000-0000-0060-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000032}, !- Handle + {00000000-0000-0000-0060-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000033}, !- Handle + {00000000-0000-0000-0060-000000000033}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000034}, !- Handle + {00000000-0000-0000-0060-000000000034}, !- Handle NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000035}, !- Handle + {00000000-0000-0000-0060-000000000035}, !- Handle NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000036}, !- Handle + {00000000-0000-0000-0060-000000000036}, !- Handle Schedule Day 1, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5817,16 +9033,70 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000037}, !- Handle + {00000000-0000-0000-0060-000000000037}, !- Handle Schedule Day 10, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000038}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000039}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000040}, !- Handle + Schedule Day 13, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000041}, !- Handle + Schedule Day 14, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000042}, !- Handle + Schedule Day 15, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000043}, !- Handle + Schedule Day 16, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000038}, !- Handle + {00000000-0000-0000-0060-000000000044}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5835,9 +9105,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000039}, !- Handle + {00000000-0000-0000-0060-000000000045}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -5913,9 +9183,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000040}, !- Handle + {00000000-0000-0000-0060-000000000046}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -5991,90 +9261,117 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000041}, !- Handle + {00000000-0000-0000-0060-000000000047}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000042}, !- Handle + {00000000-0000-0000-0060-000000000048}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000043}, !- Handle + {00000000-0000-0000-0060-000000000049}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000044}, !- Handle + {00000000-0000-0000-0060-000000000050}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000045}, !- Handle + {00000000-0000-0000-0060-000000000051}, !- Handle Schedule Day 9, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000046}, !- Handle + {00000000-0000-0000-0060-000000000052}, !- Handle Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000047}, !- Handle + {00000000-0000-0000-0060-000000000053}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000054}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000055}, !- Handle + Supply Air Temp Default 3, !- Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000056}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000048}, !- Handle + {00000000-0000-0000-0060-000000000057}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000049}, !- Handle + {00000000-0000-0000-0060-000000000058}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000050}, !- Handle + {00000000-0000-0000-0060-000000000059}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6150,9 +9447,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000051}, !- Handle + {00000000-0000-0000-0060-000000000060}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6228,9 +9525,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000052}, !- Handle + {00000000-0000-0000-0060-000000000061}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6306,9 +9603,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000053}, !- Handle + {00000000-0000-0000-0060-000000000062}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0059-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6384,9 +9681,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000054}, !- Handle + {00000000-0000-0000-0060-000000000063}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6462,9 +9759,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000055}, !- Handle + {00000000-0000-0000-0060-000000000064}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6540,9 +9837,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000056}, !- Handle + {00000000-0000-0000-0060-000000000065}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6618,9 +9915,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000057}, !- Handle + {00000000-0000-0000-0060-000000000066}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0059-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6696,9 +9993,42 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000067}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000068}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000069}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000070}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -6711,27 +10041,93 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000071}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000072}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000073}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000074}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000075}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000076}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Default, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000077}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0060-000000000078}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000061}, !- Handle + {00000000-0000-0000-0060-000000000079}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -6744,27 +10140,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000062}, !- Handle + {00000000-0000-0000-0060-000000000080}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000063}, !- Handle + {00000000-0000-0000-0060-000000000081}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000064}, !- Handle + {00000000-0000-0000-0060-000000000082}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6840,9 +10236,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000065}, !- Handle + {00000000-0000-0000-0060-000000000083}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6918,9 +10314,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000066}, !- Handle + {00000000-0000-0000-0060-000000000084}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6996,9 +10392,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0056-000000000067}, !- Handle + {00000000-0000-0000-0060-000000000085}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0059-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7074,11 +10470,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0058-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7093,11 +10489,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0058-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7112,11 +10508,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000003}, !- Handle + {00000000-0000-0000-0061-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0058-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0056-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7131,11 +10527,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000004}, !- Handle + {00000000-0000-0000-0061-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0058-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0056-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7150,11 +10546,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000005}, !- Handle + {00000000-0000-0000-0061-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0058-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7169,11 +10565,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000006}, !- Handle + {00000000-0000-0000-0061-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0058-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0056-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7188,11 +10584,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000007}, !- Handle + {00000000-0000-0000-0061-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0058-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0056-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7207,11 +10603,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000008}, !- Handle + {00000000-0000-0000-0061-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0058-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000028}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7226,11 +10622,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000009}, !- Handle + {00000000-0000-0000-0061-000000000009}, !- Handle Schedule Rule 17, !- Name - {00000000-0000-0000-0058-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0056-000000000022}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000022}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7245,11 +10641,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000010}, !- Handle + {00000000-0000-0000-0061-000000000010}, !- Handle Schedule Rule 18, !- Name - {00000000-0000-0000-0058-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0056-000000000023}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7264,11 +10660,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000011}, !- Handle + {00000000-0000-0000-0061-000000000011}, !- Handle Schedule Rule 19, !- Name - {00000000-0000-0000-0058-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000024}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7283,11 +10679,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000012}, !- Handle + {00000000-0000-0000-0061-000000000012}, !- Handle Schedule Rule 2, !- Name - {00000000-0000-0000-0058-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0056-000000000018}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000018}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7302,11 +10698,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000013}, !- Handle + {00000000-0000-0000-0061-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0058-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000026}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0056-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000049}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7321,11 +10717,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000014}, !- Handle + {00000000-0000-0000-0061-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0058-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000026}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000044}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000050}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7340,11 +10736,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000015}, !- Handle + {00000000-0000-0000-0061-000000000015}, !- Handle Schedule Rule 22, !- Name - {00000000-0000-0000-0058-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000030}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0056-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000051}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7359,11 +10755,125 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000016}, !- Handle + {00000000-0000-0000-0061-000000000016}, !- Handle Schedule Rule 23, !- Name - {00000000-0000-0000-0058-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000030}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0060-000000000037}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0061-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0062-000000000027}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0060-000000000038}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0061-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0062-000000000027}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0060-000000000039}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0061-000000000019}, !- Handle + Schedule Rule 26, !- Name + {00000000-0000-0000-0062-000000000028}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0060-000000000040}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0061-000000000020}, !- Handle + Schedule Rule 27, !- Name + {00000000-0000-0000-0062-000000000028}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0060-000000000041}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0061-000000000021}, !- Handle + Schedule Rule 28, !- Name + {00000000-0000-0000-0062-000000000029}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0060-000000000042}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0061-000000000022}, !- Handle + Schedule Rule 29, !- Name + {00000000-0000-0000-0062-000000000029}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000037}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7378,11 +10888,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000017}, !- Handle + {00000000-0000-0000-0061-000000000023}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0058-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0056-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000019}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7397,11 +10907,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000018}, !- Handle + {00000000-0000-0000-0061-000000000024}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0058-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7416,11 +10926,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000019}, !- Handle + {00000000-0000-0000-0061-000000000025}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0058-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0056-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7435,11 +10945,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000020}, !- Handle + {00000000-0000-0000-0061-000000000026}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0058-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0056-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7454,11 +10964,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000021}, !- Handle + {00000000-0000-0000-0061-000000000027}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0058-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7473,11 +10983,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000022}, !- Handle + {00000000-0000-0000-0061-000000000028}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0058-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0056-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7492,11 +11002,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000023}, !- Handle + {00000000-0000-0000-0061-000000000029}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0058-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0056-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7511,11 +11021,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000024}, !- Handle + {00000000-0000-0000-0061-000000000030}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0058-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0056-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000059}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7530,11 +11040,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000025}, !- Handle + {00000000-0000-0000-0061-000000000031}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0058-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0056-000000000052}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000061}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7549,11 +11059,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000026}, !- Handle + {00000000-0000-0000-0061-000000000032}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0058-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000063}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7568,11 +11078,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000027}, !- Handle + {00000000-0000-0000-0061-000000000033}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0058-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0056-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000065}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7587,11 +11097,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000028}, !- Handle + {00000000-0000-0000-0061-000000000034}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0058-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0056-000000000064}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000082}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7606,11 +11116,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0057-000000000029}, !- Handle + {00000000-0000-0000-0061-000000000035}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0058-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0056-000000000066}, !- Day Schedule Name + {00000000-0000-0000-0060-000000000084}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7625,157 +11135,199 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0059-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0062-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000003}, !- Handle + {00000000-0000-0000-0062-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000039}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000040}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000005}, !- Handle + {00000000-0000-0000-0062-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0059-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000006}, !- Handle + {00000000-0000-0000-0062-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000007}, !- Handle + {00000000-0000-0000-0062-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000008}, !- Handle + {00000000-0000-0000-0062-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000009}, !- Handle + {00000000-0000-0000-0062-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000010}, !- Handle + {00000000-0000-0000-0062-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000011}, !- Handle + {00000000-0000-0000-0062-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000012}, !- Handle + {00000000-0000-0000-0062-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000013}, !- Handle + {00000000-0000-0000-0062-000000000013}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000021}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000021}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000014}, !- Handle + {00000000-0000-0000-0062-000000000014}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000015}, !- Handle + {00000000-0000-0000-0062-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000016}, !- Handle + {00000000-0000-0000-0062-000000000016}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000033}, !- Default Day Schedule Name - {00000000-0000-0000-0056-000000000034}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0056-000000000035}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000033}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000034}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000035}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000017}, !- Handle + {00000000-0000-0000-0062-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000018}, !- Handle + {00000000-0000-0000-0062-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000042}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000019}, !- Handle + {00000000-0000-0000-0062-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000020}, !- Handle + {00000000-0000-0000-0062-000000000020}, !- Handle + Supply Air Temp 1, !- Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000053}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0062-000000000021}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000054}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0062-000000000022}, !- Handle + Supply Air Temp 3, !- Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000055}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0062-000000000023}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0059-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000056}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000021}, !- Handle + {00000000-0000-0000-0062-000000000024}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0059-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000057}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000022}, !- Handle + {00000000-0000-0000-0062-000000000025}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000049}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000058}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000023}, !- Handle + {00000000-0000-0000-0062-000000000026}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000058}, !- Default Day Schedule Name - {00000000-0000-0000-0056-000000000059}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0056-000000000060}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000067}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000068}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000069}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0058-000000000024}, !- Handle + {00000000-0000-0000-0062-000000000027}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000070}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000071}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000072}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0062-000000000028}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000073}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000074}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000075}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0062-000000000029}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch, !- Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000076}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000077}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000078}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0062-000000000030}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0056-000000000061}, !- Default Day Schedule Name - {00000000-0000-0000-0056-000000000062}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0056-000000000063}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0060-000000000079}, !- Default Day Schedule Name + {00000000-0000-0000-0060-000000000080}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0060-000000000081}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -7783,7 +11335,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0059-000000000002}, !- Handle + {00000000-0000-0000-0063-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -7791,7 +11343,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0059-000000000003}, !- Handle + {00000000-0000-0000-0063-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -7799,14 +11351,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0059-000000000004}, !- Handle + {00000000-0000-0000-0063-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0059-000000000005}, !- Handle + {00000000-0000-0000-0063-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -7814,7 +11366,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0059-000000000006}, !- Handle + {00000000-0000-0000-0063-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -7822,7 +11374,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0059-000000000007}, !- Handle + {00000000-0000-0000-0063-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -7830,7 +11382,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0059-000000000008}, !- Handle + {00000000-0000-0000-0063-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -7838,7 +11390,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0059-000000000009}, !- Handle + {00000000-0000-0000-0063-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -7846,43 +11398,64 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:Scheduled, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0058-000000000019}, !- Schedule Name - {00000000-0000-0000-0045-000000000064}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000019}, !- Schedule Name + {00000000-0000-0000-0049-000000000130}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0060-000000000002}, !- Handle + {00000000-0000-0000-0064-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0058-000000000003}, !- Schedule Name - {00000000-0000-0000-0045-000000000033}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000003}, !- Schedule Name + {00000000-0000-0000-0049-000000000087}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0060-000000000003}, !- Handle + {00000000-0000-0000-0064-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0058-000000000004}, !- Schedule Name - {00000000-0000-0000-0045-000000000043}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000004}, !- Schedule Name + {00000000-0000-0000-0049-000000000109}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0060-000000000004}, !- Handle + {00000000-0000-0000-0064-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0058-000000000020}, !- Schedule Name - {00000000-0000-0000-0045-000000000127}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0062-000000000023}, !- Schedule Name + {00000000-0000-0000-0049-000000000217}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0064-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0062-000000000020}, !- Schedule Name + {00000000-0000-0000-0049-000000000196}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0064-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0062-000000000021}, !- Schedule Name + {00000000-0000-0000-0049-000000000203}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0064-000000000007}, !- Handle + Setpoint Manager Scheduled 6, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0062-000000000022}, !- Schedule Name + {00000000-0000-0000-0049-000000000210}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0084-000000000023}, !- Control Zone Name - {00000000-0000-0000-0045-000000000120}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0088-000000000023}, !- Control Zone Name + {00000000-0000-0000-0049-000000000189}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -7897,7 +11470,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -7906,7 +11479,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -7921,7 +11494,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0069-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -7936,7 +11509,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0070-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -7951,7 +11524,7 @@ OS:Site:GroundTemperature:FCfactorMethod, 11.1; !- December Ground Temperature {C} OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0071-000000000001}, !- Handle -1.6, !- January Surface Ground Temperature {C} -5.4, !- February Surface Ground Temperature {C} -6.4, !- March Surface Ground Temperature {C} @@ -7966,20 +11539,20 @@ OS:Site:GroundTemperature:Shallow, 4; !- December Surface Ground Temperature {C} OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0072-000000000001}, !- Handle Correlation, !- Calculation Method , !- Temperature Schedule Name 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} OS:Sizing:Parameters, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0073-000000000001}, !- Handle 1.3, !- Heating Sizing Factor 1.1; !- Cooling Sizing Factor OS:Sizing:Plant, - {00000000-0000-0000-0070-000000000001}, !- Handle - {00000000-0000-0000-0050-000000000001}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0074-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Plant or Condenser Loop Name Cooling, !- Loop Type 7, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -7988,8 +11561,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0070-000000000002}, !- Handle - {00000000-0000-0000-0050-000000000002}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0074-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Plant or Condenser Loop Name Condenser, !- Loop Type 29, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -7998,8 +11571,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0070-000000000003}, !- Handle - {00000000-0000-0000-0050-000000000003}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0074-000000000003}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Plant or Condenser Loop Name Heating, !- Loop Type 60, !- Design Loop Exit Temperature {C} 5, !- Loop Design Temperature Difference {deltaC} @@ -8008,27 +11581,68 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0071-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- AirLoop Name - Sensible, !- Type of Load to Size On + {00000000-0000-0000-0075-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 43, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0075-000000000002}, !- Handle + {00000000-0000-0000-0002-000000000005}, !- AirLoop Name + , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 1, !- Central Heating Maximum System Air Flow Ratio + 0.3, !- Central Heating Maximum System Air Flow Ratio 7, !- Preheat Design Temperature {C} 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Precool Design Temperature {C} + 12.8, !- Precool Design Temperature {C} 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} 13, !- Central Cooling Design Supply Air Temperature {C} - 43, !- Central Heating Design Supply Air Temperature {C} - NonCoincident, !- Sizing Option + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option No, !- 100% Outdoor Air in Cooling No, !- 100% Outdoor Air in Heating 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - DesignDay, !- Cooling Design Air Flow Method - 0, !- Cooling Design Air Flow Rate {m3/s} - DesignDay, !- Heating Design Air Flow Method - 0, !- Heating Design Air Flow Rate {m3/s} - ZoneSum, !- System Outdoor Air Method + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate @@ -8049,7 +11663,7 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0071-000000000002}, !- Handle + {00000000-0000-0000-0075-000000000003}, !- Handle {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -8089,19 +11703,101 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0075-000000000004}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0075-000000000005}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000001}, !- Handle - {00000000-0000-0000-0084-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000010}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8125,8 +11821,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000002}, !- Handle - {00000000-0000-0000-0084-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0076-000000000002}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8160,18 +11856,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000003}, !- Handle - {00000000-0000-0000-0084-000000000022}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000003}, !- Handle + {00000000-0000-0000-0088-000000000022}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8195,8 +11891,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000004}, !- Handle - {00000000-0000-0000-0084-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0076-000000000004}, !- Handle + {00000000-0000-0000-0088-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8230,18 +11926,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000005}, !- Handle - {00000000-0000-0000-0084-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000005}, !- Handle + {00000000-0000-0000-0088-000000000016}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8265,18 +11961,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000006}, !- Handle - {00000000-0000-0000-0084-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000006}, !- Handle + {00000000-0000-0000-0088-000000000017}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8300,18 +11996,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000007}, !- Handle - {00000000-0000-0000-0084-000000000005}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000007}, !- Handle + {00000000-0000-0000-0088-000000000005}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8335,18 +12031,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000008}, !- Handle - {00000000-0000-0000-0084-000000000006}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000008}, !- Handle + {00000000-0000-0000-0088-000000000006}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8370,18 +12066,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000009}, !- Handle - {00000000-0000-0000-0084-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000009}, !- Handle + {00000000-0000-0000-0088-000000000018}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8405,18 +12101,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000010}, !- Handle - {00000000-0000-0000-0084-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000010}, !- Handle + {00000000-0000-0000-0088-000000000011}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8440,18 +12136,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000011}, !- Handle - {00000000-0000-0000-0084-000000000019}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000011}, !- Handle + {00000000-0000-0000-0088-000000000019}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8475,18 +12171,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000012}, !- Handle - {00000000-0000-0000-0084-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000012}, !- Handle + {00000000-0000-0000-0088-000000000012}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8510,8 +12206,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000013}, !- Handle - {00000000-0000-0000-0084-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0076-000000000013}, !- Handle + {00000000-0000-0000-0088-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8545,8 +12241,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000014}, !- Handle - {00000000-0000-0000-0084-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0076-000000000014}, !- Handle + {00000000-0000-0000-0088-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8580,18 +12276,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000015}, !- Handle - {00000000-0000-0000-0084-000000000007}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000015}, !- Handle + {00000000-0000-0000-0088-000000000007}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8615,18 +12311,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000016}, !- Handle - {00000000-0000-0000-0084-000000000020}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000016}, !- Handle + {00000000-0000-0000-0088-000000000020}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8650,18 +12346,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000017}, !- Handle - {00000000-0000-0000-0084-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000017}, !- Handle + {00000000-0000-0000-0088-000000000013}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8685,18 +12381,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000018}, !- Handle - {00000000-0000-0000-0084-000000000021}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000018}, !- Handle + {00000000-0000-0000-0088-000000000021}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8720,18 +12416,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000019}, !- Handle - {00000000-0000-0000-0084-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000019}, !- Handle + {00000000-0000-0000-0088-000000000014}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8755,18 +12451,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000020}, !- Handle - {00000000-0000-0000-0084-000000000008}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000020}, !- Handle + {00000000-0000-0000-0088-000000000008}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8790,18 +12486,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000021}, !- Handle - {00000000-0000-0000-0084-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000021}, !- Handle + {00000000-0000-0000-0088-000000000015}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8825,18 +12521,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000022}, !- Handle - {00000000-0000-0000-0084-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0076-000000000022}, !- Handle + {00000000-0000-0000-0088-000000000009}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8860,8 +12556,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0072-000000000023}, !- Handle - {00000000-0000-0000-0084-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0076-000000000023}, !- Handle + {00000000-0000-0000-0088-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8895,7 +12591,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0073-000000000001}, !- Handle + {00000000-0000-0000-0077-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -8923,7 +12619,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0073-000000000002}, !- Handle + {00000000-0000-0000-0077-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -8951,7 +12647,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0073-000000000003}, !- Handle + {00000000-0000-0000-0077-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -8975,9 +12671,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0074-000000000001}, !- Handle + {00000000-0000-0000-0078-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0076-000000000002}, !- Space Type Name + {00000000-0000-0000-0080-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -8985,16 +12681,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0084-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000002}, !- Handle + {00000000-0000-0000-0078-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9002,16 +12698,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0084-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000003}, !- Handle + {00000000-0000-0000-0078-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9019,16 +12715,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0084-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000004}, !- Handle + {00000000-0000-0000-0078-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9036,16 +12732,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0084-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000005}, !- Handle + {00000000-0000-0000-0078-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9053,16 +12749,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0084-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000006}, !- Handle + {00000000-0000-0000-0078-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9070,16 +12766,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0084-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000007}, !- Handle + {00000000-0000-0000-0078-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9087,16 +12783,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0084-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000008}, !- Handle + {00000000-0000-0000-0078-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9104,16 +12800,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0084-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000009}, !- Handle + {00000000-0000-0000-0078-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0076-000000000001}, !- Space Type Name + {00000000-0000-0000-0080-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9121,16 +12817,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0084-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000010}, !- Handle + {00000000-0000-0000-0078-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0076-000000000001}, !- Space Type Name + {00000000-0000-0000-0080-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9138,16 +12834,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0084-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000011}, !- Handle + {00000000-0000-0000-0078-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9155,16 +12851,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0084-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000012}, !- Handle + {00000000-0000-0000-0078-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9172,16 +12868,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0084-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000013}, !- Handle + {00000000-0000-0000-0078-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9189,16 +12885,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0084-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000014}, !- Handle + {00000000-0000-0000-0078-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9206,16 +12902,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0084-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000015}, !- Handle + {00000000-0000-0000-0078-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9223,16 +12919,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0084-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000016}, !- Handle + {00000000-0000-0000-0078-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9240,16 +12936,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0084-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000017}, !- Handle + {00000000-0000-0000-0078-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9257,16 +12953,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0084-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000018}, !- Handle + {00000000-0000-0000-0078-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9274,16 +12970,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0084-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000019}, !- Handle + {00000000-0000-0000-0078-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9291,16 +12987,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0084-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000020}, !- Handle + {00000000-0000-0000-0078-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9308,16 +13004,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0084-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000021}, !- Handle + {00000000-0000-0000-0078-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9325,16 +13021,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0084-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000022}, !- Handle + {00000000-0000-0000-0078-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0076-000000000003}, !- Space Type Name + {00000000-0000-0000-0080-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9342,16 +13038,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0084-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0074-000000000023}, !- Handle + {00000000-0000-0000-0078-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0076-000000000001}, !- Space Type Name + {00000000-0000-0000-0080-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9359,17 +13055,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0084-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0088-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0074-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9381,10 +13077,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000002}, !- Handle + {00000000-0000-0000-0079-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0074-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9396,10 +13092,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000003}, !- Handle + {00000000-0000-0000-0079-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0074-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9411,10 +13107,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000004}, !- Handle + {00000000-0000-0000-0079-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0074-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9426,10 +13122,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000005}, !- Handle + {00000000-0000-0000-0079-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0074-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9441,10 +13137,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000006}, !- Handle + {00000000-0000-0000-0079-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0074-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9456,10 +13152,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000007}, !- Handle + {00000000-0000-0000-0079-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0074-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9471,10 +13167,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000008}, !- Handle + {00000000-0000-0000-0079-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0074-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9486,10 +13182,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000009}, !- Handle + {00000000-0000-0000-0079-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0074-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9501,10 +13197,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000010}, !- Handle + {00000000-0000-0000-0079-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0074-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9516,10 +13212,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000011}, !- Handle + {00000000-0000-0000-0079-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0074-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9531,10 +13227,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000012}, !- Handle + {00000000-0000-0000-0079-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0074-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9546,10 +13242,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000013}, !- Handle + {00000000-0000-0000-0079-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0074-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9561,10 +13257,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000014}, !- Handle + {00000000-0000-0000-0079-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0074-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9576,10 +13272,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0075-000000000015}, !- Handle + {00000000-0000-0000-0079-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0074-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0055-000000000001}, !- Schedule Name + {00000000-0000-0000-0078-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0059-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9591,46 +13287,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0080-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0054-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000031}, !- Group Rendering Name {00000000-0000-0000-0032-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0076-000000000002}, !- Handle + {00000000-0000-0000-0080-000000000002}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0054-000000000034}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000034}, !- Group Rendering Name {00000000-0000-0000-0032-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0076-000000000003}, !- Handle + {00000000-0000-0000-0080-000000000003}, !- Handle Space Function Office - open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0054-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0058-000000000037}, !- Group Rendering Name {00000000-0000-0000-0032-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office - open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle {00000000-0000-0000-0020-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle {00000000-0000-0000-0020-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9639,7 +13335,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000003}, !- Handle + {00000000-0000-0000-0081-000000000003}, !- Handle {00000000-0000-0000-0020-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9648,7 +13344,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000004}, !- Handle + {00000000-0000-0000-0081-000000000004}, !- Handle {00000000-0000-0000-0020-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -9657,25 +13353,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000005}, !- Handle + {00000000-0000-0000-0081-000000000005}, !- Handle {00000000-0000-0000-0020-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000006}, !- Handle + {00000000-0000-0000-0081-000000000006}, !- Handle {00000000-0000-0000-0020-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000007}, !- Handle + {00000000-0000-0000-0081-000000000007}, !- Handle {00000000-0000-0000-0020-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000008}, !- Handle + {00000000-0000-0000-0081-000000000008}, !- Handle {00000000-0000-0000-0020-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9684,7 +13380,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000009}, !- Handle + {00000000-0000-0000-0081-000000000009}, !- Handle {00000000-0000-0000-0020-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9693,7 +13389,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000010}, !- Handle + {00000000-0000-0000-0081-000000000010}, !- Handle {00000000-0000-0000-0020-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9702,12 +13398,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000011}, !- Handle + {00000000-0000-0000-0081-000000000011}, !- Handle {00000000-0000-0000-0020-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000012}, !- Handle + {00000000-0000-0000-0081-000000000012}, !- Handle {00000000-0000-0000-0020-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -9716,12 +13412,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000013}, !- Handle + {00000000-0000-0000-0081-000000000013}, !- Handle {00000000-0000-0000-0020-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000014}, !- Handle + {00000000-0000-0000-0081-000000000014}, !- Handle {00000000-0000-0000-0020-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -9730,34 +13426,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000015}, !- Handle + {00000000-0000-0000-0081-000000000015}, !- Handle {00000000-0000-0000-0020-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000016}, !- Handle + {00000000-0000-0000-0081-000000000016}, !- Handle {00000000-0000-0000-0020-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000017}, !- Handle + {00000000-0000-0000-0081-000000000017}, !- Handle {00000000-0000-0000-0020-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000018}, !- Handle + {00000000-0000-0000-0081-000000000018}, !- Handle {00000000-0000-0000-0020-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000019}, !- Handle + {00000000-0000-0000-0081-000000000019}, !- Handle {00000000-0000-0000-0020-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000020}, !- Handle + {00000000-0000-0000-0081-000000000020}, !- Handle {00000000-0000-0000-0020-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9766,7 +13462,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000021}, !- Handle + {00000000-0000-0000-0081-000000000021}, !- Handle {00000000-0000-0000-0020-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9775,7 +13471,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000022}, !- Handle + {00000000-0000-0000-0081-000000000022}, !- Handle {00000000-0000-0000-0020-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -9784,7 +13480,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000023}, !- Handle + {00000000-0000-0000-0081-000000000023}, !- Handle {00000000-0000-0000-0020-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9793,7 +13489,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000024}, !- Handle + {00000000-0000-0000-0081-000000000024}, !- Handle {00000000-0000-0000-0020-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9802,7 +13498,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000025}, !- Handle + {00000000-0000-0000-0081-000000000025}, !- Handle {00000000-0000-0000-0020-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9811,7 +13507,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000026}, !- Handle + {00000000-0000-0000-0081-000000000026}, !- Handle {00000000-0000-0000-0020-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -9820,7 +13516,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0077-000000000027}, !- Handle + {00000000-0000-0000-0081-000000000027}, !- Handle {00000000-0000-0000-0020-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -9829,135 +13525,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000001}, !- Handle - {00000000-0000-0000-0042-000000000021}; !- Material Name + {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0046-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000002}, !- Handle - {00000000-0000-0000-0043-000000000013}; !- Material Name + {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0047-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000003}, !- Handle - {00000000-0000-0000-0042-000000000008}; !- Material Name + {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0046-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000004}, !- Handle - {00000000-0000-0000-0043-000000000007}; !- Material Name + {00000000-0000-0000-0082-000000000004}, !- Handle + {00000000-0000-0000-0047-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000005}, !- Handle - {00000000-0000-0000-0042-000000000006}; !- Material Name + {00000000-0000-0000-0082-000000000005}, !- Handle + {00000000-0000-0000-0046-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000006}, !- Handle - {00000000-0000-0000-0042-000000000014}; !- Material Name + {00000000-0000-0000-0082-000000000006}, !- Handle + {00000000-0000-0000-0046-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000007}, !- Handle - {00000000-0000-0000-0042-000000000002}; !- Material Name + {00000000-0000-0000-0082-000000000007}, !- Handle + {00000000-0000-0000-0046-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000008}, !- Handle - {00000000-0000-0000-0042-000000000024}; !- Material Name + {00000000-0000-0000-0082-000000000008}, !- Handle + {00000000-0000-0000-0046-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000009}, !- Handle - {00000000-0000-0000-0042-000000000003}; !- Material Name + {00000000-0000-0000-0082-000000000009}, !- Handle + {00000000-0000-0000-0046-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000010}, !- Handle - {00000000-0000-0000-0042-000000000019}; !- Material Name + {00000000-0000-0000-0082-000000000010}, !- Handle + {00000000-0000-0000-0046-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000011}, !- Handle - {00000000-0000-0000-0042-000000000012}; !- Material Name + {00000000-0000-0000-0082-000000000011}, !- Handle + {00000000-0000-0000-0046-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000012}, !- Handle - {00000000-0000-0000-0094-000000000001}; !- Material Name + {00000000-0000-0000-0082-000000000012}, !- Handle + {00000000-0000-0000-0098-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000013}, !- Handle - {00000000-0000-0000-0042-000000000018}; !- Material Name + {00000000-0000-0000-0082-000000000013}, !- Handle + {00000000-0000-0000-0046-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000014}, !- Handle - {00000000-0000-0000-0043-000000000008}; !- Material Name + {00000000-0000-0000-0082-000000000014}, !- Handle + {00000000-0000-0000-0047-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000015}, !- Handle - {00000000-0000-0000-0042-000000000007}; !- Material Name + {00000000-0000-0000-0082-000000000015}, !- Handle + {00000000-0000-0000-0046-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000016}, !- Handle - {00000000-0000-0000-0043-000000000003}; !- Material Name + {00000000-0000-0000-0082-000000000016}, !- Handle + {00000000-0000-0000-0047-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000017}, !- Handle - {00000000-0000-0000-0042-000000000005}; !- Material Name + {00000000-0000-0000-0082-000000000017}, !- Handle + {00000000-0000-0000-0046-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000018}, !- Handle - {00000000-0000-0000-0042-000000000013}; !- Material Name + {00000000-0000-0000-0082-000000000018}, !- Handle + {00000000-0000-0000-0046-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000019}, !- Handle - {00000000-0000-0000-0043-000000000009}; !- Material Name + {00000000-0000-0000-0082-000000000019}, !- Handle + {00000000-0000-0000-0047-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000020}, !- Handle - {00000000-0000-0000-0042-000000000001}; !- Material Name + {00000000-0000-0000-0082-000000000020}, !- Handle + {00000000-0000-0000-0046-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000021}, !- Handle - {00000000-0000-0000-0042-000000000023}; !- Material Name + {00000000-0000-0000-0082-000000000021}, !- Handle + {00000000-0000-0000-0046-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000022}, !- Handle - {00000000-0000-0000-0043-000000000010}; !- Material Name + {00000000-0000-0000-0082-000000000022}, !- Handle + {00000000-0000-0000-0047-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000023}, !- Handle - {00000000-0000-0000-0042-000000000009}; !- Material Name + {00000000-0000-0000-0082-000000000023}, !- Handle + {00000000-0000-0000-0046-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000024}, !- Handle - {00000000-0000-0000-0043-000000000004}; !- Material Name + {00000000-0000-0000-0082-000000000024}, !- Handle + {00000000-0000-0000-0047-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000025}, !- Handle - {00000000-0000-0000-0042-000000000010}; !- Material Name + {00000000-0000-0000-0082-000000000025}, !- Handle + {00000000-0000-0000-0046-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000026}, !- Handle - {00000000-0000-0000-0043-000000000005}; !- Material Name + {00000000-0000-0000-0082-000000000026}, !- Handle + {00000000-0000-0000-0047-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000027}, !- Handle - {00000000-0000-0000-0042-000000000011}; !- Material Name + {00000000-0000-0000-0082-000000000027}, !- Handle + {00000000-0000-0000-0046-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000028}, !- Handle - {00000000-0000-0000-0043-000000000006}; !- Material Name + {00000000-0000-0000-0082-000000000028}, !- Handle + {00000000-0000-0000-0047-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000029}, !- Handle - {00000000-0000-0000-0042-000000000017}; !- Material Name + {00000000-0000-0000-0082-000000000029}, !- Handle + {00000000-0000-0000-0046-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000030}, !- Handle - {00000000-0000-0000-0043-000000000011}; !- Material Name + {00000000-0000-0000-0082-000000000030}, !- Handle + {00000000-0000-0000-0047-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0078-000000000031}, !- Handle - {00000000-0000-0000-0043-000000000012}; !- Material Name + {00000000-0000-0000-0082-000000000031}, !- Handle + {00000000-0000-0000-0047-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000098}, !- Surface Name + {00000000-0000-0000-0084-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -9969,11 +13665,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000002}, !- Handle + {00000000-0000-0000-0083-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000103}, !- Surface Name + {00000000-0000-0000-0084-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -9985,11 +13681,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0083-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000110}, !- Surface Name + {00000000-0000-0000-0084-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10001,11 +13697,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000004}, !- Handle + {00000000-0000-0000-0083-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000119}, !- Surface Name + {00000000-0000-0000-0084-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10017,11 +13713,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000005}, !- Handle + {00000000-0000-0000-0083-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000125}, !- Surface Name + {00000000-0000-0000-0084-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10033,11 +13729,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000006}, !- Handle + {00000000-0000-0000-0083-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000129}, !- Surface Name + {00000000-0000-0000-0084-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10049,11 +13745,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000007}, !- Handle + {00000000-0000-0000-0083-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000135}, !- Surface Name + {00000000-0000-0000-0084-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10065,11 +13761,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000008}, !- Handle + {00000000-0000-0000-0083-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000143}, !- Surface Name + {00000000-0000-0000-0084-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10081,11 +13777,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000009}, !- Handle + {00000000-0000-0000-0083-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000147}, !- Surface Name + {00000000-0000-0000-0084-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10097,11 +13793,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000010}, !- Handle + {00000000-0000-0000-0083-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000151}, !- Surface Name + {00000000-0000-0000-0084-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10113,11 +13809,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000011}, !- Handle + {00000000-0000-0000-0083-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000157}, !- Surface Name + {00000000-0000-0000-0084-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10129,11 +13825,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0079-000000000012}, !- Handle + {00000000-0000-0000-0083-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0080-000000000165}, !- Surface Name + {00000000-0000-0000-0084-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10145,13 +13841,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0074-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10162,13 +13858,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0084-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0074-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10179,13 +13875,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0084-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0074-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10196,13 +13892,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000004}, !- Handle + {00000000-0000-0000-0084-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0074-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10213,13 +13909,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000005}, !- Handle + {00000000-0000-0000-0084-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10230,11 +13926,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000006}, !- Handle + {00000000-0000-0000-0084-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10247,13 +13943,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000007}, !- Handle + {00000000-0000-0000-0084-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10264,13 +13960,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000008}, !- Handle + {00000000-0000-0000-0084-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10281,13 +13977,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000009}, !- Handle + {00000000-0000-0000-0084-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10298,13 +13994,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000010}, !- Handle + {00000000-0000-0000-0084-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10315,13 +14011,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000011}, !- Handle + {00000000-0000-0000-0084-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10332,13 +14028,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000012}, !- Handle + {00000000-0000-0000-0084-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10349,13 +14045,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000013}, !- Handle + {00000000-0000-0000-0084-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10366,13 +14062,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000014}, !- Handle + {00000000-0000-0000-0084-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10383,13 +14079,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000015}, !- Handle + {00000000-0000-0000-0084-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10400,13 +14096,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000016}, !- Handle + {00000000-0000-0000-0084-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10417,13 +14113,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000017}, !- Handle + {00000000-0000-0000-0084-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10434,13 +14130,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000018}, !- Handle + {00000000-0000-0000-0084-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10451,13 +14147,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000019}, !- Handle + {00000000-0000-0000-0084-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10468,11 +14164,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000020}, !- Handle + {00000000-0000-0000-0084-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10485,13 +14181,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000021}, !- Handle + {00000000-0000-0000-0084-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10502,13 +14198,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000022}, !- Handle + {00000000-0000-0000-0084-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10519,13 +14215,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000023}, !- Handle + {00000000-0000-0000-0084-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10536,13 +14232,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000024}, !- Handle + {00000000-0000-0000-0084-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10553,13 +14249,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000025}, !- Handle + {00000000-0000-0000-0084-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10570,13 +14266,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000026}, !- Handle + {00000000-0000-0000-0084-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10587,13 +14283,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000027}, !- Handle + {00000000-0000-0000-0084-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000003}, !- Space Name + {00000000-0000-0000-0078-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10604,13 +14300,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000028}, !- Handle + {00000000-0000-0000-0084-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10621,13 +14317,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000029}, !- Handle + {00000000-0000-0000-0084-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10638,11 +14334,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000030}, !- Handle + {00000000-0000-0000-0084-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10655,13 +14351,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000031}, !- Handle + {00000000-0000-0000-0084-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10672,13 +14368,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000032}, !- Handle + {00000000-0000-0000-0084-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10689,13 +14385,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000033}, !- Handle + {00000000-0000-0000-0084-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10706,13 +14402,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000034}, !- Handle + {00000000-0000-0000-0084-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10723,13 +14419,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000035}, !- Handle + {00000000-0000-0000-0084-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10740,13 +14436,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000036}, !- Handle + {00000000-0000-0000-0084-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10757,13 +14453,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000037}, !- Handle + {00000000-0000-0000-0084-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000004}, !- Space Name + {00000000-0000-0000-0078-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10774,13 +14470,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000038}, !- Handle + {00000000-0000-0000-0084-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10791,13 +14487,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000039}, !- Handle + {00000000-0000-0000-0084-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10808,13 +14504,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000040}, !- Handle + {00000000-0000-0000-0084-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000002}, !- Space Name + {00000000-0000-0000-0078-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10825,13 +14521,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000041}, !- Handle + {00000000-0000-0000-0084-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10842,13 +14538,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000042}, !- Handle + {00000000-0000-0000-0084-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10859,13 +14555,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000043}, !- Handle + {00000000-0000-0000-0084-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10876,13 +14572,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000044}, !- Handle + {00000000-0000-0000-0084-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10893,13 +14589,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000045}, !- Handle + {00000000-0000-0000-0084-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10910,13 +14606,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000046}, !- Handle + {00000000-0000-0000-0084-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10927,13 +14623,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000047}, !- Handle + {00000000-0000-0000-0084-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10944,13 +14640,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000048}, !- Handle + {00000000-0000-0000-0084-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10961,13 +14657,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000049}, !- Handle + {00000000-0000-0000-0084-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10978,13 +14674,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000050}, !- Handle + {00000000-0000-0000-0084-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10995,13 +14691,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000051}, !- Handle + {00000000-0000-0000-0084-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11012,13 +14708,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000052}, !- Handle + {00000000-0000-0000-0084-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11029,13 +14725,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000053}, !- Handle + {00000000-0000-0000-0084-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11046,13 +14742,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000054}, !- Handle + {00000000-0000-0000-0084-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11063,13 +14759,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000055}, !- Handle + {00000000-0000-0000-0084-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11080,13 +14776,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000056}, !- Handle + {00000000-0000-0000-0084-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11097,13 +14793,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000057}, !- Handle + {00000000-0000-0000-0084-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11114,13 +14810,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000058}, !- Handle + {00000000-0000-0000-0084-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000006}, !- Space Name + {00000000-0000-0000-0078-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11131,13 +14827,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000059}, !- Handle + {00000000-0000-0000-0084-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11148,11 +14844,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000060}, !- Handle + {00000000-0000-0000-0084-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11165,13 +14861,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000061}, !- Handle + {00000000-0000-0000-0084-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11182,13 +14878,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000062}, !- Handle + {00000000-0000-0000-0084-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11199,13 +14895,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000063}, !- Handle + {00000000-0000-0000-0084-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11216,13 +14912,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000064}, !- Handle + {00000000-0000-0000-0084-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11233,13 +14929,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000065}, !- Handle + {00000000-0000-0000-0084-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11250,13 +14946,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000066}, !- Handle + {00000000-0000-0000-0084-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11267,13 +14963,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000067}, !- Handle + {00000000-0000-0000-0084-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11284,13 +14980,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000068}, !- Handle + {00000000-0000-0000-0084-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11301,13 +14997,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000069}, !- Handle + {00000000-0000-0000-0084-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000007}, !- Space Name + {00000000-0000-0000-0078-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11318,11 +15014,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000070}, !- Handle + {00000000-0000-0000-0084-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11335,13 +15031,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000071}, !- Handle + {00000000-0000-0000-0084-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11352,13 +15048,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000072}, !- Handle + {00000000-0000-0000-0084-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11369,13 +15065,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000073}, !- Handle + {00000000-0000-0000-0084-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11386,13 +15082,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000074}, !- Handle + {00000000-0000-0000-0084-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11403,13 +15099,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000075}, !- Handle + {00000000-0000-0000-0084-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11420,13 +15116,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000076}, !- Handle + {00000000-0000-0000-0084-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11437,13 +15133,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000077}, !- Handle + {00000000-0000-0000-0084-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11454,13 +15150,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000078}, !- Handle + {00000000-0000-0000-0084-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11471,13 +15167,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000079}, !- Handle + {00000000-0000-0000-0084-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000008}, !- Space Name + {00000000-0000-0000-0078-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11488,11 +15184,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000080}, !- Handle + {00000000-0000-0000-0084-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11505,11 +15201,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000081}, !- Handle + {00000000-0000-0000-0084-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11522,11 +15218,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000082}, !- Handle + {00000000-0000-0000-0084-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11539,11 +15235,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000083}, !- Handle + {00000000-0000-0000-0084-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11556,11 +15252,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000084}, !- Handle + {00000000-0000-0000-0084-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11573,13 +15269,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000085}, !- Handle + {00000000-0000-0000-0084-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11590,13 +15286,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000086}, !- Handle + {00000000-0000-0000-0084-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11607,11 +15303,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000087}, !- Handle + {00000000-0000-0000-0084-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11624,11 +15320,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000088}, !- Handle + {00000000-0000-0000-0084-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11641,11 +15337,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000089}, !- Handle + {00000000-0000-0000-0084-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11658,11 +15354,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000090}, !- Handle + {00000000-0000-0000-0084-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11675,11 +15371,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000091}, !- Handle + {00000000-0000-0000-0084-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11692,13 +15388,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000092}, !- Handle + {00000000-0000-0000-0084-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11709,13 +15405,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000093}, !- Handle + {00000000-0000-0000-0084-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11726,13 +15422,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000094}, !- Handle + {00000000-0000-0000-0084-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11743,13 +15439,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000095}, !- Handle + {00000000-0000-0000-0084-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11760,13 +15456,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000096}, !- Handle + {00000000-0000-0000-0084-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11777,13 +15473,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000097}, !- Handle + {00000000-0000-0000-0084-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11794,11 +15490,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000098}, !- Handle + {00000000-0000-0000-0084-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11811,13 +15507,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000099}, !- Handle + {00000000-0000-0000-0084-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11828,13 +15524,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000100}, !- Handle + {00000000-0000-0000-0084-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11845,13 +15541,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000101}, !- Handle + {00000000-0000-0000-0084-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11862,13 +15558,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000102}, !- Handle + {00000000-0000-0000-0084-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11879,11 +15575,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000103}, !- Handle + {00000000-0000-0000-0084-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11896,13 +15592,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000104}, !- Handle + {00000000-0000-0000-0084-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000012}, !- Space Name + {00000000-0000-0000-0078-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11913,13 +15609,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000105}, !- Handle + {00000000-0000-0000-0084-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11930,13 +15626,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000106}, !- Handle + {00000000-0000-0000-0084-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11947,13 +15643,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000107}, !- Handle + {00000000-0000-0000-0084-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11964,13 +15660,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000108}, !- Handle + {00000000-0000-0000-0084-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11981,13 +15677,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000109}, !- Handle + {00000000-0000-0000-0084-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000001}, !- Space Name + {00000000-0000-0000-0078-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11998,11 +15694,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000110}, !- Handle + {00000000-0000-0000-0084-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12015,13 +15711,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000111}, !- Handle + {00000000-0000-0000-0084-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000013}, !- Space Name + {00000000-0000-0000-0078-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12032,13 +15728,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000112}, !- Handle + {00000000-0000-0000-0084-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12049,13 +15745,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000113}, !- Handle + {00000000-0000-0000-0084-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000009}, !- Space Name + {00000000-0000-0000-0078-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12066,13 +15762,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000114}, !- Handle + {00000000-0000-0000-0084-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12083,13 +15779,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000115}, !- Handle + {00000000-0000-0000-0084-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12100,13 +15796,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000116}, !- Handle + {00000000-0000-0000-0084-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000005}, !- Space Name + {00000000-0000-0000-0078-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12117,13 +15813,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000117}, !- Handle + {00000000-0000-0000-0084-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12134,13 +15830,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000118}, !- Handle + {00000000-0000-0000-0084-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000011}, !- Space Name + {00000000-0000-0000-0078-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12151,11 +15847,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000119}, !- Handle + {00000000-0000-0000-0084-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000014}, !- Space Name + {00000000-0000-0000-0078-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12168,13 +15864,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000120}, !- Handle + {00000000-0000-0000-0084-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12185,13 +15881,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000121}, !- Handle + {00000000-0000-0000-0084-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12202,11 +15898,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000122}, !- Handle + {00000000-0000-0000-0084-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12219,13 +15915,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000123}, !- Handle + {00000000-0000-0000-0084-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12236,13 +15932,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000124}, !- Handle + {00000000-0000-0000-0084-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12253,11 +15949,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000125}, !- Handle + {00000000-0000-0000-0084-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12270,13 +15966,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000126}, !- Handle + {00000000-0000-0000-0084-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12287,13 +15983,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000127}, !- Handle + {00000000-0000-0000-0084-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12304,11 +16000,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000128}, !- Handle + {00000000-0000-0000-0084-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12321,11 +16017,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000129}, !- Handle + {00000000-0000-0000-0084-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12338,13 +16034,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000130}, !- Handle + {00000000-0000-0000-0084-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000016}, !- Space Name + {00000000-0000-0000-0078-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12355,13 +16051,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000131}, !- Handle + {00000000-0000-0000-0084-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12372,13 +16068,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000132}, !- Handle + {00000000-0000-0000-0084-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12389,13 +16085,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000133}, !- Handle + {00000000-0000-0000-0084-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12406,11 +16102,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000134}, !- Handle + {00000000-0000-0000-0084-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12423,11 +16119,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000135}, !- Handle + {00000000-0000-0000-0084-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12440,13 +16136,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000136}, !- Handle + {00000000-0000-0000-0084-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000017}, !- Space Name + {00000000-0000-0000-0078-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12457,13 +16153,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000137}, !- Handle + {00000000-0000-0000-0084-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12474,13 +16170,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000138}, !- Handle + {00000000-0000-0000-0084-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000010}, !- Space Name + {00000000-0000-0000-0078-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12491,13 +16187,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000139}, !- Handle + {00000000-0000-0000-0084-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12508,11 +16204,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000140}, !- Handle + {00000000-0000-0000-0084-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12525,13 +16221,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000141}, !- Handle + {00000000-0000-0000-0084-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12542,13 +16238,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000142}, !- Handle + {00000000-0000-0000-0084-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000015}, !- Space Name + {00000000-0000-0000-0078-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12559,11 +16255,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000143}, !- Handle + {00000000-0000-0000-0084-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000018}, !- Space Name + {00000000-0000-0000-0078-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12576,13 +16272,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000144}, !- Handle + {00000000-0000-0000-0084-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12593,13 +16289,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000145}, !- Handle + {00000000-0000-0000-0084-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12610,11 +16306,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000146}, !- Handle + {00000000-0000-0000-0084-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12627,11 +16323,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000147}, !- Handle + {00000000-0000-0000-0084-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12644,13 +16340,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000148}, !- Handle + {00000000-0000-0000-0084-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12661,13 +16357,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000149}, !- Handle + {00000000-0000-0000-0084-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12678,11 +16374,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000150}, !- Handle + {00000000-0000-0000-0084-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12695,11 +16391,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000151}, !- Handle + {00000000-0000-0000-0084-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12712,13 +16408,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000152}, !- Handle + {00000000-0000-0000-0084-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000020}, !- Space Name + {00000000-0000-0000-0078-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12729,13 +16425,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000153}, !- Handle + {00000000-0000-0000-0084-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12746,13 +16442,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000154}, !- Handle + {00000000-0000-0000-0084-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12763,13 +16459,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000155}, !- Handle + {00000000-0000-0000-0084-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12780,11 +16476,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000156}, !- Handle + {00000000-0000-0000-0084-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12797,11 +16493,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000157}, !- Handle + {00000000-0000-0000-0084-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12814,13 +16510,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000158}, !- Handle + {00000000-0000-0000-0084-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000021}, !- Space Name + {00000000-0000-0000-0078-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12831,13 +16527,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000159}, !- Handle + {00000000-0000-0000-0084-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12848,13 +16544,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000160}, !- Handle + {00000000-0000-0000-0084-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12865,13 +16561,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000161}, !- Handle + {00000000-0000-0000-0084-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12882,11 +16578,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000162}, !- Handle + {00000000-0000-0000-0084-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0074-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12899,13 +16595,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000163}, !- Handle + {00000000-0000-0000-0084-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12916,13 +16612,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000164}, !- Handle + {00000000-0000-0000-0084-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000019}, !- Space Name + {00000000-0000-0000-0078-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0080-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0084-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12933,11 +16629,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000165}, !- Handle + {00000000-0000-0000-0084-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000022}, !- Space Name + {00000000-0000-0000-0078-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12950,11 +16646,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000166}, !- Handle + {00000000-0000-0000-0084-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12967,11 +16663,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000167}, !- Handle + {00000000-0000-0000-0084-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12984,11 +16680,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000168}, !- Handle + {00000000-0000-0000-0084-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13001,11 +16697,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0080-000000000169}, !- Handle + {00000000-0000-0000-0084-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0074-000000000023}, !- Space Name + {00000000-0000-0000-0078-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13018,27 +16714,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0085-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0083-000000000001}, !- Handle - {00000000-0000-0000-0080-000000000044}, !- Surface Name + {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0083-000000000002}, !- Handle - {00000000-0000-0000-0080-000000000001}, !- Surface Name + {00000000-0000-0000-0087-000000000002}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13047,21 +16743,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000007}, !- Thermostat Name + {00000000-0000-0000-0058-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000002}, !- Handle + {00000000-0000-0000-0088-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13070,21 +16766,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000009}, !- Thermostat Name + {00000000-0000-0000-0058-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000003}, !- Handle + {00000000-0000-0000-0088-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13093,21 +16789,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000008}, !- Thermostat Name + {00000000-0000-0000-0058-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000004}, !- Handle + {00000000-0000-0000-0088-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13116,21 +16812,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000058}, !- Thermostat Name + {00000000-0000-0000-0058-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000005}, !- Handle + {00000000-0000-0000-0088-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13139,21 +16835,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000052}, !- Thermostat Name + {00000000-0000-0000-0058-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000006}, !- Handle + {00000000-0000-0000-0088-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13162,21 +16858,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000053}, !- Thermostat Name + {00000000-0000-0000-0058-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000007}, !- Handle + {00000000-0000-0000-0088-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13185,21 +16881,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000060}, !- Thermostat Name + {00000000-0000-0000-0058-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000008}, !- Handle + {00000000-0000-0000-0088-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13208,21 +16904,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000065}, !- Thermostat Name + {00000000-0000-0000-0058-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000009}, !- Handle + {00000000-0000-0000-0088-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13231,21 +16927,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000067}, !- Thermostat Name + {00000000-0000-0000-0058-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000010}, !- Handle + {00000000-0000-0000-0088-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13254,21 +16950,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000047}, !- Thermostat Name + {00000000-0000-0000-0058-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000011}, !- Handle + {00000000-0000-0000-0088-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13277,21 +16973,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000055}, !- Thermostat Name + {00000000-0000-0000-0058-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000012}, !- Handle + {00000000-0000-0000-0088-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13300,21 +16996,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000057}, !- Thermostat Name + {00000000-0000-0000-0058-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000013}, !- Handle + {00000000-0000-0000-0088-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13323,21 +17019,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000062}, !- Thermostat Name + {00000000-0000-0000-0058-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000014}, !- Handle + {00000000-0000-0000-0088-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13346,21 +17042,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000064}, !- Thermostat Name + {00000000-0000-0000-0058-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000015}, !- Handle + {00000000-0000-0000-0088-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13369,21 +17065,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000066}, !- Thermostat Name + {00000000-0000-0000-0058-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000016}, !- Handle + {00000000-0000-0000-0088-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13392,21 +17088,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000050}, !- Thermostat Name + {00000000-0000-0000-0058-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000017}, !- Handle + {00000000-0000-0000-0088-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13415,21 +17111,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000051}, !- Thermostat Name + {00000000-0000-0000-0058-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000018}, !- Handle + {00000000-0000-0000-0088-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13438,21 +17134,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000054}, !- Thermostat Name + {00000000-0000-0000-0058-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000019}, !- Handle + {00000000-0000-0000-0088-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13461,21 +17157,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000056}, !- Thermostat Name + {00000000-0000-0000-0058-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000020}, !- Handle + {00000000-0000-0000-0088-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13484,21 +17180,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000061}, !- Thermostat Name + {00000000-0000-0000-0058-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000021}, !- Handle + {00000000-0000-0000-0088-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13507,21 +17203,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000063}, !- Thermostat Name + {00000000-0000-0000-0058-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000022}, !- Handle + {00000000-0000-0000-0088-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13530,21 +17226,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000049}, !- Thermostat Name + {00000000-0000-0000-0058-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0084-000000000023}, !- Handle + {00000000-0000-0000-0088-000000000023}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13553,444 +17249,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0051-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0051-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0055-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0055-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0051-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0055-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0054-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0085-000000000013}, !- Thermostat Name + {00000000-0000-0000-0058-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0089-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0089-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000002}, !- Handle + {00000000-0000-0000-0089-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000003}, !- Handle + {00000000-0000-0000-0089-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000004}, !- Handle + {00000000-0000-0000-0089-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000005}, !- Handle + {00000000-0000-0000-0089-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000006}, !- Handle + {00000000-0000-0000-0089-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000007}, !- Handle + {00000000-0000-0000-0089-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000008}, !- Handle + {00000000-0000-0000-0089-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000009}, !- Handle + {00000000-0000-0000-0089-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000010}, !- Handle + {00000000-0000-0000-0089-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000011}, !- Handle + {00000000-0000-0000-0089-000000000011}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000012}, !- Handle + {00000000-0000-0000-0089-000000000012}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000013}, !- Handle + {00000000-0000-0000-0089-000000000013}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000014}, !- Handle + {00000000-0000-0000-0089-000000000014}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000015}, !- Handle + {00000000-0000-0000-0089-000000000015}, !- Handle Space Function Office - open plan Thermostat 1, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000016}, !- Handle + {00000000-0000-0000-0089-000000000016}, !- Handle Space Function Office - open plan Thermostat 10, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000017}, !- Handle + {00000000-0000-0000-0089-000000000017}, !- Handle Space Function Office - open plan Thermostat 11, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000018}, !- Handle + {00000000-0000-0000-0089-000000000018}, !- Handle Space Function Office - open plan Thermostat 12, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000019}, !- Handle + {00000000-0000-0000-0089-000000000019}, !- Handle Space Function Office - open plan Thermostat 13, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000020}, !- Handle + {00000000-0000-0000-0089-000000000020}, !- Handle Space Function Office - open plan Thermostat 14, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000021}, !- Handle + {00000000-0000-0000-0089-000000000021}, !- Handle Space Function Office - open plan Thermostat 15, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000022}, !- Handle + {00000000-0000-0000-0089-000000000022}, !- Handle Space Function Office - open plan Thermostat 16, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000023}, !- Handle + {00000000-0000-0000-0089-000000000023}, !- Handle Space Function Office - open plan Thermostat 17, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000024}, !- Handle + {00000000-0000-0000-0089-000000000024}, !- Handle Space Function Office - open plan Thermostat 18, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000025}, !- Handle + {00000000-0000-0000-0089-000000000025}, !- Handle Space Function Office - open plan Thermostat 19, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000026}, !- Handle + {00000000-0000-0000-0089-000000000026}, !- Handle Space Function Office - open plan Thermostat 2, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000027}, !- Handle + {00000000-0000-0000-0089-000000000027}, !- Handle Space Function Office - open plan Thermostat 20, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000028}, !- Handle + {00000000-0000-0000-0089-000000000028}, !- Handle Space Function Office - open plan Thermostat 21, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000029}, !- Handle + {00000000-0000-0000-0089-000000000029}, !- Handle Space Function Office - open plan Thermostat 22, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000030}, !- Handle + {00000000-0000-0000-0089-000000000030}, !- Handle Space Function Office - open plan Thermostat 23, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000031}, !- Handle + {00000000-0000-0000-0089-000000000031}, !- Handle Space Function Office - open plan Thermostat 24, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000032}, !- Handle + {00000000-0000-0000-0089-000000000032}, !- Handle Space Function Office - open plan Thermostat 25, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000033}, !- Handle + {00000000-0000-0000-0089-000000000033}, !- Handle Space Function Office - open plan Thermostat 26, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000034}, !- Handle + {00000000-0000-0000-0089-000000000034}, !- Handle Space Function Office - open plan Thermostat 27, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000035}, !- Handle + {00000000-0000-0000-0089-000000000035}, !- Handle Space Function Office - open plan Thermostat 28, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000036}, !- Handle + {00000000-0000-0000-0089-000000000036}, !- Handle Space Function Office - open plan Thermostat 29, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000037}, !- Handle + {00000000-0000-0000-0089-000000000037}, !- Handle Space Function Office - open plan Thermostat 3, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000038}, !- Handle + {00000000-0000-0000-0089-000000000038}, !- Handle Space Function Office - open plan Thermostat 30, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000039}, !- Handle + {00000000-0000-0000-0089-000000000039}, !- Handle Space Function Office - open plan Thermostat 31, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000040}, !- Handle + {00000000-0000-0000-0089-000000000040}, !- Handle Space Function Office - open plan Thermostat 32, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000041}, !- Handle + {00000000-0000-0000-0089-000000000041}, !- Handle Space Function Office - open plan Thermostat 33, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000042}, !- Handle + {00000000-0000-0000-0089-000000000042}, !- Handle Space Function Office - open plan Thermostat 34, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000043}, !- Handle + {00000000-0000-0000-0089-000000000043}, !- Handle Space Function Office - open plan Thermostat 35, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000044}, !- Handle + {00000000-0000-0000-0089-000000000044}, !- Handle Space Function Office - open plan Thermostat 36, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000045}, !- Handle + {00000000-0000-0000-0089-000000000045}, !- Handle Space Function Office - open plan Thermostat 37, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000046}, !- Handle + {00000000-0000-0000-0089-000000000046}, !- Handle Space Function Office - open plan Thermostat 38, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000047}, !- Handle + {00000000-0000-0000-0089-000000000047}, !- Handle Space Function Office - open plan Thermostat 39, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000048}, !- Handle + {00000000-0000-0000-0089-000000000048}, !- Handle Space Function Office - open plan Thermostat 4, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000049}, !- Handle + {00000000-0000-0000-0089-000000000049}, !- Handle Space Function Office - open plan Thermostat 40, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000050}, !- Handle + {00000000-0000-0000-0089-000000000050}, !- Handle Space Function Office - open plan Thermostat 41, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000051}, !- Handle + {00000000-0000-0000-0089-000000000051}, !- Handle Space Function Office - open plan Thermostat 42, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000052}, !- Handle + {00000000-0000-0000-0089-000000000052}, !- Handle Space Function Office - open plan Thermostat 43, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000053}, !- Handle + {00000000-0000-0000-0089-000000000053}, !- Handle Space Function Office - open plan Thermostat 44, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000054}, !- Handle + {00000000-0000-0000-0089-000000000054}, !- Handle Space Function Office - open plan Thermostat 45, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000055}, !- Handle + {00000000-0000-0000-0089-000000000055}, !- Handle Space Function Office - open plan Thermostat 46, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000056}, !- Handle + {00000000-0000-0000-0089-000000000056}, !- Handle Space Function Office - open plan Thermostat 47, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000057}, !- Handle + {00000000-0000-0000-0089-000000000057}, !- Handle Space Function Office - open plan Thermostat 48, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000058}, !- Handle + {00000000-0000-0000-0089-000000000058}, !- Handle Space Function Office - open plan Thermostat 49, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000059}, !- Handle + {00000000-0000-0000-0089-000000000059}, !- Handle Space Function Office - open plan Thermostat 5, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000060}, !- Handle + {00000000-0000-0000-0089-000000000060}, !- Handle Space Function Office - open plan Thermostat 50, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000061}, !- Handle + {00000000-0000-0000-0089-000000000061}, !- Handle Space Function Office - open plan Thermostat 51, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000062}, !- Handle + {00000000-0000-0000-0089-000000000062}, !- Handle Space Function Office - open plan Thermostat 52, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000063}, !- Handle + {00000000-0000-0000-0089-000000000063}, !- Handle Space Function Office - open plan Thermostat 53, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000064}, !- Handle + {00000000-0000-0000-0089-000000000064}, !- Handle Space Function Office - open plan Thermostat 54, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000065}, !- Handle + {00000000-0000-0000-0089-000000000065}, !- Handle Space Function Office - open plan Thermostat 55, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000066}, !- Handle + {00000000-0000-0000-0089-000000000066}, !- Handle Space Function Office - open plan Thermostat 56, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000067}, !- Handle + {00000000-0000-0000-0089-000000000067}, !- Handle Space Function Office - open plan Thermostat 57, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000068}, !- Handle + {00000000-0000-0000-0089-000000000068}, !- Handle Space Function Office - open plan Thermostat 6, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000069}, !- Handle + {00000000-0000-0000-0089-000000000069}, !- Handle Space Function Office - open plan Thermostat 7, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000070}, !- Handle + {00000000-0000-0000-0089-000000000070}, !- Handle Space Function Office - open plan Thermostat 8, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000071}, !- Handle + {00000000-0000-0000-0089-000000000071}, !- Handle Space Function Office - open plan Thermostat 9, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0085-000000000072}, !- Handle + {00000000-0000-0000-0089-000000000072}, !- Handle Space Function Office - open plan Thermostat, !- Name - {00000000-0000-0000-0058-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0058-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0091-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle 1103gal Electricity Water Heater - 744kBtu/hr 1 Therm Eff, !- Name 4.17378596588637, !- Tank Volume {m3} - {00000000-0000-0000-0058-000000000019}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0062-000000000019}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -14008,7 +17704,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0058-000000000021}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0062-000000000024}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 8.90910625690548, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -14018,8 +17714,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000159}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000160}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000333}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000334}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -14032,18 +17728,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0089-000000000001}, !- Handle - {00000000-0000-0000-0088-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle Core_bottom WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0017-000000000176}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000177}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000350}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000351}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14051,13 +17747,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Handle Core_mid WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0017-000000000180}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000181}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000354}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000355}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14065,13 +17761,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000003}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Handle Core_top WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0017-000000000184}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000185}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000358}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000359}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14079,13 +17775,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000004}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0017-000000000188}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000189}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000362}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000363}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14093,13 +17789,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000005}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000192}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000193}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000366}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000367}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14107,13 +17803,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000006}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000196}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000197}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000370}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000371}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14121,13 +17817,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000007}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000200}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000201}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000374}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000375}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14135,13 +17831,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000008}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000204}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000205}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000378}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000379}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14149,13 +17845,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000009}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000208}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000209}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000382}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000383}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14163,13 +17859,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000010}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000213}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000386}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000387}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14177,13 +17873,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000011}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000216}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000217}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000390}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000391}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14191,13 +17887,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000220}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000221}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000394}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000395}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14205,13 +17901,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000013}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000225}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000398}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000399}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14219,13 +17915,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000014}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000228}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000229}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000402}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000403}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14233,13 +17929,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000015}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000232}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000233}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000406}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000407}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14247,13 +17943,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000016}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000236}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000237}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000410}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000411}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14261,13 +17957,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000017}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000240}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000241}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000414}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000415}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14275,13 +17971,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000018}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000244}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000245}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000418}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000419}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14289,13 +17985,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0090-000000000019}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000248}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000249}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000422}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000423}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14303,314 +17999,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0091-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0095-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0095-000000000001}, !- Handle Core_bottom Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0092-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000002}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000002}, !- Handle + {00000000-0000-0000-0095-000000000002}, !- Handle Core_mid Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0092-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000003}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000003}, !- Handle + {00000000-0000-0000-0095-000000000003}, !- Handle Core_top Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0092-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000004}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000004}, !- Handle + {00000000-0000-0000-0095-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0092-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000005}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000005}, !- Handle + {00000000-0000-0000-0095-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0092-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000006}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000006}, !- Handle + {00000000-0000-0000-0095-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0092-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000007}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000007}, !- Handle + {00000000-0000-0000-0095-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0092-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000008}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000008}, !- Handle + {00000000-0000-0000-0095-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0092-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000011}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000009}, !- Handle + {00000000-0000-0000-0095-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0092-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000012}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000010}, !- Handle + {00000000-0000-0000-0095-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0092-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000013}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000011}, !- Handle + {00000000-0000-0000-0095-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0092-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000014}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000012}, !- Handle + {00000000-0000-0000-0095-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0092-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000015}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000013}, !- Handle + {00000000-0000-0000-0095-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0092-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000016}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000014}, !- Handle + {00000000-0000-0000-0095-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0092-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000017}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000015}, !- Handle + {00000000-0000-0000-0095-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0092-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000018}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000016}, !- Handle + {00000000-0000-0000-0095-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0092-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000019}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000017}, !- Handle + {00000000-0000-0000-0095-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0092-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000020}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000018}, !- Handle + {00000000-0000-0000-0095-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0092-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000021}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0091-000000000019}, !- Handle + {00000000-0000-0000-0095-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0092-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0074-000000000022}, !- Space Name - {00000000-0000-0000-0058-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0096-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle Core_bottom 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000002}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Handle Core_mid 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000003}, !- Handle + {00000000-0000-0000-0096-000000000003}, !- Handle Core_top 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000004}, !- Handle + {00000000-0000-0000-0096-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.89703570440437e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000005}, !- Handle + {00000000-0000-0000-0096-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755489e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000006}, !- Handle + {00000000-0000-0000-0096-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755488e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000007}, !- Handle + {00000000-0000-0000-0096-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755488e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000008}, !- Handle + {00000000-0000-0000-0096-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000009}, !- Handle + {00000000-0000-0000-0096-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000010}, !- Handle + {00000000-0000-0000-0096-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000011}, !- Handle + {00000000-0000-0000-0096-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000012}, !- Handle + {00000000-0000-0000-0096-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000013}, !- Handle + {00000000-0000-0000-0096-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000014}, !- Handle + {00000000-0000-0000-0096-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000015}, !- Handle + {00000000-0000-0000-0096-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000016}, !- Handle + {00000000-0000-0000-0096-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000017}, !- Handle + {00000000-0000-0000-0096-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000018}, !- Handle + {00000000-0000-0000-0096-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0092-000000000019}, !- Handle + {00000000-0000-0000-0096-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0058-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0058-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0058-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -14626,62 +18322,188 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0094-000000000002}, !- Handle + {00000000-0000-0000-0098-000000000002}, !- Handle SimpleGlazing:U=0.220 SHGC=0.600, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0099-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Handle Zone HVAC Baseboard Convective Electric 1, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0096-000000000002}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Handle + Zone HVAC Baseboard Convective Electric 10, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000003}, !- Handle + Zone HVAC Baseboard Convective Electric 11, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000004}, !- Handle + Zone HVAC Baseboard Convective Electric 12, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000005}, !- Handle + Zone HVAC Baseboard Convective Electric 13, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000006}, !- Handle + Zone HVAC Baseboard Convective Electric 14, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000007}, !- Handle + Zone HVAC Baseboard Convective Electric 15, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000008}, !- Handle + Zone HVAC Baseboard Convective Electric 16, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000009}, !- Handle + Zone HVAC Baseboard Convective Electric 17, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000010}, !- Handle + Zone HVAC Baseboard Convective Electric 18, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000011}, !- Handle + Zone HVAC Baseboard Convective Electric 19, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000012}, !- Handle Zone HVAC Baseboard Convective Electric 2, !- Name - {00000000-0000-0000-0055-000000000001}, !- Availability Schedule + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000013}, !- Handle + Zone HVAC Baseboard Convective Electric 20, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000014}, !- Handle + Zone HVAC Baseboard Convective Electric 3, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000015}, !- Handle + Zone HVAC Baseboard Convective Electric 4, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000016}, !- Handle + Zone HVAC Baseboard Convective Electric 5, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000017}, !- Handle + Zone HVAC Baseboard Convective Electric 6, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000018}, !- Handle + Zone HVAC Baseboard Convective Electric 7, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000019}, !- Handle + Zone HVAC Baseboard Convective Electric 8, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0100-000000000020}, !- Handle + Zone HVAC Baseboard Convective Electric 9, !- Name + {00000000-0000-0000-0059-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0101-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000001}, !- Thermal Zone + {00000000-0000-0000-0088-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000002}, !- Handle + {00000000-0000-0000-0101-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000002}, !- Thermal Zone + {00000000-0000-0000-0088-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000003}, !- Handle + {00000000-0000-0000-0101-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000003}, !- Thermal Zone + {00000000-0000-0000-0088-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000004}, !- Handle + {00000000-0000-0000-0101-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000004}, !- Thermal Zone + {00000000-0000-0000-0088-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0096-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0100-000000000012}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -14693,119 +18515,299 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000005}, !- Handle + {00000000-0000-0000-0101-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000005}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000005}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000006}, !- Handle + {00000000-0000-0000-0101-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000006}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000006}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000017}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000007}, !- Handle + {00000000-0000-0000-0101-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000007}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000007}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000008}, !- Handle + {00000000-0000-0000-0101-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000008}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000008}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000018}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000009}, !- Handle + {00000000-0000-0000-0101-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000009}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000016}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000010}, !- Handle + {00000000-0000-0000-0101-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000010}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000019}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000011}, !- Handle + {00000000-0000-0000-0101-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000011}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000012}, !- Handle + {00000000-0000-0000-0101-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000012}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000013}, !- Handle + {00000000-0000-0000-0101-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000013}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000014}, !- Handle + {00000000-0000-0000-0101-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000014}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000020}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000015}, !- Handle + {00000000-0000-0000-0101-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000015}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000016}, !- Handle + {00000000-0000-0000-0101-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000016}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000017}, !- Handle + {00000000-0000-0000-0101-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000017}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000009}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000018}, !- Handle + {00000000-0000-0000-0101-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000018}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000010}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000019}, !- Handle + {00000000-0000-0000-0101-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000019}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000019}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000008}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000020}, !- Handle + {00000000-0000-0000-0101-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000020}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000020}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000011}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000021}, !- Handle + {00000000-0000-0000-0101-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000021}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000021}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000022}, !- Handle + {00000000-0000-0000-0101-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000022}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0088-000000000022}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0100-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0097-000000000023}, !- Handle + {00000000-0000-0000-0101-000000000023}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0084-000000000023}, !- Thermal Zone + {00000000-0000-0000-0088-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0096-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0100-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm index 97bdd03e28..f13c54dfe2 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0061-000000000023}, !- Object Name + {00000000-0000-0000-0065-000000000026}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.762049603789063, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0061-000000000024}, !- Object Name + {00000000-0000-0000-0065-000000000030}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.224865342415058, !- Feature Value 1 @@ -32,18 +32,66 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0013-000000000001}; !- Object Name + {00000000-0000-0000-0065-000000000027}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.34123633723931, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0065-000000000028}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.34123633723931, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0065-000000000029}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.34123633723931, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000006}, !- Handle + {00000000-0000-0000-0013-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000007}, !- Handle {00000000-0000-0000-0013-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0061-000000000023}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0065-000000000026}, !- Availability Schedule + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -62,9 +110,75 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name + , !- Controller List Name + {00000000-0000-0000-0065-000000000027}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0020-000000000189}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0020-000000000192}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000191}, !- Demand Side Inlet Node A + {00000000-0000-0000-0020-000000000190}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0065-000000000028}, !- Availability Schedule + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0020-000000000299}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0020-000000000302}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000301}, !- Demand Side Inlet Node A + {00000000-0000-0000-0020-000000000300}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000004}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3, !- Name + , !- Controller List Name + {00000000-0000-0000-0065-000000000029}, !- Availability Schedule + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0020-000000000409}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0020-000000000412}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000411}, !- Demand Side Inlet Node A + {00000000-0000-0000-0020-000000000410}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0061-000000000024}, !- Availability Schedule + {00000000-0000-0000-0065-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -104,6 +218,39 @@ OS:AirLoopHVAC:OutdoorAirSystem, {00000000-0000-0000-0020-000000000164}, !- Relief Air Stream Node Name {00000000-0000-0000-0020-000000000174}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0025-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0020-000000000210}, !- Mixed Air Node Name + {00000000-0000-0000-0020-000000000203}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000204}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000214}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000004}, !- Handle + Air Loop HVAC Outdoor Air System 4, !- Name + {00000000-0000-0000-0025-000000000004}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0020-000000000320}, !- Mixed Air Node Name + {00000000-0000-0000-0020-000000000313}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000314}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000324}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000005}, !- Handle + Air Loop HVAC Outdoor Air System 5, !- Name + {00000000-0000-0000-0025-000000000005}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0020-000000000430}, !- Mixed Air Node Name + {00000000-0000-0000-0020-000000000423}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000424}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000434}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -116,6 +263,39 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0020-000000000155}, !- Outlet Node Name {00000000-0000-0000-0020-000000000185}; !- Inlet Node Name 1 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0020-000000000194}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000225}, !- Inlet Node Name 1 + {00000000-0000-0000-0020-000000000239}, !- Inlet Node Name 2 + {00000000-0000-0000-0020-000000000253}, !- Inlet Node Name 3 + {00000000-0000-0000-0020-000000000267}, !- Inlet Node Name 4 + {00000000-0000-0000-0020-000000000281}, !- Inlet Node Name 5 + {00000000-0000-0000-0020-000000000295}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000004}, !- Handle + Air Loop HVAC Zone Mixer 4, !- Name + {00000000-0000-0000-0020-000000000304}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000335}, !- Inlet Node Name 1 + {00000000-0000-0000-0020-000000000349}, !- Inlet Node Name 2 + {00000000-0000-0000-0020-000000000363}, !- Inlet Node Name 3 + {00000000-0000-0000-0020-000000000377}, !- Inlet Node Name 4 + {00000000-0000-0000-0020-000000000391}, !- Inlet Node Name 5 + {00000000-0000-0000-0020-000000000405}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000005}, !- Handle + Air Loop HVAC Zone Mixer 5, !- Name + {00000000-0000-0000-0020-000000000414}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000445}, !- Inlet Node Name 1 + {00000000-0000-0000-0020-000000000459}, !- Inlet Node Name 2 + {00000000-0000-0000-0020-000000000473}, !- Inlet Node Name 3 + {00000000-0000-0000-0020-000000000487}, !- Inlet Node Name 4 + {00000000-0000-0000-0020-000000000501}, !- Inlet Node Name 5 + {00000000-0000-0000-0020-000000000515}; !- Inlet Node Name 6 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -128,10 +308,43 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0020-000000000154}, !- Inlet Node Name {00000000-0000-0000-0020-000000000186}; !- Outlet Node Name 1 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0020-000000000193}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000226}, !- Outlet Node Name 1 + {00000000-0000-0000-0020-000000000240}, !- Outlet Node Name 2 + {00000000-0000-0000-0020-000000000254}, !- Outlet Node Name 3 + {00000000-0000-0000-0020-000000000268}, !- Outlet Node Name 4 + {00000000-0000-0000-0020-000000000282}, !- Outlet Node Name 5 + {00000000-0000-0000-0020-000000000296}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000004}, !- Handle + Air Loop HVAC Zone Splitter 4, !- Name + {00000000-0000-0000-0020-000000000303}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000336}, !- Outlet Node Name 1 + {00000000-0000-0000-0020-000000000350}, !- Outlet Node Name 2 + {00000000-0000-0000-0020-000000000364}, !- Outlet Node Name 3 + {00000000-0000-0000-0020-000000000378}, !- Outlet Node Name 4 + {00000000-0000-0000-0020-000000000392}, !- Outlet Node Name 5 + {00000000-0000-0000-0020-000000000406}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000005}, !- Handle + Air Loop HVAC Zone Splitter 5, !- Name + {00000000-0000-0000-0020-000000000413}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000446}, !- Outlet Node Name 1 + {00000000-0000-0000-0020-000000000460}, !- Outlet Node Name 2 + {00000000-0000-0000-0020-000000000474}, !- Outlet Node Name 3 + {00000000-0000-0000-0020-000000000488}, !- Outlet Node Name 4 + {00000000-0000-0000-0020-000000000502}, !- Outlet Node Name 5 + {00000000-0000-0000-0020-000000000516}; !- Outlet Node Name 6 + OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000095}, !- Air Inlet Node Name {00000000-0000-0000-0020-000000000096}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -139,14 +352,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000187}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000002}, !- Reheat Coil Name + {00000000-0000-0000-0018-000000000012}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0020-000000000188}, !- Air Outlet Node Name @@ -157,83 +370,518 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0058-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0047-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0047-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0047-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0047-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0058-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0047-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0047-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0047-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0047-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000365}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000005}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000366}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000379}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000380}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000393}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000394}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000407}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000408}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000447}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000010}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000448}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000461}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000011}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000462}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000006}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000008}, !- Handle + Air Terminal Single Duct VAV Reheat 16, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000475}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000013}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000476}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:Boiler:HotWater, - {00000000-0000-0000-0010-000000000001}, !- Handle - Primary Boiler 287kBtu/hr 0.85 AFUE, !- Name - NaturalGas, !- Fuel Type - 84089.2379605649, !- Nominal Capacity {W} - 0.85, !- Nominal Thermal Efficiency - , !- Efficiency Curve Temperature Evaluation Variable - {00000000-0000-0000-0029-000000000001}, !- Normalized Boiler Efficiency Curve Name - , !- Design Water Flow Rate {m3/s} - , !- Minimum Part Load Ratio - , !- Maximum Part Load Ratio - , !- Optimum Part Load Ratio - {00000000-0000-0000-0020-000000000058}, !- Boiler Water Inlet Node Name - {00000000-0000-0000-0020-000000000059}, !- Boiler Water Outlet Node Name - 99, !- Water Outlet Upper Temperature Limit {C} - ConstantFlow, !- Boiler Flow Mode - 0, !- On Cycle Parasitic Electric Load {W} - 0, !- Off Cycle Parasitic Fuel Load {W} - 1, !- Sizing Factor - General; !- End-Use Subcategory +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000009}, !- Handle + Air Terminal Single Duct VAV Reheat 17, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000489}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000014}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000490}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:Boiler:HotWater, - {00000000-0000-0000-0010-000000000002}, !- Handle +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000010}, !- Handle + Air Terminal Single Duct VAV Reheat 18, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000503}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000015}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000504}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000011}, !- Handle + Air Terminal Single Duct VAV Reheat 19, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000517}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000016}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000518}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000227}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000018}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000228}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000241}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000019}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000242}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 4, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000255}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000020}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000256}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 5, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000269}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000021}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000270}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000016}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000283}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000022}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000284}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000017}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000297}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000023}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000298}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000018}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000337}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000003}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000338}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000019}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000351}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000352}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0051-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0051-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0051-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000004}, !- Handle + Availability Manager Night Cycle 4, !- Name + {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0051-000000000013}, !- Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000014}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000015}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000005}, !- Handle + Availability Manager Night Cycle 5, !- Name + {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0051-000000000017}, !- Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000018}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000019}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name + {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name + {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000007}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000008}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000009}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:Boiler:HotWater, + {00000000-0000-0000-0010-000000000001}, !- Handle + Primary Boiler 10574kBtu/hr 0.833 Combustion Eff, !- Name + NaturalGas, !- Fuel Type + 3098995.03531853, !- Nominal Capacity {W} + 0.826, !- Nominal Thermal Efficiency + , !- Efficiency Curve Temperature Evaluation Variable + {00000000-0000-0000-0029-000000000001}, !- Normalized Boiler Efficiency Curve Name + , !- Design Water Flow Rate {m3/s} + 0.25, !- Minimum Part Load Ratio + , !- Maximum Part Load Ratio + , !- Optimum Part Load Ratio + {00000000-0000-0000-0020-000000000058}, !- Boiler Water Inlet Node Name + {00000000-0000-0000-0020-000000000059}, !- Boiler Water Outlet Node Name + 99, !- Water Outlet Upper Temperature Limit {C} + LeavingSetpointModulated, !- Boiler Flow Mode + 0, !- On Cycle Parasitic Electric Load {W} + 0, !- Off Cycle Parasitic Fuel Load {W} + 1, !- Sizing Factor + General; !- End-Use Subcategory + +OS:Boiler:HotWater, + {00000000-0000-0000-0010-000000000002}, !- Handle Secondary Boiler 0kBtu/hr 0.85 AFUE, !- Name NaturalGas, !- Fuel Type 0.001, !- Nominal Capacity {W} @@ -277,7 +925,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0057-000000000023}, !- Group Rendering Name + {00000000-0000-0000-0061-000000000023}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -287,7 +935,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0057-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0061-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -297,7 +945,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0057-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0061-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -307,14 +955,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0057-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0061-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0013-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton, !- Name - 18839.7768690201, !- Reference Capacity {W} - 4.50320102432778, !- Reference COP {W/W} + Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton, !- Name + 2078476.93007681, !- Reference Capacity {W} + 5.67258064516129, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -356,9 +1004,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0028-000000000009}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0030-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0028-000000000011}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0030-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -393,8 +1041,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0015-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 170kBtu/hr 9.7EER, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 79kBtu/hr 9.7EER, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.36680611439836, !- Rated COP {W/W} @@ -429,7 +1077,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0016-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -444,31 +1092,85 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Heating:Gas, - {00000000-0000-0000-0017-000000000001}, !- Handle - Coil Heating Gas 1, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name - 0.924, !- Gas Burner Efficiency - AutoSize, !- Nominal Capacity {W} - {00000000-0000-0000-0020-000000000084}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000081}, !- Air Outlet Node Name - , !- Temperature Setpoint Node Name - 0, !- On Cycle Parasitic Electric Load {W} - {00000000-0000-0000-0029-000000000004}, !- Part Load Fraction Correlation Curve Name - 0; !- Off Cycle Parasitic Gas Load {W} +OS:Coil:Cooling:Water, + {00000000-0000-0000-0016-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0020-000000000200}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000201}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000211}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000208}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000001}, !- Handle - Coil Heating Water 1, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000157}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000158}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000169}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000166}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} +OS:Coil:Cooling:Water, + {00000000-0000-0000-0016-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0020-000000000310}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000311}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000321}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000318}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0016-000000000004}, !- Handle + Coil Cooling Water 4, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0020-000000000420}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000421}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000431}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000428}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Heating:Gas, + {00000000-0000-0000-0017-000000000001}, !- Handle + Coil Heating Gas 1, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.924, !- Gas Burner Efficiency + AutoSize, !- Nominal Capacity {W} + {00000000-0000-0000-0020-000000000084}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000081}, !- Air Outlet Node Name + , !- Temperature Setpoint Node Name + 0, !- On Cycle Parasitic Electric Load {W} + {00000000-0000-0000-0029-000000000004}, !- Part Load Fraction Correlation Curve Name + 0; !- Off Cycle Parasitic Gas Load {W} + +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000001}, !- Handle + Coil Heating Water 1, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000157}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000158}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000169}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000166}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -477,450 +1179,1062 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0018-000000000002}, !- Handle - Coil Heating Water 2, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + Coil Heating Water 10, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000177}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000306}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000307}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000319}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000316}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000003}, !- Handle + Coil Heating Water 11, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000326}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000327}, !- Water Outlet Node Name , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 13429.1124343872, !- Rated Capacity {W} + 521863.206481934, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} , !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000001}, !- Handle - Coil Heating Water Baseboard 1, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000004}, !- Handle + Coil Heating Water 12, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000088}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000089}; !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000340}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000341}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 28803.8040161133, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000002}, !- Handle - Coil Heating Water Baseboard 2, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000005}, !- Handle + Coil Heating Water 13, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000180}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000181}; !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000354}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000355}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 239518.954467773, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000001}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000006}, !- Handle + Coil Heating Water 14, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000368}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000369}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 203699.336242676, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000002}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000007}, !- Handle + Coil Heating Water 15, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000382}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000383}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 107736.966705322, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000003}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000008}, !- Handle + Coil Heating Water 16, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000396}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000397}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 217597.975158691, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000004}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000009}, !- Handle + Coil Heating Water 17, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000416}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000417}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000429}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000426}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000005}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000010}, !- Handle + Coil Heating Water 18, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000436}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000437}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 53357.7684402466, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000006}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000011}, !- Handle + Coil Heating Water 19, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000450}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000451}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 2942.2459602356, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000007}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000012}, !- Handle + Coil Heating Water 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000177}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 7891.34902954102, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000008}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000013}, !- Handle + Coil Heating Water 20, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000464}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000465}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 23778.5219192505, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000009}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000014}, !- Handle + Coil Heating Water 21, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000478}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000479}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 19808.1024169922, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000010}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000011}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000015}, !- Handle + Coil Heating Water 22, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000492}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000493}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 11997.4925994873, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000012}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000016}, !- Handle + Coil Heating Water 23, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000506}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000507}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 21937.6467704773, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000013}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000017}, !- Handle + Coil Heating Water 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000196}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000197}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000209}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000206}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000014}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000018}, !- Handle + Coil Heating Water 4, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000216}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000217}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 35953.6145210266, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000015}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000019}, !- Handle + Coil Heating Water 5, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000230}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000231}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 2269.37075257301, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000016}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000020}, !- Handle + Coil Heating Water 6, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000244}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000245}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 17228.0280590057, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000017}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000021}, !- Handle + Coil Heating Water 7, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000258}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000259}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 14666.8137073517, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000018}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000022}, !- Handle + Coil Heating Water 8, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000272}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000273}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 7806.96694850922, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000019}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000023}, !- Handle + Coil Heating Water 9, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000286}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000287}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 16455.8840274811, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000020}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000001}, !- Handle + Coil Heating Water Baseboard 1, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000088}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000089}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000021}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000002}, !- Handle + Coil Heating Water Baseboard 10, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000344}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000345}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000022}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000003}, !- Handle + Coil Heating Water Baseboard 11, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000358}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000359}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000023}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000004}, !- Handle + Coil Heating Water Baseboard 12, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000372}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000373}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000024}, !- Handle - {00000000-0000-0000-0088-000000000010}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0048-000000000013}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000005}, !- Handle + Coil Heating Water Baseboard 13, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000386}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000387}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000025}, !- Handle - {00000000-0000-0000-0088-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0048-000000000003}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000006}, !- Handle + Coil Heating Water Baseboard 14, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000400}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000401}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000026}, !- Handle - {00000000-0000-0000-0088-000000000022}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0048-000000000025}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000007}, !- Handle + Coil Heating Water Baseboard 15, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000440}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000441}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000027}, !- Handle - {00000000-0000-0000-0088-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0048-000000000005}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000008}, !- Handle + Coil Heating Water Baseboard 16, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000454}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000455}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000009}, !- Handle + Coil Heating Water Baseboard 17, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000468}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000469}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000010}, !- Handle + Coil Heating Water Baseboard 18, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000482}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000483}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000011}, !- Handle + Coil Heating Water Baseboard 19, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000496}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000497}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000012}, !- Handle + Coil Heating Water Baseboard 2, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000180}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000181}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000013}, !- Handle + Coil Heating Water Baseboard 20, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000510}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000511}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000014}, !- Handle + Coil Heating Water Baseboard 3, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000220}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000221}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000015}, !- Handle + Coil Heating Water Baseboard 4, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000234}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000235}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000016}, !- Handle + Coil Heating Water Baseboard 5, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000248}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000249}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000017}, !- Handle + Coil Heating Water Baseboard 6, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000262}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000263}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000018}, !- Handle + Coil Heating Water Baseboard 7, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000276}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000277}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000019}, !- Handle + Coil Heating Water Baseboard 8, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000290}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000291}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000020}, !- Handle + Coil Heating Water Baseboard 9, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000330}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000331}; !- Water Outlet Node Name OS:Connection, - {00000000-0000-0000-0020-000000000028}, !- Handle - {00000000-0000-0000-0088-000000000016}, !- Source Object + {00000000-0000-0000-0020-000000000001}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000019}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000029}, !- Handle - {00000000-0000-0000-0088-000000000017}, !- Source Object + {00000000-0000-0000-0020-000000000002}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000020}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000030}, !- Handle - {00000000-0000-0000-0088-000000000005}, !- Source Object + {00000000-0000-0000-0020-000000000003}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000008}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000031}, !- Handle - {00000000-0000-0000-0088-000000000006}, !- Source Object + {00000000-0000-0000-0020-000000000004}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000009}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000032}, !- Handle - {00000000-0000-0000-0088-000000000018}, !- Source Object + {00000000-0000-0000-0020-000000000005}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000021}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000033}, !- Handle - {00000000-0000-0000-0088-000000000011}, !- Source Object + {00000000-0000-0000-0020-000000000006}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000014}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000034}, !- Handle - {00000000-0000-0000-0088-000000000019}, !- Source Object + {00000000-0000-0000-0020-000000000007}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000022}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000035}, !- Handle - {00000000-0000-0000-0088-000000000012}, !- Source Object + {00000000-0000-0000-0020-000000000008}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000015}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000036}, !- Handle - {00000000-0000-0000-0088-000000000004}, !- Source Object + {00000000-0000-0000-0020-000000000009}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000007}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000037}, !- Handle - {00000000-0000-0000-0088-000000000002}, !- Source Object + {00000000-0000-0000-0020-000000000010}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000004}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000038}, !- Handle - {00000000-0000-0000-0088-000000000007}, !- Source Object + {00000000-0000-0000-0020-000000000011}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000010}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000039}, !- Handle - {00000000-0000-0000-0088-000000000020}, !- Source Object + {00000000-0000-0000-0020-000000000012}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000023}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000040}, !- Handle - {00000000-0000-0000-0088-000000000013}, !- Source Object + {00000000-0000-0000-0020-000000000013}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000016}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000041}, !- Handle - {00000000-0000-0000-0088-000000000021}, !- Source Object + {00000000-0000-0000-0020-000000000014}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000024}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000042}, !- Handle - {00000000-0000-0000-0088-000000000014}, !- Source Object + {00000000-0000-0000-0020-000000000015}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000017}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000043}, !- Handle - {00000000-0000-0000-0088-000000000008}, !- Source Object + {00000000-0000-0000-0020-000000000016}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000011}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000044}, !- Handle - {00000000-0000-0000-0088-000000000015}, !- Source Object + {00000000-0000-0000-0020-000000000017}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000018}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000045}, !- Handle - {00000000-0000-0000-0088-000000000009}, !- Source Object + {00000000-0000-0000-0020-000000000018}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000012}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000046}, !- Handle - {00000000-0000-0000-0088-000000000023}, !- Source Object + {00000000-0000-0000-0020-000000000019}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000133}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000047}, !- Handle - {00000000-0000-0000-0053-000000000003}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0048-000000000070}, !- Target Object + {00000000-0000-0000-0020-000000000020}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000048}, !- Handle - {00000000-0000-0000-0022-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000116}, !- Target Object + {00000000-0000-0000-0020-000000000021}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000049}, !- Handle - {00000000-0000-0000-0048-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000003}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0020-000000000022}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000050}, !- Handle - {00000000-0000-0000-0053-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0048-000000000068}, !- Target Object + {00000000-0000-0000-0020-000000000023}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000051}, !- Handle - {00000000-0000-0000-0048-000000000068}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0022-000000000002}, !- Target Object + {00000000-0000-0000-0020-000000000024}, !- Handle + {00000000-0000-0000-0092-000000000010}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000052}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000043}, !- Target Object + {00000000-0000-0000-0020-000000000025}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000053}, !- Handle - {00000000-0000-0000-0021-000000000002}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0048-000000000069}, !- Target Object + {00000000-0000-0000-0020-000000000026}, !- Handle + {00000000-0000-0000-0092-000000000022}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000054}, !- Handle - {00000000-0000-0000-0048-000000000069}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000003}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0020-000000000027}, !- Handle + {00000000-0000-0000-0092-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000055}, !- Handle - {00000000-0000-0000-0048-000000000070}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0056-000000000001}, !- Target Object + {00000000-0000-0000-0020-000000000028}, !- Handle + {00000000-0000-0000-0092-000000000016}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000056}, !- Handle - {00000000-0000-0000-0056-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000122}, !- Target Object + {00000000-0000-0000-0020-000000000029}, !- Handle + {00000000-0000-0000-0092-000000000017}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000033}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000030}, !- Handle + {00000000-0000-0000-0092-000000000005}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000031}, !- Handle + {00000000-0000-0000-0092-000000000006}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000011}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000032}, !- Handle + {00000000-0000-0000-0092-000000000018}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000035}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000033}, !- Handle + {00000000-0000-0000-0092-000000000011}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000021}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000034}, !- Handle + {00000000-0000-0000-0092-000000000019}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000035}, !- Handle + {00000000-0000-0000-0092-000000000012}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000023}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000036}, !- Handle + {00000000-0000-0000-0092-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000037}, !- Handle + {00000000-0000-0000-0092-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000038}, !- Handle + {00000000-0000-0000-0092-000000000007}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000039}, !- Handle + {00000000-0000-0000-0092-000000000020}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000039}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000040}, !- Handle + {00000000-0000-0000-0092-000000000013}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000025}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000041}, !- Handle + {00000000-0000-0000-0092-000000000021}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000041}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000042}, !- Handle + {00000000-0000-0000-0092-000000000014}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000027}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000043}, !- Handle + {00000000-0000-0000-0092-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000015}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000044}, !- Handle + {00000000-0000-0000-0092-000000000015}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000029}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000045}, !- Handle + {00000000-0000-0000-0092-000000000009}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000017}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000046}, !- Handle + {00000000-0000-0000-0092-000000000023}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000280}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000047}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0052-000000000214}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000048}, !- Handle + {00000000-0000-0000-0022-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000260}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000049}, !- Handle + {00000000-0000-0000-0052-000000000215}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000003}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000050}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000212}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000051}, !- Handle + {00000000-0000-0000-0052-000000000212}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0022-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000052}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000151}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000053}, !- Handle + {00000000-0000-0000-0021-000000000002}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000213}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000054}, !- Handle + {00000000-0000-0000-0052-000000000213}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000003}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000055}, !- Handle + {00000000-0000-0000-0052-000000000214}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0060-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000056}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000266}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000057}, !- Handle - {00000000-0000-0000-0048-000000000122}, !- Source Object + {00000000-0000-0000-0052-000000000266}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000058}, !- Handle - {00000000-0000-0000-0048-000000000116}, !- Source Object + {00000000-0000-0000-0052-000000000260}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000001}, !- Target Object 11; !- Inlet Port @@ -929,12 +2243,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000059}, !- Handle {00000000-0000-0000-0010-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0048-000000000117}, !- Target Object + {00000000-0000-0000-0052-000000000261}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000060}, !- Handle - {00000000-0000-0000-0048-000000000117}, !- Source Object + {00000000-0000-0000-0052-000000000261}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 3; !- Inlet Port @@ -943,12 +2257,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000061}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0048-000000000125}, !- Target Object + {00000000-0000-0000-0052-000000000269}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000062}, !- Handle - {00000000-0000-0000-0048-000000000125}, !- Source Object + {00000000-0000-0000-0052-000000000269}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000002}, !- Target Object 11; !- Inlet Port @@ -957,12 +2271,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000063}, !- Handle {00000000-0000-0000-0010-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0048-000000000126}, !- Target Object + {00000000-0000-0000-0052-000000000270}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000064}, !- Handle - {00000000-0000-0000-0048-000000000126}, !- Source Object + {00000000-0000-0000-0052-000000000270}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 4; !- Inlet Port @@ -971,26 +2285,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000065}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0048-000000000101}, !- Target Object + {00000000-0000-0000-0052-000000000245}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000066}, !- Handle - {00000000-0000-0000-0048-000000000101}, !- Source Object + {00000000-0000-0000-0052-000000000245}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000001}, !- Target Object + {00000000-0000-0000-0056-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000067}, !- Handle - {00000000-0000-0000-0052-000000000001}, !- Source Object + {00000000-0000-0000-0056-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000102}, !- Target Object + {00000000-0000-0000-0052-000000000246}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000068}, !- Handle - {00000000-0000-0000-0048-000000000102}, !- Source Object + {00000000-0000-0000-0052-000000000246}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 5; !- Inlet Port @@ -999,33 +2313,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000069}, !- Handle {00000000-0000-0000-0021-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0048-000000000104}, !- Target Object + {00000000-0000-0000-0052-000000000248}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000070}, !- Handle - {00000000-0000-0000-0048-000000000104}, !- Source Object + {00000000-0000-0000-0052-000000000248}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000003}, !- Target Object + {00000000-0000-0000-0056-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000071}, !- Handle - {00000000-0000-0000-0052-000000000003}, !- Source Object + {00000000-0000-0000-0056-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000071}, !- Target Object + {00000000-0000-0000-0052-000000000215}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000072}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0048-000000000139}, !- Target Object + {00000000-0000-0000-0052-000000000286}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000073}, !- Handle - {00000000-0000-0000-0048-000000000140}, !- Source Object + {00000000-0000-0000-0052-000000000287}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -1034,19 +2348,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000074}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000134}, !- Target Object + {00000000-0000-0000-0052-000000000281}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000075}, !- Handle - {00000000-0000-0000-0048-000000000135}, !- Source Object + {00000000-0000-0000-0052-000000000282}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000076}, !- Handle - {00000000-0000-0000-0048-000000000134}, !- Source Object + {00000000-0000-0000-0052-000000000281}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -1055,12 +2369,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000077}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0048-000000000135}, !- Target Object + {00000000-0000-0000-0052-000000000282}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000078}, !- Handle - {00000000-0000-0000-0048-000000000137}, !- Source Object + {00000000-0000-0000-0052-000000000284}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port @@ -1069,47 +2383,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000079}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0048-000000000138}, !- Target Object + {00000000-0000-0000-0052-000000000285}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000080}, !- Handle - {00000000-0000-0000-0039-000000000001}, !- Source Object + {00000000-0000-0000-0043-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0048-000000000140}, !- Target Object + {00000000-0000-0000-0052-000000000287}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000081}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0048-000000000037}, !- Target Object + {00000000-0000-0000-0052-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000082}, !- Handle - {00000000-0000-0000-0048-000000000037}, !- Source Object + {00000000-0000-0000-0052-000000000100}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000001}, !- Target Object + {00000000-0000-0000-0043-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000083}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0048-000000000047}, !- Target Object + {00000000-0000-0000-0052-000000000191}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000084}, !- Handle - {00000000-0000-0000-0048-000000000047}, !- Source Object + {00000000-0000-0000-0052-000000000191}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000085}, !- Handle - {00000000-0000-0000-0048-000000000139}, !- Source Object + {00000000-0000-0000-0052-000000000286}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -1118,19 +2432,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000086}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0048-000000000136}, !- Target Object + {00000000-0000-0000-0052-000000000283}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000087}, !- Handle - {00000000-0000-0000-0048-000000000136}, !- Source Object + {00000000-0000-0000-0052-000000000283}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000088}, !- Handle - {00000000-0000-0000-0048-000000000043}, !- Source Object + {00000000-0000-0000-0052-000000000151}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 9; !- Inlet Port @@ -1139,33 +2453,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000089}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0048-000000000044}, !- Target Object + {00000000-0000-0000-0052-000000000152}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000090}, !- Handle - {00000000-0000-0000-0048-000000000044}, !- Source Object + {00000000-0000-0000-0052-000000000152}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000091}, !- Handle - {00000000-0000-0000-0048-000000000027}, !- Source Object + {00000000-0000-0000-0052-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000067}, !- Target Object + {00000000-0000-0000-0058-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000092}, !- Handle - {00000000-0000-0000-0054-000000000069}, !- Source Object + {00000000-0000-0000-0058-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0048-000000000132}, !- Target Object + {00000000-0000-0000-0052-000000000279}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000093}, !- Handle - {00000000-0000-0000-0048-000000000132}, !- Source Object + {00000000-0000-0000-0052-000000000279}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -1174,12 +2488,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000094}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000026}, !- Target Object + {00000000-0000-0000-0052-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000095}, !- Handle - {00000000-0000-0000-0048-000000000026}, !- Source Object + {00000000-0000-0000-0052-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -1188,40 +2502,40 @@ OS:Connection, {00000000-0000-0000-0020-000000000096}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0048-000000000027}, !- Target Object + {00000000-0000-0000-0052-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000097}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Source Object + {00000000-0000-0000-0057-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0048-000000000032}, !- Target Object + {00000000-0000-0000-0052-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000098}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000120}, !- Target Object + {00000000-0000-0000-0052-000000000264}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000099}, !- Handle - {00000000-0000-0000-0048-000000000033}, !- Source Object + {00000000-0000-0000-0052-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000001}, !- Target Object + {00000000-0000-0000-0057-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000100}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Source Object + {00000000-0000-0000-0057-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0048-000000000030}, !- Target Object + {00000000-0000-0000-0052-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000101}, !- Handle - {00000000-0000-0000-0048-000000000030}, !- Source Object + {00000000-0000-0000-0052-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000004}, !- Target Object 2; !- Inlet Port @@ -1230,47 +2544,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000102}, !- Handle {00000000-0000-0000-0022-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000034}, !- Target Object + {00000000-0000-0000-0052-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000103}, !- Handle {00000000-0000-0000-0021-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0048-000000000031}, !- Target Object + {00000000-0000-0000-0052-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000104}, !- Handle - {00000000-0000-0000-0048-000000000031}, !- Source Object + {00000000-0000-0000-0052-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000001}, !- Target Object + {00000000-0000-0000-0057-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000105}, !- Handle - {00000000-0000-0000-0048-000000000032}, !- Source Object + {00000000-0000-0000-0052-000000000086}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000002}, !- Target Object + {00000000-0000-0000-0060-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000106}, !- Handle - {00000000-0000-0000-0056-000000000002}, !- Source Object + {00000000-0000-0000-0060-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000123}, !- Target Object + {00000000-0000-0000-0052-000000000267}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000107}, !- Handle - {00000000-0000-0000-0048-000000000123}, !- Source Object + {00000000-0000-0000-0052-000000000267}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000108}, !- Handle - {00000000-0000-0000-0048-000000000120}, !- Source Object + {00000000-0000-0000-0052-000000000264}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 15; !- Inlet Port @@ -1279,12 +2593,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000109}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0048-000000000121}, !- Target Object + {00000000-0000-0000-0052-000000000265}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000110}, !- Handle - {00000000-0000-0000-0048-000000000121}, !- Source Object + {00000000-0000-0000-0052-000000000265}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 3; !- Inlet Port @@ -1293,12 +2607,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000111}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0048-000000000129}, !- Target Object + {00000000-0000-0000-0052-000000000273}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000112}, !- Handle - {00000000-0000-0000-0048-000000000129}, !- Source Object + {00000000-0000-0000-0052-000000000273}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 15; !- Inlet Port @@ -1307,12 +2621,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000113}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0048-000000000130}, !- Target Object + {00000000-0000-0000-0052-000000000274}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000114}, !- Handle - {00000000-0000-0000-0048-000000000130}, !- Source Object + {00000000-0000-0000-0052-000000000274}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 4; !- Inlet Port @@ -1321,26 +2635,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000115}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0048-000000000105}, !- Target Object + {00000000-0000-0000-0052-000000000249}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000116}, !- Handle - {00000000-0000-0000-0048-000000000105}, !- Source Object + {00000000-0000-0000-0052-000000000249}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000004}, !- Target Object + {00000000-0000-0000-0056-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000117}, !- Handle - {00000000-0000-0000-0052-000000000004}, !- Source Object + {00000000-0000-0000-0056-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000106}, !- Target Object + {00000000-0000-0000-0052-000000000250}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000118}, !- Handle - {00000000-0000-0000-0048-000000000106}, !- Source Object + {00000000-0000-0000-0052-000000000250}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 5; !- Inlet Port @@ -1349,54 +2663,54 @@ OS:Connection, {00000000-0000-0000-0020-000000000119}, !- Handle {00000000-0000-0000-0021-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0048-000000000107}, !- Target Object + {00000000-0000-0000-0052-000000000251}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000120}, !- Handle - {00000000-0000-0000-0048-000000000107}, !- Source Object + {00000000-0000-0000-0052-000000000251}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000005}, !- Target Object + {00000000-0000-0000-0056-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000121}, !- Handle - {00000000-0000-0000-0052-000000000005}, !- Source Object + {00000000-0000-0000-0056-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000033}, !- Target Object + {00000000-0000-0000-0052-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000122}, !- Handle - {00000000-0000-0000-0053-000000000002}, !- Source Object + {00000000-0000-0000-0057-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0048-000000000050}, !- Target Object + {00000000-0000-0000-0052-000000000194}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000123}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000052}, !- Target Object + {00000000-0000-0000-0052-000000000196}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000124}, !- Handle - {00000000-0000-0000-0048-000000000051}, !- Source Object + {00000000-0000-0000-0052-000000000195}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000002}, !- Target Object + {00000000-0000-0000-0057-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000125}, !- Handle - {00000000-0000-0000-0053-000000000002}, !- Source Object + {00000000-0000-0000-0057-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0048-000000000048}, !- Target Object + {00000000-0000-0000-0052-000000000192}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000126}, !- Handle - {00000000-0000-0000-0048-000000000048}, !- Source Object + {00000000-0000-0000-0052-000000000192}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000006}, !- Target Object 2; !- Inlet Port @@ -1405,47 +2719,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000127}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000118}, !- Target Object + {00000000-0000-0000-0052-000000000262}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000128}, !- Handle {00000000-0000-0000-0021-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0048-000000000049}, !- Target Object + {00000000-0000-0000-0052-000000000193}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000129}, !- Handle - {00000000-0000-0000-0048-000000000049}, !- Source Object + {00000000-0000-0000-0052-000000000193}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000002}, !- Target Object + {00000000-0000-0000-0057-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000130}, !- Handle - {00000000-0000-0000-0048-000000000050}, !- Source Object + {00000000-0000-0000-0052-000000000194}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000003}, !- Target Object + {00000000-0000-0000-0060-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000131}, !- Handle - {00000000-0000-0000-0056-000000000003}, !- Source Object + {00000000-0000-0000-0060-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000124}, !- Target Object + {00000000-0000-0000-0052-000000000268}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000132}, !- Handle - {00000000-0000-0000-0048-000000000124}, !- Source Object + {00000000-0000-0000-0052-000000000268}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000133}, !- Handle - {00000000-0000-0000-0048-000000000052}, !- Source Object + {00000000-0000-0000-0052-000000000196}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0027-000000000001}, !- Target Object 2; !- Inlet Port @@ -1454,12 +2768,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000134}, !- Handle {00000000-0000-0000-0027-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000053}, !- Target Object + {00000000-0000-0000-0052-000000000197}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000135}, !- Handle - {00000000-0000-0000-0048-000000000053}, !- Source Object + {00000000-0000-0000-0052-000000000197}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 3; !- Inlet Port @@ -1468,26 +2782,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000136}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0048-000000000108}, !- Target Object + {00000000-0000-0000-0052-000000000252}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000137}, !- Handle - {00000000-0000-0000-0048-000000000108}, !- Source Object + {00000000-0000-0000-0052-000000000252}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000006}, !- Target Object + {00000000-0000-0000-0056-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000138}, !- Handle - {00000000-0000-0000-0052-000000000006}, !- Source Object + {00000000-0000-0000-0056-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000109}, !- Target Object + {00000000-0000-0000-0052-000000000253}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000139}, !- Handle - {00000000-0000-0000-0048-000000000109}, !- Source Object + {00000000-0000-0000-0052-000000000253}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 4; !- Inlet Port @@ -1496,26 +2810,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000140}, !- Handle {00000000-0000-0000-0021-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0048-000000000110}, !- Target Object + {00000000-0000-0000-0052-000000000254}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000141}, !- Handle - {00000000-0000-0000-0048-000000000110}, !- Source Object + {00000000-0000-0000-0052-000000000254}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000007}, !- Target Object + {00000000-0000-0000-0056-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000142}, !- Handle - {00000000-0000-0000-0052-000000000007}, !- Source Object + {00000000-0000-0000-0056-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000051}, !- Target Object + {00000000-0000-0000-0052-000000000195}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000143}, !- Handle - {00000000-0000-0000-0048-000000000118}, !- Source Object + {00000000-0000-0000-0052-000000000262}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 17; !- Inlet Port @@ -1524,12 +2838,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000144}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0048-000000000119}, !- Target Object + {00000000-0000-0000-0052-000000000263}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000145}, !- Handle - {00000000-0000-0000-0048-000000000119}, !- Source Object + {00000000-0000-0000-0052-000000000263}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 3; !- Inlet Port @@ -1538,12 +2852,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000146}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0048-000000000127}, !- Target Object + {00000000-0000-0000-0052-000000000271}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000147}, !- Handle - {00000000-0000-0000-0048-000000000127}, !- Source Object + {00000000-0000-0000-0052-000000000271}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 17; !- Inlet Port @@ -1552,47 +2866,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000148}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0048-000000000128}, !- Target Object + {00000000-0000-0000-0052-000000000272}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000149}, !- Handle - {00000000-0000-0000-0048-000000000128}, !- Source Object + {00000000-0000-0000-0052-000000000272}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000150}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0048-000000000146}, !- Target Object + {00000000-0000-0000-0052-000000000314}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000151}, !- Handle - {00000000-0000-0000-0048-000000000147}, !- Source Object + {00000000-0000-0000-0052-000000000315}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000152}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000141}, !- Target Object + {00000000-0000-0000-0052-000000000309}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000153}, !- Handle - {00000000-0000-0000-0048-000000000142}, !- Source Object + {00000000-0000-0000-0052-000000000310}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000154}, !- Handle - {00000000-0000-0000-0048-000000000141}, !- Source Object + {00000000-0000-0000-0052-000000000309}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -1601,19 +2915,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000155}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0048-000000000142}, !- Target Object + {00000000-0000-0000-0052-000000000310}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000156}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0048-000000000038}, !- Target Object + {00000000-0000-0000-0052-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000157}, !- Handle - {00000000-0000-0000-0048-000000000038}, !- Source Object + {00000000-0000-0000-0052-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1622,19 +2936,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000158}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0048-000000000040}, !- Target Object + {00000000-0000-0000-0052-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000159}, !- Handle - {00000000-0000-0000-0048-000000000040}, !- Source Object + {00000000-0000-0000-0052-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000160}, !- Handle - {00000000-0000-0000-0048-000000000034}, !- Source Object + {00000000-0000-0000-0052-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 10; !- Inlet Port @@ -1643,19 +2957,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000161}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0048-000000000036}, !- Target Object + {00000000-0000-0000-0052-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000162}, !- Handle - {00000000-0000-0000-0048-000000000036}, !- Source Object + {00000000-0000-0000-0052-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000163}, !- Handle - {00000000-0000-0000-0048-000000000144}, !- Source Object + {00000000-0000-0000-0052-000000000312}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 6; !- Inlet Port @@ -1664,40 +2978,40 @@ OS:Connection, {00000000-0000-0000-0020-000000000164}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0048-000000000145}, !- Target Object + {00000000-0000-0000-0052-000000000313}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000165}, !- Handle - {00000000-0000-0000-0040-000000000002}, !- Source Object + {00000000-0000-0000-0044-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0048-000000000147}, !- Target Object + {00000000-0000-0000-0052-000000000315}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000166}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0048-000000000039}, !- Target Object + {00000000-0000-0000-0052-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000167}, !- Handle - {00000000-0000-0000-0048-000000000039}, !- Source Object + {00000000-0000-0000-0052-000000000102}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000002}, !- Target Object + {00000000-0000-0000-0044-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000168}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0048-000000000035}, !- Target Object + {00000000-0000-0000-0052-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000169}, !- Handle - {00000000-0000-0000-0048-000000000035}, !- Source Object + {00000000-0000-0000-0052-000000000089}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 7; !- Inlet Port @@ -1706,33 +3020,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000170}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0048-000000000143}, !- Target Object + {00000000-0000-0000-0052-000000000311}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000171}, !- Handle - {00000000-0000-0000-0048-000000000143}, !- Source Object + {00000000-0000-0000-0052-000000000311}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000172}, !- Handle - {00000000-0000-0000-0048-000000000146}, !- Source Object + {00000000-0000-0000-0052-000000000314}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000001}, !- Target Object + {00000000-0000-0000-0044-000000000004}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000173}, !- Handle - {00000000-0000-0000-0040-000000000001}, !- Source Object + {00000000-0000-0000-0044-000000000004}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0048-000000000131}, !- Target Object + {00000000-0000-0000-0052-000000000278}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000174}, !- Handle - {00000000-0000-0000-0048-000000000131}, !- Source Object + {00000000-0000-0000-0052-000000000278}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port @@ -1741,26 +3055,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000175}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0048-000000000041}, !- Target Object + {00000000-0000-0000-0052-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000176}, !- Handle - {00000000-0000-0000-0048-000000000041}, !- Source Object + {00000000-0000-0000-0052-000000000126}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object + {00000000-0000-0000-0018-000000000012}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000177}, !- Handle - {00000000-0000-0000-0018-000000000002}, !- Source Object + {00000000-0000-0000-0018-000000000012}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0048-000000000042}, !- Target Object + {00000000-0000-0000-0052-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000178}, !- Handle - {00000000-0000-0000-0048-000000000042}, !- Source Object + {00000000-0000-0000-0052-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 5; !- Inlet Port @@ -1769,47 +3083,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000179}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0048-000000000045}, !- Target Object + {00000000-0000-0000-0052-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000180}, !- Handle - {00000000-0000-0000-0048-000000000045}, !- Source Object + {00000000-0000-0000-0052-000000000173}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000002}, !- Target Object + {00000000-0000-0000-0019-000000000012}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000181}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object + {00000000-0000-0000-0019-000000000012}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0048-000000000046}, !- Target Object + {00000000-0000-0000-0052-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000182}, !- Handle - {00000000-0000-0000-0048-000000000046}, !- Source Object + {00000000-0000-0000-0052-000000000174}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000183}, !- Handle - {00000000-0000-0000-0048-000000000029}, !- Source Object + {00000000-0000-0000-0052-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000037}, !- Target Object + {00000000-0000-0000-0058-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000184}, !- Handle - {00000000-0000-0000-0054-000000000039}, !- Source Object + {00000000-0000-0000-0058-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0048-000000000006}, !- Target Object + {00000000-0000-0000-0052-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000185}, !- Handle - {00000000-0000-0000-0048-000000000006}, !- Source Object + {00000000-0000-0000-0052-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -1818,12 +3132,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000186}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000028}, !- Target Object + {00000000-0000-0000-0052-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000187}, !- Handle - {00000000-0000-0000-0048-000000000028}, !- Source Object + {00000000-0000-0000-0052-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -1832,1237 +3146,3755 @@ OS:Connection, {00000000-0000-0000-0020-000000000188}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0048-000000000029}, !- Target Object + {00000000-0000-0000-0052-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000189}, !- Handle - {00000000-0000-0000-0053-000000000004}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0048-000000000075}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000293}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000190}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object + {00000000-0000-0000-0052-000000000294}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000191}, !- Handle - {00000000-0000-0000-0048-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000004}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000288}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000192}, !- Handle - {00000000-0000-0000-0053-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0048-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000289}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000193}, !- Handle - {00000000-0000-0000-0048-000000000073}, !- Source Object + {00000000-0000-0000-0052-000000000288}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0022-000000000008}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000194}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000113}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000289}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000195}, !- Handle - {00000000-0000-0000-0048-000000000074}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000004}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0022-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000136}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000196}, !- Handle - {00000000-0000-0000-0048-000000000075}, !- Source Object + {00000000-0000-0000-0052-000000000136}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000017}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000197}, !- Handle - {00000000-0000-0000-0055-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000072}, !- Target Object + {00000000-0000-0000-0018-000000000017}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000138}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000198}, !- Handle - {00000000-0000-0000-0048-000000000072}, !- Source Object + {00000000-0000-0000-0052-000000000138}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0022-000000000007}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000199}, !- Handle - {00000000-0000-0000-0048-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000001}, !- Target Object - 31; !- Inlet Port + {00000000-0000-0000-0022-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000091}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000200}, !- Handle - {00000000-0000-0000-0092-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0048-000000000002}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000091}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000201}, !- Handle - {00000000-0000-0000-0048-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0016-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000093}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000202}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0048-000000000111}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000093}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000004}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000203}, !- Handle - {00000000-0000-0000-0048-000000000111}, !- Source Object + {00000000-0000-0000-0052-000000000291}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000008}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000204}, !- Handle - {00000000-0000-0000-0052-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000112}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000292}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000205}, !- Handle - {00000000-0000-0000-0048-000000000112}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0044-000000000005}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000294}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000206}, !- Handle - {00000000-0000-0000-0048-000000000113}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000009}, !- Target Object + {00000000-0000-0000-0018-000000000017}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000137}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000207}, !- Handle - {00000000-0000-0000-0052-000000000009}, !- Source Object + {00000000-0000-0000-0052-000000000137}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000114}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0044-000000000005}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000208}, !- Handle - {00000000-0000-0000-0048-000000000114}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0016-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000092}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000209}, !- Handle - {00000000-0000-0000-0021-000000000007}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0048-000000000115}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000092}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000017}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000210}, !- Handle - {00000000-0000-0000-0048-000000000115}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000010}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000290}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000211}, !- Handle - {00000000-0000-0000-0052-000000000010}, !- Source Object + {00000000-0000-0000-0052-000000000290}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000076}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000212}, !- Handle - {00000000-0000-0000-0021-000000000008}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0048-000000000103}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000293}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000001}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000213}, !- Handle - {00000000-0000-0000-0048-000000000103}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0052-000000000002}, !- Target Object + {00000000-0000-0000-0044-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000275}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000214}, !- Handle - {00000000-0000-0000-0052-000000000002}, !- Source Object + {00000000-0000-0000-0052-000000000275}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000074}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000215}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0048-000000000054}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000216}, !- Handle - {00000000-0000-0000-0048-000000000054}, !- Source Object + {00000000-0000-0000-0052-000000000139}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000018}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000217}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000055}, !- Target Object + {00000000-0000-0000-0018-000000000018}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000218}, !- Handle - {00000000-0000-0000-0048-000000000055}, !- Source Object + {00000000-0000-0000-0052-000000000140}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000219}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0048-000000000056}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000177}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000220}, !- Handle - {00000000-0000-0000-0048-000000000056}, !- Source Object + {00000000-0000-0000-0052-000000000177}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000002}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0019-000000000014}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000221}, !- Handle - {00000000-0000-0000-0094-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000057}, !- Target Object + {00000000-0000-0000-0019-000000000014}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000178}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000222}, !- Handle - {00000000-0000-0000-0048-000000000057}, !- Source Object + {00000000-0000-0000-0052-000000000178}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000223}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0048-000000000058}, !- Target Object + {00000000-0000-0000-0052-000000000069}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000224}, !- Handle - {00000000-0000-0000-0048-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000003}, !- Target Object + {00000000-0000-0000-0058-000000000045}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000225}, !- Handle - {00000000-0000-0000-0094-000000000003}, !- Source Object + {00000000-0000-0000-0052-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000059}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000226}, !- Handle - {00000000-0000-0000-0048-000000000059}, !- Source Object + {00000000-0000-0000-0005-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0052-000000000068}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000227}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0048-000000000060}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000068}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000012}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000228}, !- Handle - {00000000-0000-0000-0048-000000000060}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000004}, !- Target Object + {00000000-0000-0000-0007-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000229}, !- Handle - {00000000-0000-0000-0094-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000061}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000141}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000230}, !- Handle - {00000000-0000-0000-0048-000000000061}, !- Source Object + {00000000-0000-0000-0052-000000000141}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0018-000000000019}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000231}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0048-000000000062}, !- Target Object + {00000000-0000-0000-0018-000000000019}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000142}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000232}, !- Handle - {00000000-0000-0000-0048-000000000062}, !- Source Object + {00000000-0000-0000-0052-000000000142}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000005}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000233}, !- Handle - {00000000-0000-0000-0094-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000063}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000179}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000234}, !- Handle - {00000000-0000-0000-0048-000000000063}, !- Source Object + {00000000-0000-0000-0052-000000000179}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0019-000000000015}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000235}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0048-000000000064}, !- Target Object + {00000000-0000-0000-0019-000000000015}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000180}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000236}, !- Handle - {00000000-0000-0000-0048-000000000064}, !- Source Object + {00000000-0000-0000-0052-000000000180}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000006}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000237}, !- Handle - {00000000-0000-0000-0094-000000000006}, !- Source Object + {00000000-0000-0000-0052-000000000071}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000065}, !- Target Object + {00000000-0000-0000-0058-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000238}, !- Handle - {00000000-0000-0000-0048-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0058-000000000021}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000008}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000239}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0048-000000000066}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000240}, !- Handle - {00000000-0000-0000-0048-000000000066}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000007}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000241}, !- Handle - {00000000-0000-0000-0094-000000000007}, !- Source Object + {00000000-0000-0000-0052-000000000070}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000067}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000013}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000242}, !- Handle - {00000000-0000-0000-0048-000000000067}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0007-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000071}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000243}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0048-000000000077}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000244}, !- Handle - {00000000-0000-0000-0048-000000000077}, !- Source Object + {00000000-0000-0000-0052-000000000143}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000008}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000020}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000245}, !- Handle - {00000000-0000-0000-0094-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000078}, !- Target Object + {00000000-0000-0000-0018-000000000020}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000246}, !- Handle - {00000000-0000-0000-0048-000000000078}, !- Source Object + {00000000-0000-0000-0052-000000000144}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 11; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000247}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0048-000000000079}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000181}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000248}, !- Handle - {00000000-0000-0000-0048-000000000079}, !- Source Object + {00000000-0000-0000-0052-000000000181}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000009}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0019-000000000016}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000249}, !- Handle - {00000000-0000-0000-0094-000000000009}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000080}, !- Target Object + {00000000-0000-0000-0019-000000000016}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000182}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000250}, !- Handle - {00000000-0000-0000-0048-000000000080}, !- Source Object + {00000000-0000-0000-0052-000000000182}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000251}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0048-000000000081}, !- Target Object + {00000000-0000-0000-0052-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000252}, !- Handle - {00000000-0000-0000-0048-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000010}, !- Target Object + {00000000-0000-0000-0058-000000000066}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000253}, !- Handle - {00000000-0000-0000-0094-000000000010}, !- Source Object + {00000000-0000-0000-0052-000000000016}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000082}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000254}, !- Handle - {00000000-0000-0000-0048-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 13; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000072}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000255}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0048-000000000083}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000072}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000014}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000256}, !- Handle - {00000000-0000-0000-0048-000000000083}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000011}, !- Target Object + {00000000-0000-0000-0007-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000073}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000257}, !- Handle - {00000000-0000-0000-0094-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000084}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0052-000000000145}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000258}, !- Handle - {00000000-0000-0000-0048-000000000084}, !- Source Object + {00000000-0000-0000-0052-000000000145}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0018-000000000021}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000259}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0048-000000000085}, !- Target Object + {00000000-0000-0000-0018-000000000021}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000146}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000260}, !- Handle - {00000000-0000-0000-0048-000000000085}, !- Source Object + {00000000-0000-0000-0052-000000000146}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000012}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000261}, !- Handle - {00000000-0000-0000-0094-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000086}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0052-000000000183}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000262}, !- Handle - {00000000-0000-0000-0048-000000000086}, !- Source Object + {00000000-0000-0000-0052-000000000183}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0019-000000000017}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000263}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0048-000000000087}, !- Target Object + {00000000-0000-0000-0019-000000000017}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000184}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000264}, !- Handle - {00000000-0000-0000-0048-000000000087}, !- Source Object + {00000000-0000-0000-0052-000000000184}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000013}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000265}, !- Handle - {00000000-0000-0000-0094-000000000013}, !- Source Object + {00000000-0000-0000-0052-000000000075}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000088}, !- Target Object + {00000000-0000-0000-0058-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000266}, !- Handle - {00000000-0000-0000-0048-000000000088}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0058-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000010}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000267}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0048-000000000089}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000268}, !- Handle - {00000000-0000-0000-0048-000000000089}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000014}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000074}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000269}, !- Handle - {00000000-0000-0000-0094-000000000014}, !- Source Object + {00000000-0000-0000-0052-000000000074}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000090}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000015}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000270}, !- Handle - {00000000-0000-0000-0048-000000000090}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0007-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000075}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000271}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0048-000000000091}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0052-000000000147}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000272}, !- Handle - {00000000-0000-0000-0048-000000000091}, !- Source Object + {00000000-0000-0000-0052-000000000147}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000015}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000022}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000273}, !- Handle - {00000000-0000-0000-0094-000000000015}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000092}, !- Target Object + {00000000-0000-0000-0018-000000000022}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000274}, !- Handle - {00000000-0000-0000-0048-000000000092}, !- Source Object + {00000000-0000-0000-0052-000000000148}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000275}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0048-000000000093}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000185}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000276}, !- Handle - {00000000-0000-0000-0048-000000000093}, !- Source Object + {00000000-0000-0000-0052-000000000185}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000016}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0019-000000000018}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000277}, !- Handle - {00000000-0000-0000-0094-000000000016}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000094}, !- Target Object + {00000000-0000-0000-0019-000000000018}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000186}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000278}, !- Handle - {00000000-0000-0000-0048-000000000094}, !- Source Object + {00000000-0000-0000-0052-000000000186}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 19; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 17; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000279}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0048-000000000095}, !- Target Object + {00000000-0000-0000-0052-000000000077}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000280}, !- Handle - {00000000-0000-0000-0048-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000017}, !- Target Object + {00000000-0000-0000-0058-000000000060}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000281}, !- Handle - {00000000-0000-0000-0094-000000000017}, !- Source Object + {00000000-0000-0000-0052-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0048-000000000096}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000282}, !- Handle - {00000000-0000-0000-0048-000000000096}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 20; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000076}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000283}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0048-000000000097}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0052-000000000076}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000016}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000284}, !- Handle - {00000000-0000-0000-0048-000000000097}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000018}, !- Target Object + {00000000-0000-0000-0007-000000000016}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000285}, !- Handle - {00000000-0000-0000-0094-000000000018}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000098}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0052-000000000149}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000286}, !- Handle - {00000000-0000-0000-0048-000000000098}, !- Source Object + {00000000-0000-0000-0052-000000000149}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 21; !- Inlet Port + {00000000-0000-0000-0018-000000000023}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000287}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0048-000000000099}, !- Target Object + {00000000-0000-0000-0018-000000000023}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000150}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000288}, !- Handle - {00000000-0000-0000-0048-000000000099}, !- Source Object + {00000000-0000-0000-0052-000000000150}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0094-000000000019}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000289}, !- Handle - {00000000-0000-0000-0094-000000000019}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0048-000000000100}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0052-000000000187}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000290}, !- Handle - {00000000-0000-0000-0048-000000000100}, !- Source Object + {00000000-0000-0000-0052-000000000187}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 22; !- Inlet Port + {00000000-0000-0000-0019-000000000019}, !- Target Object + 9; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000001}, !- Handle - Connector Mixer 1, !- Name - {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 +OS:Connection, + {00000000-0000-0000-0020-000000000291}, !- Handle + {00000000-0000-0000-0019-000000000019}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000188}, !- Target Object + 2; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000002}, !- Handle - Connector Mixer 2, !- Name - {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000090}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000159}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000178}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000182}; !- Inlet Branch Name 4 - -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000003}, !- Handle - Connector Mixer 3, !- Name - {00000000-0000-0000-0020-000000000119}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000110}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000114}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000118}; !- Inlet Branch Name 3 +OS:Connection, + {00000000-0000-0000-0020-000000000292}, !- Handle + {00000000-0000-0000-0052-000000000188}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 19; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000004}, !- Handle - Connector Mixer 4, !- Name - {00000000-0000-0000-0020-000000000103}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000162}; !- Inlet Branch Name 1 +OS:Connection, + {00000000-0000-0000-0020-000000000293}, !- Handle + {00000000-0000-0000-0052-000000000079}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000001}, !- Target Object + 2; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000005}, !- Handle - Connector Mixer 5, !- Name - {00000000-0000-0000-0020-000000000140}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000135}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000139}; !- Inlet Branch Name 2 +OS:Connection, + {00000000-0000-0000-0020-000000000294}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000018}, !- Target Object + 2; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000006}, !- Handle - Connector Mixer 6, !- Name - {00000000-0000-0000-0020-000000000128}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000145}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000149}; !- Inlet Branch Name 2 +OS:Connection, + {00000000-0000-0000-0020-000000000295}, !- Handle + {00000000-0000-0000-0052-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 8; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000007}, !- Handle - Connector Mixer 7, !- Name - {00000000-0000-0000-0020-000000000209}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000201}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000205}; !- Inlet Branch Name 2 +OS:Connection, + {00000000-0000-0000-0020-000000000296}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000078}, !- Target Object + 2; !- Inlet Port -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000008}, !- Handle - Connector Mixer 8, !- Name - {00000000-0000-0000-0020-000000000212}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000208}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000218}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000222}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000226}, !- Inlet Branch Name 4 - {00000000-0000-0000-0020-000000000230}, !- Inlet Branch Name 5 - {00000000-0000-0000-0020-000000000234}, !- Inlet Branch Name 6 - {00000000-0000-0000-0020-000000000238}, !- Inlet Branch Name 7 - {00000000-0000-0000-0020-000000000242}, !- Inlet Branch Name 8 - {00000000-0000-0000-0020-000000000246}, !- Inlet Branch Name 9 - {00000000-0000-0000-0020-000000000250}, !- Inlet Branch Name 10 - {00000000-0000-0000-0020-000000000254}, !- Inlet Branch Name 11 - {00000000-0000-0000-0020-000000000258}, !- Inlet Branch Name 12 - {00000000-0000-0000-0020-000000000262}, !- Inlet Branch Name 13 - {00000000-0000-0000-0020-000000000266}, !- Inlet Branch Name 14 - {00000000-0000-0000-0020-000000000270}, !- Inlet Branch Name 15 - {00000000-0000-0000-0020-000000000274}, !- Inlet Branch Name 16 - {00000000-0000-0000-0020-000000000278}, !- Inlet Branch Name 17 - {00000000-0000-0000-0020-000000000282}, !- Inlet Branch Name 18 - {00000000-0000-0000-0020-000000000286}, !- Inlet Branch Name 19 - {00000000-0000-0000-0020-000000000290}; !- Inlet Branch Name 20 +OS:Connection, + {00000000-0000-0000-0020-000000000297}, !- Handle + {00000000-0000-0000-0052-000000000078}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000017}, !- Target Object + 3; !- Inlet Port -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000001}, !- Handle - Connector Splitter 1, !- Name - {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 +OS:Connection, + {00000000-0000-0000-0020-000000000298}, !- Handle + {00000000-0000-0000-0007-000000000017}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000079}, !- Target Object + 2; !- Inlet Port -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000002}, !- Handle - Connector Splitter 2, !- Name - {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000156}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000175}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000179}; !- Outlet Branch Name 4 +OS:Connection, + {00000000-0000-0000-0020-000000000299}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000300}, !- Target Object + 2; !- Inlet Port -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000003}, !- Handle - Connector Splitter 3, !- Name - {00000000-0000-0000-0020-000000000107}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000098}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000111}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000115}; !- Outlet Branch Name 3 +OS:Connection, + {00000000-0000-0000-0020-000000000300}, !- Handle + {00000000-0000-0000-0052-000000000301}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 12; !- Inlet Port -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000004}, !- Handle - Connector Splitter 4, !- Name - {00000000-0000-0000-0020-000000000101}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000102}; !- Outlet Branch Name 1 +OS:Connection, + {00000000-0000-0000-0020-000000000301}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000295}, !- Target Object + 2; !- Inlet Port -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000005}, !- Handle - Connector Splitter 5, !- Name - {00000000-0000-0000-0020-000000000132}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000123}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000136}; !- Outlet Branch Name 2 +OS:Connection, + {00000000-0000-0000-0020-000000000302}, !- Handle + {00000000-0000-0000-0052-000000000296}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 10; !- Inlet Port -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000006}, !- Handle - Connector Splitter 6, !- Name - {00000000-0000-0000-0020-000000000126}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000127}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000146}; !- Outlet Branch Name 2 +OS:Connection, + {00000000-0000-0000-0020-000000000303}, !- Handle + {00000000-0000-0000-0052-000000000295}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000004}, !- Target Object + 2; !- Inlet Port -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000007}, !- Handle - Connector Splitter 7, !- Name - {00000000-0000-0000-0020-000000000198}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000190}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000202}; !- Outlet Branch Name 2 +OS:Connection, + {00000000-0000-0000-0020-000000000304}, !- Handle + {00000000-0000-0000-0004-000000000004}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000296}, !- Target Object + 2; !- Inlet Port -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000008}, !- Handle - Connector Splitter 8, !- Name - {00000000-0000-0000-0020-000000000193}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000194}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000215}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000219}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000223}, !- Outlet Branch Name 4 - {00000000-0000-0000-0020-000000000227}, !- Outlet Branch Name 5 - {00000000-0000-0000-0020-000000000231}, !- Outlet Branch Name 6 - {00000000-0000-0000-0020-000000000235}, !- Outlet Branch Name 7 - {00000000-0000-0000-0020-000000000239}, !- Outlet Branch Name 8 - {00000000-0000-0000-0020-000000000243}, !- Outlet Branch Name 9 - {00000000-0000-0000-0020-000000000247}, !- Outlet Branch Name 10 - {00000000-0000-0000-0020-000000000251}, !- Outlet Branch Name 11 - {00000000-0000-0000-0020-000000000255}, !- Outlet Branch Name 12 - {00000000-0000-0000-0020-000000000259}, !- Outlet Branch Name 13 - {00000000-0000-0000-0020-000000000263}, !- Outlet Branch Name 14 - {00000000-0000-0000-0020-000000000267}, !- Outlet Branch Name 15 - {00000000-0000-0000-0020-000000000271}, !- Outlet Branch Name 16 - {00000000-0000-0000-0020-000000000275}, !- Outlet Branch Name 17 - {00000000-0000-0000-0020-000000000279}, !- Outlet Branch Name 18 - {00000000-0000-0000-0020-000000000283}, !- Outlet Branch Name 19 - {00000000-0000-0000-0020-000000000287}; !- Outlet Branch Name 20 +OS:Connection, + {00000000-0000-0000-0020-000000000305}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0052-000000000104}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000001}, !- Handle - BTAP-Ext-DaylightDiffuser, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000306}, !- Handle + {00000000-0000-0000-0052-000000000104}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 5; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000002}, !- Handle - BTAP-Ext-DaylightDiffuser:U=0.220 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000002}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000307}, !- Handle + {00000000-0000-0000-0018-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000106}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000003}, !- Handle - BTAP-Ext-DaylightDomes, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000308}, !- Handle + {00000000-0000-0000-0052-000000000106}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 20; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000004}, !- Handle - BTAP-Ext-DaylightDomes:U=0.220 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000002}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000309}, !- Handle + {00000000-0000-0000-0022-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000094}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000005}, !- Handle - BTAP-Ext-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000018}, !- Layer 1 - {00000000-0000-0000-0046-000000000013}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000310}, !- Handle + {00000000-0000-0000-0052-000000000094}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 10; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000006}, !- Handle - BTAP-Ext-Door:U-2.2, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000017}, !- Layer 1 - {00000000-0000-0000-0046-000000000011}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000311}, !- Handle + {00000000-0000-0000-0016-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000096}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000007}, !- Handle - BTAP-Ext-FixedWindow, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000312}, !- Handle + {00000000-0000-0000-0052-000000000096}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000004}, !- Target Object + 5; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000008}, !- Handle - BTAP-Ext-FixedWindow:U=0.220 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000002}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000313}, !- Handle + {00000000-0000-0000-0052-000000000298}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 6; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000009}, !- Handle - BTAP-Ext-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000013}, !- Layer 1 - {00000000-0000-0000-0045-000000000008}, !- Layer 2 - {00000000-0000-0000-0046-000000000007}; !- Layer 3 +OS:Connection, + {00000000-0000-0000-0020-000000000314}, !- Handle + {00000000-0000-0000-0003-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000299}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000010}, !- Handle - BTAP-Ext-Floor-Mass:U-0.162, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000008}, !- Layer 1 - {00000000-0000-0000-0045-000000000007}, !- Layer 2 - {00000000-0000-0000-0046-000000000003}; !- Layer 3 +OS:Connection, + {00000000-0000-0000-0020-000000000315}, !- Handle + {00000000-0000-0000-0044-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000301}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000011}, !- Handle - BTAP-Ext-GlassDoors, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000316}, !- Handle + {00000000-0000-0000-0018-000000000002}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000105}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000012}, !- Handle - BTAP-Ext-GlassDoors:U=0.220 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000002}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000317}, !- Handle + {00000000-0000-0000-0052-000000000105}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000006}, !- Target Object + 16; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000013}, !- Handle - BTAP-Ext-OverHeadDoor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000013}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000318}, !- Handle + {00000000-0000-0000-0016-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000095}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000014}, !- Handle - BTAP-Ext-OverHeadDoor:U-2.2, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000012}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000319}, !- Handle + {00000000-0000-0000-0052-000000000095}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 7; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000015}, !- Handle - BTAP-Ext-Roof-Metal, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000024}, !- Layer 1 - {00000000-0000-0000-0046-000000000013}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000320}, !- Handle + {00000000-0000-0000-0003-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000297}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000016}, !- Handle - BTAP-Ext-Roof-Metal:U-0.162, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000023}, !- Layer 1 - {00000000-0000-0000-0046-000000000010}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000321}, !- Handle + {00000000-0000-0000-0052-000000000297}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 12; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000017}, !- Handle - BTAP-Ext-Skylights, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000322}, !- Handle + {00000000-0000-0000-0052-000000000300}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000002}, !- Target Object + 16; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000018}, !- Handle - BTAP-Ext-Skylights:U=0.220 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000002}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000323}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000276}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000019}, !- Handle - BTAP-Ext-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000006}, !- Layer 1 - {00000000-0000-0000-0045-000000000014}, !- Layer 2 - {00000000-0000-0000-0046-000000000013}, !- Layer 3 - {00000000-0000-0000-0045-000000000002}; !- Layer 4 +OS:Connection, + {00000000-0000-0000-0020-000000000324}, !- Handle + {00000000-0000-0000-0052-000000000276}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 8; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000020}, !- Handle - BTAP-Ext-Wall-Mass:U-0.21, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000005}, !- Layer 1 - {00000000-0000-0000-0045-000000000013}, !- Layer 2 - {00000000-0000-0000-0046-000000000009}, !- Layer 3 - {00000000-0000-0000-0045-000000000001}; !- Layer 4 +OS:Connection, + {00000000-0000-0000-0020-000000000325}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0052-000000000107}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000021}, !- Handle - BTAP-Grnd-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000012}, !- Layer 1 - {00000000-0000-0000-0046-000000000007}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000326}, !- Handle + {00000000-0000-0000-0052-000000000107}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000003}, !- Target Object + 5; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000022}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000009}, !- Layer 1 - {00000000-0000-0000-0046-000000000004}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000327}, !- Handle + {00000000-0000-0000-0018-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000108}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000023}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000009}, !- Layer 1 - {00000000-0000-0000-0045-000000000016}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000328}, !- Handle + {00000000-0000-0000-0052-000000000108}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 21; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000024}, !- Handle - BTAP-Grnd-Roof-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000012}, !- Layer 1 - {00000000-0000-0000-0046-000000000007}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000329}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0052-000000000189}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000025}, !- Handle - BTAP-Grnd-Roof-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000011}, !- Layer 1 - {00000000-0000-0000-0046-000000000006}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000330}, !- Handle + {00000000-0000-0000-0052-000000000189}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000020}, !- Target Object + 9; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000026}, !- Handle - BTAP-Grnd-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000012}, !- Layer 1 - {00000000-0000-0000-0046-000000000007}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000331}, !- Handle + {00000000-0000-0000-0019-000000000020}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000190}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000027}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000010}, !- Layer 1 - {00000000-0000-0000-0046-000000000005}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000332}, !- Handle + {00000000-0000-0000-0052-000000000190}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 22; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000028}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000010}, !- Layer 1 - {00000000-0000-0000-0045-000000000015}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000333}, !- Handle + {00000000-0000-0000-0052-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000055}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000029}, !- Handle - BTAP-Int-Ceiling, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000007}, !- Layer 1 - {00000000-0000-0000-0045-000000000003}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000334}, !- Handle + {00000000-0000-0000-0058-000000000057}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000026}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000030}, !- Handle - BTAP-Int-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000021}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000335}, !- Handle + {00000000-0000-0000-0052-000000000026}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 3; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000031}, !- Handle - BTAP-Int-Floor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000003}, !- Layer 1 - {00000000-0000-0000-0046-000000000007}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000336}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000080}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000032}, !- Handle - BTAP-Int-Partition, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000021}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000337}, !- Handle + {00000000-0000-0000-0052-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000018}, !- Target Object + 3; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000033}, !- Handle - BTAP-Int-Wall, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000019}, !- Layer 1 - {00000000-0000-0000-0045-000000000019}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000338}, !- Handle + {00000000-0000-0000-0007-000000000018}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000081}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000034}, !- Handle - BTAP-Int-Window, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0098-000000000001}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000339}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 23, !- Outlet Port + {00000000-0000-0000-0052-000000000109}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000035}, !- Handle - Basement Floor construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000022}, !- Layer 1 - {00000000-0000-0000-0046-000000000001}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000340}, !- Handle + {00000000-0000-0000-0052-000000000109}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000004}, !- Target Object + 5; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000036}, !- Handle - Basement Wall construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000022}; !- Layer 1 +OS:Connection, + {00000000-0000-0000-0020-000000000341}, !- Handle + {00000000-0000-0000-0018-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000110}, !- Target Object + 2; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000037}, !- Handle - Floor Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000001}, !- Layer 1 - {00000000-0000-0000-0045-000000000004}, !- Layer 2 - {00000000-0000-0000-0046-000000000002}; !- Layer 3 +OS:Connection, + {00000000-0000-0000-0020-000000000342}, !- Handle + {00000000-0000-0000-0052-000000000110}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 23; !- Inlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000038}, !- Handle - Wall Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0045-000000000020}, !- Layer 1 - {00000000-0000-0000-0045-000000000020}; !- Layer 2 +OS:Connection, + {00000000-0000-0000-0020-000000000343}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 24, !- Outlet Port + {00000000-0000-0000-0052-000000000153}, !- Target Object + 2; !- Inlet Port -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method +OS:Connection, + {00000000-0000-0000-0020-000000000344}, !- Handle + {00000000-0000-0000-0052-000000000153}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000002}, !- Target Object + 9; !- Inlet Port -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method +OS:Connection, + {00000000-0000-0000-0020-000000000345}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000154}, !- Target Object + 2; !- Inlet Port -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0061-000000000023}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Connection, + {00000000-0000-0000-0020-000000000346}, !- Handle + {00000000-0000-0000-0052-000000000154}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 24; !- Inlet Port -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - NoEconomizer, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} - 64000, !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0061-000000000024}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Connection, + {00000000-0000-0000-0020-000000000347}, !- Handle + {00000000-0000-0000-0052-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000049}, !- Target Object + 2; !- Inlet Port -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000001}, !- Handle - Controller Water Coil 1, !- Name - {00000000-0000-0000-0018-000000000001}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} +OS:Connection, + {00000000-0000-0000-0020-000000000348}, !- Handle + {00000000-0000-0000-0058-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000024}, !- Target Object + 2; !- Inlet Port -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000002}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0016-000000000001}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} +OS:Connection, + {00000000-0000-0000-0020-000000000349}, !- Handle + {00000000-0000-0000-0052-000000000024}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 4; !- Inlet Port -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000003}, !- Handle - Controller Water Coil 3, !- Name +OS:Connection, + {00000000-0000-0000-0020-000000000350}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000082}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000351}, !- Handle + {00000000-0000-0000-0052-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000019}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000352}, !- Handle + {00000000-0000-0000-0007-000000000019}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000083}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000353}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 25, !- Outlet Port + {00000000-0000-0000-0052-000000000111}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000354}, !- Handle + {00000000-0000-0000-0052-000000000111}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000355}, !- Handle + {00000000-0000-0000-0018-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000112}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000356}, !- Handle + {00000000-0000-0000-0052-000000000112}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 25; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000357}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 26, !- Outlet Port + {00000000-0000-0000-0052-000000000155}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000358}, !- Handle + {00000000-0000-0000-0052-000000000155}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000003}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000359}, !- Handle + {00000000-0000-0000-0019-000000000003}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000156}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000360}, !- Handle + {00000000-0000-0000-0052-000000000156}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 26; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000361}, !- Handle + {00000000-0000-0000-0052-000000000049}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000034}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000362}, !- Handle + {00000000-0000-0000-0058-000000000036}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000363}, !- Handle + {00000000-0000-0000-0052-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000364}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000048}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000365}, !- Handle + {00000000-0000-0000-0052-000000000048}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000366}, !- Handle + {00000000-0000-0000-0007-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000367}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 27, !- Outlet Port + {00000000-0000-0000-0052-000000000113}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000368}, !- Handle + {00000000-0000-0000-0052-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000369}, !- Handle + {00000000-0000-0000-0018-000000000006}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000114}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000370}, !- Handle + {00000000-0000-0000-0052-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 27; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000371}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 28, !- Outlet Port + {00000000-0000-0000-0052-000000000157}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000372}, !- Handle + {00000000-0000-0000-0052-000000000157}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000004}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000373}, !- Handle + {00000000-0000-0000-0019-000000000004}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000158}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000374}, !- Handle + {00000000-0000-0000-0052-000000000158}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 28; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000375}, !- Handle + {00000000-0000-0000-0052-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000028}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000376}, !- Handle + {00000000-0000-0000-0058-000000000030}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000020}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000377}, !- Handle + {00000000-0000-0000-0052-000000000020}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000378}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000050}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000379}, !- Handle + {00000000-0000-0000-0052-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000003}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000380}, !- Handle + {00000000-0000-0000-0007-000000000003}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000051}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000381}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 29, !- Outlet Port + {00000000-0000-0000-0052-000000000115}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000382}, !- Handle + {00000000-0000-0000-0052-000000000115}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000007}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000383}, !- Handle + {00000000-0000-0000-0018-000000000007}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000116}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000384}, !- Handle + {00000000-0000-0000-0052-000000000116}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 29; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000385}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 30, !- Outlet Port + {00000000-0000-0000-0052-000000000159}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000386}, !- Handle + {00000000-0000-0000-0052-000000000159}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000005}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000387}, !- Handle + {00000000-0000-0000-0019-000000000005}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000160}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000388}, !- Handle + {00000000-0000-0000-0052-000000000160}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 30; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000389}, !- Handle + {00000000-0000-0000-0052-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000390}, !- Handle + {00000000-0000-0000-0058-000000000063}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000028}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000391}, !- Handle + {00000000-0000-0000-0052-000000000028}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000392}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000393}, !- Handle + {00000000-0000-0000-0052-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000394}, !- Handle + {00000000-0000-0000-0007-000000000004}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000053}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000395}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 31, !- Outlet Port + {00000000-0000-0000-0052-000000000117}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000396}, !- Handle + {00000000-0000-0000-0052-000000000117}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000397}, !- Handle + {00000000-0000-0000-0018-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000118}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000398}, !- Handle + {00000000-0000-0000-0052-000000000118}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000399}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0052-000000000161}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000400}, !- Handle + {00000000-0000-0000-0052-000000000161}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000006}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000401}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000162}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000402}, !- Handle + {00000000-0000-0000-0052-000000000162}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 32; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000403}, !- Handle + {00000000-0000-0000-0052-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000404}, !- Handle + {00000000-0000-0000-0058-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000030}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000405}, !- Handle + {00000000-0000-0000-0052-000000000030}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000406}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000054}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000407}, !- Handle + {00000000-0000-0000-0052-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000408}, !- Handle + {00000000-0000-0000-0007-000000000005}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000409}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000307}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000410}, !- Handle + {00000000-0000-0000-0052-000000000308}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000411}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000302}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000412}, !- Handle + {00000000-0000-0000-0052-000000000303}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000413}, !- Handle + {00000000-0000-0000-0052-000000000302}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000414}, !- Handle + {00000000-0000-0000-0004-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000303}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000415}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 33, !- Outlet Port + {00000000-0000-0000-0052-000000000119}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000416}, !- Handle + {00000000-0000-0000-0052-000000000119}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000009}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000417}, !- Handle + {00000000-0000-0000-0018-000000000009}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000121}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000418}, !- Handle + {00000000-0000-0000-0052-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 33; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000419}, !- Handle + {00000000-0000-0000-0022-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000097}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000420}, !- Handle + {00000000-0000-0000-0052-000000000097}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000421}, !- Handle + {00000000-0000-0000-0016-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000099}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000422}, !- Handle + {00000000-0000-0000-0052-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000004}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000423}, !- Handle + {00000000-0000-0000-0052-000000000305}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000424}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000306}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000425}, !- Handle + {00000000-0000-0000-0044-000000000007}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000308}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000426}, !- Handle + {00000000-0000-0000-0018-000000000009}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000120}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000427}, !- Handle + {00000000-0000-0000-0052-000000000120}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000007}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000428}, !- Handle + {00000000-0000-0000-0016-000000000004}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000098}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000429}, !- Handle + {00000000-0000-0000-0052-000000000098}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000009}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000430}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000304}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000431}, !- Handle + {00000000-0000-0000-0052-000000000304}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000432}, !- Handle + {00000000-0000-0000-0052-000000000307}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000433}, !- Handle + {00000000-0000-0000-0044-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000277}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000434}, !- Handle + {00000000-0000-0000-0052-000000000277}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000435}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 34, !- Outlet Port + {00000000-0000-0000-0052-000000000122}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000436}, !- Handle + {00000000-0000-0000-0052-000000000122}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000010}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000437}, !- Handle + {00000000-0000-0000-0018-000000000010}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000123}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000438}, !- Handle + {00000000-0000-0000-0052-000000000123}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 34; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000439}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 35, !- Outlet Port + {00000000-0000-0000-0052-000000000163}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000440}, !- Handle + {00000000-0000-0000-0052-000000000163}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000007}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000441}, !- Handle + {00000000-0000-0000-0019-000000000007}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000164}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000442}, !- Handle + {00000000-0000-0000-0052-000000000164}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 35; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000443}, !- Handle + {00000000-0000-0000-0052-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000444}, !- Handle + {00000000-0000-0000-0058-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000445}, !- Handle + {00000000-0000-0000-0052-000000000040}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000446}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000447}, !- Handle + {00000000-0000-0000-0052-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000006}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000448}, !- Handle + {00000000-0000-0000-0007-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000449}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 36, !- Outlet Port + {00000000-0000-0000-0052-000000000124}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000450}, !- Handle + {00000000-0000-0000-0052-000000000124}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000011}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000451}, !- Handle + {00000000-0000-0000-0018-000000000011}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000125}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000452}, !- Handle + {00000000-0000-0000-0052-000000000125}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 36; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000453}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 37, !- Outlet Port + {00000000-0000-0000-0052-000000000165}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000454}, !- Handle + {00000000-0000-0000-0052-000000000165}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000008}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000455}, !- Handle + {00000000-0000-0000-0019-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000166}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000456}, !- Handle + {00000000-0000-0000-0052-000000000166}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 37; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000457}, !- Handle + {00000000-0000-0000-0052-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000458}, !- Handle + {00000000-0000-0000-0058-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000459}, !- Handle + {00000000-0000-0000-0052-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000460}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000461}, !- Handle + {00000000-0000-0000-0052-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000007}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000462}, !- Handle + {00000000-0000-0000-0007-000000000007}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000463}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 38, !- Outlet Port + {00000000-0000-0000-0052-000000000128}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000464}, !- Handle + {00000000-0000-0000-0052-000000000128}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000013}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000465}, !- Handle + {00000000-0000-0000-0018-000000000013}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000129}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000466}, !- Handle + {00000000-0000-0000-0052-000000000129}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 38; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000467}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 39, !- Outlet Port + {00000000-0000-0000-0052-000000000167}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000468}, !- Handle + {00000000-0000-0000-0052-000000000167}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000009}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000469}, !- Handle + {00000000-0000-0000-0019-000000000009}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000168}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000470}, !- Handle + {00000000-0000-0000-0052-000000000168}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 39; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000471}, !- Handle + {00000000-0000-0000-0052-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000472}, !- Handle + {00000000-0000-0000-0058-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000032}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000473}, !- Handle + {00000000-0000-0000-0052-000000000032}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000474}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000475}, !- Handle + {00000000-0000-0000-0052-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000476}, !- Handle + {00000000-0000-0000-0007-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000477}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 40, !- Outlet Port + {00000000-0000-0000-0052-000000000130}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000478}, !- Handle + {00000000-0000-0000-0052-000000000130}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000014}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000479}, !- Handle + {00000000-0000-0000-0018-000000000014}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000131}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000480}, !- Handle + {00000000-0000-0000-0052-000000000131}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 40; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000481}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 41, !- Outlet Port + {00000000-0000-0000-0052-000000000169}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000482}, !- Handle + {00000000-0000-0000-0052-000000000169}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000010}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000483}, !- Handle + {00000000-0000-0000-0019-000000000010}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000170}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000484}, !- Handle + {00000000-0000-0000-0052-000000000170}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 41; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000485}, !- Handle + {00000000-0000-0000-0052-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000025}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000486}, !- Handle + {00000000-0000-0000-0058-000000000027}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000034}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000487}, !- Handle + {00000000-0000-0000-0052-000000000034}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000488}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000489}, !- Handle + {00000000-0000-0000-0052-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000490}, !- Handle + {00000000-0000-0000-0007-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000491}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 42, !- Outlet Port + {00000000-0000-0000-0052-000000000132}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000492}, !- Handle + {00000000-0000-0000-0052-000000000132}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000015}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000493}, !- Handle + {00000000-0000-0000-0018-000000000015}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000133}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000494}, !- Handle + {00000000-0000-0000-0052-000000000133}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 42; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000495}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 43, !- Outlet Port + {00000000-0000-0000-0052-000000000171}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000496}, !- Handle + {00000000-0000-0000-0052-000000000171}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000011}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000497}, !- Handle + {00000000-0000-0000-0019-000000000011}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000172}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000498}, !- Handle + {00000000-0000-0000-0052-000000000172}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 43; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000499}, !- Handle + {00000000-0000-0000-0052-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000500}, !- Handle + {00000000-0000-0000-0058-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000038}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000501}, !- Handle + {00000000-0000-0000-0052-000000000038}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000502}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000503}, !- Handle + {00000000-0000-0000-0052-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000504}, !- Handle + {00000000-0000-0000-0007-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000065}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000505}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 44, !- Outlet Port + {00000000-0000-0000-0052-000000000134}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000506}, !- Handle + {00000000-0000-0000-0052-000000000134}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000016}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000507}, !- Handle + {00000000-0000-0000-0018-000000000016}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000135}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000508}, !- Handle + {00000000-0000-0000-0052-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 44; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000509}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 45, !- Outlet Port + {00000000-0000-0000-0052-000000000175}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000510}, !- Handle + {00000000-0000-0000-0052-000000000175}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000013}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000511}, !- Handle + {00000000-0000-0000-0019-000000000013}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000176}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000512}, !- Handle + {00000000-0000-0000-0052-000000000176}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 45; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000513}, !- Handle + {00000000-0000-0000-0052-000000000067}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000514}, !- Handle + {00000000-0000-0000-0058-000000000009}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000042}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000515}, !- Handle + {00000000-0000-0000-0052-000000000042}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000516}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000066}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000517}, !- Handle + {00000000-0000-0000-0052-000000000066}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000518}, !- Handle + {00000000-0000-0000-0007-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000067}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000519}, !- Handle + {00000000-0000-0000-0057-000000000004}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0052-000000000219}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000520}, !- Handle + {00000000-0000-0000-0022-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000521}, !- Handle + {00000000-0000-0000-0052-000000000220}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000004}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000522}, !- Handle + {00000000-0000-0000-0057-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000217}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000523}, !- Handle + {00000000-0000-0000-0052-000000000217}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0022-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000524}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000257}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000525}, !- Handle + {00000000-0000-0000-0052-000000000218}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000004}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000526}, !- Handle + {00000000-0000-0000-0052-000000000219}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000527}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000216}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000528}, !- Handle + {00000000-0000-0000-0052-000000000216}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0022-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000529}, !- Handle + {00000000-0000-0000-0052-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000001}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000530}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0052-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000531}, !- Handle + {00000000-0000-0000-0052-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000532}, !- Handle + {00000000-0000-0000-0022-000000000007}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000255}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000533}, !- Handle + {00000000-0000-0000-0052-000000000255}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000534}, !- Handle + {00000000-0000-0000-0056-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000256}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000535}, !- Handle + {00000000-0000-0000-0052-000000000256}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000536}, !- Handle + {00000000-0000-0000-0052-000000000257}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000537}, !- Handle + {00000000-0000-0000-0056-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000258}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000538}, !- Handle + {00000000-0000-0000-0052-000000000258}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000539}, !- Handle + {00000000-0000-0000-0021-000000000007}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000259}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000540}, !- Handle + {00000000-0000-0000-0052-000000000259}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000541}, !- Handle + {00000000-0000-0000-0056-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000220}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000542}, !- Handle + {00000000-0000-0000-0021-000000000008}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000247}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000543}, !- Handle + {00000000-0000-0000-0052-000000000247}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000544}, !- Handle + {00000000-0000-0000-0056-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000218}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000545}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000198}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000546}, !- Handle + {00000000-0000-0000-0052-000000000198}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000547}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000199}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000548}, !- Handle + {00000000-0000-0000-0052-000000000199}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000549}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000200}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000550}, !- Handle + {00000000-0000-0000-0052-000000000200}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000551}, !- Handle + {00000000-0000-0000-0098-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000201}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000552}, !- Handle + {00000000-0000-0000-0052-000000000201}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000553}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000202}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000554}, !- Handle + {00000000-0000-0000-0052-000000000202}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000003}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000555}, !- Handle + {00000000-0000-0000-0098-000000000003}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000203}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000556}, !- Handle + {00000000-0000-0000-0052-000000000203}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000557}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000204}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000558}, !- Handle + {00000000-0000-0000-0052-000000000204}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000559}, !- Handle + {00000000-0000-0000-0098-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000205}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000560}, !- Handle + {00000000-0000-0000-0052-000000000205}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000561}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000206}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000562}, !- Handle + {00000000-0000-0000-0052-000000000206}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000563}, !- Handle + {00000000-0000-0000-0098-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000207}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000564}, !- Handle + {00000000-0000-0000-0052-000000000207}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000565}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000208}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000566}, !- Handle + {00000000-0000-0000-0052-000000000208}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000567}, !- Handle + {00000000-0000-0000-0098-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000209}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000568}, !- Handle + {00000000-0000-0000-0052-000000000209}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000569}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000210}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000570}, !- Handle + {00000000-0000-0000-0052-000000000210}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000571}, !- Handle + {00000000-0000-0000-0098-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000211}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000572}, !- Handle + {00000000-0000-0000-0052-000000000211}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000573}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000221}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000574}, !- Handle + {00000000-0000-0000-0052-000000000221}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000575}, !- Handle + {00000000-0000-0000-0098-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000222}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000576}, !- Handle + {00000000-0000-0000-0052-000000000222}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000577}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000223}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000578}, !- Handle + {00000000-0000-0000-0052-000000000223}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000579}, !- Handle + {00000000-0000-0000-0098-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000224}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000580}, !- Handle + {00000000-0000-0000-0052-000000000224}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000581}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000225}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000582}, !- Handle + {00000000-0000-0000-0052-000000000225}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000583}, !- Handle + {00000000-0000-0000-0098-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000226}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000584}, !- Handle + {00000000-0000-0000-0052-000000000226}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 13; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000585}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0052-000000000227}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000586}, !- Handle + {00000000-0000-0000-0052-000000000227}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000011}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000587}, !- Handle + {00000000-0000-0000-0098-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000228}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000588}, !- Handle + {00000000-0000-0000-0052-000000000228}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000589}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0052-000000000229}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000590}, !- Handle + {00000000-0000-0000-0052-000000000229}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000591}, !- Handle + {00000000-0000-0000-0098-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000230}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000592}, !- Handle + {00000000-0000-0000-0052-000000000230}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000593}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0052-000000000231}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000594}, !- Handle + {00000000-0000-0000-0052-000000000231}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000595}, !- Handle + {00000000-0000-0000-0098-000000000013}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000232}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000596}, !- Handle + {00000000-0000-0000-0052-000000000232}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000597}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000233}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000598}, !- Handle + {00000000-0000-0000-0052-000000000233}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000599}, !- Handle + {00000000-0000-0000-0098-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000234}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000600}, !- Handle + {00000000-0000-0000-0052-000000000234}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000601}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0052-000000000235}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000602}, !- Handle + {00000000-0000-0000-0052-000000000235}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000015}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000603}, !- Handle + {00000000-0000-0000-0098-000000000015}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000236}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000604}, !- Handle + {00000000-0000-0000-0052-000000000236}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000605}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0052-000000000237}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000606}, !- Handle + {00000000-0000-0000-0052-000000000237}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000607}, !- Handle + {00000000-0000-0000-0098-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000238}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000608}, !- Handle + {00000000-0000-0000-0052-000000000238}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000609}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0052-000000000239}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000610}, !- Handle + {00000000-0000-0000-0052-000000000239}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000017}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000611}, !- Handle + {00000000-0000-0000-0098-000000000017}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000240}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000612}, !- Handle + {00000000-0000-0000-0052-000000000240}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000613}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0052-000000000241}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000614}, !- Handle + {00000000-0000-0000-0052-000000000241}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000615}, !- Handle + {00000000-0000-0000-0098-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000242}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000616}, !- Handle + {00000000-0000-0000-0052-000000000242}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000617}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0052-000000000243}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000618}, !- Handle + {00000000-0000-0000-0052-000000000243}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000019}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000619}, !- Handle + {00000000-0000-0000-0098-000000000019}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000244}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000620}, !- Handle + {00000000-0000-0000-0052-000000000244}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 22; !- Inlet Port + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000001}, !- Handle + Connector Mixer 1, !- Name + {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000002}, !- Handle + Connector Mixer 2, !- Name + {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000090}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000159}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000178}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000182}, !- Inlet Branch Name 4 + {00000000-0000-0000-0020-000000000198}, !- Inlet Branch Name 5 + {00000000-0000-0000-0020-000000000218}, !- Inlet Branch Name 6 + {00000000-0000-0000-0020-000000000222}, !- Inlet Branch Name 7 + {00000000-0000-0000-0020-000000000232}, !- Inlet Branch Name 8 + {00000000-0000-0000-0020-000000000236}, !- Inlet Branch Name 9 + {00000000-0000-0000-0020-000000000246}, !- Inlet Branch Name 10 + {00000000-0000-0000-0020-000000000250}, !- Inlet Branch Name 11 + {00000000-0000-0000-0020-000000000260}, !- Inlet Branch Name 12 + {00000000-0000-0000-0020-000000000264}, !- Inlet Branch Name 13 + {00000000-0000-0000-0020-000000000274}, !- Inlet Branch Name 14 + {00000000-0000-0000-0020-000000000278}, !- Inlet Branch Name 15 + {00000000-0000-0000-0020-000000000288}, !- Inlet Branch Name 16 + {00000000-0000-0000-0020-000000000292}, !- Inlet Branch Name 17 + {00000000-0000-0000-0020-000000000308}, !- Inlet Branch Name 18 + {00000000-0000-0000-0020-000000000328}, !- Inlet Branch Name 19 + {00000000-0000-0000-0020-000000000332}, !- Inlet Branch Name 20 + {00000000-0000-0000-0020-000000000342}, !- Inlet Branch Name 21 + {00000000-0000-0000-0020-000000000346}, !- Inlet Branch Name 22 + {00000000-0000-0000-0020-000000000356}, !- Inlet Branch Name 23 + {00000000-0000-0000-0020-000000000360}, !- Inlet Branch Name 24 + {00000000-0000-0000-0020-000000000370}, !- Inlet Branch Name 25 + {00000000-0000-0000-0020-000000000374}, !- Inlet Branch Name 26 + {00000000-0000-0000-0020-000000000384}, !- Inlet Branch Name 27 + {00000000-0000-0000-0020-000000000388}, !- Inlet Branch Name 28 + {00000000-0000-0000-0020-000000000398}, !- Inlet Branch Name 29 + {00000000-0000-0000-0020-000000000402}, !- Inlet Branch Name 30 + {00000000-0000-0000-0020-000000000418}, !- Inlet Branch Name 31 + {00000000-0000-0000-0020-000000000438}, !- Inlet Branch Name 32 + {00000000-0000-0000-0020-000000000442}, !- Inlet Branch Name 33 + {00000000-0000-0000-0020-000000000452}, !- Inlet Branch Name 34 + {00000000-0000-0000-0020-000000000456}, !- Inlet Branch Name 35 + {00000000-0000-0000-0020-000000000466}, !- Inlet Branch Name 36 + {00000000-0000-0000-0020-000000000470}, !- Inlet Branch Name 37 + {00000000-0000-0000-0020-000000000480}, !- Inlet Branch Name 38 + {00000000-0000-0000-0020-000000000484}, !- Inlet Branch Name 39 + {00000000-0000-0000-0020-000000000494}, !- Inlet Branch Name 40 + {00000000-0000-0000-0020-000000000498}, !- Inlet Branch Name 41 + {00000000-0000-0000-0020-000000000508}, !- Inlet Branch Name 42 + {00000000-0000-0000-0020-000000000512}; !- Inlet Branch Name 43 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000003}, !- Handle + Connector Mixer 3, !- Name + {00000000-0000-0000-0020-000000000119}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000110}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000114}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000118}; !- Inlet Branch Name 3 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000004}, !- Handle + Connector Mixer 4, !- Name + {00000000-0000-0000-0020-000000000103}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000162}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000202}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000312}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000422}; !- Inlet Branch Name 4 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000005}, !- Handle + Connector Mixer 5, !- Name + {00000000-0000-0000-0020-000000000140}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000135}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000139}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000006}, !- Handle + Connector Mixer 6, !- Name + {00000000-0000-0000-0020-000000000128}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000145}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000149}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000007}, !- Handle + Connector Mixer 7, !- Name + {00000000-0000-0000-0020-000000000539}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000531}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000535}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000008}, !- Handle + Connector Mixer 8, !- Name + {00000000-0000-0000-0020-000000000542}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000538}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000548}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000552}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000556}, !- Inlet Branch Name 4 + {00000000-0000-0000-0020-000000000560}, !- Inlet Branch Name 5 + {00000000-0000-0000-0020-000000000564}, !- Inlet Branch Name 6 + {00000000-0000-0000-0020-000000000568}, !- Inlet Branch Name 7 + {00000000-0000-0000-0020-000000000572}, !- Inlet Branch Name 8 + {00000000-0000-0000-0020-000000000576}, !- Inlet Branch Name 9 + {00000000-0000-0000-0020-000000000580}, !- Inlet Branch Name 10 + {00000000-0000-0000-0020-000000000584}, !- Inlet Branch Name 11 + {00000000-0000-0000-0020-000000000588}, !- Inlet Branch Name 12 + {00000000-0000-0000-0020-000000000592}, !- Inlet Branch Name 13 + {00000000-0000-0000-0020-000000000596}, !- Inlet Branch Name 14 + {00000000-0000-0000-0020-000000000600}, !- Inlet Branch Name 15 + {00000000-0000-0000-0020-000000000604}, !- Inlet Branch Name 16 + {00000000-0000-0000-0020-000000000608}, !- Inlet Branch Name 17 + {00000000-0000-0000-0020-000000000612}, !- Inlet Branch Name 18 + {00000000-0000-0000-0020-000000000616}, !- Inlet Branch Name 19 + {00000000-0000-0000-0020-000000000620}; !- Inlet Branch Name 20 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000001}, !- Handle + Connector Splitter 1, !- Name + {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000002}, !- Handle + Connector Splitter 2, !- Name + {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000156}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000175}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000179}, !- Outlet Branch Name 4 + {00000000-0000-0000-0020-000000000195}, !- Outlet Branch Name 5 + {00000000-0000-0000-0020-000000000215}, !- Outlet Branch Name 6 + {00000000-0000-0000-0020-000000000219}, !- Outlet Branch Name 7 + {00000000-0000-0000-0020-000000000229}, !- Outlet Branch Name 8 + {00000000-0000-0000-0020-000000000233}, !- Outlet Branch Name 9 + {00000000-0000-0000-0020-000000000243}, !- Outlet Branch Name 10 + {00000000-0000-0000-0020-000000000247}, !- Outlet Branch Name 11 + {00000000-0000-0000-0020-000000000257}, !- Outlet Branch Name 12 + {00000000-0000-0000-0020-000000000261}, !- Outlet Branch Name 13 + {00000000-0000-0000-0020-000000000271}, !- Outlet Branch Name 14 + {00000000-0000-0000-0020-000000000275}, !- Outlet Branch Name 15 + {00000000-0000-0000-0020-000000000285}, !- Outlet Branch Name 16 + {00000000-0000-0000-0020-000000000289}, !- Outlet Branch Name 17 + {00000000-0000-0000-0020-000000000305}, !- Outlet Branch Name 18 + {00000000-0000-0000-0020-000000000325}, !- Outlet Branch Name 19 + {00000000-0000-0000-0020-000000000329}, !- Outlet Branch Name 20 + {00000000-0000-0000-0020-000000000339}, !- Outlet Branch Name 21 + {00000000-0000-0000-0020-000000000343}, !- Outlet Branch Name 22 + {00000000-0000-0000-0020-000000000353}, !- Outlet Branch Name 23 + {00000000-0000-0000-0020-000000000357}, !- Outlet Branch Name 24 + {00000000-0000-0000-0020-000000000367}, !- Outlet Branch Name 25 + {00000000-0000-0000-0020-000000000371}, !- Outlet Branch Name 26 + {00000000-0000-0000-0020-000000000381}, !- Outlet Branch Name 27 + {00000000-0000-0000-0020-000000000385}, !- Outlet Branch Name 28 + {00000000-0000-0000-0020-000000000395}, !- Outlet Branch Name 29 + {00000000-0000-0000-0020-000000000399}, !- Outlet Branch Name 30 + {00000000-0000-0000-0020-000000000415}, !- Outlet Branch Name 31 + {00000000-0000-0000-0020-000000000435}, !- Outlet Branch Name 32 + {00000000-0000-0000-0020-000000000439}, !- Outlet Branch Name 33 + {00000000-0000-0000-0020-000000000449}, !- Outlet Branch Name 34 + {00000000-0000-0000-0020-000000000453}, !- Outlet Branch Name 35 + {00000000-0000-0000-0020-000000000463}, !- Outlet Branch Name 36 + {00000000-0000-0000-0020-000000000467}, !- Outlet Branch Name 37 + {00000000-0000-0000-0020-000000000477}, !- Outlet Branch Name 38 + {00000000-0000-0000-0020-000000000481}, !- Outlet Branch Name 39 + {00000000-0000-0000-0020-000000000491}, !- Outlet Branch Name 40 + {00000000-0000-0000-0020-000000000495}, !- Outlet Branch Name 41 + {00000000-0000-0000-0020-000000000505}, !- Outlet Branch Name 42 + {00000000-0000-0000-0020-000000000509}; !- Outlet Branch Name 43 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000003}, !- Handle + Connector Splitter 3, !- Name + {00000000-0000-0000-0020-000000000107}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000098}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000111}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000115}; !- Outlet Branch Name 3 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000004}, !- Handle + Connector Splitter 4, !- Name + {00000000-0000-0000-0020-000000000101}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000102}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000199}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000309}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000419}; !- Outlet Branch Name 4 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000005}, !- Handle + Connector Splitter 5, !- Name + {00000000-0000-0000-0020-000000000132}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000123}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000136}; !- Outlet Branch Name 2 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000006}, !- Handle + Connector Splitter 6, !- Name + {00000000-0000-0000-0020-000000000126}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000127}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000146}; !- Outlet Branch Name 2 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000007}, !- Handle + Connector Splitter 7, !- Name + {00000000-0000-0000-0020-000000000528}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000520}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000532}; !- Outlet Branch Name 2 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000008}, !- Handle + Connector Splitter 8, !- Name + {00000000-0000-0000-0020-000000000523}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000524}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000545}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000549}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000553}, !- Outlet Branch Name 4 + {00000000-0000-0000-0020-000000000557}, !- Outlet Branch Name 5 + {00000000-0000-0000-0020-000000000561}, !- Outlet Branch Name 6 + {00000000-0000-0000-0020-000000000565}, !- Outlet Branch Name 7 + {00000000-0000-0000-0020-000000000569}, !- Outlet Branch Name 8 + {00000000-0000-0000-0020-000000000573}, !- Outlet Branch Name 9 + {00000000-0000-0000-0020-000000000577}, !- Outlet Branch Name 10 + {00000000-0000-0000-0020-000000000581}, !- Outlet Branch Name 11 + {00000000-0000-0000-0020-000000000585}, !- Outlet Branch Name 12 + {00000000-0000-0000-0020-000000000589}, !- Outlet Branch Name 13 + {00000000-0000-0000-0020-000000000593}, !- Outlet Branch Name 14 + {00000000-0000-0000-0020-000000000597}, !- Outlet Branch Name 15 + {00000000-0000-0000-0020-000000000601}, !- Outlet Branch Name 16 + {00000000-0000-0000-0020-000000000605}, !- Outlet Branch Name 17 + {00000000-0000-0000-0020-000000000609}, !- Outlet Branch Name 18 + {00000000-0000-0000-0020-000000000613}, !- Outlet Branch Name 19 + {00000000-0000-0000-0020-000000000617}; !- Outlet Branch Name 20 + +OS:Construction, + {00000000-0000-0000-0023-000000000001}, !- Handle + BTAP-Ext-DaylightDiffuser, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000002}, !- Handle + BTAP-Ext-DaylightDiffuser:U=0.220 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000003}, !- Handle + BTAP-Ext-DaylightDomes, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000004}, !- Handle + BTAP-Ext-DaylightDomes:U=0.220 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000005}, !- Handle + BTAP-Ext-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000018}, !- Layer 1 + {00000000-0000-0000-0050-000000000013}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000006}, !- Handle + BTAP-Ext-Door:U-2.2, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000017}, !- Layer 1 + {00000000-0000-0000-0050-000000000011}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000007}, !- Handle + BTAP-Ext-FixedWindow, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000008}, !- Handle + BTAP-Ext-FixedWindow:U=0.220 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000009}, !- Handle + BTAP-Ext-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000013}, !- Layer 1 + {00000000-0000-0000-0049-000000000008}, !- Layer 2 + {00000000-0000-0000-0050-000000000007}; !- Layer 3 + +OS:Construction, + {00000000-0000-0000-0023-000000000010}, !- Handle + BTAP-Ext-Floor-Mass:U-0.162, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000008}, !- Layer 1 + {00000000-0000-0000-0049-000000000007}, !- Layer 2 + {00000000-0000-0000-0050-000000000003}; !- Layer 3 + +OS:Construction, + {00000000-0000-0000-0023-000000000011}, !- Handle + BTAP-Ext-GlassDoors, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000012}, !- Handle + BTAP-Ext-GlassDoors:U=0.220 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000013}, !- Handle + BTAP-Ext-OverHeadDoor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000013}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000014}, !- Handle + BTAP-Ext-OverHeadDoor:U-2.2, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000012}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000015}, !- Handle + BTAP-Ext-Roof-Metal, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000024}, !- Layer 1 + {00000000-0000-0000-0050-000000000013}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000016}, !- Handle + BTAP-Ext-Roof-Metal:U-0.162, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000023}, !- Layer 1 + {00000000-0000-0000-0050-000000000010}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000017}, !- Handle + BTAP-Ext-Skylights, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000018}, !- Handle + BTAP-Ext-Skylights:U=0.220 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000019}, !- Handle + BTAP-Ext-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000006}, !- Layer 1 + {00000000-0000-0000-0049-000000000014}, !- Layer 2 + {00000000-0000-0000-0050-000000000013}, !- Layer 3 + {00000000-0000-0000-0049-000000000002}; !- Layer 4 + +OS:Construction, + {00000000-0000-0000-0023-000000000020}, !- Handle + BTAP-Ext-Wall-Mass:U-0.21, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000005}, !- Layer 1 + {00000000-0000-0000-0049-000000000013}, !- Layer 2 + {00000000-0000-0000-0050-000000000009}, !- Layer 3 + {00000000-0000-0000-0049-000000000001}; !- Layer 4 + +OS:Construction, + {00000000-0000-0000-0023-000000000021}, !- Handle + BTAP-Grnd-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000012}, !- Layer 1 + {00000000-0000-0000-0050-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000022}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000009}, !- Layer 1 + {00000000-0000-0000-0050-000000000004}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000023}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000009}, !- Layer 1 + {00000000-0000-0000-0049-000000000016}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000024}, !- Handle + BTAP-Grnd-Roof-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000012}, !- Layer 1 + {00000000-0000-0000-0050-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000025}, !- Handle + BTAP-Grnd-Roof-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000011}, !- Layer 1 + {00000000-0000-0000-0050-000000000006}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000026}, !- Handle + BTAP-Grnd-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000012}, !- Layer 1 + {00000000-0000-0000-0050-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000027}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000010}, !- Layer 1 + {00000000-0000-0000-0050-000000000005}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000028}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000010}, !- Layer 1 + {00000000-0000-0000-0049-000000000015}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000029}, !- Handle + BTAP-Int-Ceiling, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000007}, !- Layer 1 + {00000000-0000-0000-0049-000000000003}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000030}, !- Handle + BTAP-Int-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000021}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000031}, !- Handle + BTAP-Int-Floor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000003}, !- Layer 1 + {00000000-0000-0000-0050-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000032}, !- Handle + BTAP-Int-Partition, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000021}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000033}, !- Handle + BTAP-Int-Wall, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000019}, !- Layer 1 + {00000000-0000-0000-0049-000000000019}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000034}, !- Handle + BTAP-Int-Window, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0102-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000035}, !- Handle + Basement Floor construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000022}, !- Layer 1 + {00000000-0000-0000-0050-000000000001}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000036}, !- Handle + Basement Wall construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000022}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000037}, !- Handle + Floor Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000001}, !- Layer 1 + {00000000-0000-0000-0049-000000000004}, !- Layer 2 + {00000000-0000-0000-0050-000000000002}; !- Layer 3 + +OS:Construction, + {00000000-0000-0000-0023-000000000038}, !- Handle + Wall Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0049-000000000020}, !- Layer 1 + {00000000-0000-0000-0049-000000000020}; !- Layer 2 + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000004}, !- Handle + Controller Mechanical Ventilation 4, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000005}, !- Handle + Controller Mechanical Ventilation 5, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0065-000000000026}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0065-000000000030}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0065-000000000027}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000004}, !- Handle + Controller Outdoor Air 4, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0065-000000000028}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000004}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000005}, !- Handle + Controller Outdoor Air 5, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0065-000000000029}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000005}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000001}, !- Handle + Controller Water Coil 1, !- Name + {00000000-0000-0000-0018-000000000001}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000002}, !- Handle + Controller Water Coil 10, !- Name + {00000000-0000-0000-0018-000000000022}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000003}, !- Handle + Controller Water Coil 11, !- Name + {00000000-0000-0000-0018-000000000023}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000004}, !- Handle + Controller Water Coil 12, !- Name {00000000-0000-0000-0018-000000000002}, !- Water Coil Name , !- Control Variable Normal, !- Action @@ -3073,1974 +6905,3656 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} -OS:CoolingTower:SingleSpeed, - {00000000-0000-0000-0027-000000000001}, !- Handle - Cooling Tower Single Speed 1, !- Name - {00000000-0000-0000-0020-000000000133}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000134}, !- Water Outlet Node Name - autosize, !- Design Water Flow Rate {m3/s} - autosize, !- Design Air Flow Rate {m3/s} - 345.351269475612, !- Fan Power at Design Air Flow Rate {W} - autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} - autosize, !- Air Flow Rate in Free Convection Regime {m3/s} - autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} - UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method - , !- Nominal Capacity {W} - 0, !- Free Convection Capacity {W} - 0, !- Basin Heater Capacity {W/K} - 2, !- Basin Heater Setpoint Temperature {C} - , !- Basin Heater Operating Schedule Name - LossFactor, !- Evaporation Loss Mode - 0.2, !- Evaporation Loss Factor {percent/K} - 0.008, !- Drift Loss Percent {percent} - ConcentrationRatio, !- Blowdown Calculation Mode - 3, !- Blowdown Concentration Ratio - , !- Blowdown Makeup Water Usage Schedule Name - , !- Outdoor Air Inlet Node Name - FanCycling, !- Capacity Control - 1, !- Number of Cells - MinimalCell, !- Cell Control - 0.33, !- Cell Minimum Water Flow Rate Fraction - 2.5, !- Cell Maximum Water Flow Rate Fraction - 1, !- Sizing Factor - 0.1, !- Free Convection Air Flow Rate Sizing Factor - 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor - 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio - 0.1, !- Free Convection Nominal Capacity Sizing Factor - 35, !- Design Inlet Air Dry-Bulb Temperature {C} - 24, !- Design Inlet Air Wet-Bulb Temperature {C} - 5, !- Design Approach Temperature {deltaC} - 6, !- Design Range Temperature {deltaC} - General; !- End-Use Subcategory +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000005}, !- Handle + Controller Water Coil 13, !- Name + {00000000-0000-0000-0016-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000006}, !- Handle + Controller Water Coil 14, !- Name + {00000000-0000-0000-0018-000000000003}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000007}, !- Handle + Controller Water Coil 15, !- Name + {00000000-0000-0000-0018-000000000004}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000008}, !- Handle + Controller Water Coil 16, !- Name + {00000000-0000-0000-0018-000000000005}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000009}, !- Handle + Controller Water Coil 17, !- Name + {00000000-0000-0000-0018-000000000006}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000010}, !- Handle + Controller Water Coil 18, !- Name + {00000000-0000-0000-0018-000000000007}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000011}, !- Handle + Controller Water Coil 19, !- Name + {00000000-0000-0000-0018-000000000008}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000012}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0016-000000000001}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000013}, !- Handle + Controller Water Coil 20, !- Name + {00000000-0000-0000-0018-000000000009}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000014}, !- Handle + Controller Water Coil 21, !- Name + {00000000-0000-0000-0016-000000000004}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000015}, !- Handle + Controller Water Coil 22, !- Name + {00000000-0000-0000-0018-000000000010}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000016}, !- Handle + Controller Water Coil 23, !- Name + {00000000-0000-0000-0018-000000000011}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000017}, !- Handle + Controller Water Coil 24, !- Name + {00000000-0000-0000-0018-000000000013}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000018}, !- Handle + Controller Water Coil 25, !- Name + {00000000-0000-0000-0018-000000000014}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000019}, !- Handle + Controller Water Coil 26, !- Name + {00000000-0000-0000-0018-000000000015}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000020}, !- Handle + Controller Water Coil 27, !- Name + {00000000-0000-0000-0018-000000000016}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000021}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0018-000000000012}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000022}, !- Handle + Controller Water Coil 4, !- Name + {00000000-0000-0000-0018-000000000017}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000023}, !- Handle + Controller Water Coil 5, !- Name + {00000000-0000-0000-0016-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000024}, !- Handle + Controller Water Coil 6, !- Name + {00000000-0000-0000-0018-000000000018}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000025}, !- Handle + Controller Water Coil 7, !- Name + {00000000-0000-0000-0018-000000000019}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000026}, !- Handle + Controller Water Coil 8, !- Name + {00000000-0000-0000-0018-000000000020}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000027}, !- Handle + Controller Water Coil 9, !- Name + {00000000-0000-0000-0018-000000000021}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:CoolingTower:SingleSpeed, + {00000000-0000-0000-0027-000000000001}, !- Handle + Cooling Tower Single Speed 1, !- Name + {00000000-0000-0000-0020-000000000133}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000134}, !- Water Outlet Node Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + 36673.2686653161, !- Fan Power at Design Air Flow Rate {W} + autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} + autosize, !- Air Flow Rate in Free Convection Regime {m3/s} + autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + , !- Nominal Capacity {W} + 0, !- Free Convection Capacity {W} + 0, !- Basin Heater Capacity {W/K} + 2, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + LossFactor, !- Evaporation Loss Mode + 0.2, !- Evaporation Loss Factor {percent/K} + 0.008, !- Drift Loss Percent {percent} + ConcentrationRatio, !- Blowdown Calculation Mode + 3, !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Outdoor Air Inlet Node Name + FanCycling, !- Capacity Control + 2, !- Number of Cells + MinimalCell, !- Cell Control + 0.33, !- Cell Minimum Water Flow Rate Fraction + 2.5, !- Cell Maximum Water Flow Rate Fraction + 1, !- Sizing Factor + 0.1, !- Free Convection Air Flow Rate Sizing Factor + 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor + 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + 0.1, !- Free Convection Nominal Capacity Sizing Factor + 35, !- Design Inlet Air Dry-Bulb Temperature {C} + 24, !- Design Inlet Air Wet-Bulb Temperature {C} + 5, !- Design Approach Temperature {deltaC} + 6, !- Design Range Temperature {deltaC} + General; !- End-Use Subcategory + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000001}, !- Handle + Curve Biquadratic 1, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.000554364, !- Coefficient3 x**2 + -0.00755748, !- Coefficient4 y + 3.3048e-05, !- Coefficient5 y**2 + -0.000191808, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000002}, !- Handle + Curve Biquadratic 2, !- Name + 0.116936, !- Coefficient1 Constant + 0.0284933, !- Coefficient2 x + -0.000411156, !- Coefficient3 x**2 + 0.0214108, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000003}, !- Handle + Curve Biquadratic 3, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000004}, !- Handle + Curve Biquadratic 4, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000005}, !- Handle + Curve Biquadratic 5, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000006}, !- Handle + Curve Biquadratic 6, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000007}, !- Handle + DXCOOL-NECB2011-REF-CAPFT, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.00055436, !- Coefficient3 x**2 + -0.0075575, !- Coefficient4 y + 3.3e-05, !- Coefficient5 y**2 + -0.0001918, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000008}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFT, !- Name + 0.1141714, !- Coefficient1 Constant + 0.02818224, !- Coefficient2 x + -0.0004199, !- Coefficient3 x**2 + 0.02141082, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000009}, !- Handle + WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name + 0.707908, !- Coefficient1 Constant + -0.00200657, !- Coefficient2 x + -0.00259605, !- Coefficient3 x**2 + 0.0300588, !- Coefficient4 y + -0.00105643, !- Coefficient5 y**2 + 0.0020457, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000010}, !- Handle + WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name + 0.560523, !- Coefficient1 Constant + -0.0137816, !- Coefficient2 x + 6.56424e-05, !- Coefficient3 x**2 + 0.0132194, !- Coefficient4 y + 0.000268596, !- Coefficient5 y**2 + -0.000501131, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000011}, !- Handle + WaterCooled_Scroll_CAPFT_NECB2011, !- Name + 0.94418, !- Coefficient1 Constant + 0.0337102, !- Coefficient2 x + 9.75564e-05, !- Coefficient3 x**2 + -0.00322114, !- Coefficient4 y + -4.91832e-05, !- Coefficient5 y**2 + -0.000177584, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000012}, !- Handle + WaterCooled_Scroll_EIRFT_NECB2011, !- Name + 0.727393, !- Coefficient1 Constant + -0.0118922, !- Coefficient2 x + 0.000541177, !- Coefficient3 x**2 + 0.00187934, !- Coefficient4 y + 0.000473461, !- Coefficient5 y**2 + -0.000711472, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000001}, !- Handle + BOILER-EFFFPLR-NECB2011, !- Name + 0.3831, !- Coefficient1 Constant + 2.0567, !- Coefficient2 x + -2.6469, !- Coefficient3 x**2 + 1.2148, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000002}, !- Handle + Curve Cubic 1, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000003}, !- Handle + DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000004}, !- Handle + FURNACE-EFFPLR-NECB2011, !- Name + 0.722, !- Coefficient1 Constant + 0.8211, !- Coefficient2 x + -1.0396, !- Coefficient3 x**2 + 0.5, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000005}, !- Handle + SWH-EFFFPLR-NECB2011, !- Name + 0.7576, !- Coefficient1 Constant + 1.0071, !- Coefficient2 x + -1.4443, !- Coefficient3 x**2 + 0.6844, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000006}, !- Handle + VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name + -2.4176, !- Coefficient1 Constant + 9.5874, !- Coefficient2 x + -11.559, !- Coefficient3 x**2 + 5.4009, !- Coefficient4 x**3 + 0.68, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000007}, !- Handle + VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name + -4.1457, !- Coefficient1 Constant + 16.803, !- Coefficient2 x + -19.471, !- Coefficient3 x**2 + 7.8488, !- Coefficient4 x**3 + 0.5, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000008}, !- Handle + VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name + -0.3477, !- Coefficient1 Constant + 4.0976, !- Coefficient2 x + -5.0024, !- Coefficient3 x**2 + 2.268, !- Coefficient4 x**3 + 0.22, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000001}, !- Handle + Curve Quadratic 1, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000002}, !- Handle + Curve Quadratic 2, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000003}, !- Handle + Curve Quadratic 3, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000004}, !- Handle + Curve Quadratic 4, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000005}, !- Handle + DXCOOL-NECB2011-REF-CAPFFLOW, !- Name + 0.8, !- Coefficient1 Constant + 0.2, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000006}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name + 1.1552, !- Coefficient1 Constant + -0.1808, !- Coefficient2 x + 0.0256, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000007}, !- Handle + WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name + 0.171493, !- Coefficient1 Constant + 0.588202, !- Coefficient2 x + 0.237373, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000008}, !- Handle + WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name + 0.04412, !- Coefficient1 Constant + 0.640367, !- Coefficient2 x + 0.319555, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:DefaultConstructionSet, + {00000000-0000-0000-0031-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name + {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name + {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name + {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name + {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name + {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000001}, !- Handle + Space Function - undefined - Schedule Set, !- 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 + {00000000-0000-0000-0065-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000002}, !- Handle + Space Function Electrical/Mechanical-sch-A Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0065-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0065-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0065-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0065-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0065-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000003}, !- Handle + Space Function Office - open plan Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0065-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0065-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0065-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0065-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0065-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000006}, !- Door Construction Name + {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000002}, !- Handle + Default Sub Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000030}, !- 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:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000003}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000005}, !- Door Construction Name + {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000002}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000003}, !- Handle + Default Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000004}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000005}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name + +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000001}, !- Handle + Space Function - undefined - Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000002}, !- Handle + Space Function Electrical/Mechanical-sch-A 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:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000003}, !- Handle + Space Function Office - open plan Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.0142091703329032, !- 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:ElectricEquipment, + {00000000-0000-0000-0036-000000000001}, !- Handle + Space Function Electrical/Mechanical-sch-A Elec Equip, !- Name + {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name + {00000000-0000-0000-0084-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:ElectricEquipment, + {00000000-0000-0000-0036-000000000002}, !- Handle + Space Function Office - open plan Elec Equip, !- Name + {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name + {00000000-0000-0000-0084-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000001}, !- Handle + Space Function Electrical/Mechanical-sch-A Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 0.999991679497248, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant + +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000002}, !- Handle + Space Function Office - open plan Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.49993758008349, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name + {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name + {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000005}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_ClgSch0, !- Name + {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000006}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_HtgSch0, !- Name + {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0039-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {7acc9e53-e414-4e64-9e64-2aa96657f76e}<23.9 && {7acc9e53-e414-4e64-9e64-2aa96657f76e}>1.7, !- Program Line 1 + SET {a3411990-0fc8-47c8-95e9-31632c356ea1} = 29.4, !- Program Line 2 + SET {b7ce1034-66cd-414c-8d65-83e46d4db2c1} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {7acc9e53-e414-4e64-9e64-2aa96657f76e}<23.9 && {7acc9e53-e414-4e64-9e64-2aa96657f76e}>1.7, !- Program Line 4 + SET {a3411990-0fc8-47c8-95e9-31632c356ea1} = 29.4, !- Program Line 5 + SET {b7ce1034-66cd-414c-8d65-83e46d4db2c1} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {7acc9e53-e414-4e64-9e64-2aa96657f76e}<23.9 && {7acc9e53-e414-4e64-9e64-2aa96657f76e}>1.7, !- Program Line 7 + SET {a3411990-0fc8-47c8-95e9-31632c356ea1} = 29.4, !- Program Line 8 + SET {b7ce1034-66cd-414c-8d65-83e46d4db2c1} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {7acc9e53-e414-4e64-9e64-2aa96657f76e}<23.9 && {7acc9e53-e414-4e64-9e64-2aa96657f76e}>1.7, !- Program Line 10 + SET {a3411990-0fc8-47c8-95e9-31632c356ea1} = 29.4, !- Program Line 11 + SET {b7ce1034-66cd-414c-8d65-83e46d4db2c1} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {a3411990-0fc8-47c8-95e9-31632c356ea1} = NULL, !- Program Line 14 + SET {b7ce1034-66cd-414c-8d65-83e46d4db2c1} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0039-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9ee2481b-efa8-4ce7-b6d7-59971a725c04}<23.9 && {9ee2481b-efa8-4ce7-b6d7-59971a725c04}>1.7, !- Program Line 1 + SET {0222a5ed-a03c-4a47-a609-e935e75b7987} = 29.4, !- Program Line 2 + SET {01dc333c-ceec-4911-8865-20ca51435ee3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9ee2481b-efa8-4ce7-b6d7-59971a725c04}<23.9 && {9ee2481b-efa8-4ce7-b6d7-59971a725c04}>1.7, !- Program Line 4 + SET {0222a5ed-a03c-4a47-a609-e935e75b7987} = 29.4, !- Program Line 5 + SET {01dc333c-ceec-4911-8865-20ca51435ee3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9ee2481b-efa8-4ce7-b6d7-59971a725c04}<23.9 && {9ee2481b-efa8-4ce7-b6d7-59971a725c04}>1.7, !- Program Line 7 + SET {0222a5ed-a03c-4a47-a609-e935e75b7987} = 29.4, !- Program Line 8 + SET {01dc333c-ceec-4911-8865-20ca51435ee3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9ee2481b-efa8-4ce7-b6d7-59971a725c04}<23.9 && {9ee2481b-efa8-4ce7-b6d7-59971a725c04}>1.7, !- Program Line 10 + SET {0222a5ed-a03c-4a47-a609-e935e75b7987} = 29.4, !- Program Line 11 + SET {01dc333c-ceec-4911-8865-20ca51435ee3} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {0222a5ed-a03c-4a47-a609-e935e75b7987} = NULL, !- Program Line 14 + SET {01dc333c-ceec-4911-8865-20ca51435ee3} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0039-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f72e5e64-c358-4f6f-b515-2c7ae895ed18}<23.9 && {f72e5e64-c358-4f6f-b515-2c7ae895ed18}>1.7, !- Program Line 1 + SET {6653b10b-da85-4bfe-abc3-878bca5c3961} = 29.4, !- Program Line 2 + SET {f53acda8-f086-4b9b-8e40-d31456c9319e} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f72e5e64-c358-4f6f-b515-2c7ae895ed18}<23.9 && {f72e5e64-c358-4f6f-b515-2c7ae895ed18}>1.7, !- Program Line 4 + SET {6653b10b-da85-4bfe-abc3-878bca5c3961} = 29.4, !- Program Line 5 + SET {f53acda8-f086-4b9b-8e40-d31456c9319e} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f72e5e64-c358-4f6f-b515-2c7ae895ed18}<23.9 && {f72e5e64-c358-4f6f-b515-2c7ae895ed18}>1.7, !- Program Line 7 + SET {6653b10b-da85-4bfe-abc3-878bca5c3961} = 29.4, !- Program Line 8 + SET {f53acda8-f086-4b9b-8e40-d31456c9319e} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f72e5e64-c358-4f6f-b515-2c7ae895ed18}<23.9 && {f72e5e64-c358-4f6f-b515-2c7ae895ed18}>1.7, !- Program Line 10 + SET {6653b10b-da85-4bfe-abc3-878bca5c3961} = 29.4, !- Program Line 11 + SET {f53acda8-f086-4b9b-8e40-d31456c9319e} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {6653b10b-da85-4bfe-abc3-878bca5c3961} = NULL, !- Program Line 14 + SET {f53acda8-f086-4b9b-8e40-d31456c9319e} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0040-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0039-000000000001}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0040-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0039-000000000002}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0040-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0039-000000000003}; !- Program Name 1 + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0041-000000000001}, !- Handle + OAT, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0041-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0041-000000000003}, !- Handle + OAT_2, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:Facility, + {00000000-0000-0000-0042-000000000001}; !- Handle + +OS:Fan:ConstantVolume, + {00000000-0000-0000-0043-000000000001}, !- Handle + Fan Constant Volume 1, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.39975, !- Fan Total Efficiency + 640, !- Pressure Rise {Pa} + AutoSize, !- Maximum Flow Rate {m3/s} + 0.615, !- Motor Efficiency + , !- Motor In Airstream Fraction + {00000000-0000-0000-0020-000000000082}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000080}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000212}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000213}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000322}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000323}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000003}, !- Handle + Sys6 Return Fan 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000432}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000433}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000004}, !- Handle + Sys6 Return Fan, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000172}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000173}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000005}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000207}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000205}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000006}, !- Handle + Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000317}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000315}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000007}, !- Handle + Sys6 Supply Fan 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000427}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000425}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000008}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000167}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000165}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Foundation:Kiva, + {00000000-0000-0000-0045-000000000001}, !- Handle + Bldg Kiva Foundation, !- Name + , !- Initial Indoor Air Temperature {C} + , !- Interior Horizontal Insulation Material Name + , !- Interior Horizontal Insulation Depth {m} + , !- Interior Horizontal Insulation Width {m} + , !- Interior Vertical Insulation Material Name + , !- Interior Vertical Insulation Depth {m} + , !- Exterior Horizontal Insulation Material Name + , !- Exterior Horizontal Insulation Depth {m} + , !- Exterior Horizontal Insulation Width {m} + , !- Exterior Vertical Insulation Material Name + , !- Exterior Vertical Insulation Depth {m} + 0, !- Wall Height Above Grade {m} + 0, !- Wall Depth Below Slab {m} + , !- Footing Wall Construction Name + , !- Footing Material Name + ; !- Footing Depth {m} + +OS:Foundation:Kiva:Settings, + {00000000-0000-0000-0046-000000000001}, !- Handle + , !- Soil Conductivity {W/m-K} + , !- Soil Density {kg/m3} + , !- Soil Specific Heat {J/kg-K} + , !- Ground Solar Absorptivity {dimensionless} + , !- Ground Thermal Absorptivity {dimensionless} + , !- Ground Surface Roughness {m} + , !- Far-Field Width {m} + , !- Deep-Ground Boundary Condition + , !- Deep-Ground Depth {m} + , !- Minimum Cell Dimension {m} + , !- Maximum Cell Growth Coefficient {dimensionless} + ; !- Simulation Timestep + +OS:Lights, + {00000000-0000-0000-0047-000000000001}, !- Handle + Space Function Electrical/Mechanical-sch-A Lights, !- Name + {00000000-0000-0000-0048-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0084-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights, + {00000000-0000-0000-0047-000000000002}, !- Handle + Space Function Office - open plan Lights, !- Name + {00000000-0000-0000-0048-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0084-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {00000000-0000-0000-0048-000000000001}, !- Handle + Space Function Electrical/Mechanical-sch-A Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 13.2998893147092, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible + +OS:Lights:Definition, + {00000000-0000-0000-0048-000000000002}, !- Handle + Space Function Office - open plan Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.9999084529419, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible + +OS:Material, + {00000000-0000-0000-0049-000000000001}, !- Handle + 1/2IN Gypsum 1, !- 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:Material, + {00000000-0000-0000-0049-000000000002}, !- 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:Material, + {00000000-0000-0000-0049-000000000003}, !- Handle + 100mm Normalweight concrete floor 1, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + +OS:Material, + {00000000-0000-0000-0049-000000000004}, !- Handle + 100mm Normalweight concrete floor, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + +OS:Material, + {00000000-0000-0000-0049-000000000005}, !- Handle + 1IN Stucco 1, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000006}, !- Handle + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000007}, !- Handle + 4 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000008}, !- Handle + 4 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000009}, !- Handle + 6 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000010}, !- Handle + 6 in. Normalweight Concrete Floor 2, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000011}, !- Handle + 6 in. Normalweight Concrete Floor 3, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000012}, !- Handle + 6 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000013}, !- Handle + 8IN CONCRETE HW RefBldg 1, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000014}, !- Handle + 8IN CONCRETE HW RefBldg, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000015}, !- Handle + Expanded Polystyrene 1, !- Name + MediumSmooth, !- Roughness + 0.100199429303091, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} + +OS:Material, + {00000000-0000-0000-0049-000000000016}, !- Handle + Expanded Polystyrene, !- Name + MediumSmooth, !- Roughness + 0.0363958681740979, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} + +OS:Material, + {00000000-0000-0000-0049-000000000017}, !- Handle + F08 Metal surface 1, !- 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, + {00000000-0000-0000-0049-000000000018}, !- 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, + {00000000-0000-0000-0049-000000000019}, !- Handle + G01 13mm gypsum board 1, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000020}, !- Handle + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000021}, !- 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:Material, + {00000000-0000-0000-0049-000000000022}, !- Handle + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1842, !- Density {kg/m3} + 912; !- Specific Heat {J/kg-K} + +OS:Material, + {00000000-0000-0000-0049-000000000023}, !- Handle + Metal Roof Surface 1, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {00000000-0000-0000-0049-000000000024}, !- Handle + Metal Roof Surface, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000001}, !- Handle + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000002}, !- Handle + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 2.88291975297193, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000003}, !- Handle + Typical Carpet Pad 1, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000004}, !- Handle + Typical Carpet Pad 2, !- Name + Smooth, !- Roughness + 1.25502993703786, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000005}, !- Handle + Typical Carpet Pad 3, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000006}, !- Handle + Typical Carpet Pad 4, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000007}, !- Handle + Typical Carpet Pad, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000008}, !- Handle + Typical Insulation 1, !- Name + Smooth, !- Roughness + 5.91237683519488, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000009}, !- Handle + Typical Insulation 2, !- Name + Smooth, !- Roughness + 4.49096231241638, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000010}, !- Handle + Typical Insulation 3, !- Name + Smooth, !- Roughness + 6.17282183832832, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000011}, !- Handle + Typical Insulation 4, !- Name + Smooth, !- Roughness + 0.454527786700932, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000012}, !- Handle + Typical Insulation 5, !- Name + Smooth, !- Roughness + 0.454545454545455, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0050-000000000013}, !- Handle + Typical Insulation, !- Name + Smooth, !- Roughness + 0.101874652714525, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000001}, !- Handle + Availability Manager Night Cycle 1 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000002}, !- Handle + Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000003}, !- Handle + Availability Manager Night Cycle 1 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000004}, !- Handle + Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000013}, !- Handle + Availability Manager Night Cycle 4 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000014}, !- Handle + Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000015}, !- Handle + Availability Manager Night Cycle 4 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000016}, !- Handle + Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000017}, !- Handle + Availability Manager Night Cycle 5 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000018}, !- Handle + Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000019}, !- Handle + Availability Manager Night Cycle 5 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000020}, !- Handle + Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name + +OS:Node, + {00000000-0000-0000-0052-000000000001}, !- Handle + 1103gal NaturalGas Water Heater - 744kBtu/hr 0.805 Therm Eff Supply Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000520}, !- Inlet Port + {00000000-0000-0000-0020-000000000529}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000002}, !- Handle + 1103gal NaturalGas Water Heater - 744kBtu/hr 0.805 Therm Eff Supply Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000530}, !- Inlet Port + {00000000-0000-0000-0020-000000000531}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000003}, !- Handle + ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000025}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000004}, !- Handle + ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000037}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000005}, !- Handle + ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000027}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000006}, !- Handle + ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000184}, !- Inlet Port + {00000000-0000-0000-0020-000000000185}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000007}, !- Handle + ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000036}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000008}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000238}, !- Inlet Port + {00000000-0000-0000-0020-000000000239}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000009}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000030}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000010}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000266}, !- Inlet Port + {00000000-0000-0000-0020-000000000267}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000011}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000031}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000012}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000224}, !- Inlet Port + {00000000-0000-0000-0020-000000000225}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000013}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000038}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000014}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000280}, !- Inlet Port + {00000000-0000-0000-0020-000000000281}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000015}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000043}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000016}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000252}, !- Inlet Port + {00000000-0000-0000-0020-000000000253}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000017}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000045}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000018}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000294}, !- Inlet Port + {00000000-0000-0000-0020-000000000295}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000019}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000024}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000020}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000376}, !- Inlet Port + {00000000-0000-0000-0020-000000000377}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000021}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000033}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000022}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000362}, !- Inlet Port + {00000000-0000-0000-0020-000000000363}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000023}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000035}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000024}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000348}, !- Inlet Port + {00000000-0000-0000-0020-000000000349}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000025}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000040}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000026}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000334}, !- Inlet Port + {00000000-0000-0000-0020-000000000335}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000001}, !- Handle - Curve Biquadratic 1, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.000554364, !- Coefficient3 x**2 - -0.00755748, !- Coefficient4 y - 3.3048e-05, !- Coefficient5 y**2 - -0.000191808, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0052-000000000027}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000042}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000002}, !- Handle - Curve Biquadratic 2, !- Name - 0.116936, !- Coefficient1 Constant - 0.0284933, !- Coefficient2 x - -0.000411156, !- Coefficient3 x**2 - 0.0214108, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0052-000000000028}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000390}, !- Inlet Port + {00000000-0000-0000-0020-000000000391}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000003}, !- Handle - Curve Biquadratic 3, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0052-000000000029}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000044}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000004}, !- Handle - Curve Biquadratic 4, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0052-000000000030}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000404}, !- Inlet Port + {00000000-0000-0000-0020-000000000405}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000005}, !- Handle - Curve Biquadratic 5, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0052-000000000031}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000028}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000006}, !- Handle - Curve Biquadratic 6, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0052-000000000032}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000472}, !- Inlet Port + {00000000-0000-0000-0020-000000000473}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000007}, !- Handle - DXCOOL-NECB2011-REF-CAPFT, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.00055436, !- Coefficient3 x**2 - -0.0075575, !- Coefficient4 y - 3.3e-05, !- Coefficient5 y**2 - -0.0001918, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0052-000000000033}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000029}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000008}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFT, !- Name - 0.1141714, !- Coefficient1 Constant - 0.02818224, !- Coefficient2 x - -0.0004199, !- Coefficient3 x**2 - 0.02141082, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0052-000000000034}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000486}, !- Inlet Port + {00000000-0000-0000-0020-000000000487}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000009}, !- Handle - WaterCooled_Scroll_CAPFT_NECB2011, !- Name - 0.94418, !- Coefficient1 Constant - 0.0337102, !- Coefficient2 x - 9.75564e-05, !- Coefficient3 x**2 - -0.00322114, !- Coefficient4 y - -4.91832e-05, !- Coefficient5 y**2 - -0.000177584, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0052-000000000035}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000032}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000010}, !- Handle - WaterCooled_Scroll_EIRFT_NECB2011, !- Name - 0.727393, !- Coefficient1 Constant - -0.0118922, !- Coefficient2 x - 0.000541177, !- Coefficient3 x**2 - 0.00187934, !- Coefficient4 y - 0.000473461, !- Coefficient5 y**2 - -0.000711472, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0052-000000000036}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000458}, !- Inlet Port + {00000000-0000-0000-0020-000000000459}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000001}, !- Handle - BOILER-EFFFPLR-NECB2011, !- Name - 0.3831, !- Coefficient1 Constant - 2.0567, !- Coefficient2 x - -2.6469, !- Coefficient3 x**2 - 1.2148, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000037}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000034}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000038}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000500}, !- Inlet Port + {00000000-0000-0000-0020-000000000501}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000039}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000039}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000040}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000444}, !- Inlet Port + {00000000-0000-0000-0020-000000000445}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000041}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000041}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000042}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000514}, !- Inlet Port + {00000000-0000-0000-0020-000000000515}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000043}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000026}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000044}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000094}, !- Inlet Port + {00000000-0000-0000-0020-000000000095}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000045}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000096}, !- Inlet Port + {00000000-0000-0000-0020-000000000091}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000046}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000186}, !- Inlet Port + {00000000-0000-0000-0020-000000000187}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000047}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000188}, !- Inlet Port + {00000000-0000-0000-0020-000000000183}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000364}, !- Inlet Port + {00000000-0000-0000-0020-000000000365}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000366}, !- Inlet Port + {00000000-0000-0000-0020-000000000361}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000050}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000378}, !- Inlet Port + {00000000-0000-0000-0020-000000000379}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000002}, !- Handle - Curve Cubic 1, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000051}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000380}, !- Inlet Port + {00000000-0000-0000-0020-000000000375}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000003}, !- Handle - DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000052}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000392}, !- Inlet Port + {00000000-0000-0000-0020-000000000393}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000004}, !- Handle - FURNACE-EFFPLR-NECB2011, !- Name - 0.722, !- Coefficient1 Constant - 0.8211, !- Coefficient2 x - -1.0396, !- Coefficient3 x**2 - 0.5, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000053}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000394}, !- Inlet Port + {00000000-0000-0000-0020-000000000389}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000005}, !- Handle - SWH-EFFFPLR-NECB2011, !- Name - 0.7576, !- Coefficient1 Constant - 1.0071, !- Coefficient2 x - -1.4443, !- Coefficient3 x**2 - 0.6844, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000054}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000406}, !- Inlet Port + {00000000-0000-0000-0020-000000000407}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000006}, !- Handle - VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name - -2.4176, !- Coefficient1 Constant - 9.5874, !- Coefficient2 x - -11.559, !- Coefficient3 x**2 - 5.4009, !- Coefficient4 x**3 - 0.68, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000055}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000408}, !- Inlet Port + {00000000-0000-0000-0020-000000000403}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000001}, !- Handle - Curve Quadratic 1, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000056}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000446}, !- Inlet Port + {00000000-0000-0000-0020-000000000447}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000002}, !- Handle - Curve Quadratic 2, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000057}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000448}, !- Inlet Port + {00000000-0000-0000-0020-000000000443}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000003}, !- Handle - Curve Quadratic 3, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000460}, !- Inlet Port + {00000000-0000-0000-0020-000000000461}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000004}, !- Handle - Curve Quadratic 4, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000462}, !- Inlet Port + {00000000-0000-0000-0020-000000000457}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000005}, !- Handle - DXCOOL-NECB2011-REF-CAPFFLOW, !- Name - 0.8, !- Coefficient1 Constant - 0.2, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000474}, !- Inlet Port + {00000000-0000-0000-0020-000000000475}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000006}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name - 1.1552, !- Coefficient1 Constant - -0.1808, !- Coefficient2 x - 0.0256, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000476}, !- Inlet Port + {00000000-0000-0000-0020-000000000471}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000007}, !- Handle - WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name - 0.04412, !- Coefficient1 Constant - 0.640367, !- Coefficient2 x - 0.319555, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0052-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000488}, !- Inlet Port + {00000000-0000-0000-0020-000000000489}; !- Outlet Port -OS:DefaultConstructionSet, - {00000000-0000-0000-0031-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name - {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name - {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name - {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name - {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name - {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - , !- Site Shading Construction Name - ; !- Adiabatic Surface Construction Name +OS:Node, + {00000000-0000-0000-0052-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000490}, !- Inlet Port + {00000000-0000-0000-0020-000000000485}; !- Outlet Port -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000001}, !- Handle - Space Function - undefined - Schedule Set, !- 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 - {00000000-0000-0000-0061-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name +OS:Node, + {00000000-0000-0000-0052-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000502}, !- Inlet Port + {00000000-0000-0000-0020-000000000503}; !- Outlet Port -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000002}, !- Handle - Space Function Electrical/Mechanical-sch-A Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0061-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0061-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0061-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0061-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0061-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name +OS:Node, + {00000000-0000-0000-0052-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000504}, !- Inlet Port + {00000000-0000-0000-0020-000000000499}; !- Outlet Port -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000003}, !- Handle - Space Function Office - open plan Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0061-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0061-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0061-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0061-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0061-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name +OS:Node, + {00000000-0000-0000-0052-000000000066}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000516}, !- Inlet Port + {00000000-0000-0000-0020-000000000517}; !- Outlet Port -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000006}, !- Door Construction Name - {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name +OS:Node, + {00000000-0000-0000-0052-000000000067}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000518}, !- Inlet Port + {00000000-0000-0000-0020-000000000513}; !- Outlet Port -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000002}, !- Handle - Default Sub Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000030}, !- 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:Node, + {00000000-0000-0000-0052-000000000068}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000226}, !- Inlet Port + {00000000-0000-0000-0020-000000000227}; !- Outlet Port -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000003}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000005}, !- Door Construction Name - {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name +OS:Node, + {00000000-0000-0000-0052-000000000069}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000228}, !- Inlet Port + {00000000-0000-0000-0020-000000000223}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0052-000000000070}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000240}, !- Inlet Port + {00000000-0000-0000-0020-000000000241}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000002}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0052-000000000071}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000242}, !- Inlet Port + {00000000-0000-0000-0020-000000000237}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000003}, !- Handle - Default Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0052-000000000072}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000254}, !- Inlet Port + {00000000-0000-0000-0020-000000000255}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000004}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0052-000000000073}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000256}, !- Inlet Port + {00000000-0000-0000-0020-000000000251}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000005}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0052-000000000074}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000268}, !- Inlet Port + {00000000-0000-0000-0020-000000000269}; !- Outlet Port -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000001}, !- Handle - Space Function - undefined - Ventilation, !- Name - , !- Outdoor Air Method - 0, !- Outdoor Air Flow per Person {m3/s-person} - 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name +OS:Node, + {00000000-0000-0000-0052-000000000075}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000270}, !- Inlet Port + {00000000-0000-0000-0020-000000000265}; !- Outlet Port -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000002}, !- Handle - Space Function Electrical/Mechanical-sch-A 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:Node, + {00000000-0000-0000-0052-000000000076}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000282}, !- Inlet Port + {00000000-0000-0000-0020-000000000283}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000077}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000284}, !- Inlet Port + {00000000-0000-0000-0020-000000000279}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000078}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000296}, !- Inlet Port + {00000000-0000-0000-0020-000000000297}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000079}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000298}, !- Inlet Port + {00000000-0000-0000-0020-000000000293}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000080}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000336}, !- Inlet Port + {00000000-0000-0000-0020-000000000337}; !- Outlet Port -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000003}, !- Handle - Space Function Office - open plan Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.0142091703329032, !- 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:Node, + {00000000-0000-0000-0052-000000000081}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000338}, !- Inlet Port + {00000000-0000-0000-0020-000000000333}; !- Outlet Port -OS:ElectricEquipment, - {00000000-0000-0000-0036-000000000001}, !- Handle - Space Function Electrical/Mechanical-sch-A Elec Equip, !- Name - {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0052-000000000082}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000350}, !- Inlet Port + {00000000-0000-0000-0020-000000000351}; !- Outlet Port -OS:ElectricEquipment, - {00000000-0000-0000-0036-000000000002}, !- Handle - Space Function Office - open plan Elec Equip, !- Name - {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0052-000000000083}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000352}, !- Inlet Port + {00000000-0000-0000-0020-000000000347}; !- Outlet Port -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000001}, !- Handle - Space Function Electrical/Mechanical-sch-A Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 0.999991679497248, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant +OS:Node, + {00000000-0000-0000-0052-000000000084}, !- Handle + Chilled Water Loop Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000100}, !- Inlet Port + {00000000-0000-0000-0020-000000000101}; !- Outlet Port -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000002}, !- Handle - Space Function Office - open plan Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.49993758008349, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant +OS:Node, + {00000000-0000-0000-0052-000000000085}, !- Handle + Chilled Water Loop Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000103}, !- Inlet Port + {00000000-0000-0000-0020-000000000104}; !- Outlet Port -OS:Facility, - {00000000-0000-0000-0038-000000000001}; !- Handle +OS:Node, + {00000000-0000-0000-0052-000000000086}, !- Handle + Chilled Water Loop Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000097}, !- Inlet Port + {00000000-0000-0000-0020-000000000105}; !- Outlet Port -OS:Fan:ConstantVolume, - {00000000-0000-0000-0039-000000000001}, !- Handle - Fan Constant Volume 1, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name - 0.39975, !- Fan Total Efficiency - 640, !- Pressure Rise {Pa} - AutoSize, !- Maximum Flow Rate {m3/s} - 0.615, !- Motor Efficiency - , !- Motor In Airstream Fraction - {00000000-0000-0000-0020-000000000082}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000080}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0052-000000000087}, !- Handle + Chilled Water Loop Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000121}, !- Inlet Port + {00000000-0000-0000-0020-000000000099}; !- Outlet Port -OS:Fan:VariableVolume, - {00000000-0000-0000-0040-000000000001}, !- Handle - Sys6 Return Fan, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000172}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000173}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0052-000000000088}, !- Handle + Coil Cooling Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000102}, !- Inlet Port + {00000000-0000-0000-0020-000000000160}; !- Outlet Port -OS:Fan:VariableVolume, - {00000000-0000-0000-0040-000000000002}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000167}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000165}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0052-000000000089}, !- Handle + Coil Cooling Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000168}, !- Inlet Port + {00000000-0000-0000-0020-000000000169}; !- Outlet Port -OS:Foundation:Kiva, - {00000000-0000-0000-0041-000000000001}, !- Handle - Bldg Kiva Foundation, !- Name - , !- Initial Indoor Air Temperature {C} - , !- Interior Horizontal Insulation Material Name - , !- Interior Horizontal Insulation Depth {m} - , !- Interior Horizontal Insulation Width {m} - , !- Interior Vertical Insulation Material Name - , !- Interior Vertical Insulation Depth {m} - , !- Exterior Horizontal Insulation Material Name - , !- Exterior Horizontal Insulation Depth {m} - , !- Exterior Horizontal Insulation Width {m} - , !- Exterior Vertical Insulation Material Name - , !- Exterior Vertical Insulation Depth {m} - 0, !- Wall Height Above Grade {m} - 0, !- Wall Depth Below Slab {m} - , !- Footing Wall Construction Name - , !- Footing Material Name - ; !- Footing Depth {m} +OS:Node, + {00000000-0000-0000-0052-000000000090}, !- Handle + Coil Cooling Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000161}, !- Inlet Port + {00000000-0000-0000-0020-000000000162}; !- Outlet Port -OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0042-000000000001}, !- Handle - , !- Soil Conductivity {W/m-K} - , !- Soil Density {kg/m3} - , !- Soil Specific Heat {J/kg-K} - , !- Ground Solar Absorptivity {dimensionless} - , !- Ground Thermal Absorptivity {dimensionless} - , !- Ground Surface Roughness {m} - , !- Far-Field Width {m} - , !- Deep-Ground Boundary Condition - , !- Deep-Ground Depth {m} - , !- Minimum Cell Dimension {m} - , !- Maximum Cell Growth Coefficient {dimensionless} - ; !- Simulation Timestep +OS:Node, + {00000000-0000-0000-0052-000000000091}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000199}, !- Inlet Port + {00000000-0000-0000-0020-000000000200}; !- Outlet Port -OS:Lights, - {00000000-0000-0000-0043-000000000001}, !- Handle - Space Function Electrical/Mechanical-sch-A Lights, !- Name - {00000000-0000-0000-0044-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0052-000000000092}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000208}, !- Inlet Port + {00000000-0000-0000-0020-000000000209}; !- Outlet Port -OS:Lights, - {00000000-0000-0000-0043-000000000002}, !- Handle - Space Function Office - open plan Lights, !- Name - {00000000-0000-0000-0044-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0052-000000000093}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000201}, !- Inlet Port + {00000000-0000-0000-0020-000000000202}; !- Outlet Port -OS:Lights:Definition, - {00000000-0000-0000-0044-000000000001}, !- Handle - Space Function Electrical/Mechanical-sch-A Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 13.2998893147092, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible +OS:Node, + {00000000-0000-0000-0052-000000000094}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000309}, !- Inlet Port + {00000000-0000-0000-0020-000000000310}; !- Outlet Port -OS:Lights:Definition, - {00000000-0000-0000-0044-000000000002}, !- Handle - Space Function Office - open plan Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.9999084529419, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible +OS:Node, + {00000000-0000-0000-0052-000000000095}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000318}, !- Inlet Port + {00000000-0000-0000-0020-000000000319}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000001}, !- Handle - 1/2IN Gypsum 1, !- 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:Node, + {00000000-0000-0000-0052-000000000096}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000311}, !- Inlet Port + {00000000-0000-0000-0020-000000000312}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000002}, !- 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:Node, + {00000000-0000-0000-0052-000000000097}, !- Handle + Coil Cooling Water 4 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000419}, !- Inlet Port + {00000000-0000-0000-0020-000000000420}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000003}, !- Handle - 100mm Normalweight concrete floor 1, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0052-000000000098}, !- Handle + Coil Cooling Water 4 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000428}, !- Inlet Port + {00000000-0000-0000-0020-000000000429}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000004}, !- Handle - 100mm Normalweight concrete floor, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0052-000000000099}, !- Handle + Coil Cooling Water 4 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000421}, !- Inlet Port + {00000000-0000-0000-0020-000000000422}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000005}, !- Handle - 1IN Stucco 1, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000100}, !- Handle + Coil Heating Gas 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000081}, !- Inlet Port + {00000000-0000-0000-0020-000000000082}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000006}, !- Handle - 1IN Stucco, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000101}, !- Handle + Coil Heating Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000156}, !- Inlet Port + {00000000-0000-0000-0020-000000000157}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000007}, !- Handle - 4 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000102}, !- Handle + Coil Heating Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000166}, !- Inlet Port + {00000000-0000-0000-0020-000000000167}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000008}, !- Handle - 4 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000103}, !- Handle + Coil Heating Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000158}, !- Inlet Port + {00000000-0000-0000-0020-000000000159}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000009}, !- Handle - 6 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000104}, !- Handle + Coil Heating Water 10 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000305}, !- Inlet Port + {00000000-0000-0000-0020-000000000306}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000010}, !- Handle - 6 in. Normalweight Concrete Floor 2, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000105}, !- Handle + Coil Heating Water 10 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000316}, !- Inlet Port + {00000000-0000-0000-0020-000000000317}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000011}, !- Handle - 6 in. Normalweight Concrete Floor 3, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000106}, !- Handle + Coil Heating Water 10 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000307}, !- Inlet Port + {00000000-0000-0000-0020-000000000308}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000012}, !- Handle - 6 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000107}, !- Handle + Coil Heating Water 11 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000325}, !- Inlet Port + {00000000-0000-0000-0020-000000000326}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000013}, !- Handle - 8IN CONCRETE HW RefBldg 1, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000108}, !- Handle + Coil Heating Water 11 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000327}, !- Inlet Port + {00000000-0000-0000-0020-000000000328}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000014}, !- Handle - 8IN CONCRETE HW RefBldg, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000109}, !- Handle + Coil Heating Water 12 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000339}, !- Inlet Port + {00000000-0000-0000-0020-000000000340}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000015}, !- Handle - Expanded Polystyrene 1, !- Name - MediumSmooth, !- Roughness - 0.100199429303091, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0052-000000000110}, !- Handle + Coil Heating Water 12 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000341}, !- Inlet Port + {00000000-0000-0000-0020-000000000342}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000016}, !- Handle - Expanded Polystyrene, !- Name - MediumSmooth, !- Roughness - 0.0363958681740979, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0052-000000000111}, !- Handle + Coil Heating Water 13 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000353}, !- Inlet Port + {00000000-0000-0000-0020-000000000354}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000017}, !- Handle - F08 Metal surface 1, !- 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:Node, + {00000000-0000-0000-0052-000000000112}, !- Handle + Coil Heating Water 13 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000355}, !- Inlet Port + {00000000-0000-0000-0020-000000000356}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000018}, !- 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:Node, + {00000000-0000-0000-0052-000000000113}, !- Handle + Coil Heating Water 14 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000367}, !- Inlet Port + {00000000-0000-0000-0020-000000000368}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000019}, !- Handle - G01 13mm gypsum board 1, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000114}, !- Handle + Coil Heating Water 14 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000369}, !- Inlet Port + {00000000-0000-0000-0020-000000000370}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000020}, !- Handle - G01 13mm gypsum board, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000115}, !- Handle + Coil Heating Water 15 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000381}, !- Inlet Port + {00000000-0000-0000-0020-000000000382}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000021}, !- 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:Node, + {00000000-0000-0000-0052-000000000116}, !- Handle + Coil Heating Water 15 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000383}, !- Inlet Port + {00000000-0000-0000-0020-000000000384}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000022}, !- Handle - M10 200mm concrete block basement wall, !- Name - MediumRough, !- Roughness - 0.2032, !- Thickness {m} - 1.326, !- Conductivity {W/m-K} - 1842, !- Density {kg/m3} - 912; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0052-000000000117}, !- Handle + Coil Heating Water 16 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000395}, !- Inlet Port + {00000000-0000-0000-0020-000000000396}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000023}, !- Handle - Metal Roof Surface 1, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000118}, !- Handle + Coil Heating Water 16 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000397}, !- Inlet Port + {00000000-0000-0000-0020-000000000398}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0045-000000000024}, !- Handle - Metal Roof Surface, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000119}, !- Handle + Coil Heating Water 17 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000415}, !- Inlet Port + {00000000-0000-0000-0020-000000000416}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000001}, !- Handle - CP02 CARPET PAD, !- Name - VeryRough, !- Roughness - 0.21648, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000120}, !- Handle + Coil Heating Water 17 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000426}, !- Inlet Port + {00000000-0000-0000-0020-000000000427}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000002}, !- Handle - Nonres_Floor_Insulation, !- Name - MediumSmooth, !- Roughness - 2.88291975297193, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000121}, !- Handle + Coil Heating Water 17 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000417}, !- Inlet Port + {00000000-0000-0000-0020-000000000418}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000003}, !- Handle - Typical Carpet Pad 1, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000122}, !- Handle + Coil Heating Water 18 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000435}, !- Inlet Port + {00000000-0000-0000-0020-000000000436}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000004}, !- Handle - Typical Carpet Pad 2, !- Name - Smooth, !- Roughness - 1.25502993703786, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000123}, !- Handle + Coil Heating Water 18 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000437}, !- Inlet Port + {00000000-0000-0000-0020-000000000438}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000005}, !- Handle - Typical Carpet Pad 3, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000124}, !- Handle + Coil Heating Water 19 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000449}, !- Inlet Port + {00000000-0000-0000-0020-000000000450}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000006}, !- Handle - Typical Carpet Pad 4, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000125}, !- Handle + Coil Heating Water 19 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000451}, !- Inlet Port + {00000000-0000-0000-0020-000000000452}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000126}, !- Handle + Coil Heating Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000175}, !- Inlet Port + {00000000-0000-0000-0020-000000000176}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000127}, !- Handle + Coil Heating Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000177}, !- Inlet Port + {00000000-0000-0000-0020-000000000178}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000007}, !- Handle - Typical Carpet Pad, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000128}, !- Handle + Coil Heating Water 20 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000463}, !- Inlet Port + {00000000-0000-0000-0020-000000000464}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000008}, !- Handle - Typical Insulation 1, !- Name - Smooth, !- Roughness - 5.91237683519488, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000129}, !- Handle + Coil Heating Water 20 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000465}, !- Inlet Port + {00000000-0000-0000-0020-000000000466}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000009}, !- Handle - Typical Insulation 2, !- Name - Smooth, !- Roughness - 4.49096231241638, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000130}, !- Handle + Coil Heating Water 21 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000477}, !- Inlet Port + {00000000-0000-0000-0020-000000000478}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000010}, !- Handle - Typical Insulation 3, !- Name - Smooth, !- Roughness - 6.17282183832832, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000131}, !- Handle + Coil Heating Water 21 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000479}, !- Inlet Port + {00000000-0000-0000-0020-000000000480}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000011}, !- Handle - Typical Insulation 4, !- Name - Smooth, !- Roughness - 0.454527786700932, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000132}, !- Handle + Coil Heating Water 22 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000491}, !- Inlet Port + {00000000-0000-0000-0020-000000000492}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000012}, !- Handle - Typical Insulation 5, !- Name - Smooth, !- Roughness - 0.454545454545455, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000133}, !- Handle + Coil Heating Water 22 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000493}, !- Inlet Port + {00000000-0000-0000-0020-000000000494}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0046-000000000013}, !- Handle - Typical Insulation, !- Name - Smooth, !- Roughness - 0.101874652714525, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0052-000000000134}, !- Handle + Coil Heating Water 23 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000505}, !- Inlet Port + {00000000-0000-0000-0020-000000000506}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0047-000000000001}, !- Handle - Availability Manager Night Cycle 1 Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0052-000000000135}, !- Handle + Coil Heating Water 23 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000507}, !- Inlet Port + {00000000-0000-0000-0020-000000000508}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0047-000000000002}, !- Handle - Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0052-000000000136}, !- Handle + Coil Heating Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000195}, !- Inlet Port + {00000000-0000-0000-0020-000000000196}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0047-000000000003}, !- Handle - Availability Manager Night Cycle 1 Heating Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0052-000000000137}, !- Handle + Coil Heating Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000206}, !- Inlet Port + {00000000-0000-0000-0020-000000000207}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0047-000000000004}, !- Handle - Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name +OS:Node, + {00000000-0000-0000-0052-000000000138}, !- Handle + Coil Heating Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000197}, !- Inlet Port + {00000000-0000-0000-0020-000000000198}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0047-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0052-000000000139}, !- Handle + Coil Heating Water 4 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000215}, !- Inlet Port + {00000000-0000-0000-0020-000000000216}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0047-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0052-000000000140}, !- Handle + Coil Heating Water 4 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000217}, !- Inlet Port + {00000000-0000-0000-0020-000000000218}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0047-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0052-000000000141}, !- Handle + Coil Heating Water 5 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000229}, !- Inlet Port + {00000000-0000-0000-0020-000000000230}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0047-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name +OS:Node, + {00000000-0000-0000-0052-000000000142}, !- Handle + Coil Heating Water 5 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000231}, !- Inlet Port + {00000000-0000-0000-0020-000000000232}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000001}, !- Handle - 1103gal NaturalGas Water Heater - 744kBtu/hr 0.805 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000190}, !- Inlet Port - {00000000-0000-0000-0020-000000000199}; !- Outlet Port + {00000000-0000-0000-0052-000000000143}, !- Handle + Coil Heating Water 6 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000243}, !- Inlet Port + {00000000-0000-0000-0020-000000000244}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000002}, !- Handle - 1103gal NaturalGas Water Heater - 744kBtu/hr 0.805 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000200}, !- Inlet Port - {00000000-0000-0000-0020-000000000201}; !- Outlet Port + {00000000-0000-0000-0052-000000000144}, !- Handle + Coil Heating Water 6 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000245}, !- Inlet Port + {00000000-0000-0000-0020-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000003}, !- Handle - ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000025}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000145}, !- Handle + Coil Heating Water 7 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000257}, !- Inlet Port + {00000000-0000-0000-0020-000000000258}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000004}, !- Handle - ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000037}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000146}, !- Handle + Coil Heating Water 7 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000259}, !- Inlet Port + {00000000-0000-0000-0020-000000000260}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000005}, !- Handle - ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000027}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000147}, !- Handle + Coil Heating Water 8 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000271}, !- Inlet Port + {00000000-0000-0000-0020-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000006}, !- Handle - ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000184}, !- Inlet Port - {00000000-0000-0000-0020-000000000185}; !- Outlet Port + {00000000-0000-0000-0052-000000000148}, !- Handle + Coil Heating Water 8 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000273}, !- Inlet Port + {00000000-0000-0000-0020-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000007}, !- Handle - ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000036}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000149}, !- Handle + Coil Heating Water 9 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000285}, !- Inlet Port + {00000000-0000-0000-0020-000000000286}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000008}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000030}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000150}, !- Handle + Coil Heating Water 9 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000287}, !- Inlet Port + {00000000-0000-0000-0020-000000000288}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000009}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000031}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000151}, !- Handle + Coil Heating Water Baseboard 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000052}, !- Inlet Port + {00000000-0000-0000-0020-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000010}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000038}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000152}, !- Handle + Coil Heating Water Baseboard 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000089}, !- Inlet Port + {00000000-0000-0000-0020-000000000090}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000011}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000043}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000153}, !- Handle + Coil Heating Water Baseboard 10 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000343}, !- Inlet Port + {00000000-0000-0000-0020-000000000344}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000012}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000045}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000154}, !- Handle + Coil Heating Water Baseboard 10 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000345}, !- Inlet Port + {00000000-0000-0000-0020-000000000346}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000013}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000024}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000155}, !- Handle + Coil Heating Water Baseboard 11 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000357}, !- Inlet Port + {00000000-0000-0000-0020-000000000358}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000014}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000033}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000156}, !- Handle + Coil Heating Water Baseboard 11 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000359}, !- Inlet Port + {00000000-0000-0000-0020-000000000360}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000015}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000035}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000157}, !- Handle + Coil Heating Water Baseboard 12 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000371}, !- Inlet Port + {00000000-0000-0000-0020-000000000372}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000016}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000040}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000158}, !- Handle + Coil Heating Water Baseboard 12 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000373}, !- Inlet Port + {00000000-0000-0000-0020-000000000374}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000017}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000042}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000159}, !- Handle + Coil Heating Water Baseboard 13 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000385}, !- Inlet Port + {00000000-0000-0000-0020-000000000386}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000018}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000044}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000160}, !- Handle + Coil Heating Water Baseboard 13 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000387}, !- Inlet Port + {00000000-0000-0000-0020-000000000388}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000019}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000028}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000161}, !- Handle + Coil Heating Water Baseboard 14 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000399}, !- Inlet Port + {00000000-0000-0000-0020-000000000400}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000020}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000029}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000162}, !- Handle + Coil Heating Water Baseboard 14 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000401}, !- Inlet Port + {00000000-0000-0000-0020-000000000402}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000021}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000032}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000163}, !- Handle + Coil Heating Water Baseboard 15 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000439}, !- Inlet Port + {00000000-0000-0000-0020-000000000440}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000022}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000034}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000164}, !- Handle + Coil Heating Water Baseboard 15 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000441}, !- Inlet Port + {00000000-0000-0000-0020-000000000442}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000023}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000039}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000165}, !- Handle + Coil Heating Water Baseboard 16 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000453}, !- Inlet Port + {00000000-0000-0000-0020-000000000454}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000024}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000041}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000166}, !- Handle + Coil Heating Water Baseboard 16 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000455}, !- Inlet Port + {00000000-0000-0000-0020-000000000456}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000025}, !- Handle - ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000026}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0052-000000000167}, !- Handle + Coil Heating Water Baseboard 17 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000467}, !- Inlet Port + {00000000-0000-0000-0020-000000000468}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000026}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000094}, !- Inlet Port - {00000000-0000-0000-0020-000000000095}; !- Outlet Port + {00000000-0000-0000-0052-000000000168}, !- Handle + Coil Heating Water Baseboard 17 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000469}, !- Inlet Port + {00000000-0000-0000-0020-000000000470}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000027}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000096}, !- Inlet Port - {00000000-0000-0000-0020-000000000091}; !- Outlet Port + {00000000-0000-0000-0052-000000000169}, !- Handle + Coil Heating Water Baseboard 18 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000481}, !- Inlet Port + {00000000-0000-0000-0020-000000000482}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000028}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000186}, !- Inlet Port - {00000000-0000-0000-0020-000000000187}; !- Outlet Port + {00000000-0000-0000-0052-000000000170}, !- Handle + Coil Heating Water Baseboard 18 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000483}, !- Inlet Port + {00000000-0000-0000-0020-000000000484}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000029}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000188}, !- Inlet Port - {00000000-0000-0000-0020-000000000183}; !- Outlet Port + {00000000-0000-0000-0052-000000000171}, !- Handle + Coil Heating Water Baseboard 19 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000495}, !- Inlet Port + {00000000-0000-0000-0020-000000000496}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000030}, !- Handle - Chilled Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000100}, !- Inlet Port - {00000000-0000-0000-0020-000000000101}; !- Outlet Port + {00000000-0000-0000-0052-000000000172}, !- Handle + Coil Heating Water Baseboard 19 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000497}, !- Inlet Port + {00000000-0000-0000-0020-000000000498}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000031}, !- Handle - Chilled Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000103}, !- Inlet Port - {00000000-0000-0000-0020-000000000104}; !- Outlet Port + {00000000-0000-0000-0052-000000000173}, !- Handle + Coil Heating Water Baseboard 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000179}, !- Inlet Port + {00000000-0000-0000-0020-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000032}, !- Handle - Chilled Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000097}, !- Inlet Port - {00000000-0000-0000-0020-000000000105}; !- Outlet Port + {00000000-0000-0000-0052-000000000174}, !- Handle + Coil Heating Water Baseboard 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000181}, !- Inlet Port + {00000000-0000-0000-0020-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000033}, !- Handle - Chilled Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000121}, !- Inlet Port - {00000000-0000-0000-0020-000000000099}; !- Outlet Port + {00000000-0000-0000-0052-000000000175}, !- Handle + Coil Heating Water Baseboard 20 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000509}, !- Inlet Port + {00000000-0000-0000-0020-000000000510}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000034}, !- Handle - Coil Cooling Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000102}, !- Inlet Port - {00000000-0000-0000-0020-000000000160}; !- Outlet Port + {00000000-0000-0000-0052-000000000176}, !- Handle + Coil Heating Water Baseboard 20 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000511}, !- Inlet Port + {00000000-0000-0000-0020-000000000512}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000035}, !- Handle - Coil Cooling Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000168}, !- Inlet Port - {00000000-0000-0000-0020-000000000169}; !- Outlet Port + {00000000-0000-0000-0052-000000000177}, !- Handle + Coil Heating Water Baseboard 3 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000219}, !- Inlet Port + {00000000-0000-0000-0020-000000000220}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000036}, !- Handle - Coil Cooling Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000161}, !- Inlet Port - {00000000-0000-0000-0020-000000000162}; !- Outlet Port + {00000000-0000-0000-0052-000000000178}, !- Handle + Coil Heating Water Baseboard 3 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000221}, !- Inlet Port + {00000000-0000-0000-0020-000000000222}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000037}, !- Handle - Coil Heating Gas 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000081}, !- Inlet Port - {00000000-0000-0000-0020-000000000082}; !- Outlet Port + {00000000-0000-0000-0052-000000000179}, !- Handle + Coil Heating Water Baseboard 4 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000233}, !- Inlet Port + {00000000-0000-0000-0020-000000000234}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000038}, !- Handle - Coil Heating Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000156}, !- Inlet Port - {00000000-0000-0000-0020-000000000157}; !- Outlet Port + {00000000-0000-0000-0052-000000000180}, !- Handle + Coil Heating Water Baseboard 4 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000235}, !- Inlet Port + {00000000-0000-0000-0020-000000000236}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000039}, !- Handle - Coil Heating Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000166}, !- Inlet Port - {00000000-0000-0000-0020-000000000167}; !- Outlet Port + {00000000-0000-0000-0052-000000000181}, !- Handle + Coil Heating Water Baseboard 5 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000247}, !- Inlet Port + {00000000-0000-0000-0020-000000000248}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000040}, !- Handle - Coil Heating Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000158}, !- Inlet Port - {00000000-0000-0000-0020-000000000159}; !- Outlet Port + {00000000-0000-0000-0052-000000000182}, !- Handle + Coil Heating Water Baseboard 5 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000249}, !- Inlet Port + {00000000-0000-0000-0020-000000000250}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000183}, !- Handle + Coil Heating Water Baseboard 6 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000261}, !- Inlet Port + {00000000-0000-0000-0020-000000000262}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000184}, !- Handle + Coil Heating Water Baseboard 6 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000263}, !- Inlet Port + {00000000-0000-0000-0020-000000000264}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000041}, !- Handle - Coil Heating Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000175}, !- Inlet Port - {00000000-0000-0000-0020-000000000176}; !- Outlet Port + {00000000-0000-0000-0052-000000000185}, !- Handle + Coil Heating Water Baseboard 7 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000275}, !- Inlet Port + {00000000-0000-0000-0020-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000042}, !- Handle - Coil Heating Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000177}, !- Inlet Port - {00000000-0000-0000-0020-000000000178}; !- Outlet Port + {00000000-0000-0000-0052-000000000186}, !- Handle + Coil Heating Water Baseboard 7 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000277}, !- Inlet Port + {00000000-0000-0000-0020-000000000278}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000043}, !- Handle - Coil Heating Water Baseboard 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000052}, !- Inlet Port - {00000000-0000-0000-0020-000000000088}; !- Outlet Port + {00000000-0000-0000-0052-000000000187}, !- Handle + Coil Heating Water Baseboard 8 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000289}, !- Inlet Port + {00000000-0000-0000-0020-000000000290}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000044}, !- Handle - Coil Heating Water Baseboard 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000089}, !- Inlet Port - {00000000-0000-0000-0020-000000000090}; !- Outlet Port + {00000000-0000-0000-0052-000000000188}, !- Handle + Coil Heating Water Baseboard 8 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000291}, !- Inlet Port + {00000000-0000-0000-0020-000000000292}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000045}, !- Handle - Coil Heating Water Baseboard 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000179}, !- Inlet Port - {00000000-0000-0000-0020-000000000180}; !- Outlet Port + {00000000-0000-0000-0052-000000000189}, !- Handle + Coil Heating Water Baseboard 9 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000329}, !- Inlet Port + {00000000-0000-0000-0020-000000000330}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000046}, !- Handle - Coil Heating Water Baseboard 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000181}, !- Inlet Port - {00000000-0000-0000-0020-000000000182}; !- Outlet Port + {00000000-0000-0000-0052-000000000190}, !- Handle + Coil Heating Water Baseboard 9 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000331}, !- Inlet Port + {00000000-0000-0000-0020-000000000332}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000047}, !- Handle - CoilCoolingDXSingleSpeed_dx 170kBtu/hr 9.7EER Outlet Air Node, !- Name + {00000000-0000-0000-0052-000000000191}, !- Handle + CoilCoolingDXSingleSpeed_dx 79kBtu/hr 9.7EER Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000083}, !- Inlet Port {00000000-0000-0000-0020-000000000084}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000048}, !- Handle + {00000000-0000-0000-0052-000000000192}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000125}, !- Inlet Port {00000000-0000-0000-0020-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000049}, !- Handle + {00000000-0000-0000-0052-000000000193}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000128}, !- Inlet Port {00000000-0000-0000-0020-000000000129}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000050}, !- Handle + {00000000-0000-0000-0052-000000000194}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000122}, !- Inlet Port {00000000-0000-0000-0020-000000000130}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000051}, !- Handle + {00000000-0000-0000-0052-000000000195}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000142}, !- Inlet Port {00000000-0000-0000-0020-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000052}, !- Handle + {00000000-0000-0000-0052-000000000196}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000123}, !- Inlet Port {00000000-0000-0000-0020-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000053}, !- Handle + {00000000-0000-0000-0052-000000000197}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000134}, !- Inlet Port {00000000-0000-0000-0020-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000054}, !- Handle + {00000000-0000-0000-0052-000000000198}, !- Handle Core_bottom WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000215}, !- Inlet Port - {00000000-0000-0000-0020-000000000216}; !- Outlet Port + {00000000-0000-0000-0020-000000000545}, !- Inlet Port + {00000000-0000-0000-0020-000000000546}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000055}, !- Handle + {00000000-0000-0000-0052-000000000199}, !- Handle Core_bottom WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000217}, !- Inlet Port - {00000000-0000-0000-0020-000000000218}; !- Outlet Port + {00000000-0000-0000-0020-000000000547}, !- Inlet Port + {00000000-0000-0000-0020-000000000548}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000056}, !- Handle + {00000000-0000-0000-0052-000000000200}, !- Handle Core_mid WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000219}, !- Inlet Port - {00000000-0000-0000-0020-000000000220}; !- Outlet Port + {00000000-0000-0000-0020-000000000549}, !- Inlet Port + {00000000-0000-0000-0020-000000000550}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000057}, !- Handle + {00000000-0000-0000-0052-000000000201}, !- Handle Core_mid WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000221}, !- Inlet Port - {00000000-0000-0000-0020-000000000222}; !- Outlet Port + {00000000-0000-0000-0020-000000000551}, !- Inlet Port + {00000000-0000-0000-0020-000000000552}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000058}, !- Handle + {00000000-0000-0000-0052-000000000202}, !- Handle Core_top WUC 0.96gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000223}, !- Inlet Port - {00000000-0000-0000-0020-000000000224}; !- Outlet Port + {00000000-0000-0000-0020-000000000553}, !- Inlet Port + {00000000-0000-0000-0020-000000000554}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000059}, !- Handle + {00000000-0000-0000-0052-000000000203}, !- Handle Core_top WUC 0.96gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000225}, !- Inlet Port - {00000000-0000-0000-0020-000000000226}; !- Outlet Port + {00000000-0000-0000-0020-000000000555}, !- Inlet Port + {00000000-0000-0000-0020-000000000556}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000060}, !- Handle + {00000000-0000-0000-0052-000000000204}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000227}, !- Inlet Port - {00000000-0000-0000-0020-000000000228}; !- Outlet Port + {00000000-0000-0000-0020-000000000557}, !- Inlet Port + {00000000-0000-0000-0020-000000000558}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000061}, !- Handle + {00000000-0000-0000-0052-000000000205}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000229}, !- Inlet Port - {00000000-0000-0000-0020-000000000230}; !- Outlet Port + {00000000-0000-0000-0020-000000000559}, !- Inlet Port + {00000000-0000-0000-0020-000000000560}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000062}, !- Handle + {00000000-0000-0000-0052-000000000206}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000231}, !- Inlet Port - {00000000-0000-0000-0020-000000000232}; !- Outlet Port + {00000000-0000-0000-0020-000000000561}, !- Inlet Port + {00000000-0000-0000-0020-000000000562}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000063}, !- Handle + {00000000-0000-0000-0052-000000000207}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000233}, !- Inlet Port - {00000000-0000-0000-0020-000000000234}; !- Outlet Port + {00000000-0000-0000-0020-000000000563}, !- Inlet Port + {00000000-0000-0000-0020-000000000564}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000064}, !- Handle + {00000000-0000-0000-0052-000000000208}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000235}, !- Inlet Port - {00000000-0000-0000-0020-000000000236}; !- Outlet Port + {00000000-0000-0000-0020-000000000565}, !- Inlet Port + {00000000-0000-0000-0020-000000000566}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000065}, !- Handle + {00000000-0000-0000-0052-000000000209}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000237}, !- Inlet Port - {00000000-0000-0000-0020-000000000238}; !- Outlet Port + {00000000-0000-0000-0020-000000000567}, !- Inlet Port + {00000000-0000-0000-0020-000000000568}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000066}, !- Handle + {00000000-0000-0000-0052-000000000210}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000239}, !- Inlet Port - {00000000-0000-0000-0020-000000000240}; !- Outlet Port + {00000000-0000-0000-0020-000000000569}, !- Inlet Port + {00000000-0000-0000-0020-000000000570}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000067}, !- Handle + {00000000-0000-0000-0052-000000000211}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000241}, !- Inlet Port - {00000000-0000-0000-0020-000000000242}; !- Outlet Port + {00000000-0000-0000-0020-000000000571}, !- Inlet Port + {00000000-0000-0000-0020-000000000572}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000068}, !- Handle + {00000000-0000-0000-0052-000000000212}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000050}, !- Inlet Port {00000000-0000-0000-0020-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000069}, !- Handle + {00000000-0000-0000-0052-000000000213}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000053}, !- Inlet Port {00000000-0000-0000-0020-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000070}, !- Handle + {00000000-0000-0000-0052-000000000214}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000047}, !- Inlet Port {00000000-0000-0000-0020-000000000055}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000071}, !- Handle + {00000000-0000-0000-0052-000000000215}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000071}, !- Inlet Port {00000000-0000-0000-0020-000000000049}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000072}, !- Handle + {00000000-0000-0000-0052-000000000216}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000197}, !- Inlet Port - {00000000-0000-0000-0020-000000000198}; !- Outlet Port + {00000000-0000-0000-0020-000000000527}, !- Inlet Port + {00000000-0000-0000-0020-000000000528}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000073}, !- Handle + {00000000-0000-0000-0052-000000000217}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000192}, !- Inlet Port - {00000000-0000-0000-0020-000000000193}; !- Outlet Port + {00000000-0000-0000-0020-000000000522}, !- Inlet Port + {00000000-0000-0000-0020-000000000523}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000074}, !- Handle + {00000000-0000-0000-0052-000000000218}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000214}, !- Inlet Port - {00000000-0000-0000-0020-000000000195}; !- Outlet Port + {00000000-0000-0000-0020-000000000544}, !- Inlet Port + {00000000-0000-0000-0020-000000000525}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000075}, !- Handle + {00000000-0000-0000-0052-000000000219}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000189}, !- Inlet Port - {00000000-0000-0000-0020-000000000196}; !- Outlet Port + {00000000-0000-0000-0020-000000000519}, !- Inlet Port + {00000000-0000-0000-0020-000000000526}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000076}, !- Handle + {00000000-0000-0000-0052-000000000220}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000211}, !- Inlet Port - {00000000-0000-0000-0020-000000000191}; !- Outlet Port + {00000000-0000-0000-0020-000000000541}, !- Inlet Port + {00000000-0000-0000-0020-000000000521}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000077}, !- Handle + {00000000-0000-0000-0052-000000000221}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000243}, !- Inlet Port - {00000000-0000-0000-0020-000000000244}; !- Outlet Port + {00000000-0000-0000-0020-000000000573}, !- Inlet Port + {00000000-0000-0000-0020-000000000574}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000078}, !- Handle + {00000000-0000-0000-0052-000000000222}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000245}, !- Inlet Port - {00000000-0000-0000-0020-000000000246}; !- Outlet Port + {00000000-0000-0000-0020-000000000575}, !- Inlet Port + {00000000-0000-0000-0020-000000000576}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000079}, !- Handle + {00000000-0000-0000-0052-000000000223}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000247}, !- Inlet Port - {00000000-0000-0000-0020-000000000248}; !- Outlet Port + {00000000-0000-0000-0020-000000000577}, !- Inlet Port + {00000000-0000-0000-0020-000000000578}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000080}, !- Handle + {00000000-0000-0000-0052-000000000224}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000249}, !- Inlet Port - {00000000-0000-0000-0020-000000000250}; !- Outlet Port + {00000000-0000-0000-0020-000000000579}, !- Inlet Port + {00000000-0000-0000-0020-000000000580}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000081}, !- Handle + {00000000-0000-0000-0052-000000000225}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000251}, !- Inlet Port - {00000000-0000-0000-0020-000000000252}; !- Outlet Port + {00000000-0000-0000-0020-000000000581}, !- Inlet Port + {00000000-0000-0000-0020-000000000582}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000082}, !- Handle + {00000000-0000-0000-0052-000000000226}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000253}, !- Inlet Port - {00000000-0000-0000-0020-000000000254}; !- Outlet Port + {00000000-0000-0000-0020-000000000583}, !- Inlet Port + {00000000-0000-0000-0020-000000000584}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000083}, !- Handle + {00000000-0000-0000-0052-000000000227}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000255}, !- Inlet Port - {00000000-0000-0000-0020-000000000256}; !- Outlet Port + {00000000-0000-0000-0020-000000000585}, !- Inlet Port + {00000000-0000-0000-0020-000000000586}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000084}, !- Handle + {00000000-0000-0000-0052-000000000228}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000257}, !- Inlet Port - {00000000-0000-0000-0020-000000000258}; !- Outlet Port + {00000000-0000-0000-0020-000000000587}, !- Inlet Port + {00000000-0000-0000-0020-000000000588}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000085}, !- Handle + {00000000-0000-0000-0052-000000000229}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000259}, !- Inlet Port - {00000000-0000-0000-0020-000000000260}; !- Outlet Port + {00000000-0000-0000-0020-000000000589}, !- Inlet Port + {00000000-0000-0000-0020-000000000590}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000086}, !- Handle + {00000000-0000-0000-0052-000000000230}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000261}, !- Inlet Port - {00000000-0000-0000-0020-000000000262}; !- Outlet Port + {00000000-0000-0000-0020-000000000591}, !- Inlet Port + {00000000-0000-0000-0020-000000000592}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000087}, !- Handle + {00000000-0000-0000-0052-000000000231}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000263}, !- Inlet Port - {00000000-0000-0000-0020-000000000264}; !- Outlet Port + {00000000-0000-0000-0020-000000000593}, !- Inlet Port + {00000000-0000-0000-0020-000000000594}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000088}, !- Handle + {00000000-0000-0000-0052-000000000232}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000265}, !- Inlet Port - {00000000-0000-0000-0020-000000000266}; !- Outlet Port + {00000000-0000-0000-0020-000000000595}, !- Inlet Port + {00000000-0000-0000-0020-000000000596}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000089}, !- Handle + {00000000-0000-0000-0052-000000000233}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000267}, !- Inlet Port - {00000000-0000-0000-0020-000000000268}; !- Outlet Port + {00000000-0000-0000-0020-000000000597}, !- Inlet Port + {00000000-0000-0000-0020-000000000598}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000090}, !- Handle + {00000000-0000-0000-0052-000000000234}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000269}, !- Inlet Port - {00000000-0000-0000-0020-000000000270}; !- Outlet Port + {00000000-0000-0000-0020-000000000599}, !- Inlet Port + {00000000-0000-0000-0020-000000000600}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000091}, !- Handle + {00000000-0000-0000-0052-000000000235}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000271}, !- Inlet Port - {00000000-0000-0000-0020-000000000272}; !- Outlet Port + {00000000-0000-0000-0020-000000000601}, !- Inlet Port + {00000000-0000-0000-0020-000000000602}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000092}, !- Handle + {00000000-0000-0000-0052-000000000236}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000273}, !- Inlet Port - {00000000-0000-0000-0020-000000000274}; !- Outlet Port + {00000000-0000-0000-0020-000000000603}, !- Inlet Port + {00000000-0000-0000-0020-000000000604}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000093}, !- Handle + {00000000-0000-0000-0052-000000000237}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000275}, !- Inlet Port - {00000000-0000-0000-0020-000000000276}; !- Outlet Port + {00000000-0000-0000-0020-000000000605}, !- Inlet Port + {00000000-0000-0000-0020-000000000606}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000094}, !- Handle + {00000000-0000-0000-0052-000000000238}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000277}, !- Inlet Port - {00000000-0000-0000-0020-000000000278}; !- Outlet Port + {00000000-0000-0000-0020-000000000607}, !- Inlet Port + {00000000-0000-0000-0020-000000000608}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000095}, !- Handle + {00000000-0000-0000-0052-000000000239}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000279}, !- Inlet Port - {00000000-0000-0000-0020-000000000280}; !- Outlet Port + {00000000-0000-0000-0020-000000000609}, !- Inlet Port + {00000000-0000-0000-0020-000000000610}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000096}, !- Handle + {00000000-0000-0000-0052-000000000240}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000281}, !- Inlet Port - {00000000-0000-0000-0020-000000000282}; !- Outlet Port + {00000000-0000-0000-0020-000000000611}, !- Inlet Port + {00000000-0000-0000-0020-000000000612}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000097}, !- Handle + {00000000-0000-0000-0052-000000000241}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000283}, !- Inlet Port - {00000000-0000-0000-0020-000000000284}; !- Outlet Port + {00000000-0000-0000-0020-000000000613}, !- Inlet Port + {00000000-0000-0000-0020-000000000614}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000098}, !- Handle + {00000000-0000-0000-0052-000000000242}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000285}, !- Inlet Port - {00000000-0000-0000-0020-000000000286}; !- Outlet Port + {00000000-0000-0000-0020-000000000615}, !- Inlet Port + {00000000-0000-0000-0020-000000000616}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000099}, !- Handle + {00000000-0000-0000-0052-000000000243}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000287}, !- Inlet Port - {00000000-0000-0000-0020-000000000288}; !- Outlet Port + {00000000-0000-0000-0020-000000000617}, !- Inlet Port + {00000000-0000-0000-0020-000000000618}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000100}, !- Handle + {00000000-0000-0000-0052-000000000244}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000289}, !- Inlet Port - {00000000-0000-0000-0020-000000000290}; !- Outlet Port + {00000000-0000-0000-0020-000000000619}, !- Inlet Port + {00000000-0000-0000-0020-000000000620}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000101}, !- Handle + {00000000-0000-0000-0052-000000000245}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000065}, !- Inlet Port {00000000-0000-0000-0020-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000102}, !- Handle + {00000000-0000-0000-0052-000000000246}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000067}, !- Inlet Port {00000000-0000-0000-0020-000000000068}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000103}, !- Handle + {00000000-0000-0000-0052-000000000247}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000212}, !- Inlet Port - {00000000-0000-0000-0020-000000000213}; !- Outlet Port + {00000000-0000-0000-0020-000000000542}, !- Inlet Port + {00000000-0000-0000-0020-000000000543}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000104}, !- Handle + {00000000-0000-0000-0052-000000000248}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000069}, !- Inlet Port {00000000-0000-0000-0020-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000105}, !- Handle + {00000000-0000-0000-0052-000000000249}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000115}, !- Inlet Port {00000000-0000-0000-0020-000000000116}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000106}, !- Handle + {00000000-0000-0000-0052-000000000250}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000117}, !- Inlet Port {00000000-0000-0000-0020-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000107}, !- Handle + {00000000-0000-0000-0052-000000000251}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000119}, !- Inlet Port {00000000-0000-0000-0020-000000000120}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000108}, !- Handle + {00000000-0000-0000-0052-000000000252}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000136}, !- Inlet Port {00000000-0000-0000-0020-000000000137}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000109}, !- Handle + {00000000-0000-0000-0052-000000000253}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000138}, !- Inlet Port {00000000-0000-0000-0020-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000110}, !- Handle + {00000000-0000-0000-0052-000000000254}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000140}, !- Inlet Port {00000000-0000-0000-0020-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000111}, !- Handle + {00000000-0000-0000-0052-000000000255}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000202}, !- Inlet Port - {00000000-0000-0000-0020-000000000203}; !- Outlet Port + {00000000-0000-0000-0020-000000000532}, !- Inlet Port + {00000000-0000-0000-0020-000000000533}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000112}, !- Handle + {00000000-0000-0000-0052-000000000256}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000204}, !- Inlet Port - {00000000-0000-0000-0020-000000000205}; !- Outlet Port + {00000000-0000-0000-0020-000000000534}, !- Inlet Port + {00000000-0000-0000-0020-000000000535}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000113}, !- Handle + {00000000-0000-0000-0052-000000000257}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000194}, !- Inlet Port - {00000000-0000-0000-0020-000000000206}; !- Outlet Port + {00000000-0000-0000-0020-000000000524}, !- Inlet Port + {00000000-0000-0000-0020-000000000536}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000114}, !- Handle + {00000000-0000-0000-0052-000000000258}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000207}, !- Inlet Port - {00000000-0000-0000-0020-000000000208}; !- Outlet Port + {00000000-0000-0000-0020-000000000537}, !- Inlet Port + {00000000-0000-0000-0020-000000000538}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000115}, !- Handle + {00000000-0000-0000-0052-000000000259}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000209}, !- Inlet Port - {00000000-0000-0000-0020-000000000210}; !- Outlet Port + {00000000-0000-0000-0020-000000000539}, !- Inlet Port + {00000000-0000-0000-0020-000000000540}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000116}, !- Handle - Primary Boiler 287kBtu/hr 0.85 AFUE Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000260}, !- Handle + Primary Boiler 10574kBtu/hr 0.833 Combustion Eff Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000048}, !- Inlet Port {00000000-0000-0000-0020-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000117}, !- Handle - Primary Boiler 287kBtu/hr 0.85 AFUE Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000261}, !- Handle + Primary Boiler 10574kBtu/hr 0.833 Combustion Eff Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000059}, !- Inlet Port {00000000-0000-0000-0020-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000118}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000262}, !- Handle + Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000127}, !- Inlet Port {00000000-0000-0000-0020-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000119}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000263}, !- Handle + Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000144}, !- Inlet Port {00000000-0000-0000-0020-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000120}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000264}, !- Handle + Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000098}, !- Inlet Port {00000000-0000-0000-0020-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000121}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000265}, !- Handle + Primary Chiller WaterCooled Centrifugal 591tons 0.6kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000109}, !- Inlet Port {00000000-0000-0000-0020-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000122}, !- Handle + {00000000-0000-0000-0052-000000000266}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000056}, !- Inlet Port {00000000-0000-0000-0020-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000123}, !- Handle + {00000000-0000-0000-0052-000000000267}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000106}, !- Inlet Port {00000000-0000-0000-0020-000000000107}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000124}, !- Handle + {00000000-0000-0000-0052-000000000268}, !- Handle Pump Variable Speed 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000131}, !- Inlet Port {00000000-0000-0000-0020-000000000132}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000125}, !- Handle + {00000000-0000-0000-0052-000000000269}, !- Handle Secondary Boiler 0kBtu/hr 0.85 AFUE Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000061}, !- Inlet Port {00000000-0000-0000-0020-000000000062}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000126}, !- Handle + {00000000-0000-0000-0052-000000000270}, !- Handle Secondary Boiler 0kBtu/hr 0.85 AFUE Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000063}, !- Inlet Port {00000000-0000-0000-0020-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000127}, !- Handle + {00000000-0000-0000-0052-000000000271}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000146}, !- Inlet Port {00000000-0000-0000-0020-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000128}, !- Handle + {00000000-0000-0000-0052-000000000272}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000148}, !- Inlet Port {00000000-0000-0000-0020-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000129}, !- Handle + {00000000-0000-0000-0052-000000000273}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000111}, !- Inlet Port {00000000-0000-0000-0020-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000130}, !- Handle + {00000000-0000-0000-0052-000000000274}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000113}, !- Inlet Port {00000000-0000-0000-0020-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000131}, !- Handle + {00000000-0000-0000-0052-000000000275}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000213}, !- Inlet Port + {00000000-0000-0000-0020-000000000214}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000276}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000323}, !- Inlet Port + {00000000-0000-0000-0020-000000000324}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000277}, !- Handle + Sys6 Return Fan 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000433}, !- Inlet Port + {00000000-0000-0000-0020-000000000434}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000278}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000173}, !- Inlet Port {00000000-0000-0000-0020-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000132}, !- Handle + {00000000-0000-0000-0052-000000000279}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0020-000000000092}, !- Inlet Port {00000000-0000-0000-0020-000000000093}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000133}, !- Handle + {00000000-0000-0000-0052-000000000280}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0020-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000134}, !- Handle + {00000000-0000-0000-0052-000000000281}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000074}, !- Inlet Port {00000000-0000-0000-0020-000000000076}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000135}, !- Handle + {00000000-0000-0000-0052-000000000282}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000077}, !- Inlet Port {00000000-0000-0000-0020-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000136}, !- Handle + {00000000-0000-0000-0052-000000000283}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000086}, !- Inlet Port {00000000-0000-0000-0020-000000000087}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000137}, !- Handle + {00000000-0000-0000-0052-000000000284}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0020-000000000078}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000138}, !- Handle + {00000000-0000-0000-0052-000000000285}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name {00000000-0000-0000-0020-000000000079}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000139}, !- Handle + {00000000-0000-0000-0052-000000000286}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000072}, !- Inlet Port {00000000-0000-0000-0020-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000140}, !- Handle + {00000000-0000-0000-0052-000000000287}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000080}, !- Inlet Port {00000000-0000-0000-0020-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000141}, !- Handle + {00000000-0000-0000-0052-000000000288}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000191}, !- Inlet Port + {00000000-0000-0000-0020-000000000193}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000289}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000194}, !- Inlet Port + {00000000-0000-0000-0020-000000000192}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000290}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0020-000000000210}, !- Inlet Port + {00000000-0000-0000-0020-000000000211}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000291}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0020-000000000203}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000292}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0020-000000000204}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000293}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000189}, !- Inlet Port + {00000000-0000-0000-0020-000000000212}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000294}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000205}, !- Inlet Port + {00000000-0000-0000-0020-000000000190}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000295}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000301}, !- Inlet Port + {00000000-0000-0000-0020-000000000303}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000296}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000304}, !- Inlet Port + {00000000-0000-0000-0020-000000000302}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000297}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0020-000000000320}, !- Inlet Port + {00000000-0000-0000-0020-000000000321}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000298}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0020-000000000313}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000299}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0020-000000000314}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000300}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000299}, !- Inlet Port + {00000000-0000-0000-0020-000000000322}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000301}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000315}, !- Inlet Port + {00000000-0000-0000-0020-000000000300}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000302}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000411}, !- Inlet Port + {00000000-0000-0000-0020-000000000413}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000303}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000414}, !- Inlet Port + {00000000-0000-0000-0020-000000000412}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000304}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Mixed Air Node, !- Name + {00000000-0000-0000-0020-000000000430}, !- Inlet Port + {00000000-0000-0000-0020-000000000431}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000305}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0020-000000000423}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000306}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Relief Air Node, !- Name + {00000000-0000-0000-0020-000000000424}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000307}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000409}, !- Inlet Port + {00000000-0000-0000-0020-000000000432}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000308}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000425}, !- Inlet Port + {00000000-0000-0000-0020-000000000410}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000309}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000152}, !- Inlet Port {00000000-0000-0000-0020-000000000154}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000142}, !- Handle + {00000000-0000-0000-0052-000000000310}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000155}, !- Inlet Port {00000000-0000-0000-0020-000000000153}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000143}, !- Handle + {00000000-0000-0000-0052-000000000311}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000170}, !- Inlet Port {00000000-0000-0000-0020-000000000171}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000144}, !- Handle + {00000000-0000-0000-0052-000000000312}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0020-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000145}, !- Handle + {00000000-0000-0000-0052-000000000313}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name {00000000-0000-0000-0020-000000000164}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000146}, !- Handle + {00000000-0000-0000-0052-000000000314}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000150}, !- Inlet Port {00000000-0000-0000-0020-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0048-000000000147}, !- Handle + {00000000-0000-0000-0052-000000000315}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000165}, !- Inlet Port {00000000-0000-0000-0020-000000000151}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0049-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0050-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A People, !- Name - {00000000-0000-0000-0051-000000000001}, !- People Definition Name - {00000000-0000-0000-0080-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000001}, !- People Definition Name + {00000000-0000-0000-0084-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0061-000000000022}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0061-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0061-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0065-000000000025}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0065-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0065-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0050-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Handle Space Function Office - open plan People, !- Name - {00000000-0000-0000-0051-000000000002}, !- People Definition Name - {00000000-0000-0000-0080-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0055-000000000002}, !- People Definition Name + {00000000-0000-0000-0084-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0061-000000000022}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0061-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0061-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0065-000000000025}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0065-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0065-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0051-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Handle Space Function Electrical/Mechanical-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -5049,7 +10563,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0051-000000000002}, !- Handle + {00000000-0000-0000-0055-000000000002}, !- Handle Space Function Office - open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -5058,67 +10572,67 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0052-000000000001}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0020-000000000066}, !- Inlet Node Name {00000000-0000-0000-0020-000000000067}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0052-000000000002}, !- Handle + {00000000-0000-0000-0056-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0020-000000000213}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000214}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000543}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000544}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0052-000000000003}, !- Handle + {00000000-0000-0000-0056-000000000003}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0020-000000000070}, !- Inlet Node Name {00000000-0000-0000-0020-000000000071}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0052-000000000004}, !- Handle + {00000000-0000-0000-0056-000000000004}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0020-000000000116}, !- Inlet Node Name {00000000-0000-0000-0020-000000000117}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0052-000000000005}, !- Handle + {00000000-0000-0000-0056-000000000005}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0020-000000000120}, !- Inlet Node Name {00000000-0000-0000-0020-000000000121}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0052-000000000006}, !- Handle + {00000000-0000-0000-0056-000000000006}, !- Handle Pipe Adiabatic 5, !- Name {00000000-0000-0000-0020-000000000137}, !- Inlet Node Name {00000000-0000-0000-0020-000000000138}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0052-000000000007}, !- Handle + {00000000-0000-0000-0056-000000000007}, !- Handle Pipe Adiabatic 6, !- Name {00000000-0000-0000-0020-000000000141}, !- Inlet Node Name {00000000-0000-0000-0020-000000000142}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0052-000000000008}, !- Handle + {00000000-0000-0000-0056-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0020-000000000203}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000204}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000533}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000534}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0052-000000000009}, !- Handle + {00000000-0000-0000-0056-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0020-000000000206}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000207}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000536}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000537}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0052-000000000010}, !- Handle + {00000000-0000-0000-0056-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0020-000000000210}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000211}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000540}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000541}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0053-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -5126,7 +10640,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0048-000000000033}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000087}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5140,7 +10654,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5154,7 +10668,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0053-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -5162,7 +10676,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0048-000000000051}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000195}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5176,7 +10690,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5190,7 +10704,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000005}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0053-000000000003}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Handle Hot Water Loop, !- Name Water, !- Fluid Type 0, !- Glycol Concentration @@ -5198,7 +10712,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0048-000000000071}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000215}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5212,7 +10726,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5226,7 +10740,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0053-000000000004}, !- Handle + {00000000-0000-0000-0057-000000000004}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -5234,21 +10748,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0048-000000000076}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000220}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0020-000000000189}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0020-000000000191}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0020-000000000519}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0020-000000000521}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0020-000000000192}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0020-000000000195}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000522}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0020-000000000525}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5262,290 +10776,326 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000007}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0054-000000000001}, !- Handle - {00000000-0000-0000-0088-000000000010}; !- HVAC Component + {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000010}, !- HVAC Component + {00000000-0000-0000-0020-000000000293}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000002}, !- Handle - {00000000-0000-0000-0088-000000000010}; !- HVAC Component + {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0092-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000003}, !- Handle - {00000000-0000-0000-0088-000000000010}; !- HVAC Component + {00000000-0000-0000-0058-000000000003}, !- Handle + {00000000-0000-0000-0092-000000000010}, !- HVAC Component + {00000000-0000-0000-0020-000000000294}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000004}, !- Handle - {00000000-0000-0000-0088-000000000001}; !- HVAC Component + {00000000-0000-0000-0058-000000000004}, !- Handle + {00000000-0000-0000-0092-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000005}, !- Handle - {00000000-0000-0000-0088-000000000001}; !- HVAC Component + {00000000-0000-0000-0058-000000000005}, !- Handle + {00000000-0000-0000-0092-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000006}, !- Handle - {00000000-0000-0000-0088-000000000001}; !- HVAC Component + {00000000-0000-0000-0058-000000000006}, !- Handle + {00000000-0000-0000-0092-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000007}, !- Handle - {00000000-0000-0000-0088-000000000022}; !- HVAC Component + {00000000-0000-0000-0058-000000000007}, !- Handle + {00000000-0000-0000-0092-000000000022}, !- HVAC Component + {00000000-0000-0000-0020-000000000513}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000008}, !- Handle - {00000000-0000-0000-0088-000000000022}; !- HVAC Component + {00000000-0000-0000-0058-000000000008}, !- Handle + {00000000-0000-0000-0092-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000009}, !- Handle - {00000000-0000-0000-0088-000000000022}; !- HVAC Component + {00000000-0000-0000-0058-000000000009}, !- Handle + {00000000-0000-0000-0092-000000000022}, !- HVAC Component + {00000000-0000-0000-0020-000000000514}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000010}, !- Handle - {00000000-0000-0000-0088-000000000003}; !- HVAC Component + {00000000-0000-0000-0058-000000000010}, !- Handle + {00000000-0000-0000-0092-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000011}, !- Handle - {00000000-0000-0000-0088-000000000003}; !- HVAC Component + {00000000-0000-0000-0058-000000000011}, !- Handle + {00000000-0000-0000-0092-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000012}, !- Handle - {00000000-0000-0000-0088-000000000003}; !- HVAC Component + {00000000-0000-0000-0058-000000000012}, !- Handle + {00000000-0000-0000-0092-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000013}, !- Handle - {00000000-0000-0000-0088-000000000016}; !- HVAC Component + {00000000-0000-0000-0058-000000000013}, !- Handle + {00000000-0000-0000-0092-000000000016}, !- HVAC Component + {00000000-0000-0000-0020-000000000403}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000014}, !- Handle - {00000000-0000-0000-0088-000000000016}; !- HVAC Component + {00000000-0000-0000-0058-000000000014}, !- Handle + {00000000-0000-0000-0092-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000015}, !- Handle - {00000000-0000-0000-0088-000000000016}; !- HVAC Component + {00000000-0000-0000-0058-000000000015}, !- Handle + {00000000-0000-0000-0092-000000000016}, !- HVAC Component + {00000000-0000-0000-0020-000000000404}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000016}, !- Handle - {00000000-0000-0000-0088-000000000017}; !- HVAC Component + {00000000-0000-0000-0058-000000000016}, !- Handle + {00000000-0000-0000-0092-000000000017}, !- HVAC Component + {00000000-0000-0000-0020-000000000471}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000017}, !- Handle - {00000000-0000-0000-0088-000000000017}; !- HVAC Component + {00000000-0000-0000-0058-000000000017}, !- Handle + {00000000-0000-0000-0092-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000018}, !- Handle - {00000000-0000-0000-0088-000000000017}; !- HVAC Component + {00000000-0000-0000-0058-000000000018}, !- Handle + {00000000-0000-0000-0092-000000000017}, !- HVAC Component + {00000000-0000-0000-0020-000000000472}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000019}, !- Handle - {00000000-0000-0000-0088-000000000005}; !- HVAC Component + {00000000-0000-0000-0058-000000000019}, !- Handle + {00000000-0000-0000-0092-000000000005}, !- HVAC Component + {00000000-0000-0000-0020-000000000237}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000020}, !- Handle - {00000000-0000-0000-0088-000000000005}; !- HVAC Component + {00000000-0000-0000-0058-000000000020}, !- Handle + {00000000-0000-0000-0092-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000021}, !- Handle - {00000000-0000-0000-0088-000000000005}; !- HVAC Component + {00000000-0000-0000-0058-000000000021}, !- Handle + {00000000-0000-0000-0092-000000000005}, !- HVAC Component + {00000000-0000-0000-0020-000000000238}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000022}, !- Handle - {00000000-0000-0000-0088-000000000006}; !- HVAC Component + {00000000-0000-0000-0058-000000000022}, !- Handle + {00000000-0000-0000-0092-000000000006}, !- HVAC Component + {00000000-0000-0000-0020-000000000265}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000023}, !- Handle - {00000000-0000-0000-0088-000000000006}; !- HVAC Component + {00000000-0000-0000-0058-000000000023}, !- Handle + {00000000-0000-0000-0092-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000024}, !- Handle - {00000000-0000-0000-0088-000000000006}; !- HVAC Component + {00000000-0000-0000-0058-000000000024}, !- Handle + {00000000-0000-0000-0092-000000000006}, !- HVAC Component + {00000000-0000-0000-0020-000000000266}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000025}, !- Handle - {00000000-0000-0000-0088-000000000018}; !- HVAC Component + {00000000-0000-0000-0058-000000000025}, !- Handle + {00000000-0000-0000-0092-000000000018}, !- HVAC Component + {00000000-0000-0000-0020-000000000485}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000026}, !- Handle - {00000000-0000-0000-0088-000000000018}; !- HVAC Component + {00000000-0000-0000-0058-000000000026}, !- Handle + {00000000-0000-0000-0092-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000027}, !- Handle - {00000000-0000-0000-0088-000000000018}; !- HVAC Component + {00000000-0000-0000-0058-000000000027}, !- Handle + {00000000-0000-0000-0092-000000000018}, !- HVAC Component + {00000000-0000-0000-0020-000000000486}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000028}, !- Handle - {00000000-0000-0000-0088-000000000011}; !- HVAC Component + {00000000-0000-0000-0058-000000000028}, !- Handle + {00000000-0000-0000-0092-000000000011}, !- HVAC Component + {00000000-0000-0000-0020-000000000375}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000029}, !- Handle - {00000000-0000-0000-0088-000000000011}; !- HVAC Component + {00000000-0000-0000-0058-000000000029}, !- Handle + {00000000-0000-0000-0092-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000030}, !- Handle - {00000000-0000-0000-0088-000000000011}; !- HVAC Component + {00000000-0000-0000-0058-000000000030}, !- Handle + {00000000-0000-0000-0092-000000000011}, !- HVAC Component + {00000000-0000-0000-0020-000000000376}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000031}, !- Handle - {00000000-0000-0000-0088-000000000019}; !- HVAC Component + {00000000-0000-0000-0058-000000000031}, !- Handle + {00000000-0000-0000-0092-000000000019}, !- HVAC Component + {00000000-0000-0000-0020-000000000457}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000032}, !- Handle - {00000000-0000-0000-0088-000000000019}; !- HVAC Component + {00000000-0000-0000-0058-000000000032}, !- Handle + {00000000-0000-0000-0092-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000033}, !- Handle - {00000000-0000-0000-0088-000000000019}; !- HVAC Component + {00000000-0000-0000-0058-000000000033}, !- Handle + {00000000-0000-0000-0092-000000000019}, !- HVAC Component + {00000000-0000-0000-0020-000000000458}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000034}, !- Handle - {00000000-0000-0000-0088-000000000012}; !- HVAC Component + {00000000-0000-0000-0058-000000000034}, !- Handle + {00000000-0000-0000-0092-000000000012}, !- HVAC Component + {00000000-0000-0000-0020-000000000361}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000035}, !- Handle - {00000000-0000-0000-0088-000000000012}; !- HVAC Component + {00000000-0000-0000-0058-000000000035}, !- Handle + {00000000-0000-0000-0092-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000036}, !- Handle - {00000000-0000-0000-0088-000000000012}; !- HVAC Component + {00000000-0000-0000-0058-000000000036}, !- Handle + {00000000-0000-0000-0092-000000000012}, !- HVAC Component + {00000000-0000-0000-0020-000000000362}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000037}, !- Handle - {00000000-0000-0000-0088-000000000004}, !- HVAC Component + {00000000-0000-0000-0058-000000000037}, !- Handle + {00000000-0000-0000-0092-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000183}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000038}, !- Handle - {00000000-0000-0000-0088-000000000004}; !- HVAC Component + {00000000-0000-0000-0058-000000000038}, !- Handle + {00000000-0000-0000-0092-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000039}, !- Handle - {00000000-0000-0000-0088-000000000004}, !- HVAC Component + {00000000-0000-0000-0058-000000000039}, !- Handle + {00000000-0000-0000-0092-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000184}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000040}, !- Handle - {00000000-0000-0000-0088-000000000002}; !- HVAC Component + {00000000-0000-0000-0058-000000000040}, !- Handle + {00000000-0000-0000-0092-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000041}, !- Handle - {00000000-0000-0000-0088-000000000002}; !- HVAC Component + {00000000-0000-0000-0058-000000000041}, !- Handle + {00000000-0000-0000-0092-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000042}, !- Handle - {00000000-0000-0000-0088-000000000002}; !- HVAC Component + {00000000-0000-0000-0058-000000000042}, !- Handle + {00000000-0000-0000-0092-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000043}, !- Handle - {00000000-0000-0000-0088-000000000007}; !- HVAC Component + {00000000-0000-0000-0058-000000000043}, !- Handle + {00000000-0000-0000-0092-000000000007}, !- HVAC Component + {00000000-0000-0000-0020-000000000223}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000044}, !- Handle - {00000000-0000-0000-0088-000000000007}; !- HVAC Component + {00000000-0000-0000-0058-000000000044}, !- Handle + {00000000-0000-0000-0092-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000045}, !- Handle - {00000000-0000-0000-0088-000000000007}; !- HVAC Component + {00000000-0000-0000-0058-000000000045}, !- Handle + {00000000-0000-0000-0092-000000000007}, !- HVAC Component + {00000000-0000-0000-0020-000000000224}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000046}, !- Handle - {00000000-0000-0000-0088-000000000020}; !- HVAC Component + {00000000-0000-0000-0058-000000000046}, !- Handle + {00000000-0000-0000-0092-000000000020}, !- HVAC Component + {00000000-0000-0000-0020-000000000499}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000047}, !- Handle - {00000000-0000-0000-0088-000000000020}; !- HVAC Component + {00000000-0000-0000-0058-000000000047}, !- Handle + {00000000-0000-0000-0092-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000048}, !- Handle - {00000000-0000-0000-0088-000000000020}; !- HVAC Component + {00000000-0000-0000-0058-000000000048}, !- Handle + {00000000-0000-0000-0092-000000000020}, !- HVAC Component + {00000000-0000-0000-0020-000000000500}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000049}, !- Handle - {00000000-0000-0000-0088-000000000013}; !- HVAC Component + {00000000-0000-0000-0058-000000000049}, !- Handle + {00000000-0000-0000-0092-000000000013}, !- HVAC Component + {00000000-0000-0000-0020-000000000347}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000050}, !- Handle - {00000000-0000-0000-0088-000000000013}; !- HVAC Component + {00000000-0000-0000-0058-000000000050}, !- Handle + {00000000-0000-0000-0092-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000051}, !- Handle - {00000000-0000-0000-0088-000000000013}; !- HVAC Component + {00000000-0000-0000-0058-000000000051}, !- Handle + {00000000-0000-0000-0092-000000000013}, !- HVAC Component + {00000000-0000-0000-0020-000000000348}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000052}, !- Handle - {00000000-0000-0000-0088-000000000021}; !- HVAC Component + {00000000-0000-0000-0058-000000000052}, !- Handle + {00000000-0000-0000-0092-000000000021}, !- HVAC Component + {00000000-0000-0000-0020-000000000443}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000053}, !- Handle - {00000000-0000-0000-0088-000000000021}; !- HVAC Component + {00000000-0000-0000-0058-000000000053}, !- Handle + {00000000-0000-0000-0092-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000054}, !- Handle - {00000000-0000-0000-0088-000000000021}; !- HVAC Component + {00000000-0000-0000-0058-000000000054}, !- Handle + {00000000-0000-0000-0092-000000000021}, !- HVAC Component + {00000000-0000-0000-0020-000000000444}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000055}, !- Handle - {00000000-0000-0000-0088-000000000014}; !- HVAC Component + {00000000-0000-0000-0058-000000000055}, !- Handle + {00000000-0000-0000-0092-000000000014}, !- HVAC Component + {00000000-0000-0000-0020-000000000333}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000056}, !- Handle - {00000000-0000-0000-0088-000000000014}; !- HVAC Component + {00000000-0000-0000-0058-000000000056}, !- Handle + {00000000-0000-0000-0092-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000057}, !- Handle - {00000000-0000-0000-0088-000000000014}; !- HVAC Component + {00000000-0000-0000-0058-000000000057}, !- Handle + {00000000-0000-0000-0092-000000000014}, !- HVAC Component + {00000000-0000-0000-0020-000000000334}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000058}, !- Handle - {00000000-0000-0000-0088-000000000008}; !- HVAC Component + {00000000-0000-0000-0058-000000000058}, !- Handle + {00000000-0000-0000-0092-000000000008}, !- HVAC Component + {00000000-0000-0000-0020-000000000279}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000059}, !- Handle - {00000000-0000-0000-0088-000000000008}; !- HVAC Component + {00000000-0000-0000-0058-000000000059}, !- Handle + {00000000-0000-0000-0092-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000060}, !- Handle - {00000000-0000-0000-0088-000000000008}; !- HVAC Component + {00000000-0000-0000-0058-000000000060}, !- Handle + {00000000-0000-0000-0092-000000000008}, !- HVAC Component + {00000000-0000-0000-0020-000000000280}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000061}, !- Handle - {00000000-0000-0000-0088-000000000015}; !- HVAC Component + {00000000-0000-0000-0058-000000000061}, !- Handle + {00000000-0000-0000-0092-000000000015}, !- HVAC Component + {00000000-0000-0000-0020-000000000389}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000062}, !- Handle - {00000000-0000-0000-0088-000000000015}; !- HVAC Component + {00000000-0000-0000-0058-000000000062}, !- Handle + {00000000-0000-0000-0092-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000063}, !- Handle - {00000000-0000-0000-0088-000000000015}; !- HVAC Component + {00000000-0000-0000-0058-000000000063}, !- Handle + {00000000-0000-0000-0092-000000000015}, !- HVAC Component + {00000000-0000-0000-0020-000000000390}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000064}, !- Handle - {00000000-0000-0000-0088-000000000009}; !- HVAC Component + {00000000-0000-0000-0058-000000000064}, !- Handle + {00000000-0000-0000-0092-000000000009}, !- HVAC Component + {00000000-0000-0000-0020-000000000251}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000065}, !- Handle - {00000000-0000-0000-0088-000000000009}; !- HVAC Component + {00000000-0000-0000-0058-000000000065}, !- Handle + {00000000-0000-0000-0092-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000066}, !- Handle - {00000000-0000-0000-0088-000000000009}; !- HVAC Component + {00000000-0000-0000-0058-000000000066}, !- Handle + {00000000-0000-0000-0092-000000000009}, !- HVAC Component + {00000000-0000-0000-0020-000000000252}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000067}, !- Handle - {00000000-0000-0000-0088-000000000023}, !- HVAC Component + {00000000-0000-0000-0058-000000000067}, !- Handle + {00000000-0000-0000-0092-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000091}; !- Port 1 OS:PortList, - {00000000-0000-0000-0054-000000000068}, !- Handle - {00000000-0000-0000-0088-000000000023}; !- HVAC Component + {00000000-0000-0000-0058-000000000068}, !- Handle + {00000000-0000-0000-0092-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0054-000000000069}, !- Handle - {00000000-0000-0000-0088-000000000023}, !- HVAC Component + {00000000-0000-0000-0058-000000000069}, !- Handle + {00000000-0000-0000-0092-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000092}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0020-000000000196}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000197}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000526}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000527}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 739784.190131565, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -5564,14 +11114,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0020-000000000055}, !- Inlet Node Name {00000000-0000-0000-0020-000000000056}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.924, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5597,14 +11147,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0056-000000000002}, !- Handle + {00000000-0000-0000-0060-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0020-000000000105}, !- Inlet Node Name {00000000-0000-0000-0020-000000000106}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.936, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5630,14 +11180,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0056-000000000003}, !- Handle + {00000000-0000-0000-0060-000000000003}, !- Handle Pump Variable Speed 3, !- Name {00000000-0000-0000-0020-000000000130}, !- Inlet Node Name {00000000-0000-0000-0020-000000000131}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.954, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5663,322 +11213,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000003}, !- Handle + {00000000-0000-0000-0061-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000004}, !- Handle + {00000000-0000-0000-0061-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000005}, !- Handle + {00000000-0000-0000-0061-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000006}, !- Handle + {00000000-0000-0000-0061-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000007}, !- Handle + {00000000-0000-0000-0061-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000008}, !- Handle + {00000000-0000-0000-0061-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000009}, !- Handle + {00000000-0000-0000-0061-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000010}, !- Handle + {00000000-0000-0000-0061-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000011}, !- Handle + {00000000-0000-0000-0061-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000012}, !- Handle + {00000000-0000-0000-0061-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000013}, !- Handle + {00000000-0000-0000-0061-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000014}, !- Handle + {00000000-0000-0000-0061-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000015}, !- Handle + {00000000-0000-0000-0061-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000016}, !- Handle + {00000000-0000-0000-0061-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000017}, !- Handle + {00000000-0000-0000-0061-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000018}, !- Handle + {00000000-0000-0000-0061-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000019}, !- Handle + {00000000-0000-0000-0061-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000020}, !- Handle + {00000000-0000-0000-0061-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000021}, !- Handle + {00000000-0000-0000-0061-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000022}, !- Handle + {00000000-0000-0000-0061-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000023}, !- Handle + {00000000-0000-0000-0061-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000024}, !- Handle + {00000000-0000-0000-0061-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000025}, !- Handle + {00000000-0000-0000-0061-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000026}, !- Handle + {00000000-0000-0000-0061-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000027}, !- Handle + {00000000-0000-0000-0061-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000028}, !- Handle + {00000000-0000-0000-0061-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000029}, !- Handle + {00000000-0000-0000-0061-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000030}, !- Handle + {00000000-0000-0000-0061-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000031}, !- Handle + {00000000-0000-0000-0061-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000032}, !- Handle + {00000000-0000-0000-0061-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000033}, !- Handle + {00000000-0000-0000-0061-000000000033}, !- Handle Space Function Electrical/Mechanical-sch-A 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000034}, !- Handle + {00000000-0000-0000-0061-000000000034}, !- Handle Space Function Electrical/Mechanical-sch-A 2, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000035}, !- Handle + {00000000-0000-0000-0061-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000036}, !- Handle + {00000000-0000-0000-0061-000000000036}, !- Handle Space Function Office - open plan 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000037}, !- Handle + {00000000-0000-0000-0061-000000000037}, !- Handle Space Function Office - open plan 2, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000038}, !- Handle + {00000000-0000-0000-0061-000000000038}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0057-000000000039}, !- Handle + {00000000-0000-0000-0061-000000000039}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0062-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0062-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000002}, !- Handle + {00000000-0000-0000-0063-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000003}, !- Handle + {00000000-0000-0000-0063-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000004}, !- Handle + {00000000-0000-0000-0063-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000005}, !- Handle + {00000000-0000-0000-0063-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5987,36 +11537,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000006}, !- Handle + {00000000-0000-0000-0063-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000007}, !- Handle + {00000000-0000-0000-0063-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000008}, !- Handle + {00000000-0000-0000-0063-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000009}, !- Handle + {00000000-0000-0000-0063-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6041,9 +11591,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000010}, !- Handle + {00000000-0000-0000-0063-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6068,27 +11618,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000011}, !- Handle + {00000000-0000-0000-0063-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000012}, !- Handle + {00000000-0000-0000-0063-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000013}, !- Handle + {00000000-0000-0000-0063-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6119,9 +11669,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000014}, !- Handle + {00000000-0000-0000-0063-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6152,27 +11702,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000015}, !- Handle + {00000000-0000-0000-0063-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000016}, !- Handle + {00000000-0000-0000-0063-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000017}, !- Handle + {00000000-0000-0000-0063-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6206,9 +11756,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000018}, !- Handle + {00000000-0000-0000-0063-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6242,27 +11792,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000019}, !- Handle + {00000000-0000-0000-0063-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000020}, !- Handle + {00000000-0000-0000-0063-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000021}, !- Handle + {00000000-0000-0000-0063-000000000021}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6293,9 +11843,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000022}, !- Handle + {00000000-0000-0000-0063-000000000022}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6326,27 +11876,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000023}, !- Handle + {00000000-0000-0000-0063-000000000023}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000024}, !- Handle + {00000000-0000-0000-0063-000000000024}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000025}, !- Handle + {00000000-0000-0000-0063-000000000025}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6359,9 +11909,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000026}, !- Handle + {00000000-0000-0000-0063-000000000026}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6374,27 +11924,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000027}, !- Handle + {00000000-0000-0000-0063-000000000027}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000028}, !- Handle + {00000000-0000-0000-0063-000000000028}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000029}, !- Handle + {00000000-0000-0000-0063-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6410,9 +11960,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000030}, !- Handle + {00000000-0000-0000-0063-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6428,70 +11978,124 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000031}, !- Handle + {00000000-0000-0000-0063-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000032}, !- Handle + {00000000-0000-0000-0063-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000033}, !- Handle + {00000000-0000-0000-0063-000000000033}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000001}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 130; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000034}, !- Handle + NECB-Activity Summer Design Day, !- Name + {00000000-0000-0000-0066-000000000001}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 130; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000035}, !- Handle + NECB-Activity Winter Design Day, !- Name + {00000000-0000-0000-0066-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 130; !- Value Until Time 1 + 130; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000036}, !- Handle + Schedule Day 1, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000037}, !- Handle + Schedule Day 10, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000038}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000039}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000034}, !- Handle - NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Type Limits Name - No, !- Interpolate to Timestep + {00000000-0000-0000-0063-000000000040}, !- Handle + Schedule Day 13, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 130; !- Value Until Time 1 + 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000035}, !- Handle - NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Type Limits Name - No, !- Interpolate to Timestep + {00000000-0000-0000-0063-000000000041}, !- Handle + Schedule Day 14, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 130; !- Value Until Time 1 + 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000036}, !- Handle - Schedule Day 1, !- Name - , !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000042}, !- Handle + Schedule Day 15, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000037}, !- Handle - Schedule Day 10, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000043}, !- Handle + Schedule Day 16, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000038}, !- Handle + {00000000-0000-0000-0063-000000000044}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6500,9 +12104,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000039}, !- Handle + {00000000-0000-0000-0063-000000000045}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6578,9 +12182,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000040}, !- Handle + {00000000-0000-0000-0063-000000000046}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6656,90 +12260,117 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000041}, !- Handle + {00000000-0000-0000-0063-000000000047}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000042}, !- Handle + {00000000-0000-0000-0063-000000000048}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000043}, !- Handle + {00000000-0000-0000-0063-000000000049}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000044}, !- Handle + {00000000-0000-0000-0063-000000000050}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000045}, !- Handle + {00000000-0000-0000-0063-000000000051}, !- Handle Schedule Day 9, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000046}, !- Handle + {00000000-0000-0000-0063-000000000052}, !- Handle Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000047}, !- Handle + {00000000-0000-0000-0063-000000000053}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000054}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000055}, !- Handle + Supply Air Temp Default 3, !- Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000056}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000048}, !- Handle + {00000000-0000-0000-0063-000000000057}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000049}, !- Handle + {00000000-0000-0000-0063-000000000058}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000050}, !- Handle + {00000000-0000-0000-0063-000000000059}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6815,9 +12446,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000051}, !- Handle + {00000000-0000-0000-0063-000000000060}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6893,9 +12524,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000052}, !- Handle + {00000000-0000-0000-0063-000000000061}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6971,9 +12602,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000053}, !- Handle + {00000000-0000-0000-0063-000000000062}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7049,9 +12680,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000054}, !- Handle + {00000000-0000-0000-0063-000000000063}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7127,9 +12758,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000055}, !- Handle + {00000000-0000-0000-0063-000000000064}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7205,9 +12836,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000056}, !- Handle + {00000000-0000-0000-0063-000000000065}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7283,9 +12914,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000057}, !- Handle + {00000000-0000-0000-0063-000000000066}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7361,9 +12992,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000058}, !- Handle + {00000000-0000-0000-0063-000000000067}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -7376,27 +13007,126 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000059}, !- Handle + {00000000-0000-0000-0063-000000000068}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000060}, !- Handle + {00000000-0000-0000-0063-000000000069}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000070}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000071}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000072}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000073}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000074}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000075}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000076}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Default, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000077}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000078}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000061}, !- Handle + {00000000-0000-0000-0063-000000000079}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -7409,27 +13139,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000062}, !- Handle + {00000000-0000-0000-0063-000000000080}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000063}, !- Handle + {00000000-0000-0000-0063-000000000081}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000064}, !- Handle + {00000000-0000-0000-0063-000000000082}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7505,9 +13235,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000065}, !- Handle + {00000000-0000-0000-0063-000000000083}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7583,9 +13313,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000066}, !- Handle + {00000000-0000-0000-0063-000000000084}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7661,9 +13391,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0059-000000000067}, !- Handle + {00000000-0000-0000-0063-000000000085}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7739,11 +13469,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0061-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7758,11 +13488,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000002}, !- Handle + {00000000-0000-0000-0064-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0061-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7777,11 +13507,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000003}, !- Handle + {00000000-0000-0000-0064-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0061-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0059-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7796,11 +13526,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000004}, !- Handle + {00000000-0000-0000-0064-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0061-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0059-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7815,11 +13545,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000005}, !- Handle + {00000000-0000-0000-0064-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0061-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7834,11 +13564,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000006}, !- Handle + {00000000-0000-0000-0064-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0061-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0059-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7853,11 +13583,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000007}, !- Handle + {00000000-0000-0000-0064-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0061-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0059-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7872,11 +13602,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000008}, !- Handle + {00000000-0000-0000-0064-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0061-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000028}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7891,11 +13621,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000009}, !- Handle + {00000000-0000-0000-0064-000000000009}, !- Handle Schedule Rule 17, !- Name - {00000000-0000-0000-0061-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000013}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0059-000000000022}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000022}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7910,11 +13640,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000010}, !- Handle + {00000000-0000-0000-0064-000000000010}, !- Handle Schedule Rule 18, !- Name - {00000000-0000-0000-0061-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0059-000000000023}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7929,11 +13659,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000011}, !- Handle + {00000000-0000-0000-0064-000000000011}, !- Handle Schedule Rule 19, !- Name - {00000000-0000-0000-0061-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000024}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7948,11 +13678,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000012}, !- Handle + {00000000-0000-0000-0064-000000000012}, !- Handle Schedule Rule 2, !- Name - {00000000-0000-0000-0061-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0059-000000000018}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000018}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7967,11 +13697,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000013}, !- Handle + {00000000-0000-0000-0064-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0061-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000026}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0059-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000049}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7986,11 +13716,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000014}, !- Handle + {00000000-0000-0000-0064-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0061-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000026}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000044}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000050}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8005,11 +13735,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000015}, !- Handle + {00000000-0000-0000-0064-000000000015}, !- Handle Schedule Rule 22, !- Name - {00000000-0000-0000-0061-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000030}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0059-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000051}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8024,11 +13754,125 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000016}, !- Handle + {00000000-0000-0000-0064-000000000016}, !- Handle Schedule Rule 23, !- Name - {00000000-0000-0000-0061-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000030}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0063-000000000037}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0064-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0065-000000000027}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0063-000000000038}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0064-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0065-000000000027}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0063-000000000039}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0064-000000000019}, !- Handle + Schedule Rule 26, !- Name + {00000000-0000-0000-0065-000000000028}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0063-000000000040}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0064-000000000020}, !- Handle + Schedule Rule 27, !- Name + {00000000-0000-0000-0065-000000000028}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0063-000000000041}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0064-000000000021}, !- Handle + Schedule Rule 28, !- Name + {00000000-0000-0000-0065-000000000029}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0063-000000000042}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0064-000000000022}, !- Handle + Schedule Rule 29, !- Name + {00000000-0000-0000-0065-000000000029}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000037}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8043,11 +13887,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000017}, !- Handle + {00000000-0000-0000-0064-000000000023}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0061-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0059-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000019}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8062,11 +13906,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000018}, !- Handle + {00000000-0000-0000-0064-000000000024}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0061-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8081,11 +13925,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000019}, !- Handle + {00000000-0000-0000-0064-000000000025}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0061-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0059-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8100,11 +13944,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000020}, !- Handle + {00000000-0000-0000-0064-000000000026}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0061-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0059-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8119,11 +13963,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000021}, !- Handle + {00000000-0000-0000-0064-000000000027}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0061-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8138,11 +13982,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000022}, !- Handle + {00000000-0000-0000-0064-000000000028}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0061-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0059-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8157,11 +14001,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000023}, !- Handle + {00000000-0000-0000-0064-000000000029}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0061-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0059-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8176,11 +14020,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000024}, !- Handle + {00000000-0000-0000-0064-000000000030}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0061-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0059-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000059}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8195,11 +14039,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000025}, !- Handle + {00000000-0000-0000-0064-000000000031}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0061-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0059-000000000052}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000061}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8214,11 +14058,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000026}, !- Handle + {00000000-0000-0000-0064-000000000032}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0061-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000063}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8233,11 +14077,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000027}, !- Handle + {00000000-0000-0000-0064-000000000033}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0061-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0059-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000065}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8252,11 +14096,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000028}, !- Handle + {00000000-0000-0000-0064-000000000034}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0061-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0059-000000000064}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000082}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8271,11 +14115,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0060-000000000029}, !- Handle + {00000000-0000-0000-0064-000000000035}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0061-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0059-000000000066}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000084}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8290,157 +14134,199 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0062-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0065-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000003}, !- Handle + {00000000-0000-0000-0065-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0062-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000039}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000004}, !- Handle + {00000000-0000-0000-0065-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000040}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000005}, !- Handle + {00000000-0000-0000-0065-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000006}, !- Handle + {00000000-0000-0000-0065-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000007}, !- Handle + {00000000-0000-0000-0065-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000008}, !- Handle + {00000000-0000-0000-0065-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000009}, !- Handle + {00000000-0000-0000-0065-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000010}, !- Handle + {00000000-0000-0000-0065-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000011}, !- Handle + {00000000-0000-0000-0065-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000012}, !- Handle + {00000000-0000-0000-0065-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000013}, !- Handle + {00000000-0000-0000-0065-000000000013}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000021}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000021}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000014}, !- Handle + {00000000-0000-0000-0065-000000000014}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000015}, !- Handle + {00000000-0000-0000-0065-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000016}, !- Handle + {00000000-0000-0000-0065-000000000016}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0062-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000033}, !- Default Day Schedule Name - {00000000-0000-0000-0059-000000000034}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0059-000000000035}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0066-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000033}, !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000034}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0063-000000000035}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000017}, !- Handle + {00000000-0000-0000-0065-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000018}, !- Handle + {00000000-0000-0000-0065-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000042}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000019}, !- Handle + {00000000-0000-0000-0065-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000020}, !- Handle + {00000000-0000-0000-0065-000000000020}, !- Handle + Supply Air Temp 1, !- Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000053}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0065-000000000021}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000054}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0065-000000000022}, !- Handle + Supply Air Temp 3, !- Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000055}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0065-000000000023}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0062-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000056}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000021}, !- Handle + {00000000-0000-0000-0065-000000000024}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0062-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000057}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000022}, !- Handle + {00000000-0000-0000-0065-000000000025}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000049}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000058}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000023}, !- Handle + {00000000-0000-0000-0065-000000000026}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000058}, !- Default Day Schedule Name - {00000000-0000-0000-0059-000000000059}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0059-000000000060}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000067}, !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000068}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0063-000000000069}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0061-000000000024}, !- Handle + {00000000-0000-0000-0065-000000000027}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000070}, !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000071}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0063-000000000072}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0065-000000000028}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000073}, !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000074}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0063-000000000075}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0065-000000000029}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000076}, !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000077}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0063-000000000078}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0065-000000000030}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0059-000000000061}, !- Default Day Schedule Name - {00000000-0000-0000-0059-000000000062}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0059-000000000063}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000079}, !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000080}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0063-000000000081}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8448,7 +14334,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0062-000000000002}, !- Handle + {00000000-0000-0000-0066-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -8456,7 +14342,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0062-000000000003}, !- Handle + {00000000-0000-0000-0066-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8464,14 +14350,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0062-000000000004}, !- Handle + {00000000-0000-0000-0066-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0062-000000000005}, !- Handle + {00000000-0000-0000-0066-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -8479,7 +14365,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0062-000000000006}, !- Handle + {00000000-0000-0000-0066-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8487,7 +14373,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0062-000000000007}, !- Handle + {00000000-0000-0000-0066-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8495,7 +14381,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0062-000000000008}, !- Handle + {00000000-0000-0000-0066-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8503,7 +14389,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0062-000000000009}, !- Handle + {00000000-0000-0000-0066-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8511,14 +14397,14 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:OutdoorAirReset, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle Setpoint Manager Outdoor Air Reset 1, !- Name Temperature, !- Control Variable 82, !- Setpoint at Outdoor Low Temperature {C} -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0048-000000000071}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000215}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -8526,43 +14412,64 @@ OS:SetpointManager:OutdoorAirReset, ; !- Outdoor High Temperature 2 {C} OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0061-000000000019}, !- Schedule Name - {00000000-0000-0000-0048-000000000076}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0065-000000000019}, !- Schedule Name + {00000000-0000-0000-0052-000000000220}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000002}, !- Handle + {00000000-0000-0000-0068-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0061-000000000003}, !- Schedule Name - {00000000-0000-0000-0048-000000000033}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0065-000000000003}, !- Schedule Name + {00000000-0000-0000-0052-000000000087}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0068-000000000003}, !- Handle + Setpoint Manager Scheduled 2, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0065-000000000004}, !- Schedule Name + {00000000-0000-0000-0052-000000000195}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0068-000000000004}, !- Handle + Setpoint Manager Scheduled 3, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0065-000000000023}, !- Schedule Name + {00000000-0000-0000-0052-000000000315}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0068-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0065-000000000020}, !- Schedule Name + {00000000-0000-0000-0052-000000000294}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000003}, !- Handle - Setpoint Manager Scheduled 2, !- Name + {00000000-0000-0000-0068-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0061-000000000004}, !- Schedule Name - {00000000-0000-0000-0048-000000000051}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0065-000000000021}, !- Schedule Name + {00000000-0000-0000-0052-000000000301}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0064-000000000004}, !- Handle - Setpoint Manager Scheduled 3, !- Name + {00000000-0000-0000-0068-000000000007}, !- Handle + Setpoint Manager Scheduled 6, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0061-000000000020}, !- Schedule Name - {00000000-0000-0000-0048-000000000147}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0065-000000000022}, !- Schedule Name + {00000000-0000-0000-0052-000000000308}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0069-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0088-000000000023}, !- Control Zone Name - {00000000-0000-0000-0048-000000000140}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0092-000000000023}, !- Control Zone Name + {00000000-0000-0000-0052-000000000287}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0070-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -8577,7 +14484,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0071-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -8586,7 +14493,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0072-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -8601,7 +14508,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0073-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -8616,7 +14523,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0074-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -8631,7 +14538,7 @@ OS:Site:GroundTemperature:FCfactorMethod, 11.1; !- December Ground Temperature {C} OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle -1.6, !- January Surface Ground Temperature {C} -5.4, !- February Surface Ground Temperature {C} -6.4, !- March Surface Ground Temperature {C} @@ -8646,20 +14553,20 @@ OS:Site:GroundTemperature:Shallow, 4; !- December Surface Ground Temperature {C} OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0076-000000000001}, !- Handle Correlation, !- Calculation Method , !- Temperature Schedule Name 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} OS:Sizing:Parameters, - {00000000-0000-0000-0073-000000000001}, !- Handle + {00000000-0000-0000-0077-000000000001}, !- Handle 1.3, !- Heating Sizing Factor 1.1; !- Cooling Sizing Factor OS:Sizing:Plant, - {00000000-0000-0000-0074-000000000001}, !- Handle - {00000000-0000-0000-0053-000000000003}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Plant or Condenser Loop Name Heating, !- Loop Type 82, !- Design Loop Exit Temperature {C} 16, !- Loop Design Temperature Difference {deltaC} @@ -8668,8 +14575,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0074-000000000002}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0078-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Plant or Condenser Loop Name Cooling, !- Loop Type 7, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -8678,8 +14585,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0074-000000000003}, !- Handle - {00000000-0000-0000-0053-000000000002}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Plant or Condenser Loop Name Condenser, !- Loop Type 29, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -8688,8 +14595,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0074-000000000004}, !- Handle - {00000000-0000-0000-0053-000000000004}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0078-000000000004}, !- Handle + {00000000-0000-0000-0057-000000000004}, !- Plant or Condenser Loop Name Heating, !- Loop Type 60, !- Design Loop Exit Temperature {C} 5, !- Loop Design Temperature Difference {deltaC} @@ -8698,7 +14605,7 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0075-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name Sensible, !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -8739,7 +14646,48 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0075-000000000002}, !- Handle + {00000000-0000-0000-0079-000000000002}, !- Handle + {00000000-0000-0000-0002-000000000005}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0079-000000000003}, !- Handle {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -8779,19 +14727,101 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0079-000000000004}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0079-000000000005}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000001}, !- Handle - {00000000-0000-0000-0088-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000010}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8815,8 +14845,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000002}, !- Handle - {00000000-0000-0000-0088-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8850,18 +14880,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000003}, !- Handle - {00000000-0000-0000-0088-000000000022}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0092-000000000022}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8885,8 +14915,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000004}, !- Handle - {00000000-0000-0000-0088-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0080-000000000004}, !- Handle + {00000000-0000-0000-0092-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8920,18 +14950,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000005}, !- Handle - {00000000-0000-0000-0088-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000005}, !- Handle + {00000000-0000-0000-0092-000000000016}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8955,18 +14985,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000006}, !- Handle - {00000000-0000-0000-0088-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000006}, !- Handle + {00000000-0000-0000-0092-000000000017}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8990,18 +15020,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000007}, !- Handle - {00000000-0000-0000-0088-000000000005}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000007}, !- Handle + {00000000-0000-0000-0092-000000000005}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9025,18 +15055,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000008}, !- Handle - {00000000-0000-0000-0088-000000000006}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000008}, !- Handle + {00000000-0000-0000-0092-000000000006}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9060,18 +15090,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000009}, !- Handle - {00000000-0000-0000-0088-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000009}, !- Handle + {00000000-0000-0000-0092-000000000018}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9095,18 +15125,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000010}, !- Handle - {00000000-0000-0000-0088-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000010}, !- Handle + {00000000-0000-0000-0092-000000000011}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9130,18 +15160,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000011}, !- Handle - {00000000-0000-0000-0088-000000000019}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000011}, !- Handle + {00000000-0000-0000-0092-000000000019}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9165,18 +15195,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000012}, !- Handle - {00000000-0000-0000-0088-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000012}, !- Handle + {00000000-0000-0000-0092-000000000012}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9200,8 +15230,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000013}, !- Handle - {00000000-0000-0000-0088-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0080-000000000013}, !- Handle + {00000000-0000-0000-0092-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9235,8 +15265,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000014}, !- Handle - {00000000-0000-0000-0088-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0080-000000000014}, !- Handle + {00000000-0000-0000-0092-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9270,18 +15300,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000015}, !- Handle - {00000000-0000-0000-0088-000000000007}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000015}, !- Handle + {00000000-0000-0000-0092-000000000007}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9305,18 +15335,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000016}, !- Handle - {00000000-0000-0000-0088-000000000020}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000016}, !- Handle + {00000000-0000-0000-0092-000000000020}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9340,18 +15370,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000017}, !- Handle - {00000000-0000-0000-0088-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000017}, !- Handle + {00000000-0000-0000-0092-000000000013}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9375,18 +15405,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000018}, !- Handle - {00000000-0000-0000-0088-000000000021}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000018}, !- Handle + {00000000-0000-0000-0092-000000000021}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9410,18 +15440,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000019}, !- Handle - {00000000-0000-0000-0088-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000019}, !- Handle + {00000000-0000-0000-0092-000000000014}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9445,18 +15475,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000020}, !- Handle - {00000000-0000-0000-0088-000000000008}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000020}, !- Handle + {00000000-0000-0000-0092-000000000008}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9480,18 +15510,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000021}, !- Handle - {00000000-0000-0000-0088-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000021}, !- Handle + {00000000-0000-0000-0092-000000000015}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9515,18 +15545,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000022}, !- Handle - {00000000-0000-0000-0088-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0080-000000000022}, !- Handle + {00000000-0000-0000-0092-000000000009}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9550,8 +15580,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0076-000000000023}, !- Handle - {00000000-0000-0000-0088-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0080-000000000023}, !- Handle + {00000000-0000-0000-0092-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9585,7 +15615,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9613,7 +15643,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0077-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9641,7 +15671,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0077-000000000003}, !- Handle + {00000000-0000-0000-0081-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9665,9 +15695,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0082-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0080-000000000002}, !- Space Type Name + {00000000-0000-0000-0084-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9675,16 +15705,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0088-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000002}, !- Handle + {00000000-0000-0000-0082-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9692,16 +15722,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0082-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9709,16 +15739,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000004}, !- Handle + {00000000-0000-0000-0082-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9726,16 +15756,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000005}, !- Handle + {00000000-0000-0000-0082-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9743,16 +15773,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0088-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000006}, !- Handle + {00000000-0000-0000-0082-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9760,16 +15790,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000007}, !- Handle + {00000000-0000-0000-0082-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9777,16 +15807,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000008}, !- Handle + {00000000-0000-0000-0082-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9794,16 +15824,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000009}, !- Handle + {00000000-0000-0000-0082-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0080-000000000001}, !- Space Type Name + {00000000-0000-0000-0084-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9811,16 +15841,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000010}, !- Handle + {00000000-0000-0000-0082-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0080-000000000001}, !- Space Type Name + {00000000-0000-0000-0084-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9828,16 +15858,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000011}, !- Handle + {00000000-0000-0000-0082-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9845,16 +15875,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000012}, !- Handle + {00000000-0000-0000-0082-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9862,16 +15892,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000013}, !- Handle + {00000000-0000-0000-0082-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9879,16 +15909,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000014}, !- Handle + {00000000-0000-0000-0082-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9896,16 +15926,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0088-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000015}, !- Handle + {00000000-0000-0000-0082-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9913,16 +15943,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000016}, !- Handle + {00000000-0000-0000-0082-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9930,16 +15960,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000017}, !- Handle + {00000000-0000-0000-0082-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9947,16 +15977,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000018}, !- Handle + {00000000-0000-0000-0082-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9964,16 +15994,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0088-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000019}, !- Handle + {00000000-0000-0000-0082-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9981,16 +16011,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000020}, !- Handle + {00000000-0000-0000-0082-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9998,16 +16028,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000021}, !- Handle + {00000000-0000-0000-0082-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10015,16 +16045,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000022}, !- Handle + {00000000-0000-0000-0082-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0080-000000000003}, !- Space Type Name + {00000000-0000-0000-0084-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10032,16 +16062,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0078-000000000023}, !- Handle + {00000000-0000-0000-0082-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0080-000000000001}, !- Space Type Name + {00000000-0000-0000-0084-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10049,17 +16079,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0088-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0092-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0078-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10071,10 +16101,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000002}, !- Handle + {00000000-0000-0000-0083-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0078-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10086,10 +16116,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0083-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0078-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10101,10 +16131,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000004}, !- Handle + {00000000-0000-0000-0083-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0078-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10116,10 +16146,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000005}, !- Handle + {00000000-0000-0000-0083-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0078-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10131,10 +16161,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000006}, !- Handle + {00000000-0000-0000-0083-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0078-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10146,10 +16176,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000007}, !- Handle + {00000000-0000-0000-0083-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0078-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10161,10 +16191,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000008}, !- Handle + {00000000-0000-0000-0083-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0078-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10176,10 +16206,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000009}, !- Handle + {00000000-0000-0000-0083-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0078-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10191,10 +16221,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000010}, !- Handle + {00000000-0000-0000-0083-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0078-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10206,10 +16236,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000011}, !- Handle + {00000000-0000-0000-0083-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0078-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10221,10 +16251,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000012}, !- Handle + {00000000-0000-0000-0083-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0078-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10236,10 +16266,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000013}, !- Handle + {00000000-0000-0000-0083-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0078-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10251,10 +16281,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000014}, !- Handle + {00000000-0000-0000-0083-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0078-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10266,10 +16296,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0079-000000000015}, !- Handle + {00000000-0000-0000-0083-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0078-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0058-000000000001}, !- Schedule Name + {00000000-0000-0000-0082-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0062-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10281,46 +16311,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0057-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0061-000000000031}, !- Group Rendering Name {00000000-0000-0000-0035-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0084-000000000002}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0057-000000000034}, !- Group Rendering Name + {00000000-0000-0000-0061-000000000034}, !- Group Rendering Name {00000000-0000-0000-0035-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0084-000000000003}, !- Handle Space Function Office - open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0057-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0061-000000000037}, !- Group Rendering Name {00000000-0000-0000-0035-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office - open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0085-000000000001}, !- Handle {00000000-0000-0000-0023-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0085-000000000002}, !- Handle {00000000-0000-0000-0023-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10329,7 +16359,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0085-000000000003}, !- Handle {00000000-0000-0000-0023-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10338,7 +16368,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000004}, !- Handle + {00000000-0000-0000-0085-000000000004}, !- Handle {00000000-0000-0000-0023-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -10347,25 +16377,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000005}, !- Handle + {00000000-0000-0000-0085-000000000005}, !- Handle {00000000-0000-0000-0023-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000006}, !- Handle + {00000000-0000-0000-0085-000000000006}, !- Handle {00000000-0000-0000-0023-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000007}, !- Handle + {00000000-0000-0000-0085-000000000007}, !- Handle {00000000-0000-0000-0023-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000008}, !- Handle + {00000000-0000-0000-0085-000000000008}, !- Handle {00000000-0000-0000-0023-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10374,7 +16404,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000009}, !- Handle + {00000000-0000-0000-0085-000000000009}, !- Handle {00000000-0000-0000-0023-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10383,7 +16413,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000010}, !- Handle + {00000000-0000-0000-0085-000000000010}, !- Handle {00000000-0000-0000-0023-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10392,12 +16422,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000011}, !- Handle + {00000000-0000-0000-0085-000000000011}, !- Handle {00000000-0000-0000-0023-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000012}, !- Handle + {00000000-0000-0000-0085-000000000012}, !- Handle {00000000-0000-0000-0023-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -10406,12 +16436,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000013}, !- Handle + {00000000-0000-0000-0085-000000000013}, !- Handle {00000000-0000-0000-0023-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000014}, !- Handle + {00000000-0000-0000-0085-000000000014}, !- Handle {00000000-0000-0000-0023-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -10420,34 +16450,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000015}, !- Handle + {00000000-0000-0000-0085-000000000015}, !- Handle {00000000-0000-0000-0023-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000016}, !- Handle + {00000000-0000-0000-0085-000000000016}, !- Handle {00000000-0000-0000-0023-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000017}, !- Handle + {00000000-0000-0000-0085-000000000017}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000018}, !- Handle + {00000000-0000-0000-0085-000000000018}, !- Handle {00000000-0000-0000-0023-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000019}, !- Handle + {00000000-0000-0000-0085-000000000019}, !- Handle {00000000-0000-0000-0023-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000020}, !- Handle + {00000000-0000-0000-0085-000000000020}, !- Handle {00000000-0000-0000-0023-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10456,7 +16486,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000021}, !- Handle + {00000000-0000-0000-0085-000000000021}, !- Handle {00000000-0000-0000-0023-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10465,7 +16495,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000022}, !- Handle + {00000000-0000-0000-0085-000000000022}, !- Handle {00000000-0000-0000-0023-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -10474,7 +16504,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000023}, !- Handle + {00000000-0000-0000-0085-000000000023}, !- Handle {00000000-0000-0000-0023-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10483,7 +16513,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000024}, !- Handle + {00000000-0000-0000-0085-000000000024}, !- Handle {00000000-0000-0000-0023-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10492,7 +16522,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000025}, !- Handle + {00000000-0000-0000-0085-000000000025}, !- Handle {00000000-0000-0000-0023-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10501,7 +16531,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000026}, !- Handle + {00000000-0000-0000-0085-000000000026}, !- Handle {00000000-0000-0000-0023-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -10510,7 +16540,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0081-000000000027}, !- Handle + {00000000-0000-0000-0085-000000000027}, !- Handle {00000000-0000-0000-0023-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -10519,135 +16549,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000001}, !- Handle - {00000000-0000-0000-0045-000000000021}; !- Material Name + {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0049-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000002}, !- Handle - {00000000-0000-0000-0046-000000000013}; !- Material Name + {00000000-0000-0000-0086-000000000002}, !- Handle + {00000000-0000-0000-0050-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000003}, !- Handle - {00000000-0000-0000-0045-000000000008}; !- Material Name + {00000000-0000-0000-0086-000000000003}, !- Handle + {00000000-0000-0000-0049-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000004}, !- Handle - {00000000-0000-0000-0046-000000000007}; !- Material Name + {00000000-0000-0000-0086-000000000004}, !- Handle + {00000000-0000-0000-0050-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000005}, !- Handle - {00000000-0000-0000-0045-000000000006}; !- Material Name + {00000000-0000-0000-0086-000000000005}, !- Handle + {00000000-0000-0000-0049-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000006}, !- Handle - {00000000-0000-0000-0045-000000000014}; !- Material Name + {00000000-0000-0000-0086-000000000006}, !- Handle + {00000000-0000-0000-0049-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000007}, !- Handle - {00000000-0000-0000-0045-000000000002}; !- Material Name + {00000000-0000-0000-0086-000000000007}, !- Handle + {00000000-0000-0000-0049-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000008}, !- Handle - {00000000-0000-0000-0045-000000000024}; !- Material Name + {00000000-0000-0000-0086-000000000008}, !- Handle + {00000000-0000-0000-0049-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000009}, !- Handle - {00000000-0000-0000-0045-000000000003}; !- Material Name + {00000000-0000-0000-0086-000000000009}, !- Handle + {00000000-0000-0000-0049-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000010}, !- Handle - {00000000-0000-0000-0045-000000000019}; !- Material Name + {00000000-0000-0000-0086-000000000010}, !- Handle + {00000000-0000-0000-0049-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000011}, !- Handle - {00000000-0000-0000-0045-000000000012}; !- Material Name + {00000000-0000-0000-0086-000000000011}, !- Handle + {00000000-0000-0000-0049-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000012}, !- Handle - {00000000-0000-0000-0098-000000000001}; !- Material Name + {00000000-0000-0000-0086-000000000012}, !- Handle + {00000000-0000-0000-0102-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000013}, !- Handle - {00000000-0000-0000-0045-000000000018}; !- Material Name + {00000000-0000-0000-0086-000000000013}, !- Handle + {00000000-0000-0000-0049-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000014}, !- Handle - {00000000-0000-0000-0046-000000000008}; !- Material Name + {00000000-0000-0000-0086-000000000014}, !- Handle + {00000000-0000-0000-0050-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000015}, !- Handle - {00000000-0000-0000-0045-000000000007}; !- Material Name + {00000000-0000-0000-0086-000000000015}, !- Handle + {00000000-0000-0000-0049-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000016}, !- Handle - {00000000-0000-0000-0046-000000000003}; !- Material Name + {00000000-0000-0000-0086-000000000016}, !- Handle + {00000000-0000-0000-0050-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000017}, !- Handle - {00000000-0000-0000-0045-000000000005}; !- Material Name + {00000000-0000-0000-0086-000000000017}, !- Handle + {00000000-0000-0000-0049-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000018}, !- Handle - {00000000-0000-0000-0045-000000000013}; !- Material Name + {00000000-0000-0000-0086-000000000018}, !- Handle + {00000000-0000-0000-0049-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000019}, !- Handle - {00000000-0000-0000-0046-000000000009}; !- Material Name + {00000000-0000-0000-0086-000000000019}, !- Handle + {00000000-0000-0000-0050-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000020}, !- Handle - {00000000-0000-0000-0045-000000000001}; !- Material Name + {00000000-0000-0000-0086-000000000020}, !- Handle + {00000000-0000-0000-0049-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000021}, !- Handle - {00000000-0000-0000-0045-000000000023}; !- Material Name + {00000000-0000-0000-0086-000000000021}, !- Handle + {00000000-0000-0000-0049-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000022}, !- Handle - {00000000-0000-0000-0046-000000000010}; !- Material Name + {00000000-0000-0000-0086-000000000022}, !- Handle + {00000000-0000-0000-0050-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000023}, !- Handle - {00000000-0000-0000-0045-000000000009}; !- Material Name + {00000000-0000-0000-0086-000000000023}, !- Handle + {00000000-0000-0000-0049-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000024}, !- Handle - {00000000-0000-0000-0046-000000000004}; !- Material Name + {00000000-0000-0000-0086-000000000024}, !- Handle + {00000000-0000-0000-0050-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000025}, !- Handle - {00000000-0000-0000-0045-000000000010}; !- Material Name + {00000000-0000-0000-0086-000000000025}, !- Handle + {00000000-0000-0000-0049-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000026}, !- Handle - {00000000-0000-0000-0046-000000000005}; !- Material Name + {00000000-0000-0000-0086-000000000026}, !- Handle + {00000000-0000-0000-0050-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000027}, !- Handle - {00000000-0000-0000-0045-000000000011}; !- Material Name + {00000000-0000-0000-0086-000000000027}, !- Handle + {00000000-0000-0000-0049-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000028}, !- Handle - {00000000-0000-0000-0046-000000000006}; !- Material Name + {00000000-0000-0000-0086-000000000028}, !- Handle + {00000000-0000-0000-0050-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000029}, !- Handle - {00000000-0000-0000-0045-000000000017}; !- Material Name + {00000000-0000-0000-0086-000000000029}, !- Handle + {00000000-0000-0000-0049-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000030}, !- Handle - {00000000-0000-0000-0046-000000000011}; !- Material Name + {00000000-0000-0000-0086-000000000030}, !- Handle + {00000000-0000-0000-0050-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0082-000000000031}, !- Handle - {00000000-0000-0000-0046-000000000012}; !- Material Name + {00000000-0000-0000-0086-000000000031}, !- Handle + {00000000-0000-0000-0050-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0087-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000098}, !- Surface Name + {00000000-0000-0000-0088-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10659,11 +16689,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000002}, !- Handle + {00000000-0000-0000-0087-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000103}, !- Surface Name + {00000000-0000-0000-0088-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10675,11 +16705,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000003}, !- Handle + {00000000-0000-0000-0087-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000110}, !- Surface Name + {00000000-0000-0000-0088-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10691,11 +16721,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000004}, !- Handle + {00000000-0000-0000-0087-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000119}, !- Surface Name + {00000000-0000-0000-0088-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10707,11 +16737,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000005}, !- Handle + {00000000-0000-0000-0087-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000125}, !- Surface Name + {00000000-0000-0000-0088-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10723,11 +16753,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000006}, !- Handle + {00000000-0000-0000-0087-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000129}, !- Surface Name + {00000000-0000-0000-0088-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10739,11 +16769,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000007}, !- Handle + {00000000-0000-0000-0087-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000135}, !- Surface Name + {00000000-0000-0000-0088-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10755,11 +16785,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000008}, !- Handle + {00000000-0000-0000-0087-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000143}, !- Surface Name + {00000000-0000-0000-0088-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10771,11 +16801,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000009}, !- Handle + {00000000-0000-0000-0087-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000147}, !- Surface Name + {00000000-0000-0000-0088-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10787,11 +16817,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000010}, !- Handle + {00000000-0000-0000-0087-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000151}, !- Surface Name + {00000000-0000-0000-0088-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10803,11 +16833,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000011}, !- Handle + {00000000-0000-0000-0087-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000157}, !- Surface Name + {00000000-0000-0000-0088-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10819,11 +16849,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0083-000000000012}, !- Handle + {00000000-0000-0000-0087-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0084-000000000165}, !- Surface Name + {00000000-0000-0000-0088-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10835,13 +16865,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0082-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10852,13 +16882,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000002}, !- Handle + {00000000-0000-0000-0088-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0082-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10869,13 +16899,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000003}, !- Handle + {00000000-0000-0000-0088-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0082-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10886,13 +16916,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000004}, !- Handle + {00000000-0000-0000-0088-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0082-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10903,13 +16933,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000005}, !- Handle + {00000000-0000-0000-0088-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0082-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10920,11 +16950,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000006}, !- Handle + {00000000-0000-0000-0088-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10937,13 +16967,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000007}, !- Handle + {00000000-0000-0000-0088-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10954,13 +16984,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000008}, !- Handle + {00000000-0000-0000-0088-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0082-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10971,13 +17001,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000009}, !- Handle + {00000000-0000-0000-0088-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0082-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10988,13 +17018,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000010}, !- Handle + {00000000-0000-0000-0088-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0082-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11005,13 +17035,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000011}, !- Handle + {00000000-0000-0000-0088-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0082-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11022,13 +17052,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000012}, !- Handle + {00000000-0000-0000-0088-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0082-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11039,13 +17069,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000013}, !- Handle + {00000000-0000-0000-0088-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0082-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11056,13 +17086,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000014}, !- Handle + {00000000-0000-0000-0088-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0082-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11073,13 +17103,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000015}, !- Handle + {00000000-0000-0000-0088-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0082-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11090,13 +17120,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000016}, !- Handle + {00000000-0000-0000-0088-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0082-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11107,13 +17137,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000017}, !- Handle + {00000000-0000-0000-0088-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0082-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11124,13 +17154,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000018}, !- Handle + {00000000-0000-0000-0088-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11141,13 +17171,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000019}, !- Handle + {00000000-0000-0000-0088-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0082-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11158,11 +17188,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000020}, !- Handle + {00000000-0000-0000-0088-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0082-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11175,13 +17205,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000021}, !- Handle + {00000000-0000-0000-0088-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0082-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11192,13 +17222,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000022}, !- Handle + {00000000-0000-0000-0088-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0082-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11209,13 +17239,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000023}, !- Handle + {00000000-0000-0000-0088-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0082-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11226,13 +17256,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000024}, !- Handle + {00000000-0000-0000-0088-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0082-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11243,13 +17273,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000025}, !- Handle + {00000000-0000-0000-0088-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0082-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11260,13 +17290,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000026}, !- Handle + {00000000-0000-0000-0088-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0082-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11277,13 +17307,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000027}, !- Handle + {00000000-0000-0000-0088-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000003}, !- Space Name + {00000000-0000-0000-0082-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11294,13 +17324,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000028}, !- Handle + {00000000-0000-0000-0088-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11311,13 +17341,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000029}, !- Handle + {00000000-0000-0000-0088-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0082-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11328,11 +17358,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000030}, !- Handle + {00000000-0000-0000-0088-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0082-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11345,13 +17375,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000031}, !- Handle + {00000000-0000-0000-0088-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0082-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11362,13 +17392,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000032}, !- Handle + {00000000-0000-0000-0088-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0082-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11379,13 +17409,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000033}, !- Handle + {00000000-0000-0000-0088-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0082-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11396,13 +17426,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000034}, !- Handle + {00000000-0000-0000-0088-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0082-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11413,13 +17443,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000035}, !- Handle + {00000000-0000-0000-0088-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0082-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11430,13 +17460,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000036}, !- Handle + {00000000-0000-0000-0088-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0082-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11447,13 +17477,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000037}, !- Handle + {00000000-0000-0000-0088-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000004}, !- Space Name + {00000000-0000-0000-0082-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11464,13 +17494,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000038}, !- Handle + {00000000-0000-0000-0088-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0082-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11481,13 +17511,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000039}, !- Handle + {00000000-0000-0000-0088-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0082-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11498,13 +17528,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000040}, !- Handle + {00000000-0000-0000-0088-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000002}, !- Space Name + {00000000-0000-0000-0082-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11515,13 +17545,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000041}, !- Handle + {00000000-0000-0000-0088-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0082-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11532,13 +17562,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000042}, !- Handle + {00000000-0000-0000-0088-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0082-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11549,13 +17579,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000043}, !- Handle + {00000000-0000-0000-0088-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0082-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11566,13 +17596,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000044}, !- Handle + {00000000-0000-0000-0088-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0082-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11583,13 +17613,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000045}, !- Handle + {00000000-0000-0000-0088-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0082-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11600,13 +17630,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000046}, !- Handle + {00000000-0000-0000-0088-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0082-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11617,13 +17647,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000047}, !- Handle + {00000000-0000-0000-0088-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0082-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11634,13 +17664,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000048}, !- Handle + {00000000-0000-0000-0088-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0082-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11651,13 +17681,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000049}, !- Handle + {00000000-0000-0000-0088-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11668,13 +17698,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000050}, !- Handle + {00000000-0000-0000-0088-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0082-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11685,13 +17715,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000051}, !- Handle + {00000000-0000-0000-0088-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0082-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11702,13 +17732,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000052}, !- Handle + {00000000-0000-0000-0088-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0082-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11719,13 +17749,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000053}, !- Handle + {00000000-0000-0000-0088-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0082-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11736,13 +17766,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000054}, !- Handle + {00000000-0000-0000-0088-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0082-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11753,13 +17783,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000055}, !- Handle + {00000000-0000-0000-0088-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0082-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11770,13 +17800,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000056}, !- Handle + {00000000-0000-0000-0088-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0082-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11787,13 +17817,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000057}, !- Handle + {00000000-0000-0000-0088-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0082-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11804,13 +17834,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000058}, !- Handle + {00000000-0000-0000-0088-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000006}, !- Space Name + {00000000-0000-0000-0082-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11821,13 +17851,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000059}, !- Handle + {00000000-0000-0000-0088-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0082-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11838,11 +17868,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000060}, !- Handle + {00000000-0000-0000-0088-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0082-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11855,13 +17885,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000061}, !- Handle + {00000000-0000-0000-0088-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0082-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11872,13 +17902,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000062}, !- Handle + {00000000-0000-0000-0088-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0082-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11889,13 +17919,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000063}, !- Handle + {00000000-0000-0000-0088-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0082-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11906,13 +17936,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000064}, !- Handle + {00000000-0000-0000-0088-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0082-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11923,13 +17953,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000065}, !- Handle + {00000000-0000-0000-0088-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0082-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11940,13 +17970,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000066}, !- Handle + {00000000-0000-0000-0088-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0082-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11957,13 +17987,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000067}, !- Handle + {00000000-0000-0000-0088-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0082-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11974,13 +18004,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000068}, !- Handle + {00000000-0000-0000-0088-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11991,13 +18021,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000069}, !- Handle + {00000000-0000-0000-0088-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000007}, !- Space Name + {00000000-0000-0000-0082-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12008,11 +18038,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000070}, !- Handle + {00000000-0000-0000-0088-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0082-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12025,13 +18055,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000071}, !- Handle + {00000000-0000-0000-0088-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0082-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12042,13 +18072,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000072}, !- Handle + {00000000-0000-0000-0088-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0082-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12059,13 +18089,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000073}, !- Handle + {00000000-0000-0000-0088-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0082-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12076,13 +18106,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000074}, !- Handle + {00000000-0000-0000-0088-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0082-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12093,13 +18123,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000075}, !- Handle + {00000000-0000-0000-0088-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0082-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12110,13 +18140,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000076}, !- Handle + {00000000-0000-0000-0088-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0082-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12127,13 +18157,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000077}, !- Handle + {00000000-0000-0000-0088-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0082-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12144,13 +18174,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000078}, !- Handle + {00000000-0000-0000-0088-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12161,13 +18191,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000079}, !- Handle + {00000000-0000-0000-0088-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000008}, !- Space Name + {00000000-0000-0000-0082-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12178,11 +18208,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000080}, !- Handle + {00000000-0000-0000-0088-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12195,11 +18225,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000081}, !- Handle + {00000000-0000-0000-0088-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12212,11 +18242,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000082}, !- Handle + {00000000-0000-0000-0088-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12229,11 +18259,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000083}, !- Handle + {00000000-0000-0000-0088-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12246,11 +18276,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000084}, !- Handle + {00000000-0000-0000-0088-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12263,13 +18293,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000085}, !- Handle + {00000000-0000-0000-0088-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0082-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12280,13 +18310,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000086}, !- Handle + {00000000-0000-0000-0088-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0082-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12297,11 +18327,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000087}, !- Handle + {00000000-0000-0000-0088-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12314,11 +18344,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000088}, !- Handle + {00000000-0000-0000-0088-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12331,11 +18361,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000089}, !- Handle + {00000000-0000-0000-0088-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12348,11 +18378,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000090}, !- Handle + {00000000-0000-0000-0088-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12365,11 +18395,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000091}, !- Handle + {00000000-0000-0000-0088-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12382,13 +18412,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000092}, !- Handle + {00000000-0000-0000-0088-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12399,13 +18429,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000093}, !- Handle + {00000000-0000-0000-0088-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0082-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12416,13 +18446,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000094}, !- Handle + {00000000-0000-0000-0088-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0082-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12433,13 +18463,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000095}, !- Handle + {00000000-0000-0000-0088-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0082-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12450,13 +18480,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000096}, !- Handle + {00000000-0000-0000-0088-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0082-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12467,13 +18497,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000097}, !- Handle + {00000000-0000-0000-0088-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0082-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12484,11 +18514,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000098}, !- Handle + {00000000-0000-0000-0088-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0082-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12501,13 +18531,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000099}, !- Handle + {00000000-0000-0000-0088-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12518,13 +18548,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000100}, !- Handle + {00000000-0000-0000-0088-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0082-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12535,13 +18565,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000101}, !- Handle + {00000000-0000-0000-0088-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0082-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12552,13 +18582,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000102}, !- Handle + {00000000-0000-0000-0088-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0082-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12569,11 +18599,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000103}, !- Handle + {00000000-0000-0000-0088-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0082-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12586,13 +18616,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000104}, !- Handle + {00000000-0000-0000-0088-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000012}, !- Space Name + {00000000-0000-0000-0082-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12603,13 +18633,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000105}, !- Handle + {00000000-0000-0000-0088-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0082-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12620,13 +18650,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000106}, !- Handle + {00000000-0000-0000-0088-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12637,13 +18667,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000107}, !- Handle + {00000000-0000-0000-0088-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0082-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12654,13 +18684,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000108}, !- Handle + {00000000-0000-0000-0088-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0082-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12671,13 +18701,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000109}, !- Handle + {00000000-0000-0000-0088-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000001}, !- Space Name + {00000000-0000-0000-0082-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12688,11 +18718,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000110}, !- Handle + {00000000-0000-0000-0088-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0082-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12705,13 +18735,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000111}, !- Handle + {00000000-0000-0000-0088-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000013}, !- Space Name + {00000000-0000-0000-0082-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12722,13 +18752,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000112}, !- Handle + {00000000-0000-0000-0088-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0082-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12739,13 +18769,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000113}, !- Handle + {00000000-0000-0000-0088-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000009}, !- Space Name + {00000000-0000-0000-0082-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12756,13 +18786,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000114}, !- Handle + {00000000-0000-0000-0088-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0082-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12773,13 +18803,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000115}, !- Handle + {00000000-0000-0000-0088-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0082-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12790,13 +18820,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000116}, !- Handle + {00000000-0000-0000-0088-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000005}, !- Space Name + {00000000-0000-0000-0082-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12807,13 +18837,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000117}, !- Handle + {00000000-0000-0000-0088-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0082-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12824,13 +18854,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000118}, !- Handle + {00000000-0000-0000-0088-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000011}, !- Space Name + {00000000-0000-0000-0082-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12841,11 +18871,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000119}, !- Handle + {00000000-0000-0000-0088-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000014}, !- Space Name + {00000000-0000-0000-0082-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12858,13 +18888,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000120}, !- Handle + {00000000-0000-0000-0088-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12875,13 +18905,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000121}, !- Handle + {00000000-0000-0000-0088-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0082-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12892,11 +18922,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000122}, !- Handle + {00000000-0000-0000-0088-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0082-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12909,13 +18939,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000123}, !- Handle + {00000000-0000-0000-0088-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0082-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12926,13 +18956,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000124}, !- Handle + {00000000-0000-0000-0088-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0082-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12943,11 +18973,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000125}, !- Handle + {00000000-0000-0000-0088-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0082-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12960,13 +18990,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000126}, !- Handle + {00000000-0000-0000-0088-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12977,13 +19007,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000127}, !- Handle + {00000000-0000-0000-0088-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0082-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12994,11 +19024,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000128}, !- Handle + {00000000-0000-0000-0088-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0082-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13011,11 +19041,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000129}, !- Handle + {00000000-0000-0000-0088-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0082-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13028,13 +19058,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000130}, !- Handle + {00000000-0000-0000-0088-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000016}, !- Space Name + {00000000-0000-0000-0082-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13045,13 +19075,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000131}, !- Handle + {00000000-0000-0000-0088-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0082-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13062,13 +19092,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000132}, !- Handle + {00000000-0000-0000-0088-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13079,13 +19109,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000133}, !- Handle + {00000000-0000-0000-0088-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0082-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13096,11 +19126,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000134}, !- Handle + {00000000-0000-0000-0088-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0082-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13113,11 +19143,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000135}, !- Handle + {00000000-0000-0000-0088-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0082-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13130,13 +19160,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000136}, !- Handle + {00000000-0000-0000-0088-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000017}, !- Space Name + {00000000-0000-0000-0082-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13147,13 +19177,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000137}, !- Handle + {00000000-0000-0000-0088-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0082-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13164,13 +19194,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000138}, !- Handle + {00000000-0000-0000-0088-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000010}, !- Space Name + {00000000-0000-0000-0082-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13181,13 +19211,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000139}, !- Handle + {00000000-0000-0000-0088-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0082-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13198,11 +19228,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000140}, !- Handle + {00000000-0000-0000-0088-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0082-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13215,13 +19245,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000141}, !- Handle + {00000000-0000-0000-0088-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0082-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13232,13 +19262,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000142}, !- Handle + {00000000-0000-0000-0088-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000015}, !- Space Name + {00000000-0000-0000-0082-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13249,11 +19279,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000143}, !- Handle + {00000000-0000-0000-0088-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000018}, !- Space Name + {00000000-0000-0000-0082-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13266,13 +19296,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000144}, !- Handle + {00000000-0000-0000-0088-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13283,13 +19313,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000145}, !- Handle + {00000000-0000-0000-0088-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0082-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13300,11 +19330,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000146}, !- Handle + {00000000-0000-0000-0088-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0082-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13317,11 +19347,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000147}, !- Handle + {00000000-0000-0000-0088-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0082-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13334,13 +19364,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000148}, !- Handle + {00000000-0000-0000-0088-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13351,13 +19381,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000149}, !- Handle + {00000000-0000-0000-0088-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0082-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13368,11 +19398,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000150}, !- Handle + {00000000-0000-0000-0088-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0082-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13385,11 +19415,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000151}, !- Handle + {00000000-0000-0000-0088-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0082-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13402,13 +19432,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000152}, !- Handle + {00000000-0000-0000-0088-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000020}, !- Space Name + {00000000-0000-0000-0082-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13419,13 +19449,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000153}, !- Handle + {00000000-0000-0000-0088-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0082-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13436,13 +19466,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000154}, !- Handle + {00000000-0000-0000-0088-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13453,13 +19483,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000155}, !- Handle + {00000000-0000-0000-0088-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0082-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13470,11 +19500,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000156}, !- Handle + {00000000-0000-0000-0088-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0082-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13487,11 +19517,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000157}, !- Handle + {00000000-0000-0000-0088-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0082-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13504,13 +19534,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000158}, !- Handle + {00000000-0000-0000-0088-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000021}, !- Space Name + {00000000-0000-0000-0082-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13521,13 +19551,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000159}, !- Handle + {00000000-0000-0000-0088-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0082-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13538,13 +19568,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000160}, !- Handle + {00000000-0000-0000-0088-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13555,13 +19585,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000161}, !- Handle + {00000000-0000-0000-0088-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0082-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13572,11 +19602,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000162}, !- Handle + {00000000-0000-0000-0088-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0082-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13589,13 +19619,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000163}, !- Handle + {00000000-0000-0000-0088-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0082-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13606,13 +19636,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000164}, !- Handle + {00000000-0000-0000-0088-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000019}, !- Space Name + {00000000-0000-0000-0082-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0084-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0088-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13623,11 +19653,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000165}, !- Handle + {00000000-0000-0000-0088-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000022}, !- Space Name + {00000000-0000-0000-0082-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13640,11 +19670,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000166}, !- Handle + {00000000-0000-0000-0088-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13657,11 +19687,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000167}, !- Handle + {00000000-0000-0000-0088-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13674,11 +19704,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000168}, !- Handle + {00000000-0000-0000-0088-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13691,11 +19721,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0084-000000000169}, !- Handle + {00000000-0000-0000-0088-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0078-000000000023}, !- Space Name + {00000000-0000-0000-0082-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13708,27 +19738,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0089-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0087-000000000001}, !- Handle - {00000000-0000-0000-0084-000000000044}, !- Surface Name + {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0087-000000000002}, !- Handle - {00000000-0000-0000-0084-000000000001}, !- Surface Name + {00000000-0000-0000-0091-000000000002}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13737,21 +19767,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000007}, !- Thermostat Name + {00000000-0000-0000-0061-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000002}, !- Handle + {00000000-0000-0000-0092-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13760,21 +19790,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000009}, !- Thermostat Name + {00000000-0000-0000-0061-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000003}, !- Handle + {00000000-0000-0000-0092-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13783,21 +19813,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000008}, !- Thermostat Name + {00000000-0000-0000-0061-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000004}, !- Handle + {00000000-0000-0000-0092-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13806,21 +19836,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000058}, !- Thermostat Name + {00000000-0000-0000-0061-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000005}, !- Handle + {00000000-0000-0000-0092-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13829,21 +19859,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000052}, !- Thermostat Name + {00000000-0000-0000-0061-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000006}, !- Handle + {00000000-0000-0000-0092-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13852,21 +19882,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000053}, !- Thermostat Name + {00000000-0000-0000-0061-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000007}, !- Handle + {00000000-0000-0000-0092-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13875,21 +19905,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000060}, !- Thermostat Name + {00000000-0000-0000-0061-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000008}, !- Handle + {00000000-0000-0000-0092-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13898,21 +19928,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000065}, !- Thermostat Name + {00000000-0000-0000-0061-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000009}, !- Handle + {00000000-0000-0000-0092-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13921,21 +19951,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000067}, !- Thermostat Name + {00000000-0000-0000-0061-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000010}, !- Handle + {00000000-0000-0000-0092-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13944,21 +19974,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000047}, !- Thermostat Name + {00000000-0000-0000-0061-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000011}, !- Handle + {00000000-0000-0000-0092-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13967,21 +19997,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000055}, !- Thermostat Name + {00000000-0000-0000-0061-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000012}, !- Handle + {00000000-0000-0000-0092-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13990,21 +20020,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000057}, !- Thermostat Name + {00000000-0000-0000-0061-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000013}, !- Handle + {00000000-0000-0000-0092-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14013,21 +20043,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000062}, !- Thermostat Name + {00000000-0000-0000-0061-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000014}, !- Handle + {00000000-0000-0000-0092-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14036,21 +20066,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000064}, !- Thermostat Name + {00000000-0000-0000-0061-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000015}, !- Handle + {00000000-0000-0000-0092-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14059,21 +20089,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000066}, !- Thermostat Name + {00000000-0000-0000-0061-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000016}, !- Handle + {00000000-0000-0000-0092-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14082,21 +20112,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000050}, !- Thermostat Name + {00000000-0000-0000-0061-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000017}, !- Handle + {00000000-0000-0000-0092-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14105,21 +20135,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000051}, !- Thermostat Name + {00000000-0000-0000-0061-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000018}, !- Handle + {00000000-0000-0000-0092-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14128,21 +20158,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000054}, !- Thermostat Name + {00000000-0000-0000-0061-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000019}, !- Handle + {00000000-0000-0000-0092-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14151,21 +20181,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000056}, !- Thermostat Name + {00000000-0000-0000-0061-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000020}, !- Handle + {00000000-0000-0000-0092-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14174,21 +20204,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000061}, !- Thermostat Name + {00000000-0000-0000-0061-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000021}, !- Handle + {00000000-0000-0000-0092-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14197,21 +20227,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000063}, !- Thermostat Name + {00000000-0000-0000-0061-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000022}, !- Handle + {00000000-0000-0000-0092-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14220,21 +20250,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000049}, !- Thermostat Name + {00000000-0000-0000-0061-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0088-000000000023}, !- Handle + {00000000-0000-0000-0092-000000000023}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14243,444 +20273,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0054-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0054-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0058-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0058-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0054-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0058-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0057-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0089-000000000013}, !- Thermostat Name + {00000000-0000-0000-0061-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0093-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0093-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000002}, !- Handle + {00000000-0000-0000-0093-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000003}, !- Handle + {00000000-0000-0000-0093-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000004}, !- Handle + {00000000-0000-0000-0093-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000005}, !- Handle + {00000000-0000-0000-0093-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000006}, !- Handle + {00000000-0000-0000-0093-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000007}, !- Handle + {00000000-0000-0000-0093-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000008}, !- Handle + {00000000-0000-0000-0093-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000009}, !- Handle + {00000000-0000-0000-0093-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000010}, !- Handle + {00000000-0000-0000-0093-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000011}, !- Handle + {00000000-0000-0000-0093-000000000011}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000012}, !- Handle + {00000000-0000-0000-0093-000000000012}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000013}, !- Handle + {00000000-0000-0000-0093-000000000013}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000014}, !- Handle + {00000000-0000-0000-0093-000000000014}, !- Handle Space Function Electrical/Mechanical-sch-A Thermostat, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000015}, !- Handle + {00000000-0000-0000-0093-000000000015}, !- Handle Space Function Office - open plan Thermostat 1, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000016}, !- Handle + {00000000-0000-0000-0093-000000000016}, !- Handle Space Function Office - open plan Thermostat 10, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000017}, !- Handle + {00000000-0000-0000-0093-000000000017}, !- Handle Space Function Office - open plan Thermostat 11, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000018}, !- Handle + {00000000-0000-0000-0093-000000000018}, !- Handle Space Function Office - open plan Thermostat 12, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000019}, !- Handle + {00000000-0000-0000-0093-000000000019}, !- Handle Space Function Office - open plan Thermostat 13, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000020}, !- Handle + {00000000-0000-0000-0093-000000000020}, !- Handle Space Function Office - open plan Thermostat 14, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000021}, !- Handle + {00000000-0000-0000-0093-000000000021}, !- Handle Space Function Office - open plan Thermostat 15, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000022}, !- Handle + {00000000-0000-0000-0093-000000000022}, !- Handle Space Function Office - open plan Thermostat 16, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000023}, !- Handle + {00000000-0000-0000-0093-000000000023}, !- Handle Space Function Office - open plan Thermostat 17, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000024}, !- Handle + {00000000-0000-0000-0093-000000000024}, !- Handle Space Function Office - open plan Thermostat 18, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000025}, !- Handle + {00000000-0000-0000-0093-000000000025}, !- Handle Space Function Office - open plan Thermostat 19, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000026}, !- Handle + {00000000-0000-0000-0093-000000000026}, !- Handle Space Function Office - open plan Thermostat 2, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000027}, !- Handle + {00000000-0000-0000-0093-000000000027}, !- Handle Space Function Office - open plan Thermostat 20, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000028}, !- Handle + {00000000-0000-0000-0093-000000000028}, !- Handle Space Function Office - open plan Thermostat 21, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000029}, !- Handle + {00000000-0000-0000-0093-000000000029}, !- Handle Space Function Office - open plan Thermostat 22, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000030}, !- Handle + {00000000-0000-0000-0093-000000000030}, !- Handle Space Function Office - open plan Thermostat 23, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000031}, !- Handle + {00000000-0000-0000-0093-000000000031}, !- Handle Space Function Office - open plan Thermostat 24, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000032}, !- Handle + {00000000-0000-0000-0093-000000000032}, !- Handle Space Function Office - open plan Thermostat 25, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000033}, !- Handle + {00000000-0000-0000-0093-000000000033}, !- Handle Space Function Office - open plan Thermostat 26, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000034}, !- Handle + {00000000-0000-0000-0093-000000000034}, !- Handle Space Function Office - open plan Thermostat 27, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000035}, !- Handle + {00000000-0000-0000-0093-000000000035}, !- Handle Space Function Office - open plan Thermostat 28, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000036}, !- Handle + {00000000-0000-0000-0093-000000000036}, !- Handle Space Function Office - open plan Thermostat 29, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000037}, !- Handle + {00000000-0000-0000-0093-000000000037}, !- Handle Space Function Office - open plan Thermostat 3, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000038}, !- Handle + {00000000-0000-0000-0093-000000000038}, !- Handle Space Function Office - open plan Thermostat 30, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000039}, !- Handle + {00000000-0000-0000-0093-000000000039}, !- Handle Space Function Office - open plan Thermostat 31, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000040}, !- Handle + {00000000-0000-0000-0093-000000000040}, !- Handle Space Function Office - open plan Thermostat 32, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000041}, !- Handle + {00000000-0000-0000-0093-000000000041}, !- Handle Space Function Office - open plan Thermostat 33, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000042}, !- Handle + {00000000-0000-0000-0093-000000000042}, !- Handle Space Function Office - open plan Thermostat 34, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000043}, !- Handle + {00000000-0000-0000-0093-000000000043}, !- Handle Space Function Office - open plan Thermostat 35, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000044}, !- Handle + {00000000-0000-0000-0093-000000000044}, !- Handle Space Function Office - open plan Thermostat 36, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000045}, !- Handle + {00000000-0000-0000-0093-000000000045}, !- Handle Space Function Office - open plan Thermostat 37, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000046}, !- Handle + {00000000-0000-0000-0093-000000000046}, !- Handle Space Function Office - open plan Thermostat 38, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000047}, !- Handle + {00000000-0000-0000-0093-000000000047}, !- Handle Space Function Office - open plan Thermostat 39, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000048}, !- Handle + {00000000-0000-0000-0093-000000000048}, !- Handle Space Function Office - open plan Thermostat 4, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000049}, !- Handle + {00000000-0000-0000-0093-000000000049}, !- Handle Space Function Office - open plan Thermostat 40, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000050}, !- Handle + {00000000-0000-0000-0093-000000000050}, !- Handle Space Function Office - open plan Thermostat 41, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000051}, !- Handle + {00000000-0000-0000-0093-000000000051}, !- Handle Space Function Office - open plan Thermostat 42, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000052}, !- Handle + {00000000-0000-0000-0093-000000000052}, !- Handle Space Function Office - open plan Thermostat 43, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000053}, !- Handle + {00000000-0000-0000-0093-000000000053}, !- Handle Space Function Office - open plan Thermostat 44, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000054}, !- Handle + {00000000-0000-0000-0093-000000000054}, !- Handle Space Function Office - open plan Thermostat 45, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000055}, !- Handle + {00000000-0000-0000-0093-000000000055}, !- Handle Space Function Office - open plan Thermostat 46, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000056}, !- Handle + {00000000-0000-0000-0093-000000000056}, !- Handle Space Function Office - open plan Thermostat 47, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000057}, !- Handle + {00000000-0000-0000-0093-000000000057}, !- Handle Space Function Office - open plan Thermostat 48, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000058}, !- Handle + {00000000-0000-0000-0093-000000000058}, !- Handle Space Function Office - open plan Thermostat 49, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000059}, !- Handle + {00000000-0000-0000-0093-000000000059}, !- Handle Space Function Office - open plan Thermostat 5, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000060}, !- Handle + {00000000-0000-0000-0093-000000000060}, !- Handle Space Function Office - open plan Thermostat 50, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000061}, !- Handle + {00000000-0000-0000-0093-000000000061}, !- Handle Space Function Office - open plan Thermostat 51, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000062}, !- Handle + {00000000-0000-0000-0093-000000000062}, !- Handle Space Function Office - open plan Thermostat 52, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000063}, !- Handle + {00000000-0000-0000-0093-000000000063}, !- Handle Space Function Office - open plan Thermostat 53, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000064}, !- Handle + {00000000-0000-0000-0093-000000000064}, !- Handle Space Function Office - open plan Thermostat 54, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000065}, !- Handle + {00000000-0000-0000-0093-000000000065}, !- Handle Space Function Office - open plan Thermostat 55, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000066}, !- Handle + {00000000-0000-0000-0093-000000000066}, !- Handle Space Function Office - open plan Thermostat 56, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000067}, !- Handle + {00000000-0000-0000-0093-000000000067}, !- Handle Space Function Office - open plan Thermostat 57, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000068}, !- Handle + {00000000-0000-0000-0093-000000000068}, !- Handle Space Function Office - open plan Thermostat 6, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000069}, !- Handle + {00000000-0000-0000-0093-000000000069}, !- Handle Space Function Office - open plan Thermostat 7, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000070}, !- Handle + {00000000-0000-0000-0093-000000000070}, !- Handle Space Function Office - open plan Thermostat 8, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000071}, !- Handle + {00000000-0000-0000-0093-000000000071}, !- Handle Space Function Office - open plan Thermostat 9, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0089-000000000072}, !- Handle + {00000000-0000-0000-0093-000000000072}, !- Handle Space Function Office - open plan Thermostat, !- Name - {00000000-0000-0000-0061-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0061-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0095-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle 1103gal NaturalGas Water Heater - 744kBtu/hr 0.805 Therm Eff, !- Name 4.17378596588637, !- Tank Volume {m3} - {00000000-0000-0000-0061-000000000019}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0065-000000000019}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -14698,7 +20728,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0061-000000000021}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0065-000000000024}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 27.6288593246688, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -14708,8 +20738,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0020-000000000199}, !- Use Side Inlet Node Name - {00000000-0000-0000-0020-000000000200}, !- Use Side Outlet Node Name + {00000000-0000-0000-0020-000000000529}, !- Use Side Inlet Node Name + {00000000-0000-0000-0020-000000000530}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -14722,18 +20752,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0093-000000000001}, !- Handle - {00000000-0000-0000-0092-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle Core_bottom WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0020-000000000216}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000217}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000546}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000547}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14741,13 +20771,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000002}, !- Handle + {00000000-0000-0000-0098-000000000002}, !- Handle Core_mid WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0020-000000000220}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000221}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000550}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000551}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14755,13 +20785,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000003}, !- Handle + {00000000-0000-0000-0098-000000000003}, !- Handle Core_top WUC 0.96gpm 140F, !- Name - {00000000-0000-0000-0020-000000000224}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000225}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000554}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000555}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14769,13 +20799,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000004}, !- Handle + {00000000-0000-0000-0098-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0020-000000000228}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000229}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000558}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000559}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14783,13 +20813,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000005}, !- Handle + {00000000-0000-0000-0098-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000232}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000233}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000562}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000563}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14797,13 +20827,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000006}, !- Handle + {00000000-0000-0000-0098-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000236}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000237}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000566}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000567}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14811,13 +20841,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000007}, !- Handle + {00000000-0000-0000-0098-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000240}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000241}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000570}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000571}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14825,13 +20855,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000008}, !- Handle + {00000000-0000-0000-0098-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000244}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000245}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000574}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000575}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14839,13 +20869,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000009}, !- Handle + {00000000-0000-0000-0098-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000248}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000249}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000578}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000579}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14853,13 +20883,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000010}, !- Handle + {00000000-0000-0000-0098-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000252}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000253}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000582}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000583}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14867,13 +20897,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000011}, !- Handle + {00000000-0000-0000-0098-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000256}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000257}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000586}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000587}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14881,13 +20911,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000012}, !- Handle + {00000000-0000-0000-0098-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000260}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000261}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000590}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000591}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14895,13 +20925,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000013}, !- Handle + {00000000-0000-0000-0098-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000264}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000265}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000594}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000595}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14909,13 +20939,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000014}, !- Handle + {00000000-0000-0000-0098-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000268}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000269}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000598}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000599}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14923,13 +20953,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000015}, !- Handle + {00000000-0000-0000-0098-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000272}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000273}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000602}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000603}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14937,13 +20967,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000016}, !- Handle + {00000000-0000-0000-0098-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000276}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000277}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000606}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000607}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14951,13 +20981,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000017}, !- Handle + {00000000-0000-0000-0098-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000280}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000281}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000610}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000611}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14965,13 +20995,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000018}, !- Handle + {00000000-0000-0000-0098-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000284}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000285}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000614}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000615}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14979,13 +21009,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0094-000000000019}, !- Handle + {00000000-0000-0000-0098-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000288}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000289}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000618}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000619}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14993,314 +21023,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0095-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0099-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0099-000000000001}, !- Handle Core_bottom Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0096-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000002}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000002}, !- Handle + {00000000-0000-0000-0099-000000000002}, !- Handle Core_mid Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0096-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000003}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000003}, !- Handle + {00000000-0000-0000-0099-000000000003}, !- Handle Core_top Service Water Use 0.96gpm 140F, !- Name - {00000000-0000-0000-0096-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000004}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000004}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000004}, !- Handle + {00000000-0000-0000-0099-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0096-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000005}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000005}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000005}, !- Handle + {00000000-0000-0000-0099-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0096-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000006}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000006}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000006}, !- Handle + {00000000-0000-0000-0099-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0096-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000007}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000007}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000007}, !- Handle + {00000000-0000-0000-0099-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0096-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000008}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000008}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000008}, !- Handle + {00000000-0000-0000-0099-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000011}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000011}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000009}, !- Handle + {00000000-0000-0000-0099-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000012}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000012}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000010}, !- Handle + {00000000-0000-0000-0099-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000013}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000013}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000011}, !- Handle + {00000000-0000-0000-0099-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000014}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000014}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000012}, !- Handle + {00000000-0000-0000-0099-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000015}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000015}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000013}, !- Handle + {00000000-0000-0000-0099-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000016}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000016}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000014}, !- Handle + {00000000-0000-0000-0099-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000017}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000017}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000015}, !- Handle + {00000000-0000-0000-0099-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000018}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000018}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000016}, !- Handle + {00000000-0000-0000-0099-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000019}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000019}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000017}, !- Handle + {00000000-0000-0000-0099-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000020}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000020}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000018}, !- Handle + {00000000-0000-0000-0099-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0096-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000021}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000021}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0095-000000000019}, !- Handle + {00000000-0000-0000-0099-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0096-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0078-000000000022}, !- Space Name - {00000000-0000-0000-0061-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0100-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0082-000000000022}, !- Space Name + {00000000-0000-0000-0065-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Handle Core_bottom 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000002}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Handle Core_mid 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000003}, !- Handle + {00000000-0000-0000-0100-000000000003}, !- Handle Core_top 0.96gpm 140F, !- Name , !- End-Use Subcategory 6.04230454844956e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000004}, !- Handle + {00000000-0000-0000-0100-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.89703570440437e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000005}, !- Handle + {00000000-0000-0000-0100-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755489e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000006}, !- Handle + {00000000-0000-0000-0100-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755488e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000007}, !- Handle + {00000000-0000-0000-0100-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.76351905755488e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000008}, !- Handle + {00000000-0000-0000-0100-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000009}, !- Handle + {00000000-0000-0000-0100-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000010}, !- Handle + {00000000-0000-0000-0100-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000011}, !- Handle + {00000000-0000-0000-0100-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000012}, !- Handle + {00000000-0000-0000-0100-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000013}, !- Handle + {00000000-0000-0000-0100-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000014}, !- Handle + {00000000-0000-0000-0100-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000015}, !- Handle + {00000000-0000-0000-0100-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000016}, !- Handle + {00000000-0000-0000-0100-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58688229162649e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000017}, !- Handle + {00000000-0000-0000-0100-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000018}, !- Handle + {00000000-0000-0000-0100-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.58671639286213e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0096-000000000019}, !- Handle + {00000000-0000-0000-0100-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.88916854503705e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0061-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0061-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0061-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0065-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0065-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0065-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0101-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -15316,60 +21346,168 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0102-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0098-000000000002}, !- Handle + {00000000-0000-0000-0102-000000000002}, !- Handle SimpleGlazing:U=0.220 SHGC=0.600, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0103-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0100-000000000001}, !- Handle + {00000000-0000-0000-0104-000000000001}, !- Handle Zone HVAC Baseboard Convective Water 1, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0019-000000000001}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0100-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 2, !- Name - {00000000-0000-0000-0058-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0104-000000000002}, !- Handle + Zone HVAC Baseboard Convective Water 10, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0019-000000000002}; !- Heating Coil Name +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000003}, !- Handle + Zone HVAC Baseboard Convective Water 11, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000003}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000004}, !- Handle + Zone HVAC Baseboard Convective Water 12, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000004}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000005}, !- Handle + Zone HVAC Baseboard Convective Water 13, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000005}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000006}, !- Handle + Zone HVAC Baseboard Convective Water 14, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000006}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000007}, !- Handle + Zone HVAC Baseboard Convective Water 15, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000007}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000008}, !- Handle + Zone HVAC Baseboard Convective Water 16, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000008}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000009}, !- Handle + Zone HVAC Baseboard Convective Water 17, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000009}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000010}, !- Handle + Zone HVAC Baseboard Convective Water 18, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000010}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000011}, !- Handle + Zone HVAC Baseboard Convective Water 19, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000011}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000012}, !- Handle + Zone HVAC Baseboard Convective Water 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000012}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000013}, !- Handle + Zone HVAC Baseboard Convective Water 20, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000013}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000014}, !- Handle + Zone HVAC Baseboard Convective Water 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000014}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000015}, !- Handle + Zone HVAC Baseboard Convective Water 4, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000015}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000016}, !- Handle + Zone HVAC Baseboard Convective Water 5, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000016}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000017}, !- Handle + Zone HVAC Baseboard Convective Water 6, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000017}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000018}, !- Handle + Zone HVAC Baseboard Convective Water 7, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000018}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000019}, !- Handle + Zone HVAC Baseboard Convective Water 8, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000019}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000020}, !- Handle + Zone HVAC Baseboard Convective Water 9, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000020}; !- Heating Coil Name + OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000001}, !- Handle + {00000000-0000-0000-0105-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000001}, !- Thermal Zone + {00000000-0000-0000-0092-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000002}, !- Handle + {00000000-0000-0000-0105-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000002}, !- Thermal Zone + {00000000-0000-0000-0092-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000003}, !- Handle + {00000000-0000-0000-0105-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000003}, !- Thermal Zone + {00000000-0000-0000-0092-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000004}, !- Handle + {00000000-0000-0000-0105-000000000004}, !- Handle ALL_ST=Office - open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000004}, !- Thermal Zone + {00000000-0000-0000-0092-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0104-000000000012}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -15381,119 +21519,299 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000005}, !- Handle + {00000000-0000-0000-0105-000000000005}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000005}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000005}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000006}, !- Handle + {00000000-0000-0000-0105-000000000006}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000006}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000006}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000017}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000007}, !- Handle + {00000000-0000-0000-0105-000000000007}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000007}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000007}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000008}, !- Handle + {00000000-0000-0000-0105-000000000008}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000008}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000008}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000018}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000009}, !- Handle + {00000000-0000-0000-0105-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000009}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000016}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000010}, !- Handle + {00000000-0000-0000-0105-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000010}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000019}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000011}, !- Handle + {00000000-0000-0000-0105-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000011}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000012}, !- Handle + {00000000-0000-0000-0105-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000012}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000013}, !- Handle + {00000000-0000-0000-0105-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000013}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000014}, !- Handle + {00000000-0000-0000-0105-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000014}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000020}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000015}, !- Handle + {00000000-0000-0000-0105-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000015}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000016}, !- Handle + {00000000-0000-0000-0105-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000016}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000017}, !- Handle + {00000000-0000-0000-0105-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000017}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000009}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000018}, !- Handle + {00000000-0000-0000-0105-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000018}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000010}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000019}, !- Handle + {00000000-0000-0000-0105-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000019}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000019}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000008}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000020}, !- Handle + {00000000-0000-0000-0105-000000000020}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000020}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000020}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000011}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000021}, !- Handle + {00000000-0000-0000-0105-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000021}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000021}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000022}, !- Handle + {00000000-0000-0000-0105-000000000022}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000022}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0092-000000000022}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0101-000000000023}, !- Handle + {00000000-0000-0000-0105-000000000023}, !- Handle WILD_ST=Electrical/Mechanical-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0088-000000000023}, !- Thermal Zone + {00000000-0000-0000-0092-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0100-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0104-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2017-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2017-Electricity-CAN_AB_Calgary.osm index 008e0e745b..5cfe4d7ad6 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2017-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2017-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0059-000000000024}, !- Object Name + {00000000-0000-0000-0063-000000000027}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.902183614624489, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0059-000000000025}, !- Object Name + {00000000-0000-0000-0063-000000000031}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.198210559234802, !- Feature Value 1 @@ -32,18 +32,66 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0012-000000000001}; !- Object Name + {00000000-0000-0000-0063-000000000028}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0063-000000000029}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0063-000000000030}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000006}, !- Handle + {00000000-0000-0000-0012-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000007}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0059-000000000024}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0063-000000000027}, !- Availability Schedule + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -62,9 +110,75 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name + , !- Controller List Name + {00000000-0000-0000-0063-000000000028}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000145}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000148}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000147}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000146}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0063-000000000029}, !- Availability Schedule + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000201}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000204}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000203}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000202}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000004}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3, !- Name + , !- Controller List Name + {00000000-0000-0000-0063-000000000030}, !- Availability Schedule + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000257}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000260}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000259}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000258}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0059-000000000025}, !- Availability Schedule + {00000000-0000-0000-0063-000000000031}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -89,8 +203,8 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000059}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000249}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000250}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000417}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000418}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000058}; !- Return Air Stream Node Name OS:AirLoopHVAC:OutdoorAirSystem, @@ -100,10 +214,43 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000134}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000255}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000256}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000423}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000424}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000138}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0022-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000160}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000429}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000430}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000164}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000004}, !- Handle + Air Loop HVAC Outdoor Air System 4, !- Name + {00000000-0000-0000-0022-000000000004}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000216}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000435}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000436}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000220}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000005}, !- Handle + Air Loop HVAC Outdoor Air System 5, !- Name + {00000000-0000-0000-0022-000000000005}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000272}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000441}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000442}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000276}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -116,6 +263,39 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000125}, !- Outlet Node Name {00000000-0000-0000-0017-000000000141}; !- Inlet Node Name 1 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0017-000000000150}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000167}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000173}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000179}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000185}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000191}, !- Inlet Node Name 5 + {00000000-0000-0000-0017-000000000197}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000004}, !- Handle + Air Loop HVAC Zone Mixer 4, !- Name + {00000000-0000-0000-0017-000000000206}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000223}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000229}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000235}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000241}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000247}, !- Inlet Node Name 5 + {00000000-0000-0000-0017-000000000253}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000005}, !- Handle + Air Loop HVAC Zone Mixer 5, !- Name + {00000000-0000-0000-0017-000000000262}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000279}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000285}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000291}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000297}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000303}, !- Inlet Node Name 5 + {00000000-0000-0000-0017-000000000309}; !- Inlet Node Name 6 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -128,10 +308,43 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000124}, !- Inlet Node Name {00000000-0000-0000-0017-000000000142}; !- Outlet Node Name 1 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0017-000000000149}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000168}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000174}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000180}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000186}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000192}, !- Outlet Node Name 5 + {00000000-0000-0000-0017-000000000198}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000004}, !- Handle + Air Loop HVAC Zone Splitter 4, !- Name + {00000000-0000-0000-0017-000000000205}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000224}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000230}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000236}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000242}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000248}, !- Outlet Node Name 5 + {00000000-0000-0000-0017-000000000254}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000005}, !- Handle + Air Loop HVAC Zone Splitter 5, !- Name + {00000000-0000-0000-0017-000000000261}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000280}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000286}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000292}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000298}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000304}, !- Outlet Node Name 5 + {00000000-0000-0000-0017-000000000310}; !- Outlet Node Name 6 + OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000065}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000066}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -139,14 +352,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000143}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000003}, !- Reheat Coil Name + {00000000-0000-0000-0016-000000000018}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000144}, !- Air Outlet Node Name @@ -157,82 +370,517 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0045-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000237}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000238}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0056-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0045-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000243}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000244}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000249}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000250}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000255}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000009}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000256}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000281}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000011}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000282}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000287}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000013}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000288}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000008}, !- Handle + Air Terminal Single Duct VAV Reheat 16, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000293}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000014}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000294}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:Building, - {00000000-0000-0000-0010-000000000001}, !- Handle - LargeOffice, !- Name - , !- Building Sector Type - 0, !- North Axis {deg} - , !- Nominal Floor to Floor Height {m} - , !- Space Type Name - {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name - , !- Default Schedule Set Name - 13, !- Standards Number of Stories - 12, !- Standards Number of Above Ground Stories - NECB2017, !- Standards Template - LargeOffice, !- Standards Building Type - , !- Standards Number of Living Units - , !- Relocatable - ; !- Nominal Floor to Ceiling Height {m} +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000009}, !- Handle + Air Terminal Single Duct VAV Reheat 17, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000299}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000015}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000300}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:BuildingStory, - {00000000-0000-0000-0011-000000000001}, !- Handle - Basement Story 0, !- Name - -2.439, !- Nominal Z Coordinate {m} - , !- Nominal Floor to Floor Height {m} - , !- Default Construction Set Name - , !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000023}, !- Group Rendering Name - ; !- Nominal Floor to Ceiling Height {m} +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000010}, !- Handle + Air Terminal Single Duct VAV Reheat 18, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000305}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000016}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000306}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000011}, !- Handle + Air Terminal Single Duct VAV Reheat 19, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000311}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000017}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000312}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000169}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000020}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000170}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000175}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000021}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000176}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000181}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000022}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000182}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 5, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000187}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000023}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000188}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000016}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000193}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000024}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000194}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000017}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000199}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000002}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000200}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000018}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000225}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000226}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000019}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000231}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000005}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000232}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000004}, !- Handle + Availability Manager Night Cycle 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000013}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000014}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000015}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000005}, !- Handle + Availability Manager Night Cycle 5, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000017}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000018}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000019}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name + {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name + {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000007}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000008}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:Building, + {00000000-0000-0000-0010-000000000001}, !- Handle + LargeOffice, !- Name + , !- Building Sector Type + 0, !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + , !- Space Type Name + {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name + , !- Default Schedule Set Name + 13, !- Standards Number of Stories + 12, !- Standards Number of Above Ground Stories + NECB2017, !- Standards Template + LargeOffice, !- Standards Building Type + , !- Standards Number of Living Units + , !- Relocatable + ; !- Nominal Floor to Ceiling Height {m} + +OS:BuildingStory, + {00000000-0000-0000-0011-000000000001}, !- Handle + Basement Story 0, !- Name + -2.439, !- Nominal Z Coordinate {m} + , !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {00000000-0000-0000-0059-000000000023}, !- Group Rendering Name + ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, {00000000-0000-0000-0011-000000000002}, !- Handle @@ -241,7 +889,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -251,7 +899,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -261,14 +909,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton, !- Name - 16349.4011529819, !- Reference Capacity {W} - 4.50320102432778, !- Reference COP {W/W} + Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton, !- Name + 1976208.45618191, !- Reference Capacity {W} + 5.67258064516129, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -310,9 +958,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0025-000000000009}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0025-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0027-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0025-000000000011}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0025-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0027-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -347,8 +995,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0014-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 111kBtu/hr 9.44EER, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 110kBtu/hr 9.44EER, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.28021693457475, !- Rated COP {W/W} @@ -383,7 +1031,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -398,31 +1046,274 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000001}, !- Handle - Coil Heating Electric 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000057}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000054}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Electric 2, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000133}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000130}; !- Air Outlet Node Name +OS:Coil:Cooling:Water, + {00000000-0000-0000-0015-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000152}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000153}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000161}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000158}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Electric 3, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name - , !- Efficiency - 11552.5978088379, !- Nominal Capacity {W} - , !- Air Inlet Node Name +OS:Coil:Cooling:Water, + {00000000-0000-0000-0015-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000208}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000217}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000214}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0015-000000000004}, !- Handle + Coil Cooling Water 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000264}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000265}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000273}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000270}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000001}, !- Handle + Coil Heating Electric 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000057}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000054}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000002}, !- Handle + Coil Heating Electric 10, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 15987.6720428467, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000003}, !- Handle + Coil Heating Electric 11, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000215}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000212}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000004}, !- Handle + Coil Heating Electric 12, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 476993.916320801, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000005}, !- Handle + Coil Heating Electric 13, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 27858.6330413818, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000006}, !- Handle + Coil Heating Electric 14, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 233619.543457031, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000007}, !- Handle + Coil Heating Electric 15, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 200906.330108643, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000008}, !- Handle + Coil Heating Electric 16, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 101947.906494141, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000009}, !- Handle + Coil Heating Electric 17, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 214018.382263184, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000010}, !- Handle + Coil Heating Electric 18, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000271}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000268}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000011}, !- Handle + Coil Heating Electric 19, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 48369.4622039795, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000012}, !- Handle + Coil Heating Electric 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000133}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000130}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000013}, !- Handle + Coil Heating Electric 20, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 2832.54597187042, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000014}, !- Handle + Coil Heating Electric 21, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 23149.9091148376, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000015}, !- Handle + Coil Heating Electric 22, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 19546.7582702637, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000016}, !- Handle + Coil Heating Electric 23, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 11441.4848327637, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000017}, !- Handle + Coil Heating Electric 24, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 21530.0471305847, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000018}, !- Handle + Coil Heating Electric 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 6760.44130325317, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000019}, !- Handle + Coil Heating Electric 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000159}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000156}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000020}, !- Handle + Coil Heating Electric 5, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 30445.2567100525, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000021}, !- Handle + Coil Heating Electric 6, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 2136.74865961075, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000022}, !- Handle + Coil Heating Electric 7, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 16368.2993888855, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000023}, !- Handle + Coil Heating Electric 8, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 14229.7093391418, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000024}, !- Handle + Coil Heating Electric 9, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 6995.25539875031, !- Nominal Capacity {W} + , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Connection, @@ -588,175 +1479,175 @@ OS:Connection, OS:Connection, {00000000-0000-0000-0017-000000000024}, !- Handle - {00000000-0000-0000-0086-000000000010}, !- Source Object + {00000000-0000-0000-0090-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000013}, !- Target Object + {00000000-0000-0000-0050-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle - {00000000-0000-0000-0086-000000000001}, !- Source Object + {00000000-0000-0000-0090-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000003}, !- Target Object + {00000000-0000-0000-0050-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle - {00000000-0000-0000-0086-000000000022}, !- Source Object + {00000000-0000-0000-0090-000000000022}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000025}, !- Target Object + {00000000-0000-0000-0050-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000027}, !- Handle - {00000000-0000-0000-0086-000000000003}, !- Source Object + {00000000-0000-0000-0090-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000005}, !- Target Object + {00000000-0000-0000-0050-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle - {00000000-0000-0000-0086-000000000016}, !- Source Object + {00000000-0000-0000-0090-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000019}, !- Target Object + {00000000-0000-0000-0050-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000029}, !- Handle - {00000000-0000-0000-0086-000000000017}, !- Source Object + {00000000-0000-0000-0090-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000020}, !- Target Object + {00000000-0000-0000-0050-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000030}, !- Handle - {00000000-0000-0000-0086-000000000005}, !- Source Object + {00000000-0000-0000-0090-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000008}, !- Target Object + {00000000-0000-0000-0050-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle - {00000000-0000-0000-0086-000000000006}, !- Source Object + {00000000-0000-0000-0090-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000009}, !- Target Object + {00000000-0000-0000-0050-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000032}, !- Handle - {00000000-0000-0000-0086-000000000018}, !- Source Object + {00000000-0000-0000-0090-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000021}, !- Target Object + {00000000-0000-0000-0050-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000033}, !- Handle - {00000000-0000-0000-0086-000000000011}, !- Source Object + {00000000-0000-0000-0090-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000014}, !- Target Object + {00000000-0000-0000-0050-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle - {00000000-0000-0000-0086-000000000019}, !- Source Object + {00000000-0000-0000-0090-000000000019}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000022}, !- Target Object + {00000000-0000-0000-0050-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000035}, !- Handle - {00000000-0000-0000-0086-000000000012}, !- Source Object + {00000000-0000-0000-0090-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000015}, !- Target Object + {00000000-0000-0000-0050-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000036}, !- Handle - {00000000-0000-0000-0086-000000000004}, !- Source Object + {00000000-0000-0000-0090-000000000004}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000007}, !- Target Object + {00000000-0000-0000-0050-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle - {00000000-0000-0000-0086-000000000002}, !- Source Object + {00000000-0000-0000-0090-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000004}, !- Target Object + {00000000-0000-0000-0050-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle - {00000000-0000-0000-0086-000000000007}, !- Source Object + {00000000-0000-0000-0090-000000000007}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000010}, !- Target Object + {00000000-0000-0000-0050-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0086-000000000020}, !- Source Object + {00000000-0000-0000-0090-000000000020}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000023}, !- Target Object + {00000000-0000-0000-0050-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle - {00000000-0000-0000-0086-000000000013}, !- Source Object + {00000000-0000-0000-0090-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000016}, !- Target Object + {00000000-0000-0000-0050-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0086-000000000021}, !- Source Object + {00000000-0000-0000-0090-000000000021}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000024}, !- Target Object + {00000000-0000-0000-0050-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle - {00000000-0000-0000-0086-000000000014}, !- Source Object + {00000000-0000-0000-0090-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000017}, !- Target Object + {00000000-0000-0000-0050-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle - {00000000-0000-0000-0086-000000000008}, !- Source Object + {00000000-0000-0000-0090-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000011}, !- Target Object + {00000000-0000-0000-0050-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0086-000000000015}, !- Source Object + {00000000-0000-0000-0090-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000018}, !- Target Object + {00000000-0000-0000-0050-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0086-000000000009}, !- Source Object + {00000000-0000-0000-0090-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000012}, !- Target Object + {00000000-0000-0000-0050-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle - {00000000-0000-0000-0086-000000000023}, !- Source Object + {00000000-0000-0000-0090-000000000023}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000113}, !- Target Object + {00000000-0000-0000-0050-000000000182}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0046-000000000119}, !- Target Object + {00000000-0000-0000-0050-000000000188}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0046-000000000120}, !- Source Object + {00000000-0000-0000-0050-000000000189}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -765,19 +1656,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000114}, !- Target Object + {00000000-0000-0000-0050-000000000183}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0046-000000000115}, !- Source Object + {00000000-0000-0000-0050-000000000184}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle - {00000000-0000-0000-0046-000000000114}, !- Source Object + {00000000-0000-0000-0050-000000000183}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -786,47 +1677,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000115}, !- Target Object + {00000000-0000-0000-0050-000000000184}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle - {00000000-0000-0000-0036-000000000001}, !- Source Object + {00000000-0000-0000-0040-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0046-000000000120}, !- Target Object + {00000000-0000-0000-0050-000000000189}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0046-000000000037}, !- Target Object + {00000000-0000-0000-0050-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle - {00000000-0000-0000-0046-000000000037}, !- Source Object + {00000000-0000-0000-0050-000000000100}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0036-000000000001}, !- Target Object + {00000000-0000-0000-0040-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0046-000000000039}, !- Target Object + {00000000-0000-0000-0050-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle - {00000000-0000-0000-0046-000000000039}, !- Source Object + {00000000-0000-0000-0050-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle - {00000000-0000-0000-0046-000000000119}, !- Source Object + {00000000-0000-0000-0050-000000000188}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -835,33 +1726,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0046-000000000116}, !- Target Object + {00000000-0000-0000-0050-000000000185}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0046-000000000116}, !- Source Object + {00000000-0000-0000-0050-000000000185}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle - {00000000-0000-0000-0046-000000000027}, !- Source Object + {00000000-0000-0000-0050-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000067}, !- Target Object + {00000000-0000-0000-0056-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle - {00000000-0000-0000-0052-000000000069}, !- Source Object + {00000000-0000-0000-0056-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000112}, !- Target Object + {00000000-0000-0000-0050-000000000181}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle - {00000000-0000-0000-0046-000000000112}, !- Source Object + {00000000-0000-0000-0050-000000000181}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -870,12 +1761,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000026}, !- Target Object + {00000000-0000-0000-0050-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle - {00000000-0000-0000-0046-000000000026}, !- Source Object + {00000000-0000-0000-0050-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -884,40 +1775,40 @@ OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0046-000000000027}, !- Target Object + {00000000-0000-0000-0050-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle - {00000000-0000-0000-0051-000000000001}, !- Source Object + {00000000-0000-0000-0055-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0046-000000000032}, !- Target Object + {00000000-0000-0000-0050-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000103}, !- Target Object + {00000000-0000-0000-0050-000000000169}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0046-000000000033}, !- Source Object + {00000000-0000-0000-0050-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000001}, !- Target Object + {00000000-0000-0000-0055-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle - {00000000-0000-0000-0051-000000000001}, !- Source Object + {00000000-0000-0000-0055-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0046-000000000030}, !- Target Object + {00000000-0000-0000-0050-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle - {00000000-0000-0000-0046-000000000030}, !- Source Object + {00000000-0000-0000-0050-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -926,47 +1817,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000034}, !- Target Object + {00000000-0000-0000-0050-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000031}, !- Target Object + {00000000-0000-0000-0050-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle - {00000000-0000-0000-0046-000000000031}, !- Source Object + {00000000-0000-0000-0050-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000001}, !- Target Object + {00000000-0000-0000-0055-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle - {00000000-0000-0000-0046-000000000032}, !- Source Object + {00000000-0000-0000-0050-000000000086}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000001}, !- Target Object + {00000000-0000-0000-0058-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Source Object + {00000000-0000-0000-0058-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000105}, !- Target Object + {00000000-0000-0000-0050-000000000171}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0046-000000000105}, !- Source Object + {00000000-0000-0000-0050-000000000171}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle - {00000000-0000-0000-0046-000000000103}, !- Source Object + {00000000-0000-0000-0050-000000000169}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -975,12 +1866,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0046-000000000104}, !- Target Object + {00000000-0000-0000-0050-000000000170}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle - {00000000-0000-0000-0046-000000000104}, !- Source Object + {00000000-0000-0000-0050-000000000170}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -989,12 +1880,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0046-000000000109}, !- Target Object + {00000000-0000-0000-0050-000000000175}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle - {00000000-0000-0000-0046-000000000109}, !- Source Object + {00000000-0000-0000-0050-000000000175}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1003,12 +1894,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0046-000000000110}, !- Target Object + {00000000-0000-0000-0050-000000000176}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle - {00000000-0000-0000-0046-000000000110}, !- Source Object + {00000000-0000-0000-0050-000000000176}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -1017,26 +1908,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0046-000000000089}, !- Target Object + {00000000-0000-0000-0050-000000000155}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle - {00000000-0000-0000-0046-000000000089}, !- Source Object + {00000000-0000-0000-0050-000000000155}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000001}, !- Target Object + {00000000-0000-0000-0054-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle - {00000000-0000-0000-0050-000000000001}, !- Source Object + {00000000-0000-0000-0054-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000090}, !- Target Object + {00000000-0000-0000-0050-000000000156}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle - {00000000-0000-0000-0046-000000000090}, !- Source Object + {00000000-0000-0000-0050-000000000156}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1045,54 +1936,54 @@ OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000091}, !- Target Object + {00000000-0000-0000-0050-000000000157}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle - {00000000-0000-0000-0046-000000000091}, !- Source Object + {00000000-0000-0000-0050-000000000157}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000002}, !- Target Object + {00000000-0000-0000-0054-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle - {00000000-0000-0000-0050-000000000002}, !- Source Object + {00000000-0000-0000-0054-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000033}, !- Target Object + {00000000-0000-0000-0050-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle - {00000000-0000-0000-0051-000000000002}, !- Source Object + {00000000-0000-0000-0055-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0046-000000000042}, !- Target Object + {00000000-0000-0000-0050-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000044}, !- Target Object + {00000000-0000-0000-0050-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0046-000000000043}, !- Source Object + {00000000-0000-0000-0050-000000000109}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000002}, !- Target Object + {00000000-0000-0000-0055-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle - {00000000-0000-0000-0051-000000000002}, !- Source Object + {00000000-0000-0000-0055-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0046-000000000040}, !- Target Object + {00000000-0000-0000-0050-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle - {00000000-0000-0000-0046-000000000040}, !- Source Object + {00000000-0000-0000-0050-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1101,47 +1992,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000101}, !- Target Object + {00000000-0000-0000-0050-000000000167}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000041}, !- Target Object + {00000000-0000-0000-0050-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle - {00000000-0000-0000-0046-000000000041}, !- Source Object + {00000000-0000-0000-0050-000000000107}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000002}, !- Target Object + {00000000-0000-0000-0055-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle - {00000000-0000-0000-0046-000000000042}, !- Source Object + {00000000-0000-0000-0050-000000000108}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000002}, !- Target Object + {00000000-0000-0000-0058-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Source Object + {00000000-0000-0000-0058-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000106}, !- Target Object + {00000000-0000-0000-0050-000000000172}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0046-000000000106}, !- Source Object + {00000000-0000-0000-0050-000000000172}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle - {00000000-0000-0000-0046-000000000044}, !- Source Object + {00000000-0000-0000-0050-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0024-000000000001}, !- Target Object 2; !- Inlet Port @@ -1150,12 +2041,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle {00000000-0000-0000-0024-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000045}, !- Target Object + {00000000-0000-0000-0050-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle - {00000000-0000-0000-0046-000000000045}, !- Source Object + {00000000-0000-0000-0050-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -1164,26 +2055,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0046-000000000092}, !- Target Object + {00000000-0000-0000-0050-000000000158}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle - {00000000-0000-0000-0046-000000000092}, !- Source Object + {00000000-0000-0000-0050-000000000158}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000003}, !- Target Object + {00000000-0000-0000-0054-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle - {00000000-0000-0000-0050-000000000003}, !- Source Object + {00000000-0000-0000-0054-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000093}, !- Target Object + {00000000-0000-0000-0050-000000000159}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle - {00000000-0000-0000-0046-000000000093}, !- Source Object + {00000000-0000-0000-0050-000000000159}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -1192,26 +2083,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000094}, !- Target Object + {00000000-0000-0000-0050-000000000160}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle - {00000000-0000-0000-0046-000000000094}, !- Source Object + {00000000-0000-0000-0050-000000000160}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000004}, !- Target Object + {00000000-0000-0000-0054-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle - {00000000-0000-0000-0050-000000000004}, !- Source Object + {00000000-0000-0000-0054-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000043}, !- Target Object + {00000000-0000-0000-0050-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle - {00000000-0000-0000-0046-000000000101}, !- Source Object + {00000000-0000-0000-0050-000000000167}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -1220,12 +2111,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0046-000000000102}, !- Target Object + {00000000-0000-0000-0050-000000000168}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0046-000000000102}, !- Source Object + {00000000-0000-0000-0050-000000000168}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 3; !- Inlet Port @@ -1234,12 +2125,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0046-000000000107}, !- Target Object + {00000000-0000-0000-0050-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0046-000000000107}, !- Source Object + {00000000-0000-0000-0050-000000000173}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -1248,47 +2139,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0046-000000000108}, !- Target Object + {00000000-0000-0000-0050-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0046-000000000108}, !- Source Object + {00000000-0000-0000-0050-000000000174}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0046-000000000128}, !- Target Object + {00000000-0000-0000-0050-000000000218}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0046-000000000129}, !- Source Object + {00000000-0000-0000-0050-000000000219}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000122}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000123}, !- Target Object + {00000000-0000-0000-0050-000000000213}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0046-000000000124}, !- Source Object + {00000000-0000-0000-0050-000000000214}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0046-000000000123}, !- Source Object + {00000000-0000-0000-0050-000000000213}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -1297,12 +2188,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000125}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000124}, !- Target Object + {00000000-0000-0000-0050-000000000214}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0046-000000000034}, !- Source Object + {00000000-0000-0000-0050-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 10; !- Inlet Port @@ -1311,103 +2202,103 @@ OS:Connection, {00000000-0000-0000-0017-000000000127}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000036}, !- Target Object + {00000000-0000-0000-0050-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000128}, !- Handle - {00000000-0000-0000-0046-000000000036}, !- Source Object + {00000000-0000-0000-0050-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000129}, !- Handle - {00000000-0000-0000-0037-000000000002}, !- Source Object + {00000000-0000-0000-0041-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0046-000000000129}, !- Target Object + {00000000-0000-0000-0050-000000000219}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000130}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object + {00000000-0000-0000-0016-000000000012}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0046-000000000038}, !- Target Object + {00000000-0000-0000-0050-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0046-000000000038}, !- Source Object + {00000000-0000-0000-0050-000000000103}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0037-000000000002}, !- Target Object + {00000000-0000-0000-0041-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000132}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0046-000000000035}, !- Target Object + {00000000-0000-0000-0050-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0046-000000000035}, !- Source Object + {00000000-0000-0000-0050-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object + {00000000-0000-0000-0016-000000000012}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000134}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0046-000000000125}, !- Target Object + {00000000-0000-0000-0050-000000000215}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0046-000000000125}, !- Source Object + {00000000-0000-0000-0050-000000000215}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000136}, !- Handle - {00000000-0000-0000-0046-000000000128}, !- Source Object + {00000000-0000-0000-0050-000000000218}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0037-000000000001}, !- Target Object + {00000000-0000-0000-0041-000000000004}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000137}, !- Handle - {00000000-0000-0000-0037-000000000001}, !- Source Object + {00000000-0000-0000-0041-000000000004}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0046-000000000111}, !- Target Object + {00000000-0000-0000-0050-000000000180}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000138}, !- Handle - {00000000-0000-0000-0046-000000000111}, !- Source Object + {00000000-0000-0000-0050-000000000180}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000139}, !- Handle - {00000000-0000-0000-0046-000000000029}, !- Source Object + {00000000-0000-0000-0050-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000037}, !- Target Object + {00000000-0000-0000-0056-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0052-000000000039}, !- Source Object + {00000000-0000-0000-0056-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000006}, !- Target Object + {00000000-0000-0000-0050-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000141}, !- Handle - {00000000-0000-0000-0046-000000000006}, !- Source Object + {00000000-0000-0000-0050-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -1416,12 +2307,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000142}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000028}, !- Target Object + {00000000-0000-0000-0050-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000143}, !- Handle - {00000000-0000-0000-0046-000000000028}, !- Source Object + {00000000-0000-0000-0050-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -1430,805 +2321,2107 @@ OS:Connection, {00000000-0000-0000-0017-000000000144}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0046-000000000029}, !- Target Object + {00000000-0000-0000-0050-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0051-000000000003}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0046-000000000063}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000197}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000146}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object + {00000000-0000-0000-0050-000000000198}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000147}, !- Handle - {00000000-0000-0000-0046-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000003}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000192}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000148}, !- Handle - {00000000-0000-0000-0051-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0046-000000000061}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000193}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0046-000000000061}, !- Source Object + {00000000-0000-0000-0050-000000000192}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000006}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000150}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000097}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000193}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000151}, !- Handle - {00000000-0000-0000-0046-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000003}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0019-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000091}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0046-000000000063}, !- Source Object + {00000000-0000-0000-0050-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000153}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000060}, !- Target Object + {00000000-0000-0000-0015-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0046-000000000060}, !- Source Object + {00000000-0000-0000-0050-000000000093}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000005}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000155}, !- Handle - {00000000-0000-0000-0046-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000001}, !- Target Object - 31; !- Inlet Port + {00000000-0000-0000-0041-000000000005}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000198}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0046-000000000002}, !- Target Object + {00000000-0000-0000-0016-000000000019}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000157}, !- Handle - {00000000-0000-0000-0046-000000000002}, !- Source Object + {00000000-0000-0000-0050-000000000104}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0041-000000000005}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0046-000000000095}, !- Target Object + {00000000-0000-0000-0015-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0046-000000000095}, !- Source Object + {00000000-0000-0000-0050-000000000092}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000005}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0016-000000000019}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000160}, !- Handle - {00000000-0000-0000-0050-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000096}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000194}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000161}, !- Handle - {00000000-0000-0000-0046-000000000096}, !- Source Object + {00000000-0000-0000-0050-000000000194}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0015-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000162}, !- Handle - {00000000-0000-0000-0046-000000000097}, !- Source Object + {00000000-0000-0000-0050-000000000197}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000006}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0041-000000000001}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0050-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000098}, !- Target Object + {00000000-0000-0000-0041-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000177}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0046-000000000098}, !- Source Object + {00000000-0000-0000-0050-000000000177}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000165}, !- Handle - {00000000-0000-0000-0018-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0046-000000000099}, !- Target Object + {00000000-0000-0000-0050-000000000069}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0046-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000007}, !- Target Object + {00000000-0000-0000-0056-000000000045}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000167}, !- Handle - {00000000-0000-0000-0050-000000000007}, !- Source Object + {00000000-0000-0000-0050-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000064}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0018-000000000006}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0046-000000000100}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000169}, !- Handle - {00000000-0000-0000-0046-000000000100}, !- Source Object + {00000000-0000-0000-0050-000000000068}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000008}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000012}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0050-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000062}, !- Target Object + {00000000-0000-0000-0007-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000171}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0046-000000000046}, !- Target Object + {00000000-0000-0000-0050-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0046-000000000046}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000001}, !- Target Object + {00000000-0000-0000-0056-000000000021}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0092-000000000001}, !- Source Object + {00000000-0000-0000-0050-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000047}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000174}, !- Handle - {00000000-0000-0000-0046-000000000047}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000070}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000175}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0046-000000000048}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000070}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000013}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000176}, !- Handle - {00000000-0000-0000-0046-000000000048}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000002}, !- Target Object + {00000000-0000-0000-0007-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0092-000000000002}, !- Source Object + {00000000-0000-0000-0050-000000000073}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000049}, !- Target Object + {00000000-0000-0000-0056-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0046-000000000049}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0056-000000000066}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000016}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000179}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0046-000000000050}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0046-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000003}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000181}, !- Handle - {00000000-0000-0000-0092-000000000003}, !- Source Object + {00000000-0000-0000-0050-000000000072}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000051}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000014}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0046-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0007-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000073}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000183}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0046-000000000052}, !- Target Object + {00000000-0000-0000-0050-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0046-000000000052}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000004}, !- Target Object + {00000000-0000-0000-0056-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000185}, !- Handle - {00000000-0000-0000-0092-000000000004}, !- Source Object + {00000000-0000-0000-0050-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000053}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0046-000000000053}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000074}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0046-000000000054}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000015}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000188}, !- Handle - {00000000-0000-0000-0046-000000000054}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000005}, !- Target Object + {00000000-0000-0000-0007-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000189}, !- Handle - {00000000-0000-0000-0092-000000000005}, !- Source Object + {00000000-0000-0000-0050-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000055}, !- Target Object + {00000000-0000-0000-0056-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000190}, !- Handle - {00000000-0000-0000-0046-000000000055}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0056-000000000060}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000014}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0046-000000000056}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0046-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000006}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000193}, !- Handle - {00000000-0000-0000-0092-000000000006}, !- Source Object + {00000000-0000-0000-0050-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000057}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000016}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0046-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0007-000000000016}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000077}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000195}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0046-000000000058}, !- Target Object + {00000000-0000-0000-0050-000000000079}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0046-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000007}, !- Target Object + {00000000-0000-0000-0056-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000197}, !- Handle - {00000000-0000-0000-0092-000000000007}, !- Source Object + {00000000-0000-0000-0050-000000000018}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000059}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0046-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0050-000000000078}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000199}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0046-000000000065}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000078}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000017}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0046-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000008}, !- Target Object + {00000000-0000-0000-0007-000000000017}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0092-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000066}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000204}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000202}, !- Handle - {00000000-0000-0000-0046-000000000066}, !- Source Object + {00000000-0000-0000-0050-000000000205}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 11; !- Inlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000203}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0046-000000000067}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000199}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000204}, !- Handle - {00000000-0000-0000-0046-000000000067}, !- Source Object + {00000000-0000-0000-0050-000000000200}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0092-000000000009}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0092-000000000009}, !- Source Object + {00000000-0000-0000-0050-000000000199}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000068}, !- Target Object + {00000000-0000-0000-0005-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0046-000000000068}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000200}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000207}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0046-000000000069}, !- Target Object + {00000000-0000-0000-0019-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000208}, !- Handle - {00000000-0000-0000-0046-000000000069}, !- Source Object + {00000000-0000-0000-0050-000000000094}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0092-000000000010}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000003}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0092-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000070}, !- Target Object + {00000000-0000-0000-0015-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000210}, !- Handle - {00000000-0000-0000-0046-000000000070}, !- Source Object + {00000000-0000-0000-0050-000000000096}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 13; !- Inlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0046-000000000071}, !- Target Object + {00000000-0000-0000-0041-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000205}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000212}, !- Handle - {00000000-0000-0000-0046-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000011}, !- Target Object + {00000000-0000-0000-0016-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0092-000000000011}, !- Source Object + {00000000-0000-0000-0050-000000000101}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000072}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0041-000000000006}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0046-000000000072}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0015-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000095}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000215}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0046-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000095}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0046-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000012}, !- Target Object + {00000000-0000-0000-0003-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000201}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000217}, !- Handle - {00000000-0000-0000-0092-000000000012}, !- Source Object + {00000000-0000-0000-0050-000000000201}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000074}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000003}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000218}, !- Handle - {00000000-0000-0000-0046-000000000074}, !- Source Object + {00000000-0000-0000-0050-000000000204}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0041-000000000002}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000219}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0046-000000000075}, !- Target Object + {00000000-0000-0000-0041-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000178}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000220}, !- Handle - {00000000-0000-0000-0046-000000000075}, !- Source Object + {00000000-0000-0000-0050-000000000178}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0092-000000000013}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0092-000000000013}, !- Source Object + {00000000-0000-0000-0050-000000000081}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000076}, !- Target Object + {00000000-0000-0000-0056-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000222}, !- Handle - {00000000-0000-0000-0046-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0056-000000000057}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000026}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0046-000000000077}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000026}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0046-000000000077}, !- Source Object + {00000000-0000-0000-0005-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0092-000000000014}, !- Target Object + {00000000-0000-0000-0050-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000225}, !- Handle - {00000000-0000-0000-0092-000000000014}, !- Source Object + {00000000-0000-0000-0050-000000000080}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000078}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000018}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0046-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0007-000000000018}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000081}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000227}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0046-000000000079}, !- Target Object + {00000000-0000-0000-0050-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0046-000000000079}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000015}, !- Target Object + {00000000-0000-0000-0056-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000229}, !- Handle - {00000000-0000-0000-0092-000000000015}, !- Source Object + {00000000-0000-0000-0050-000000000024}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000080}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000230}, !- Handle - {00000000-0000-0000-0046-000000000080}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0005-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000082}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0046-000000000081}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000019}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000232}, !- Handle - {00000000-0000-0000-0046-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000016}, !- Target Object + {00000000-0000-0000-0007-000000000019}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000233}, !- Handle - {00000000-0000-0000-0092-000000000016}, !- Source Object + {00000000-0000-0000-0050-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000082}, !- Target Object + {00000000-0000-0000-0056-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0046-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 19; !- Inlet Port + {00000000-0000-0000-0056-000000000036}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000022}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000235}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0046-000000000083}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0046-000000000083}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000017}, !- Target Object + {00000000-0000-0000-0005-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000237}, !- Handle - {00000000-0000-0000-0092-000000000017}, !- Source Object + {00000000-0000-0000-0050-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000084}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000002}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0046-000000000084}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 20; !- Inlet Port + {00000000-0000-0000-0007-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000049}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000239}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0046-000000000085}, !- Target Object + {00000000-0000-0000-0050-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0046-000000000085}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000018}, !- Target Object + {00000000-0000-0000-0056-000000000030}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000241}, !- Handle - {00000000-0000-0000-0092-000000000018}, !- Source Object + {00000000-0000-0000-0050-000000000020}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000086}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0046-000000000086}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 21; !- Inlet Port + {00000000-0000-0000-0005-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000050}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000243}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0046-000000000087}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000003}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0046-000000000087}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000019}, !- Target Object + {00000000-0000-0000-0007-000000000003}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000245}, !- Handle - {00000000-0000-0000-0092-000000000019}, !- Source Object + {00000000-0000-0000-0050-000000000053}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000088}, !- Target Object + {00000000-0000-0000-0056-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0046-000000000088}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 22; !- Inlet Port + {00000000-0000-0000-0056-000000000063}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000028}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000247}, !- Handle - {00000000-0000-0000-0046-000000000117}, !- Source Object + {00000000-0000-0000-0050-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000001}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0040-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0046-000000000121}, !- Target Object + {00000000-0000-0000-0005-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000249}, !- Handle - {00000000-0000-0000-0046-000000000121}, !- Source Object + {00000000-0000-0000-0050-000000000052}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0007-000000000004}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0046-000000000122}, !- Target Object + {00000000-0000-0000-0007-000000000004}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000251}, !- Handle - {00000000-0000-0000-0046-000000000122}, !- Source Object + {00000000-0000-0000-0050-000000000055}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000001}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0056-000000000013}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0040-000000000001}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0046-000000000118}, !- Target Object + {00000000-0000-0000-0056-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000253}, !- Handle - {00000000-0000-0000-0046-000000000126}, !- Source Object + {00000000-0000-0000-0050-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0040-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0046-000000000130}, !- Target Object + {00000000-0000-0000-0005-000000000004}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0050-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000255}, !- Handle - {00000000-0000-0000-0046-000000000130}, !- Source Object + {00000000-0000-0000-0050-000000000054}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0007-000000000005}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0046-000000000131}, !- Target Object + {00000000-0000-0000-0007-000000000005}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000257}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000211}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000258}, !- Handle + {00000000-0000-0000-0050-000000000212}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000259}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000206}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000260}, !- Handle + {00000000-0000-0000-0050-000000000207}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000261}, !- Handle + {00000000-0000-0000-0050-000000000206}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000262}, !- Handle + {00000000-0000-0000-0004-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000207}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000263}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000097}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000264}, !- Handle + {00000000-0000-0000-0050-000000000097}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000265}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000099}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000266}, !- Handle + {00000000-0000-0000-0050-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000267}, !- Handle + {00000000-0000-0000-0041-000000000007}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000212}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000268}, !- Handle + {00000000-0000-0000-0016-000000000010}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000102}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000269}, !- Handle + {00000000-0000-0000-0050-000000000102}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000007}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000270}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000098}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000271}, !- Handle + {00000000-0000-0000-0050-000000000098}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000010}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000272}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000208}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000273}, !- Handle + {00000000-0000-0000-0050-000000000208}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000274}, !- Handle + {00000000-0000-0000-0050-000000000211}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000275}, !- Handle + {00000000-0000-0000-0041-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000179}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000276}, !- Handle + {00000000-0000-0000-0050-000000000179}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000277}, !- Handle + {00000000-0000-0000-0050-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000278}, !- Handle + {00000000-0000-0000-0056-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000279}, !- Handle + {00000000-0000-0000-0050-000000000040}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000280}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000281}, !- Handle + {00000000-0000-0000-0050-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000006}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000282}, !- Handle + {00000000-0000-0000-0007-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000283}, !- Handle + {00000000-0000-0000-0050-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000284}, !- Handle + {00000000-0000-0000-0056-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000285}, !- Handle + {00000000-0000-0000-0050-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000286}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000287}, !- Handle + {00000000-0000-0000-0050-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000007}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000288}, !- Handle + {00000000-0000-0000-0007-000000000007}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000289}, !- Handle + {00000000-0000-0000-0050-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000290}, !- Handle + {00000000-0000-0000-0056-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000032}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000291}, !- Handle + {00000000-0000-0000-0050-000000000032}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000292}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000293}, !- Handle + {00000000-0000-0000-0050-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000294}, !- Handle + {00000000-0000-0000-0007-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000295}, !- Handle + {00000000-0000-0000-0050-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000025}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000296}, !- Handle + {00000000-0000-0000-0056-000000000027}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000034}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000297}, !- Handle + {00000000-0000-0000-0050-000000000034}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000298}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000299}, !- Handle + {00000000-0000-0000-0050-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000300}, !- Handle + {00000000-0000-0000-0007-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000301}, !- Handle + {00000000-0000-0000-0050-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000302}, !- Handle + {00000000-0000-0000-0056-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000038}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000303}, !- Handle + {00000000-0000-0000-0050-000000000038}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000304}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000305}, !- Handle + {00000000-0000-0000-0050-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000306}, !- Handle + {00000000-0000-0000-0007-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000065}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000307}, !- Handle + {00000000-0000-0000-0050-000000000067}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000308}, !- Handle + {00000000-0000-0000-0056-000000000009}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000042}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000309}, !- Handle + {00000000-0000-0000-0050-000000000042}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000310}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0050-000000000066}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000311}, !- Handle + {00000000-0000-0000-0050-000000000066}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000312}, !- Handle + {00000000-0000-0000-0007-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000067}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000313}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0050-000000000129}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000314}, !- Handle + {00000000-0000-0000-0019-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000315}, !- Handle + {00000000-0000-0000-0050-000000000130}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000003}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000316}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000127}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000317}, !- Handle + {00000000-0000-0000-0050-000000000127}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000318}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000163}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000319}, !- Handle + {00000000-0000-0000-0050-000000000128}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000003}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000320}, !- Handle + {00000000-0000-0000-0050-000000000129}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000321}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000126}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000322}, !- Handle + {00000000-0000-0000-0050-000000000126}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000323}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000001}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000324}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0050-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000325}, !- Handle + {00000000-0000-0000-0050-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000326}, !- Handle + {00000000-0000-0000-0019-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000161}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000327}, !- Handle + {00000000-0000-0000-0050-000000000161}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000328}, !- Handle + {00000000-0000-0000-0054-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000162}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000329}, !- Handle + {00000000-0000-0000-0050-000000000162}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000330}, !- Handle + {00000000-0000-0000-0050-000000000163}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000331}, !- Handle + {00000000-0000-0000-0054-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000164}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000332}, !- Handle + {00000000-0000-0000-0050-000000000164}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000333}, !- Handle + {00000000-0000-0000-0018-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000165}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000334}, !- Handle + {00000000-0000-0000-0050-000000000165}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000335}, !- Handle + {00000000-0000-0000-0054-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000130}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000336}, !- Handle + {00000000-0000-0000-0018-000000000006}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000166}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000337}, !- Handle + {00000000-0000-0000-0050-000000000166}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000338}, !- Handle + {00000000-0000-0000-0054-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000128}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000339}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000112}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000340}, !- Handle + {00000000-0000-0000-0050-000000000112}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000341}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000113}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000342}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000343}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000114}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000344}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000345}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000115}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000346}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000347}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000116}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000348}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000003}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000349}, !- Handle + {00000000-0000-0000-0096-000000000003}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000117}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000350}, !- Handle + {00000000-0000-0000-0050-000000000117}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000351}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000118}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000352}, !- Handle + {00000000-0000-0000-0050-000000000118}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000353}, !- Handle + {00000000-0000-0000-0096-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000119}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000354}, !- Handle + {00000000-0000-0000-0050-000000000119}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000355}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0050-000000000120}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000356}, !- Handle + {00000000-0000-0000-0050-000000000120}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000357}, !- Handle + {00000000-0000-0000-0096-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000121}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000358}, !- Handle + {00000000-0000-0000-0050-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000359}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000122}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000360}, !- Handle + {00000000-0000-0000-0050-000000000122}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000361}, !- Handle + {00000000-0000-0000-0096-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000123}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000362}, !- Handle + {00000000-0000-0000-0050-000000000123}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000363}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0050-000000000124}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000364}, !- Handle + {00000000-0000-0000-0050-000000000124}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000365}, !- Handle + {00000000-0000-0000-0096-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000125}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000366}, !- Handle + {00000000-0000-0000-0050-000000000125}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000367}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000131}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000368}, !- Handle + {00000000-0000-0000-0050-000000000131}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000369}, !- Handle + {00000000-0000-0000-0096-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000132}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000370}, !- Handle + {00000000-0000-0000-0050-000000000132}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000371}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000133}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000372}, !- Handle + {00000000-0000-0000-0050-000000000133}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000373}, !- Handle + {00000000-0000-0000-0096-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000134}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000374}, !- Handle + {00000000-0000-0000-0050-000000000134}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000375}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000135}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000376}, !- Handle + {00000000-0000-0000-0050-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000377}, !- Handle + {00000000-0000-0000-0096-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000136}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000378}, !- Handle + {00000000-0000-0000-0050-000000000136}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 13; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000379}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0050-000000000137}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000380}, !- Handle + {00000000-0000-0000-0050-000000000137}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000011}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000381}, !- Handle + {00000000-0000-0000-0096-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000138}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000382}, !- Handle + {00000000-0000-0000-0050-000000000138}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000383}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000139}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000384}, !- Handle + {00000000-0000-0000-0050-000000000139}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000385}, !- Handle + {00000000-0000-0000-0096-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000140}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000386}, !- Handle + {00000000-0000-0000-0050-000000000140}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000387}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0050-000000000141}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000388}, !- Handle + {00000000-0000-0000-0050-000000000141}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000389}, !- Handle + {00000000-0000-0000-0096-000000000013}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000142}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000390}, !- Handle + {00000000-0000-0000-0050-000000000142}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000391}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000143}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000392}, !- Handle + {00000000-0000-0000-0050-000000000143}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000393}, !- Handle + {00000000-0000-0000-0096-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000144}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000394}, !- Handle + {00000000-0000-0000-0050-000000000144}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000395}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0050-000000000145}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000396}, !- Handle + {00000000-0000-0000-0050-000000000145}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000015}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000397}, !- Handle + {00000000-0000-0000-0096-000000000015}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000146}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000398}, !- Handle + {00000000-0000-0000-0050-000000000146}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000399}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0050-000000000147}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000257}, !- Handle - {00000000-0000-0000-0046-000000000131}, !- Source Object + {00000000-0000-0000-0017-000000000400}, !- Handle + {00000000-0000-0000-0050-000000000147}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000401}, !- Handle + {00000000-0000-0000-0096-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000148}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000402}, !- Handle + {00000000-0000-0000-0050-000000000148}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000403}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0050-000000000149}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000404}, !- Handle + {00000000-0000-0000-0050-000000000149}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000017}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000405}, !- Handle + {00000000-0000-0000-0096-000000000017}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000150}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000406}, !- Handle + {00000000-0000-0000-0050-000000000150}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000407}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0050-000000000151}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000408}, !- Handle + {00000000-0000-0000-0050-000000000151}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000409}, !- Handle + {00000000-0000-0000-0096-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000152}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000410}, !- Handle + {00000000-0000-0000-0050-000000000152}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000411}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0050-000000000153}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000412}, !- Handle + {00000000-0000-0000-0050-000000000153}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000019}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000413}, !- Handle + {00000000-0000-0000-0096-000000000019}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000154}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000414}, !- Handle + {00000000-0000-0000-0050-000000000154}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 22; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000415}, !- Handle + {00000000-0000-0000-0050-000000000186}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000416}, !- Handle + {00000000-0000-0000-0044-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000190}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000417}, !- Handle + {00000000-0000-0000-0050-000000000190}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000418}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000191}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000419}, !- Handle + {00000000-0000-0000-0050-000000000191}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000002}, !- Target Object + {00000000-0000-0000-0044-000000000001}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0040-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000420}, !- Handle + {00000000-0000-0000-0044-000000000001}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000187}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000421}, !- Handle + {00000000-0000-0000-0050-000000000216}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000005}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000422}, !- Handle + {00000000-0000-0000-0044-000000000005}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000226}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000423}, !- Handle + {00000000-0000-0000-0050-000000000226}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000424}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000227}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000425}, !- Handle + {00000000-0000-0000-0050-000000000227}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000005}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000426}, !- Handle + {00000000-0000-0000-0044-000000000005}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000217}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000427}, !- Handle + {00000000-0000-0000-0050-000000000195}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000428}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000220}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000429}, !- Handle + {00000000-0000-0000-0050-000000000220}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000430}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000221}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000431}, !- Handle + {00000000-0000-0000-0050-000000000221}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000432}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000196}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000433}, !- Handle + {00000000-0000-0000-0050-000000000202}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000434}, !- Handle + {00000000-0000-0000-0044-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000222}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000435}, !- Handle + {00000000-0000-0000-0050-000000000222}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000436}, !- Handle + {00000000-0000-0000-0003-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000223}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000437}, !- Handle + {00000000-0000-0000-0050-000000000223}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000003}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000438}, !- Handle + {00000000-0000-0000-0044-000000000003}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000203}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000439}, !- Handle + {00000000-0000-0000-0050-000000000209}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000440}, !- Handle + {00000000-0000-0000-0044-000000000004}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000224}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000441}, !- Handle + {00000000-0000-0000-0050-000000000224}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000442}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000225}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000443}, !- Handle + {00000000-0000-0000-0050-000000000225}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000004}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000444}, !- Handle + {00000000-0000-0000-0044-000000000004}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0046-000000000127}, !- Target Object + {00000000-0000-0000-0050-000000000210}, !- Target Object 2; !- Inlet Port OS:Connector:Mixer, @@ -2243,7 +4436,10 @@ OS:Connector:Mixer, {00000000-0000-0000-0018-000000000002}, !- Handle Connector Mixer 2, !- Name {00000000-0000-0000-0017-000000000073}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000128}; !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000128}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000154}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000210}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000266}; !- Inlet Branch Name 4 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000003}, !- Handle @@ -2262,34 +4458,34 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0017-000000000165}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000157}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000161}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000333}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000325}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000329}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0017-000000000168}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000164}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000174}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000178}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000182}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000186}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000190}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000194}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000198}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000202}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000206}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000210}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000214}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000218}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000222}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000226}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000230}, !- Inlet Branch Name 16 - {00000000-0000-0000-0017-000000000234}, !- Inlet Branch Name 17 - {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 18 - {00000000-0000-0000-0017-000000000242}, !- Inlet Branch Name 19 - {00000000-0000-0000-0017-000000000246}; !- Inlet Branch Name 20 + {00000000-0000-0000-0017-000000000336}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000332}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000342}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000346}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000350}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000354}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000358}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000362}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000366}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000370}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000374}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000378}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000382}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000386}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000390}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000394}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000398}, !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000402}, !- Inlet Branch Name 17 + {00000000-0000-0000-0017-000000000406}, !- Inlet Branch Name 18 + {00000000-0000-0000-0017-000000000410}, !- Inlet Branch Name 19 + {00000000-0000-0000-0017-000000000414}; !- Inlet Branch Name 20 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -2303,7 +4499,10 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0017-000000000071}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000072}; !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000072}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000151}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000207}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000263}; !- Outlet Branch Name 4 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -2322,309 +4521,420 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0017-000000000154}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000146}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000158}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000322}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000314}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000326}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0017-000000000149}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000150}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000171}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000175}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000179}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000183}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000187}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000191}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000195}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000199}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000203}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000207}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000211}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000215}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000219}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000223}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000227}, !- Outlet Branch Name 16 - {00000000-0000-0000-0017-000000000231}, !- Outlet Branch Name 17 - {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 18 - {00000000-0000-0000-0017-000000000239}, !- Outlet Branch Name 19 - {00000000-0000-0000-0017-000000000243}; !- Outlet Branch Name 20 + {00000000-0000-0000-0017-000000000317}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000318}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000339}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000343}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000347}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000351}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000355}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000359}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000363}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000367}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000371}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000375}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000379}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000383}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000387}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000391}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000395}, !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000399}, !- Outlet Branch Name 17 + {00000000-0000-0000-0017-000000000403}, !- Outlet Branch Name 18 + {00000000-0000-0000-0017-000000000407}, !- Outlet Branch Name 19 + {00000000-0000-0000-0017-000000000411}; !- Outlet Branch Name 20 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle BTAP-Ext-DaylightDiffuser, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000002}, !- Handle BTAP-Ext-DaylightDiffuser:U=0.190 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000002}; !- Layer 1 + {00000000-0000-0000-0100-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000003}, !- Handle BTAP-Ext-DaylightDomes, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000004}, !- Handle BTAP-Ext-DaylightDomes:U=0.190 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000002}; !- Layer 1 + {00000000-0000-0000-0100-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000005}, !- Handle BTAP-Ext-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000018}, !- Layer 1 - {00000000-0000-0000-0044-000000000013}; !- Layer 2 + {00000000-0000-0000-0047-000000000018}, !- Layer 1 + {00000000-0000-0000-0048-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000006}, !- Handle BTAP-Ext-Door:U-1.9, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000017}, !- Layer 1 - {00000000-0000-0000-0044-000000000011}; !- Layer 2 + {00000000-0000-0000-0047-000000000017}, !- Layer 1 + {00000000-0000-0000-0048-000000000011}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000007}, !- Handle BTAP-Ext-FixedWindow, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000008}, !- Handle BTAP-Ext-FixedWindow:U=0.190 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000002}; !- Layer 1 + {00000000-0000-0000-0100-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000009}, !- Handle BTAP-Ext-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000013}, !- Layer 1 - {00000000-0000-0000-0043-000000000008}, !- Layer 2 - {00000000-0000-0000-0044-000000000007}; !- Layer 3 + {00000000-0000-0000-0048-000000000013}, !- Layer 1 + {00000000-0000-0000-0047-000000000008}, !- Layer 2 + {00000000-0000-0000-0048-000000000007}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000010}, !- Handle BTAP-Ext-Floor-Mass:U-0.162, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000008}, !- Layer 1 - {00000000-0000-0000-0043-000000000007}, !- Layer 2 - {00000000-0000-0000-0044-000000000003}; !- Layer 3 + {00000000-0000-0000-0048-000000000008}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}, !- Layer 2 + {00000000-0000-0000-0048-000000000003}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000011}, !- Handle BTAP-Ext-GlassDoors, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000012}, !- Handle BTAP-Ext-GlassDoors:U=0.190 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000002}; !- Layer 1 + {00000000-0000-0000-0100-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000013}, !- Handle BTAP-Ext-OverHeadDoor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000013}; !- Layer 1 + {00000000-0000-0000-0048-000000000013}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000014}, !- Handle BTAP-Ext-OverHeadDoor:U-1.9, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000012}; !- Layer 1 + {00000000-0000-0000-0048-000000000012}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000015}, !- Handle BTAP-Ext-Roof-Metal, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000024}, !- Layer 1 - {00000000-0000-0000-0044-000000000013}; !- Layer 2 + {00000000-0000-0000-0047-000000000024}, !- Layer 1 + {00000000-0000-0000-0048-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000016}, !- Handle BTAP-Ext-Roof-Metal:U-0.138, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000023}, !- Layer 1 - {00000000-0000-0000-0044-000000000010}; !- Layer 2 + {00000000-0000-0000-0047-000000000023}, !- Layer 1 + {00000000-0000-0000-0048-000000000010}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000017}, !- Handle BTAP-Ext-Skylights, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000018}, !- Handle BTAP-Ext-Skylights:U=0.190 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000002}; !- Layer 1 + {00000000-0000-0000-0100-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000019}, !- Handle BTAP-Ext-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000006}, !- Layer 1 - {00000000-0000-0000-0043-000000000014}, !- Layer 2 - {00000000-0000-0000-0044-000000000013}, !- Layer 3 - {00000000-0000-0000-0043-000000000002}; !- Layer 4 + {00000000-0000-0000-0047-000000000006}, !- Layer 1 + {00000000-0000-0000-0047-000000000014}, !- Layer 2 + {00000000-0000-0000-0048-000000000013}, !- Layer 3 + {00000000-0000-0000-0047-000000000002}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000020}, !- Handle BTAP-Ext-Wall-Mass:U-0.21, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000005}, !- Layer 1 - {00000000-0000-0000-0043-000000000013}, !- Layer 2 - {00000000-0000-0000-0044-000000000009}, !- Layer 3 - {00000000-0000-0000-0043-000000000001}; !- Layer 4 + {00000000-0000-0000-0047-000000000005}, !- Layer 1 + {00000000-0000-0000-0047-000000000013}, !- Layer 2 + {00000000-0000-0000-0048-000000000009}, !- Layer 3 + {00000000-0000-0000-0047-000000000001}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000021}, !- Handle BTAP-Grnd-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000012}, !- Layer 1 - {00000000-0000-0000-0044-000000000007}; !- Layer 2 + {00000000-0000-0000-0047-000000000012}, !- Layer 1 + {00000000-0000-0000-0048-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000022}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000009}, !- Layer 1 - {00000000-0000-0000-0044-000000000004}; !- Layer 2 + {00000000-0000-0000-0047-000000000009}, !- Layer 1 + {00000000-0000-0000-0048-000000000004}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000023}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000009}, !- Layer 1 - {00000000-0000-0000-0043-000000000016}; !- Layer 2 + {00000000-0000-0000-0047-000000000009}, !- Layer 1 + {00000000-0000-0000-0047-000000000016}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000024}, !- Handle BTAP-Grnd-Roof-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000012}, !- Layer 1 - {00000000-0000-0000-0044-000000000007}; !- Layer 2 + {00000000-0000-0000-0047-000000000012}, !- Layer 1 + {00000000-0000-0000-0048-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000025}, !- Handle BTAP-Grnd-Roof-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000011}, !- Layer 1 - {00000000-0000-0000-0044-000000000006}; !- Layer 2 + {00000000-0000-0000-0047-000000000011}, !- Layer 1 + {00000000-0000-0000-0048-000000000006}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000026}, !- Handle BTAP-Grnd-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000012}, !- Layer 1 - {00000000-0000-0000-0044-000000000007}; !- Layer 2 + {00000000-0000-0000-0047-000000000012}, !- Layer 1 + {00000000-0000-0000-0048-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000027}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000010}, !- Layer 1 - {00000000-0000-0000-0044-000000000005}; !- Layer 2 + {00000000-0000-0000-0047-000000000010}, !- Layer 1 + {00000000-0000-0000-0048-000000000005}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000028}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000010}, !- Layer 1 - {00000000-0000-0000-0043-000000000015}; !- Layer 2 + {00000000-0000-0000-0047-000000000010}, !- Layer 1 + {00000000-0000-0000-0047-000000000015}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000029}, !- Handle BTAP-Int-Ceiling, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000007}, !- Layer 1 - {00000000-0000-0000-0043-000000000003}; !- Layer 2 + {00000000-0000-0000-0048-000000000007}, !- Layer 1 + {00000000-0000-0000-0047-000000000003}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000030}, !- Handle BTAP-Int-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000021}; !- Layer 1 + {00000000-0000-0000-0047-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000031}, !- Handle BTAP-Int-Floor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000003}, !- Layer 1 - {00000000-0000-0000-0044-000000000007}; !- Layer 2 + {00000000-0000-0000-0047-000000000003}, !- Layer 1 + {00000000-0000-0000-0048-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000032}, !- Handle BTAP-Int-Partition, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000021}; !- Layer 1 + {00000000-0000-0000-0047-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000033}, !- Handle BTAP-Int-Wall, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000019}, !- Layer 1 - {00000000-0000-0000-0043-000000000019}; !- Layer 2 + {00000000-0000-0000-0047-000000000019}, !- Layer 1 + {00000000-0000-0000-0047-000000000019}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000034}, !- Handle BTAP-Int-Window, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000035}, !- Handle Basement Floor construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000022}, !- Layer 1 - {00000000-0000-0000-0044-000000000001}; !- Layer 2 + {00000000-0000-0000-0047-000000000022}, !- Layer 1 + {00000000-0000-0000-0048-000000000001}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000036}, !- Handle Basement Wall construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000022}; !- Layer 1 + {00000000-0000-0000-0047-000000000022}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000037}, !- Handle Floor Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000001}, !- Layer 1 - {00000000-0000-0000-0043-000000000004}, !- Layer 2 - {00000000-0000-0000-0044-000000000002}; !- Layer 3 + {00000000-0000-0000-0048-000000000001}, !- Layer 1 + {00000000-0000-0000-0047-000000000004}, !- Layer 2 + {00000000-0000-0000-0048-000000000002}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000038}, !- Handle Wall Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000020}, !- Layer 1 - {00000000-0000-0000-0043-000000000020}; !- Layer 2 + {00000000-0000-0000-0047-000000000020}, !- Layer 1 + {00000000-0000-0000-0047-000000000020}; !- Layer 2 OS:Controller:MechanicalVentilation, {00000000-0000-0000-0021-000000000001}, !- Handle Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000004}, !- Handle + Controller Mechanical Ventilation 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000005}, !- Handle + Controller Mechanical Ventilation 5, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0063-000000000027}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0063-000000000031}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0063-000000000028}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name + {00000000-0000-0000-0022-000000000004}, !- Handle + Controller Outdoor Air 4, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name @@ -2640,10 +4950,10 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0059-000000000024}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0063-000000000029}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0021-000000000004}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -2653,27 +4963,27 @@ OS:Controller:OutdoorAir, InterlockedWithMechanicalCooling; !- Economizer Operation Staging OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name + {00000000-0000-0000-0022-000000000005}, !- Handle + Controller Outdoor Air 5, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name , !- Actuator Node Name autosize, !- Minimum Outdoor Air Flow Rate {m3/s} Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - NoEconomizer, !- Economizer Control Type + DifferentialEnthalpy, !- Economizer Control Type ModulateFlow, !- Economizer Control Action Type - 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} - 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} , !- Economizer Maximum Limit Dewpoint Temperature {C} , !- Electronic Enthalpy Limit Curve Name - -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0059-000000000025}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0063-000000000030}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0021-000000000005}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -2695,6 +5005,45 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000002}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0015-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000003}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0015-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000004}, !- Handle + Controller Water Coil 4, !- Name + {00000000-0000-0000-0015-000000000004}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0024-000000000001}, !- Handle Cooling Tower Single Speed 1, !- Name @@ -2702,7 +5051,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000104}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 259.740244532758, !- Fan Power at Design Air Flow Rate {W} + 30219.6380386463, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -2720,7 +5069,7 @@ OS:CoolingTower:SingleSpeed, , !- Blowdown Makeup Water Usage Schedule Name , !- Outdoor Air Inlet Node Name FanCycling, !- Capacity Control - 1, !- Number of Cells + 2, !- Number of Cells MinimalCell, !- Cell Control 0.33, !- Cell Minimum Water Flow Rate Fraction 2.5, !- Cell Maximum Water Flow Rate Fraction @@ -2849,6 +5198,34 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0025-000000000009}, !- Handle + WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name + 0.707908, !- Coefficient1 Constant + -0.00200657, !- Coefficient2 x + -0.00259605, !- Coefficient3 x**2 + 0.0300588, !- Coefficient4 y + -0.00105643, !- Coefficient5 y**2 + 0.0020457, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0025-000000000010}, !- Handle + WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name + 0.560523, !- Coefficient1 Constant + -0.0137816, !- Coefficient2 x + 6.56424e-05, !- Coefficient3 x**2 + 0.0132194, !- Coefficient4 y + 0.000268596, !- Coefficient5 y**2 + -0.000501131, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0025-000000000011}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -2862,7 +5239,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000010}, !- Handle + {00000000-0000-0000-0025-000000000012}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -2905,6 +5282,26 @@ OS:Curve:Cubic, 0.68, !- Minimum Value of x 1; !- Maximum Value of x +OS:Curve:Cubic, + {00000000-0000-0000-0026-000000000004}, !- Handle + VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name + -4.1457, !- Coefficient1 Constant + 16.803, !- Coefficient2 x + -19.471, !- Coefficient3 x**2 + 7.8488, !- Coefficient4 x**3 + 0.5, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0026-000000000005}, !- Handle + VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name + -0.3477, !- Coefficient1 Constant + 4.0976, !- Coefficient2 x + -5.0024, !- Coefficient3 x**2 + 2.268, !- Coefficient4 x**3 + 0.22, !- Minimum Value of x + 1; !- Maximum Value of x + OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000001}, !- Handle Curve Quadratic 1, !- Name @@ -2961,6 +5358,15 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000007}, !- Handle + WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name + 0.171493, !- Coefficient1 Constant + 0.588202, !- Coefficient2 x + 0.237373, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0027-000000000008}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -2992,7 +5398,7 @@ OS:DefaultScheduleSet, , !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -3000,13 +5406,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0059-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0059-000000000017}, !- People Activity Level Schedule Name - {00000000-0000-0000-0059-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0059-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0063-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0063-000000000017}, !- People Activity Level Schedule Name + {00000000-0000-0000-0063-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0063-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -3014,13 +5420,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000003}, !- Handle Space Function Office open plan Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0059-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0059-000000000017}, !- People Activity Level Schedule Name - {00000000-0000-0000-0059-000000000013}, !- Lighting Schedule Name - {00000000-0000-0000-0059-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0063-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0063-000000000017}, !- People Activity Level Schedule Name + {00000000-0000-0000-0063-000000000013}, !- Lighting Schedule Name + {00000000-0000-0000-0063-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -3129,7 +5535,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name {00000000-0000-0000-0034-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -3138,7 +5544,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000002}, !- Handle Space Function Office open plan Elec Equip, !- Name {00000000-0000-0000-0034-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -3163,13 +5569,157 @@ OS:ElectricEquipment:Definition, , !- Fraction Latent 0.5; !- Fraction Radiant +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name + {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0063-000000000016}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name + {00000000-0000-0000-0063-000000000016}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000005}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_ClgSch0, !- Name + {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000006}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_HtgSch0, !- Name + {00000000-0000-0000-0063-000000000016}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0036-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {61e60baa-d975-4f3b-9c07-cf473bd1627a}<23.9 && {61e60baa-d975-4f3b-9c07-cf473bd1627a}>1.7, !- Program Line 1 + SET {f561b448-a5f3-4a17-9258-5c2e2bb1c57a} = 29.4, !- Program Line 2 + SET {067d1180-220e-450f-8075-1587ec9f09d1} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {61e60baa-d975-4f3b-9c07-cf473bd1627a}<23.9 && {61e60baa-d975-4f3b-9c07-cf473bd1627a}>1.7, !- Program Line 4 + SET {f561b448-a5f3-4a17-9258-5c2e2bb1c57a} = 29.4, !- Program Line 5 + SET {067d1180-220e-450f-8075-1587ec9f09d1} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {61e60baa-d975-4f3b-9c07-cf473bd1627a}<23.9 && {61e60baa-d975-4f3b-9c07-cf473bd1627a}>1.7, !- Program Line 7 + SET {f561b448-a5f3-4a17-9258-5c2e2bb1c57a} = 29.4, !- Program Line 8 + SET {067d1180-220e-450f-8075-1587ec9f09d1} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {61e60baa-d975-4f3b-9c07-cf473bd1627a}<23.9 && {61e60baa-d975-4f3b-9c07-cf473bd1627a}>1.7, !- Program Line 10 + SET {f561b448-a5f3-4a17-9258-5c2e2bb1c57a} = 29.4, !- Program Line 11 + SET {067d1180-220e-450f-8075-1587ec9f09d1} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {f561b448-a5f3-4a17-9258-5c2e2bb1c57a} = NULL, !- Program Line 14 + SET {067d1180-220e-450f-8075-1587ec9f09d1} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0036-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a6437ff8-cccb-40ca-93bf-b1fbbd27d6ad}<23.9 && {a6437ff8-cccb-40ca-93bf-b1fbbd27d6ad}>1.7, !- Program Line 1 + SET {f226fb2c-1e92-4472-b715-11475728280a} = 29.4, !- Program Line 2 + SET {6e972c19-6058-4f00-a73f-eadc826f2c6a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a6437ff8-cccb-40ca-93bf-b1fbbd27d6ad}<23.9 && {a6437ff8-cccb-40ca-93bf-b1fbbd27d6ad}>1.7, !- Program Line 4 + SET {f226fb2c-1e92-4472-b715-11475728280a} = 29.4, !- Program Line 5 + SET {6e972c19-6058-4f00-a73f-eadc826f2c6a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a6437ff8-cccb-40ca-93bf-b1fbbd27d6ad}<23.9 && {a6437ff8-cccb-40ca-93bf-b1fbbd27d6ad}>1.7, !- Program Line 7 + SET {f226fb2c-1e92-4472-b715-11475728280a} = 29.4, !- Program Line 8 + SET {6e972c19-6058-4f00-a73f-eadc826f2c6a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a6437ff8-cccb-40ca-93bf-b1fbbd27d6ad}<23.9 && {a6437ff8-cccb-40ca-93bf-b1fbbd27d6ad}>1.7, !- Program Line 10 + SET {f226fb2c-1e92-4472-b715-11475728280a} = 29.4, !- Program Line 11 + SET {6e972c19-6058-4f00-a73f-eadc826f2c6a} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {f226fb2c-1e92-4472-b715-11475728280a} = NULL, !- Program Line 14 + SET {6e972c19-6058-4f00-a73f-eadc826f2c6a} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0036-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8f330991-5c11-4a08-92aa-5683ebd8c6fe}<23.9 && {8f330991-5c11-4a08-92aa-5683ebd8c6fe}>1.7, !- Program Line 1 + SET {9a6a2cc2-f3b1-4458-bff6-ed313dc65048} = 29.4, !- Program Line 2 + SET {42ce9bfb-dafe-4b64-9916-d55f1cdf0e0a} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8f330991-5c11-4a08-92aa-5683ebd8c6fe}<23.9 && {8f330991-5c11-4a08-92aa-5683ebd8c6fe}>1.7, !- Program Line 4 + SET {9a6a2cc2-f3b1-4458-bff6-ed313dc65048} = 29.4, !- Program Line 5 + SET {42ce9bfb-dafe-4b64-9916-d55f1cdf0e0a} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8f330991-5c11-4a08-92aa-5683ebd8c6fe}<23.9 && {8f330991-5c11-4a08-92aa-5683ebd8c6fe}>1.7, !- Program Line 7 + SET {9a6a2cc2-f3b1-4458-bff6-ed313dc65048} = 29.4, !- Program Line 8 + SET {42ce9bfb-dafe-4b64-9916-d55f1cdf0e0a} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8f330991-5c11-4a08-92aa-5683ebd8c6fe}<23.9 && {8f330991-5c11-4a08-92aa-5683ebd8c6fe}>1.7, !- Program Line 10 + SET {9a6a2cc2-f3b1-4458-bff6-ed313dc65048} = 29.4, !- Program Line 11 + SET {42ce9bfb-dafe-4b64-9916-d55f1cdf0e0a} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {9a6a2cc2-f3b1-4458-bff6-ed313dc65048} = NULL, !- Program Line 14 + SET {42ce9bfb-dafe-4b64-9916-d55f1cdf0e0a} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0037-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0036-000000000001}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0037-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0036-000000000002}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0037-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0036-000000000003}; !- Program Name 1 + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0038-000000000001}, !- Handle + OAT, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0038-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0038-000000000003}, !- Handle + OAT_2, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + OS:Facility, - {00000000-0000-0000-0035-000000000001}; !- Handle + {00000000-0000-0000-0039-000000000001}; !- Handle OS:Fan:ConstantVolume, - {00000000-0000-0000-0036-000000000001}, !- Handle + {00000000-0000-0000-0040-000000000001}, !- Handle Fan Constant Volume 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name 0.39975, !- Fan Total Efficiency 640, !- Pressure Rise {Pa} AutoSize, !- Maximum Flow Rate {m3/s} @@ -3180,9 +5730,72 @@ OS:Fan:ConstantVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0037-000000000001}, !- Handle + {00000000-0000-0000-0041-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000162}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000163}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000218}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000219}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000003}, !- Handle + Sys6 Return Fan 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000274}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000275}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000004}, !- Handle Sys6 Return Fan, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency 250, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -3201,9 +5814,72 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0037-000000000002}, !- Handle + {00000000-0000-0000-0041-000000000005}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000157}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000155}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000006}, !- Handle + Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000213}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000211}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000007}, !- Handle + Sys6 Supply Fan 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000269}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000267}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000008}, !- Handle Sys6 Supply Fan, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -3222,7 +5898,7 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Foundation:Kiva, - {00000000-0000-0000-0038-000000000001}, !- Handle + {00000000-0000-0000-0042-000000000001}, !- Handle Bldg Kiva Foundation, !- Name , !- Initial Indoor Air Temperature {C} , !- Interior Horizontal Insulation Material Name @@ -3242,7 +5918,7 @@ OS:Foundation:Kiva, ; !- Footing Depth {m} OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0039-000000000001}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Handle , !- Soil Conductivity {W/m-K} , !- Soil Density {kg/m3} , !- Soil Specific Heat {J/kg-K} @@ -3257,9 +5933,87 @@ OS:Foundation:Kiva:Settings, ; !- Simulation Timestep OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0040-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + {00000000-0000-0000-0044-000000000001}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0017-000000000415}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000416}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000419}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000420}, !- Exhaust Air Outlet Node + 556.536604212459, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0044-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0017-000000000427}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000428}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000431}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000432}, !- Exhaust Air Outlet Node + 1868.20312072616, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0044-000000000003}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0017-000000000433}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000434}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000437}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000438}, !- Exhaust Air Outlet Node + 18232.0312072616, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0044-000000000004}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3269,11 +6023,11 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000247}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000248}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000251}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000252}, !- Exhaust Air Outlet Node - 556.536604212459, !- Nominal Electric Power {W} + {00000000-0000-0000-0017-000000000439}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000440}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000443}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000444}, !- Exhaust Air Outlet Node + 1868.20312072616, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type ExhaustOnly, !- Frost Control Type @@ -3283,9 +6037,9 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, Yes; !- Economizer Lockout OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0040-000000000002}, !- Handle + {00000000-0000-0000-0044-000000000005}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3295,10 +6049,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000253}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000254}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000257}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000258}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0017-000000000421}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000422}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000425}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000426}, !- Exhaust Air Outlet Node 449.90062893127, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -3309,27 +6063,27 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, Yes; !- Economizer Lockout OS:Lights, - {00000000-0000-0000-0041-000000000001}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Lights, !- Name - {00000000-0000-0000-0042-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0046-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights, - {00000000-0000-0000-0041-000000000002}, !- Handle + {00000000-0000-0000-0045-000000000002}, !- Handle Space Function Office open plan Lights, !- Name - {00000000-0000-0000-0042-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0046-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights:Definition, - {00000000-0000-0000-0042-000000000001}, !- Handle + {00000000-0000-0000-0046-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -3339,7 +6093,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Lights:Definition, - {00000000-0000-0000-0042-000000000002}, !- Handle + {00000000-0000-0000-0046-000000000002}, !- Handle Space Function Office open plan Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -3349,7 +6103,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Material, - {00000000-0000-0000-0043-000000000001}, !- Handle + {00000000-0000-0000-0047-000000000001}, !- Handle 1/2IN Gypsum 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3361,7 +6115,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000002}, !- Handle + {00000000-0000-0000-0047-000000000002}, !- Handle 1/2IN Gypsum, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3373,7 +6127,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000003}, !- Handle + {00000000-0000-0000-0047-000000000003}, !- Handle 100mm Normalweight concrete floor 1, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -3382,7 +6136,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0043-000000000004}, !- Handle + {00000000-0000-0000-0047-000000000004}, !- Handle 100mm Normalweight concrete floor, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -3391,7 +6145,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0043-000000000005}, !- Handle + {00000000-0000-0000-0047-000000000005}, !- Handle 1IN Stucco 1, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -3403,7 +6157,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000006}, !- Handle + {00000000-0000-0000-0047-000000000006}, !- Handle 1IN Stucco, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -3415,7 +6169,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000007}, !- Handle + {00000000-0000-0000-0047-000000000007}, !- Handle 4 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -3427,7 +6181,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000008}, !- Handle + {00000000-0000-0000-0047-000000000008}, !- Handle 4 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -3439,7 +6193,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000009}, !- Handle + {00000000-0000-0000-0047-000000000009}, !- Handle 6 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3451,7 +6205,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000010}, !- Handle + {00000000-0000-0000-0047-000000000010}, !- Handle 6 in. Normalweight Concrete Floor 2, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3463,7 +6217,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000011}, !- Handle + {00000000-0000-0000-0047-000000000011}, !- Handle 6 in. Normalweight Concrete Floor 3, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3475,7 +6229,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000012}, !- Handle + {00000000-0000-0000-0047-000000000012}, !- Handle 6 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3487,7 +6241,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000013}, !- Handle + {00000000-0000-0000-0047-000000000013}, !- Handle 8IN CONCRETE HW RefBldg 1, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -3499,7 +6253,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000014}, !- Handle + {00000000-0000-0000-0047-000000000014}, !- Handle 8IN CONCRETE HW RefBldg, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -3511,7 +6265,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000015}, !- Handle + {00000000-0000-0000-0047-000000000015}, !- Handle Expanded Polystyrene 1, !- Name MediumSmooth, !- Roughness 0.100199429303091, !- Thickness {m} @@ -3520,7 +6274,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0043-000000000016}, !- Handle + {00000000-0000-0000-0047-000000000016}, !- Handle Expanded Polystyrene, !- Name MediumSmooth, !- Roughness 0.0363958681740979, !- Thickness {m} @@ -3529,7 +6283,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0043-000000000017}, !- Handle + {00000000-0000-0000-0047-000000000017}, !- Handle F08 Metal surface 1, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -3541,7 +6295,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000018}, !- Handle + {00000000-0000-0000-0047-000000000018}, !- Handle F08 Metal surface, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -3553,7 +6307,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000019}, !- Handle + {00000000-0000-0000-0047-000000000019}, !- Handle G01 13mm gypsum board 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3565,7 +6319,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000020}, !- Handle + {00000000-0000-0000-0047-000000000020}, !- Handle G01 13mm gypsum board, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3577,7 +6331,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000021}, !- Handle + {00000000-0000-0000-0047-000000000021}, !- Handle G05 25mm wood, !- Name MediumSmooth, !- Roughness 0.0254, !- Thickness {m} @@ -3589,7 +6343,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000022}, !- Handle + {00000000-0000-0000-0047-000000000022}, !- Handle M10 200mm concrete block basement wall, !- Name MediumRough, !- Roughness 0.2032, !- Thickness {m} @@ -3598,7 +6352,7 @@ OS:Material, 912; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0043-000000000023}, !- Handle + {00000000-0000-0000-0047-000000000023}, !- Handle Metal Roof Surface 1, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -3610,7 +6364,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000024}, !- Handle + {00000000-0000-0000-0047-000000000024}, !- Handle Metal Roof Surface, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -3622,7 +6376,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000001}, !- Handle + {00000000-0000-0000-0048-000000000001}, !- Handle CP02 CARPET PAD, !- Name VeryRough, !- Roughness 0.21648, !- Thermal Resistance {m2-K/W} @@ -3631,7 +6385,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000002}, !- Handle + {00000000-0000-0000-0048-000000000002}, !- Handle Nonres_Floor_Insulation, !- Name MediumSmooth, !- Roughness 2.88291975297193, !- Thermal Resistance {m2-K/W} @@ -3640,7 +6394,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000003}, !- Handle + {00000000-0000-0000-0048-000000000003}, !- Handle Typical Carpet Pad 1, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -3649,7 +6403,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000004}, !- Handle + {00000000-0000-0000-0048-000000000004}, !- Handle Typical Carpet Pad 2, !- Name Smooth, !- Roughness 1.25502993703786, !- Thermal Resistance {m2-K/W} @@ -3658,7 +6412,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000005}, !- Handle + {00000000-0000-0000-0048-000000000005}, !- Handle Typical Carpet Pad 3, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -3667,7 +6421,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000006}, !- Handle + {00000000-0000-0000-0048-000000000006}, !- Handle Typical Carpet Pad 4, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -3676,7 +6430,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000007}, !- Handle + {00000000-0000-0000-0048-000000000007}, !- Handle Typical Carpet Pad, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -3685,7 +6439,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000008}, !- Handle + {00000000-0000-0000-0048-000000000008}, !- Handle Typical Insulation 1, !- Name Smooth, !- Roughness 5.91237683519488, !- Thermal Resistance {m2-K/W} @@ -3694,7 +6448,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000009}, !- Handle + {00000000-0000-0000-0048-000000000009}, !- Handle Typical Insulation 2, !- Name Smooth, !- Roughness 4.49096231241638, !- Thermal Resistance {m2-K/W} @@ -3703,7 +6457,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000010}, !- Handle + {00000000-0000-0000-0048-000000000010}, !- Handle Typical Insulation 3, !- Name Smooth, !- Roughness 7.24635914374968, !- Thermal Resistance {m2-K/W} @@ -3712,7 +6466,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000011}, !- Handle + {00000000-0000-0000-0048-000000000011}, !- Handle Typical Insulation 4, !- Name Smooth, !- Roughness 0.526298121629161, !- Thermal Resistance {m2-K/W} @@ -3721,7 +6475,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000012}, !- Handle + {00000000-0000-0000-0048-000000000012}, !- Handle Typical Insulation 5, !- Name Smooth, !- Roughness 0.526315789473684, !- Thermal Resistance {m2-K/W} @@ -3730,7 +6484,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000013}, !- Handle + {00000000-0000-0000-0048-000000000013}, !- Handle Typical Insulation, !- Name Smooth, !- Roughness 0.101874652714525, !- Thermal Resistance {m2-K/W} @@ -3739,856 +6493,1480 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:ModelObjectList, - {00000000-0000-0000-0045-000000000001}, !- Handle + {00000000-0000-0000-0049-000000000001}, !- Handle Availability Manager Night Cycle 1 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000002}, !- Handle + {00000000-0000-0000-0049-000000000002}, !- Handle Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000003}, !- Handle + {00000000-0000-0000-0049-000000000003}, !- Handle Availability Manager Night Cycle 1 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000004}, !- Handle + {00000000-0000-0000-0049-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000005}, !- Handle + {00000000-0000-0000-0049-000000000005}, !- Handle Availability Manager Night Cycle 2 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000006}, !- Handle + {00000000-0000-0000-0049-000000000006}, !- Handle Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000007}, !- Handle + {00000000-0000-0000-0049-000000000007}, !- Handle Availability Manager Night Cycle 2 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000008}, !- Handle + {00000000-0000-0000-0049-000000000008}, !- Handle Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000013}, !- Handle + Availability Manager Night Cycle 4 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000014}, !- Handle + Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000015}, !- Handle + Availability Manager Night Cycle 4 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000016}, !- Handle + Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000017}, !- Handle + Availability Manager Night Cycle 5 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000018}, !- Handle + Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000019}, !- Handle + Availability Manager Night Cycle 5 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000020}, !- Handle + Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name + OS:Node, - {00000000-0000-0000-0046-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000146}, !- Inlet Port - {00000000-0000-0000-0017-000000000155}; !- Outlet Port + {00000000-0000-0000-0017-000000000314}, !- Inlet Port + {00000000-0000-0000-0017-000000000323}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000002}, !- Handle + {00000000-0000-0000-0050-000000000002}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000156}, !- Inlet Port - {00000000-0000-0000-0017-000000000157}; !- Outlet Port + {00000000-0000-0000-0017-000000000324}, !- Inlet Port + {00000000-0000-0000-0017-000000000325}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000003}, !- Handle + {00000000-0000-0000-0050-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000004}, !- Handle + {00000000-0000-0000-0050-000000000004}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000005}, !- Handle + {00000000-0000-0000-0050-000000000005}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000027}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000006}, !- Handle + {00000000-0000-0000-0050-000000000006}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000140}, !- Inlet Port {00000000-0000-0000-0017-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000007}, !- Handle + {00000000-0000-0000-0050-000000000007}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000036}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000008}, !- Handle + {00000000-0000-0000-0050-000000000008}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000172}, !- Inlet Port + {00000000-0000-0000-0017-000000000173}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000009}, !- Handle + {00000000-0000-0000-0050-000000000010}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000184}, !- Inlet Port + {00000000-0000-0000-0017-000000000185}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000010}, !- Handle + {00000000-0000-0000-0050-000000000012}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000166}, !- Inlet Port + {00000000-0000-0000-0017-000000000167}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000011}, !- Handle + {00000000-0000-0000-0050-000000000014}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000190}, !- Inlet Port + {00000000-0000-0000-0017-000000000191}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000012}, !- Handle + {00000000-0000-0000-0050-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000178}, !- Inlet Port + {00000000-0000-0000-0017-000000000179}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000045}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000013}, !- Handle + {00000000-0000-0000-0050-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000196}, !- Inlet Port + {00000000-0000-0000-0017-000000000197}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000024}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000014}, !- Handle + {00000000-0000-0000-0050-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000240}, !- Inlet Port + {00000000-0000-0000-0017-000000000241}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000015}, !- Handle + {00000000-0000-0000-0050-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000234}, !- Inlet Port + {00000000-0000-0000-0017-000000000235}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000023}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000035}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000016}, !- Handle + {00000000-0000-0000-0050-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000228}, !- Inlet Port + {00000000-0000-0000-0017-000000000229}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000025}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000017}, !- Handle + {00000000-0000-0000-0050-000000000026}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000222}, !- Inlet Port + {00000000-0000-0000-0017-000000000223}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000027}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000042}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000018}, !- Handle + {00000000-0000-0000-0050-000000000028}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000246}, !- Inlet Port + {00000000-0000-0000-0017-000000000247}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000029}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000044}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000019}, !- Handle + {00000000-0000-0000-0050-000000000030}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000252}, !- Inlet Port + {00000000-0000-0000-0017-000000000253}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000031}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000020}, !- Handle + {00000000-0000-0000-0050-000000000032}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000290}, !- Inlet Port + {00000000-0000-0000-0017-000000000291}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000033}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000029}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000021}, !- Handle + {00000000-0000-0000-0050-000000000034}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000296}, !- Inlet Port + {00000000-0000-0000-0017-000000000297}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000035}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000032}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000022}, !- Handle + {00000000-0000-0000-0050-000000000036}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000284}, !- Inlet Port + {00000000-0000-0000-0017-000000000285}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000037}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000023}, !- Handle + {00000000-0000-0000-0050-000000000038}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000302}, !- Inlet Port + {00000000-0000-0000-0017-000000000303}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000039}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000039}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000024}, !- Handle + {00000000-0000-0000-0050-000000000040}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000278}, !- Inlet Port + {00000000-0000-0000-0017-000000000279}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000041}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000041}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000025}, !- Handle + {00000000-0000-0000-0050-000000000042}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000308}, !- Inlet Port + {00000000-0000-0000-0017-000000000309}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000043}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000026}, !- Handle + {00000000-0000-0000-0050-000000000044}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000064}, !- Inlet Port {00000000-0000-0000-0017-000000000065}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000027}, !- Handle + {00000000-0000-0000-0050-000000000045}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000066}, !- Inlet Port {00000000-0000-0000-0017-000000000061}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000028}, !- Handle + {00000000-0000-0000-0050-000000000046}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000142}, !- Inlet Port {00000000-0000-0000-0017-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000029}, !- Handle + {00000000-0000-0000-0050-000000000047}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000144}, !- Inlet Port {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000030}, !- Handle + {00000000-0000-0000-0050-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000236}, !- Inlet Port + {00000000-0000-0000-0017-000000000237}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000238}, !- Inlet Port + {00000000-0000-0000-0017-000000000233}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000050}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000242}, !- Inlet Port + {00000000-0000-0000-0017-000000000243}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000051}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000244}, !- Inlet Port + {00000000-0000-0000-0017-000000000239}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000052}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000248}, !- Inlet Port + {00000000-0000-0000-0017-000000000249}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000053}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000250}, !- Inlet Port + {00000000-0000-0000-0017-000000000245}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000054}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000254}, !- Inlet Port + {00000000-0000-0000-0017-000000000255}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000055}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000256}, !- Inlet Port + {00000000-0000-0000-0017-000000000251}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000056}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000280}, !- Inlet Port + {00000000-0000-0000-0017-000000000281}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000057}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000282}, !- Inlet Port + {00000000-0000-0000-0017-000000000277}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000286}, !- Inlet Port + {00000000-0000-0000-0017-000000000287}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000288}, !- Inlet Port + {00000000-0000-0000-0017-000000000283}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000292}, !- Inlet Port + {00000000-0000-0000-0017-000000000293}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000294}, !- Inlet Port + {00000000-0000-0000-0017-000000000289}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000298}, !- Inlet Port + {00000000-0000-0000-0017-000000000299}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000300}, !- Inlet Port + {00000000-0000-0000-0017-000000000295}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000304}, !- Inlet Port + {00000000-0000-0000-0017-000000000305}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000306}, !- Inlet Port + {00000000-0000-0000-0017-000000000301}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000066}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000310}, !- Inlet Port + {00000000-0000-0000-0017-000000000311}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000067}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000312}, !- Inlet Port + {00000000-0000-0000-0017-000000000307}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000068}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000168}, !- Inlet Port + {00000000-0000-0000-0017-000000000169}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000069}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000170}, !- Inlet Port + {00000000-0000-0000-0017-000000000165}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000070}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000174}, !- Inlet Port + {00000000-0000-0000-0017-000000000175}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000071}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000176}, !- Inlet Port + {00000000-0000-0000-0017-000000000171}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000072}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000180}, !- Inlet Port + {00000000-0000-0000-0017-000000000181}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000073}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000182}, !- Inlet Port + {00000000-0000-0000-0017-000000000177}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000074}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000186}, !- Inlet Port + {00000000-0000-0000-0017-000000000187}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000075}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000188}, !- Inlet Port + {00000000-0000-0000-0017-000000000183}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000076}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000192}, !- Inlet Port + {00000000-0000-0000-0017-000000000193}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000077}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000194}, !- Inlet Port + {00000000-0000-0000-0017-000000000189}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000078}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000198}, !- Inlet Port + {00000000-0000-0000-0017-000000000199}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000079}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000200}, !- Inlet Port + {00000000-0000-0000-0017-000000000195}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000080}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Port + {00000000-0000-0000-0017-000000000225}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000081}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000226}, !- Inlet Port + {00000000-0000-0000-0017-000000000221}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000082}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000230}, !- Inlet Port + {00000000-0000-0000-0017-000000000231}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000083}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000232}, !- Inlet Port + {00000000-0000-0000-0017-000000000227}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000084}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000070}, !- Inlet Port {00000000-0000-0000-0017-000000000071}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000031}, !- Handle + {00000000-0000-0000-0050-000000000085}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000073}, !- Inlet Port {00000000-0000-0000-0017-000000000074}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000032}, !- Handle + {00000000-0000-0000-0050-000000000086}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000067}, !- Inlet Port {00000000-0000-0000-0017-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000033}, !- Handle + {00000000-0000-0000-0050-000000000087}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000034}, !- Handle + {00000000-0000-0000-0050-000000000088}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000072}, !- Inlet Port {00000000-0000-0000-0017-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000035}, !- Handle + {00000000-0000-0000-0050-000000000089}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port {00000000-0000-0000-0017-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000036}, !- Handle + {00000000-0000-0000-0050-000000000090}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000127}, !- Inlet Port {00000000-0000-0000-0017-000000000128}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000037}, !- Handle + {00000000-0000-0000-0050-000000000091}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000151}, !- Inlet Port + {00000000-0000-0000-0017-000000000152}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000092}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000158}, !- Inlet Port + {00000000-0000-0000-0017-000000000159}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000093}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000153}, !- Inlet Port + {00000000-0000-0000-0017-000000000154}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000094}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000207}, !- Inlet Port + {00000000-0000-0000-0017-000000000208}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000095}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000214}, !- Inlet Port + {00000000-0000-0000-0017-000000000215}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000096}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000209}, !- Inlet Port + {00000000-0000-0000-0017-000000000210}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000097}, !- Handle + Coil Cooling Water 4 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000263}, !- Inlet Port + {00000000-0000-0000-0017-000000000264}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000098}, !- Handle + Coil Cooling Water 4 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000270}, !- Inlet Port + {00000000-0000-0000-0017-000000000271}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000099}, !- Handle + Coil Cooling Water 4 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000265}, !- Inlet Port + {00000000-0000-0000-0017-000000000266}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000100}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000054}, !- Inlet Port {00000000-0000-0000-0017-000000000055}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000038}, !- Handle + {00000000-0000-0000-0050-000000000101}, !- Handle + Coil Heating Electric 11 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000212}, !- Inlet Port + {00000000-0000-0000-0017-000000000213}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000102}, !- Handle + Coil Heating Electric 18 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000268}, !- Inlet Port + {00000000-0000-0000-0017-000000000269}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000103}, !- Handle Coil Heating Electric 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000130}, !- Inlet Port {00000000-0000-0000-0017-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000039}, !- Handle - CoilCoolingDXSingleSpeed_dx 111kBtu/hr 9.44EER Outlet Air Node, !- Name + {00000000-0000-0000-0050-000000000104}, !- Handle + Coil Heating Electric 4 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000156}, !- Inlet Port + {00000000-0000-0000-0017-000000000157}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000105}, !- Handle + CoilCoolingDXSingleSpeed_dx 110kBtu/hr 9.44EER Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000056}, !- Inlet Port {00000000-0000-0000-0017-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000040}, !- Handle + {00000000-0000-0000-0050-000000000106}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000095}, !- Inlet Port {00000000-0000-0000-0017-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000041}, !- Handle + {00000000-0000-0000-0050-000000000107}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000098}, !- Inlet Port {00000000-0000-0000-0017-000000000099}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000042}, !- Handle + {00000000-0000-0000-0050-000000000108}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Port {00000000-0000-0000-0017-000000000100}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000043}, !- Handle + {00000000-0000-0000-0050-000000000109}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000112}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000044}, !- Handle + {00000000-0000-0000-0050-000000000110}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000045}, !- Handle + {00000000-0000-0000-0050-000000000111}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000104}, !- Inlet Port {00000000-0000-0000-0017-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000046}, !- Handle + {00000000-0000-0000-0050-000000000112}, !- Handle Core_bottom WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000171}, !- Inlet Port - {00000000-0000-0000-0017-000000000172}; !- Outlet Port + {00000000-0000-0000-0017-000000000339}, !- Inlet Port + {00000000-0000-0000-0017-000000000340}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000047}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Handle Core_bottom WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000173}, !- Inlet Port - {00000000-0000-0000-0017-000000000174}; !- Outlet Port + {00000000-0000-0000-0017-000000000341}, !- Inlet Port + {00000000-0000-0000-0017-000000000342}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000048}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Handle Core_mid WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000175}, !- Inlet Port - {00000000-0000-0000-0017-000000000176}; !- Outlet Port + {00000000-0000-0000-0017-000000000343}, !- Inlet Port + {00000000-0000-0000-0017-000000000344}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000049}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Handle Core_mid WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000177}, !- Inlet Port - {00000000-0000-0000-0017-000000000178}; !- Outlet Port + {00000000-0000-0000-0017-000000000345}, !- Inlet Port + {00000000-0000-0000-0017-000000000346}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000050}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Handle Core_top WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000179}, !- Inlet Port - {00000000-0000-0000-0017-000000000180}; !- Outlet Port + {00000000-0000-0000-0017-000000000347}, !- Inlet Port + {00000000-0000-0000-0017-000000000348}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000051}, !- Handle + {00000000-0000-0000-0050-000000000117}, !- Handle Core_top WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000181}, !- Inlet Port - {00000000-0000-0000-0017-000000000182}; !- Outlet Port + {00000000-0000-0000-0017-000000000349}, !- Inlet Port + {00000000-0000-0000-0017-000000000350}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000052}, !- Handle + {00000000-0000-0000-0050-000000000118}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000183}, !- Inlet Port - {00000000-0000-0000-0017-000000000184}; !- Outlet Port + {00000000-0000-0000-0017-000000000351}, !- Inlet Port + {00000000-0000-0000-0017-000000000352}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000053}, !- Handle + {00000000-0000-0000-0050-000000000119}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000185}, !- Inlet Port - {00000000-0000-0000-0017-000000000186}; !- Outlet Port + {00000000-0000-0000-0017-000000000353}, !- Inlet Port + {00000000-0000-0000-0017-000000000354}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000054}, !- Handle + {00000000-0000-0000-0050-000000000120}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000187}, !- Inlet Port - {00000000-0000-0000-0017-000000000188}; !- Outlet Port + {00000000-0000-0000-0017-000000000355}, !- Inlet Port + {00000000-0000-0000-0017-000000000356}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000055}, !- Handle + {00000000-0000-0000-0050-000000000121}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000189}, !- Inlet Port - {00000000-0000-0000-0017-000000000190}; !- Outlet Port + {00000000-0000-0000-0017-000000000357}, !- Inlet Port + {00000000-0000-0000-0017-000000000358}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000056}, !- Handle + {00000000-0000-0000-0050-000000000122}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000191}, !- Inlet Port - {00000000-0000-0000-0017-000000000192}; !- Outlet Port + {00000000-0000-0000-0017-000000000359}, !- Inlet Port + {00000000-0000-0000-0017-000000000360}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000057}, !- Handle + {00000000-0000-0000-0050-000000000123}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000193}, !- Inlet Port - {00000000-0000-0000-0017-000000000194}; !- Outlet Port + {00000000-0000-0000-0017-000000000361}, !- Inlet Port + {00000000-0000-0000-0017-000000000362}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000058}, !- Handle + {00000000-0000-0000-0050-000000000124}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000195}, !- Inlet Port - {00000000-0000-0000-0017-000000000196}; !- Outlet Port + {00000000-0000-0000-0017-000000000363}, !- Inlet Port + {00000000-0000-0000-0017-000000000364}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000059}, !- Handle + {00000000-0000-0000-0050-000000000125}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000197}, !- Inlet Port - {00000000-0000-0000-0017-000000000198}; !- Outlet Port + {00000000-0000-0000-0017-000000000365}, !- Inlet Port + {00000000-0000-0000-0017-000000000366}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000060}, !- Handle + {00000000-0000-0000-0050-000000000126}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000153}, !- Inlet Port - {00000000-0000-0000-0017-000000000154}; !- Outlet Port + {00000000-0000-0000-0017-000000000321}, !- Inlet Port + {00000000-0000-0000-0017-000000000322}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000061}, !- Handle + {00000000-0000-0000-0050-000000000127}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000148}, !- Inlet Port - {00000000-0000-0000-0017-000000000149}; !- Outlet Port + {00000000-0000-0000-0017-000000000316}, !- Inlet Port + {00000000-0000-0000-0017-000000000317}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000062}, !- Handle + {00000000-0000-0000-0050-000000000128}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000170}, !- Inlet Port - {00000000-0000-0000-0017-000000000151}; !- Outlet Port + {00000000-0000-0000-0017-000000000338}, !- Inlet Port + {00000000-0000-0000-0017-000000000319}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000063}, !- Handle + {00000000-0000-0000-0050-000000000129}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000145}, !- Inlet Port - {00000000-0000-0000-0017-000000000152}; !- Outlet Port + {00000000-0000-0000-0017-000000000313}, !- Inlet Port + {00000000-0000-0000-0017-000000000320}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000064}, !- Handle + {00000000-0000-0000-0050-000000000130}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000167}, !- Inlet Port - {00000000-0000-0000-0017-000000000147}; !- Outlet Port + {00000000-0000-0000-0017-000000000335}, !- Inlet Port + {00000000-0000-0000-0017-000000000315}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000065}, !- Handle + {00000000-0000-0000-0050-000000000131}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000199}, !- Inlet Port - {00000000-0000-0000-0017-000000000200}; !- Outlet Port + {00000000-0000-0000-0017-000000000367}, !- Inlet Port + {00000000-0000-0000-0017-000000000368}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000066}, !- Handle + {00000000-0000-0000-0050-000000000132}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000201}, !- Inlet Port - {00000000-0000-0000-0017-000000000202}; !- Outlet Port + {00000000-0000-0000-0017-000000000369}, !- Inlet Port + {00000000-0000-0000-0017-000000000370}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000067}, !- Handle + {00000000-0000-0000-0050-000000000133}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000203}, !- Inlet Port - {00000000-0000-0000-0017-000000000204}; !- Outlet Port + {00000000-0000-0000-0017-000000000371}, !- Inlet Port + {00000000-0000-0000-0017-000000000372}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000068}, !- Handle + {00000000-0000-0000-0050-000000000134}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000205}, !- Inlet Port - {00000000-0000-0000-0017-000000000206}; !- Outlet Port + {00000000-0000-0000-0017-000000000373}, !- Inlet Port + {00000000-0000-0000-0017-000000000374}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000069}, !- Handle + {00000000-0000-0000-0050-000000000135}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000207}, !- Inlet Port - {00000000-0000-0000-0017-000000000208}; !- Outlet Port + {00000000-0000-0000-0017-000000000375}, !- Inlet Port + {00000000-0000-0000-0017-000000000376}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000070}, !- Handle + {00000000-0000-0000-0050-000000000136}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000209}, !- Inlet Port - {00000000-0000-0000-0017-000000000210}; !- Outlet Port + {00000000-0000-0000-0017-000000000377}, !- Inlet Port + {00000000-0000-0000-0017-000000000378}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000071}, !- Handle + {00000000-0000-0000-0050-000000000137}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Port - {00000000-0000-0000-0017-000000000212}; !- Outlet Port + {00000000-0000-0000-0017-000000000379}, !- Inlet Port + {00000000-0000-0000-0017-000000000380}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000072}, !- Handle + {00000000-0000-0000-0050-000000000138}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000213}, !- Inlet Port - {00000000-0000-0000-0017-000000000214}; !- Outlet Port + {00000000-0000-0000-0017-000000000381}, !- Inlet Port + {00000000-0000-0000-0017-000000000382}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000073}, !- Handle + {00000000-0000-0000-0050-000000000139}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000215}, !- Inlet Port - {00000000-0000-0000-0017-000000000216}; !- Outlet Port + {00000000-0000-0000-0017-000000000383}, !- Inlet Port + {00000000-0000-0000-0017-000000000384}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000074}, !- Handle + {00000000-0000-0000-0050-000000000140}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000217}, !- Inlet Port - {00000000-0000-0000-0017-000000000218}; !- Outlet Port + {00000000-0000-0000-0017-000000000385}, !- Inlet Port + {00000000-0000-0000-0017-000000000386}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000075}, !- Handle + {00000000-0000-0000-0050-000000000141}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Port - {00000000-0000-0000-0017-000000000220}; !- Outlet Port + {00000000-0000-0000-0017-000000000387}, !- Inlet Port + {00000000-0000-0000-0017-000000000388}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000076}, !- Handle + {00000000-0000-0000-0050-000000000142}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000221}, !- Inlet Port - {00000000-0000-0000-0017-000000000222}; !- Outlet Port + {00000000-0000-0000-0017-000000000389}, !- Inlet Port + {00000000-0000-0000-0017-000000000390}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000077}, !- Handle + {00000000-0000-0000-0050-000000000143}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000223}, !- Inlet Port - {00000000-0000-0000-0017-000000000224}; !- Outlet Port + {00000000-0000-0000-0017-000000000391}, !- Inlet Port + {00000000-0000-0000-0017-000000000392}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000078}, !- Handle + {00000000-0000-0000-0050-000000000144}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000225}, !- Inlet Port - {00000000-0000-0000-0017-000000000226}; !- Outlet Port + {00000000-0000-0000-0017-000000000393}, !- Inlet Port + {00000000-0000-0000-0017-000000000394}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000079}, !- Handle + {00000000-0000-0000-0050-000000000145}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000227}, !- Inlet Port - {00000000-0000-0000-0017-000000000228}; !- Outlet Port + {00000000-0000-0000-0017-000000000395}, !- Inlet Port + {00000000-0000-0000-0017-000000000396}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000080}, !- Handle + {00000000-0000-0000-0050-000000000146}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000229}, !- Inlet Port - {00000000-0000-0000-0017-000000000230}; !- Outlet Port + {00000000-0000-0000-0017-000000000397}, !- Inlet Port + {00000000-0000-0000-0017-000000000398}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000081}, !- Handle + {00000000-0000-0000-0050-000000000147}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000231}, !- Inlet Port - {00000000-0000-0000-0017-000000000232}; !- Outlet Port + {00000000-0000-0000-0017-000000000399}, !- Inlet Port + {00000000-0000-0000-0017-000000000400}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000082}, !- Handle + {00000000-0000-0000-0050-000000000148}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000233}, !- Inlet Port - {00000000-0000-0000-0017-000000000234}; !- Outlet Port + {00000000-0000-0000-0017-000000000401}, !- Inlet Port + {00000000-0000-0000-0017-000000000402}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000083}, !- Handle + {00000000-0000-0000-0050-000000000149}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000235}, !- Inlet Port - {00000000-0000-0000-0017-000000000236}; !- Outlet Port + {00000000-0000-0000-0017-000000000403}, !- Inlet Port + {00000000-0000-0000-0017-000000000404}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000084}, !- Handle + {00000000-0000-0000-0050-000000000150}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000237}, !- Inlet Port - {00000000-0000-0000-0017-000000000238}; !- Outlet Port + {00000000-0000-0000-0017-000000000405}, !- Inlet Port + {00000000-0000-0000-0017-000000000406}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000085}, !- Handle + {00000000-0000-0000-0050-000000000151}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000239}, !- Inlet Port - {00000000-0000-0000-0017-000000000240}; !- Outlet Port + {00000000-0000-0000-0017-000000000407}, !- Inlet Port + {00000000-0000-0000-0017-000000000408}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000086}, !- Handle + {00000000-0000-0000-0050-000000000152}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000241}, !- Inlet Port - {00000000-0000-0000-0017-000000000242}; !- Outlet Port + {00000000-0000-0000-0017-000000000409}, !- Inlet Port + {00000000-0000-0000-0017-000000000410}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000087}, !- Handle + {00000000-0000-0000-0050-000000000153}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000243}, !- Inlet Port - {00000000-0000-0000-0017-000000000244}; !- Outlet Port + {00000000-0000-0000-0017-000000000411}, !- Inlet Port + {00000000-0000-0000-0017-000000000412}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000088}, !- Handle + {00000000-0000-0000-0050-000000000154}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000245}, !- Inlet Port - {00000000-0000-0000-0017-000000000246}; !- Outlet Port + {00000000-0000-0000-0017-000000000413}, !- Inlet Port + {00000000-0000-0000-0017-000000000414}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000089}, !- Handle + {00000000-0000-0000-0050-000000000155}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000085}, !- Inlet Port {00000000-0000-0000-0017-000000000086}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000090}, !- Handle + {00000000-0000-0000-0050-000000000156}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000091}, !- Handle + {00000000-0000-0000-0050-000000000157}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000089}, !- Inlet Port {00000000-0000-0000-0017-000000000090}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000092}, !- Handle + {00000000-0000-0000-0050-000000000158}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000106}, !- Inlet Port {00000000-0000-0000-0017-000000000107}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000093}, !- Handle + {00000000-0000-0000-0050-000000000159}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000108}, !- Inlet Port {00000000-0000-0000-0017-000000000109}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000094}, !- Handle + {00000000-0000-0000-0050-000000000160}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000110}, !- Inlet Port {00000000-0000-0000-0017-000000000111}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000095}, !- Handle + {00000000-0000-0000-0050-000000000161}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000158}, !- Inlet Port - {00000000-0000-0000-0017-000000000159}; !- Outlet Port + {00000000-0000-0000-0017-000000000326}, !- Inlet Port + {00000000-0000-0000-0017-000000000327}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000096}, !- Handle + {00000000-0000-0000-0050-000000000162}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000160}, !- Inlet Port - {00000000-0000-0000-0017-000000000161}; !- Outlet Port + {00000000-0000-0000-0017-000000000328}, !- Inlet Port + {00000000-0000-0000-0017-000000000329}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000097}, !- Handle + {00000000-0000-0000-0050-000000000163}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000150}, !- Inlet Port - {00000000-0000-0000-0017-000000000162}; !- Outlet Port + {00000000-0000-0000-0017-000000000318}, !- Inlet Port + {00000000-0000-0000-0017-000000000330}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000098}, !- Handle + {00000000-0000-0000-0050-000000000164}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000163}, !- Inlet Port - {00000000-0000-0000-0017-000000000164}; !- Outlet Port + {00000000-0000-0000-0017-000000000331}, !- Inlet Port + {00000000-0000-0000-0017-000000000332}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000099}, !- Handle + {00000000-0000-0000-0050-000000000165}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000165}, !- Inlet Port - {00000000-0000-0000-0017-000000000166}; !- Outlet Port + {00000000-0000-0000-0017-000000000333}, !- Inlet Port + {00000000-0000-0000-0017-000000000334}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000100}, !- Handle + {00000000-0000-0000-0050-000000000166}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000168}, !- Inlet Port - {00000000-0000-0000-0017-000000000169}; !- Outlet Port + {00000000-0000-0000-0017-000000000336}, !- Inlet Port + {00000000-0000-0000-0017-000000000337}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000101}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0050-000000000167}, !- Handle + Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000097}, !- Inlet Port {00000000-0000-0000-0017-000000000113}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000102}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0050-000000000168}, !- Handle + Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000114}, !- Inlet Port {00000000-0000-0000-0017-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000103}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0050-000000000169}, !- Handle + Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000078}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000104}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0050-000000000170}, !- Handle + Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000079}, !- Inlet Port {00000000-0000-0000-0017-000000000080}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000105}, !- Handle + {00000000-0000-0000-0050-000000000171}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000076}, !- Inlet Port {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000106}, !- Handle + {00000000-0000-0000-0050-000000000172}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000101}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000107}, !- Handle + {00000000-0000-0000-0050-000000000173}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000116}, !- Inlet Port {00000000-0000-0000-0017-000000000117}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000108}, !- Handle + {00000000-0000-0000-0050-000000000174}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000118}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000109}, !- Handle + {00000000-0000-0000-0050-000000000175}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000081}, !- Inlet Port {00000000-0000-0000-0017-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000110}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000083}, !- Inlet Port - {00000000-0000-0000-0017-000000000084}; !- Outlet Port + {00000000-0000-0000-0050-000000000176}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000083}, !- Inlet Port + {00000000-0000-0000-0017-000000000084}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000177}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000163}, !- Inlet Port + {00000000-0000-0000-0017-000000000164}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000178}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000219}, !- Inlet Port + {00000000-0000-0000-0017-000000000220}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000179}, !- Handle + Sys6 Return Fan 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000275}, !- Inlet Port + {00000000-0000-0000-0017-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000111}, !- Handle + {00000000-0000-0000-0050-000000000180}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000112}, !- Handle + {00000000-0000-0000-0050-000000000181}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000062}, !- Inlet Port {00000000-0000-0000-0017-000000000063}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000113}, !- Handle + {00000000-0000-0000-0050-000000000182}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000114}, !- Handle + {00000000-0000-0000-0050-000000000183}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000115}, !- Handle + {00000000-0000-0000-0050-000000000184}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000116}, !- Handle + {00000000-0000-0000-0050-000000000185}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000059}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000117}, !- Handle + {00000000-0000-0000-0050-000000000186}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000247}; !- Outlet Port + {00000000-0000-0000-0017-000000000415}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000118}, !- Handle + {00000000-0000-0000-0050-000000000187}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000252}, !- Inlet Port + {00000000-0000-0000-0017-000000000420}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000119}, !- Handle + {00000000-0000-0000-0050-000000000188}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000120}, !- Handle + {00000000-0000-0000-0050-000000000189}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000121}, !- Handle + {00000000-0000-0000-0050-000000000190}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000248}, !- Inlet Port - {00000000-0000-0000-0017-000000000249}; !- Outlet Port + {00000000-0000-0000-0017-000000000416}, !- Inlet Port + {00000000-0000-0000-0017-000000000417}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000122}, !- Handle + {00000000-0000-0000-0050-000000000191}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000250}, !- Inlet Port - {00000000-0000-0000-0017-000000000251}; !- Outlet Port + {00000000-0000-0000-0017-000000000418}, !- Inlet Port + {00000000-0000-0000-0017-000000000419}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000192}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000147}, !- Inlet Port + {00000000-0000-0000-0017-000000000149}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000193}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000150}, !- Inlet Port + {00000000-0000-0000-0017-000000000148}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000194}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000160}, !- Inlet Port + {00000000-0000-0000-0017-000000000161}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000195}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000427}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000196}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000432}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000197}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000145}, !- Inlet Port + {00000000-0000-0000-0017-000000000162}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000198}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000155}, !- Inlet Port + {00000000-0000-0000-0017-000000000146}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000199}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000203}, !- Inlet Port + {00000000-0000-0000-0017-000000000205}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000200}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000206}, !- Inlet Port + {00000000-0000-0000-0017-000000000204}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000201}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000216}, !- Inlet Port + {00000000-0000-0000-0017-000000000217}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000202}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000433}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000203}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000438}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000204}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000201}, !- Inlet Port + {00000000-0000-0000-0017-000000000218}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000205}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000211}, !- Inlet Port + {00000000-0000-0000-0017-000000000202}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000206}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000259}, !- Inlet Port + {00000000-0000-0000-0017-000000000261}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000207}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000262}, !- Inlet Port + {00000000-0000-0000-0017-000000000260}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000208}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000272}, !- Inlet Port + {00000000-0000-0000-0017-000000000273}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000209}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000439}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000123}, !- Handle + {00000000-0000-0000-0050-000000000210}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000444}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000211}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000257}, !- Inlet Port + {00000000-0000-0000-0017-000000000274}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000212}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000267}, !- Inlet Port + {00000000-0000-0000-0017-000000000258}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000213}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000122}, !- Inlet Port {00000000-0000-0000-0017-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000124}, !- Handle + {00000000-0000-0000-0050-000000000214}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000125}, !- Inlet Port {00000000-0000-0000-0017-000000000123}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000125}, !- Handle + {00000000-0000-0000-0050-000000000215}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000134}, !- Inlet Port {00000000-0000-0000-0017-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000126}, !- Handle + {00000000-0000-0000-0050-000000000216}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000253}; !- Outlet Port + {00000000-0000-0000-0017-000000000421}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000127}, !- Handle + {00000000-0000-0000-0050-000000000217}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000258}, !- Inlet Port + {00000000-0000-0000-0017-000000000426}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000128}, !- Handle + {00000000-0000-0000-0050-000000000218}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000129}, !- Handle + {00000000-0000-0000-0050-000000000219}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000129}, !- Inlet Port {00000000-0000-0000-0017-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000130}, !- Handle + {00000000-0000-0000-0050-000000000220}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000428}, !- Inlet Port + {00000000-0000-0000-0017-000000000429}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000221}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000430}, !- Inlet Port + {00000000-0000-0000-0017-000000000431}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000222}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000434}, !- Inlet Port + {00000000-0000-0000-0017-000000000435}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000223}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000436}, !- Inlet Port + {00000000-0000-0000-0017-000000000437}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000224}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000440}, !- Inlet Port + {00000000-0000-0000-0017-000000000441}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000225}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000442}, !- Inlet Port + {00000000-0000-0000-0017-000000000443}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000226}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000254}, !- Inlet Port - {00000000-0000-0000-0017-000000000255}; !- Outlet Port + {00000000-0000-0000-0017-000000000422}, !- Inlet Port + {00000000-0000-0000-0017-000000000423}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000131}, !- Handle + {00000000-0000-0000-0050-000000000227}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000256}, !- Inlet Port - {00000000-0000-0000-0017-000000000257}; !- Outlet Port + {00000000-0000-0000-0017-000000000424}, !- Inlet Port + {00000000-0000-0000-0017-000000000425}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0047-000000000001}, !- Handle + {00000000-0000-0000-0051-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0048-000000000001}, !- Handle + {00000000-0000-0000-0052-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People, !- Name - {00000000-0000-0000-0049-000000000001}, !- People Definition Name - {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0053-000000000001}, !- People Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0059-000000000023}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0059-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0059-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0063-000000000026}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0063-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0048-000000000002}, !- Handle + {00000000-0000-0000-0052-000000000002}, !- Handle Space Function Office open plan People, !- Name - {00000000-0000-0000-0049-000000000002}, !- People Definition Name - {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0053-000000000002}, !- People Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0059-000000000023}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0059-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0059-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0063-000000000026}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0063-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0049-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -4597,7 +7975,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0049-000000000002}, !- Handle + {00000000-0000-0000-0053-000000000002}, !- Handle Space Function Office open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -4606,55 +7984,55 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0017-000000000086}, !- Inlet Node Name {00000000-0000-0000-0017-000000000087}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Node Name {00000000-0000-0000-0017-000000000091}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000003}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0017-000000000107}, !- Inlet Node Name {00000000-0000-0000-0017-000000000108}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000004}, !- Handle + {00000000-0000-0000-0054-000000000004}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0017-000000000111}, !- Inlet Node Name {00000000-0000-0000-0017-000000000112}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000005}, !- Handle + {00000000-0000-0000-0054-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0017-000000000159}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000160}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000327}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000328}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000006}, !- Handle + {00000000-0000-0000-0054-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0017-000000000162}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000163}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000330}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000331}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000007}, !- Handle + {00000000-0000-0000-0054-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000166}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000167}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000334}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000335}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000008}, !- Handle + {00000000-0000-0000-0054-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000169}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000170}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000337}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000338}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0051-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -4662,7 +8040,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0046-000000000033}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000087}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4676,7 +8054,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4690,7 +8068,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0051-000000000002}, !- Handle + {00000000-0000-0000-0055-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -4698,7 +8076,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0046-000000000043}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000109}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4712,7 +8090,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4726,7 +8104,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0051-000000000003}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -4734,21 +8112,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0046-000000000064}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000130}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000145}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000147}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000313}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000315}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000148}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000151}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000316}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000319}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4762,290 +8140,326 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000005}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0052-000000000001}, !- Handle - {00000000-0000-0000-0086-000000000010}; !- HVAC Component + {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000195}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000002}, !- Handle - {00000000-0000-0000-0086-000000000010}; !- HVAC Component + {00000000-0000-0000-0056-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000003}, !- Handle - {00000000-0000-0000-0086-000000000010}; !- HVAC Component + {00000000-0000-0000-0056-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000196}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000004}, !- Handle - {00000000-0000-0000-0086-000000000001}; !- HVAC Component + {00000000-0000-0000-0056-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000005}, !- Handle - {00000000-0000-0000-0086-000000000001}; !- HVAC Component + {00000000-0000-0000-0056-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000006}, !- Handle - {00000000-0000-0000-0086-000000000001}; !- HVAC Component + {00000000-0000-0000-0056-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000007}, !- Handle - {00000000-0000-0000-0086-000000000022}; !- HVAC Component + {00000000-0000-0000-0056-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- HVAC Component + {00000000-0000-0000-0017-000000000307}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000008}, !- Handle - {00000000-0000-0000-0086-000000000022}; !- HVAC Component + {00000000-0000-0000-0056-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000009}, !- Handle - {00000000-0000-0000-0086-000000000022}; !- HVAC Component + {00000000-0000-0000-0056-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- HVAC Component + {00000000-0000-0000-0017-000000000308}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000010}, !- Handle - {00000000-0000-0000-0086-000000000003}; !- HVAC Component + {00000000-0000-0000-0056-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000011}, !- Handle - {00000000-0000-0000-0086-000000000003}; !- HVAC Component + {00000000-0000-0000-0056-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000012}, !- Handle - {00000000-0000-0000-0086-000000000003}; !- HVAC Component + {00000000-0000-0000-0056-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000013}, !- Handle - {00000000-0000-0000-0086-000000000016}; !- HVAC Component + {00000000-0000-0000-0056-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000251}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000014}, !- Handle - {00000000-0000-0000-0086-000000000016}; !- HVAC Component + {00000000-0000-0000-0056-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000015}, !- Handle - {00000000-0000-0000-0086-000000000016}; !- HVAC Component + {00000000-0000-0000-0056-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000252}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000016}, !- Handle - {00000000-0000-0000-0086-000000000017}; !- HVAC Component + {00000000-0000-0000-0056-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000289}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000017}, !- Handle - {00000000-0000-0000-0086-000000000017}; !- HVAC Component + {00000000-0000-0000-0056-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000018}, !- Handle - {00000000-0000-0000-0086-000000000017}; !- HVAC Component + {00000000-0000-0000-0056-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000290}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000019}, !- Handle - {00000000-0000-0000-0086-000000000005}; !- HVAC Component + {00000000-0000-0000-0056-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- HVAC Component + {00000000-0000-0000-0017-000000000171}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000020}, !- Handle - {00000000-0000-0000-0086-000000000005}; !- HVAC Component + {00000000-0000-0000-0056-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000021}, !- Handle - {00000000-0000-0000-0086-000000000005}; !- HVAC Component + {00000000-0000-0000-0056-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- HVAC Component + {00000000-0000-0000-0017-000000000172}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000022}, !- Handle - {00000000-0000-0000-0086-000000000006}; !- HVAC Component + {00000000-0000-0000-0056-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- HVAC Component + {00000000-0000-0000-0017-000000000183}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000023}, !- Handle - {00000000-0000-0000-0086-000000000006}; !- HVAC Component + {00000000-0000-0000-0056-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000024}, !- Handle - {00000000-0000-0000-0086-000000000006}; !- HVAC Component + {00000000-0000-0000-0056-000000000024}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- HVAC Component + {00000000-0000-0000-0017-000000000184}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000025}, !- Handle - {00000000-0000-0000-0086-000000000018}; !- HVAC Component + {00000000-0000-0000-0056-000000000025}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000295}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000026}, !- Handle - {00000000-0000-0000-0086-000000000018}; !- HVAC Component + {00000000-0000-0000-0056-000000000026}, !- Handle + {00000000-0000-0000-0090-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000027}, !- Handle - {00000000-0000-0000-0086-000000000018}; !- HVAC Component + {00000000-0000-0000-0056-000000000027}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000296}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000028}, !- Handle - {00000000-0000-0000-0086-000000000011}; !- HVAC Component + {00000000-0000-0000-0056-000000000028}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000239}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000029}, !- Handle - {00000000-0000-0000-0086-000000000011}; !- HVAC Component + {00000000-0000-0000-0056-000000000029}, !- Handle + {00000000-0000-0000-0090-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000030}, !- Handle - {00000000-0000-0000-0086-000000000011}; !- HVAC Component + {00000000-0000-0000-0056-000000000030}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000240}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000031}, !- Handle - {00000000-0000-0000-0086-000000000019}; !- HVAC Component + {00000000-0000-0000-0056-000000000031}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- HVAC Component + {00000000-0000-0000-0017-000000000283}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000032}, !- Handle - {00000000-0000-0000-0086-000000000019}; !- HVAC Component + {00000000-0000-0000-0056-000000000032}, !- Handle + {00000000-0000-0000-0090-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000033}, !- Handle - {00000000-0000-0000-0086-000000000019}; !- HVAC Component + {00000000-0000-0000-0056-000000000033}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- HVAC Component + {00000000-0000-0000-0017-000000000284}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000034}, !- Handle - {00000000-0000-0000-0086-000000000012}; !- HVAC Component + {00000000-0000-0000-0056-000000000034}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000233}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000035}, !- Handle - {00000000-0000-0000-0086-000000000012}; !- HVAC Component + {00000000-0000-0000-0056-000000000035}, !- Handle + {00000000-0000-0000-0090-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000036}, !- Handle - {00000000-0000-0000-0086-000000000012}; !- HVAC Component + {00000000-0000-0000-0056-000000000036}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000234}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000037}, !- Handle - {00000000-0000-0000-0086-000000000004}, !- HVAC Component + {00000000-0000-0000-0056-000000000037}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000139}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000038}, !- Handle - {00000000-0000-0000-0086-000000000004}; !- HVAC Component + {00000000-0000-0000-0056-000000000038}, !- Handle + {00000000-0000-0000-0090-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000039}, !- Handle - {00000000-0000-0000-0086-000000000004}, !- HVAC Component + {00000000-0000-0000-0056-000000000039}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000140}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000040}, !- Handle - {00000000-0000-0000-0086-000000000002}; !- HVAC Component + {00000000-0000-0000-0056-000000000040}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000041}, !- Handle - {00000000-0000-0000-0086-000000000002}; !- HVAC Component + {00000000-0000-0000-0056-000000000041}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000042}, !- Handle - {00000000-0000-0000-0086-000000000002}; !- HVAC Component + {00000000-0000-0000-0056-000000000042}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000043}, !- Handle - {00000000-0000-0000-0086-000000000007}; !- HVAC Component + {00000000-0000-0000-0056-000000000043}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- HVAC Component + {00000000-0000-0000-0017-000000000165}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000044}, !- Handle - {00000000-0000-0000-0086-000000000007}; !- HVAC Component + {00000000-0000-0000-0056-000000000044}, !- Handle + {00000000-0000-0000-0090-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000045}, !- Handle - {00000000-0000-0000-0086-000000000007}; !- HVAC Component + {00000000-0000-0000-0056-000000000045}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- HVAC Component + {00000000-0000-0000-0017-000000000166}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000046}, !- Handle - {00000000-0000-0000-0086-000000000020}; !- HVAC Component + {00000000-0000-0000-0056-000000000046}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- HVAC Component + {00000000-0000-0000-0017-000000000301}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000047}, !- Handle - {00000000-0000-0000-0086-000000000020}; !- HVAC Component + {00000000-0000-0000-0056-000000000047}, !- Handle + {00000000-0000-0000-0090-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000048}, !- Handle - {00000000-0000-0000-0086-000000000020}; !- HVAC Component + {00000000-0000-0000-0056-000000000048}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- HVAC Component + {00000000-0000-0000-0017-000000000302}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000049}, !- Handle - {00000000-0000-0000-0086-000000000013}; !- HVAC Component + {00000000-0000-0000-0056-000000000049}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000227}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000050}, !- Handle - {00000000-0000-0000-0086-000000000013}; !- HVAC Component + {00000000-0000-0000-0056-000000000050}, !- Handle + {00000000-0000-0000-0090-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000051}, !- Handle - {00000000-0000-0000-0086-000000000013}; !- HVAC Component + {00000000-0000-0000-0056-000000000051}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000228}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000052}, !- Handle - {00000000-0000-0000-0086-000000000021}; !- HVAC Component + {00000000-0000-0000-0056-000000000052}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- HVAC Component + {00000000-0000-0000-0017-000000000277}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000053}, !- Handle - {00000000-0000-0000-0086-000000000021}; !- HVAC Component + {00000000-0000-0000-0056-000000000053}, !- Handle + {00000000-0000-0000-0090-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000054}, !- Handle - {00000000-0000-0000-0086-000000000021}; !- HVAC Component + {00000000-0000-0000-0056-000000000054}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- HVAC Component + {00000000-0000-0000-0017-000000000278}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000055}, !- Handle - {00000000-0000-0000-0086-000000000014}; !- HVAC Component + {00000000-0000-0000-0056-000000000055}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000221}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000056}, !- Handle - {00000000-0000-0000-0086-000000000014}; !- HVAC Component + {00000000-0000-0000-0056-000000000056}, !- Handle + {00000000-0000-0000-0090-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000057}, !- Handle - {00000000-0000-0000-0086-000000000014}; !- HVAC Component + {00000000-0000-0000-0056-000000000057}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000222}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000058}, !- Handle - {00000000-0000-0000-0086-000000000008}; !- HVAC Component + {00000000-0000-0000-0056-000000000058}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- HVAC Component + {00000000-0000-0000-0017-000000000189}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000059}, !- Handle - {00000000-0000-0000-0086-000000000008}; !- HVAC Component + {00000000-0000-0000-0056-000000000059}, !- Handle + {00000000-0000-0000-0090-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000060}, !- Handle - {00000000-0000-0000-0086-000000000008}; !- HVAC Component + {00000000-0000-0000-0056-000000000060}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- HVAC Component + {00000000-0000-0000-0017-000000000190}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000061}, !- Handle - {00000000-0000-0000-0086-000000000015}; !- HVAC Component + {00000000-0000-0000-0056-000000000061}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000245}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000062}, !- Handle - {00000000-0000-0000-0086-000000000015}; !- HVAC Component + {00000000-0000-0000-0056-000000000062}, !- Handle + {00000000-0000-0000-0090-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000063}, !- Handle - {00000000-0000-0000-0086-000000000015}; !- HVAC Component + {00000000-0000-0000-0056-000000000063}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000246}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000064}, !- Handle - {00000000-0000-0000-0086-000000000009}; !- HVAC Component + {00000000-0000-0000-0056-000000000064}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000177}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000065}, !- Handle - {00000000-0000-0000-0086-000000000009}; !- HVAC Component + {00000000-0000-0000-0056-000000000065}, !- Handle + {00000000-0000-0000-0090-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000066}, !- Handle - {00000000-0000-0000-0086-000000000009}; !- HVAC Component + {00000000-0000-0000-0056-000000000066}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000178}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000067}, !- Handle - {00000000-0000-0000-0086-000000000023}, !- HVAC Component + {00000000-0000-0000-0056-000000000067}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000061}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000068}, !- Handle - {00000000-0000-0000-0086-000000000023}; !- HVAC Component + {00000000-0000-0000-0056-000000000068}, !- Handle + {00000000-0000-0000-0090-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000069}, !- Handle - {00000000-0000-0000-0086-000000000023}, !- HVAC Component + {00000000-0000-0000-0056-000000000069}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000062}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0053-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000152}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000153}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000320}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000321}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 742176.159809915, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -5064,14 +8478,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0017-000000000075}, !- Inlet Node Name {00000000-0000-0000-0017-000000000076}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 234161.928009366, !- Rated Pump Head {Pa} + 256345.689610254, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.936, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5097,14 +8511,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0054-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0017-000000000100}, !- Inlet Node Name {00000000-0000-0000-0017-000000000101}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 200710.224008028, !- Rated Pump Head {Pa} + 223011.36000892, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.95, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5130,322 +8544,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000002}, !- Handle + {00000000-0000-0000-0059-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000003}, !- Handle + {00000000-0000-0000-0059-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000004}, !- Handle + {00000000-0000-0000-0059-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000005}, !- Handle + {00000000-0000-0000-0059-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000006}, !- Handle + {00000000-0000-0000-0059-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000007}, !- Handle + {00000000-0000-0000-0059-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000008}, !- Handle + {00000000-0000-0000-0059-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000009}, !- Handle + {00000000-0000-0000-0059-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000010}, !- Handle + {00000000-0000-0000-0059-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000011}, !- Handle + {00000000-0000-0000-0059-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000012}, !- Handle + {00000000-0000-0000-0059-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000013}, !- Handle + {00000000-0000-0000-0059-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000014}, !- Handle + {00000000-0000-0000-0059-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000015}, !- Handle + {00000000-0000-0000-0059-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000016}, !- Handle + {00000000-0000-0000-0059-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000017}, !- Handle + {00000000-0000-0000-0059-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000018}, !- Handle + {00000000-0000-0000-0059-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000019}, !- Handle + {00000000-0000-0000-0059-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000020}, !- Handle + {00000000-0000-0000-0059-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000021}, !- Handle + {00000000-0000-0000-0059-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000022}, !- Handle + {00000000-0000-0000-0059-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000023}, !- Handle + {00000000-0000-0000-0059-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000024}, !- Handle + {00000000-0000-0000-0059-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000025}, !- Handle + {00000000-0000-0000-0059-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000026}, !- Handle + {00000000-0000-0000-0059-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000027}, !- Handle + {00000000-0000-0000-0059-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000028}, !- Handle + {00000000-0000-0000-0059-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000029}, !- Handle + {00000000-0000-0000-0059-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000030}, !- Handle + {00000000-0000-0000-0059-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000031}, !- Handle + {00000000-0000-0000-0059-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000032}, !- Handle + {00000000-0000-0000-0059-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000033}, !- Handle + {00000000-0000-0000-0059-000000000033}, !- Handle Space Function Electrical/Mechanical room-sch-A 1, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000034}, !- Handle + {00000000-0000-0000-0059-000000000034}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000035}, !- Handle + {00000000-0000-0000-0059-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000036}, !- Handle + {00000000-0000-0000-0059-000000000036}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000037}, !- Handle + {00000000-0000-0000-0059-000000000037}, !- Handle Space Function Office open plan 1, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000038}, !- Handle + {00000000-0000-0000-0059-000000000038}, !- Handle Space Function Office open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000039}, !- Handle + {00000000-0000-0000-0059-000000000039}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0060-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0060-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000003}, !- Handle + {00000000-0000-0000-0061-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000004}, !- Handle + {00000000-0000-0000-0061-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000005}, !- Handle + {00000000-0000-0000-0061-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5454,36 +8868,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000006}, !- Handle + {00000000-0000-0000-0061-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000007}, !- Handle + {00000000-0000-0000-0061-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000008}, !- Handle + {00000000-0000-0000-0061-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000009}, !- Handle + {00000000-0000-0000-0061-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5508,9 +8922,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000010}, !- Handle + {00000000-0000-0000-0061-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5535,27 +8949,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000011}, !- Handle + {00000000-0000-0000-0061-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000012}, !- Handle + {00000000-0000-0000-0061-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000013}, !- Handle + {00000000-0000-0000-0061-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5586,9 +9000,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000014}, !- Handle + {00000000-0000-0000-0061-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5619,27 +9033,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000015}, !- Handle + {00000000-0000-0000-0061-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000016}, !- Handle + {00000000-0000-0000-0061-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000017}, !- Handle + {00000000-0000-0000-0061-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5673,9 +9087,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000018}, !- Handle + {00000000-0000-0000-0061-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5709,27 +9123,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000019}, !- Handle + {00000000-0000-0000-0061-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000020}, !- Handle + {00000000-0000-0000-0061-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000021}, !- Handle + {00000000-0000-0000-0061-000000000021}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Default|Wkdy-Light Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5760,9 +9174,9 @@ OS:Schedule:Day, 0.0383; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000022}, !- Handle + {00000000-0000-0000-0061-000000000022}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Light Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5793,27 +9207,27 @@ OS:Schedule:Day, 0.0383; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000023}, !- Handle + {00000000-0000-0000-0061-000000000023}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Sat-Light Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.0383; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000024}, !- Handle + {00000000-0000-0000-0061-000000000024}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Sun|Hol-Light Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.0383; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000025}, !- Handle + {00000000-0000-0000-0061-000000000025}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5844,9 +9258,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000026}, !- Handle + {00000000-0000-0000-0061-000000000026}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5877,27 +9291,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000027}, !- Handle + {00000000-0000-0000-0061-000000000027}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000028}, !- Handle + {00000000-0000-0000-0061-000000000028}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000029}, !- Handle + {00000000-0000-0000-0061-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5910,9 +9324,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000030}, !- Handle + {00000000-0000-0000-0061-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5925,27 +9339,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000031}, !- Handle + {00000000-0000-0000-0061-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000032}, !- Handle + {00000000-0000-0000-0061-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000033}, !- Handle + {00000000-0000-0000-0061-000000000033}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5961,9 +9375,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000034}, !- Handle + {00000000-0000-0000-0061-000000000034}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5979,52 +9393,52 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000035}, !- Handle + {00000000-0000-0000-0061-000000000035}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000036}, !- Handle + {00000000-0000-0000-0061-000000000036}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000037}, !- Handle + {00000000-0000-0000-0061-000000000037}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000038}, !- Handle + {00000000-0000-0000-0061-000000000038}, !- Handle NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000039}, !- Handle + {00000000-0000-0000-0061-000000000039}, !- Handle NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000040}, !- Handle + {00000000-0000-0000-0061-000000000040}, !- Handle Schedule Day 1, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6033,16 +9447,70 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000041}, !- Handle + {00000000-0000-0000-0061-000000000041}, !- Handle Schedule Day 10, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000042}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000043}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000044}, !- Handle + Schedule Day 13, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000045}, !- Handle + Schedule Day 14, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000046}, !- Handle + Schedule Day 15, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000047}, !- Handle + Schedule Day 16, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000042}, !- Handle + {00000000-0000-0000-0061-000000000048}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6051,9 +9519,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000043}, !- Handle + {00000000-0000-0000-0061-000000000049}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6129,9 +9597,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000044}, !- Handle + {00000000-0000-0000-0061-000000000050}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6207,90 +9675,117 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000045}, !- Handle + {00000000-0000-0000-0061-000000000051}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000046}, !- Handle + {00000000-0000-0000-0061-000000000052}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000047}, !- Handle + {00000000-0000-0000-0061-000000000053}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000048}, !- Handle + {00000000-0000-0000-0061-000000000054}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000049}, !- Handle + {00000000-0000-0000-0061-000000000055}, !- Handle Schedule Day 9, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000050}, !- Handle + {00000000-0000-0000-0061-000000000056}, !- Handle Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000051}, !- Handle + {00000000-0000-0000-0061-000000000057}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000058}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000059}, !- Handle + Supply Air Temp Default 3, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000060}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000052}, !- Handle + {00000000-0000-0000-0061-000000000061}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000053}, !- Handle + {00000000-0000-0000-0061-000000000062}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000054}, !- Handle + {00000000-0000-0000-0061-000000000063}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6366,9 +9861,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000055}, !- Handle + {00000000-0000-0000-0061-000000000064}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6444,9 +9939,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000056}, !- Handle + {00000000-0000-0000-0061-000000000065}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6522,9 +10017,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000057}, !- Handle + {00000000-0000-0000-0061-000000000066}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6600,9 +10095,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000058}, !- Handle + {00000000-0000-0000-0061-000000000067}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6678,9 +10173,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000059}, !- Handle + {00000000-0000-0000-0061-000000000068}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6756,9 +10251,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000060}, !- Handle + {00000000-0000-0000-0061-000000000069}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6834,9 +10329,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000061}, !- Handle + {00000000-0000-0000-0061-000000000070}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6912,9 +10407,75 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000062}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000071}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000072}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000073}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000074}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000075}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000076}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000077}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -6927,27 +10488,60 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000063}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000078}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000064}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000079}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000080}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Default, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000081}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000082}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000065}, !- Handle + {00000000-0000-0000-0061-000000000083}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -6960,27 +10554,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000066}, !- Handle + {00000000-0000-0000-0061-000000000084}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000067}, !- Handle + {00000000-0000-0000-0061-000000000085}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000068}, !- Handle + {00000000-0000-0000-0061-000000000086}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7056,9 +10650,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000069}, !- Handle + {00000000-0000-0000-0061-000000000087}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7134,9 +10728,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000070}, !- Handle + {00000000-0000-0000-0061-000000000088}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7212,9 +10806,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000071}, !- Handle + {00000000-0000-0000-0061-000000000089}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7290,11 +10884,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0059-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7309,11 +10903,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0062-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7328,11 +10922,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000003}, !- Handle + {00000000-0000-0000-0062-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0059-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000016}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000034}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000034}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7347,11 +10941,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0059-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000016}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000035}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000035}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7366,11 +10960,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000005}, !- Handle + {00000000-0000-0000-0062-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0059-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000016}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000036}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000036}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7385,11 +10979,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000006}, !- Handle + {00000000-0000-0000-0062-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7404,11 +10998,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000007}, !- Handle + {00000000-0000-0000-0062-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7423,11 +11017,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000008}, !- Handle + {00000000-0000-0000-0062-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7442,11 +11036,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000009}, !- Handle + {00000000-0000-0000-0062-000000000009}, !- Handle Schedule Rule 17, !- Name - {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000021}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000021}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7461,11 +11055,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000010}, !- Handle + {00000000-0000-0000-0062-000000000010}, !- Handle Schedule Rule 18, !- Name - {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000023}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7480,11 +11074,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000011}, !- Handle + {00000000-0000-0000-0062-000000000011}, !- Handle Schedule Rule 19, !- Name - {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000024}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7499,11 +11093,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000012}, !- Handle + {00000000-0000-0000-0062-000000000012}, !- Handle Schedule Rule 2, !- Name - {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000018}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000018}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7518,11 +11112,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000013}, !- Handle + {00000000-0000-0000-0062-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7537,11 +11131,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000014}, !- Handle + {00000000-0000-0000-0062-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7556,11 +11150,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000015}, !- Handle + {00000000-0000-0000-0062-000000000015}, !- Handle Schedule Rule 22, !- Name - {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000028}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7575,11 +11169,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000016}, !- Handle + {00000000-0000-0000-0062-000000000016}, !- Handle Schedule Rule 23, !- Name - {00000000-0000-0000-0059-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000047}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000053}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7594,11 +11188,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000017}, !- Handle + {00000000-0000-0000-0062-000000000017}, !- Handle Schedule Rule 24, !- Name - {00000000-0000-0000-0059-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000048}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7613,11 +11207,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000018}, !- Handle + {00000000-0000-0000-0062-000000000018}, !- Handle Schedule Rule 25, !- Name - {00000000-0000-0000-0059-000000000025}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000031}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000049}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000055}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7632,11 +11226,49 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000019}, !- Handle + {00000000-0000-0000-0062-000000000019}, !- Handle Schedule Rule 26, !- Name - {00000000-0000-0000-0059-000000000025}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000031}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0061-000000000041}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000020}, !- Handle + Schedule Rule 27, !- Name + {00000000-0000-0000-0063-000000000028}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0061-000000000042}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000021}, !- Handle + Schedule Rule 28, !- Name + {00000000-0000-0000-0063-000000000028}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000041}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7651,11 +11283,68 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000020}, !- Handle + {00000000-0000-0000-0062-000000000022}, !- Handle + Schedule Rule 29, !- Name + {00000000-0000-0000-0063-000000000029}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0061-000000000044}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000023}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0061-000000000019}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000024}, !- Handle + Schedule Rule 30, !- Name + {00000000-0000-0000-0063-000000000029}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0061-000000000045}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000025}, !- Handle + Schedule Rule 31, !- Name + {00000000-0000-0000-0063-000000000030}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000046}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7665,16 +11354,35 @@ OS:Schedule:Rule, Yes, !- Apply Saturday DateRange, !- Date Specification Type 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000026}, !- Handle + Schedule Rule 32, !- Name + {00000000-0000-0000-0063-000000000030}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0061-000000000047}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month 1, !- Start Day 12, !- End Month 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000021}, !- Handle + {00000000-0000-0000-0062-000000000027}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7689,11 +11397,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000022}, !- Handle + {00000000-0000-0000-0062-000000000028}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7708,11 +11416,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000023}, !- Handle + {00000000-0000-0000-0062-000000000029}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7727,11 +11435,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000024}, !- Handle + {00000000-0000-0000-0062-000000000030}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7746,11 +11454,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000025}, !- Handle + {00000000-0000-0000-0062-000000000031}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7765,11 +11473,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000026}, !- Handle + {00000000-0000-0000-0062-000000000032}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7784,11 +11492,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000027}, !- Handle + {00000000-0000-0000-0062-000000000033}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000063}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7803,11 +11511,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000028}, !- Handle + {00000000-0000-0000-0062-000000000034}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000065}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7822,11 +11530,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000029}, !- Handle + {00000000-0000-0000-0062-000000000035}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000058}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000067}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7841,11 +11549,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000030}, !- Handle + {00000000-0000-0000-0062-000000000036}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000060}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000069}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7860,11 +11568,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000031}, !- Handle + {00000000-0000-0000-0062-000000000037}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000068}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000086}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7879,11 +11587,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000032}, !- Handle + {00000000-0000-0000-0062-000000000038}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000070}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000088}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7898,163 +11606,205 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0060-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000002}, !- Handle + {00000000-0000-0000-0063-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000003}, !- Handle + {00000000-0000-0000-0063-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000043}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000004}, !- Handle + {00000000-0000-0000-0063-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000050}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000005}, !- Handle + {00000000-0000-0000-0063-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000006}, !- Handle + {00000000-0000-0000-0063-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000007}, !- Handle + {00000000-0000-0000-0063-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000008}, !- Handle + {00000000-0000-0000-0063-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000009}, !- Handle + {00000000-0000-0000-0063-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000010}, !- Handle + {00000000-0000-0000-0063-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000011}, !- Handle + {00000000-0000-0000-0063-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000012}, !- Handle + {00000000-0000-0000-0063-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000013}, !- Handle + {00000000-0000-0000-0063-000000000013}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Light Ruleset, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000022}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000022}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000014}, !- Handle + {00000000-0000-0000-0063-000000000014}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000015}, !- Handle + {00000000-0000-0000-0063-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000016}, !- Handle + {00000000-0000-0000-0063-000000000016}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000033}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000033}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000017}, !- Handle + {00000000-0000-0000-0063-000000000017}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000037}, !- Default Day Schedule Name - {00000000-0000-0000-0057-000000000038}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0057-000000000039}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000037}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000038}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000039}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000018}, !- Handle + {00000000-0000-0000-0063-000000000018}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000045}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000051}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000019}, !- Handle + {00000000-0000-0000-0063-000000000019}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000020}, !- Handle + {00000000-0000-0000-0063-000000000020}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000050}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000056}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000021}, !- Handle + {00000000-0000-0000-0063-000000000021}, !- Handle + Supply Air Temp 1, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000057}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000022}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000058}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000023}, !- Handle + Supply Air Temp 3, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000059}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000024}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000051}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000060}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000022}, !- Handle + {00000000-0000-0000-0063-000000000025}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000052}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000061}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000023}, !- Handle + {00000000-0000-0000-0063-000000000026}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000053}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000062}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000024}, !- Handle + {00000000-0000-0000-0063-000000000027}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000062}, !- Default Day Schedule Name - {00000000-0000-0000-0057-000000000063}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0057-000000000064}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000071}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000072}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000073}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000025}, !- Handle + {00000000-0000-0000-0063-000000000028}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000074}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000075}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000076}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000029}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000077}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000078}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000079}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000030}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000080}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000081}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000082}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000031}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000065}, !- Default Day Schedule Name - {00000000-0000-0000-0057-000000000066}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0057-000000000067}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000083}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000084}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000085}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8062,7 +11812,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000002}, !- Handle + {00000000-0000-0000-0064-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -8070,7 +11820,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000003}, !- Handle + {00000000-0000-0000-0064-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8078,14 +11828,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000004}, !- Handle + {00000000-0000-0000-0064-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000005}, !- Handle + {00000000-0000-0000-0064-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -8093,7 +11843,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000006}, !- Handle + {00000000-0000-0000-0064-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8101,7 +11851,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000007}, !- Handle + {00000000-0000-0000-0064-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8109,7 +11859,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000008}, !- Handle + {00000000-0000-0000-0064-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8117,7 +11867,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000009}, !- Handle + {00000000-0000-0000-0064-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8125,71 +11875,134 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Setpoint Manager Outdoor Air Pretreat 1, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0046-000000000116}, !- Reference Setpoint Node Name - {00000000-0000-0000-0046-000000000116}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0046-000000000117}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0046-000000000119}, !- Return Air Stream Node Name - {00000000-0000-0000-0046-000000000121}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000185}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000185}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000186}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000188}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000190}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0065-000000000002}, !- Handle Setpoint Manager Outdoor Air Pretreat 2, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0046-000000000125}, !- Reference Setpoint Node Name - {00000000-0000-0000-0046-000000000125}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0046-000000000126}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0046-000000000111}, !- Return Air Stream Node Name - {00000000-0000-0000-0046-000000000130}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000215}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000215}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000216}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000180}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000226}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0065-000000000003}, !- Handle + Setpoint Manager Outdoor Air Pretreat 3, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0050-000000000194}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000194}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000195}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000177}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000220}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0065-000000000004}, !- Handle + Setpoint Manager Outdoor Air Pretreat 4, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0050-000000000201}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000201}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000202}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000178}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000222}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0065-000000000005}, !- Handle + Setpoint Manager Outdoor Air Pretreat 5, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0050-000000000208}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000208}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000209}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000179}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000224}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0059-000000000020}, !- Schedule Name - {00000000-0000-0000-0046-000000000064}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0063-000000000020}, !- Schedule Name + {00000000-0000-0000-0050-000000000130}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0062-000000000002}, !- Handle + {00000000-0000-0000-0066-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0059-000000000003}, !- Schedule Name - {00000000-0000-0000-0046-000000000033}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Name + {00000000-0000-0000-0050-000000000087}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0062-000000000003}, !- Handle + {00000000-0000-0000-0066-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0059-000000000004}, !- Schedule Name - {00000000-0000-0000-0046-000000000043}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Name + {00000000-0000-0000-0050-000000000109}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0062-000000000004}, !- Handle + {00000000-0000-0000-0066-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0059-000000000021}, !- Schedule Name - {00000000-0000-0000-0046-000000000129}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0063-000000000024}, !- Schedule Name + {00000000-0000-0000-0050-000000000219}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0066-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0063-000000000021}, !- Schedule Name + {00000000-0000-0000-0050-000000000198}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0066-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0063-000000000022}, !- Schedule Name + {00000000-0000-0000-0050-000000000205}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0066-000000000007}, !- Handle + Setpoint Manager Scheduled 6, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0063-000000000023}, !- Schedule Name + {00000000-0000-0000-0050-000000000212}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0086-000000000023}, !- Control Zone Name - {00000000-0000-0000-0046-000000000120}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0090-000000000023}, !- Control Zone Name + {00000000-0000-0000-0050-000000000189}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -8204,7 +12017,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0069-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -8213,7 +12026,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0070-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -8228,7 +12041,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0071-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -8243,7 +12056,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0072-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -8258,7 +12071,7 @@ OS:Site:GroundTemperature:FCfactorMethod, 11.1; !- December Ground Temperature {C} OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0073-000000000001}, !- Handle -1.6, !- January Surface Ground Temperature {C} -5.4, !- February Surface Ground Temperature {C} -6.4, !- March Surface Ground Temperature {C} @@ -8273,20 +12086,20 @@ OS:Site:GroundTemperature:Shallow, 4; !- December Surface Ground Temperature {C} OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0074-000000000001}, !- Handle Correlation, !- Calculation Method , !- Temperature Schedule Name 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} OS:Sizing:Parameters, - {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle 1.3, !- Heating Sizing Factor 1.1; !- Cooling Sizing Factor OS:Sizing:Plant, - {00000000-0000-0000-0072-000000000001}, !- Handle - {00000000-0000-0000-0051-000000000001}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Plant or Condenser Loop Name Cooling, !- Loop Type 7, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -8295,8 +12108,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0072-000000000002}, !- Handle - {00000000-0000-0000-0051-000000000002}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000002}, !- Handle + {00000000-0000-0000-0055-000000000002}, !- Plant or Condenser Loop Name Condenser, !- Loop Type 29, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -8305,8 +12118,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0072-000000000003}, !- Handle - {00000000-0000-0000-0051-000000000003}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000003}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Plant or Condenser Loop Name Heating, !- Loop Type 60, !- Design Loop Exit Temperature {C} 5, !- Loop Design Temperature Difference {deltaC} @@ -8315,27 +12128,68 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0073-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- AirLoop Name - Sensible, !- Type of Load to Size On + {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 43, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0077-000000000002}, !- Handle + {00000000-0000-0000-0002-000000000005}, !- AirLoop Name + , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 1, !- Central Heating Maximum System Air Flow Ratio + 0.3, !- Central Heating Maximum System Air Flow Ratio 7, !- Preheat Design Temperature {C} 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Precool Design Temperature {C} + 12.8, !- Precool Design Temperature {C} 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} 13, !- Central Cooling Design Supply Air Temperature {C} - 43, !- Central Heating Design Supply Air Temperature {C} - NonCoincident, !- Sizing Option + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option No, !- 100% Outdoor Air in Cooling No, !- 100% Outdoor Air in Heating 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - DesignDay, !- Cooling Design Air Flow Method - 0, !- Cooling Design Air Flow Rate {m3/s} - DesignDay, !- Heating Design Air Flow Method - 0, !- Heating Design Air Flow Rate {m3/s} - ZoneSum, !- System Outdoor Air Method + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate @@ -8356,7 +12210,7 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0073-000000000002}, !- Handle + {00000000-0000-0000-0077-000000000003}, !- Handle {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -8396,19 +12250,101 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0077-000000000004}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0077-000000000005}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000001}, !- Handle - {00000000-0000-0000-0086-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8432,8 +12368,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000002}, !- Handle - {00000000-0000-0000-0086-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8467,18 +12403,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000003}, !- Handle - {00000000-0000-0000-0086-000000000022}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8502,8 +12438,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000004}, !- Handle - {00000000-0000-0000-0086-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8537,18 +12473,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000005}, !- Handle - {00000000-0000-0000-0086-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8572,18 +12508,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000006}, !- Handle - {00000000-0000-0000-0086-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8607,18 +12543,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000007}, !- Handle - {00000000-0000-0000-0086-000000000005}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8642,18 +12578,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000008}, !- Handle - {00000000-0000-0000-0086-000000000006}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8677,18 +12613,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000009}, !- Handle - {00000000-0000-0000-0086-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8712,18 +12648,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000010}, !- Handle - {00000000-0000-0000-0086-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8747,18 +12683,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000011}, !- Handle - {00000000-0000-0000-0086-000000000019}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8782,18 +12718,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000012}, !- Handle - {00000000-0000-0000-0086-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8817,8 +12753,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000013}, !- Handle - {00000000-0000-0000-0086-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8852,8 +12788,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000014}, !- Handle - {00000000-0000-0000-0086-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8887,18 +12823,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000015}, !- Handle - {00000000-0000-0000-0086-000000000007}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8922,18 +12858,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000016}, !- Handle - {00000000-0000-0000-0086-000000000020}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8957,18 +12893,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000017}, !- Handle - {00000000-0000-0000-0086-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8992,18 +12928,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000018}, !- Handle - {00000000-0000-0000-0086-000000000021}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9027,18 +12963,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000019}, !- Handle - {00000000-0000-0000-0086-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9062,18 +12998,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000020}, !- Handle - {00000000-0000-0000-0086-000000000008}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9097,18 +13033,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000021}, !- Handle - {00000000-0000-0000-0086-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9132,18 +13068,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000022}, !- Handle - {00000000-0000-0000-0086-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9167,8 +13103,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000023}, !- Handle - {00000000-0000-0000-0086-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9202,7 +13138,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0075-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9230,7 +13166,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0075-000000000002}, !- Handle + {00000000-0000-0000-0079-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9258,7 +13194,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0075-000000000003}, !- Handle + {00000000-0000-0000-0079-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9282,9 +13218,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0080-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0078-000000000002}, !- Space Type Name + {00000000-0000-0000-0082-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9292,16 +13228,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0086-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000002}, !- Handle + {00000000-0000-0000-0080-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9309,16 +13245,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000003}, !- Handle + {00000000-0000-0000-0080-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9326,16 +13262,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000004}, !- Handle + {00000000-0000-0000-0080-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9343,16 +13279,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000005}, !- Handle + {00000000-0000-0000-0080-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9360,16 +13296,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0086-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000006}, !- Handle + {00000000-0000-0000-0080-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9377,16 +13313,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000007}, !- Handle + {00000000-0000-0000-0080-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9394,16 +13330,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000008}, !- Handle + {00000000-0000-0000-0080-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9411,16 +13347,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000009}, !- Handle + {00000000-0000-0000-0080-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0078-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9428,16 +13364,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000010}, !- Handle + {00000000-0000-0000-0080-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0078-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9445,16 +13381,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000011}, !- Handle + {00000000-0000-0000-0080-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9462,16 +13398,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000012}, !- Handle + {00000000-0000-0000-0080-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9479,16 +13415,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000013}, !- Handle + {00000000-0000-0000-0080-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9496,16 +13432,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000014}, !- Handle + {00000000-0000-0000-0080-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9513,16 +13449,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000015}, !- Handle + {00000000-0000-0000-0080-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9530,16 +13466,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000016}, !- Handle + {00000000-0000-0000-0080-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9547,16 +13483,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000017}, !- Handle + {00000000-0000-0000-0080-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9564,16 +13500,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000018}, !- Handle + {00000000-0000-0000-0080-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9581,16 +13517,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000019}, !- Handle + {00000000-0000-0000-0080-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9598,16 +13534,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000020}, !- Handle + {00000000-0000-0000-0080-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9615,16 +13551,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000021}, !- Handle + {00000000-0000-0000-0080-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9632,16 +13568,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000022}, !- Handle + {00000000-0000-0000-0080-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9649,16 +13585,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000023}, !- Handle + {00000000-0000-0000-0080-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0078-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9666,17 +13602,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0076-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9688,10 +13624,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0076-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9703,10 +13639,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000003}, !- Handle + {00000000-0000-0000-0081-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0076-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9718,10 +13654,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000004}, !- Handle + {00000000-0000-0000-0081-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0076-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9733,10 +13669,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000005}, !- Handle + {00000000-0000-0000-0081-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0076-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9748,10 +13684,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000006}, !- Handle + {00000000-0000-0000-0081-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0076-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9763,10 +13699,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000007}, !- Handle + {00000000-0000-0000-0081-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0076-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9778,10 +13714,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000008}, !- Handle + {00000000-0000-0000-0081-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0076-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9793,10 +13729,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000009}, !- Handle + {00000000-0000-0000-0081-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0076-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9808,10 +13744,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000010}, !- Handle + {00000000-0000-0000-0081-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0076-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9823,10 +13759,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000011}, !- Handle + {00000000-0000-0000-0081-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0076-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9838,10 +13774,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000012}, !- Handle + {00000000-0000-0000-0081-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0076-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9853,10 +13789,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000013}, !- Handle + {00000000-0000-0000-0081-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0076-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9868,10 +13804,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000014}, !- Handle + {00000000-0000-0000-0081-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0076-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9883,10 +13819,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000015}, !- Handle + {00000000-0000-0000-0081-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0076-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9898,46 +13834,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0082-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000031}, !- Group Rendering Name {00000000-0000-0000-0032-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0078-000000000002}, !- Handle + {00000000-0000-0000-0082-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000033}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000033}, !- Group Rendering Name {00000000-0000-0000-0032-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical room-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0082-000000000003}, !- Handle Space Function Office open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000037}, !- Group Rendering Name {00000000-0000-0000-0032-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle {00000000-0000-0000-0020-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000002}, !- Handle + {00000000-0000-0000-0083-000000000002}, !- Handle {00000000-0000-0000-0020-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9946,7 +13882,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0083-000000000003}, !- Handle {00000000-0000-0000-0020-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9955,7 +13891,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000004}, !- Handle + {00000000-0000-0000-0083-000000000004}, !- Handle {00000000-0000-0000-0020-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -9964,25 +13900,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000005}, !- Handle + {00000000-0000-0000-0083-000000000005}, !- Handle {00000000-0000-0000-0020-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000006}, !- Handle + {00000000-0000-0000-0083-000000000006}, !- Handle {00000000-0000-0000-0020-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000007}, !- Handle + {00000000-0000-0000-0083-000000000007}, !- Handle {00000000-0000-0000-0020-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000008}, !- Handle + {00000000-0000-0000-0083-000000000008}, !- Handle {00000000-0000-0000-0020-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9991,7 +13927,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000009}, !- Handle + {00000000-0000-0000-0083-000000000009}, !- Handle {00000000-0000-0000-0020-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10000,7 +13936,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000010}, !- Handle + {00000000-0000-0000-0083-000000000010}, !- Handle {00000000-0000-0000-0020-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10009,12 +13945,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000011}, !- Handle + {00000000-0000-0000-0083-000000000011}, !- Handle {00000000-0000-0000-0020-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000012}, !- Handle + {00000000-0000-0000-0083-000000000012}, !- Handle {00000000-0000-0000-0020-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -10023,12 +13959,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000013}, !- Handle + {00000000-0000-0000-0083-000000000013}, !- Handle {00000000-0000-0000-0020-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000014}, !- Handle + {00000000-0000-0000-0083-000000000014}, !- Handle {00000000-0000-0000-0020-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -10037,34 +13973,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000015}, !- Handle + {00000000-0000-0000-0083-000000000015}, !- Handle {00000000-0000-0000-0020-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000016}, !- Handle + {00000000-0000-0000-0083-000000000016}, !- Handle {00000000-0000-0000-0020-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000017}, !- Handle + {00000000-0000-0000-0083-000000000017}, !- Handle {00000000-0000-0000-0020-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000018}, !- Handle + {00000000-0000-0000-0083-000000000018}, !- Handle {00000000-0000-0000-0020-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000019}, !- Handle + {00000000-0000-0000-0083-000000000019}, !- Handle {00000000-0000-0000-0020-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000020}, !- Handle + {00000000-0000-0000-0083-000000000020}, !- Handle {00000000-0000-0000-0020-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10073,7 +14009,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000021}, !- Handle + {00000000-0000-0000-0083-000000000021}, !- Handle {00000000-0000-0000-0020-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10082,7 +14018,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000022}, !- Handle + {00000000-0000-0000-0083-000000000022}, !- Handle {00000000-0000-0000-0020-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -10091,7 +14027,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000023}, !- Handle + {00000000-0000-0000-0083-000000000023}, !- Handle {00000000-0000-0000-0020-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10100,7 +14036,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000024}, !- Handle + {00000000-0000-0000-0083-000000000024}, !- Handle {00000000-0000-0000-0020-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10109,7 +14045,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000025}, !- Handle + {00000000-0000-0000-0083-000000000025}, !- Handle {00000000-0000-0000-0020-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10118,7 +14054,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000026}, !- Handle + {00000000-0000-0000-0083-000000000026}, !- Handle {00000000-0000-0000-0020-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -10127,7 +14063,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000027}, !- Handle + {00000000-0000-0000-0083-000000000027}, !- Handle {00000000-0000-0000-0020-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -10136,135 +14072,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000001}, !- Handle - {00000000-0000-0000-0043-000000000021}; !- Material Name + {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0047-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000002}, !- Handle - {00000000-0000-0000-0044-000000000013}; !- Material Name + {00000000-0000-0000-0084-000000000002}, !- Handle + {00000000-0000-0000-0048-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000003}, !- Handle - {00000000-0000-0000-0043-000000000008}; !- Material Name + {00000000-0000-0000-0084-000000000003}, !- Handle + {00000000-0000-0000-0047-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000004}, !- Handle - {00000000-0000-0000-0044-000000000007}; !- Material Name + {00000000-0000-0000-0084-000000000004}, !- Handle + {00000000-0000-0000-0048-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000005}, !- Handle - {00000000-0000-0000-0043-000000000006}; !- Material Name + {00000000-0000-0000-0084-000000000005}, !- Handle + {00000000-0000-0000-0047-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000006}, !- Handle - {00000000-0000-0000-0043-000000000014}; !- Material Name + {00000000-0000-0000-0084-000000000006}, !- Handle + {00000000-0000-0000-0047-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000007}, !- Handle - {00000000-0000-0000-0043-000000000002}; !- Material Name + {00000000-0000-0000-0084-000000000007}, !- Handle + {00000000-0000-0000-0047-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000008}, !- Handle - {00000000-0000-0000-0043-000000000024}; !- Material Name + {00000000-0000-0000-0084-000000000008}, !- Handle + {00000000-0000-0000-0047-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000009}, !- Handle - {00000000-0000-0000-0043-000000000003}; !- Material Name + {00000000-0000-0000-0084-000000000009}, !- Handle + {00000000-0000-0000-0047-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000010}, !- Handle - {00000000-0000-0000-0043-000000000019}; !- Material Name + {00000000-0000-0000-0084-000000000010}, !- Handle + {00000000-0000-0000-0047-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000011}, !- Handle - {00000000-0000-0000-0043-000000000012}; !- Material Name + {00000000-0000-0000-0084-000000000011}, !- Handle + {00000000-0000-0000-0047-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000012}, !- Handle - {00000000-0000-0000-0096-000000000001}; !- Material Name + {00000000-0000-0000-0084-000000000012}, !- Handle + {00000000-0000-0000-0100-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000013}, !- Handle - {00000000-0000-0000-0043-000000000018}; !- Material Name + {00000000-0000-0000-0084-000000000013}, !- Handle + {00000000-0000-0000-0047-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000014}, !- Handle - {00000000-0000-0000-0044-000000000008}; !- Material Name + {00000000-0000-0000-0084-000000000014}, !- Handle + {00000000-0000-0000-0048-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000015}, !- Handle - {00000000-0000-0000-0043-000000000007}; !- Material Name + {00000000-0000-0000-0084-000000000015}, !- Handle + {00000000-0000-0000-0047-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000016}, !- Handle - {00000000-0000-0000-0044-000000000003}; !- Material Name + {00000000-0000-0000-0084-000000000016}, !- Handle + {00000000-0000-0000-0048-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000017}, !- Handle - {00000000-0000-0000-0043-000000000005}; !- Material Name + {00000000-0000-0000-0084-000000000017}, !- Handle + {00000000-0000-0000-0047-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000018}, !- Handle - {00000000-0000-0000-0043-000000000013}; !- Material Name + {00000000-0000-0000-0084-000000000018}, !- Handle + {00000000-0000-0000-0047-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000019}, !- Handle - {00000000-0000-0000-0044-000000000009}; !- Material Name + {00000000-0000-0000-0084-000000000019}, !- Handle + {00000000-0000-0000-0048-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000020}, !- Handle - {00000000-0000-0000-0043-000000000001}; !- Material Name + {00000000-0000-0000-0084-000000000020}, !- Handle + {00000000-0000-0000-0047-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000021}, !- Handle - {00000000-0000-0000-0043-000000000023}; !- Material Name + {00000000-0000-0000-0084-000000000021}, !- Handle + {00000000-0000-0000-0047-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000022}, !- Handle - {00000000-0000-0000-0044-000000000010}; !- Material Name + {00000000-0000-0000-0084-000000000022}, !- Handle + {00000000-0000-0000-0048-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000023}, !- Handle - {00000000-0000-0000-0043-000000000009}; !- Material Name + {00000000-0000-0000-0084-000000000023}, !- Handle + {00000000-0000-0000-0047-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000024}, !- Handle - {00000000-0000-0000-0044-000000000004}; !- Material Name + {00000000-0000-0000-0084-000000000024}, !- Handle + {00000000-0000-0000-0048-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000025}, !- Handle - {00000000-0000-0000-0043-000000000010}; !- Material Name + {00000000-0000-0000-0084-000000000025}, !- Handle + {00000000-0000-0000-0047-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000026}, !- Handle - {00000000-0000-0000-0044-000000000005}; !- Material Name + {00000000-0000-0000-0084-000000000026}, !- Handle + {00000000-0000-0000-0048-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000027}, !- Handle - {00000000-0000-0000-0043-000000000011}; !- Material Name + {00000000-0000-0000-0084-000000000027}, !- Handle + {00000000-0000-0000-0047-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000028}, !- Handle - {00000000-0000-0000-0044-000000000006}; !- Material Name + {00000000-0000-0000-0084-000000000028}, !- Handle + {00000000-0000-0000-0048-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000029}, !- Handle - {00000000-0000-0000-0043-000000000017}; !- Material Name + {00000000-0000-0000-0084-000000000029}, !- Handle + {00000000-0000-0000-0047-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000030}, !- Handle - {00000000-0000-0000-0044-000000000011}; !- Material Name + {00000000-0000-0000-0084-000000000030}, !- Handle + {00000000-0000-0000-0048-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000031}, !- Handle - {00000000-0000-0000-0044-000000000012}; !- Material Name + {00000000-0000-0000-0084-000000000031}, !- Handle + {00000000-0000-0000-0048-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0085-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000098}, !- Surface Name + {00000000-0000-0000-0086-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10276,11 +14212,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0085-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000103}, !- Surface Name + {00000000-0000-0000-0086-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10292,11 +14228,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0085-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000110}, !- Surface Name + {00000000-0000-0000-0086-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10308,11 +14244,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000004}, !- Handle + {00000000-0000-0000-0085-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000119}, !- Surface Name + {00000000-0000-0000-0086-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10324,11 +14260,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000005}, !- Handle + {00000000-0000-0000-0085-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000125}, !- Surface Name + {00000000-0000-0000-0086-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10340,11 +14276,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000006}, !- Handle + {00000000-0000-0000-0085-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000129}, !- Surface Name + {00000000-0000-0000-0086-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10356,11 +14292,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000007}, !- Handle + {00000000-0000-0000-0085-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000135}, !- Surface Name + {00000000-0000-0000-0086-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10372,11 +14308,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000008}, !- Handle + {00000000-0000-0000-0085-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000143}, !- Surface Name + {00000000-0000-0000-0086-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10388,11 +14324,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000009}, !- Handle + {00000000-0000-0000-0085-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000147}, !- Surface Name + {00000000-0000-0000-0086-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10404,11 +14340,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000010}, !- Handle + {00000000-0000-0000-0085-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000151}, !- Surface Name + {00000000-0000-0000-0086-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10420,11 +14356,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000011}, !- Handle + {00000000-0000-0000-0085-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000157}, !- Surface Name + {00000000-0000-0000-0086-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10436,11 +14372,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000012}, !- Handle + {00000000-0000-0000-0085-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000165}, !- Surface Name + {00000000-0000-0000-0086-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10452,13 +14388,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10469,13 +14405,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10486,13 +14422,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10503,13 +14439,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000004}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10520,13 +14456,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000005}, !- Handle + {00000000-0000-0000-0086-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10537,11 +14473,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000006}, !- Handle + {00000000-0000-0000-0086-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10554,13 +14490,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000007}, !- Handle + {00000000-0000-0000-0086-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10571,13 +14507,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000008}, !- Handle + {00000000-0000-0000-0086-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10588,13 +14524,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000009}, !- Handle + {00000000-0000-0000-0086-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10605,13 +14541,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000010}, !- Handle + {00000000-0000-0000-0086-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10622,13 +14558,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000011}, !- Handle + {00000000-0000-0000-0086-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10639,13 +14575,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000012}, !- Handle + {00000000-0000-0000-0086-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10656,13 +14592,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000013}, !- Handle + {00000000-0000-0000-0086-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10673,13 +14609,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000014}, !- Handle + {00000000-0000-0000-0086-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10690,13 +14626,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000015}, !- Handle + {00000000-0000-0000-0086-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10707,13 +14643,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000016}, !- Handle + {00000000-0000-0000-0086-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10724,13 +14660,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000017}, !- Handle + {00000000-0000-0000-0086-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10741,13 +14677,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000018}, !- Handle + {00000000-0000-0000-0086-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10758,13 +14694,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000019}, !- Handle + {00000000-0000-0000-0086-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10775,11 +14711,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000020}, !- Handle + {00000000-0000-0000-0086-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10792,13 +14728,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000021}, !- Handle + {00000000-0000-0000-0086-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10809,13 +14745,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000022}, !- Handle + {00000000-0000-0000-0086-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10826,13 +14762,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000023}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10843,13 +14779,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000024}, !- Handle + {00000000-0000-0000-0086-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10860,13 +14796,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000025}, !- Handle + {00000000-0000-0000-0086-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10877,13 +14813,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000026}, !- Handle + {00000000-0000-0000-0086-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10894,13 +14830,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000027}, !- Handle + {00000000-0000-0000-0086-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10911,13 +14847,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000028}, !- Handle + {00000000-0000-0000-0086-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10928,13 +14864,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000029}, !- Handle + {00000000-0000-0000-0086-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10945,11 +14881,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000030}, !- Handle + {00000000-0000-0000-0086-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10962,13 +14898,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000031}, !- Handle + {00000000-0000-0000-0086-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10979,13 +14915,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000032}, !- Handle + {00000000-0000-0000-0086-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10996,13 +14932,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000033}, !- Handle + {00000000-0000-0000-0086-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11013,13 +14949,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000034}, !- Handle + {00000000-0000-0000-0086-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11030,13 +14966,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000035}, !- Handle + {00000000-0000-0000-0086-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11047,13 +14983,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000036}, !- Handle + {00000000-0000-0000-0086-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11064,13 +15000,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000037}, !- Handle + {00000000-0000-0000-0086-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11081,13 +15017,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000038}, !- Handle + {00000000-0000-0000-0086-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11098,13 +15034,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000039}, !- Handle + {00000000-0000-0000-0086-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11115,13 +15051,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000040}, !- Handle + {00000000-0000-0000-0086-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11132,13 +15068,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000041}, !- Handle + {00000000-0000-0000-0086-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11149,13 +15085,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000042}, !- Handle + {00000000-0000-0000-0086-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11166,13 +15102,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000043}, !- Handle + {00000000-0000-0000-0086-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11183,13 +15119,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000044}, !- Handle + {00000000-0000-0000-0086-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11200,13 +15136,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000045}, !- Handle + {00000000-0000-0000-0086-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11217,13 +15153,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000046}, !- Handle + {00000000-0000-0000-0086-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11234,13 +15170,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000047}, !- Handle + {00000000-0000-0000-0086-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11251,13 +15187,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000048}, !- Handle + {00000000-0000-0000-0086-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11268,13 +15204,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000049}, !- Handle + {00000000-0000-0000-0086-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11285,13 +15221,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000050}, !- Handle + {00000000-0000-0000-0086-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11302,13 +15238,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000051}, !- Handle + {00000000-0000-0000-0086-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11319,13 +15255,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000052}, !- Handle + {00000000-0000-0000-0086-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11336,13 +15272,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000053}, !- Handle + {00000000-0000-0000-0086-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11353,13 +15289,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000054}, !- Handle + {00000000-0000-0000-0086-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11370,13 +15306,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000055}, !- Handle + {00000000-0000-0000-0086-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11387,13 +15323,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000056}, !- Handle + {00000000-0000-0000-0086-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11404,13 +15340,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000057}, !- Handle + {00000000-0000-0000-0086-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11421,13 +15357,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000058}, !- Handle + {00000000-0000-0000-0086-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11438,13 +15374,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000059}, !- Handle + {00000000-0000-0000-0086-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11455,11 +15391,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000060}, !- Handle + {00000000-0000-0000-0086-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11472,13 +15408,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000061}, !- Handle + {00000000-0000-0000-0086-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11489,13 +15425,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000062}, !- Handle + {00000000-0000-0000-0086-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11506,13 +15442,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000063}, !- Handle + {00000000-0000-0000-0086-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11523,13 +15459,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000064}, !- Handle + {00000000-0000-0000-0086-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11540,13 +15476,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000065}, !- Handle + {00000000-0000-0000-0086-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11557,13 +15493,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000066}, !- Handle + {00000000-0000-0000-0086-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11574,13 +15510,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000067}, !- Handle + {00000000-0000-0000-0086-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11591,13 +15527,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000068}, !- Handle + {00000000-0000-0000-0086-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11608,13 +15544,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000069}, !- Handle + {00000000-0000-0000-0086-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11625,11 +15561,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000070}, !- Handle + {00000000-0000-0000-0086-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11642,13 +15578,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000071}, !- Handle + {00000000-0000-0000-0086-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11659,13 +15595,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000072}, !- Handle + {00000000-0000-0000-0086-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11676,13 +15612,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000073}, !- Handle + {00000000-0000-0000-0086-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11693,13 +15629,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000074}, !- Handle + {00000000-0000-0000-0086-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11710,13 +15646,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000075}, !- Handle + {00000000-0000-0000-0086-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11727,13 +15663,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000076}, !- Handle + {00000000-0000-0000-0086-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11744,13 +15680,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000077}, !- Handle + {00000000-0000-0000-0086-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11761,13 +15697,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000078}, !- Handle + {00000000-0000-0000-0086-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11778,13 +15714,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000079}, !- Handle + {00000000-0000-0000-0086-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11795,11 +15731,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000080}, !- Handle + {00000000-0000-0000-0086-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11812,11 +15748,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000081}, !- Handle + {00000000-0000-0000-0086-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11829,11 +15765,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000082}, !- Handle + {00000000-0000-0000-0086-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11846,11 +15782,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000083}, !- Handle + {00000000-0000-0000-0086-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11863,11 +15799,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000084}, !- Handle + {00000000-0000-0000-0086-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11880,13 +15816,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000085}, !- Handle + {00000000-0000-0000-0086-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11897,13 +15833,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000086}, !- Handle + {00000000-0000-0000-0086-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11914,11 +15850,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000087}, !- Handle + {00000000-0000-0000-0086-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11931,11 +15867,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000088}, !- Handle + {00000000-0000-0000-0086-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11948,11 +15884,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000089}, !- Handle + {00000000-0000-0000-0086-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11965,11 +15901,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000090}, !- Handle + {00000000-0000-0000-0086-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11982,11 +15918,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000091}, !- Handle + {00000000-0000-0000-0086-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11999,13 +15935,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000092}, !- Handle + {00000000-0000-0000-0086-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12016,13 +15952,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000093}, !- Handle + {00000000-0000-0000-0086-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12033,13 +15969,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000094}, !- Handle + {00000000-0000-0000-0086-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12050,13 +15986,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000095}, !- Handle + {00000000-0000-0000-0086-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12067,13 +16003,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000096}, !- Handle + {00000000-0000-0000-0086-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12084,13 +16020,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000097}, !- Handle + {00000000-0000-0000-0086-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12101,11 +16037,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000098}, !- Handle + {00000000-0000-0000-0086-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12118,13 +16054,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000099}, !- Handle + {00000000-0000-0000-0086-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12135,13 +16071,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000100}, !- Handle + {00000000-0000-0000-0086-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12152,13 +16088,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000101}, !- Handle + {00000000-0000-0000-0086-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12169,13 +16105,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000102}, !- Handle + {00000000-0000-0000-0086-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12186,11 +16122,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000103}, !- Handle + {00000000-0000-0000-0086-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12203,13 +16139,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000104}, !- Handle + {00000000-0000-0000-0086-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12220,13 +16156,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000105}, !- Handle + {00000000-0000-0000-0086-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12237,13 +16173,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000106}, !- Handle + {00000000-0000-0000-0086-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12254,13 +16190,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000107}, !- Handle + {00000000-0000-0000-0086-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12271,13 +16207,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000108}, !- Handle + {00000000-0000-0000-0086-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12288,13 +16224,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000109}, !- Handle + {00000000-0000-0000-0086-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12305,11 +16241,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000110}, !- Handle + {00000000-0000-0000-0086-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12322,13 +16258,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000111}, !- Handle + {00000000-0000-0000-0086-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12339,13 +16275,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000112}, !- Handle + {00000000-0000-0000-0086-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12356,13 +16292,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000113}, !- Handle + {00000000-0000-0000-0086-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12373,13 +16309,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000114}, !- Handle + {00000000-0000-0000-0086-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12390,13 +16326,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000115}, !- Handle + {00000000-0000-0000-0086-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12407,13 +16343,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000116}, !- Handle + {00000000-0000-0000-0086-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12424,13 +16360,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000117}, !- Handle + {00000000-0000-0000-0086-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12441,13 +16377,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000118}, !- Handle + {00000000-0000-0000-0086-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12458,11 +16394,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000119}, !- Handle + {00000000-0000-0000-0086-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12475,13 +16411,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000120}, !- Handle + {00000000-0000-0000-0086-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12492,13 +16428,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000121}, !- Handle + {00000000-0000-0000-0086-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12509,11 +16445,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000122}, !- Handle + {00000000-0000-0000-0086-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12526,13 +16462,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000123}, !- Handle + {00000000-0000-0000-0086-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12543,13 +16479,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000124}, !- Handle + {00000000-0000-0000-0086-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12560,11 +16496,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000125}, !- Handle + {00000000-0000-0000-0086-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12577,13 +16513,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000126}, !- Handle + {00000000-0000-0000-0086-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12594,13 +16530,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000127}, !- Handle + {00000000-0000-0000-0086-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12611,11 +16547,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000128}, !- Handle + {00000000-0000-0000-0086-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12628,11 +16564,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000129}, !- Handle + {00000000-0000-0000-0086-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12645,13 +16581,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000130}, !- Handle + {00000000-0000-0000-0086-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12662,13 +16598,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000131}, !- Handle + {00000000-0000-0000-0086-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12679,13 +16615,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000132}, !- Handle + {00000000-0000-0000-0086-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12696,13 +16632,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000133}, !- Handle + {00000000-0000-0000-0086-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12713,11 +16649,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000134}, !- Handle + {00000000-0000-0000-0086-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12730,11 +16666,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000135}, !- Handle + {00000000-0000-0000-0086-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12747,13 +16683,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000136}, !- Handle + {00000000-0000-0000-0086-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12764,13 +16700,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000137}, !- Handle + {00000000-0000-0000-0086-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12781,13 +16717,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000138}, !- Handle + {00000000-0000-0000-0086-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12798,13 +16734,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000139}, !- Handle + {00000000-0000-0000-0086-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12815,11 +16751,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000140}, !- Handle + {00000000-0000-0000-0086-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12832,13 +16768,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000141}, !- Handle + {00000000-0000-0000-0086-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12849,13 +16785,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000142}, !- Handle + {00000000-0000-0000-0086-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12866,11 +16802,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000143}, !- Handle + {00000000-0000-0000-0086-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12883,13 +16819,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000144}, !- Handle + {00000000-0000-0000-0086-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12900,13 +16836,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000145}, !- Handle + {00000000-0000-0000-0086-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12917,11 +16853,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000146}, !- Handle + {00000000-0000-0000-0086-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12934,11 +16870,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000147}, !- Handle + {00000000-0000-0000-0086-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12951,13 +16887,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000148}, !- Handle + {00000000-0000-0000-0086-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12968,13 +16904,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000149}, !- Handle + {00000000-0000-0000-0086-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12985,11 +16921,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000150}, !- Handle + {00000000-0000-0000-0086-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13002,11 +16938,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000151}, !- Handle + {00000000-0000-0000-0086-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13019,13 +16955,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000152}, !- Handle + {00000000-0000-0000-0086-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13036,13 +16972,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000153}, !- Handle + {00000000-0000-0000-0086-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13053,13 +16989,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000154}, !- Handle + {00000000-0000-0000-0086-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13070,13 +17006,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000155}, !- Handle + {00000000-0000-0000-0086-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13087,11 +17023,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000156}, !- Handle + {00000000-0000-0000-0086-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13104,11 +17040,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000157}, !- Handle + {00000000-0000-0000-0086-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13121,13 +17057,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000158}, !- Handle + {00000000-0000-0000-0086-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13138,13 +17074,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000159}, !- Handle + {00000000-0000-0000-0086-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13155,13 +17091,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000160}, !- Handle + {00000000-0000-0000-0086-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13172,13 +17108,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000161}, !- Handle + {00000000-0000-0000-0086-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13189,11 +17125,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000162}, !- Handle + {00000000-0000-0000-0086-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13206,13 +17142,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000163}, !- Handle + {00000000-0000-0000-0086-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13223,13 +17159,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000164}, !- Handle + {00000000-0000-0000-0086-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13240,11 +17176,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000165}, !- Handle + {00000000-0000-0000-0086-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13257,11 +17193,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000166}, !- Handle + {00000000-0000-0000-0086-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13274,11 +17210,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000167}, !- Handle + {00000000-0000-0000-0086-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13291,11 +17227,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000168}, !- Handle + {00000000-0000-0000-0086-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13308,11 +17244,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000169}, !- Handle + {00000000-0000-0000-0086-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13325,27 +17261,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0087-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0085-000000000001}, !- Handle - {00000000-0000-0000-0082-000000000044}, !- Surface Name + {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0085-000000000002}, !- Handle - {00000000-0000-0000-0082-000000000001}, !- Surface Name + {00000000-0000-0000-0089-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13354,21 +17290,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000007}, !- Thermostat Name + {00000000-0000-0000-0059-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13377,21 +17313,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000009}, !- Thermostat Name + {00000000-0000-0000-0059-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13400,21 +17336,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000008}, !- Thermostat Name + {00000000-0000-0000-0059-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13423,21 +17359,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000058}, !- Thermostat Name + {00000000-0000-0000-0059-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13446,21 +17382,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000052}, !- Thermostat Name + {00000000-0000-0000-0059-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13469,21 +17405,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000053}, !- Thermostat Name + {00000000-0000-0000-0059-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13492,21 +17428,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000060}, !- Thermostat Name + {00000000-0000-0000-0059-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13515,21 +17451,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000065}, !- Thermostat Name + {00000000-0000-0000-0059-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13538,21 +17474,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000067}, !- Thermostat Name + {00000000-0000-0000-0059-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13561,21 +17497,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000047}, !- Thermostat Name + {00000000-0000-0000-0059-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13584,21 +17520,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000055}, !- Thermostat Name + {00000000-0000-0000-0059-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13607,21 +17543,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000057}, !- Thermostat Name + {00000000-0000-0000-0059-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13630,21 +17566,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000062}, !- Thermostat Name + {00000000-0000-0000-0059-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13653,21 +17589,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000064}, !- Thermostat Name + {00000000-0000-0000-0059-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13676,21 +17612,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000066}, !- Thermostat Name + {00000000-0000-0000-0059-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13699,21 +17635,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000050}, !- Thermostat Name + {00000000-0000-0000-0059-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13722,21 +17658,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000051}, !- Thermostat Name + {00000000-0000-0000-0059-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13745,21 +17681,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000054}, !- Thermostat Name + {00000000-0000-0000-0059-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13768,21 +17704,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000056}, !- Thermostat Name + {00000000-0000-0000-0059-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13791,21 +17727,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000061}, !- Thermostat Name + {00000000-0000-0000-0059-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13814,21 +17750,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000063}, !- Thermostat Name + {00000000-0000-0000-0059-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13837,21 +17773,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000049}, !- Thermostat Name + {00000000-0000-0000-0059-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13860,444 +17796,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000013}, !- Thermostat Name + {00000000-0000-0000-0059-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0091-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000002}, !- Handle + {00000000-0000-0000-0091-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000003}, !- Handle + {00000000-0000-0000-0091-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000004}, !- Handle + {00000000-0000-0000-0091-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000005}, !- Handle + {00000000-0000-0000-0091-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000006}, !- Handle + {00000000-0000-0000-0091-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000007}, !- Handle + {00000000-0000-0000-0091-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000008}, !- Handle + {00000000-0000-0000-0091-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000009}, !- Handle + {00000000-0000-0000-0091-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000010}, !- Handle + {00000000-0000-0000-0091-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000011}, !- Handle + {00000000-0000-0000-0091-000000000011}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000012}, !- Handle + {00000000-0000-0000-0091-000000000012}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000013}, !- Handle + {00000000-0000-0000-0091-000000000013}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000014}, !- Handle + {00000000-0000-0000-0091-000000000014}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000015}, !- Handle + {00000000-0000-0000-0091-000000000015}, !- Handle Space Function Office open plan Thermostat 1, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000016}, !- Handle + {00000000-0000-0000-0091-000000000016}, !- Handle Space Function Office open plan Thermostat 10, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000017}, !- Handle + {00000000-0000-0000-0091-000000000017}, !- Handle Space Function Office open plan Thermostat 11, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000018}, !- Handle + {00000000-0000-0000-0091-000000000018}, !- Handle Space Function Office open plan Thermostat 12, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000019}, !- Handle + {00000000-0000-0000-0091-000000000019}, !- Handle Space Function Office open plan Thermostat 13, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000020}, !- Handle + {00000000-0000-0000-0091-000000000020}, !- Handle Space Function Office open plan Thermostat 14, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000021}, !- Handle + {00000000-0000-0000-0091-000000000021}, !- Handle Space Function Office open plan Thermostat 15, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000022}, !- Handle + {00000000-0000-0000-0091-000000000022}, !- Handle Space Function Office open plan Thermostat 16, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000023}, !- Handle + {00000000-0000-0000-0091-000000000023}, !- Handle Space Function Office open plan Thermostat 17, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000024}, !- Handle + {00000000-0000-0000-0091-000000000024}, !- Handle Space Function Office open plan Thermostat 18, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000025}, !- Handle + {00000000-0000-0000-0091-000000000025}, !- Handle Space Function Office open plan Thermostat 19, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000026}, !- Handle + {00000000-0000-0000-0091-000000000026}, !- Handle Space Function Office open plan Thermostat 2, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000027}, !- Handle + {00000000-0000-0000-0091-000000000027}, !- Handle Space Function Office open plan Thermostat 20, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000028}, !- Handle + {00000000-0000-0000-0091-000000000028}, !- Handle Space Function Office open plan Thermostat 21, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000029}, !- Handle + {00000000-0000-0000-0091-000000000029}, !- Handle Space Function Office open plan Thermostat 22, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000030}, !- Handle + {00000000-0000-0000-0091-000000000030}, !- Handle Space Function Office open plan Thermostat 23, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000031}, !- Handle + {00000000-0000-0000-0091-000000000031}, !- Handle Space Function Office open plan Thermostat 24, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000032}, !- Handle + {00000000-0000-0000-0091-000000000032}, !- Handle Space Function Office open plan Thermostat 25, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000033}, !- Handle + {00000000-0000-0000-0091-000000000033}, !- Handle Space Function Office open plan Thermostat 26, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000034}, !- Handle + {00000000-0000-0000-0091-000000000034}, !- Handle Space Function Office open plan Thermostat 27, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000035}, !- Handle + {00000000-0000-0000-0091-000000000035}, !- Handle Space Function Office open plan Thermostat 28, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000036}, !- Handle + {00000000-0000-0000-0091-000000000036}, !- Handle Space Function Office open plan Thermostat 29, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000037}, !- Handle + {00000000-0000-0000-0091-000000000037}, !- Handle Space Function Office open plan Thermostat 3, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000038}, !- Handle + {00000000-0000-0000-0091-000000000038}, !- Handle Space Function Office open plan Thermostat 30, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000039}, !- Handle + {00000000-0000-0000-0091-000000000039}, !- Handle Space Function Office open plan Thermostat 31, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000040}, !- Handle + {00000000-0000-0000-0091-000000000040}, !- Handle Space Function Office open plan Thermostat 32, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000041}, !- Handle + {00000000-0000-0000-0091-000000000041}, !- Handle Space Function Office open plan Thermostat 33, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000042}, !- Handle + {00000000-0000-0000-0091-000000000042}, !- Handle Space Function Office open plan Thermostat 34, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000043}, !- Handle + {00000000-0000-0000-0091-000000000043}, !- Handle Space Function Office open plan Thermostat 35, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000044}, !- Handle + {00000000-0000-0000-0091-000000000044}, !- Handle Space Function Office open plan Thermostat 36, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000045}, !- Handle + {00000000-0000-0000-0091-000000000045}, !- Handle Space Function Office open plan Thermostat 37, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000046}, !- Handle + {00000000-0000-0000-0091-000000000046}, !- Handle Space Function Office open plan Thermostat 38, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000047}, !- Handle + {00000000-0000-0000-0091-000000000047}, !- Handle Space Function Office open plan Thermostat 39, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000048}, !- Handle + {00000000-0000-0000-0091-000000000048}, !- Handle Space Function Office open plan Thermostat 4, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000049}, !- Handle + {00000000-0000-0000-0091-000000000049}, !- Handle Space Function Office open plan Thermostat 40, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000050}, !- Handle + {00000000-0000-0000-0091-000000000050}, !- Handle Space Function Office open plan Thermostat 41, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000051}, !- Handle + {00000000-0000-0000-0091-000000000051}, !- Handle Space Function Office open plan Thermostat 42, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000052}, !- Handle + {00000000-0000-0000-0091-000000000052}, !- Handle Space Function Office open plan Thermostat 43, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000053}, !- Handle + {00000000-0000-0000-0091-000000000053}, !- Handle Space Function Office open plan Thermostat 44, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000054}, !- Handle + {00000000-0000-0000-0091-000000000054}, !- Handle Space Function Office open plan Thermostat 45, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000055}, !- Handle + {00000000-0000-0000-0091-000000000055}, !- Handle Space Function Office open plan Thermostat 46, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000056}, !- Handle + {00000000-0000-0000-0091-000000000056}, !- Handle Space Function Office open plan Thermostat 47, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000057}, !- Handle + {00000000-0000-0000-0091-000000000057}, !- Handle Space Function Office open plan Thermostat 48, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000058}, !- Handle + {00000000-0000-0000-0091-000000000058}, !- Handle Space Function Office open plan Thermostat 49, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000059}, !- Handle + {00000000-0000-0000-0091-000000000059}, !- Handle Space Function Office open plan Thermostat 5, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000060}, !- Handle + {00000000-0000-0000-0091-000000000060}, !- Handle Space Function Office open plan Thermostat 50, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000061}, !- Handle + {00000000-0000-0000-0091-000000000061}, !- Handle Space Function Office open plan Thermostat 51, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000062}, !- Handle + {00000000-0000-0000-0091-000000000062}, !- Handle Space Function Office open plan Thermostat 52, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000063}, !- Handle + {00000000-0000-0000-0091-000000000063}, !- Handle Space Function Office open plan Thermostat 53, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000064}, !- Handle + {00000000-0000-0000-0091-000000000064}, !- Handle Space Function Office open plan Thermostat 54, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000065}, !- Handle + {00000000-0000-0000-0091-000000000065}, !- Handle Space Function Office open plan Thermostat 55, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000066}, !- Handle + {00000000-0000-0000-0091-000000000066}, !- Handle Space Function Office open plan Thermostat 56, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000067}, !- Handle + {00000000-0000-0000-0091-000000000067}, !- Handle Space Function Office open plan Thermostat 57, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000068}, !- Handle + {00000000-0000-0000-0091-000000000068}, !- Handle Space Function Office open plan Thermostat 6, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000069}, !- Handle + {00000000-0000-0000-0091-000000000069}, !- Handle Space Function Office open plan Thermostat 7, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000070}, !- Handle + {00000000-0000-0000-0091-000000000070}, !- Handle Space Function Office open plan Thermostat 8, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000071}, !- Handle + {00000000-0000-0000-0091-000000000071}, !- Handle Space Function Office open plan Thermostat 9, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000072}, !- Handle + {00000000-0000-0000-0091-000000000072}, !- Handle Space Function Office open plan Thermostat, !- Name - {00000000-0000-0000-0059-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0093-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff, !- Name 4.12098554344306, !- Tank Volume {m3} - {00000000-0000-0000-0059-000000000020}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000020}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -14315,7 +18251,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0059-000000000022}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0063-000000000025}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 8.85353102543354, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -14325,8 +18261,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000155}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000156}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000323}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000324}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -14339,18 +18275,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0091-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle Core_bottom WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000172}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000173}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000340}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000341}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14358,13 +18294,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000002}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Handle Core_mid WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000176}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000177}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000344}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000345}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14372,13 +18308,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000003}, !- Handle + {00000000-0000-0000-0096-000000000003}, !- Handle Core_top WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000180}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000181}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000348}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000349}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14386,13 +18322,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000004}, !- Handle + {00000000-0000-0000-0096-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0017-000000000184}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000185}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000352}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000353}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14400,13 +18336,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000005}, !- Handle + {00000000-0000-0000-0096-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000188}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000189}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000356}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000357}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14414,13 +18350,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000006}, !- Handle + {00000000-0000-0000-0096-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000192}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000193}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000360}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000361}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14428,13 +18364,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000007}, !- Handle + {00000000-0000-0000-0096-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000196}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000197}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000364}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000365}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14442,13 +18378,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000008}, !- Handle + {00000000-0000-0000-0096-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000200}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000201}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000368}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000369}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14456,13 +18392,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000009}, !- Handle + {00000000-0000-0000-0096-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000204}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000205}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000372}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000373}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14470,13 +18406,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000010}, !- Handle + {00000000-0000-0000-0096-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000208}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000209}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000376}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000377}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14484,13 +18420,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000011}, !- Handle + {00000000-0000-0000-0096-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000213}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000380}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000381}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14498,13 +18434,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000012}, !- Handle + {00000000-0000-0000-0096-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000216}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000217}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000384}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000385}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14512,13 +18448,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000013}, !- Handle + {00000000-0000-0000-0096-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000220}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000221}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000388}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000389}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14526,13 +18462,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000014}, !- Handle + {00000000-0000-0000-0096-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000225}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000392}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000393}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14540,13 +18476,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000015}, !- Handle + {00000000-0000-0000-0096-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000228}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000229}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000396}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000397}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14554,13 +18490,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000016}, !- Handle + {00000000-0000-0000-0096-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000232}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000233}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000400}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000401}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14568,13 +18504,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000017}, !- Handle + {00000000-0000-0000-0096-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000236}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000237}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000404}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000405}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14582,13 +18518,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000018}, !- Handle + {00000000-0000-0000-0096-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000240}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000241}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000408}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000409}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14596,13 +18532,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000019}, !- Handle + {00000000-0000-0000-0096-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000244}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000245}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000412}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000413}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14610,314 +18546,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle Core_bottom Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0094-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000002}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000002}, !- Handle + {00000000-0000-0000-0097-000000000002}, !- Handle Core_mid Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0094-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000003}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000003}, !- Handle + {00000000-0000-0000-0097-000000000003}, !- Handle Core_top Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0094-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000004}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000004}, !- Handle + {00000000-0000-0000-0097-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0094-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000005}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000005}, !- Handle + {00000000-0000-0000-0097-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0094-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000006}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000006}, !- Handle + {00000000-0000-0000-0097-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0094-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000007}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000007}, !- Handle + {00000000-0000-0000-0097-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0094-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000008}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000008}, !- Handle + {00000000-0000-0000-0097-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000011}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000009}, !- Handle + {00000000-0000-0000-0097-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000012}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000010}, !- Handle + {00000000-0000-0000-0097-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000013}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000011}, !- Handle + {00000000-0000-0000-0097-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000014}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000012}, !- Handle + {00000000-0000-0000-0097-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000015}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000013}, !- Handle + {00000000-0000-0000-0097-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000016}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000014}, !- Handle + {00000000-0000-0000-0097-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000017}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000015}, !- Handle + {00000000-0000-0000-0097-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000018}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000016}, !- Handle + {00000000-0000-0000-0097-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000019}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000017}, !- Handle + {00000000-0000-0000-0097-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000020}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000018}, !- Handle + {00000000-0000-0000-0097-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000021}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000019}, !- Handle + {00000000-0000-0000-0097-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000022}, !- Space Name - {00000000-0000-0000-0059-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0063-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle Core_bottom 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000002}, !- Handle + {00000000-0000-0000-0098-000000000002}, !- Handle Core_mid 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000003}, !- Handle + {00000000-0000-0000-0098-000000000003}, !- Handle Core_top 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000004}, !- Handle + {00000000-0000-0000-0098-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.87303728009577e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000005}, !- Handle + {00000000-0000-0000-0098-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000006}, !- Handle + {00000000-0000-0000-0098-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000007}, !- Handle + {00000000-0000-0000-0098-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000008}, !- Handle + {00000000-0000-0000-0098-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000009}, !- Handle + {00000000-0000-0000-0098-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000010}, !- Handle + {00000000-0000-0000-0098-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000011}, !- Handle + {00000000-0000-0000-0098-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000012}, !- Handle + {00000000-0000-0000-0098-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000013}, !- Handle + {00000000-0000-0000-0098-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000014}, !- Handle + {00000000-0000-0000-0098-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000015}, !- Handle + {00000000-0000-0000-0098-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000016}, !- Handle + {00000000-0000-0000-0098-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000017}, !- Handle + {00000000-0000-0000-0098-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000018}, !- Handle + {00000000-0000-0000-0098-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000019}, !- Handle + {00000000-0000-0000-0098-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0099-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -14933,62 +18869,188 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0096-000000000002}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Handle SimpleGlazing:U=0.190 SHGC=0.600, !- Name 1.9, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0101-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0102-000000000001}, !- Handle Zone HVAC Baseboard Convective Electric 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0098-000000000002}, !- Handle + {00000000-0000-0000-0102-000000000002}, !- Handle + Zone HVAC Baseboard Convective Electric 10, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000003}, !- Handle + Zone HVAC Baseboard Convective Electric 11, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000004}, !- Handle + Zone HVAC Baseboard Convective Electric 12, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000005}, !- Handle + Zone HVAC Baseboard Convective Electric 13, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000006}, !- Handle + Zone HVAC Baseboard Convective Electric 14, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000007}, !- Handle + Zone HVAC Baseboard Convective Electric 15, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000008}, !- Handle + Zone HVAC Baseboard Convective Electric 16, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000009}, !- Handle + Zone HVAC Baseboard Convective Electric 17, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000010}, !- Handle + Zone HVAC Baseboard Convective Electric 18, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000011}, !- Handle + Zone HVAC Baseboard Convective Electric 19, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000012}, !- Handle Zone HVAC Baseboard Convective Electric 2, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000013}, !- Handle + Zone HVAC Baseboard Convective Electric 20, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000014}, !- Handle + Zone HVAC Baseboard Convective Electric 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000015}, !- Handle + Zone HVAC Baseboard Convective Electric 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000016}, !- Handle + Zone HVAC Baseboard Convective Electric 5, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000017}, !- Handle + Zone HVAC Baseboard Convective Electric 6, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000018}, !- Handle + Zone HVAC Baseboard Convective Electric 7, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000019}, !- Handle + Zone HVAC Baseboard Convective Electric 8, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000020}, !- Handle + Zone HVAC Baseboard Convective Electric 9, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0103-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000001}, !- Thermal Zone + {00000000-0000-0000-0090-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000002}, !- Handle + {00000000-0000-0000-0103-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000002}, !- Thermal Zone + {00000000-0000-0000-0090-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000003}, !- Handle + {00000000-0000-0000-0103-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000003}, !- Thermal Zone + {00000000-0000-0000-0090-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000004}, !- Handle + {00000000-0000-0000-0103-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000004}, !- Thermal Zone + {00000000-0000-0000-0090-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0098-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0102-000000000012}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -15000,119 +19062,299 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000005}, !- Handle + {00000000-0000-0000-0103-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000005}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000005}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000006}, !- Handle + {00000000-0000-0000-0103-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000006}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000006}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000017}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000007}, !- Handle + {00000000-0000-0000-0103-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000007}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000007}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000008}, !- Handle + {00000000-0000-0000-0103-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000008}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000008}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000018}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000009}, !- Handle + {00000000-0000-0000-0103-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000009}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000016}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000010}, !- Handle + {00000000-0000-0000-0103-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000010}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000019}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000011}, !- Handle + {00000000-0000-0000-0103-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000011}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000012}, !- Handle + {00000000-0000-0000-0103-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000012}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000013}, !- Handle + {00000000-0000-0000-0103-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000013}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000014}, !- Handle + {00000000-0000-0000-0103-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000014}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000020}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000015}, !- Handle + {00000000-0000-0000-0103-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000015}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000016}, !- Handle + {00000000-0000-0000-0103-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000016}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000017}, !- Handle + {00000000-0000-0000-0103-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000017}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000009}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000018}, !- Handle + {00000000-0000-0000-0103-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000018}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000010}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000019}, !- Handle + {00000000-0000-0000-0103-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000019}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000019}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000008}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000020}, !- Handle + {00000000-0000-0000-0103-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000020}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000020}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000011}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000021}, !- Handle + {00000000-0000-0000-0103-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000021}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000021}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000022}, !- Handle + {00000000-0000-0000-0103-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000022}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000022}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000023}, !- Handle + {00000000-0000-0000-0103-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000023}, !- Thermal Zone + {00000000-0000-0000-0090-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0098-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0102-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm index 816ecb413d..9500661ba1 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0062-000000000024}, !- Object Name + {00000000-0000-0000-0066-000000000027}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.902183614624489, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0062-000000000025}, !- Object Name + {00000000-0000-0000-0066-000000000031}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.198210559234802, !- Feature Value 1 @@ -32,18 +32,66 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0013-000000000001}; !- Object Name + {00000000-0000-0000-0066-000000000028}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0066-000000000029}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0066-000000000030}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000006}, !- Handle + {00000000-0000-0000-0013-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000007}, !- Handle {00000000-0000-0000-0013-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0062-000000000024}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0066-000000000027}, !- Availability Schedule + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -62,9 +110,75 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name + , !- Controller List Name + {00000000-0000-0000-0066-000000000028}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0020-000000000185}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0020-000000000188}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000187}, !- Demand Side Inlet Node A + {00000000-0000-0000-0020-000000000186}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0066-000000000029}, !- Availability Schedule + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0020-000000000293}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0020-000000000296}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000295}, !- Demand Side Inlet Node A + {00000000-0000-0000-0020-000000000294}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000004}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3, !- Name + , !- Controller List Name + {00000000-0000-0000-0066-000000000030}, !- Availability Schedule + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0020-000000000401}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0020-000000000404}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000403}, !- Demand Side Inlet Node A + {00000000-0000-0000-0020-000000000402}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0062-000000000025}, !- Availability Schedule + {00000000-0000-0000-0066-000000000031}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -89,8 +203,8 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0020-000000000084}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000289}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000290}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000613}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000614}, !- Relief Air Stream Node Name {00000000-0000-0000-0020-000000000083}; !- Return Air Stream Node Name OS:AirLoopHVAC:OutdoorAirSystem, @@ -100,10 +214,43 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0020-000000000166}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000295}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000296}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000619}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000620}, !- Relief Air Stream Node Name {00000000-0000-0000-0020-000000000170}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0025-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0020-000000000204}, !- Mixed Air Node Name + {00000000-0000-0000-0020-000000000625}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000626}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000208}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000004}, !- Handle + Air Loop HVAC Outdoor Air System 4, !- Name + {00000000-0000-0000-0025-000000000004}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0020-000000000312}, !- Mixed Air Node Name + {00000000-0000-0000-0020-000000000631}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000632}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000316}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000005}, !- Handle + Air Loop HVAC Outdoor Air System 5, !- Name + {00000000-0000-0000-0025-000000000005}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0020-000000000420}, !- Mixed Air Node Name + {00000000-0000-0000-0020-000000000637}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000638}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000424}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -116,6 +263,39 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0020-000000000153}, !- Outlet Node Name {00000000-0000-0000-0020-000000000181}; !- Inlet Node Name 1 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0020-000000000190}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000219}, !- Inlet Node Name 1 + {00000000-0000-0000-0020-000000000233}, !- Inlet Node Name 2 + {00000000-0000-0000-0020-000000000247}, !- Inlet Node Name 3 + {00000000-0000-0000-0020-000000000261}, !- Inlet Node Name 4 + {00000000-0000-0000-0020-000000000275}, !- Inlet Node Name 5 + {00000000-0000-0000-0020-000000000289}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000004}, !- Handle + Air Loop HVAC Zone Mixer 4, !- Name + {00000000-0000-0000-0020-000000000298}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000327}, !- Inlet Node Name 1 + {00000000-0000-0000-0020-000000000341}, !- Inlet Node Name 2 + {00000000-0000-0000-0020-000000000355}, !- Inlet Node Name 3 + {00000000-0000-0000-0020-000000000369}, !- Inlet Node Name 4 + {00000000-0000-0000-0020-000000000383}, !- Inlet Node Name 5 + {00000000-0000-0000-0020-000000000397}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000005}, !- Handle + Air Loop HVAC Zone Mixer 5, !- Name + {00000000-0000-0000-0020-000000000406}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000435}, !- Inlet Node Name 1 + {00000000-0000-0000-0020-000000000449}, !- Inlet Node Name 2 + {00000000-0000-0000-0020-000000000463}, !- Inlet Node Name 3 + {00000000-0000-0000-0020-000000000477}, !- Inlet Node Name 4 + {00000000-0000-0000-0020-000000000491}, !- Inlet Node Name 5 + {00000000-0000-0000-0020-000000000505}; !- Inlet Node Name 6 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -128,10 +308,43 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0020-000000000152}, !- Inlet Node Name {00000000-0000-0000-0020-000000000182}; !- Outlet Node Name 1 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0020-000000000189}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000220}, !- Outlet Node Name 1 + {00000000-0000-0000-0020-000000000234}, !- Outlet Node Name 2 + {00000000-0000-0000-0020-000000000248}, !- Outlet Node Name 3 + {00000000-0000-0000-0020-000000000262}, !- Outlet Node Name 4 + {00000000-0000-0000-0020-000000000276}, !- Outlet Node Name 5 + {00000000-0000-0000-0020-000000000290}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000004}, !- Handle + Air Loop HVAC Zone Splitter 4, !- Name + {00000000-0000-0000-0020-000000000297}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000328}, !- Outlet Node Name 1 + {00000000-0000-0000-0020-000000000342}, !- Outlet Node Name 2 + {00000000-0000-0000-0020-000000000356}, !- Outlet Node Name 3 + {00000000-0000-0000-0020-000000000370}, !- Outlet Node Name 4 + {00000000-0000-0000-0020-000000000384}, !- Outlet Node Name 5 + {00000000-0000-0000-0020-000000000398}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000005}, !- Handle + Air Loop HVAC Zone Splitter 5, !- Name + {00000000-0000-0000-0020-000000000405}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000436}, !- Outlet Node Name 1 + {00000000-0000-0000-0020-000000000450}, !- Outlet Node Name 2 + {00000000-0000-0000-0020-000000000464}, !- Outlet Node Name 3 + {00000000-0000-0000-0020-000000000478}, !- Outlet Node Name 4 + {00000000-0000-0000-0020-000000000492}, !- Outlet Node Name 5 + {00000000-0000-0000-0020-000000000506}; !- Outlet Node Name 6 + OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000093}, !- Air Inlet Node Name {00000000-0000-0000-0020-000000000094}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -139,14 +352,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000183}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000002}, !- Reheat Coil Name + {00000000-0000-0000-0018-000000000012}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0020-000000000184}, !- Air Outlet Node Name @@ -157,84 +370,519 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000357}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000005}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000358}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000371}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000372}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000385}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000386}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000399}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000400}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000437}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000010}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000438}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000451}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000011}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000452}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000006}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000008}, !- Handle + Air Terminal Single Duct VAV Reheat 16, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000465}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000013}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000466}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:Boiler:HotWater, - {00000000-0000-0000-0010-000000000001}, !- Handle - Primary Boiler 319kBtu/hr 0.83 Thermal Eff, !- Name - NaturalGas, !- Fuel Type - 93364.9531050386, !- Nominal Capacity {W} - 0.83, !- Nominal Thermal Efficiency - , !- Efficiency Curve Temperature Evaluation Variable - {00000000-0000-0000-0029-000000000001}, !- Normalized Boiler Efficiency Curve Name - , !- Design Water Flow Rate {m3/s} - , !- Minimum Part Load Ratio - , !- Maximum Part Load Ratio - , !- Optimum Part Load Ratio - {00000000-0000-0000-0020-000000000058}, !- Boiler Water Inlet Node Name - {00000000-0000-0000-0020-000000000059}, !- Boiler Water Outlet Node Name - 99, !- Water Outlet Upper Temperature Limit {C} - ConstantFlow, !- Boiler Flow Mode - 0, !- On Cycle Parasitic Electric Load {W} - 0, !- Off Cycle Parasitic Fuel Load {W} - 1, !- Sizing Factor - General; !- End-Use Subcategory +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000009}, !- Handle + Air Terminal Single Duct VAV Reheat 17, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000479}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000014}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000480}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:Boiler:HotWater, - {00000000-0000-0000-0010-000000000002}, !- Handle - Secondary Boiler 0kBtu/hr 0.85 AFUE, !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000010}, !- Handle + Air Terminal Single Duct VAV Reheat 18, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000493}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000015}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000494}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000011}, !- Handle + Air Terminal Single Duct VAV Reheat 19, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000507}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000016}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000508}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000221}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000018}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000222}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000235}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000019}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000236}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000249}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000020}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000250}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000263}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000021}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000264}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000016}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000277}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000022}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000278}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000017}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000291}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000023}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000292}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000018}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000329}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000003}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000330}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000019}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000343}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000344}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0052-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0052-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0052-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000004}, !- Handle + Availability Manager Night Cycle 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0052-000000000013}, !- Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000014}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000015}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000005}, !- Handle + Availability Manager Night Cycle 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0052-000000000017}, !- Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000018}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000019}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name + {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name + {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000007}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000008}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000009}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:Boiler:HotWater, + {00000000-0000-0000-0010-000000000001}, !- Handle + Primary Boiler 10431kBtu/hr 0.833 Combustion Eff, !- Name + NaturalGas, !- Fuel Type + 3056921.02111873, !- Nominal Capacity {W} + 0.826, !- Nominal Thermal Efficiency + , !- Efficiency Curve Temperature Evaluation Variable + {00000000-0000-0000-0029-000000000001}, !- Normalized Boiler Efficiency Curve Name + , !- Design Water Flow Rate {m3/s} + 0.25, !- Minimum Part Load Ratio + , !- Maximum Part Load Ratio + , !- Optimum Part Load Ratio + {00000000-0000-0000-0020-000000000058}, !- Boiler Water Inlet Node Name + {00000000-0000-0000-0020-000000000059}, !- Boiler Water Outlet Node Name + 99, !- Water Outlet Upper Temperature Limit {C} + LeavingSetpointModulated, !- Boiler Flow Mode + 0, !- On Cycle Parasitic Electric Load {W} + 0, !- Off Cycle Parasitic Fuel Load {W} + 1, !- Sizing Factor + General; !- End-Use Subcategory + +OS:Boiler:HotWater, + {00000000-0000-0000-0010-000000000002}, !- Handle + Secondary Boiler 0kBtu/hr 0.85 AFUE, !- Name NaturalGas, !- Fuel Type 0.001, !- Nominal Capacity {W} 0.85, !- Nominal Thermal Efficiency @@ -277,7 +925,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000023}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000023}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -287,7 +935,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -297,7 +945,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -307,14 +955,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0013-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton, !- Name - 16349.4011529819, !- Reference Capacity {W} - 4.50320102432778, !- Reference COP {W/W} + Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton, !- Name + 1976208.45618191, !- Reference Capacity {W} + 5.67258064516129, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -356,9 +1004,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0028-000000000009}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0030-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0028-000000000011}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0030-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -393,8 +1041,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0015-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 111kBtu/hr 9.26EER, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 110kBtu/hr 9.26EER, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.22027057931225, !- Rated COP {W/W} @@ -429,7 +1077,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0016-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -444,30 +1092,84 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Heating:Gas, - {00000000-0000-0000-0017-000000000001}, !- Handle - Coil Heating Gas 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.81, !- Gas Burner Efficiency - AutoSize, !- Nominal Capacity {W} - {00000000-0000-0000-0020-000000000082}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000079}, !- Air Outlet Node Name - , !- Temperature Setpoint Node Name - 0, !- On Cycle Parasitic Electric Load {W} - {00000000-0000-0000-0029-000000000004}, !- Part Load Fraction Correlation Curve Name - 0; !- Off Cycle Parasitic Gas Load {W} +OS:Coil:Cooling:Water, + {00000000-0000-0000-0016-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0020-000000000196}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000197}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000205}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000202}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000001}, !- Handle - Coil Heating Water 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000155}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000156}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000165}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000162}, !- Air Outlet Node Name - , !- Performance Input Method +OS:Coil:Cooling:Water, + {00000000-0000-0000-0016-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0020-000000000304}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000305}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000313}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000310}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0016-000000000004}, !- Handle + Coil Cooling Water 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0020-000000000412}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000413}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000421}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000418}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Heating:Gas, + {00000000-0000-0000-0017-000000000001}, !- Handle + Coil Heating Gas 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.81, !- Gas Burner Efficiency + AutoSize, !- Nominal Capacity {W} + {00000000-0000-0000-0020-000000000082}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000079}, !- Air Outlet Node Name + , !- Temperature Setpoint Node Name + 0, !- On Cycle Parasitic Electric Load {W} + {00000000-0000-0000-0029-000000000004}, !- Part Load Fraction Correlation Curve Name + 0; !- Off Cycle Parasitic Gas Load {W} + +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000001}, !- Handle + Coil Heating Water 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000155}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000156}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000165}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000162}, !- Air Outlet Node Name + , !- Performance Input Method , !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} @@ -477,450 +1179,1062 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0018-000000000002}, !- Handle - Coil Heating Water 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + Coil Heating Water 10, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000172}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000173}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000300}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000301}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000311}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000308}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000003}, !- Handle + Coil Heating Water 11, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000318}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000319}, !- Water Outlet Node Name , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 11552.5978088379, !- Rated Capacity {W} + 476993.916320801, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} , !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000001}, !- Handle - Coil Heating Water Baseboard 1, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000004}, !- Handle + Coil Heating Water 12, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000086}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000087}; !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000332}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000333}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 27858.6330413818, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000002}, !- Handle - Coil Heating Water Baseboard 2, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000005}, !- Handle + Coil Heating Water 13, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000177}; !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000346}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000347}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 233619.543457031, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000001}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000006}, !- Handle + Coil Heating Water 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000360}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000361}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 200906.330108643, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000002}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000007}, !- Handle + Coil Heating Water 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000374}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000375}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 101947.906494141, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000003}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000008}, !- Handle + Coil Heating Water 16, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000388}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000389}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 214018.382263184, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000004}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000009}, !- Handle + Coil Heating Water 17, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000408}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000409}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000419}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000416}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000005}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000010}, !- Handle + Coil Heating Water 18, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000426}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000427}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 48369.4622039795, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000006}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000011}, !- Handle + Coil Heating Water 19, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000440}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000441}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 2832.54597187042, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000007}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000012}, !- Handle + Coil Heating Water 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000172}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000173}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 6760.44130325317, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000008}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000013}, !- Handle + Coil Heating Water 20, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000454}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000455}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 23149.9091148376, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000009}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000014}, !- Handle + Coil Heating Water 21, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000468}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000469}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 19546.7582702637, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000010}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000011}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000012}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000015}, !- Handle + Coil Heating Water 22, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000482}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000483}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 11441.4848327637, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000013}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000016}, !- Handle + Coil Heating Water 23, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000496}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000497}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 21530.0471305847, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000014}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000017}, !- Handle + Coil Heating Water 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000192}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000193}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000203}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000200}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000015}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000018}, !- Handle + Coil Heating Water 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000210}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000211}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 30445.2567100525, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000016}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000019}, !- Handle + Coil Heating Water 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000224}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000225}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 2136.74865961075, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000017}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000020}, !- Handle + Coil Heating Water 6, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000238}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000239}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 16368.2993888855, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000018}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000021}, !- Handle + Coil Heating Water 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000252}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000253}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 14229.7093391418, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000019}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000022}, !- Handle + Coil Heating Water 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000266}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000267}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 6995.25539875031, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000020}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000023}, !- Handle + Coil Heating Water 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000280}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000281}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 15987.6720428467, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000021}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000001}, !- Handle + Coil Heating Water Baseboard 1, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000086}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000087}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000022}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000002}, !- Handle + Coil Heating Water Baseboard 10, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000336}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000337}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000023}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000003}, !- Handle + Coil Heating Water Baseboard 11, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000350}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000351}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000024}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000013}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000004}, !- Handle + Coil Heating Water Baseboard 12, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000364}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000365}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000025}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000003}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000005}, !- Handle + Coil Heating Water Baseboard 13, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000378}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000379}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000026}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000025}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000006}, !- Handle + Coil Heating Water Baseboard 14, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000392}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000393}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000027}, !- Handle - {00000000-0000-0000-0090-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000005}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000007}, !- Handle + Coil Heating Water Baseboard 15, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000430}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000431}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000008}, !- Handle + Coil Heating Water Baseboard 16, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000444}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000445}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000009}, !- Handle + Coil Heating Water Baseboard 17, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000458}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000459}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000010}, !- Handle + Coil Heating Water Baseboard 18, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000472}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000473}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000011}, !- Handle + Coil Heating Water Baseboard 19, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000486}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000487}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000012}, !- Handle + Coil Heating Water Baseboard 2, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000177}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000013}, !- Handle + Coil Heating Water Baseboard 20, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000500}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000501}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000014}, !- Handle + Coil Heating Water Baseboard 3, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000214}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000215}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000015}, !- Handle + Coil Heating Water Baseboard 4, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000228}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000229}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000016}, !- Handle + Coil Heating Water Baseboard 5, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000242}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000243}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000017}, !- Handle + Coil Heating Water Baseboard 6, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000256}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000257}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000018}, !- Handle + Coil Heating Water Baseboard 7, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000270}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000271}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000019}, !- Handle + Coil Heating Water Baseboard 8, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000284}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000285}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000020}, !- Handle + Coil Heating Water Baseboard 9, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000322}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000323}; !- Water Outlet Node Name OS:Connection, - {00000000-0000-0000-0020-000000000028}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- Source Object + {00000000-0000-0000-0020-000000000001}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000019}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000029}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- Source Object + {00000000-0000-0000-0020-000000000002}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000020}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000030}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- Source Object + {00000000-0000-0000-0020-000000000003}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000008}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000031}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- Source Object + {00000000-0000-0000-0020-000000000004}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000009}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000032}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- Source Object + {00000000-0000-0000-0020-000000000005}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000021}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000033}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- Source Object + {00000000-0000-0000-0020-000000000006}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000014}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000034}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- Source Object + {00000000-0000-0000-0020-000000000007}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000022}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000035}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- Source Object + {00000000-0000-0000-0020-000000000008}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000015}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000036}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- Source Object + {00000000-0000-0000-0020-000000000009}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000007}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000037}, !- Handle - {00000000-0000-0000-0090-000000000002}, !- Source Object + {00000000-0000-0000-0020-000000000010}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000004}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000038}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- Source Object + {00000000-0000-0000-0020-000000000011}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000010}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000039}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- Source Object + {00000000-0000-0000-0020-000000000012}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000023}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000040}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- Source Object + {00000000-0000-0000-0020-000000000013}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000016}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000041}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- Source Object + {00000000-0000-0000-0020-000000000014}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000024}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000042}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- Source Object + {00000000-0000-0000-0020-000000000015}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000017}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000043}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- Source Object + {00000000-0000-0000-0020-000000000016}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000011}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000044}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- Source Object + {00000000-0000-0000-0020-000000000017}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000018}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000045}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- Source Object + {00000000-0000-0000-0020-000000000018}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000012}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000046}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- Source Object + {00000000-0000-0000-0020-000000000019}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000133}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000047}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0049-000000000070}, !- Target Object + {00000000-0000-0000-0020-000000000020}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000048}, !- Handle - {00000000-0000-0000-0022-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000116}, !- Target Object + {00000000-0000-0000-0020-000000000021}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000049}, !- Handle - {00000000-0000-0000-0049-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000003}, !- Target Object - 15; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000050}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000068}, !- Target Object + {00000000-0000-0000-0020-000000000022}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000051}, !- Handle - {00000000-0000-0000-0049-000000000068}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0022-000000000002}, !- Target Object + {00000000-0000-0000-0020-000000000023}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000052}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000043}, !- Target Object + {00000000-0000-0000-0020-000000000024}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000053}, !- Handle - {00000000-0000-0000-0021-000000000002}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000069}, !- Target Object + {00000000-0000-0000-0020-000000000025}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000054}, !- Handle - {00000000-0000-0000-0049-000000000069}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000003}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0020-000000000026}, !- Handle + {00000000-0000-0000-0094-000000000022}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000043}, !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000055}, !- Handle - {00000000-0000-0000-0049-000000000070}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000001}, !- Target Object + {00000000-0000-0000-0020-000000000027}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000056}, !- Handle - {00000000-0000-0000-0057-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000122}, !- Target Object + {00000000-0000-0000-0020-000000000028}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000029}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000033}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000030}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000031}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000011}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000032}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000035}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000033}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000021}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000034}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000035}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000023}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000036}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000037}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000038}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000039}, !- Handle + {00000000-0000-0000-0094-000000000020}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000039}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000040}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000025}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000041}, !- Handle + {00000000-0000-0000-0094-000000000021}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000041}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000042}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000027}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000043}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000015}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000044}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000029}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000045}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000017}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000046}, !- Handle + {00000000-0000-0000-0094-000000000023}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000280}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000047}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0053-000000000214}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000048}, !- Handle + {00000000-0000-0000-0022-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000260}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000049}, !- Handle + {00000000-0000-0000-0053-000000000215}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000003}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000050}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000212}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000051}, !- Handle + {00000000-0000-0000-0053-000000000212}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0022-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000052}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000151}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000053}, !- Handle + {00000000-0000-0000-0021-000000000002}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000213}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000054}, !- Handle + {00000000-0000-0000-0053-000000000213}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000003}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000055}, !- Handle + {00000000-0000-0000-0053-000000000214}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0061-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000056}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000266}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000057}, !- Handle - {00000000-0000-0000-0049-000000000122}, !- Source Object + {00000000-0000-0000-0053-000000000266}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000058}, !- Handle - {00000000-0000-0000-0049-000000000116}, !- Source Object + {00000000-0000-0000-0053-000000000260}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000001}, !- Target Object 11; !- Inlet Port @@ -929,12 +2243,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000059}, !- Handle {00000000-0000-0000-0010-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000117}, !- Target Object + {00000000-0000-0000-0053-000000000261}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000060}, !- Handle - {00000000-0000-0000-0049-000000000117}, !- Source Object + {00000000-0000-0000-0053-000000000261}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 3; !- Inlet Port @@ -943,12 +2257,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000061}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000125}, !- Target Object + {00000000-0000-0000-0053-000000000269}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000062}, !- Handle - {00000000-0000-0000-0049-000000000125}, !- Source Object + {00000000-0000-0000-0053-000000000269}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000002}, !- Target Object 11; !- Inlet Port @@ -957,12 +2271,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000063}, !- Handle {00000000-0000-0000-0010-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000126}, !- Target Object + {00000000-0000-0000-0053-000000000270}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000064}, !- Handle - {00000000-0000-0000-0049-000000000126}, !- Source Object + {00000000-0000-0000-0053-000000000270}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 4; !- Inlet Port @@ -971,26 +2285,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000065}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000101}, !- Target Object + {00000000-0000-0000-0053-000000000245}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000066}, !- Handle - {00000000-0000-0000-0049-000000000101}, !- Source Object + {00000000-0000-0000-0053-000000000245}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000001}, !- Target Object + {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000067}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Source Object + {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000102}, !- Target Object + {00000000-0000-0000-0053-000000000246}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000068}, !- Handle - {00000000-0000-0000-0049-000000000102}, !- Source Object + {00000000-0000-0000-0053-000000000246}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 5; !- Inlet Port @@ -999,33 +2313,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000069}, !- Handle {00000000-0000-0000-0021-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000104}, !- Target Object + {00000000-0000-0000-0053-000000000248}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000070}, !- Handle - {00000000-0000-0000-0049-000000000104}, !- Source Object + {00000000-0000-0000-0053-000000000248}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000003}, !- Target Object + {00000000-0000-0000-0057-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000071}, !- Handle - {00000000-0000-0000-0053-000000000003}, !- Source Object + {00000000-0000-0000-0057-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000071}, !- Target Object + {00000000-0000-0000-0053-000000000215}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000072}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000139}, !- Target Object + {00000000-0000-0000-0053-000000000286}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000073}, !- Handle - {00000000-0000-0000-0049-000000000140}, !- Source Object + {00000000-0000-0000-0053-000000000287}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -1034,19 +2348,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000074}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000134}, !- Target Object + {00000000-0000-0000-0053-000000000281}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000075}, !- Handle - {00000000-0000-0000-0049-000000000135}, !- Source Object + {00000000-0000-0000-0053-000000000282}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000076}, !- Handle - {00000000-0000-0000-0049-000000000134}, !- Source Object + {00000000-0000-0000-0053-000000000281}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -1055,47 +2369,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000077}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000135}, !- Target Object + {00000000-0000-0000-0053-000000000282}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000078}, !- Handle - {00000000-0000-0000-0039-000000000001}, !- Source Object + {00000000-0000-0000-0043-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000140}, !- Target Object + {00000000-0000-0000-0053-000000000287}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000079}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000037}, !- Target Object + {00000000-0000-0000-0053-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000080}, !- Handle - {00000000-0000-0000-0049-000000000037}, !- Source Object + {00000000-0000-0000-0053-000000000100}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000001}, !- Target Object + {00000000-0000-0000-0043-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000081}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0049-000000000047}, !- Target Object + {00000000-0000-0000-0053-000000000191}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000082}, !- Handle - {00000000-0000-0000-0049-000000000047}, !- Source Object + {00000000-0000-0000-0053-000000000191}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000083}, !- Handle - {00000000-0000-0000-0049-000000000139}, !- Source Object + {00000000-0000-0000-0053-000000000286}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -1104,19 +2418,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000084}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000136}, !- Target Object + {00000000-0000-0000-0053-000000000283}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000085}, !- Handle - {00000000-0000-0000-0049-000000000136}, !- Source Object + {00000000-0000-0000-0053-000000000283}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000086}, !- Handle - {00000000-0000-0000-0049-000000000043}, !- Source Object + {00000000-0000-0000-0053-000000000151}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 9; !- Inlet Port @@ -1125,33 +2439,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000087}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0049-000000000044}, !- Target Object + {00000000-0000-0000-0053-000000000152}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000088}, !- Handle - {00000000-0000-0000-0049-000000000044}, !- Source Object + {00000000-0000-0000-0053-000000000152}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000089}, !- Handle - {00000000-0000-0000-0049-000000000027}, !- Source Object + {00000000-0000-0000-0053-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000067}, !- Target Object + {00000000-0000-0000-0059-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000090}, !- Handle - {00000000-0000-0000-0055-000000000069}, !- Source Object + {00000000-0000-0000-0059-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000132}, !- Target Object + {00000000-0000-0000-0053-000000000279}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000091}, !- Handle - {00000000-0000-0000-0049-000000000132}, !- Source Object + {00000000-0000-0000-0053-000000000279}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -1160,12 +2474,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000092}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000026}, !- Target Object + {00000000-0000-0000-0053-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000093}, !- Handle - {00000000-0000-0000-0049-000000000026}, !- Source Object + {00000000-0000-0000-0053-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -1174,40 +2488,40 @@ OS:Connection, {00000000-0000-0000-0020-000000000094}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000027}, !- Target Object + {00000000-0000-0000-0053-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000095}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Source Object + {00000000-0000-0000-0058-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000032}, !- Target Object + {00000000-0000-0000-0053-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000096}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000120}, !- Target Object + {00000000-0000-0000-0053-000000000264}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000097}, !- Handle - {00000000-0000-0000-0049-000000000033}, !- Source Object + {00000000-0000-0000-0053-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000001}, !- Target Object + {00000000-0000-0000-0058-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000098}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Source Object + {00000000-0000-0000-0058-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000030}, !- Target Object + {00000000-0000-0000-0053-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000099}, !- Handle - {00000000-0000-0000-0049-000000000030}, !- Source Object + {00000000-0000-0000-0053-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000004}, !- Target Object 2; !- Inlet Port @@ -1216,47 +2530,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000100}, !- Handle {00000000-0000-0000-0022-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000034}, !- Target Object + {00000000-0000-0000-0053-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000101}, !- Handle {00000000-0000-0000-0021-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000031}, !- Target Object + {00000000-0000-0000-0053-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000102}, !- Handle - {00000000-0000-0000-0049-000000000031}, !- Source Object + {00000000-0000-0000-0053-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000001}, !- Target Object + {00000000-0000-0000-0058-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000103}, !- Handle - {00000000-0000-0000-0049-000000000032}, !- Source Object + {00000000-0000-0000-0053-000000000086}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000002}, !- Target Object + {00000000-0000-0000-0061-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000104}, !- Handle - {00000000-0000-0000-0057-000000000002}, !- Source Object + {00000000-0000-0000-0061-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000123}, !- Target Object + {00000000-0000-0000-0053-000000000267}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000105}, !- Handle - {00000000-0000-0000-0049-000000000123}, !- Source Object + {00000000-0000-0000-0053-000000000267}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000106}, !- Handle - {00000000-0000-0000-0049-000000000120}, !- Source Object + {00000000-0000-0000-0053-000000000264}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 15; !- Inlet Port @@ -1265,12 +2579,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000107}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000121}, !- Target Object + {00000000-0000-0000-0053-000000000265}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000108}, !- Handle - {00000000-0000-0000-0049-000000000121}, !- Source Object + {00000000-0000-0000-0053-000000000265}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 3; !- Inlet Port @@ -1279,12 +2593,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000109}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000129}, !- Target Object + {00000000-0000-0000-0053-000000000273}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000110}, !- Handle - {00000000-0000-0000-0049-000000000129}, !- Source Object + {00000000-0000-0000-0053-000000000273}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 15; !- Inlet Port @@ -1293,12 +2607,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000111}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000130}, !- Target Object + {00000000-0000-0000-0053-000000000274}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000112}, !- Handle - {00000000-0000-0000-0049-000000000130}, !- Source Object + {00000000-0000-0000-0053-000000000274}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 4; !- Inlet Port @@ -1307,26 +2621,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000113}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000105}, !- Target Object + {00000000-0000-0000-0053-000000000249}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000114}, !- Handle - {00000000-0000-0000-0049-000000000105}, !- Source Object + {00000000-0000-0000-0053-000000000249}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000004}, !- Target Object + {00000000-0000-0000-0057-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000115}, !- Handle - {00000000-0000-0000-0053-000000000004}, !- Source Object + {00000000-0000-0000-0057-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000106}, !- Target Object + {00000000-0000-0000-0053-000000000250}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000116}, !- Handle - {00000000-0000-0000-0049-000000000106}, !- Source Object + {00000000-0000-0000-0053-000000000250}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 5; !- Inlet Port @@ -1335,54 +2649,54 @@ OS:Connection, {00000000-0000-0000-0020-000000000117}, !- Handle {00000000-0000-0000-0021-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000107}, !- Target Object + {00000000-0000-0000-0053-000000000251}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000118}, !- Handle - {00000000-0000-0000-0049-000000000107}, !- Source Object + {00000000-0000-0000-0053-000000000251}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000005}, !- Target Object + {00000000-0000-0000-0057-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000119}, !- Handle - {00000000-0000-0000-0053-000000000005}, !- Source Object + {00000000-0000-0000-0057-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000033}, !- Target Object + {00000000-0000-0000-0053-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000120}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Source Object + {00000000-0000-0000-0058-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000050}, !- Target Object + {00000000-0000-0000-0053-000000000194}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000121}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000052}, !- Target Object + {00000000-0000-0000-0053-000000000196}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000122}, !- Handle - {00000000-0000-0000-0049-000000000051}, !- Source Object + {00000000-0000-0000-0053-000000000195}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000002}, !- Target Object + {00000000-0000-0000-0058-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000123}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Source Object + {00000000-0000-0000-0058-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000048}, !- Target Object + {00000000-0000-0000-0053-000000000192}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000124}, !- Handle - {00000000-0000-0000-0049-000000000048}, !- Source Object + {00000000-0000-0000-0053-000000000192}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000006}, !- Target Object 2; !- Inlet Port @@ -1391,47 +2705,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000125}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000118}, !- Target Object + {00000000-0000-0000-0053-000000000262}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000126}, !- Handle {00000000-0000-0000-0021-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000049}, !- Target Object + {00000000-0000-0000-0053-000000000193}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000127}, !- Handle - {00000000-0000-0000-0049-000000000049}, !- Source Object + {00000000-0000-0000-0053-000000000193}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000002}, !- Target Object + {00000000-0000-0000-0058-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000128}, !- Handle - {00000000-0000-0000-0049-000000000050}, !- Source Object + {00000000-0000-0000-0053-000000000194}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000003}, !- Target Object + {00000000-0000-0000-0061-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000129}, !- Handle - {00000000-0000-0000-0057-000000000003}, !- Source Object + {00000000-0000-0000-0061-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000124}, !- Target Object + {00000000-0000-0000-0053-000000000268}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000130}, !- Handle - {00000000-0000-0000-0049-000000000124}, !- Source Object + {00000000-0000-0000-0053-000000000268}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000131}, !- Handle - {00000000-0000-0000-0049-000000000052}, !- Source Object + {00000000-0000-0000-0053-000000000196}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0027-000000000001}, !- Target Object 2; !- Inlet Port @@ -1440,12 +2754,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000132}, !- Handle {00000000-0000-0000-0027-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000053}, !- Target Object + {00000000-0000-0000-0053-000000000197}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000133}, !- Handle - {00000000-0000-0000-0049-000000000053}, !- Source Object + {00000000-0000-0000-0053-000000000197}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 3; !- Inlet Port @@ -1454,26 +2768,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000134}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000108}, !- Target Object + {00000000-0000-0000-0053-000000000252}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000135}, !- Handle - {00000000-0000-0000-0049-000000000108}, !- Source Object + {00000000-0000-0000-0053-000000000252}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000006}, !- Target Object + {00000000-0000-0000-0057-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000136}, !- Handle - {00000000-0000-0000-0053-000000000006}, !- Source Object + {00000000-0000-0000-0057-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000109}, !- Target Object + {00000000-0000-0000-0053-000000000253}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000137}, !- Handle - {00000000-0000-0000-0049-000000000109}, !- Source Object + {00000000-0000-0000-0053-000000000253}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 4; !- Inlet Port @@ -1482,26 +2796,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000138}, !- Handle {00000000-0000-0000-0021-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000110}, !- Target Object + {00000000-0000-0000-0053-000000000254}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000139}, !- Handle - {00000000-0000-0000-0049-000000000110}, !- Source Object + {00000000-0000-0000-0053-000000000254}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000007}, !- Target Object + {00000000-0000-0000-0057-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000140}, !- Handle - {00000000-0000-0000-0053-000000000007}, !- Source Object + {00000000-0000-0000-0057-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000051}, !- Target Object + {00000000-0000-0000-0053-000000000195}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000141}, !- Handle - {00000000-0000-0000-0049-000000000118}, !- Source Object + {00000000-0000-0000-0053-000000000262}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 17; !- Inlet Port @@ -1510,12 +2824,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000142}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0049-000000000119}, !- Target Object + {00000000-0000-0000-0053-000000000263}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000143}, !- Handle - {00000000-0000-0000-0049-000000000119}, !- Source Object + {00000000-0000-0000-0053-000000000263}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 3; !- Inlet Port @@ -1524,12 +2838,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000144}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000127}, !- Target Object + {00000000-0000-0000-0053-000000000271}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000145}, !- Handle - {00000000-0000-0000-0049-000000000127}, !- Source Object + {00000000-0000-0000-0053-000000000271}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 17; !- Inlet Port @@ -1538,47 +2852,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000146}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0049-000000000128}, !- Target Object + {00000000-0000-0000-0053-000000000272}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000147}, !- Handle - {00000000-0000-0000-0049-000000000128}, !- Source Object + {00000000-0000-0000-0053-000000000272}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000148}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000148}, !- Target Object + {00000000-0000-0000-0053-000000000316}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000149}, !- Handle - {00000000-0000-0000-0049-000000000149}, !- Source Object + {00000000-0000-0000-0053-000000000317}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000150}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000143}, !- Target Object + {00000000-0000-0000-0053-000000000311}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000151}, !- Handle - {00000000-0000-0000-0049-000000000144}, !- Source Object + {00000000-0000-0000-0053-000000000312}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000152}, !- Handle - {00000000-0000-0000-0049-000000000143}, !- Source Object + {00000000-0000-0000-0053-000000000311}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -1587,19 +2901,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000153}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000144}, !- Target Object + {00000000-0000-0000-0053-000000000312}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000154}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000038}, !- Target Object + {00000000-0000-0000-0053-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000155}, !- Handle - {00000000-0000-0000-0049-000000000038}, !- Source Object + {00000000-0000-0000-0053-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1608,19 +2922,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000156}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000040}, !- Target Object + {00000000-0000-0000-0053-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000157}, !- Handle - {00000000-0000-0000-0049-000000000040}, !- Source Object + {00000000-0000-0000-0053-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000158}, !- Handle - {00000000-0000-0000-0049-000000000034}, !- Source Object + {00000000-0000-0000-0053-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 10; !- Inlet Port @@ -1629,47 +2943,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000159}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000036}, !- Target Object + {00000000-0000-0000-0053-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000160}, !- Handle - {00000000-0000-0000-0049-000000000036}, !- Source Object + {00000000-0000-0000-0053-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000161}, !- Handle - {00000000-0000-0000-0040-000000000002}, !- Source Object + {00000000-0000-0000-0044-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000149}, !- Target Object + {00000000-0000-0000-0053-000000000317}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000162}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0049-000000000039}, !- Target Object + {00000000-0000-0000-0053-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000163}, !- Handle - {00000000-0000-0000-0049-000000000039}, !- Source Object + {00000000-0000-0000-0053-000000000102}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000002}, !- Target Object + {00000000-0000-0000-0044-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000164}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0049-000000000035}, !- Target Object + {00000000-0000-0000-0053-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000165}, !- Handle - {00000000-0000-0000-0049-000000000035}, !- Source Object + {00000000-0000-0000-0053-000000000089}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 7; !- Inlet Port @@ -1678,33 +2992,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000166}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000145}, !- Target Object + {00000000-0000-0000-0053-000000000313}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000167}, !- Handle - {00000000-0000-0000-0049-000000000145}, !- Source Object + {00000000-0000-0000-0053-000000000313}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000168}, !- Handle - {00000000-0000-0000-0049-000000000148}, !- Source Object + {00000000-0000-0000-0053-000000000316}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000001}, !- Target Object + {00000000-0000-0000-0044-000000000004}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000169}, !- Handle - {00000000-0000-0000-0040-000000000001}, !- Source Object + {00000000-0000-0000-0044-000000000004}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000131}, !- Target Object + {00000000-0000-0000-0053-000000000278}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000170}, !- Handle - {00000000-0000-0000-0049-000000000131}, !- Source Object + {00000000-0000-0000-0053-000000000278}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port @@ -1713,26 +3027,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000171}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000041}, !- Target Object + {00000000-0000-0000-0053-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000172}, !- Handle - {00000000-0000-0000-0049-000000000041}, !- Source Object + {00000000-0000-0000-0053-000000000126}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object + {00000000-0000-0000-0018-000000000012}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000173}, !- Handle - {00000000-0000-0000-0018-000000000002}, !- Source Object + {00000000-0000-0000-0018-000000000012}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000042}, !- Target Object + {00000000-0000-0000-0053-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000174}, !- Handle - {00000000-0000-0000-0049-000000000042}, !- Source Object + {00000000-0000-0000-0053-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 5; !- Inlet Port @@ -1741,47 +3055,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000175}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000045}, !- Target Object + {00000000-0000-0000-0053-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000176}, !- Handle - {00000000-0000-0000-0049-000000000045}, !- Source Object + {00000000-0000-0000-0053-000000000173}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000002}, !- Target Object + {00000000-0000-0000-0019-000000000012}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000177}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object + {00000000-0000-0000-0019-000000000012}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0049-000000000046}, !- Target Object + {00000000-0000-0000-0053-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000178}, !- Handle - {00000000-0000-0000-0049-000000000046}, !- Source Object + {00000000-0000-0000-0053-000000000174}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000179}, !- Handle - {00000000-0000-0000-0049-000000000029}, !- Source Object + {00000000-0000-0000-0053-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000037}, !- Target Object + {00000000-0000-0000-0059-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000180}, !- Handle - {00000000-0000-0000-0055-000000000039}, !- Source Object + {00000000-0000-0000-0059-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000006}, !- Target Object + {00000000-0000-0000-0053-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000181}, !- Handle - {00000000-0000-0000-0049-000000000006}, !- Source Object + {00000000-0000-0000-0053-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -1790,12 +3104,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000182}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000028}, !- Target Object + {00000000-0000-0000-0053-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000183}, !- Handle - {00000000-0000-0000-0049-000000000028}, !- Source Object + {00000000-0000-0000-0053-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -1804,3375 +3118,7773 @@ OS:Connection, {00000000-0000-0000-0020-000000000184}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000029}, !- Target Object + {00000000-0000-0000-0053-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000185}, !- Handle - {00000000-0000-0000-0054-000000000004}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0049-000000000075}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0053-000000000295}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000186}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object + {00000000-0000-0000-0053-000000000296}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000187}, !- Handle - {00000000-0000-0000-0049-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000004}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000290}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000188}, !- Handle - {00000000-0000-0000-0054-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000291}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000189}, !- Handle - {00000000-0000-0000-0049-000000000073}, !- Source Object + {00000000-0000-0000-0053-000000000290}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0022-000000000008}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000190}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000113}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000291}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000191}, !- Handle - {00000000-0000-0000-0049-000000000074}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000004}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0022-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000136}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000192}, !- Handle - {00000000-0000-0000-0049-000000000075}, !- Source Object + {00000000-0000-0000-0053-000000000136}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000017}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000193}, !- Handle - {00000000-0000-0000-0056-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000072}, !- Target Object + {00000000-0000-0000-0018-000000000017}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000138}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000194}, !- Handle - {00000000-0000-0000-0049-000000000072}, !- Source Object + {00000000-0000-0000-0053-000000000138}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0022-000000000007}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000195}, !- Handle - {00000000-0000-0000-0049-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000001}, !- Target Object - 31; !- Inlet Port + {00000000-0000-0000-0022-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000091}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000196}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0049-000000000002}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000091}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000197}, !- Handle - {00000000-0000-0000-0049-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0016-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000093}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000198}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000111}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000093}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000004}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000199}, !- Handle - {00000000-0000-0000-0049-000000000111}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000008}, !- Target Object + {00000000-0000-0000-0044-000000000005}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000296}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000200}, !- Handle - {00000000-0000-0000-0053-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000112}, !- Target Object + {00000000-0000-0000-0018-000000000017}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000137}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000201}, !- Handle - {00000000-0000-0000-0049-000000000112}, !- Source Object + {00000000-0000-0000-0053-000000000137}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0044-000000000005}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000202}, !- Handle - {00000000-0000-0000-0049-000000000113}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000009}, !- Target Object + {00000000-0000-0000-0016-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000203}, !- Handle - {00000000-0000-0000-0053-000000000009}, !- Source Object + {00000000-0000-0000-0053-000000000092}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000114}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000017}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000204}, !- Handle - {00000000-0000-0000-0049-000000000114}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0003-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000292}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000205}, !- Handle - {00000000-0000-0000-0021-000000000007}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000115}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000292}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000206}, !- Handle - {00000000-0000-0000-0049-000000000115}, !- Source Object + {00000000-0000-0000-0053-000000000295}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000010}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0044-000000000001}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000207}, !- Handle - {00000000-0000-0000-0053-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000076}, !- Target Object + {00000000-0000-0000-0044-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000275}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000208}, !- Handle - {00000000-0000-0000-0021-000000000008}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000103}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000275}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000209}, !- Handle - {00000000-0000-0000-0049-000000000103}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000002}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000210}, !- Handle - {00000000-0000-0000-0053-000000000002}, !- Source Object + {00000000-0000-0000-0053-000000000139}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000074}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000018}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000211}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000054}, !- Target Object + {00000000-0000-0000-0018-000000000018}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000212}, !- Handle - {00000000-0000-0000-0049-000000000054}, !- Source Object + {00000000-0000-0000-0053-000000000140}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000213}, !- Handle - {00000000-0000-0000-0096-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000055}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0053-000000000177}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000214}, !- Handle - {00000000-0000-0000-0049-000000000055}, !- Source Object + {00000000-0000-0000-0053-000000000177}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0019-000000000014}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000215}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000056}, !- Target Object + {00000000-0000-0000-0019-000000000014}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000178}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000216}, !- Handle - {00000000-0000-0000-0049-000000000056}, !- Source Object + {00000000-0000-0000-0053-000000000178}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000002}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000217}, !- Handle - {00000000-0000-0000-0096-000000000002}, !- Source Object + {00000000-0000-0000-0053-000000000069}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000057}, !- Target Object + {00000000-0000-0000-0059-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000218}, !- Handle - {00000000-0000-0000-0049-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0059-000000000045}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000012}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000219}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000058}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000220}, !- Handle - {00000000-0000-0000-0049-000000000058}, !- Source Object + {00000000-0000-0000-0005-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000003}, !- Target Object + {00000000-0000-0000-0053-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000221}, !- Handle - {00000000-0000-0000-0096-000000000003}, !- Source Object + {00000000-0000-0000-0053-000000000068}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000059}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000012}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000222}, !- Handle - {00000000-0000-0000-0049-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0007-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000069}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000223}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000060}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000141}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000224}, !- Handle - {00000000-0000-0000-0049-000000000060}, !- Source Object + {00000000-0000-0000-0053-000000000141}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000004}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000019}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000225}, !- Handle - {00000000-0000-0000-0096-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000061}, !- Target Object + {00000000-0000-0000-0018-000000000019}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000142}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000226}, !- Handle - {00000000-0000-0000-0049-000000000061}, !- Source Object + {00000000-0000-0000-0053-000000000142}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000227}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0049-000000000062}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000179}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000228}, !- Handle - {00000000-0000-0000-0049-000000000062}, !- Source Object + {00000000-0000-0000-0053-000000000179}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000005}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0019-000000000015}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000229}, !- Handle - {00000000-0000-0000-0096-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000063}, !- Target Object + {00000000-0000-0000-0019-000000000015}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000180}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000230}, !- Handle - {00000000-0000-0000-0049-000000000063}, !- Source Object + {00000000-0000-0000-0053-000000000180}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000231}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0049-000000000064}, !- Target Object + {00000000-0000-0000-0053-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000232}, !- Handle - {00000000-0000-0000-0049-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000006}, !- Target Object + {00000000-0000-0000-0059-000000000021}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000233}, !- Handle - {00000000-0000-0000-0096-000000000006}, !- Source Object + {00000000-0000-0000-0053-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000065}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000234}, !- Handle - {00000000-0000-0000-0049-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000070}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000235}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0049-000000000066}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000070}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000013}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000236}, !- Handle - {00000000-0000-0000-0049-000000000066}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000007}, !- Target Object + {00000000-0000-0000-0007-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000237}, !- Handle - {00000000-0000-0000-0096-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000067}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000238}, !- Handle - {00000000-0000-0000-0049-000000000067}, !- Source Object + {00000000-0000-0000-0053-000000000143}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0018-000000000020}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000239}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000077}, !- Target Object + {00000000-0000-0000-0018-000000000020}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000240}, !- Handle - {00000000-0000-0000-0049-000000000077}, !- Source Object + {00000000-0000-0000-0053-000000000144}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000008}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000241}, !- Handle - {00000000-0000-0000-0096-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000078}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000181}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000242}, !- Handle - {00000000-0000-0000-0049-000000000078}, !- Source Object + {00000000-0000-0000-0053-000000000181}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 11; !- Inlet Port + {00000000-0000-0000-0019-000000000016}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000243}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000079}, !- Target Object + {00000000-0000-0000-0019-000000000016}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000182}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000244}, !- Handle - {00000000-0000-0000-0049-000000000079}, !- Source Object + {00000000-0000-0000-0053-000000000182}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000009}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000245}, !- Handle - {00000000-0000-0000-0096-000000000009}, !- Source Object + {00000000-0000-0000-0053-000000000073}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000080}, !- Target Object + {00000000-0000-0000-0059-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000246}, !- Handle - {00000000-0000-0000-0049-000000000080}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0059-000000000066}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000016}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000247}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000081}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000248}, !- Handle - {00000000-0000-0000-0049-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000010}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000249}, !- Handle - {00000000-0000-0000-0096-000000000010}, !- Source Object + {00000000-0000-0000-0053-000000000072}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000082}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000014}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000250}, !- Handle - {00000000-0000-0000-0049-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 13; !- Inlet Port + {00000000-0000-0000-0007-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000073}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000251}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object + {00000000-0000-0000-0022-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000083}, !- Target Object + {00000000-0000-0000-0053-000000000145}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000252}, !- Handle - {00000000-0000-0000-0049-000000000083}, !- Source Object + {00000000-0000-0000-0053-000000000145}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000011}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000021}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000253}, !- Handle - {00000000-0000-0000-0096-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000084}, !- Target Object + {00000000-0000-0000-0018-000000000021}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000146}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000254}, !- Handle - {00000000-0000-0000-0049-000000000084}, !- Source Object + {00000000-0000-0000-0053-000000000146}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object + {00000000-0000-0000-0021-000000000002}, !- Target Object 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000255}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object + {00000000-0000-0000-0022-000000000002}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0049-000000000085}, !- Target Object + {00000000-0000-0000-0053-000000000183}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000256}, !- Handle - {00000000-0000-0000-0049-000000000085}, !- Source Object + {00000000-0000-0000-0053-000000000183}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000012}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0019-000000000017}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000257}, !- Handle - {00000000-0000-0000-0096-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000086}, !- Target Object + {00000000-0000-0000-0019-000000000017}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000184}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000258}, !- Handle - {00000000-0000-0000-0049-000000000086}, !- Source Object + {00000000-0000-0000-0053-000000000184}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object + {00000000-0000-0000-0021-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000259}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0049-000000000087}, !- Target Object + {00000000-0000-0000-0053-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000260}, !- Handle - {00000000-0000-0000-0049-000000000087}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000013}, !- Target Object + {00000000-0000-0000-0059-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000261}, !- Handle - {00000000-0000-0000-0096-000000000013}, !- Source Object + {00000000-0000-0000-0053-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000088}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000262}, !- Handle - {00000000-0000-0000-0049-000000000088}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000074}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000263}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000089}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000015}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000264}, !- Handle - {00000000-0000-0000-0049-000000000089}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000014}, !- Target Object + {00000000-0000-0000-0007-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000265}, !- Handle - {00000000-0000-0000-0096-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000090}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0053-000000000147}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000266}, !- Handle - {00000000-0000-0000-0049-000000000090}, !- Source Object + {00000000-0000-0000-0053-000000000147}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0018-000000000022}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000267}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0049-000000000091}, !- Target Object + {00000000-0000-0000-0018-000000000022}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000268}, !- Handle - {00000000-0000-0000-0049-000000000091}, !- Source Object + {00000000-0000-0000-0053-000000000148}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000015}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000269}, !- Handle - {00000000-0000-0000-0096-000000000015}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000092}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000185}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000270}, !- Handle - {00000000-0000-0000-0049-000000000092}, !- Source Object + {00000000-0000-0000-0053-000000000185}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0019-000000000018}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000271}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0049-000000000093}, !- Target Object + {00000000-0000-0000-0019-000000000018}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000186}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000272}, !- Handle - {00000000-0000-0000-0049-000000000093}, !- Source Object + {00000000-0000-0000-0053-000000000186}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000016}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 17; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000273}, !- Handle - {00000000-0000-0000-0096-000000000016}, !- Source Object + {00000000-0000-0000-0053-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000094}, !- Target Object + {00000000-0000-0000-0059-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000274}, !- Handle - {00000000-0000-0000-0049-000000000094}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 19; !- Inlet Port + {00000000-0000-0000-0059-000000000060}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000014}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000275}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0049-000000000095}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000276}, !- Handle - {00000000-0000-0000-0049-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000017}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000277}, !- Handle - {00000000-0000-0000-0096-000000000017}, !- Source Object + {00000000-0000-0000-0053-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000096}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000016}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000278}, !- Handle - {00000000-0000-0000-0049-000000000096}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 20; !- Inlet Port + {00000000-0000-0000-0007-000000000016}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000077}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000279}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0049-000000000097}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0053-000000000149}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000280}, !- Handle - {00000000-0000-0000-0049-000000000097}, !- Source Object + {00000000-0000-0000-0053-000000000149}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000018}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000023}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000281}, !- Handle - {00000000-0000-0000-0096-000000000018}, !- Source Object + {00000000-0000-0000-0018-000000000023}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000150}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000282}, !- Handle + {00000000-0000-0000-0053-000000000150}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000283}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0053-000000000187}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000284}, !- Handle + {00000000-0000-0000-0053-000000000187}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000098}, !- Target Object + {00000000-0000-0000-0019-000000000019}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000285}, !- Handle + {00000000-0000-0000-0019-000000000019}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000188}, !- Target Object 2; !- Inlet Port -OS:Connection, - {00000000-0000-0000-0020-000000000282}, !- Handle - {00000000-0000-0000-0049-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 21; !- Inlet Port +OS:Connection, + {00000000-0000-0000-0020-000000000286}, !- Handle + {00000000-0000-0000-0053-000000000188}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000287}, !- Handle + {00000000-0000-0000-0053-000000000079}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000288}, !- Handle + {00000000-0000-0000-0059-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000289}, !- Handle + {00000000-0000-0000-0053-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000290}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000078}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000291}, !- Handle + {00000000-0000-0000-0053-000000000078}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000017}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000292}, !- Handle + {00000000-0000-0000-0007-000000000017}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000079}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000293}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0053-000000000302}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000294}, !- Handle + {00000000-0000-0000-0053-000000000303}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000295}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000297}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000296}, !- Handle + {00000000-0000-0000-0053-000000000298}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000297}, !- Handle + {00000000-0000-0000-0053-000000000297}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000298}, !- Handle + {00000000-0000-0000-0004-000000000004}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000298}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000299}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0053-000000000104}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000300}, !- Handle + {00000000-0000-0000-0053-000000000104}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000301}, !- Handle + {00000000-0000-0000-0018-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000106}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000302}, !- Handle + {00000000-0000-0000-0053-000000000106}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000303}, !- Handle + {00000000-0000-0000-0022-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000094}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000304}, !- Handle + {00000000-0000-0000-0053-000000000094}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000305}, !- Handle + {00000000-0000-0000-0016-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000096}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000306}, !- Handle + {00000000-0000-0000-0053-000000000096}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000004}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000307}, !- Handle + {00000000-0000-0000-0044-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000303}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000308}, !- Handle + {00000000-0000-0000-0018-000000000002}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000105}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000309}, !- Handle + {00000000-0000-0000-0053-000000000105}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000006}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000310}, !- Handle + {00000000-0000-0000-0016-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000095}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000311}, !- Handle + {00000000-0000-0000-0053-000000000095}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000312}, !- Handle + {00000000-0000-0000-0003-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000299}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000313}, !- Handle + {00000000-0000-0000-0053-000000000299}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000314}, !- Handle + {00000000-0000-0000-0053-000000000302}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000002}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000315}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000276}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000316}, !- Handle + {00000000-0000-0000-0053-000000000276}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000317}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0053-000000000107}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000318}, !- Handle + {00000000-0000-0000-0053-000000000107}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000003}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000319}, !- Handle + {00000000-0000-0000-0018-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000108}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000320}, !- Handle + {00000000-0000-0000-0053-000000000108}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000321}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0053-000000000189}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000322}, !- Handle + {00000000-0000-0000-0053-000000000189}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000020}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000323}, !- Handle + {00000000-0000-0000-0019-000000000020}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000190}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000324}, !- Handle + {00000000-0000-0000-0053-000000000190}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 22; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000325}, !- Handle + {00000000-0000-0000-0053-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000326}, !- Handle + {00000000-0000-0000-0059-000000000057}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000026}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000327}, !- Handle + {00000000-0000-0000-0053-000000000026}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000328}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000080}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000329}, !- Handle + {00000000-0000-0000-0053-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000018}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000330}, !- Handle + {00000000-0000-0000-0007-000000000018}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000081}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000331}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 23, !- Outlet Port + {00000000-0000-0000-0053-000000000109}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000332}, !- Handle + {00000000-0000-0000-0053-000000000109}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000004}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000333}, !- Handle + {00000000-0000-0000-0018-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000110}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000334}, !- Handle + {00000000-0000-0000-0053-000000000110}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 23; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000335}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 24, !- Outlet Port + {00000000-0000-0000-0053-000000000153}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000336}, !- Handle + {00000000-0000-0000-0053-000000000153}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000002}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000337}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000154}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000338}, !- Handle + {00000000-0000-0000-0053-000000000154}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 24; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000339}, !- Handle + {00000000-0000-0000-0053-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000340}, !- Handle + {00000000-0000-0000-0059-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000024}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000341}, !- Handle + {00000000-0000-0000-0053-000000000024}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000342}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000082}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000343}, !- Handle + {00000000-0000-0000-0053-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000019}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000344}, !- Handle + {00000000-0000-0000-0007-000000000019}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000083}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000345}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 25, !- Outlet Port + {00000000-0000-0000-0053-000000000111}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000346}, !- Handle + {00000000-0000-0000-0053-000000000111}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000347}, !- Handle + {00000000-0000-0000-0018-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000112}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000348}, !- Handle + {00000000-0000-0000-0053-000000000112}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 25; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000349}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 26, !- Outlet Port + {00000000-0000-0000-0053-000000000155}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000350}, !- Handle + {00000000-0000-0000-0053-000000000155}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000003}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000351}, !- Handle + {00000000-0000-0000-0019-000000000003}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000156}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000352}, !- Handle + {00000000-0000-0000-0053-000000000156}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 26; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000353}, !- Handle + {00000000-0000-0000-0053-000000000049}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000034}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000354}, !- Handle + {00000000-0000-0000-0059-000000000036}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000355}, !- Handle + {00000000-0000-0000-0053-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000356}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000048}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000357}, !- Handle + {00000000-0000-0000-0053-000000000048}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000358}, !- Handle + {00000000-0000-0000-0007-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000359}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 27, !- Outlet Port + {00000000-0000-0000-0053-000000000113}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000360}, !- Handle + {00000000-0000-0000-0053-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000361}, !- Handle + {00000000-0000-0000-0018-000000000006}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000114}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000362}, !- Handle + {00000000-0000-0000-0053-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 27; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000363}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 28, !- Outlet Port + {00000000-0000-0000-0053-000000000157}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000364}, !- Handle + {00000000-0000-0000-0053-000000000157}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000004}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000365}, !- Handle + {00000000-0000-0000-0019-000000000004}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000158}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000366}, !- Handle + {00000000-0000-0000-0053-000000000158}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 28; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000367}, !- Handle + {00000000-0000-0000-0053-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000028}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000368}, !- Handle + {00000000-0000-0000-0059-000000000030}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000020}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000369}, !- Handle + {00000000-0000-0000-0053-000000000020}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000370}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000050}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000371}, !- Handle + {00000000-0000-0000-0053-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000003}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000372}, !- Handle + {00000000-0000-0000-0007-000000000003}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000051}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000373}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 29, !- Outlet Port + {00000000-0000-0000-0053-000000000115}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000374}, !- Handle + {00000000-0000-0000-0053-000000000115}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000007}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000375}, !- Handle + {00000000-0000-0000-0018-000000000007}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000116}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000376}, !- Handle + {00000000-0000-0000-0053-000000000116}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 29; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000377}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 30, !- Outlet Port + {00000000-0000-0000-0053-000000000159}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000378}, !- Handle + {00000000-0000-0000-0053-000000000159}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000005}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000379}, !- Handle + {00000000-0000-0000-0019-000000000005}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000160}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000380}, !- Handle + {00000000-0000-0000-0053-000000000160}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 30; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000381}, !- Handle + {00000000-0000-0000-0053-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000382}, !- Handle + {00000000-0000-0000-0059-000000000063}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000028}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000383}, !- Handle + {00000000-0000-0000-0053-000000000028}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000384}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000385}, !- Handle + {00000000-0000-0000-0053-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000386}, !- Handle + {00000000-0000-0000-0007-000000000004}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000053}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000387}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 31, !- Outlet Port + {00000000-0000-0000-0053-000000000117}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000388}, !- Handle + {00000000-0000-0000-0053-000000000117}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000389}, !- Handle + {00000000-0000-0000-0018-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000118}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000390}, !- Handle + {00000000-0000-0000-0053-000000000118}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000391}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0053-000000000161}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000392}, !- Handle + {00000000-0000-0000-0053-000000000161}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000006}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000393}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000162}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000394}, !- Handle + {00000000-0000-0000-0053-000000000162}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 32; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000395}, !- Handle + {00000000-0000-0000-0053-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000396}, !- Handle + {00000000-0000-0000-0059-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000030}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000397}, !- Handle + {00000000-0000-0000-0053-000000000030}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000398}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000054}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000399}, !- Handle + {00000000-0000-0000-0053-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000400}, !- Handle + {00000000-0000-0000-0007-000000000005}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000401}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0053-000000000309}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000402}, !- Handle + {00000000-0000-0000-0053-000000000310}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000403}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000304}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000404}, !- Handle + {00000000-0000-0000-0053-000000000305}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000405}, !- Handle + {00000000-0000-0000-0053-000000000304}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000406}, !- Handle + {00000000-0000-0000-0004-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000305}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000407}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 33, !- Outlet Port + {00000000-0000-0000-0053-000000000119}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000408}, !- Handle + {00000000-0000-0000-0053-000000000119}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000009}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000409}, !- Handle + {00000000-0000-0000-0018-000000000009}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000121}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000410}, !- Handle + {00000000-0000-0000-0053-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 33; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000411}, !- Handle + {00000000-0000-0000-0022-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000097}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000412}, !- Handle + {00000000-0000-0000-0053-000000000097}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000413}, !- Handle + {00000000-0000-0000-0016-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000099}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000414}, !- Handle + {00000000-0000-0000-0053-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000004}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000415}, !- Handle + {00000000-0000-0000-0044-000000000007}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000310}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000416}, !- Handle + {00000000-0000-0000-0018-000000000009}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000120}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000417}, !- Handle + {00000000-0000-0000-0053-000000000120}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000007}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000418}, !- Handle + {00000000-0000-0000-0016-000000000004}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000098}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000419}, !- Handle + {00000000-0000-0000-0053-000000000098}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000009}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000420}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000306}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000421}, !- Handle + {00000000-0000-0000-0053-000000000306}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000422}, !- Handle + {00000000-0000-0000-0053-000000000309}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000423}, !- Handle + {00000000-0000-0000-0044-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000277}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000424}, !- Handle + {00000000-0000-0000-0053-000000000277}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000425}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 34, !- Outlet Port + {00000000-0000-0000-0053-000000000122}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000426}, !- Handle + {00000000-0000-0000-0053-000000000122}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000010}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000427}, !- Handle + {00000000-0000-0000-0018-000000000010}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000123}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000428}, !- Handle + {00000000-0000-0000-0053-000000000123}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 34; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000429}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 35, !- Outlet Port + {00000000-0000-0000-0053-000000000163}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000430}, !- Handle + {00000000-0000-0000-0053-000000000163}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000007}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000431}, !- Handle + {00000000-0000-0000-0019-000000000007}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000164}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000432}, !- Handle + {00000000-0000-0000-0053-000000000164}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 35; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000433}, !- Handle + {00000000-0000-0000-0053-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000434}, !- Handle + {00000000-0000-0000-0059-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000435}, !- Handle + {00000000-0000-0000-0053-000000000040}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000436}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000437}, !- Handle + {00000000-0000-0000-0053-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000006}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000438}, !- Handle + {00000000-0000-0000-0007-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000439}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 36, !- Outlet Port + {00000000-0000-0000-0053-000000000124}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000440}, !- Handle + {00000000-0000-0000-0053-000000000124}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000011}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000441}, !- Handle + {00000000-0000-0000-0018-000000000011}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000125}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000442}, !- Handle + {00000000-0000-0000-0053-000000000125}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 36; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000443}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 37, !- Outlet Port + {00000000-0000-0000-0053-000000000165}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000444}, !- Handle + {00000000-0000-0000-0053-000000000165}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000008}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000445}, !- Handle + {00000000-0000-0000-0019-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000166}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000446}, !- Handle + {00000000-0000-0000-0053-000000000166}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 37; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000447}, !- Handle + {00000000-0000-0000-0053-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000448}, !- Handle + {00000000-0000-0000-0059-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000449}, !- Handle + {00000000-0000-0000-0053-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000450}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000451}, !- Handle + {00000000-0000-0000-0053-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000007}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000452}, !- Handle + {00000000-0000-0000-0007-000000000007}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000453}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 38, !- Outlet Port + {00000000-0000-0000-0053-000000000128}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000454}, !- Handle + {00000000-0000-0000-0053-000000000128}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000013}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000455}, !- Handle + {00000000-0000-0000-0018-000000000013}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000129}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000456}, !- Handle + {00000000-0000-0000-0053-000000000129}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 38; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000457}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 39, !- Outlet Port + {00000000-0000-0000-0053-000000000167}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000458}, !- Handle + {00000000-0000-0000-0053-000000000167}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000009}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000459}, !- Handle + {00000000-0000-0000-0019-000000000009}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000168}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000460}, !- Handle + {00000000-0000-0000-0053-000000000168}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 39; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000461}, !- Handle + {00000000-0000-0000-0053-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000462}, !- Handle + {00000000-0000-0000-0059-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000032}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000463}, !- Handle + {00000000-0000-0000-0053-000000000032}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000464}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000465}, !- Handle + {00000000-0000-0000-0053-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000466}, !- Handle + {00000000-0000-0000-0007-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000467}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 40, !- Outlet Port + {00000000-0000-0000-0053-000000000130}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000468}, !- Handle + {00000000-0000-0000-0053-000000000130}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000014}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000469}, !- Handle + {00000000-0000-0000-0018-000000000014}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000131}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000470}, !- Handle + {00000000-0000-0000-0053-000000000131}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 40; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000471}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 41, !- Outlet Port + {00000000-0000-0000-0053-000000000169}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000472}, !- Handle + {00000000-0000-0000-0053-000000000169}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000010}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000473}, !- Handle + {00000000-0000-0000-0019-000000000010}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000170}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000474}, !- Handle + {00000000-0000-0000-0053-000000000170}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 41; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000475}, !- Handle + {00000000-0000-0000-0053-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000025}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000476}, !- Handle + {00000000-0000-0000-0059-000000000027}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000034}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000477}, !- Handle + {00000000-0000-0000-0053-000000000034}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000478}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000479}, !- Handle + {00000000-0000-0000-0053-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000480}, !- Handle + {00000000-0000-0000-0007-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000481}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 42, !- Outlet Port + {00000000-0000-0000-0053-000000000132}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000482}, !- Handle + {00000000-0000-0000-0053-000000000132}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000015}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000483}, !- Handle + {00000000-0000-0000-0018-000000000015}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000133}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000484}, !- Handle + {00000000-0000-0000-0053-000000000133}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 42; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000485}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 43, !- Outlet Port + {00000000-0000-0000-0053-000000000171}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000486}, !- Handle + {00000000-0000-0000-0053-000000000171}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000011}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000487}, !- Handle + {00000000-0000-0000-0019-000000000011}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000172}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000488}, !- Handle + {00000000-0000-0000-0053-000000000172}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 43; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000489}, !- Handle + {00000000-0000-0000-0053-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000490}, !- Handle + {00000000-0000-0000-0059-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000038}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000491}, !- Handle + {00000000-0000-0000-0053-000000000038}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000492}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000493}, !- Handle + {00000000-0000-0000-0053-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000494}, !- Handle + {00000000-0000-0000-0007-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000065}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000495}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 44, !- Outlet Port + {00000000-0000-0000-0053-000000000134}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000496}, !- Handle + {00000000-0000-0000-0053-000000000134}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000016}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000497}, !- Handle + {00000000-0000-0000-0018-000000000016}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000135}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000498}, !- Handle + {00000000-0000-0000-0053-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 44; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000499}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 45, !- Outlet Port + {00000000-0000-0000-0053-000000000175}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000500}, !- Handle + {00000000-0000-0000-0053-000000000175}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000013}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000501}, !- Handle + {00000000-0000-0000-0019-000000000013}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000176}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000502}, !- Handle + {00000000-0000-0000-0053-000000000176}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 45; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000503}, !- Handle + {00000000-0000-0000-0053-000000000067}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000504}, !- Handle + {00000000-0000-0000-0059-000000000009}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000042}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000505}, !- Handle + {00000000-0000-0000-0053-000000000042}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000506}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000066}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000507}, !- Handle + {00000000-0000-0000-0053-000000000066}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000508}, !- Handle + {00000000-0000-0000-0007-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000067}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000509}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0053-000000000219}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000510}, !- Handle + {00000000-0000-0000-0022-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000511}, !- Handle + {00000000-0000-0000-0053-000000000220}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000004}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000512}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000217}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000513}, !- Handle + {00000000-0000-0000-0053-000000000217}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0022-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000514}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000257}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000515}, !- Handle + {00000000-0000-0000-0053-000000000218}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000004}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000516}, !- Handle + {00000000-0000-0000-0053-000000000219}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0060-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000517}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000216}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000518}, !- Handle + {00000000-0000-0000-0053-000000000216}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0022-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000519}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000001}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000520}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0053-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000521}, !- Handle + {00000000-0000-0000-0053-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000522}, !- Handle + {00000000-0000-0000-0022-000000000007}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000255}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000523}, !- Handle + {00000000-0000-0000-0053-000000000255}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000524}, !- Handle + {00000000-0000-0000-0057-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000256}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000525}, !- Handle + {00000000-0000-0000-0053-000000000256}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000526}, !- Handle + {00000000-0000-0000-0053-000000000257}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000527}, !- Handle + {00000000-0000-0000-0057-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000258}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000528}, !- Handle + {00000000-0000-0000-0053-000000000258}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000529}, !- Handle + {00000000-0000-0000-0021-000000000007}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000259}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000530}, !- Handle + {00000000-0000-0000-0053-000000000259}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000531}, !- Handle + {00000000-0000-0000-0057-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000220}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000532}, !- Handle + {00000000-0000-0000-0021-000000000008}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000247}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000533}, !- Handle + {00000000-0000-0000-0053-000000000247}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000534}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000218}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000535}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000198}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000536}, !- Handle + {00000000-0000-0000-0053-000000000198}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000537}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000199}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000538}, !- Handle + {00000000-0000-0000-0053-000000000199}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000539}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000200}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000540}, !- Handle + {00000000-0000-0000-0053-000000000200}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000541}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000201}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000542}, !- Handle + {00000000-0000-0000-0053-000000000201}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000543}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000202}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000544}, !- Handle + {00000000-0000-0000-0053-000000000202}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000003}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000545}, !- Handle + {00000000-0000-0000-0100-000000000003}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000203}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000546}, !- Handle + {00000000-0000-0000-0053-000000000203}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000547}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000204}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000548}, !- Handle + {00000000-0000-0000-0053-000000000204}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000549}, !- Handle + {00000000-0000-0000-0100-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000205}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000550}, !- Handle + {00000000-0000-0000-0053-000000000205}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000551}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000206}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000552}, !- Handle + {00000000-0000-0000-0053-000000000206}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000553}, !- Handle + {00000000-0000-0000-0100-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000207}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000554}, !- Handle + {00000000-0000-0000-0053-000000000207}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000555}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0053-000000000208}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000556}, !- Handle + {00000000-0000-0000-0053-000000000208}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000557}, !- Handle + {00000000-0000-0000-0100-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000209}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000558}, !- Handle + {00000000-0000-0000-0053-000000000209}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000559}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000210}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000560}, !- Handle + {00000000-0000-0000-0053-000000000210}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000561}, !- Handle + {00000000-0000-0000-0100-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000211}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000562}, !- Handle + {00000000-0000-0000-0053-000000000211}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000563}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000221}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000564}, !- Handle + {00000000-0000-0000-0053-000000000221}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000565}, !- Handle + {00000000-0000-0000-0100-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000222}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000566}, !- Handle + {00000000-0000-0000-0053-000000000222}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000567}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000223}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000568}, !- Handle + {00000000-0000-0000-0053-000000000223}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000569}, !- Handle + {00000000-0000-0000-0100-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000224}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000570}, !- Handle + {00000000-0000-0000-0053-000000000224}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000571}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000225}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000572}, !- Handle + {00000000-0000-0000-0053-000000000225}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000573}, !- Handle + {00000000-0000-0000-0100-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000226}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000574}, !- Handle + {00000000-0000-0000-0053-000000000226}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 13; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000575}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0053-000000000227}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000576}, !- Handle + {00000000-0000-0000-0053-000000000227}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000011}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000577}, !- Handle + {00000000-0000-0000-0100-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000228}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000578}, !- Handle + {00000000-0000-0000-0053-000000000228}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000579}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000229}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000580}, !- Handle + {00000000-0000-0000-0053-000000000229}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000581}, !- Handle + {00000000-0000-0000-0100-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000230}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000582}, !- Handle + {00000000-0000-0000-0053-000000000230}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000583}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0053-000000000231}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000584}, !- Handle + {00000000-0000-0000-0053-000000000231}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000585}, !- Handle + {00000000-0000-0000-0100-000000000013}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000232}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000586}, !- Handle + {00000000-0000-0000-0053-000000000232}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000587}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000233}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000588}, !- Handle + {00000000-0000-0000-0053-000000000233}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000589}, !- Handle + {00000000-0000-0000-0100-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000234}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000590}, !- Handle + {00000000-0000-0000-0053-000000000234}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000591}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0053-000000000235}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000592}, !- Handle + {00000000-0000-0000-0053-000000000235}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000015}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000593}, !- Handle + {00000000-0000-0000-0100-000000000015}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000236}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000594}, !- Handle + {00000000-0000-0000-0053-000000000236}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000595}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0053-000000000237}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000596}, !- Handle + {00000000-0000-0000-0053-000000000237}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000597}, !- Handle + {00000000-0000-0000-0100-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000238}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000598}, !- Handle + {00000000-0000-0000-0053-000000000238}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000599}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0053-000000000239}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000600}, !- Handle + {00000000-0000-0000-0053-000000000239}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000017}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000601}, !- Handle + {00000000-0000-0000-0100-000000000017}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000240}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000602}, !- Handle + {00000000-0000-0000-0053-000000000240}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000603}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0053-000000000241}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000604}, !- Handle + {00000000-0000-0000-0053-000000000241}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000605}, !- Handle + {00000000-0000-0000-0100-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000242}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000606}, !- Handle + {00000000-0000-0000-0053-000000000242}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000607}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0053-000000000243}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000608}, !- Handle + {00000000-0000-0000-0053-000000000243}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000019}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000609}, !- Handle + {00000000-0000-0000-0100-000000000019}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000244}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000610}, !- Handle + {00000000-0000-0000-0053-000000000244}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 22; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000611}, !- Handle + {00000000-0000-0000-0053-000000000284}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000612}, !- Handle + {00000000-0000-0000-0047-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000288}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000613}, !- Handle + {00000000-0000-0000-0053-000000000288}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000614}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000289}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000615}, !- Handle + {00000000-0000-0000-0053-000000000289}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000001}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000616}, !- Handle + {00000000-0000-0000-0047-000000000001}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000285}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000617}, !- Handle + {00000000-0000-0000-0053-000000000314}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000005}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000618}, !- Handle + {00000000-0000-0000-0047-000000000005}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000324}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000619}, !- Handle + {00000000-0000-0000-0053-000000000324}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000620}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000325}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000621}, !- Handle + {00000000-0000-0000-0053-000000000325}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000005}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000622}, !- Handle + {00000000-0000-0000-0047-000000000005}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000315}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000623}, !- Handle + {00000000-0000-0000-0053-000000000293}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000624}, !- Handle + {00000000-0000-0000-0047-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000318}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000625}, !- Handle + {00000000-0000-0000-0053-000000000318}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000626}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000319}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000627}, !- Handle + {00000000-0000-0000-0053-000000000319}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000628}, !- Handle + {00000000-0000-0000-0047-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000294}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000629}, !- Handle + {00000000-0000-0000-0053-000000000300}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000630}, !- Handle + {00000000-0000-0000-0047-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000320}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000631}, !- Handle + {00000000-0000-0000-0053-000000000320}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000632}, !- Handle + {00000000-0000-0000-0003-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000321}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000633}, !- Handle + {00000000-0000-0000-0053-000000000321}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000003}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000634}, !- Handle + {00000000-0000-0000-0047-000000000003}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000301}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000635}, !- Handle + {00000000-0000-0000-0053-000000000307}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000636}, !- Handle + {00000000-0000-0000-0047-000000000004}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000322}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000637}, !- Handle + {00000000-0000-0000-0053-000000000322}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000638}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000323}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000639}, !- Handle + {00000000-0000-0000-0053-000000000323}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000004}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000640}, !- Handle + {00000000-0000-0000-0047-000000000004}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000308}, !- Target Object + 2; !- Inlet Port + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000001}, !- Handle + Connector Mixer 1, !- Name + {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000002}, !- Handle + Connector Mixer 2, !- Name + {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000088}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000157}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000174}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000178}, !- Inlet Branch Name 4 + {00000000-0000-0000-0020-000000000194}, !- Inlet Branch Name 5 + {00000000-0000-0000-0020-000000000212}, !- Inlet Branch Name 6 + {00000000-0000-0000-0020-000000000216}, !- Inlet Branch Name 7 + {00000000-0000-0000-0020-000000000226}, !- Inlet Branch Name 8 + {00000000-0000-0000-0020-000000000230}, !- Inlet Branch Name 9 + {00000000-0000-0000-0020-000000000240}, !- Inlet Branch Name 10 + {00000000-0000-0000-0020-000000000244}, !- Inlet Branch Name 11 + {00000000-0000-0000-0020-000000000254}, !- Inlet Branch Name 12 + {00000000-0000-0000-0020-000000000258}, !- Inlet Branch Name 13 + {00000000-0000-0000-0020-000000000268}, !- Inlet Branch Name 14 + {00000000-0000-0000-0020-000000000272}, !- Inlet Branch Name 15 + {00000000-0000-0000-0020-000000000282}, !- Inlet Branch Name 16 + {00000000-0000-0000-0020-000000000286}, !- Inlet Branch Name 17 + {00000000-0000-0000-0020-000000000302}, !- Inlet Branch Name 18 + {00000000-0000-0000-0020-000000000320}, !- Inlet Branch Name 19 + {00000000-0000-0000-0020-000000000324}, !- Inlet Branch Name 20 + {00000000-0000-0000-0020-000000000334}, !- Inlet Branch Name 21 + {00000000-0000-0000-0020-000000000338}, !- Inlet Branch Name 22 + {00000000-0000-0000-0020-000000000348}, !- Inlet Branch Name 23 + {00000000-0000-0000-0020-000000000352}, !- Inlet Branch Name 24 + {00000000-0000-0000-0020-000000000362}, !- Inlet Branch Name 25 + {00000000-0000-0000-0020-000000000366}, !- Inlet Branch Name 26 + {00000000-0000-0000-0020-000000000376}, !- Inlet Branch Name 27 + {00000000-0000-0000-0020-000000000380}, !- Inlet Branch Name 28 + {00000000-0000-0000-0020-000000000390}, !- Inlet Branch Name 29 + {00000000-0000-0000-0020-000000000394}, !- Inlet Branch Name 30 + {00000000-0000-0000-0020-000000000410}, !- Inlet Branch Name 31 + {00000000-0000-0000-0020-000000000428}, !- Inlet Branch Name 32 + {00000000-0000-0000-0020-000000000432}, !- Inlet Branch Name 33 + {00000000-0000-0000-0020-000000000442}, !- Inlet Branch Name 34 + {00000000-0000-0000-0020-000000000446}, !- Inlet Branch Name 35 + {00000000-0000-0000-0020-000000000456}, !- Inlet Branch Name 36 + {00000000-0000-0000-0020-000000000460}, !- Inlet Branch Name 37 + {00000000-0000-0000-0020-000000000470}, !- Inlet Branch Name 38 + {00000000-0000-0000-0020-000000000474}, !- Inlet Branch Name 39 + {00000000-0000-0000-0020-000000000484}, !- Inlet Branch Name 40 + {00000000-0000-0000-0020-000000000488}, !- Inlet Branch Name 41 + {00000000-0000-0000-0020-000000000498}, !- Inlet Branch Name 42 + {00000000-0000-0000-0020-000000000502}; !- Inlet Branch Name 43 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000003}, !- Handle + Connector Mixer 3, !- Name + {00000000-0000-0000-0020-000000000117}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000108}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000112}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000116}; !- Inlet Branch Name 3 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000004}, !- Handle + Connector Mixer 4, !- Name + {00000000-0000-0000-0020-000000000101}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000160}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000198}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000306}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000414}; !- Inlet Branch Name 4 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000005}, !- Handle + Connector Mixer 5, !- Name + {00000000-0000-0000-0020-000000000138}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000133}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000137}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000006}, !- Handle + Connector Mixer 6, !- Name + {00000000-0000-0000-0020-000000000126}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000143}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000147}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000007}, !- Handle + Connector Mixer 7, !- Name + {00000000-0000-0000-0020-000000000529}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000521}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000525}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000008}, !- Handle + Connector Mixer 8, !- Name + {00000000-0000-0000-0020-000000000532}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000528}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000538}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000542}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000546}, !- Inlet Branch Name 4 + {00000000-0000-0000-0020-000000000550}, !- Inlet Branch Name 5 + {00000000-0000-0000-0020-000000000554}, !- Inlet Branch Name 6 + {00000000-0000-0000-0020-000000000558}, !- Inlet Branch Name 7 + {00000000-0000-0000-0020-000000000562}, !- Inlet Branch Name 8 + {00000000-0000-0000-0020-000000000566}, !- Inlet Branch Name 9 + {00000000-0000-0000-0020-000000000570}, !- Inlet Branch Name 10 + {00000000-0000-0000-0020-000000000574}, !- Inlet Branch Name 11 + {00000000-0000-0000-0020-000000000578}, !- Inlet Branch Name 12 + {00000000-0000-0000-0020-000000000582}, !- Inlet Branch Name 13 + {00000000-0000-0000-0020-000000000586}, !- Inlet Branch Name 14 + {00000000-0000-0000-0020-000000000590}, !- Inlet Branch Name 15 + {00000000-0000-0000-0020-000000000594}, !- Inlet Branch Name 16 + {00000000-0000-0000-0020-000000000598}, !- Inlet Branch Name 17 + {00000000-0000-0000-0020-000000000602}, !- Inlet Branch Name 18 + {00000000-0000-0000-0020-000000000606}, !- Inlet Branch Name 19 + {00000000-0000-0000-0020-000000000610}; !- Inlet Branch Name 20 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000001}, !- Handle + Connector Splitter 1, !- Name + {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000002}, !- Handle + Connector Splitter 2, !- Name + {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000154}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000171}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000175}, !- Outlet Branch Name 4 + {00000000-0000-0000-0020-000000000191}, !- Outlet Branch Name 5 + {00000000-0000-0000-0020-000000000209}, !- Outlet Branch Name 6 + {00000000-0000-0000-0020-000000000213}, !- Outlet Branch Name 7 + {00000000-0000-0000-0020-000000000223}, !- Outlet Branch Name 8 + {00000000-0000-0000-0020-000000000227}, !- Outlet Branch Name 9 + {00000000-0000-0000-0020-000000000237}, !- Outlet Branch Name 10 + {00000000-0000-0000-0020-000000000241}, !- Outlet Branch Name 11 + {00000000-0000-0000-0020-000000000251}, !- Outlet Branch Name 12 + {00000000-0000-0000-0020-000000000255}, !- Outlet Branch Name 13 + {00000000-0000-0000-0020-000000000265}, !- Outlet Branch Name 14 + {00000000-0000-0000-0020-000000000269}, !- Outlet Branch Name 15 + {00000000-0000-0000-0020-000000000279}, !- Outlet Branch Name 16 + {00000000-0000-0000-0020-000000000283}, !- Outlet Branch Name 17 + {00000000-0000-0000-0020-000000000299}, !- Outlet Branch Name 18 + {00000000-0000-0000-0020-000000000317}, !- Outlet Branch Name 19 + {00000000-0000-0000-0020-000000000321}, !- Outlet Branch Name 20 + {00000000-0000-0000-0020-000000000331}, !- Outlet Branch Name 21 + {00000000-0000-0000-0020-000000000335}, !- Outlet Branch Name 22 + {00000000-0000-0000-0020-000000000345}, !- Outlet Branch Name 23 + {00000000-0000-0000-0020-000000000349}, !- Outlet Branch Name 24 + {00000000-0000-0000-0020-000000000359}, !- Outlet Branch Name 25 + {00000000-0000-0000-0020-000000000363}, !- Outlet Branch Name 26 + {00000000-0000-0000-0020-000000000373}, !- Outlet Branch Name 27 + {00000000-0000-0000-0020-000000000377}, !- Outlet Branch Name 28 + {00000000-0000-0000-0020-000000000387}, !- Outlet Branch Name 29 + {00000000-0000-0000-0020-000000000391}, !- Outlet Branch Name 30 + {00000000-0000-0000-0020-000000000407}, !- Outlet Branch Name 31 + {00000000-0000-0000-0020-000000000425}, !- Outlet Branch Name 32 + {00000000-0000-0000-0020-000000000429}, !- Outlet Branch Name 33 + {00000000-0000-0000-0020-000000000439}, !- Outlet Branch Name 34 + {00000000-0000-0000-0020-000000000443}, !- Outlet Branch Name 35 + {00000000-0000-0000-0020-000000000453}, !- Outlet Branch Name 36 + {00000000-0000-0000-0020-000000000457}, !- Outlet Branch Name 37 + {00000000-0000-0000-0020-000000000467}, !- Outlet Branch Name 38 + {00000000-0000-0000-0020-000000000471}, !- Outlet Branch Name 39 + {00000000-0000-0000-0020-000000000481}, !- Outlet Branch Name 40 + {00000000-0000-0000-0020-000000000485}, !- Outlet Branch Name 41 + {00000000-0000-0000-0020-000000000495}, !- Outlet Branch Name 42 + {00000000-0000-0000-0020-000000000499}; !- Outlet Branch Name 43 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000003}, !- Handle + Connector Splitter 3, !- Name + {00000000-0000-0000-0020-000000000105}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000096}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000109}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000113}; !- Outlet Branch Name 3 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000004}, !- Handle + Connector Splitter 4, !- Name + {00000000-0000-0000-0020-000000000099}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000100}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000195}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000303}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000411}; !- Outlet Branch Name 4 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000005}, !- Handle + Connector Splitter 5, !- Name + {00000000-0000-0000-0020-000000000130}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000121}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000134}; !- Outlet Branch Name 2 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000006}, !- Handle + Connector Splitter 6, !- Name + {00000000-0000-0000-0020-000000000124}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000125}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000144}; !- Outlet Branch Name 2 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000007}, !- Handle + Connector Splitter 7, !- Name + {00000000-0000-0000-0020-000000000518}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000510}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000522}; !- Outlet Branch Name 2 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000008}, !- Handle + Connector Splitter 8, !- Name + {00000000-0000-0000-0020-000000000513}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000514}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000535}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000539}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000543}, !- Outlet Branch Name 4 + {00000000-0000-0000-0020-000000000547}, !- Outlet Branch Name 5 + {00000000-0000-0000-0020-000000000551}, !- Outlet Branch Name 6 + {00000000-0000-0000-0020-000000000555}, !- Outlet Branch Name 7 + {00000000-0000-0000-0020-000000000559}, !- Outlet Branch Name 8 + {00000000-0000-0000-0020-000000000563}, !- Outlet Branch Name 9 + {00000000-0000-0000-0020-000000000567}, !- Outlet Branch Name 10 + {00000000-0000-0000-0020-000000000571}, !- Outlet Branch Name 11 + {00000000-0000-0000-0020-000000000575}, !- Outlet Branch Name 12 + {00000000-0000-0000-0020-000000000579}, !- Outlet Branch Name 13 + {00000000-0000-0000-0020-000000000583}, !- Outlet Branch Name 14 + {00000000-0000-0000-0020-000000000587}, !- Outlet Branch Name 15 + {00000000-0000-0000-0020-000000000591}, !- Outlet Branch Name 16 + {00000000-0000-0000-0020-000000000595}, !- Outlet Branch Name 17 + {00000000-0000-0000-0020-000000000599}, !- Outlet Branch Name 18 + {00000000-0000-0000-0020-000000000603}, !- Outlet Branch Name 19 + {00000000-0000-0000-0020-000000000607}; !- Outlet Branch Name 20 + +OS:Construction, + {00000000-0000-0000-0023-000000000001}, !- Handle + BTAP-Ext-DaylightDiffuser, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000002}, !- Handle + BTAP-Ext-DaylightDiffuser:U=0.190 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000003}, !- Handle + BTAP-Ext-DaylightDomes, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000004}, !- Handle + BTAP-Ext-DaylightDomes:U=0.190 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000005}, !- Handle + BTAP-Ext-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000018}, !- Layer 1 + {00000000-0000-0000-0051-000000000013}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000006}, !- Handle + BTAP-Ext-Door:U-1.9, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000017}, !- Layer 1 + {00000000-0000-0000-0051-000000000011}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000007}, !- Handle + BTAP-Ext-FixedWindow, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000008}, !- Handle + BTAP-Ext-FixedWindow:U=0.190 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000009}, !- Handle + BTAP-Ext-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000013}, !- Layer 1 + {00000000-0000-0000-0050-000000000008}, !- Layer 2 + {00000000-0000-0000-0051-000000000007}; !- Layer 3 + +OS:Construction, + {00000000-0000-0000-0023-000000000010}, !- Handle + BTAP-Ext-Floor-Mass:U-0.162, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000008}, !- Layer 1 + {00000000-0000-0000-0050-000000000007}, !- Layer 2 + {00000000-0000-0000-0051-000000000003}; !- Layer 3 + +OS:Construction, + {00000000-0000-0000-0023-000000000011}, !- Handle + BTAP-Ext-GlassDoors, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000012}, !- Handle + BTAP-Ext-GlassDoors:U=0.190 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000013}, !- Handle + BTAP-Ext-OverHeadDoor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000013}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000014}, !- Handle + BTAP-Ext-OverHeadDoor:U-1.9, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000012}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000015}, !- Handle + BTAP-Ext-Roof-Metal, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000024}, !- Layer 1 + {00000000-0000-0000-0051-000000000013}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000016}, !- Handle + BTAP-Ext-Roof-Metal:U-0.138, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000023}, !- Layer 1 + {00000000-0000-0000-0051-000000000010}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000017}, !- Handle + BTAP-Ext-Skylights, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000018}, !- Handle + BTAP-Ext-Skylights:U=0.190 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000019}, !- Handle + BTAP-Ext-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000006}, !- Layer 1 + {00000000-0000-0000-0050-000000000014}, !- Layer 2 + {00000000-0000-0000-0051-000000000013}, !- Layer 3 + {00000000-0000-0000-0050-000000000002}; !- Layer 4 + +OS:Construction, + {00000000-0000-0000-0023-000000000020}, !- Handle + BTAP-Ext-Wall-Mass:U-0.21, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000005}, !- Layer 1 + {00000000-0000-0000-0050-000000000013}, !- Layer 2 + {00000000-0000-0000-0051-000000000009}, !- Layer 3 + {00000000-0000-0000-0050-000000000001}; !- Layer 4 + +OS:Construction, + {00000000-0000-0000-0023-000000000021}, !- Handle + BTAP-Grnd-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000012}, !- Layer 1 + {00000000-0000-0000-0051-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000022}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000009}, !- Layer 1 + {00000000-0000-0000-0051-000000000004}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000023}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000009}, !- Layer 1 + {00000000-0000-0000-0050-000000000016}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000024}, !- Handle + BTAP-Grnd-Roof-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000012}, !- Layer 1 + {00000000-0000-0000-0051-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000025}, !- Handle + BTAP-Grnd-Roof-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000011}, !- Layer 1 + {00000000-0000-0000-0051-000000000006}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000026}, !- Handle + BTAP-Grnd-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000012}, !- Layer 1 + {00000000-0000-0000-0051-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000027}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000010}, !- Layer 1 + {00000000-0000-0000-0051-000000000005}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000028}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000010}, !- Layer 1 + {00000000-0000-0000-0050-000000000015}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000029}, !- Handle + BTAP-Int-Ceiling, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000007}, !- Layer 1 + {00000000-0000-0000-0050-000000000003}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000030}, !- Handle + BTAP-Int-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000021}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000031}, !- Handle + BTAP-Int-Floor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000003}, !- Layer 1 + {00000000-0000-0000-0051-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000032}, !- Handle + BTAP-Int-Partition, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000021}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000033}, !- Handle + BTAP-Int-Wall, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000019}, !- Layer 1 + {00000000-0000-0000-0050-000000000019}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000034}, !- Handle + BTAP-Int-Window, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000035}, !- Handle + Basement Floor construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000022}, !- Layer 1 + {00000000-0000-0000-0051-000000000001}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000036}, !- Handle + Basement Wall construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000022}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000037}, !- Handle + Floor Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000001}, !- Layer 1 + {00000000-0000-0000-0050-000000000004}, !- Layer 2 + {00000000-0000-0000-0051-000000000002}; !- Layer 3 + +OS:Construction, + {00000000-0000-0000-0023-000000000038}, !- Handle + Wall Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000020}, !- Layer 1 + {00000000-0000-0000-0050-000000000020}; !- Layer 2 + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000004}, !- Handle + Controller Mechanical Ventilation 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000005}, !- Handle + Controller Mechanical Ventilation 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000027}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000031}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000028}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000004}, !- Handle + Controller Outdoor Air 4, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000029}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000004}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000005}, !- Handle + Controller Outdoor Air 5, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000030}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000005}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000001}, !- Handle + Controller Water Coil 1, !- Name + {00000000-0000-0000-0018-000000000001}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000002}, !- Handle + Controller Water Coil 10, !- Name + {00000000-0000-0000-0018-000000000022}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000003}, !- Handle + Controller Water Coil 11, !- Name + {00000000-0000-0000-0018-000000000023}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000004}, !- Handle + Controller Water Coil 12, !- Name + {00000000-0000-0000-0018-000000000002}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000005}, !- Handle + Controller Water Coil 13, !- Name + {00000000-0000-0000-0016-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000006}, !- Handle + Controller Water Coil 14, !- Name + {00000000-0000-0000-0018-000000000003}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000007}, !- Handle + Controller Water Coil 15, !- Name + {00000000-0000-0000-0018-000000000004}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000008}, !- Handle + Controller Water Coil 16, !- Name + {00000000-0000-0000-0018-000000000005}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000009}, !- Handle + Controller Water Coil 17, !- Name + {00000000-0000-0000-0018-000000000006}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000010}, !- Handle + Controller Water Coil 18, !- Name + {00000000-0000-0000-0018-000000000007}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000011}, !- Handle + Controller Water Coil 19, !- Name + {00000000-0000-0000-0018-000000000008}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000012}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0016-000000000001}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000013}, !- Handle + Controller Water Coil 20, !- Name + {00000000-0000-0000-0018-000000000009}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000014}, !- Handle + Controller Water Coil 21, !- Name + {00000000-0000-0000-0016-000000000004}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000015}, !- Handle + Controller Water Coil 22, !- Name + {00000000-0000-0000-0018-000000000010}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000016}, !- Handle + Controller Water Coil 23, !- Name + {00000000-0000-0000-0018-000000000011}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000017}, !- Handle + Controller Water Coil 24, !- Name + {00000000-0000-0000-0018-000000000013}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000018}, !- Handle + Controller Water Coil 25, !- Name + {00000000-0000-0000-0018-000000000014}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000019}, !- Handle + Controller Water Coil 26, !- Name + {00000000-0000-0000-0018-000000000015}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000020}, !- Handle + Controller Water Coil 27, !- Name + {00000000-0000-0000-0018-000000000016}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000021}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0018-000000000012}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000022}, !- Handle + Controller Water Coil 4, !- Name + {00000000-0000-0000-0018-000000000017}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000023}, !- Handle + Controller Water Coil 5, !- Name + {00000000-0000-0000-0016-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000024}, !- Handle + Controller Water Coil 6, !- Name + {00000000-0000-0000-0018-000000000018}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000025}, !- Handle + Controller Water Coil 7, !- Name + {00000000-0000-0000-0018-000000000019}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000026}, !- Handle + Controller Water Coil 8, !- Name + {00000000-0000-0000-0018-000000000020}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000027}, !- Handle + Controller Water Coil 9, !- Name + {00000000-0000-0000-0018-000000000021}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:CoolingTower:SingleSpeed, + {00000000-0000-0000-0027-000000000001}, !- Handle + Cooling Tower Single Speed 1, !- Name + {00000000-0000-0000-0020-000000000131}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000132}, !- Water Outlet Node Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + 30219.6380386463, !- Fan Power at Design Air Flow Rate {W} + autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} + autosize, !- Air Flow Rate in Free Convection Regime {m3/s} + autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + , !- Nominal Capacity {W} + 0, !- Free Convection Capacity {W} + 0, !- Basin Heater Capacity {W/K} + 2, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + LossFactor, !- Evaporation Loss Mode + 0.2, !- Evaporation Loss Factor {percent/K} + 0.008, !- Drift Loss Percent {percent} + ConcentrationRatio, !- Blowdown Calculation Mode + 3, !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Outdoor Air Inlet Node Name + FanCycling, !- Capacity Control + 2, !- Number of Cells + MinimalCell, !- Cell Control + 0.33, !- Cell Minimum Water Flow Rate Fraction + 2.5, !- Cell Maximum Water Flow Rate Fraction + 1, !- Sizing Factor + 0.1, !- Free Convection Air Flow Rate Sizing Factor + 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor + 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + 0.1, !- Free Convection Nominal Capacity Sizing Factor + 35, !- Design Inlet Air Dry-Bulb Temperature {C} + 24, !- Design Inlet Air Wet-Bulb Temperature {C} + 5, !- Design Approach Temperature {deltaC} + 6, !- Design Range Temperature {deltaC} + General; !- End-Use Subcategory + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000001}, !- Handle + Curve Biquadratic 1, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.000554364, !- Coefficient3 x**2 + -0.00755748, !- Coefficient4 y + 3.3048e-05, !- Coefficient5 y**2 + -0.000191808, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000002}, !- Handle + Curve Biquadratic 2, !- Name + 0.116936, !- Coefficient1 Constant + 0.0284933, !- Coefficient2 x + -0.000411156, !- Coefficient3 x**2 + 0.0214108, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000003}, !- Handle + Curve Biquadratic 3, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000004}, !- Handle + Curve Biquadratic 4, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000005}, !- Handle + Curve Biquadratic 5, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000006}, !- Handle + Curve Biquadratic 6, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000007}, !- Handle + DXCOOL-NECB2011-REF-CAPFT, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.00055436, !- Coefficient3 x**2 + -0.0075575, !- Coefficient4 y + 3.3e-05, !- Coefficient5 y**2 + -0.0001918, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000008}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFT, !- Name + 0.1141714, !- Coefficient1 Constant + 0.02818224, !- Coefficient2 x + -0.0004199, !- Coefficient3 x**2 + 0.02141082, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000009}, !- Handle + WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name + 0.707908, !- Coefficient1 Constant + -0.00200657, !- Coefficient2 x + -0.00259605, !- Coefficient3 x**2 + 0.0300588, !- Coefficient4 y + -0.00105643, !- Coefficient5 y**2 + 0.0020457, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000010}, !- Handle + WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name + 0.560523, !- Coefficient1 Constant + -0.0137816, !- Coefficient2 x + 6.56424e-05, !- Coefficient3 x**2 + 0.0132194, !- Coefficient4 y + 0.000268596, !- Coefficient5 y**2 + -0.000501131, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000011}, !- Handle + WaterCooled_Scroll_CAPFT_NECB2011, !- Name + 0.94418, !- Coefficient1 Constant + 0.0337102, !- Coefficient2 x + 9.75564e-05, !- Coefficient3 x**2 + -0.00322114, !- Coefficient4 y + -4.91832e-05, !- Coefficient5 y**2 + -0.000177584, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000012}, !- Handle + WaterCooled_Scroll_EIRFT_NECB2011, !- Name + 0.727393, !- Coefficient1 Constant + -0.0118922, !- Coefficient2 x + 0.000541177, !- Coefficient3 x**2 + 0.00187934, !- Coefficient4 y + 0.000473461, !- Coefficient5 y**2 + -0.000711472, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000001}, !- Handle + BOILER-EFFFPLR-NECB2011, !- Name + 0.3831, !- Coefficient1 Constant + 2.0567, !- Coefficient2 x + -2.6469, !- Coefficient3 x**2 + 1.2148, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000002}, !- Handle + Curve Cubic 1, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000003}, !- Handle + DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000004}, !- Handle + FURNACE-EFFPLR-NECB2011, !- Name + 0.722, !- Coefficient1 Constant + 0.8211, !- Coefficient2 x + -1.0396, !- Coefficient3 x**2 + 0.5, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000005}, !- Handle + SWH-EFFFPLR-NECB2011, !- Name + 0.7576, !- Coefficient1 Constant + 1.0071, !- Coefficient2 x + -1.4443, !- Coefficient3 x**2 + 0.6844, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000006}, !- Handle + VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name + -2.4176, !- Coefficient1 Constant + 9.5874, !- Coefficient2 x + -11.559, !- Coefficient3 x**2 + 5.4009, !- Coefficient4 x**3 + 0.68, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000007}, !- Handle + VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name + -4.1457, !- Coefficient1 Constant + 16.803, !- Coefficient2 x + -19.471, !- Coefficient3 x**2 + 7.8488, !- Coefficient4 x**3 + 0.5, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000008}, !- Handle + VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name + -0.3477, !- Coefficient1 Constant + 4.0976, !- Coefficient2 x + -5.0024, !- Coefficient3 x**2 + 2.268, !- Coefficient4 x**3 + 0.22, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000001}, !- Handle + Curve Quadratic 1, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000002}, !- Handle + Curve Quadratic 2, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000003}, !- Handle + Curve Quadratic 3, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000004}, !- Handle + Curve Quadratic 4, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000005}, !- Handle + DXCOOL-NECB2011-REF-CAPFFLOW, !- Name + 0.8, !- Coefficient1 Constant + 0.2, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000006}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name + 1.1552, !- Coefficient1 Constant + -0.1808, !- Coefficient2 x + 0.0256, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000007}, !- Handle + WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name + 0.171493, !- Coefficient1 Constant + 0.588202, !- Coefficient2 x + 0.237373, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000008}, !- Handle + WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name + 0.04412, !- Coefficient1 Constant + 0.640367, !- Coefficient2 x + 0.319555, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:DefaultConstructionSet, + {00000000-0000-0000-0031-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name + {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name + {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name + {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name + {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name + {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000001}, !- Handle + Space Function - undefined - Schedule Set, !- 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 + {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000002}, !- Handle + Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0066-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0066-000000000017}, !- People Activity Level Schedule Name + {00000000-0000-0000-0066-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0066-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000003}, !- Handle + Space Function Office open plan Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0066-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0066-000000000017}, !- People Activity Level Schedule Name + {00000000-0000-0000-0066-000000000013}, !- Lighting Schedule Name + {00000000-0000-0000-0066-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000006}, !- Door Construction Name + {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000002}, !- Handle + Default Sub Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000030}, !- 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:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000003}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000005}, !- Door Construction Name + {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000002}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000003}, !- Handle + Default Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000004}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000005}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name + +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000001}, !- Handle + Space Function - undefined - Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000002}, !- Handle + Space Function Electrical/Mechanical room-sch-A 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:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000003}, !- Handle + Space Function Office open plan Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.0142188325687296, !- 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:ElectricEquipment, + {00000000-0000-0000-0036-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name + {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name + {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:ElectricEquipment, + {00000000-0000-0000-0036-000000000002}, !- Handle + Space Function Office open plan Elec Equip, !- Name + {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name + {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 1.0003634216273, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant + +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000002}, !- Handle + Space Function Office open plan Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.50272566220473, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name + {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0066-000000000016}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name + {00000000-0000-0000-0066-000000000016}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000005}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_ClgSch0, !- Name + {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000006}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_HtgSch0, !- Name + {00000000-0000-0000-0066-000000000016}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0039-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {6fc81040-0acb-4600-9e12-3a92d6650c01}<23.9 && {6fc81040-0acb-4600-9e12-3a92d6650c01}>1.7, !- Program Line 1 + SET {a2871c86-dd96-494d-a138-e82ded842f1d} = 29.4, !- Program Line 2 + SET {5a0fe3a8-4487-4ca6-a800-3ef259f5f406} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {6fc81040-0acb-4600-9e12-3a92d6650c01}<23.9 && {6fc81040-0acb-4600-9e12-3a92d6650c01}>1.7, !- Program Line 4 + SET {a2871c86-dd96-494d-a138-e82ded842f1d} = 29.4, !- Program Line 5 + SET {5a0fe3a8-4487-4ca6-a800-3ef259f5f406} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {6fc81040-0acb-4600-9e12-3a92d6650c01}<23.9 && {6fc81040-0acb-4600-9e12-3a92d6650c01}>1.7, !- Program Line 7 + SET {a2871c86-dd96-494d-a138-e82ded842f1d} = 29.4, !- Program Line 8 + SET {5a0fe3a8-4487-4ca6-a800-3ef259f5f406} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {6fc81040-0acb-4600-9e12-3a92d6650c01}<23.9 && {6fc81040-0acb-4600-9e12-3a92d6650c01}>1.7, !- Program Line 10 + SET {a2871c86-dd96-494d-a138-e82ded842f1d} = 29.4, !- Program Line 11 + SET {5a0fe3a8-4487-4ca6-a800-3ef259f5f406} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {a2871c86-dd96-494d-a138-e82ded842f1d} = NULL, !- Program Line 14 + SET {5a0fe3a8-4487-4ca6-a800-3ef259f5f406} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0039-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {d5939108-4634-4066-815d-de60a5515af4}<23.9 && {d5939108-4634-4066-815d-de60a5515af4}>1.7, !- Program Line 1 + SET {d361c379-f23a-4b4c-8f74-9113f17805a4} = 29.4, !- Program Line 2 + SET {73f4874f-5a72-4e83-9096-50134194b1eb} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {d5939108-4634-4066-815d-de60a5515af4}<23.9 && {d5939108-4634-4066-815d-de60a5515af4}>1.7, !- Program Line 4 + SET {d361c379-f23a-4b4c-8f74-9113f17805a4} = 29.4, !- Program Line 5 + SET {73f4874f-5a72-4e83-9096-50134194b1eb} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {d5939108-4634-4066-815d-de60a5515af4}<23.9 && {d5939108-4634-4066-815d-de60a5515af4}>1.7, !- Program Line 7 + SET {d361c379-f23a-4b4c-8f74-9113f17805a4} = 29.4, !- Program Line 8 + SET {73f4874f-5a72-4e83-9096-50134194b1eb} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {d5939108-4634-4066-815d-de60a5515af4}<23.9 && {d5939108-4634-4066-815d-de60a5515af4}>1.7, !- Program Line 10 + SET {d361c379-f23a-4b4c-8f74-9113f17805a4} = 29.4, !- Program Line 11 + SET {73f4874f-5a72-4e83-9096-50134194b1eb} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {d361c379-f23a-4b4c-8f74-9113f17805a4} = NULL, !- Program Line 14 + SET {73f4874f-5a72-4e83-9096-50134194b1eb} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0039-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {b3a80efc-b7c4-4a9b-8743-913a8990a659}<23.9 && {b3a80efc-b7c4-4a9b-8743-913a8990a659}>1.7, !- Program Line 1 + SET {0b7846dc-c4a9-4777-9b25-713e50a0e842} = 29.4, !- Program Line 2 + SET {82c2c9e7-e733-4e57-a30d-f756a15db429} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {b3a80efc-b7c4-4a9b-8743-913a8990a659}<23.9 && {b3a80efc-b7c4-4a9b-8743-913a8990a659}>1.7, !- Program Line 4 + SET {0b7846dc-c4a9-4777-9b25-713e50a0e842} = 29.4, !- Program Line 5 + SET {82c2c9e7-e733-4e57-a30d-f756a15db429} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {b3a80efc-b7c4-4a9b-8743-913a8990a659}<23.9 && {b3a80efc-b7c4-4a9b-8743-913a8990a659}>1.7, !- Program Line 7 + SET {0b7846dc-c4a9-4777-9b25-713e50a0e842} = 29.4, !- Program Line 8 + SET {82c2c9e7-e733-4e57-a30d-f756a15db429} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {b3a80efc-b7c4-4a9b-8743-913a8990a659}<23.9 && {b3a80efc-b7c4-4a9b-8743-913a8990a659}>1.7, !- Program Line 10 + SET {0b7846dc-c4a9-4777-9b25-713e50a0e842} = 29.4, !- Program Line 11 + SET {82c2c9e7-e733-4e57-a30d-f756a15db429} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {0b7846dc-c4a9-4777-9b25-713e50a0e842} = NULL, !- Program Line 14 + SET {82c2c9e7-e733-4e57-a30d-f756a15db429} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0040-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0039-000000000001}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0040-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0039-000000000002}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0040-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0039-000000000003}; !- Program Name 1 + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0041-000000000001}, !- Handle + OAT, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0041-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0041-000000000003}, !- Handle + OAT_2, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:Facility, + {00000000-0000-0000-0042-000000000001}; !- Handle + +OS:Fan:ConstantVolume, + {00000000-0000-0000-0043-000000000001}, !- Handle + Fan Constant Volume 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.39975, !- Fan Total Efficiency + 640, !- Pressure Rise {Pa} + AutoSize, !- Maximum Flow Rate {m3/s} + 0.615, !- Motor Efficiency + , !- Motor In Airstream Fraction + {00000000-0000-0000-0020-000000000080}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000078}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000206}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000207}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000314}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000315}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000003}, !- Handle + Sys6 Return Fan 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000422}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000423}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000004}, !- Handle + Sys6 Return Fan, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000168}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000169}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000005}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000201}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000199}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000006}, !- Handle + Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000309}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000307}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000007}, !- Handle + Sys6 Supply Fan 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000417}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000415}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000008}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000163}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000161}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Foundation:Kiva, + {00000000-0000-0000-0045-000000000001}, !- Handle + Bldg Kiva Foundation, !- Name + , !- Initial Indoor Air Temperature {C} + , !- Interior Horizontal Insulation Material Name + , !- Interior Horizontal Insulation Depth {m} + , !- Interior Horizontal Insulation Width {m} + , !- Interior Vertical Insulation Material Name + , !- Interior Vertical Insulation Depth {m} + , !- Exterior Horizontal Insulation Material Name + , !- Exterior Horizontal Insulation Depth {m} + , !- Exterior Horizontal Insulation Width {m} + , !- Exterior Vertical Insulation Material Name + , !- Exterior Vertical Insulation Depth {m} + 0, !- Wall Height Above Grade {m} + 0, !- Wall Depth Below Slab {m} + , !- Footing Wall Construction Name + , !- Footing Material Name + ; !- Footing Depth {m} + +OS:Foundation:Kiva:Settings, + {00000000-0000-0000-0046-000000000001}, !- Handle + , !- Soil Conductivity {W/m-K} + , !- Soil Density {kg/m3} + , !- Soil Specific Heat {J/kg-K} + , !- Ground Solar Absorptivity {dimensionless} + , !- Ground Thermal Absorptivity {dimensionless} + , !- Ground Surface Roughness {m} + , !- Far-Field Width {m} + , !- Deep-Ground Boundary Condition + , !- Deep-Ground Depth {m} + , !- Minimum Cell Dimension {m} + , !- Maximum Cell Growth Coefficient {dimensionless} + ; !- Simulation Timestep + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0047-000000000001}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000611}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000612}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000615}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000616}, !- Exhaust Air Outlet Node + 556.536604212459, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0047-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000623}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000624}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000627}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000628}, !- Exhaust Air Outlet Node + 1868.20312072616, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0047-000000000003}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000629}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000630}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000633}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000634}, !- Exhaust Air Outlet Node + 18232.0312072616, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0047-000000000004}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000635}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000636}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000639}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000640}, !- Exhaust Air Outlet Node + 1868.20312072616, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout -OS:Connection, - {00000000-0000-0000-0020-000000000283}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0049-000000000099}, !- Target Object - 2; !- Inlet Port +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0047-000000000005}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000617}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000618}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000621}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000622}, !- Exhaust Air Outlet Node + 449.90062893127, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout -OS:Connection, - {00000000-0000-0000-0020-000000000284}, !- Handle - {00000000-0000-0000-0049-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000019}, !- Target Object - 2; !- Inlet Port +OS:Lights, + {00000000-0000-0000-0048-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Lights, !- Name + {00000000-0000-0000-0049-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:Connection, - {00000000-0000-0000-0020-000000000285}, !- Handle - {00000000-0000-0000-0096-000000000019}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000100}, !- Target Object - 2; !- Inlet Port +OS:Lights, + {00000000-0000-0000-0048-000000000002}, !- Handle + Space Function Office open plan Lights, !- Name + {00000000-0000-0000-0049-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:Connection, - {00000000-0000-0000-0020-000000000286}, !- Handle - {00000000-0000-0000-0049-000000000100}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 22; !- Inlet Port +OS:Lights:Definition, + {00000000-0000-0000-0049-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.60167173948557, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible -OS:Connection, - {00000000-0000-0000-0020-000000000287}, !- Handle - {00000000-0000-0000-0049-000000000137}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object - 12; !- Inlet Port +OS:Lights:Definition, + {00000000-0000-0000-0049-000000000002}, !- Handle + Space Function Office open plan Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.69993059430563, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible -OS:Connection, - {00000000-0000-0000-0020-000000000288}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000141}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000001}, !- Handle + 1/2IN Gypsum 1, !- 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:Connection, - {00000000-0000-0000-0020-000000000289}, !- Handle - {00000000-0000-0000-0049-000000000141}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000002}, !- 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:Connection, - {00000000-0000-0000-0020-000000000290}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000142}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000003}, !- Handle + 100mm Normalweight concrete floor 1, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} -OS:Connection, - {00000000-0000-0000-0020-000000000291}, !- Handle - {00000000-0000-0000-0049-000000000142}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object - 14; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000004}, !- Handle + 100mm Normalweight concrete floor, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} -OS:Connection, - {00000000-0000-0000-0020-000000000292}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0049-000000000138}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000005}, !- Handle + 1IN Stucco 1, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000293}, !- Handle - {00000000-0000-0000-0049-000000000146}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000002}, !- Target Object - 12; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000006}, !- Handle + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000294}, !- Handle - {00000000-0000-0000-0043-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000150}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000007}, !- Handle + 4 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000295}, !- Handle - {00000000-0000-0000-0049-000000000150}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000008}, !- Handle + 4 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000296}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000151}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000009}, !- Handle + 6 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000297}, !- Handle - {00000000-0000-0000-0049-000000000151}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000002}, !- Target Object - 14; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000010}, !- Handle + 6 in. Normalweight Concrete Floor 2, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000298}, !- Handle - {00000000-0000-0000-0043-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0049-000000000147}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000011}, !- Handle + 6 in. Normalweight Concrete Floor 3, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000001}, !- Handle - Connector Mixer 1, !- Name - {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 +OS:Material, + {00000000-0000-0000-0050-000000000012}, !- Handle + 6 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000002}, !- Handle - Connector Mixer 2, !- Name - {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000088}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000157}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000174}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000178}; !- Inlet Branch Name 4 +OS:Material, + {00000000-0000-0000-0050-000000000013}, !- Handle + 8IN CONCRETE HW RefBldg 1, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000003}, !- Handle - Connector Mixer 3, !- Name - {00000000-0000-0000-0020-000000000117}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000108}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000112}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000116}; !- Inlet Branch Name 3 +OS:Material, + {00000000-0000-0000-0050-000000000014}, !- Handle + 8IN CONCRETE HW RefBldg, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000004}, !- Handle - Connector Mixer 4, !- Name - {00000000-0000-0000-0020-000000000101}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000160}; !- Inlet Branch Name 1 +OS:Material, + {00000000-0000-0000-0050-000000000015}, !- Handle + Expanded Polystyrene 1, !- Name + MediumSmooth, !- Roughness + 0.100199429303091, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000005}, !- Handle - Connector Mixer 5, !- Name - {00000000-0000-0000-0020-000000000138}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000133}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000137}; !- Inlet Branch Name 2 +OS:Material, + {00000000-0000-0000-0050-000000000016}, !- Handle + Expanded Polystyrene, !- Name + MediumSmooth, !- Roughness + 0.0363958681740979, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000006}, !- Handle - Connector Mixer 6, !- Name - {00000000-0000-0000-0020-000000000126}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000143}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000147}; !- Inlet Branch Name 2 +OS:Material, + {00000000-0000-0000-0050-000000000017}, !- Handle + F08 Metal surface 1, !- 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:Connector:Mixer, - {00000000-0000-0000-0021-000000000007}, !- Handle - Connector Mixer 7, !- Name - {00000000-0000-0000-0020-000000000205}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000197}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000201}; !- Inlet Branch Name 2 +OS:Material, + {00000000-0000-0000-0050-000000000018}, !- 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:Connector:Mixer, - {00000000-0000-0000-0021-000000000008}, !- Handle - Connector Mixer 8, !- Name - {00000000-0000-0000-0020-000000000208}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000204}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000214}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000218}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000222}, !- Inlet Branch Name 4 - {00000000-0000-0000-0020-000000000226}, !- Inlet Branch Name 5 - {00000000-0000-0000-0020-000000000230}, !- Inlet Branch Name 6 - {00000000-0000-0000-0020-000000000234}, !- Inlet Branch Name 7 - {00000000-0000-0000-0020-000000000238}, !- Inlet Branch Name 8 - {00000000-0000-0000-0020-000000000242}, !- Inlet Branch Name 9 - {00000000-0000-0000-0020-000000000246}, !- Inlet Branch Name 10 - {00000000-0000-0000-0020-000000000250}, !- Inlet Branch Name 11 - {00000000-0000-0000-0020-000000000254}, !- Inlet Branch Name 12 - {00000000-0000-0000-0020-000000000258}, !- Inlet Branch Name 13 - {00000000-0000-0000-0020-000000000262}, !- Inlet Branch Name 14 - {00000000-0000-0000-0020-000000000266}, !- Inlet Branch Name 15 - {00000000-0000-0000-0020-000000000270}, !- Inlet Branch Name 16 - {00000000-0000-0000-0020-000000000274}, !- Inlet Branch Name 17 - {00000000-0000-0000-0020-000000000278}, !- Inlet Branch Name 18 - {00000000-0000-0000-0020-000000000282}, !- Inlet Branch Name 19 - {00000000-0000-0000-0020-000000000286}; !- Inlet Branch Name 20 +OS:Material, + {00000000-0000-0000-0050-000000000019}, !- Handle + G01 13mm gypsum board 1, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000001}, !- Handle - Connector Splitter 1, !- Name - {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 +OS:Material, + {00000000-0000-0000-0050-000000000020}, !- Handle + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000002}, !- Handle - Connector Splitter 2, !- Name - {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000154}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000171}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000175}; !- Outlet Branch Name 4 +OS:Material, + {00000000-0000-0000-0050-000000000021}, !- 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:Connector:Splitter, - {00000000-0000-0000-0022-000000000003}, !- Handle - Connector Splitter 3, !- Name - {00000000-0000-0000-0020-000000000105}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000096}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000109}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000113}; !- Outlet Branch Name 3 +OS:Material, + {00000000-0000-0000-0050-000000000022}, !- Handle + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1842, !- Density {kg/m3} + 912; !- Specific Heat {J/kg-K} -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000004}, !- Handle - Connector Splitter 4, !- Name - {00000000-0000-0000-0020-000000000099}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000100}; !- Outlet Branch Name 1 +OS:Material, + {00000000-0000-0000-0050-000000000023}, !- Handle + Metal Roof Surface 1, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000005}, !- Handle - Connector Splitter 5, !- Name - {00000000-0000-0000-0020-000000000130}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000121}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000134}; !- Outlet Branch Name 2 +OS:Material, + {00000000-0000-0000-0050-000000000024}, !- Handle + Metal Roof Surface, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000006}, !- Handle - Connector Splitter 6, !- Name - {00000000-0000-0000-0020-000000000124}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000125}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000144}; !- Outlet Branch Name 2 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000001}, !- Handle + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000007}, !- Handle - Connector Splitter 7, !- Name - {00000000-0000-0000-0020-000000000194}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000186}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000198}; !- Outlet Branch Name 2 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000002}, !- Handle + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 2.88291975297193, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000008}, !- Handle - Connector Splitter 8, !- Name - {00000000-0000-0000-0020-000000000189}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000190}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000211}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000215}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000219}, !- Outlet Branch Name 4 - {00000000-0000-0000-0020-000000000223}, !- Outlet Branch Name 5 - {00000000-0000-0000-0020-000000000227}, !- Outlet Branch Name 6 - {00000000-0000-0000-0020-000000000231}, !- Outlet Branch Name 7 - {00000000-0000-0000-0020-000000000235}, !- Outlet Branch Name 8 - {00000000-0000-0000-0020-000000000239}, !- Outlet Branch Name 9 - {00000000-0000-0000-0020-000000000243}, !- Outlet Branch Name 10 - {00000000-0000-0000-0020-000000000247}, !- Outlet Branch Name 11 - {00000000-0000-0000-0020-000000000251}, !- Outlet Branch Name 12 - {00000000-0000-0000-0020-000000000255}, !- Outlet Branch Name 13 - {00000000-0000-0000-0020-000000000259}, !- Outlet Branch Name 14 - {00000000-0000-0000-0020-000000000263}, !- Outlet Branch Name 15 - {00000000-0000-0000-0020-000000000267}, !- Outlet Branch Name 16 - {00000000-0000-0000-0020-000000000271}, !- Outlet Branch Name 17 - {00000000-0000-0000-0020-000000000275}, !- Outlet Branch Name 18 - {00000000-0000-0000-0020-000000000279}, !- Outlet Branch Name 19 - {00000000-0000-0000-0020-000000000283}; !- Outlet Branch Name 20 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000003}, !- Handle + Typical Carpet Pad 1, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000004}, !- Handle + Typical Carpet Pad 2, !- Name + Smooth, !- Roughness + 1.25502993703786, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000001}, !- Handle - BTAP-Ext-DaylightDiffuser, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000005}, !- Handle + Typical Carpet Pad 3, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000002}, !- Handle - BTAP-Ext-DaylightDiffuser:U=0.190 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000006}, !- Handle + Typical Carpet Pad 4, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000003}, !- Handle - BTAP-Ext-DaylightDomes, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000007}, !- Handle + Typical Carpet Pad, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000004}, !- Handle - BTAP-Ext-DaylightDomes:U=0.190 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000008}, !- Handle + Typical Insulation 1, !- Name + Smooth, !- Roughness + 5.91237683519488, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000005}, !- Handle - BTAP-Ext-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000018}, !- Layer 1 - {00000000-0000-0000-0047-000000000013}; !- Layer 2 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000009}, !- Handle + Typical Insulation 2, !- Name + Smooth, !- Roughness + 4.49096231241638, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000006}, !- Handle - BTAP-Ext-Door:U-1.9, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000017}, !- Layer 1 - {00000000-0000-0000-0047-000000000011}; !- Layer 2 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000010}, !- Handle + Typical Insulation 3, !- Name + Smooth, !- Roughness + 7.24635914374968, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000007}, !- Handle - BTAP-Ext-FixedWindow, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000011}, !- Handle + Typical Insulation 4, !- Name + Smooth, !- Roughness + 0.526298121629161, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000008}, !- Handle - BTAP-Ext-FixedWindow:U=0.190 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000012}, !- Handle + Typical Insulation 5, !- Name + Smooth, !- Roughness + 0.526315789473684, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000009}, !- Handle - BTAP-Ext-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000013}, !- Layer 1 - {00000000-0000-0000-0046-000000000008}, !- Layer 2 - {00000000-0000-0000-0047-000000000007}; !- Layer 3 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000013}, !- Handle + Typical Insulation, !- Name + Smooth, !- Roughness + 0.101874652714525, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000010}, !- Handle - BTAP-Ext-Floor-Mass:U-0.162, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000008}, !- Layer 1 - {00000000-0000-0000-0046-000000000007}, !- Layer 2 - {00000000-0000-0000-0047-000000000003}; !- Layer 3 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000001}, !- Handle + Availability Manager Night Cycle 1 Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000011}, !- Handle - BTAP-Ext-GlassDoors, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000002}, !- Handle + Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000012}, !- Handle - BTAP-Ext-GlassDoors:U=0.190 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000003}, !- Handle + Availability Manager Night Cycle 1 Heating Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000013}, !- Handle - BTAP-Ext-OverHeadDoor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000013}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000004}, !- Handle + Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000014}, !- Handle - BTAP-Ext-OverHeadDoor:U-1.9, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000012}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000015}, !- Handle - BTAP-Ext-Roof-Metal, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000024}, !- Layer 1 - {00000000-0000-0000-0047-000000000013}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000016}, !- Handle - BTAP-Ext-Roof-Metal:U-0.138, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000023}, !- Layer 1 - {00000000-0000-0000-0047-000000000010}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000017}, !- Handle - BTAP-Ext-Skylights, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000018}, !- Handle - BTAP-Ext-Skylights:U=0.190 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000019}, !- Handle - BTAP-Ext-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000006}, !- Layer 1 - {00000000-0000-0000-0046-000000000014}, !- Layer 2 - {00000000-0000-0000-0047-000000000013}, !- Layer 3 - {00000000-0000-0000-0046-000000000002}; !- Layer 4 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000020}, !- Handle - BTAP-Ext-Wall-Mass:U-0.21, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000005}, !- Layer 1 - {00000000-0000-0000-0046-000000000013}, !- Layer 2 - {00000000-0000-0000-0047-000000000009}, !- Layer 3 - {00000000-0000-0000-0046-000000000001}; !- Layer 4 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000021}, !- Handle - BTAP-Grnd-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000012}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000022}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000009}, !- Layer 1 - {00000000-0000-0000-0047-000000000004}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000013}, !- Handle + Availability Manager Night Cycle 4 Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000023}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000009}, !- Layer 1 - {00000000-0000-0000-0046-000000000016}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000014}, !- Handle + Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000024}, !- Handle - BTAP-Grnd-Roof-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000012}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000015}, !- Handle + Availability Manager Night Cycle 4 Heating Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000025}, !- Handle - BTAP-Grnd-Roof-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000011}, !- Layer 1 - {00000000-0000-0000-0047-000000000006}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000016}, !- Handle + Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000026}, !- Handle - BTAP-Grnd-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000012}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000017}, !- Handle + Availability Manager Night Cycle 5 Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000027}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000010}, !- Layer 1 - {00000000-0000-0000-0047-000000000005}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000018}, !- Handle + Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000028}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000010}, !- Layer 1 - {00000000-0000-0000-0046-000000000015}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000019}, !- Handle + Availability Manager Night Cycle 5 Heating Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000029}, !- Handle - BTAP-Int-Ceiling, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000007}, !- Layer 1 - {00000000-0000-0000-0046-000000000003}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000020}, !- Handle + Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000030}, !- Handle - BTAP-Int-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000021}; !- Layer 1 +OS:Node, + {00000000-0000-0000-0053-000000000001}, !- Handle + 1089gal NaturalGas Water Heater - 735kBtu/hr 0.805 Therm Eff Supply Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000510}, !- Inlet Port + {00000000-0000-0000-0020-000000000519}; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000031}, !- Handle - BTAP-Int-Floor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000003}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 +OS:Node, + {00000000-0000-0000-0053-000000000002}, !- Handle + 1089gal NaturalGas Water Heater - 735kBtu/hr 0.805 Therm Eff Supply Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000520}, !- Inlet Port + {00000000-0000-0000-0020-000000000521}; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000032}, !- Handle - BTAP-Int-Partition, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000021}; !- Layer 1 +OS:Node, + {00000000-0000-0000-0053-000000000003}, !- Handle + ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000025}, !- Inlet Port + ; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000033}, !- Handle - BTAP-Int-Wall, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000019}, !- Layer 1 - {00000000-0000-0000-0046-000000000019}; !- Layer 2 +OS:Node, + {00000000-0000-0000-0053-000000000004}, !- Handle + ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000037}, !- Inlet Port + ; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000034}, !- Handle - BTAP-Int-Window, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:Node, + {00000000-0000-0000-0053-000000000005}, !- Handle + ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000027}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000006}, !- Handle + ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000180}, !- Inlet Port + {00000000-0000-0000-0020-000000000181}; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000035}, !- Handle - Basement Floor construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000022}, !- Layer 1 - {00000000-0000-0000-0047-000000000001}; !- Layer 2 +OS:Node, + {00000000-0000-0000-0053-000000000007}, !- Handle + ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000036}, !- Inlet Port + ; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000036}, !- Handle - Basement Wall construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000022}; !- Layer 1 +OS:Node, + {00000000-0000-0000-0053-000000000008}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000232}, !- Inlet Port + {00000000-0000-0000-0020-000000000233}; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000037}, !- Handle - Floor Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000001}, !- Layer 1 - {00000000-0000-0000-0046-000000000004}, !- Layer 2 - {00000000-0000-0000-0047-000000000002}; !- Layer 3 +OS:Node, + {00000000-0000-0000-0053-000000000009}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000030}, !- Inlet Port + ; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000038}, !- Handle - Wall Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000020}, !- Layer 1 - {00000000-0000-0000-0046-000000000020}; !- Layer 2 +OS:Node, + {00000000-0000-0000-0053-000000000010}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000260}, !- Inlet Port + {00000000-0000-0000-0020-000000000261}; !- Outlet Port -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method +OS:Node, + {00000000-0000-0000-0053-000000000011}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000031}, !- Inlet Port + ; !- Outlet Port -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method +OS:Node, + {00000000-0000-0000-0053-000000000012}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000218}, !- Inlet Port + {00000000-0000-0000-0020-000000000219}; !- Outlet Port -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0062-000000000024}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Node, + {00000000-0000-0000-0053-000000000013}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000038}, !- Inlet Port + ; !- Outlet Port -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - NoEconomizer, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} - 64000, !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0062-000000000025}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Node, + {00000000-0000-0000-0053-000000000014}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000274}, !- Inlet Port + {00000000-0000-0000-0020-000000000275}; !- Outlet Port -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000001}, !- Handle - Controller Water Coil 1, !- Name - {00000000-0000-0000-0018-000000000001}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} +OS:Node, + {00000000-0000-0000-0053-000000000015}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000043}, !- Inlet Port + ; !- Outlet Port -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000002}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0016-000000000001}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} +OS:Node, + {00000000-0000-0000-0053-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000246}, !- Inlet Port + {00000000-0000-0000-0020-000000000247}; !- Outlet Port -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000003}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0018-000000000002}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} +OS:Node, + {00000000-0000-0000-0053-000000000017}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000045}, !- Inlet Port + ; !- Outlet Port -OS:CoolingTower:SingleSpeed, - {00000000-0000-0000-0027-000000000001}, !- Handle - Cooling Tower Single Speed 1, !- Name - {00000000-0000-0000-0020-000000000131}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000132}, !- Water Outlet Node Name - autosize, !- Design Water Flow Rate {m3/s} - autosize, !- Design Air Flow Rate {m3/s} - 259.740244532758, !- Fan Power at Design Air Flow Rate {W} - autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} - autosize, !- Air Flow Rate in Free Convection Regime {m3/s} - autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} - UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method - , !- Nominal Capacity {W} - 0, !- Free Convection Capacity {W} - 0, !- Basin Heater Capacity {W/K} - 2, !- Basin Heater Setpoint Temperature {C} - , !- Basin Heater Operating Schedule Name - LossFactor, !- Evaporation Loss Mode - 0.2, !- Evaporation Loss Factor {percent/K} - 0.008, !- Drift Loss Percent {percent} - ConcentrationRatio, !- Blowdown Calculation Mode - 3, !- Blowdown Concentration Ratio - , !- Blowdown Makeup Water Usage Schedule Name - , !- Outdoor Air Inlet Node Name - FanCycling, !- Capacity Control - 1, !- Number of Cells - MinimalCell, !- Cell Control - 0.33, !- Cell Minimum Water Flow Rate Fraction - 2.5, !- Cell Maximum Water Flow Rate Fraction - 1, !- Sizing Factor - 0.1, !- Free Convection Air Flow Rate Sizing Factor - 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor - 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio - 0.1, !- Free Convection Nominal Capacity Sizing Factor - 35, !- Design Inlet Air Dry-Bulb Temperature {C} - 24, !- Design Inlet Air Wet-Bulb Temperature {C} - 5, !- Design Approach Temperature {deltaC} - 6, !- Design Range Temperature {deltaC} - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000288}, !- Inlet Port + {00000000-0000-0000-0020-000000000289}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000001}, !- Handle - Curve Biquadratic 1, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.000554364, !- Coefficient3 x**2 - -0.00755748, !- Coefficient4 y - 3.3048e-05, !- Coefficient5 y**2 - -0.000191808, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000019}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000024}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000002}, !- Handle - Curve Biquadratic 2, !- Name - 0.116936, !- Coefficient1 Constant - 0.0284933, !- Coefficient2 x - -0.000411156, !- Coefficient3 x**2 - 0.0214108, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000368}, !- Inlet Port + {00000000-0000-0000-0020-000000000369}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000003}, !- Handle - Curve Biquadratic 3, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000021}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000033}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000004}, !- Handle - Curve Biquadratic 4, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000354}, !- Inlet Port + {00000000-0000-0000-0020-000000000355}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000023}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000035}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000005}, !- Handle - Curve Biquadratic 5, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000340}, !- Inlet Port + {00000000-0000-0000-0020-000000000341}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000006}, !- Handle - Curve Biquadratic 6, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000025}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000040}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000007}, !- Handle - DXCOOL-NECB2011-REF-CAPFT, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.00055436, !- Coefficient3 x**2 - -0.0075575, !- Coefficient4 y - 3.3e-05, !- Coefficient5 y**2 - -0.0001918, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000026}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000326}, !- Inlet Port + {00000000-0000-0000-0020-000000000327}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000008}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFT, !- Name - 0.1141714, !- Coefficient1 Constant - 0.02818224, !- Coefficient2 x - -0.0004199, !- Coefficient3 x**2 - 0.02141082, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000027}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000042}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000009}, !- Handle - WaterCooled_Scroll_CAPFT_NECB2011, !- Name - 0.94418, !- Coefficient1 Constant - 0.0337102, !- Coefficient2 x - 9.75564e-05, !- Coefficient3 x**2 - -0.00322114, !- Coefficient4 y - -4.91832e-05, !- Coefficient5 y**2 - -0.000177584, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000028}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000382}, !- Inlet Port + {00000000-0000-0000-0020-000000000383}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000010}, !- Handle - WaterCooled_Scroll_EIRFT_NECB2011, !- Name - 0.727393, !- Coefficient1 Constant - -0.0118922, !- Coefficient2 x - 0.000541177, !- Coefficient3 x**2 - 0.00187934, !- Coefficient4 y - 0.000473461, !- Coefficient5 y**2 - -0.000711472, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000029}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000044}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000001}, !- Handle - BOILER-EFFFPLR-NECB2011, !- Name - 0.3831, !- Coefficient1 Constant - 2.0567, !- Coefficient2 x - -2.6469, !- Coefficient3 x**2 - 1.2148, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000030}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000396}, !- Inlet Port + {00000000-0000-0000-0020-000000000397}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000002}, !- Handle - Curve Cubic 1, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000031}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000028}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000003}, !- Handle - DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000032}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000462}, !- Inlet Port + {00000000-0000-0000-0020-000000000463}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000004}, !- Handle - FURNACE-EFFPLR-NECB2011, !- Name - 0.722, !- Coefficient1 Constant - 0.8211, !- Coefficient2 x - -1.0396, !- Coefficient3 x**2 - 0.5, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000033}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000029}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000005}, !- Handle - SWH-EFFFPLR-NECB2011, !- Name - 0.7576, !- Coefficient1 Constant - 1.0071, !- Coefficient2 x - -1.4443, !- Coefficient3 x**2 - 0.6844, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000034}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000476}, !- Inlet Port + {00000000-0000-0000-0020-000000000477}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000006}, !- Handle - VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name - -2.4176, !- Coefficient1 Constant - 9.5874, !- Coefficient2 x - -11.559, !- Coefficient3 x**2 - 5.4009, !- Coefficient4 x**3 - 0.68, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000035}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000032}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000001}, !- Handle - Curve Quadratic 1, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000036}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000448}, !- Inlet Port + {00000000-0000-0000-0020-000000000449}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000002}, !- Handle - Curve Quadratic 2, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000037}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000034}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000003}, !- Handle - Curve Quadratic 3, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000038}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000490}, !- Inlet Port + {00000000-0000-0000-0020-000000000491}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000004}, !- Handle - Curve Quadratic 4, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000039}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000039}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000005}, !- Handle - DXCOOL-NECB2011-REF-CAPFFLOW, !- Name - 0.8, !- Coefficient1 Constant - 0.2, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000040}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000434}, !- Inlet Port + {00000000-0000-0000-0020-000000000435}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000006}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name - 1.1552, !- Coefficient1 Constant - -0.1808, !- Coefficient2 x - 0.0256, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000041}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000041}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000007}, !- Handle - WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name - 0.04412, !- Coefficient1 Constant - 0.640367, !- Coefficient2 x - 0.319555, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000042}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000504}, !- Inlet Port + {00000000-0000-0000-0020-000000000505}; !- Outlet Port -OS:DefaultConstructionSet, - {00000000-0000-0000-0031-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name - {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name - {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name - {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name - {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name - {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - , !- Site Shading Construction Name - ; !- Adiabatic Surface Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000043}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000026}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000044}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000092}, !- Inlet Port + {00000000-0000-0000-0020-000000000093}; !- Outlet Port -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000001}, !- Handle - Space Function - undefined - Schedule Set, !- 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 - {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name +OS:Node, + {00000000-0000-0000-0053-000000000045}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000094}, !- Inlet Port + {00000000-0000-0000-0020-000000000089}; !- Outlet Port -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000002}, !- Handle - Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0062-000000000017}, !- People Activity Level Schedule Name - {00000000-0000-0000-0062-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name +OS:Node, + {00000000-0000-0000-0053-000000000046}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000182}, !- Inlet Port + {00000000-0000-0000-0020-000000000183}; !- Outlet Port -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000003}, !- Handle - Space Function Office open plan Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0062-000000000017}, !- People Activity Level Schedule Name - {00000000-0000-0000-0062-000000000013}, !- Lighting Schedule Name - {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name +OS:Node, + {00000000-0000-0000-0053-000000000047}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000184}, !- Inlet Port + {00000000-0000-0000-0020-000000000179}; !- Outlet Port -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000006}, !- Door Construction Name - {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000356}, !- Inlet Port + {00000000-0000-0000-0020-000000000357}; !- Outlet Port -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000002}, !- Handle - Default Sub Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000030}, !- 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:Node, + {00000000-0000-0000-0053-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000358}, !- Inlet Port + {00000000-0000-0000-0020-000000000353}; !- Outlet Port -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000003}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000005}, !- Door Construction Name - {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000050}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000370}, !- Inlet Port + {00000000-0000-0000-0020-000000000371}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000051}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000372}, !- Inlet Port + {00000000-0000-0000-0020-000000000367}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000002}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000052}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000384}, !- Inlet Port + {00000000-0000-0000-0020-000000000385}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000003}, !- Handle - Default Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000053}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000386}, !- Inlet Port + {00000000-0000-0000-0020-000000000381}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000004}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000054}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000398}, !- Inlet Port + {00000000-0000-0000-0020-000000000399}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000005}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000055}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000400}, !- Inlet Port + {00000000-0000-0000-0020-000000000395}; !- Outlet Port -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000001}, !- Handle - Space Function - undefined - Ventilation, !- Name - , !- Outdoor Air Method - 0, !- Outdoor Air Flow per Person {m3/s-person} - 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name +OS:Node, + {00000000-0000-0000-0053-000000000056}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000436}, !- Inlet Port + {00000000-0000-0000-0020-000000000437}; !- Outlet Port -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000002}, !- Handle - Space Function Electrical/Mechanical room-sch-A 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:Node, + {00000000-0000-0000-0053-000000000057}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000438}, !- Inlet Port + {00000000-0000-0000-0020-000000000433}; !- Outlet Port -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000003}, !- Handle - Space Function Office open plan Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.0142188325687296, !- 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:Node, + {00000000-0000-0000-0053-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000450}, !- Inlet Port + {00000000-0000-0000-0020-000000000451}; !- Outlet Port -OS:ElectricEquipment, - {00000000-0000-0000-0036-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name - {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000452}, !- Inlet Port + {00000000-0000-0000-0020-000000000447}; !- Outlet Port -OS:ElectricEquipment, - {00000000-0000-0000-0036-000000000002}, !- Handle - Space Function Office open plan Elec Equip, !- Name - {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000464}, !- Inlet Port + {00000000-0000-0000-0020-000000000465}; !- Outlet Port -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 1.0003634216273, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant +OS:Node, + {00000000-0000-0000-0053-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000466}, !- Inlet Port + {00000000-0000-0000-0020-000000000461}; !- Outlet Port -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000002}, !- Handle - Space Function Office open plan Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.50272566220473, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant +OS:Node, + {00000000-0000-0000-0053-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000478}, !- Inlet Port + {00000000-0000-0000-0020-000000000479}; !- Outlet Port -OS:Facility, - {00000000-0000-0000-0038-000000000001}; !- Handle +OS:Node, + {00000000-0000-0000-0053-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000480}, !- Inlet Port + {00000000-0000-0000-0020-000000000475}; !- Outlet Port -OS:Fan:ConstantVolume, - {00000000-0000-0000-0039-000000000001}, !- Handle - Fan Constant Volume 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.39975, !- Fan Total Efficiency - 640, !- Pressure Rise {Pa} - AutoSize, !- Maximum Flow Rate {m3/s} - 0.615, !- Motor Efficiency - , !- Motor In Airstream Fraction - {00000000-0000-0000-0020-000000000080}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000078}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000492}, !- Inlet Port + {00000000-0000-0000-0020-000000000493}; !- Outlet Port -OS:Fan:VariableVolume, - {00000000-0000-0000-0040-000000000001}, !- Handle - Sys6 Return Fan, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000168}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000169}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000494}, !- Inlet Port + {00000000-0000-0000-0020-000000000489}; !- Outlet Port -OS:Fan:VariableVolume, - {00000000-0000-0000-0040-000000000002}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000163}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000161}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000066}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000506}, !- Inlet Port + {00000000-0000-0000-0020-000000000507}; !- Outlet Port -OS:Foundation:Kiva, - {00000000-0000-0000-0041-000000000001}, !- Handle - Bldg Kiva Foundation, !- Name - , !- Initial Indoor Air Temperature {C} - , !- Interior Horizontal Insulation Material Name - , !- Interior Horizontal Insulation Depth {m} - , !- Interior Horizontal Insulation Width {m} - , !- Interior Vertical Insulation Material Name - , !- Interior Vertical Insulation Depth {m} - , !- Exterior Horizontal Insulation Material Name - , !- Exterior Horizontal Insulation Depth {m} - , !- Exterior Horizontal Insulation Width {m} - , !- Exterior Vertical Insulation Material Name - , !- Exterior Vertical Insulation Depth {m} - 0, !- Wall Height Above Grade {m} - 0, !- Wall Depth Below Slab {m} - , !- Footing Wall Construction Name - , !- Footing Material Name - ; !- Footing Depth {m} +OS:Node, + {00000000-0000-0000-0053-000000000067}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000508}, !- Inlet Port + {00000000-0000-0000-0020-000000000503}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000068}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000220}, !- Inlet Port + {00000000-0000-0000-0020-000000000221}; !- Outlet Port -OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0042-000000000001}, !- Handle - , !- Soil Conductivity {W/m-K} - , !- Soil Density {kg/m3} - , !- Soil Specific Heat {J/kg-K} - , !- Ground Solar Absorptivity {dimensionless} - , !- Ground Thermal Absorptivity {dimensionless} - , !- Ground Surface Roughness {m} - , !- Far-Field Width {m} - , !- Deep-Ground Boundary Condition - , !- Deep-Ground Depth {m} - , !- Minimum Cell Dimension {m} - , !- Maximum Cell Growth Coefficient {dimensionless} - ; !- Simulation Timestep +OS:Node, + {00000000-0000-0000-0053-000000000069}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000222}, !- Inlet Port + {00000000-0000-0000-0020-000000000217}; !- Outlet Port -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0043-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000287}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000288}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000291}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000292}, !- Exhaust Air Outlet Node - 556.536604212459, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout +OS:Node, + {00000000-0000-0000-0053-000000000070}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000234}, !- Inlet Port + {00000000-0000-0000-0020-000000000235}; !- Outlet Port -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0043-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000293}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000294}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000297}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000298}, !- Exhaust Air Outlet Node - 449.90062893127, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout +OS:Node, + {00000000-0000-0000-0053-000000000071}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000236}, !- Inlet Port + {00000000-0000-0000-0020-000000000231}; !- Outlet Port -OS:Lights, - {00000000-0000-0000-0044-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Lights, !- Name - {00000000-0000-0000-0045-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000072}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000248}, !- Inlet Port + {00000000-0000-0000-0020-000000000249}; !- Outlet Port -OS:Lights, - {00000000-0000-0000-0044-000000000002}, !- Handle - Space Function Office open plan Lights, !- Name - {00000000-0000-0000-0045-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000073}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000250}, !- Inlet Port + {00000000-0000-0000-0020-000000000245}; !- Outlet Port -OS:Lights:Definition, - {00000000-0000-0000-0045-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.60167173948557, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible +OS:Node, + {00000000-0000-0000-0053-000000000074}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000262}, !- Inlet Port + {00000000-0000-0000-0020-000000000263}; !- Outlet Port -OS:Lights:Definition, - {00000000-0000-0000-0045-000000000002}, !- Handle - Space Function Office open plan Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 8.69993059430563, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible +OS:Node, + {00000000-0000-0000-0053-000000000075}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000264}, !- Inlet Port + {00000000-0000-0000-0020-000000000259}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000001}, !- Handle - 1/2IN Gypsum 1, !- 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:Node, + {00000000-0000-0000-0053-000000000076}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000276}, !- Inlet Port + {00000000-0000-0000-0020-000000000277}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000002}, !- 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:Node, + {00000000-0000-0000-0053-000000000077}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000278}, !- Inlet Port + {00000000-0000-0000-0020-000000000273}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000003}, !- Handle - 100mm Normalweight concrete floor 1, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0053-000000000078}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000290}, !- Inlet Port + {00000000-0000-0000-0020-000000000291}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000004}, !- Handle - 100mm Normalweight concrete floor, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0053-000000000079}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000292}, !- Inlet Port + {00000000-0000-0000-0020-000000000287}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000005}, !- Handle - 1IN Stucco 1, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000080}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000328}, !- Inlet Port + {00000000-0000-0000-0020-000000000329}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000006}, !- Handle - 1IN Stucco, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000081}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000330}, !- Inlet Port + {00000000-0000-0000-0020-000000000325}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000007}, !- Handle - 4 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000082}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000342}, !- Inlet Port + {00000000-0000-0000-0020-000000000343}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000008}, !- Handle - 4 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000083}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000344}, !- Inlet Port + {00000000-0000-0000-0020-000000000339}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000009}, !- Handle - 6 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000084}, !- Handle + Chilled Water Loop Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000098}, !- Inlet Port + {00000000-0000-0000-0020-000000000099}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000010}, !- Handle - 6 in. Normalweight Concrete Floor 2, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000085}, !- Handle + Chilled Water Loop Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000101}, !- Inlet Port + {00000000-0000-0000-0020-000000000102}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000011}, !- Handle - 6 in. Normalweight Concrete Floor 3, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000086}, !- Handle + Chilled Water Loop Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000095}, !- Inlet Port + {00000000-0000-0000-0020-000000000103}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000012}, !- Handle - 6 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000087}, !- Handle + Chilled Water Loop Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000119}, !- Inlet Port + {00000000-0000-0000-0020-000000000097}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000088}, !- Handle + Coil Cooling Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000100}, !- Inlet Port + {00000000-0000-0000-0020-000000000158}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000089}, !- Handle + Coil Cooling Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000164}, !- Inlet Port + {00000000-0000-0000-0020-000000000165}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000090}, !- Handle + Coil Cooling Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000159}, !- Inlet Port + {00000000-0000-0000-0020-000000000160}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000091}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000195}, !- Inlet Port + {00000000-0000-0000-0020-000000000196}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000092}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000202}, !- Inlet Port + {00000000-0000-0000-0020-000000000203}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000093}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000197}, !- Inlet Port + {00000000-0000-0000-0020-000000000198}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000094}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000303}, !- Inlet Port + {00000000-0000-0000-0020-000000000304}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000013}, !- Handle - 8IN CONCRETE HW RefBldg 1, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000095}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000310}, !- Inlet Port + {00000000-0000-0000-0020-000000000311}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000014}, !- Handle - 8IN CONCRETE HW RefBldg, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000096}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000305}, !- Inlet Port + {00000000-0000-0000-0020-000000000306}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000015}, !- Handle - Expanded Polystyrene 1, !- Name - MediumSmooth, !- Roughness - 0.100199429303091, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0053-000000000097}, !- Handle + Coil Cooling Water 4 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000411}, !- Inlet Port + {00000000-0000-0000-0020-000000000412}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000016}, !- Handle - Expanded Polystyrene, !- Name - MediumSmooth, !- Roughness - 0.0363958681740979, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0053-000000000098}, !- Handle + Coil Cooling Water 4 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000418}, !- Inlet Port + {00000000-0000-0000-0020-000000000419}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000017}, !- Handle - F08 Metal surface 1, !- 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:Node, + {00000000-0000-0000-0053-000000000099}, !- Handle + Coil Cooling Water 4 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000413}, !- Inlet Port + {00000000-0000-0000-0020-000000000414}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000018}, !- 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:Node, + {00000000-0000-0000-0053-000000000100}, !- Handle + Coil Heating Gas 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000079}, !- Inlet Port + {00000000-0000-0000-0020-000000000080}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000019}, !- Handle - G01 13mm gypsum board 1, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000101}, !- Handle + Coil Heating Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000154}, !- Inlet Port + {00000000-0000-0000-0020-000000000155}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000020}, !- Handle - G01 13mm gypsum board, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000102}, !- Handle + Coil Heating Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000162}, !- Inlet Port + {00000000-0000-0000-0020-000000000163}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000021}, !- 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:Node, + {00000000-0000-0000-0053-000000000103}, !- Handle + Coil Heating Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000156}, !- Inlet Port + {00000000-0000-0000-0020-000000000157}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000022}, !- Handle - M10 200mm concrete block basement wall, !- Name - MediumRough, !- Roughness - 0.2032, !- Thickness {m} - 1.326, !- Conductivity {W/m-K} - 1842, !- Density {kg/m3} - 912; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0053-000000000104}, !- Handle + Coil Heating Water 10 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000299}, !- Inlet Port + {00000000-0000-0000-0020-000000000300}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000023}, !- Handle - Metal Roof Surface 1, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000105}, !- Handle + Coil Heating Water 10 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000308}, !- Inlet Port + {00000000-0000-0000-0020-000000000309}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000024}, !- Handle - Metal Roof Surface, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000106}, !- Handle + Coil Heating Water 10 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000301}, !- Inlet Port + {00000000-0000-0000-0020-000000000302}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000001}, !- Handle - CP02 CARPET PAD, !- Name - VeryRough, !- Roughness - 0.21648, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000107}, !- Handle + Coil Heating Water 11 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000317}, !- Inlet Port + {00000000-0000-0000-0020-000000000318}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000002}, !- Handle - Nonres_Floor_Insulation, !- Name - MediumSmooth, !- Roughness - 2.88291975297193, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000108}, !- Handle + Coil Heating Water 11 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000319}, !- Inlet Port + {00000000-0000-0000-0020-000000000320}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000003}, !- Handle - Typical Carpet Pad 1, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000109}, !- Handle + Coil Heating Water 12 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000331}, !- Inlet Port + {00000000-0000-0000-0020-000000000332}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000004}, !- Handle - Typical Carpet Pad 2, !- Name - Smooth, !- Roughness - 1.25502993703786, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000110}, !- Handle + Coil Heating Water 12 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000333}, !- Inlet Port + {00000000-0000-0000-0020-000000000334}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000005}, !- Handle - Typical Carpet Pad 3, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000111}, !- Handle + Coil Heating Water 13 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000345}, !- Inlet Port + {00000000-0000-0000-0020-000000000346}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000006}, !- Handle - Typical Carpet Pad 4, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000112}, !- Handle + Coil Heating Water 13 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000347}, !- Inlet Port + {00000000-0000-0000-0020-000000000348}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000007}, !- Handle - Typical Carpet Pad, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000113}, !- Handle + Coil Heating Water 14 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000359}, !- Inlet Port + {00000000-0000-0000-0020-000000000360}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000008}, !- Handle - Typical Insulation 1, !- Name - Smooth, !- Roughness - 5.91237683519488, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000114}, !- Handle + Coil Heating Water 14 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000361}, !- Inlet Port + {00000000-0000-0000-0020-000000000362}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000009}, !- Handle - Typical Insulation 2, !- Name - Smooth, !- Roughness - 4.49096231241638, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000115}, !- Handle + Coil Heating Water 15 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000373}, !- Inlet Port + {00000000-0000-0000-0020-000000000374}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000010}, !- Handle - Typical Insulation 3, !- Name - Smooth, !- Roughness - 7.24635914374968, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000116}, !- Handle + Coil Heating Water 15 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000375}, !- Inlet Port + {00000000-0000-0000-0020-000000000376}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000011}, !- Handle - Typical Insulation 4, !- Name - Smooth, !- Roughness - 0.526298121629161, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000117}, !- Handle + Coil Heating Water 16 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000387}, !- Inlet Port + {00000000-0000-0000-0020-000000000388}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000012}, !- Handle - Typical Insulation 5, !- Name - Smooth, !- Roughness - 0.526315789473684, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000118}, !- Handle + Coil Heating Water 16 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000389}, !- Inlet Port + {00000000-0000-0000-0020-000000000390}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000013}, !- Handle - Typical Insulation, !- Name - Smooth, !- Roughness - 0.101874652714525, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000119}, !- Handle + Coil Heating Water 17 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000407}, !- Inlet Port + {00000000-0000-0000-0020-000000000408}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000001}, !- Handle - Availability Manager Night Cycle 1 Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000120}, !- Handle + Coil Heating Water 17 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000416}, !- Inlet Port + {00000000-0000-0000-0020-000000000417}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000002}, !- Handle - Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000121}, !- Handle + Coil Heating Water 17 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000409}, !- Inlet Port + {00000000-0000-0000-0020-000000000410}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000003}, !- Handle - Availability Manager Night Cycle 1 Heating Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000122}, !- Handle + Coil Heating Water 18 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000425}, !- Inlet Port + {00000000-0000-0000-0020-000000000426}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000004}, !- Handle - Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000123}, !- Handle + Coil Heating Water 18 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000427}, !- Inlet Port + {00000000-0000-0000-0020-000000000428}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000124}, !- Handle + Coil Heating Water 19 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000439}, !- Inlet Port + {00000000-0000-0000-0020-000000000440}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000125}, !- Handle + Coil Heating Water 19 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000441}, !- Inlet Port + {00000000-0000-0000-0020-000000000442}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000126}, !- Handle + Coil Heating Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000171}, !- Inlet Port + {00000000-0000-0000-0020-000000000172}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000127}, !- Handle + Coil Heating Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000173}, !- Inlet Port + {00000000-0000-0000-0020-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000001}, !- Handle - 1089gal NaturalGas Water Heater - 735kBtu/hr 0.805 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000186}, !- Inlet Port - {00000000-0000-0000-0020-000000000195}; !- Outlet Port + {00000000-0000-0000-0053-000000000128}, !- Handle + Coil Heating Water 20 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000453}, !- Inlet Port + {00000000-0000-0000-0020-000000000454}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000002}, !- Handle - 1089gal NaturalGas Water Heater - 735kBtu/hr 0.805 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000196}, !- Inlet Port - {00000000-0000-0000-0020-000000000197}; !- Outlet Port + {00000000-0000-0000-0053-000000000129}, !- Handle + Coil Heating Water 20 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000455}, !- Inlet Port + {00000000-0000-0000-0020-000000000456}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000003}, !- Handle - ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000025}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000130}, !- Handle + Coil Heating Water 21 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000467}, !- Inlet Port + {00000000-0000-0000-0020-000000000468}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000004}, !- Handle - ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000037}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000131}, !- Handle + Coil Heating Water 21 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000469}, !- Inlet Port + {00000000-0000-0000-0020-000000000470}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000005}, !- Handle - ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000027}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000132}, !- Handle + Coil Heating Water 22 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000481}, !- Inlet Port + {00000000-0000-0000-0020-000000000482}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000006}, !- Handle - ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000180}, !- Inlet Port - {00000000-0000-0000-0020-000000000181}; !- Outlet Port + {00000000-0000-0000-0053-000000000133}, !- Handle + Coil Heating Water 22 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000483}, !- Inlet Port + {00000000-0000-0000-0020-000000000484}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000007}, !- Handle - ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000036}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000134}, !- Handle + Coil Heating Water 23 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000495}, !- Inlet Port + {00000000-0000-0000-0020-000000000496}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000008}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000030}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000135}, !- Handle + Coil Heating Water 23 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000497}, !- Inlet Port + {00000000-0000-0000-0020-000000000498}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000009}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000031}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000136}, !- Handle + Coil Heating Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000191}, !- Inlet Port + {00000000-0000-0000-0020-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000010}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000038}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000137}, !- Handle + Coil Heating Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000200}, !- Inlet Port + {00000000-0000-0000-0020-000000000201}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000011}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000043}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000138}, !- Handle + Coil Heating Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000193}, !- Inlet Port + {00000000-0000-0000-0020-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000012}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000045}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000139}, !- Handle + Coil Heating Water 4 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000209}, !- Inlet Port + {00000000-0000-0000-0020-000000000210}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000013}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000024}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000140}, !- Handle + Coil Heating Water 4 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000211}, !- Inlet Port + {00000000-0000-0000-0020-000000000212}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000014}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000033}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000141}, !- Handle + Coil Heating Water 5 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000223}, !- Inlet Port + {00000000-0000-0000-0020-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000015}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000035}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000142}, !- Handle + Coil Heating Water 5 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000225}, !- Inlet Port + {00000000-0000-0000-0020-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000016}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000040}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000143}, !- Handle + Coil Heating Water 6 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000237}, !- Inlet Port + {00000000-0000-0000-0020-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000017}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000042}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000144}, !- Handle + Coil Heating Water 6 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000239}, !- Inlet Port + {00000000-0000-0000-0020-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000018}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000044}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000145}, !- Handle + Coil Heating Water 7 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000251}, !- Inlet Port + {00000000-0000-0000-0020-000000000252}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000019}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000028}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000146}, !- Handle + Coil Heating Water 7 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000253}, !- Inlet Port + {00000000-0000-0000-0020-000000000254}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000020}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000029}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000147}, !- Handle + Coil Heating Water 8 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000265}, !- Inlet Port + {00000000-0000-0000-0020-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000021}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000032}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000148}, !- Handle + Coil Heating Water 8 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000267}, !- Inlet Port + {00000000-0000-0000-0020-000000000268}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000022}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000034}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000149}, !- Handle + Coil Heating Water 9 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000279}, !- Inlet Port + {00000000-0000-0000-0020-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000023}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000039}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000150}, !- Handle + Coil Heating Water 9 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000281}, !- Inlet Port + {00000000-0000-0000-0020-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000024}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000041}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000151}, !- Handle + Coil Heating Water Baseboard 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000052}, !- Inlet Port + {00000000-0000-0000-0020-000000000086}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000025}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000026}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000152}, !- Handle + Coil Heating Water Baseboard 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000087}, !- Inlet Port + {00000000-0000-0000-0020-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000026}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000092}, !- Inlet Port - {00000000-0000-0000-0020-000000000093}; !- Outlet Port + {00000000-0000-0000-0053-000000000153}, !- Handle + Coil Heating Water Baseboard 10 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000335}, !- Inlet Port + {00000000-0000-0000-0020-000000000336}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000027}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000094}, !- Inlet Port - {00000000-0000-0000-0020-000000000089}; !- Outlet Port + {00000000-0000-0000-0053-000000000154}, !- Handle + Coil Heating Water Baseboard 10 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000337}, !- Inlet Port + {00000000-0000-0000-0020-000000000338}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000028}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000182}, !- Inlet Port - {00000000-0000-0000-0020-000000000183}; !- Outlet Port + {00000000-0000-0000-0053-000000000155}, !- Handle + Coil Heating Water Baseboard 11 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000349}, !- Inlet Port + {00000000-0000-0000-0020-000000000350}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000029}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000184}, !- Inlet Port - {00000000-0000-0000-0020-000000000179}; !- Outlet Port + {00000000-0000-0000-0053-000000000156}, !- Handle + Coil Heating Water Baseboard 11 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000351}, !- Inlet Port + {00000000-0000-0000-0020-000000000352}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000030}, !- Handle - Chilled Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000098}, !- Inlet Port - {00000000-0000-0000-0020-000000000099}; !- Outlet Port + {00000000-0000-0000-0053-000000000157}, !- Handle + Coil Heating Water Baseboard 12 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000363}, !- Inlet Port + {00000000-0000-0000-0020-000000000364}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000031}, !- Handle - Chilled Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000101}, !- Inlet Port - {00000000-0000-0000-0020-000000000102}; !- Outlet Port + {00000000-0000-0000-0053-000000000158}, !- Handle + Coil Heating Water Baseboard 12 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000365}, !- Inlet Port + {00000000-0000-0000-0020-000000000366}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000032}, !- Handle - Chilled Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000095}, !- Inlet Port - {00000000-0000-0000-0020-000000000103}; !- Outlet Port + {00000000-0000-0000-0053-000000000159}, !- Handle + Coil Heating Water Baseboard 13 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000377}, !- Inlet Port + {00000000-0000-0000-0020-000000000378}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000033}, !- Handle - Chilled Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000119}, !- Inlet Port - {00000000-0000-0000-0020-000000000097}; !- Outlet Port + {00000000-0000-0000-0053-000000000160}, !- Handle + Coil Heating Water Baseboard 13 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000379}, !- Inlet Port + {00000000-0000-0000-0020-000000000380}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000034}, !- Handle - Coil Cooling Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000100}, !- Inlet Port - {00000000-0000-0000-0020-000000000158}; !- Outlet Port + {00000000-0000-0000-0053-000000000161}, !- Handle + Coil Heating Water Baseboard 14 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000391}, !- Inlet Port + {00000000-0000-0000-0020-000000000392}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000035}, !- Handle - Coil Cooling Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000164}, !- Inlet Port - {00000000-0000-0000-0020-000000000165}; !- Outlet Port + {00000000-0000-0000-0053-000000000162}, !- Handle + Coil Heating Water Baseboard 14 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000393}, !- Inlet Port + {00000000-0000-0000-0020-000000000394}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000036}, !- Handle - Coil Cooling Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000159}, !- Inlet Port - {00000000-0000-0000-0020-000000000160}; !- Outlet Port + {00000000-0000-0000-0053-000000000163}, !- Handle + Coil Heating Water Baseboard 15 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000429}, !- Inlet Port + {00000000-0000-0000-0020-000000000430}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000037}, !- Handle - Coil Heating Gas 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000079}, !- Inlet Port - {00000000-0000-0000-0020-000000000080}; !- Outlet Port + {00000000-0000-0000-0053-000000000164}, !- Handle + Coil Heating Water Baseboard 15 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000431}, !- Inlet Port + {00000000-0000-0000-0020-000000000432}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000038}, !- Handle - Coil Heating Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000154}, !- Inlet Port - {00000000-0000-0000-0020-000000000155}; !- Outlet Port + {00000000-0000-0000-0053-000000000165}, !- Handle + Coil Heating Water Baseboard 16 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000443}, !- Inlet Port + {00000000-0000-0000-0020-000000000444}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000039}, !- Handle - Coil Heating Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000162}, !- Inlet Port - {00000000-0000-0000-0020-000000000163}; !- Outlet Port + {00000000-0000-0000-0053-000000000166}, !- Handle + Coil Heating Water Baseboard 16 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000445}, !- Inlet Port + {00000000-0000-0000-0020-000000000446}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000040}, !- Handle - Coil Heating Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000156}, !- Inlet Port - {00000000-0000-0000-0020-000000000157}; !- Outlet Port + {00000000-0000-0000-0053-000000000167}, !- Handle + Coil Heating Water Baseboard 17 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000457}, !- Inlet Port + {00000000-0000-0000-0020-000000000458}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000041}, !- Handle - Coil Heating Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000171}, !- Inlet Port - {00000000-0000-0000-0020-000000000172}; !- Outlet Port + {00000000-0000-0000-0053-000000000168}, !- Handle + Coil Heating Water Baseboard 17 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000459}, !- Inlet Port + {00000000-0000-0000-0020-000000000460}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000042}, !- Handle - Coil Heating Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000173}, !- Inlet Port - {00000000-0000-0000-0020-000000000174}; !- Outlet Port + {00000000-0000-0000-0053-000000000169}, !- Handle + Coil Heating Water Baseboard 18 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000471}, !- Inlet Port + {00000000-0000-0000-0020-000000000472}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000043}, !- Handle - Coil Heating Water Baseboard 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000052}, !- Inlet Port - {00000000-0000-0000-0020-000000000086}; !- Outlet Port + {00000000-0000-0000-0053-000000000170}, !- Handle + Coil Heating Water Baseboard 18 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000473}, !- Inlet Port + {00000000-0000-0000-0020-000000000474}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000044}, !- Handle - Coil Heating Water Baseboard 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000087}, !- Inlet Port - {00000000-0000-0000-0020-000000000088}; !- Outlet Port + {00000000-0000-0000-0053-000000000171}, !- Handle + Coil Heating Water Baseboard 19 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000485}, !- Inlet Port + {00000000-0000-0000-0020-000000000486}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000045}, !- Handle + {00000000-0000-0000-0053-000000000172}, !- Handle + Coil Heating Water Baseboard 19 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000487}, !- Inlet Port + {00000000-0000-0000-0020-000000000488}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000173}, !- Handle Coil Heating Water Baseboard 2 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000175}, !- Inlet Port {00000000-0000-0000-0020-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000046}, !- Handle + {00000000-0000-0000-0053-000000000174}, !- Handle Coil Heating Water Baseboard 2 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000177}, !- Inlet Port {00000000-0000-0000-0020-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000047}, !- Handle - CoilCoolingDXSingleSpeed_dx 111kBtu/hr 9.26EER Outlet Air Node, !- Name + {00000000-0000-0000-0053-000000000175}, !- Handle + Coil Heating Water Baseboard 20 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000499}, !- Inlet Port + {00000000-0000-0000-0020-000000000500}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000176}, !- Handle + Coil Heating Water Baseboard 20 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000501}, !- Inlet Port + {00000000-0000-0000-0020-000000000502}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000177}, !- Handle + Coil Heating Water Baseboard 3 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000213}, !- Inlet Port + {00000000-0000-0000-0020-000000000214}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000178}, !- Handle + Coil Heating Water Baseboard 3 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000215}, !- Inlet Port + {00000000-0000-0000-0020-000000000216}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000179}, !- Handle + Coil Heating Water Baseboard 4 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000227}, !- Inlet Port + {00000000-0000-0000-0020-000000000228}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000180}, !- Handle + Coil Heating Water Baseboard 4 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000229}, !- Inlet Port + {00000000-0000-0000-0020-000000000230}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000181}, !- Handle + Coil Heating Water Baseboard 5 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000241}, !- Inlet Port + {00000000-0000-0000-0020-000000000242}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000182}, !- Handle + Coil Heating Water Baseboard 5 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000243}, !- Inlet Port + {00000000-0000-0000-0020-000000000244}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000183}, !- Handle + Coil Heating Water Baseboard 6 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000255}, !- Inlet Port + {00000000-0000-0000-0020-000000000256}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000184}, !- Handle + Coil Heating Water Baseboard 6 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000257}, !- Inlet Port + {00000000-0000-0000-0020-000000000258}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000185}, !- Handle + Coil Heating Water Baseboard 7 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000269}, !- Inlet Port + {00000000-0000-0000-0020-000000000270}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000186}, !- Handle + Coil Heating Water Baseboard 7 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000271}, !- Inlet Port + {00000000-0000-0000-0020-000000000272}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000187}, !- Handle + Coil Heating Water Baseboard 8 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000283}, !- Inlet Port + {00000000-0000-0000-0020-000000000284}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000188}, !- Handle + Coil Heating Water Baseboard 8 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000285}, !- Inlet Port + {00000000-0000-0000-0020-000000000286}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000189}, !- Handle + Coil Heating Water Baseboard 9 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000321}, !- Inlet Port + {00000000-0000-0000-0020-000000000322}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000190}, !- Handle + Coil Heating Water Baseboard 9 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000323}, !- Inlet Port + {00000000-0000-0000-0020-000000000324}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000191}, !- Handle + CoilCoolingDXSingleSpeed_dx 110kBtu/hr 9.26EER Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000081}, !- Inlet Port {00000000-0000-0000-0020-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000048}, !- Handle + {00000000-0000-0000-0053-000000000192}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000123}, !- Inlet Port {00000000-0000-0000-0020-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000049}, !- Handle + {00000000-0000-0000-0053-000000000193}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000126}, !- Inlet Port {00000000-0000-0000-0020-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000050}, !- Handle + {00000000-0000-0000-0053-000000000194}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000120}, !- Inlet Port {00000000-0000-0000-0020-000000000128}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000051}, !- Handle + {00000000-0000-0000-0053-000000000195}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000140}, !- Inlet Port {00000000-0000-0000-0020-000000000122}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000052}, !- Handle + {00000000-0000-0000-0053-000000000196}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000121}, !- Inlet Port {00000000-0000-0000-0020-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000053}, !- Handle + {00000000-0000-0000-0053-000000000197}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000132}, !- Inlet Port {00000000-0000-0000-0020-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000054}, !- Handle + {00000000-0000-0000-0053-000000000198}, !- Handle Core_bottom WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000211}, !- Inlet Port - {00000000-0000-0000-0020-000000000212}; !- Outlet Port + {00000000-0000-0000-0020-000000000535}, !- Inlet Port + {00000000-0000-0000-0020-000000000536}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000055}, !- Handle + {00000000-0000-0000-0053-000000000199}, !- Handle Core_bottom WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000213}, !- Inlet Port - {00000000-0000-0000-0020-000000000214}; !- Outlet Port + {00000000-0000-0000-0020-000000000537}, !- Inlet Port + {00000000-0000-0000-0020-000000000538}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000056}, !- Handle + {00000000-0000-0000-0053-000000000200}, !- Handle Core_mid WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000215}, !- Inlet Port - {00000000-0000-0000-0020-000000000216}; !- Outlet Port + {00000000-0000-0000-0020-000000000539}, !- Inlet Port + {00000000-0000-0000-0020-000000000540}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000057}, !- Handle + {00000000-0000-0000-0053-000000000201}, !- Handle Core_mid WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000217}, !- Inlet Port - {00000000-0000-0000-0020-000000000218}; !- Outlet Port + {00000000-0000-0000-0020-000000000541}, !- Inlet Port + {00000000-0000-0000-0020-000000000542}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000058}, !- Handle + {00000000-0000-0000-0053-000000000202}, !- Handle Core_top WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000219}, !- Inlet Port - {00000000-0000-0000-0020-000000000220}; !- Outlet Port + {00000000-0000-0000-0020-000000000543}, !- Inlet Port + {00000000-0000-0000-0020-000000000544}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000059}, !- Handle + {00000000-0000-0000-0053-000000000203}, !- Handle Core_top WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000221}, !- Inlet Port - {00000000-0000-0000-0020-000000000222}; !- Outlet Port + {00000000-0000-0000-0020-000000000545}, !- Inlet Port + {00000000-0000-0000-0020-000000000546}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000060}, !- Handle + {00000000-0000-0000-0053-000000000204}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000223}, !- Inlet Port - {00000000-0000-0000-0020-000000000224}; !- Outlet Port + {00000000-0000-0000-0020-000000000547}, !- Inlet Port + {00000000-0000-0000-0020-000000000548}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000061}, !- Handle + {00000000-0000-0000-0053-000000000205}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000225}, !- Inlet Port - {00000000-0000-0000-0020-000000000226}; !- Outlet Port + {00000000-0000-0000-0020-000000000549}, !- Inlet Port + {00000000-0000-0000-0020-000000000550}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000062}, !- Handle + {00000000-0000-0000-0053-000000000206}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000227}, !- Inlet Port - {00000000-0000-0000-0020-000000000228}; !- Outlet Port + {00000000-0000-0000-0020-000000000551}, !- Inlet Port + {00000000-0000-0000-0020-000000000552}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000063}, !- Handle + {00000000-0000-0000-0053-000000000207}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000229}, !- Inlet Port - {00000000-0000-0000-0020-000000000230}; !- Outlet Port + {00000000-0000-0000-0020-000000000553}, !- Inlet Port + {00000000-0000-0000-0020-000000000554}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000064}, !- Handle + {00000000-0000-0000-0053-000000000208}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000231}, !- Inlet Port - {00000000-0000-0000-0020-000000000232}; !- Outlet Port + {00000000-0000-0000-0020-000000000555}, !- Inlet Port + {00000000-0000-0000-0020-000000000556}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000065}, !- Handle + {00000000-0000-0000-0053-000000000209}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000233}, !- Inlet Port - {00000000-0000-0000-0020-000000000234}; !- Outlet Port + {00000000-0000-0000-0020-000000000557}, !- Inlet Port + {00000000-0000-0000-0020-000000000558}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000066}, !- Handle + {00000000-0000-0000-0053-000000000210}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000235}, !- Inlet Port - {00000000-0000-0000-0020-000000000236}; !- Outlet Port + {00000000-0000-0000-0020-000000000559}, !- Inlet Port + {00000000-0000-0000-0020-000000000560}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000067}, !- Handle + {00000000-0000-0000-0053-000000000211}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000237}, !- Inlet Port - {00000000-0000-0000-0020-000000000238}; !- Outlet Port + {00000000-0000-0000-0020-000000000561}, !- Inlet Port + {00000000-0000-0000-0020-000000000562}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000068}, !- Handle + {00000000-0000-0000-0053-000000000212}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000050}, !- Inlet Port {00000000-0000-0000-0020-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000069}, !- Handle + {00000000-0000-0000-0053-000000000213}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000053}, !- Inlet Port {00000000-0000-0000-0020-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000070}, !- Handle + {00000000-0000-0000-0053-000000000214}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000047}, !- Inlet Port {00000000-0000-0000-0020-000000000055}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000071}, !- Handle + {00000000-0000-0000-0053-000000000215}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000071}, !- Inlet Port {00000000-0000-0000-0020-000000000049}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000072}, !- Handle + {00000000-0000-0000-0053-000000000216}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000193}, !- Inlet Port - {00000000-0000-0000-0020-000000000194}; !- Outlet Port + {00000000-0000-0000-0020-000000000517}, !- Inlet Port + {00000000-0000-0000-0020-000000000518}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000073}, !- Handle + {00000000-0000-0000-0053-000000000217}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000188}, !- Inlet Port - {00000000-0000-0000-0020-000000000189}; !- Outlet Port + {00000000-0000-0000-0020-000000000512}, !- Inlet Port + {00000000-0000-0000-0020-000000000513}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000074}, !- Handle + {00000000-0000-0000-0053-000000000218}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000210}, !- Inlet Port - {00000000-0000-0000-0020-000000000191}; !- Outlet Port + {00000000-0000-0000-0020-000000000534}, !- Inlet Port + {00000000-0000-0000-0020-000000000515}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000075}, !- Handle + {00000000-0000-0000-0053-000000000219}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000185}, !- Inlet Port - {00000000-0000-0000-0020-000000000192}; !- Outlet Port + {00000000-0000-0000-0020-000000000509}, !- Inlet Port + {00000000-0000-0000-0020-000000000516}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000076}, !- Handle + {00000000-0000-0000-0053-000000000220}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000207}, !- Inlet Port - {00000000-0000-0000-0020-000000000187}; !- Outlet Port + {00000000-0000-0000-0020-000000000531}, !- Inlet Port + {00000000-0000-0000-0020-000000000511}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000077}, !- Handle + {00000000-0000-0000-0053-000000000221}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000239}, !- Inlet Port - {00000000-0000-0000-0020-000000000240}; !- Outlet Port + {00000000-0000-0000-0020-000000000563}, !- Inlet Port + {00000000-0000-0000-0020-000000000564}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000078}, !- Handle + {00000000-0000-0000-0053-000000000222}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000241}, !- Inlet Port - {00000000-0000-0000-0020-000000000242}; !- Outlet Port + {00000000-0000-0000-0020-000000000565}, !- Inlet Port + {00000000-0000-0000-0020-000000000566}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000079}, !- Handle + {00000000-0000-0000-0053-000000000223}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000243}, !- Inlet Port - {00000000-0000-0000-0020-000000000244}; !- Outlet Port + {00000000-0000-0000-0020-000000000567}, !- Inlet Port + {00000000-0000-0000-0020-000000000568}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000080}, !- Handle + {00000000-0000-0000-0053-000000000224}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000245}, !- Inlet Port - {00000000-0000-0000-0020-000000000246}; !- Outlet Port + {00000000-0000-0000-0020-000000000569}, !- Inlet Port + {00000000-0000-0000-0020-000000000570}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000081}, !- Handle + {00000000-0000-0000-0053-000000000225}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000247}, !- Inlet Port - {00000000-0000-0000-0020-000000000248}; !- Outlet Port + {00000000-0000-0000-0020-000000000571}, !- Inlet Port + {00000000-0000-0000-0020-000000000572}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000082}, !- Handle + {00000000-0000-0000-0053-000000000226}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000249}, !- Inlet Port - {00000000-0000-0000-0020-000000000250}; !- Outlet Port + {00000000-0000-0000-0020-000000000573}, !- Inlet Port + {00000000-0000-0000-0020-000000000574}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000083}, !- Handle + {00000000-0000-0000-0053-000000000227}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000251}, !- Inlet Port - {00000000-0000-0000-0020-000000000252}; !- Outlet Port + {00000000-0000-0000-0020-000000000575}, !- Inlet Port + {00000000-0000-0000-0020-000000000576}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000084}, !- Handle + {00000000-0000-0000-0053-000000000228}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000253}, !- Inlet Port - {00000000-0000-0000-0020-000000000254}; !- Outlet Port + {00000000-0000-0000-0020-000000000577}, !- Inlet Port + {00000000-0000-0000-0020-000000000578}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000085}, !- Handle + {00000000-0000-0000-0053-000000000229}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000255}, !- Inlet Port - {00000000-0000-0000-0020-000000000256}; !- Outlet Port + {00000000-0000-0000-0020-000000000579}, !- Inlet Port + {00000000-0000-0000-0020-000000000580}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000086}, !- Handle + {00000000-0000-0000-0053-000000000230}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000257}, !- Inlet Port - {00000000-0000-0000-0020-000000000258}; !- Outlet Port + {00000000-0000-0000-0020-000000000581}, !- Inlet Port + {00000000-0000-0000-0020-000000000582}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000087}, !- Handle + {00000000-0000-0000-0053-000000000231}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000259}, !- Inlet Port - {00000000-0000-0000-0020-000000000260}; !- Outlet Port + {00000000-0000-0000-0020-000000000583}, !- Inlet Port + {00000000-0000-0000-0020-000000000584}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000088}, !- Handle + {00000000-0000-0000-0053-000000000232}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000261}, !- Inlet Port - {00000000-0000-0000-0020-000000000262}; !- Outlet Port + {00000000-0000-0000-0020-000000000585}, !- Inlet Port + {00000000-0000-0000-0020-000000000586}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000089}, !- Handle + {00000000-0000-0000-0053-000000000233}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000263}, !- Inlet Port - {00000000-0000-0000-0020-000000000264}; !- Outlet Port + {00000000-0000-0000-0020-000000000587}, !- Inlet Port + {00000000-0000-0000-0020-000000000588}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000090}, !- Handle + {00000000-0000-0000-0053-000000000234}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000265}, !- Inlet Port - {00000000-0000-0000-0020-000000000266}; !- Outlet Port + {00000000-0000-0000-0020-000000000589}, !- Inlet Port + {00000000-0000-0000-0020-000000000590}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000091}, !- Handle + {00000000-0000-0000-0053-000000000235}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000267}, !- Inlet Port - {00000000-0000-0000-0020-000000000268}; !- Outlet Port + {00000000-0000-0000-0020-000000000591}, !- Inlet Port + {00000000-0000-0000-0020-000000000592}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000092}, !- Handle + {00000000-0000-0000-0053-000000000236}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000269}, !- Inlet Port - {00000000-0000-0000-0020-000000000270}; !- Outlet Port + {00000000-0000-0000-0020-000000000593}, !- Inlet Port + {00000000-0000-0000-0020-000000000594}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000093}, !- Handle + {00000000-0000-0000-0053-000000000237}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000271}, !- Inlet Port - {00000000-0000-0000-0020-000000000272}; !- Outlet Port + {00000000-0000-0000-0020-000000000595}, !- Inlet Port + {00000000-0000-0000-0020-000000000596}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000094}, !- Handle + {00000000-0000-0000-0053-000000000238}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000273}, !- Inlet Port - {00000000-0000-0000-0020-000000000274}; !- Outlet Port + {00000000-0000-0000-0020-000000000597}, !- Inlet Port + {00000000-0000-0000-0020-000000000598}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000095}, !- Handle + {00000000-0000-0000-0053-000000000239}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000275}, !- Inlet Port - {00000000-0000-0000-0020-000000000276}; !- Outlet Port + {00000000-0000-0000-0020-000000000599}, !- Inlet Port + {00000000-0000-0000-0020-000000000600}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000096}, !- Handle + {00000000-0000-0000-0053-000000000240}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000277}, !- Inlet Port - {00000000-0000-0000-0020-000000000278}; !- Outlet Port + {00000000-0000-0000-0020-000000000601}, !- Inlet Port + {00000000-0000-0000-0020-000000000602}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000097}, !- Handle + {00000000-0000-0000-0053-000000000241}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000279}, !- Inlet Port - {00000000-0000-0000-0020-000000000280}; !- Outlet Port + {00000000-0000-0000-0020-000000000603}, !- Inlet Port + {00000000-0000-0000-0020-000000000604}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000098}, !- Handle + {00000000-0000-0000-0053-000000000242}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000281}, !- Inlet Port - {00000000-0000-0000-0020-000000000282}; !- Outlet Port + {00000000-0000-0000-0020-000000000605}, !- Inlet Port + {00000000-0000-0000-0020-000000000606}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000099}, !- Handle + {00000000-0000-0000-0053-000000000243}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000283}, !- Inlet Port - {00000000-0000-0000-0020-000000000284}; !- Outlet Port + {00000000-0000-0000-0020-000000000607}, !- Inlet Port + {00000000-0000-0000-0020-000000000608}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000100}, !- Handle + {00000000-0000-0000-0053-000000000244}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000285}, !- Inlet Port - {00000000-0000-0000-0020-000000000286}; !- Outlet Port + {00000000-0000-0000-0020-000000000609}, !- Inlet Port + {00000000-0000-0000-0020-000000000610}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000101}, !- Handle + {00000000-0000-0000-0053-000000000245}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000065}, !- Inlet Port {00000000-0000-0000-0020-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000102}, !- Handle + {00000000-0000-0000-0053-000000000246}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000067}, !- Inlet Port {00000000-0000-0000-0020-000000000068}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000103}, !- Handle + {00000000-0000-0000-0053-000000000247}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000208}, !- Inlet Port - {00000000-0000-0000-0020-000000000209}; !- Outlet Port + {00000000-0000-0000-0020-000000000532}, !- Inlet Port + {00000000-0000-0000-0020-000000000533}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000104}, !- Handle + {00000000-0000-0000-0053-000000000248}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000069}, !- Inlet Port {00000000-0000-0000-0020-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000105}, !- Handle + {00000000-0000-0000-0053-000000000249}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000113}, !- Inlet Port {00000000-0000-0000-0020-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000106}, !- Handle + {00000000-0000-0000-0053-000000000250}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000115}, !- Inlet Port {00000000-0000-0000-0020-000000000116}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000107}, !- Handle + {00000000-0000-0000-0053-000000000251}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000117}, !- Inlet Port {00000000-0000-0000-0020-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000108}, !- Handle + {00000000-0000-0000-0053-000000000252}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000134}, !- Inlet Port {00000000-0000-0000-0020-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000109}, !- Handle + {00000000-0000-0000-0053-000000000253}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000136}, !- Inlet Port {00000000-0000-0000-0020-000000000137}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000110}, !- Handle + {00000000-0000-0000-0053-000000000254}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000138}, !- Inlet Port {00000000-0000-0000-0020-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000111}, !- Handle + {00000000-0000-0000-0053-000000000255}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000198}, !- Inlet Port - {00000000-0000-0000-0020-000000000199}; !- Outlet Port + {00000000-0000-0000-0020-000000000522}, !- Inlet Port + {00000000-0000-0000-0020-000000000523}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000112}, !- Handle + {00000000-0000-0000-0053-000000000256}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000200}, !- Inlet Port - {00000000-0000-0000-0020-000000000201}; !- Outlet Port + {00000000-0000-0000-0020-000000000524}, !- Inlet Port + {00000000-0000-0000-0020-000000000525}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000113}, !- Handle + {00000000-0000-0000-0053-000000000257}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000190}, !- Inlet Port - {00000000-0000-0000-0020-000000000202}; !- Outlet Port + {00000000-0000-0000-0020-000000000514}, !- Inlet Port + {00000000-0000-0000-0020-000000000526}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000114}, !- Handle + {00000000-0000-0000-0053-000000000258}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000203}, !- Inlet Port - {00000000-0000-0000-0020-000000000204}; !- Outlet Port + {00000000-0000-0000-0020-000000000527}, !- Inlet Port + {00000000-0000-0000-0020-000000000528}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000115}, !- Handle + {00000000-0000-0000-0053-000000000259}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000205}, !- Inlet Port - {00000000-0000-0000-0020-000000000206}; !- Outlet Port + {00000000-0000-0000-0020-000000000529}, !- Inlet Port + {00000000-0000-0000-0020-000000000530}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000116}, !- Handle - Primary Boiler 319kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0053-000000000260}, !- Handle + Primary Boiler 10431kBtu/hr 0.833 Combustion Eff Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000048}, !- Inlet Port {00000000-0000-0000-0020-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000117}, !- Handle - Primary Boiler 319kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0053-000000000261}, !- Handle + Primary Boiler 10431kBtu/hr 0.833 Combustion Eff Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000059}, !- Inlet Port {00000000-0000-0000-0020-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000118}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0053-000000000262}, !- Handle + Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000125}, !- Inlet Port {00000000-0000-0000-0020-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000119}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0053-000000000263}, !- Handle + Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000142}, !- Inlet Port {00000000-0000-0000-0020-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000120}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0053-000000000264}, !- Handle + Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000096}, !- Inlet Port {00000000-0000-0000-0020-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000121}, !- Handle - Primary Chiller WaterCooled Scroll 5tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0053-000000000265}, !- Handle + Primary Chiller WaterCooled Centrifugal 562tons 0.6kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000107}, !- Inlet Port {00000000-0000-0000-0020-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000122}, !- Handle + {00000000-0000-0000-0053-000000000266}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000056}, !- Inlet Port {00000000-0000-0000-0020-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000123}, !- Handle + {00000000-0000-0000-0053-000000000267}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000104}, !- Inlet Port {00000000-0000-0000-0020-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000124}, !- Handle + {00000000-0000-0000-0053-000000000268}, !- Handle Pump Variable Speed 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000129}, !- Inlet Port {00000000-0000-0000-0020-000000000130}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000125}, !- Handle + {00000000-0000-0000-0053-000000000269}, !- Handle Secondary Boiler 0kBtu/hr 0.85 AFUE Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000061}, !- Inlet Port {00000000-0000-0000-0020-000000000062}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000126}, !- Handle + {00000000-0000-0000-0053-000000000270}, !- Handle Secondary Boiler 0kBtu/hr 0.85 AFUE Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000063}, !- Inlet Port {00000000-0000-0000-0020-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000127}, !- Handle + {00000000-0000-0000-0053-000000000271}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000144}, !- Inlet Port {00000000-0000-0000-0020-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000128}, !- Handle + {00000000-0000-0000-0053-000000000272}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000146}, !- Inlet Port {00000000-0000-0000-0020-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000129}, !- Handle + {00000000-0000-0000-0053-000000000273}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000109}, !- Inlet Port {00000000-0000-0000-0020-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000130}, !- Handle + {00000000-0000-0000-0053-000000000274}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000111}, !- Inlet Port {00000000-0000-0000-0020-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000131}, !- Handle + {00000000-0000-0000-0053-000000000275}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000207}, !- Inlet Port + {00000000-0000-0000-0020-000000000208}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000276}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000315}, !- Inlet Port + {00000000-0000-0000-0020-000000000316}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000277}, !- Handle + Sys6 Return Fan 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000423}, !- Inlet Port + {00000000-0000-0000-0020-000000000424}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000278}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000169}, !- Inlet Port {00000000-0000-0000-0020-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000132}, !- Handle + {00000000-0000-0000-0053-000000000279}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0020-000000000090}, !- Inlet Port {00000000-0000-0000-0020-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000133}, !- Handle + {00000000-0000-0000-0053-000000000280}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0020-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000134}, !- Handle + {00000000-0000-0000-0053-000000000281}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000074}, !- Inlet Port {00000000-0000-0000-0020-000000000076}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000135}, !- Handle + {00000000-0000-0000-0053-000000000282}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000077}, !- Inlet Port {00000000-0000-0000-0020-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000136}, !- Handle + {00000000-0000-0000-0053-000000000283}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000084}, !- Inlet Port {00000000-0000-0000-0020-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000137}, !- Handle + {00000000-0000-0000-0053-000000000284}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0020-000000000287}; !- Outlet Port + {00000000-0000-0000-0020-000000000611}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000138}, !- Handle + {00000000-0000-0000-0053-000000000285}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000292}, !- Inlet Port + {00000000-0000-0000-0020-000000000616}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000139}, !- Handle + {00000000-0000-0000-0053-000000000286}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000072}, !- Inlet Port {00000000-0000-0000-0020-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000140}, !- Handle + {00000000-0000-0000-0053-000000000287}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000078}, !- Inlet Port {00000000-0000-0000-0020-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000141}, !- Handle + {00000000-0000-0000-0053-000000000288}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000288}, !- Inlet Port - {00000000-0000-0000-0020-000000000289}; !- Outlet Port + {00000000-0000-0000-0020-000000000612}, !- Inlet Port + {00000000-0000-0000-0020-000000000613}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000142}, !- Handle + {00000000-0000-0000-0053-000000000289}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000290}, !- Inlet Port - {00000000-0000-0000-0020-000000000291}; !- Outlet Port + {00000000-0000-0000-0020-000000000614}, !- Inlet Port + {00000000-0000-0000-0020-000000000615}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000290}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000187}, !- Inlet Port + {00000000-0000-0000-0020-000000000189}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000291}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000190}, !- Inlet Port + {00000000-0000-0000-0020-000000000188}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000292}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0020-000000000204}, !- Inlet Port + {00000000-0000-0000-0020-000000000205}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000293}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0020-000000000623}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000294}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0020-000000000628}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000295}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000185}, !- Inlet Port + {00000000-0000-0000-0020-000000000206}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000296}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000199}, !- Inlet Port + {00000000-0000-0000-0020-000000000186}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000297}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000295}, !- Inlet Port + {00000000-0000-0000-0020-000000000297}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000298}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000298}, !- Inlet Port + {00000000-0000-0000-0020-000000000296}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000299}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0020-000000000312}, !- Inlet Port + {00000000-0000-0000-0020-000000000313}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000300}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0020-000000000629}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000301}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0020-000000000634}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000302}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000293}, !- Inlet Port + {00000000-0000-0000-0020-000000000314}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000303}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000307}, !- Inlet Port + {00000000-0000-0000-0020-000000000294}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000304}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000403}, !- Inlet Port + {00000000-0000-0000-0020-000000000405}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000305}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000406}, !- Inlet Port + {00000000-0000-0000-0020-000000000404}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000306}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Mixed Air Node, !- Name + {00000000-0000-0000-0020-000000000420}, !- Inlet Port + {00000000-0000-0000-0020-000000000421}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000307}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0020-000000000635}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000308}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Relief Air Node, !- Name + {00000000-0000-0000-0020-000000000640}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000309}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000401}, !- Inlet Port + {00000000-0000-0000-0020-000000000422}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000310}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000415}, !- Inlet Port + {00000000-0000-0000-0020-000000000402}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000143}, !- Handle + {00000000-0000-0000-0053-000000000311}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000150}, !- Inlet Port {00000000-0000-0000-0020-000000000152}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000144}, !- Handle + {00000000-0000-0000-0053-000000000312}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000153}, !- Inlet Port {00000000-0000-0000-0020-000000000151}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000145}, !- Handle + {00000000-0000-0000-0053-000000000313}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000166}, !- Inlet Port {00000000-0000-0000-0020-000000000167}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000146}, !- Handle + {00000000-0000-0000-0053-000000000314}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0020-000000000293}; !- Outlet Port + {00000000-0000-0000-0020-000000000617}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000147}, !- Handle + {00000000-0000-0000-0053-000000000315}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000298}, !- Inlet Port + {00000000-0000-0000-0020-000000000622}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000148}, !- Handle + {00000000-0000-0000-0053-000000000316}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000148}, !- Inlet Port {00000000-0000-0000-0020-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000149}, !- Handle + {00000000-0000-0000-0053-000000000317}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000161}, !- Inlet Port {00000000-0000-0000-0020-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000150}, !- Handle + {00000000-0000-0000-0053-000000000318}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000624}, !- Inlet Port + {00000000-0000-0000-0020-000000000625}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000319}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000626}, !- Inlet Port + {00000000-0000-0000-0020-000000000627}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000320}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000630}, !- Inlet Port + {00000000-0000-0000-0020-000000000631}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000321}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000632}, !- Inlet Port + {00000000-0000-0000-0020-000000000633}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000322}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000636}, !- Inlet Port + {00000000-0000-0000-0020-000000000637}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000323}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000638}, !- Inlet Port + {00000000-0000-0000-0020-000000000639}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000324}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000294}, !- Inlet Port - {00000000-0000-0000-0020-000000000295}; !- Outlet Port + {00000000-0000-0000-0020-000000000618}, !- Inlet Port + {00000000-0000-0000-0020-000000000619}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000151}, !- Handle + {00000000-0000-0000-0053-000000000325}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000296}, !- Inlet Port - {00000000-0000-0000-0020-000000000297}; !- Outlet Port + {00000000-0000-0000-0020-000000000620}, !- Inlet Port + {00000000-0000-0000-0020-000000000621}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0050-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0051-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People, !- Name - {00000000-0000-0000-0052-000000000001}, !- People Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- People Definition Name + {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0062-000000000023}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0066-000000000026}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0051-000000000002}, !- Handle + {00000000-0000-0000-0055-000000000002}, !- Handle Space Function Office open plan People, !- Name - {00000000-0000-0000-0052-000000000002}, !- People Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000002}, !- People Definition Name + {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0062-000000000023}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0066-000000000026}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0052-000000000001}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -5181,7 +10893,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0052-000000000002}, !- Handle + {00000000-0000-0000-0056-000000000002}, !- Handle Space Function Office open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -5190,67 +10902,67 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0020-000000000066}, !- Inlet Node Name {00000000-0000-0000-0020-000000000067}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0020-000000000209}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000210}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000533}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000534}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000003}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0020-000000000070}, !- Inlet Node Name {00000000-0000-0000-0020-000000000071}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000004}, !- Handle + {00000000-0000-0000-0057-000000000004}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0020-000000000114}, !- Inlet Node Name {00000000-0000-0000-0020-000000000115}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000005}, !- Handle + {00000000-0000-0000-0057-000000000005}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0020-000000000118}, !- Inlet Node Name {00000000-0000-0000-0020-000000000119}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000006}, !- Handle + {00000000-0000-0000-0057-000000000006}, !- Handle Pipe Adiabatic 5, !- Name {00000000-0000-0000-0020-000000000135}, !- Inlet Node Name {00000000-0000-0000-0020-000000000136}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000007}, !- Handle + {00000000-0000-0000-0057-000000000007}, !- Handle Pipe Adiabatic 6, !- Name {00000000-0000-0000-0020-000000000139}, !- Inlet Node Name {00000000-0000-0000-0020-000000000140}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000008}, !- Handle + {00000000-0000-0000-0057-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0020-000000000199}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000200}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000523}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000524}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000009}, !- Handle + {00000000-0000-0000-0057-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0020-000000000202}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000203}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000526}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000527}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000010}, !- Handle + {00000000-0000-0000-0057-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0020-000000000206}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000207}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000530}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000531}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -5258,7 +10970,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000033}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0053-000000000087}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5272,7 +10984,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5286,7 +10998,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -5294,7 +11006,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000051}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0053-000000000195}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5308,7 +11020,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5322,7 +11034,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000005}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000003}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Handle Hot Water Loop, !- Name Water, !- Fluid Type 0, !- Glycol Concentration @@ -5330,7 +11042,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000071}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0053-000000000215}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5344,7 +11056,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5358,7 +11070,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000004}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -5366,21 +11078,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000076}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0053-000000000220}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0020-000000000185}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0020-000000000187}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0020-000000000509}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0020-000000000511}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0020-000000000188}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0020-000000000191}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000512}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0020-000000000515}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5394,290 +11106,326 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000007}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0055-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000010}; !- HVAC Component + {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- HVAC Component + {00000000-0000-0000-0020-000000000287}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000002}, !- Handle - {00000000-0000-0000-0090-000000000010}; !- HVAC Component + {00000000-0000-0000-0059-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000003}, !- Handle - {00000000-0000-0000-0090-000000000010}; !- HVAC Component + {00000000-0000-0000-0059-000000000003}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- HVAC Component + {00000000-0000-0000-0020-000000000288}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000004}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0059-000000000004}, !- Handle + {00000000-0000-0000-0094-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000005}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0059-000000000005}, !- Handle + {00000000-0000-0000-0094-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000006}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0059-000000000006}, !- Handle + {00000000-0000-0000-0094-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000007}, !- Handle - {00000000-0000-0000-0090-000000000022}; !- HVAC Component + {00000000-0000-0000-0059-000000000007}, !- Handle + {00000000-0000-0000-0094-000000000022}, !- HVAC Component + {00000000-0000-0000-0020-000000000503}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000008}, !- Handle - {00000000-0000-0000-0090-000000000022}; !- HVAC Component + {00000000-0000-0000-0059-000000000008}, !- Handle + {00000000-0000-0000-0094-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000009}, !- Handle - {00000000-0000-0000-0090-000000000022}; !- HVAC Component + {00000000-0000-0000-0059-000000000009}, !- Handle + {00000000-0000-0000-0094-000000000022}, !- HVAC Component + {00000000-0000-0000-0020-000000000504}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000010}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0059-000000000010}, !- Handle + {00000000-0000-0000-0094-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000011}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0059-000000000011}, !- Handle + {00000000-0000-0000-0094-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000012}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0059-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000013}, !- Handle - {00000000-0000-0000-0090-000000000016}; !- HVAC Component + {00000000-0000-0000-0059-000000000013}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- HVAC Component + {00000000-0000-0000-0020-000000000395}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000014}, !- Handle - {00000000-0000-0000-0090-000000000016}; !- HVAC Component + {00000000-0000-0000-0059-000000000014}, !- Handle + {00000000-0000-0000-0094-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000015}, !- Handle - {00000000-0000-0000-0090-000000000016}; !- HVAC Component + {00000000-0000-0000-0059-000000000015}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- HVAC Component + {00000000-0000-0000-0020-000000000396}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000016}, !- Handle - {00000000-0000-0000-0090-000000000017}; !- HVAC Component + {00000000-0000-0000-0059-000000000016}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- HVAC Component + {00000000-0000-0000-0020-000000000461}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000017}, !- Handle - {00000000-0000-0000-0090-000000000017}; !- HVAC Component + {00000000-0000-0000-0059-000000000017}, !- Handle + {00000000-0000-0000-0094-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000018}, !- Handle - {00000000-0000-0000-0090-000000000017}; !- HVAC Component + {00000000-0000-0000-0059-000000000018}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- HVAC Component + {00000000-0000-0000-0020-000000000462}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000019}, !- Handle - {00000000-0000-0000-0090-000000000005}; !- HVAC Component + {00000000-0000-0000-0059-000000000019}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- HVAC Component + {00000000-0000-0000-0020-000000000231}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000020}, !- Handle - {00000000-0000-0000-0090-000000000005}; !- HVAC Component + {00000000-0000-0000-0059-000000000020}, !- Handle + {00000000-0000-0000-0094-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000021}, !- Handle - {00000000-0000-0000-0090-000000000005}; !- HVAC Component + {00000000-0000-0000-0059-000000000021}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- HVAC Component + {00000000-0000-0000-0020-000000000232}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000022}, !- Handle - {00000000-0000-0000-0090-000000000006}; !- HVAC Component + {00000000-0000-0000-0059-000000000022}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- HVAC Component + {00000000-0000-0000-0020-000000000259}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000023}, !- Handle - {00000000-0000-0000-0090-000000000006}; !- HVAC Component + {00000000-0000-0000-0059-000000000023}, !- Handle + {00000000-0000-0000-0094-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000024}, !- Handle - {00000000-0000-0000-0090-000000000006}; !- HVAC Component + {00000000-0000-0000-0059-000000000024}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- HVAC Component + {00000000-0000-0000-0020-000000000260}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000025}, !- Handle - {00000000-0000-0000-0090-000000000018}; !- HVAC Component + {00000000-0000-0000-0059-000000000025}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- HVAC Component + {00000000-0000-0000-0020-000000000475}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000026}, !- Handle - {00000000-0000-0000-0090-000000000018}; !- HVAC Component + {00000000-0000-0000-0059-000000000026}, !- Handle + {00000000-0000-0000-0094-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000027}, !- Handle - {00000000-0000-0000-0090-000000000018}; !- HVAC Component + {00000000-0000-0000-0059-000000000027}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- HVAC Component + {00000000-0000-0000-0020-000000000476}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000028}, !- Handle - {00000000-0000-0000-0090-000000000011}; !- HVAC Component + {00000000-0000-0000-0059-000000000028}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- HVAC Component + {00000000-0000-0000-0020-000000000367}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000029}, !- Handle - {00000000-0000-0000-0090-000000000011}; !- HVAC Component + {00000000-0000-0000-0059-000000000029}, !- Handle + {00000000-0000-0000-0094-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000030}, !- Handle - {00000000-0000-0000-0090-000000000011}; !- HVAC Component + {00000000-0000-0000-0059-000000000030}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- HVAC Component + {00000000-0000-0000-0020-000000000368}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000031}, !- Handle - {00000000-0000-0000-0090-000000000019}; !- HVAC Component + {00000000-0000-0000-0059-000000000031}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- HVAC Component + {00000000-0000-0000-0020-000000000447}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000032}, !- Handle - {00000000-0000-0000-0090-000000000019}; !- HVAC Component + {00000000-0000-0000-0059-000000000032}, !- Handle + {00000000-0000-0000-0094-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000033}, !- Handle - {00000000-0000-0000-0090-000000000019}; !- HVAC Component + {00000000-0000-0000-0059-000000000033}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- HVAC Component + {00000000-0000-0000-0020-000000000448}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000034}, !- Handle - {00000000-0000-0000-0090-000000000012}; !- HVAC Component + {00000000-0000-0000-0059-000000000034}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- HVAC Component + {00000000-0000-0000-0020-000000000353}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000035}, !- Handle - {00000000-0000-0000-0090-000000000012}; !- HVAC Component + {00000000-0000-0000-0059-000000000035}, !- Handle + {00000000-0000-0000-0094-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000036}, !- Handle - {00000000-0000-0000-0090-000000000012}; !- HVAC Component + {00000000-0000-0000-0059-000000000036}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- HVAC Component + {00000000-0000-0000-0020-000000000354}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000037}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- HVAC Component + {00000000-0000-0000-0059-000000000037}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000179}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000038}, !- Handle - {00000000-0000-0000-0090-000000000004}; !- HVAC Component + {00000000-0000-0000-0059-000000000038}, !- Handle + {00000000-0000-0000-0094-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000039}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- HVAC Component + {00000000-0000-0000-0059-000000000039}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000180}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000040}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0059-000000000040}, !- Handle + {00000000-0000-0000-0094-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000041}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0059-000000000041}, !- Handle + {00000000-0000-0000-0094-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000042}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0059-000000000042}, !- Handle + {00000000-0000-0000-0094-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000043}, !- Handle - {00000000-0000-0000-0090-000000000007}; !- HVAC Component + {00000000-0000-0000-0059-000000000043}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- HVAC Component + {00000000-0000-0000-0020-000000000217}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000044}, !- Handle - {00000000-0000-0000-0090-000000000007}; !- HVAC Component + {00000000-0000-0000-0059-000000000044}, !- Handle + {00000000-0000-0000-0094-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000045}, !- Handle - {00000000-0000-0000-0090-000000000007}; !- HVAC Component + {00000000-0000-0000-0059-000000000045}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- HVAC Component + {00000000-0000-0000-0020-000000000218}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000046}, !- Handle - {00000000-0000-0000-0090-000000000020}; !- HVAC Component + {00000000-0000-0000-0059-000000000046}, !- Handle + {00000000-0000-0000-0094-000000000020}, !- HVAC Component + {00000000-0000-0000-0020-000000000489}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000047}, !- Handle - {00000000-0000-0000-0090-000000000020}; !- HVAC Component + {00000000-0000-0000-0059-000000000047}, !- Handle + {00000000-0000-0000-0094-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000048}, !- Handle - {00000000-0000-0000-0090-000000000020}; !- HVAC Component + {00000000-0000-0000-0059-000000000048}, !- Handle + {00000000-0000-0000-0094-000000000020}, !- HVAC Component + {00000000-0000-0000-0020-000000000490}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000049}, !- Handle - {00000000-0000-0000-0090-000000000013}; !- HVAC Component + {00000000-0000-0000-0059-000000000049}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- HVAC Component + {00000000-0000-0000-0020-000000000339}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000050}, !- Handle - {00000000-0000-0000-0090-000000000013}; !- HVAC Component + {00000000-0000-0000-0059-000000000050}, !- Handle + {00000000-0000-0000-0094-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000051}, !- Handle - {00000000-0000-0000-0090-000000000013}; !- HVAC Component + {00000000-0000-0000-0059-000000000051}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- HVAC Component + {00000000-0000-0000-0020-000000000340}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000052}, !- Handle - {00000000-0000-0000-0090-000000000021}; !- HVAC Component + {00000000-0000-0000-0059-000000000052}, !- Handle + {00000000-0000-0000-0094-000000000021}, !- HVAC Component + {00000000-0000-0000-0020-000000000433}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000053}, !- Handle - {00000000-0000-0000-0090-000000000021}; !- HVAC Component + {00000000-0000-0000-0059-000000000053}, !- Handle + {00000000-0000-0000-0094-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000054}, !- Handle - {00000000-0000-0000-0090-000000000021}; !- HVAC Component + {00000000-0000-0000-0059-000000000054}, !- Handle + {00000000-0000-0000-0094-000000000021}, !- HVAC Component + {00000000-0000-0000-0020-000000000434}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000055}, !- Handle - {00000000-0000-0000-0090-000000000014}; !- HVAC Component + {00000000-0000-0000-0059-000000000055}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- HVAC Component + {00000000-0000-0000-0020-000000000325}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000056}, !- Handle - {00000000-0000-0000-0090-000000000014}; !- HVAC Component + {00000000-0000-0000-0059-000000000056}, !- Handle + {00000000-0000-0000-0094-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000057}, !- Handle - {00000000-0000-0000-0090-000000000014}; !- HVAC Component + {00000000-0000-0000-0059-000000000057}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- HVAC Component + {00000000-0000-0000-0020-000000000326}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000058}, !- Handle - {00000000-0000-0000-0090-000000000008}; !- HVAC Component + {00000000-0000-0000-0059-000000000058}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- HVAC Component + {00000000-0000-0000-0020-000000000273}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000059}, !- Handle - {00000000-0000-0000-0090-000000000008}; !- HVAC Component + {00000000-0000-0000-0059-000000000059}, !- Handle + {00000000-0000-0000-0094-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000060}, !- Handle - {00000000-0000-0000-0090-000000000008}; !- HVAC Component + {00000000-0000-0000-0059-000000000060}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- HVAC Component + {00000000-0000-0000-0020-000000000274}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000061}, !- Handle - {00000000-0000-0000-0090-000000000015}; !- HVAC Component + {00000000-0000-0000-0059-000000000061}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- HVAC Component + {00000000-0000-0000-0020-000000000381}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000062}, !- Handle - {00000000-0000-0000-0090-000000000015}; !- HVAC Component + {00000000-0000-0000-0059-000000000062}, !- Handle + {00000000-0000-0000-0094-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000063}, !- Handle - {00000000-0000-0000-0090-000000000015}; !- HVAC Component + {00000000-0000-0000-0059-000000000063}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- HVAC Component + {00000000-0000-0000-0020-000000000382}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000064}, !- Handle - {00000000-0000-0000-0090-000000000009}; !- HVAC Component + {00000000-0000-0000-0059-000000000064}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- HVAC Component + {00000000-0000-0000-0020-000000000245}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000065}, !- Handle - {00000000-0000-0000-0090-000000000009}; !- HVAC Component + {00000000-0000-0000-0059-000000000065}, !- Handle + {00000000-0000-0000-0094-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000066}, !- Handle - {00000000-0000-0000-0090-000000000009}; !- HVAC Component + {00000000-0000-0000-0059-000000000066}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- HVAC Component + {00000000-0000-0000-0020-000000000246}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000067}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- HVAC Component + {00000000-0000-0000-0059-000000000067}, !- Handle + {00000000-0000-0000-0094-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000089}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000068}, !- Handle - {00000000-0000-0000-0090-000000000023}; !- HVAC Component + {00000000-0000-0000-0059-000000000068}, !- Handle + {00000000-0000-0000-0094-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000069}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- HVAC Component + {00000000-0000-0000-0059-000000000069}, !- Handle + {00000000-0000-0000-0094-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000090}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0020-000000000192}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000193}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000516}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000517}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 742176.159809915, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -5696,14 +11444,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0020-000000000055}, !- Inlet Node Name {00000000-0000-0000-0020-000000000056}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 200710.224008028, !- Rated Pump Head {Pa} + 216907.891208676, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.924, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5729,14 +11477,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0057-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0020-000000000103}, !- Inlet Node Name {00000000-0000-0000-0020-000000000104}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 234161.928009366, !- Rated Pump Head {Pa} + 256345.689610254, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.936, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5762,14 +11510,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0057-000000000003}, !- Handle + {00000000-0000-0000-0061-000000000003}, !- Handle Pump Variable Speed 3, !- Name {00000000-0000-0000-0020-000000000128}, !- Inlet Node Name {00000000-0000-0000-0020-000000000129}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 200710.224008028, !- Rated Pump Head {Pa} + 223011.36000892, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.95, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5795,322 +11543,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0062-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000003}, !- Handle + {00000000-0000-0000-0062-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000005}, !- Handle + {00000000-0000-0000-0062-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000006}, !- Handle + {00000000-0000-0000-0062-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000007}, !- Handle + {00000000-0000-0000-0062-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000008}, !- Handle + {00000000-0000-0000-0062-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000009}, !- Handle + {00000000-0000-0000-0062-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000010}, !- Handle + {00000000-0000-0000-0062-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000011}, !- Handle + {00000000-0000-0000-0062-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000012}, !- Handle + {00000000-0000-0000-0062-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000013}, !- Handle + {00000000-0000-0000-0062-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000014}, !- Handle + {00000000-0000-0000-0062-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000015}, !- Handle + {00000000-0000-0000-0062-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000016}, !- Handle + {00000000-0000-0000-0062-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000017}, !- Handle + {00000000-0000-0000-0062-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000018}, !- Handle + {00000000-0000-0000-0062-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000019}, !- Handle + {00000000-0000-0000-0062-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000020}, !- Handle + {00000000-0000-0000-0062-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000021}, !- Handle + {00000000-0000-0000-0062-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000022}, !- Handle + {00000000-0000-0000-0062-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000023}, !- Handle + {00000000-0000-0000-0062-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000024}, !- Handle + {00000000-0000-0000-0062-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000025}, !- Handle + {00000000-0000-0000-0062-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000026}, !- Handle + {00000000-0000-0000-0062-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000027}, !- Handle + {00000000-0000-0000-0062-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000028}, !- Handle + {00000000-0000-0000-0062-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000029}, !- Handle + {00000000-0000-0000-0062-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000030}, !- Handle + {00000000-0000-0000-0062-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000031}, !- Handle + {00000000-0000-0000-0062-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000032}, !- Handle + {00000000-0000-0000-0062-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000033}, !- Handle + {00000000-0000-0000-0062-000000000033}, !- Handle Space Function Electrical/Mechanical room-sch-A 1, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000034}, !- Handle + {00000000-0000-0000-0062-000000000034}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000035}, !- Handle + {00000000-0000-0000-0062-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000036}, !- Handle + {00000000-0000-0000-0062-000000000036}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000037}, !- Handle + {00000000-0000-0000-0062-000000000037}, !- Handle Space Function Office open plan 1, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000038}, !- Handle + {00000000-0000-0000-0062-000000000038}, !- Handle Space Function Office open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000039}, !- Handle + {00000000-0000-0000-0062-000000000039}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0063-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000002}, !- Handle + {00000000-0000-0000-0064-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000003}, !- Handle + {00000000-0000-0000-0064-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000004}, !- Handle + {00000000-0000-0000-0064-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000005}, !- Handle + {00000000-0000-0000-0064-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6119,36 +11867,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000006}, !- Handle + {00000000-0000-0000-0064-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000007}, !- Handle + {00000000-0000-0000-0064-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000008}, !- Handle + {00000000-0000-0000-0064-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000009}, !- Handle + {00000000-0000-0000-0064-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6173,9 +11921,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000010}, !- Handle + {00000000-0000-0000-0064-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6200,27 +11948,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000011}, !- Handle + {00000000-0000-0000-0064-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000012}, !- Handle + {00000000-0000-0000-0064-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000013}, !- Handle + {00000000-0000-0000-0064-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6251,9 +11999,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000014}, !- Handle + {00000000-0000-0000-0064-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6284,27 +12032,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000015}, !- Handle + {00000000-0000-0000-0064-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000016}, !- Handle + {00000000-0000-0000-0064-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000017}, !- Handle + {00000000-0000-0000-0064-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6338,9 +12086,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000018}, !- Handle + {00000000-0000-0000-0064-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6374,27 +12122,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000019}, !- Handle + {00000000-0000-0000-0064-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000020}, !- Handle + {00000000-0000-0000-0064-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000021}, !- Handle + {00000000-0000-0000-0064-000000000021}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Default|Wkdy-Light Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6425,9 +12173,9 @@ OS:Schedule:Day, 0.0383; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000022}, !- Handle + {00000000-0000-0000-0064-000000000022}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Light Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6458,27 +12206,27 @@ OS:Schedule:Day, 0.0383; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000023}, !- Handle + {00000000-0000-0000-0064-000000000023}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Sat-Light Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.0383; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000024}, !- Handle + {00000000-0000-0000-0064-000000000024}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Sun|Hol-Light Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.0383; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000025}, !- Handle + {00000000-0000-0000-0064-000000000025}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6509,9 +12257,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000026}, !- Handle + {00000000-0000-0000-0064-000000000026}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6542,27 +12290,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000027}, !- Handle + {00000000-0000-0000-0064-000000000027}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000028}, !- Handle + {00000000-0000-0000-0064-000000000028}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000029}, !- Handle + {00000000-0000-0000-0064-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6575,9 +12323,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000030}, !- Handle + {00000000-0000-0000-0064-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6590,27 +12338,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000031}, !- Handle + {00000000-0000-0000-0064-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000032}, !- Handle + {00000000-0000-0000-0064-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000033}, !- Handle + {00000000-0000-0000-0064-000000000033}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6626,9 +12374,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000034}, !- Handle + {00000000-0000-0000-0064-000000000034}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6644,52 +12392,52 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000035}, !- Handle + {00000000-0000-0000-0064-000000000035}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000036}, !- Handle + {00000000-0000-0000-0064-000000000036}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000037}, !- Handle + {00000000-0000-0000-0064-000000000037}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000038}, !- Handle + {00000000-0000-0000-0064-000000000038}, !- Handle NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000039}, !- Handle + {00000000-0000-0000-0064-000000000039}, !- Handle NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000040}, !- Handle + {00000000-0000-0000-0064-000000000040}, !- Handle Schedule Day 1, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6698,16 +12446,70 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000041}, !- Handle + {00000000-0000-0000-0064-000000000041}, !- Handle Schedule Day 10, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000042}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000043}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000044}, !- Handle + Schedule Day 13, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000045}, !- Handle + Schedule Day 14, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000042}, !- Handle + {00000000-0000-0000-0064-000000000046}, !- Handle + Schedule Day 15, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000047}, !- Handle + Schedule Day 16, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000048}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6716,9 +12518,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000043}, !- Handle + {00000000-0000-0000-0064-000000000049}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6794,9 +12596,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000044}, !- Handle + {00000000-0000-0000-0064-000000000050}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6872,90 +12674,117 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000045}, !- Handle + {00000000-0000-0000-0064-000000000051}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000046}, !- Handle + {00000000-0000-0000-0064-000000000052}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000047}, !- Handle + {00000000-0000-0000-0064-000000000053}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000048}, !- Handle + {00000000-0000-0000-0064-000000000054}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000055}, !- Handle + Schedule Day 9, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000056}, !- Handle + Service Water Loop Temp - 140F Default, !- Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 60; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000057}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000049}, !- Handle - Schedule Day 9, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000058}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000050}, !- Handle - Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000059}, !- Handle + Supply Air Temp Default 3, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 60; !- Value Until Time 1 + 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000051}, !- Handle + {00000000-0000-0000-0064-000000000060}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000052}, !- Handle + {00000000-0000-0000-0064-000000000061}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000053}, !- Handle + {00000000-0000-0000-0064-000000000062}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000054}, !- Handle + {00000000-0000-0000-0064-000000000063}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7031,9 +12860,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000055}, !- Handle + {00000000-0000-0000-0064-000000000064}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7109,9 +12938,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000056}, !- Handle + {00000000-0000-0000-0064-000000000065}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7187,9 +13016,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000057}, !- Handle + {00000000-0000-0000-0064-000000000066}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7265,9 +13094,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000058}, !- Handle + {00000000-0000-0000-0064-000000000067}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7343,9 +13172,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000059}, !- Handle + {00000000-0000-0000-0064-000000000068}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7421,9 +13250,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000060}, !- Handle + {00000000-0000-0000-0064-000000000069}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7499,9 +13328,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000061}, !- Handle + {00000000-0000-0000-0064-000000000070}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7577,9 +13406,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000062}, !- Handle + {00000000-0000-0000-0064-000000000071}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -7592,27 +13421,126 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000063}, !- Handle + {00000000-0000-0000-0064-000000000072}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000064}, !- Handle + {00000000-0000-0000-0064-000000000073}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000074}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000075}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000076}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000077}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000078}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000079}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000080}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Default, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000081}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000082}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000065}, !- Handle + {00000000-0000-0000-0064-000000000083}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -7625,27 +13553,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000066}, !- Handle + {00000000-0000-0000-0064-000000000084}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000067}, !- Handle + {00000000-0000-0000-0064-000000000085}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000068}, !- Handle + {00000000-0000-0000-0064-000000000086}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7721,9 +13649,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000069}, !- Handle + {00000000-0000-0000-0064-000000000087}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7799,9 +13727,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000070}, !- Handle + {00000000-0000-0000-0064-000000000088}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7877,9 +13805,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000071}, !- Handle + {00000000-0000-0000-0064-000000000089}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7955,11 +13883,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0062-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7974,11 +13902,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0065-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7993,11 +13921,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000003}, !- Handle + {00000000-0000-0000-0065-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0062-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000016}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000034}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000034}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8012,11 +13940,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000004}, !- Handle + {00000000-0000-0000-0065-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0062-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000016}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000035}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000035}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8031,11 +13959,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000005}, !- Handle + {00000000-0000-0000-0065-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0062-000000000016}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000016}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000036}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000036}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8050,11 +13978,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000006}, !- Handle + {00000000-0000-0000-0065-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8069,11 +13997,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000007}, !- Handle + {00000000-0000-0000-0065-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8088,11 +14016,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000008}, !- Handle + {00000000-0000-0000-0065-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8107,11 +14035,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000009}, !- Handle + {00000000-0000-0000-0065-000000000009}, !- Handle Schedule Rule 17, !- Name - {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000021}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000021}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8126,11 +14054,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000010}, !- Handle + {00000000-0000-0000-0065-000000000010}, !- Handle Schedule Rule 18, !- Name - {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000023}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8145,11 +14073,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000011}, !- Handle + {00000000-0000-0000-0065-000000000011}, !- Handle Schedule Rule 19, !- Name - {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000024}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8164,11 +14092,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000012}, !- Handle + {00000000-0000-0000-0065-000000000012}, !- Handle Schedule Rule 2, !- Name - {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000018}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000018}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8183,11 +14111,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000013}, !- Handle + {00000000-0000-0000-0065-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8202,11 +14130,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000014}, !- Handle + {00000000-0000-0000-0065-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8221,11 +14149,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000015}, !- Handle + {00000000-0000-0000-0065-000000000015}, !- Handle Schedule Rule 22, !- Name - {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000028}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8240,11 +14168,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000016}, !- Handle + {00000000-0000-0000-0065-000000000016}, !- Handle Schedule Rule 23, !- Name - {00000000-0000-0000-0062-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000047}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000053}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8259,11 +14187,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000017}, !- Handle + {00000000-0000-0000-0065-000000000017}, !- Handle Schedule Rule 24, !- Name - {00000000-0000-0000-0062-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000048}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000054}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8278,11 +14206,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000018}, !- Handle + {00000000-0000-0000-0065-000000000018}, !- Handle Schedule Rule 25, !- Name - {00000000-0000-0000-0062-000000000025}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000031}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000049}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000055}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8297,11 +14225,49 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000019}, !- Handle + {00000000-0000-0000-0065-000000000019}, !- Handle Schedule Rule 26, !- Name - {00000000-0000-0000-0062-000000000025}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000031}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0064-000000000041}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000020}, !- Handle + Schedule Rule 27, !- Name + {00000000-0000-0000-0066-000000000028}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0064-000000000042}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000021}, !- Handle + Schedule Rule 28, !- Name + {00000000-0000-0000-0066-000000000028}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000041}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8316,11 +14282,68 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000020}, !- Handle + {00000000-0000-0000-0065-000000000022}, !- Handle + Schedule Rule 29, !- Name + {00000000-0000-0000-0066-000000000029}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0064-000000000044}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000023}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0064-000000000019}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000024}, !- Handle + Schedule Rule 30, !- Name + {00000000-0000-0000-0066-000000000029}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0064-000000000045}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000025}, !- Handle + Schedule Rule 31, !- Name + {00000000-0000-0000-0066-000000000030}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000046}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8330,16 +14353,35 @@ OS:Schedule:Rule, Yes, !- Apply Saturday DateRange, !- Date Specification Type 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000026}, !- Handle + Schedule Rule 32, !- Name + {00000000-0000-0000-0066-000000000030}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0064-000000000047}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month 1, !- Start Day 12, !- End Month 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000021}, !- Handle + {00000000-0000-0000-0065-000000000027}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8354,11 +14396,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000022}, !- Handle + {00000000-0000-0000-0065-000000000028}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8373,11 +14415,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000023}, !- Handle + {00000000-0000-0000-0065-000000000029}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8392,11 +14434,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000024}, !- Handle + {00000000-0000-0000-0065-000000000030}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8411,11 +14453,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000025}, !- Handle + {00000000-0000-0000-0065-000000000031}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8430,11 +14472,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000026}, !- Handle + {00000000-0000-0000-0065-000000000032}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8449,11 +14491,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000027}, !- Handle + {00000000-0000-0000-0065-000000000033}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000063}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8468,11 +14510,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000028}, !- Handle + {00000000-0000-0000-0065-000000000034}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000065}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8487,11 +14529,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000029}, !- Handle + {00000000-0000-0000-0065-000000000035}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000058}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000067}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8506,11 +14548,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000030}, !- Handle + {00000000-0000-0000-0065-000000000036}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000060}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000069}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8525,11 +14567,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000031}, !- Handle + {00000000-0000-0000-0065-000000000037}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000068}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000086}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8544,11 +14586,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000032}, !- Handle + {00000000-0000-0000-0065-000000000038}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000070}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000088}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8563,163 +14605,205 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000002}, !- Handle + {00000000-0000-0000-0066-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000003}, !- Handle + {00000000-0000-0000-0066-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000043}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000004}, !- Handle + {00000000-0000-0000-0066-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000050}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000005}, !- Handle + {00000000-0000-0000-0066-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000006}, !- Handle + {00000000-0000-0000-0066-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000007}, !- Handle + {00000000-0000-0000-0066-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000008}, !- Handle + {00000000-0000-0000-0066-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000009}, !- Handle + {00000000-0000-0000-0066-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000010}, !- Handle + {00000000-0000-0000-0066-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000011}, !- Handle + {00000000-0000-0000-0066-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000012}, !- Handle + {00000000-0000-0000-0066-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000013}, !- Handle + {00000000-0000-0000-0066-000000000013}, !- Handle NECB-A-Occupancy-NECB-A-Lighting-0.2-0.1-0.67-Light Ruleset, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000022}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000022}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000014}, !- Handle + {00000000-0000-0000-0066-000000000014}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000015}, !- Handle + {00000000-0000-0000-0066-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000016}, !- Handle + {00000000-0000-0000-0066-000000000016}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000033}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000033}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000017}, !- Handle + {00000000-0000-0000-0066-000000000017}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000037}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000038}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000039}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000037}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000038}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000039}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000018}, !- Handle + {00000000-0000-0000-0066-000000000018}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000045}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000051}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000019}, !- Handle + {00000000-0000-0000-0066-000000000019}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000020}, !- Handle + {00000000-0000-0000-0066-000000000020}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000050}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000056}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000021}, !- Handle + {00000000-0000-0000-0066-000000000021}, !- Handle + Supply Air Temp 1, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000057}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000022}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000058}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000023}, !- Handle + Supply Air Temp 3, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000059}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000024}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000051}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000060}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000022}, !- Handle + {00000000-0000-0000-0066-000000000025}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000052}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000061}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000023}, !- Handle + {00000000-0000-0000-0066-000000000026}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000053}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000062}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000024}, !- Handle + {00000000-0000-0000-0066-000000000027}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000062}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000063}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000064}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000071}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000072}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000073}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000025}, !- Handle + {00000000-0000-0000-0066-000000000028}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000074}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000075}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000076}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000029}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000077}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000078}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000079}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000030}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000080}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000081}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000082}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000031}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000065}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000066}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000067}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000083}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000084}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000085}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8727,7 +14811,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000002}, !- Handle + {00000000-0000-0000-0067-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -8735,7 +14819,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000003}, !- Handle + {00000000-0000-0000-0067-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8743,14 +14827,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000004}, !- Handle + {00000000-0000-0000-0067-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000005}, !- Handle + {00000000-0000-0000-0067-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -8758,7 +14842,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000006}, !- Handle + {00000000-0000-0000-0067-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8766,7 +14850,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000007}, !- Handle + {00000000-0000-0000-0067-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8774,7 +14858,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000008}, !- Handle + {00000000-0000-0000-0067-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8782,7 +14866,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000009}, !- Handle + {00000000-0000-0000-0067-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8790,42 +14874,84 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle Setpoint Manager Outdoor Air Pretreat 1, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0049-000000000136}, !- Reference Setpoint Node Name - {00000000-0000-0000-0049-000000000136}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0049-000000000137}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0049-000000000139}, !- Return Air Stream Node Name - {00000000-0000-0000-0049-000000000141}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0053-000000000283}, !- Reference Setpoint Node Name + {00000000-0000-0000-0053-000000000283}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0053-000000000284}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0053-000000000286}, !- Return Air Stream Node Name + {00000000-0000-0000-0053-000000000288}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0064-000000000002}, !- Handle + {00000000-0000-0000-0068-000000000002}, !- Handle Setpoint Manager Outdoor Air Pretreat 2, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0049-000000000145}, !- Reference Setpoint Node Name - {00000000-0000-0000-0049-000000000145}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0049-000000000146}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0049-000000000131}, !- Return Air Stream Node Name - {00000000-0000-0000-0049-000000000150}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0053-000000000313}, !- Reference Setpoint Node Name + {00000000-0000-0000-0053-000000000313}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0053-000000000314}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0053-000000000278}, !- Return Air Stream Node Name + {00000000-0000-0000-0053-000000000324}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0068-000000000003}, !- Handle + Setpoint Manager Outdoor Air Pretreat 3, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0053-000000000292}, !- Reference Setpoint Node Name + {00000000-0000-0000-0053-000000000292}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0053-000000000293}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0053-000000000275}, !- Return Air Stream Node Name + {00000000-0000-0000-0053-000000000318}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0068-000000000004}, !- Handle + Setpoint Manager Outdoor Air Pretreat 4, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0053-000000000299}, !- Reference Setpoint Node Name + {00000000-0000-0000-0053-000000000299}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0053-000000000300}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0053-000000000276}, !- Return Air Stream Node Name + {00000000-0000-0000-0053-000000000320}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0068-000000000005}, !- Handle + Setpoint Manager Outdoor Air Pretreat 5, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0053-000000000306}, !- Reference Setpoint Node Name + {00000000-0000-0000-0053-000000000306}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0053-000000000307}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0053-000000000277}, !- Return Air Stream Node Name + {00000000-0000-0000-0053-000000000322}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirReset, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0069-000000000001}, !- Handle Setpoint Manager Outdoor Air Reset 1, !- Name Temperature, !- Control Variable 82, !- Setpoint at Outdoor Low Temperature {C} -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0049-000000000071}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0053-000000000215}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -8833,43 +14959,64 @@ OS:SetpointManager:OutdoorAirReset, ; !- Outdoor High Temperature 2 {C} OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0070-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000020}, !- Schedule Name - {00000000-0000-0000-0049-000000000076}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0066-000000000020}, !- Schedule Name + {00000000-0000-0000-0053-000000000220}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000002}, !- Handle + {00000000-0000-0000-0070-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000003}, !- Schedule Name - {00000000-0000-0000-0049-000000000033}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Name + {00000000-0000-0000-0053-000000000087}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0070-000000000003}, !- Handle + Setpoint Manager Scheduled 2, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0066-000000000004}, !- Schedule Name + {00000000-0000-0000-0053-000000000195}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0070-000000000004}, !- Handle + Setpoint Manager Scheduled 3, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0066-000000000024}, !- Schedule Name + {00000000-0000-0000-0053-000000000317}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0070-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0066-000000000021}, !- Schedule Name + {00000000-0000-0000-0053-000000000296}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000003}, !- Handle - Setpoint Manager Scheduled 2, !- Name + {00000000-0000-0000-0070-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000004}, !- Schedule Name - {00000000-0000-0000-0049-000000000051}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0066-000000000022}, !- Schedule Name + {00000000-0000-0000-0053-000000000303}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000004}, !- Handle - Setpoint Manager Scheduled 3, !- Name + {00000000-0000-0000-0070-000000000007}, !- Handle + Setpoint Manager Scheduled 6, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000021}, !- Schedule Name - {00000000-0000-0000-0049-000000000149}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0066-000000000023}, !- Schedule Name + {00000000-0000-0000-0053-000000000310}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0071-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0090-000000000023}, !- Control Zone Name - {00000000-0000-0000-0049-000000000140}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0094-000000000023}, !- Control Zone Name + {00000000-0000-0000-0053-000000000287}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0072-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -8884,7 +15031,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0073-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -8893,7 +15040,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0074-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -8908,7 +15055,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -8923,7 +15070,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0076-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -8938,7 +15085,7 @@ OS:Site:GroundTemperature:FCfactorMethod, 11.1; !- December Ground Temperature {C} OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0073-000000000001}, !- Handle + {00000000-0000-0000-0077-000000000001}, !- Handle -1.6, !- January Surface Ground Temperature {C} -5.4, !- February Surface Ground Temperature {C} -6.4, !- March Surface Ground Temperature {C} @@ -8953,20 +15100,20 @@ OS:Site:GroundTemperature:Shallow, 4; !- December Surface Ground Temperature {C} OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0074-000000000001}, !- Handle + {00000000-0000-0000-0078-000000000001}, !- Handle Correlation, !- Calculation Method , !- Temperature Schedule Name 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} OS:Sizing:Parameters, - {00000000-0000-0000-0075-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle 1.3, !- Heating Sizing Factor 1.1; !- Cooling Sizing Factor OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000001}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Plant or Condenser Loop Name Heating, !- Loop Type 82, !- Design Loop Exit Temperature {C} 16, !- Loop Design Temperature Difference {deltaC} @@ -8975,8 +15122,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000002}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Plant or Condenser Loop Name Cooling, !- Loop Type 7, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -8985,8 +15132,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000003}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Plant or Condenser Loop Name Condenser, !- Loop Type 29, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -8995,8 +15142,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000004}, !- Handle - {00000000-0000-0000-0054-000000000004}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0080-000000000004}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Plant or Condenser Loop Name Heating, !- Loop Type 60, !- Design Loop Exit Temperature {C} 5, !- Loop Design Temperature Difference {deltaC} @@ -9005,7 +15152,7 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name Sensible, !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -9046,7 +15193,48 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0077-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0002-000000000005}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0081-000000000003}, !- Handle {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -9086,19 +15274,101 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0081-000000000004}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0081-000000000005}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9122,8 +15392,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000002}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9157,18 +15427,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000003}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0094-000000000022}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9192,8 +15462,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000004}, !- Handle - {00000000-0000-0000-0090-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0082-000000000004}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9227,18 +15497,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000005}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000005}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9262,18 +15532,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000006}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000006}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9297,18 +15567,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000007}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000007}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9332,18 +15602,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000008}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000008}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9367,18 +15637,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000009}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000009}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9402,18 +15672,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000010}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000010}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9437,18 +15707,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000011}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000011}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9472,18 +15742,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000012}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9507,8 +15777,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000013}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0082-000000000013}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9542,8 +15812,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000014}, !- Handle - {00000000-0000-0000-0090-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0082-000000000014}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9577,18 +15847,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000015}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000015}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9612,18 +15882,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000016}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000016}, !- Handle + {00000000-0000-0000-0094-000000000020}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9647,18 +15917,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000017}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000017}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9682,18 +15952,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000018}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000018}, !- Handle + {00000000-0000-0000-0094-000000000021}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9717,18 +15987,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000019}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000019}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9752,18 +16022,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000020}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000020}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9787,18 +16057,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000021}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000021}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9822,18 +16092,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000022}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000022}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9857,8 +16127,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000023}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0082-000000000023}, !- Handle + {00000000-0000-0000-0094-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9892,7 +16162,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9920,7 +16190,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000002}, !- Handle + {00000000-0000-0000-0083-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9948,7 +16218,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0083-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9972,9 +16242,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0082-000000000002}, !- Space Type Name + {00000000-0000-0000-0086-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9982,16 +16252,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0090-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0084-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9999,16 +16269,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0084-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10016,16 +16286,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000004}, !- Handle + {00000000-0000-0000-0084-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10033,16 +16303,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000005}, !- Handle + {00000000-0000-0000-0084-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10050,16 +16320,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0090-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000006}, !- Handle + {00000000-0000-0000-0084-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10067,16 +16337,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000007}, !- Handle + {00000000-0000-0000-0084-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10084,16 +16354,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000008}, !- Handle + {00000000-0000-0000-0084-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10101,16 +16371,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000009}, !- Handle + {00000000-0000-0000-0084-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0086-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10118,16 +16388,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000010}, !- Handle + {00000000-0000-0000-0084-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0086-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10135,16 +16405,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000011}, !- Handle + {00000000-0000-0000-0084-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10152,16 +16422,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000012}, !- Handle + {00000000-0000-0000-0084-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10169,16 +16439,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000013}, !- Handle + {00000000-0000-0000-0084-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10186,16 +16456,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000014}, !- Handle + {00000000-0000-0000-0084-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10203,16 +16473,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000015}, !- Handle + {00000000-0000-0000-0084-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10220,16 +16490,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000016}, !- Handle + {00000000-0000-0000-0084-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10237,16 +16507,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000017}, !- Handle + {00000000-0000-0000-0084-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10254,16 +16524,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000018}, !- Handle + {00000000-0000-0000-0084-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10271,16 +16541,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000019}, !- Handle + {00000000-0000-0000-0084-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10288,16 +16558,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000020}, !- Handle + {00000000-0000-0000-0084-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10305,16 +16575,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000021}, !- Handle + {00000000-0000-0000-0084-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10322,16 +16592,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000022}, !- Handle + {00000000-0000-0000-0084-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10339,16 +16609,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000023}, !- Handle + {00000000-0000-0000-0084-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0086-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10356,17 +16626,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0085-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10378,10 +16648,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0085-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10393,10 +16663,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0085-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10408,10 +16678,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000004}, !- Handle + {00000000-0000-0000-0085-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10423,10 +16693,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000005}, !- Handle + {00000000-0000-0000-0085-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10438,10 +16708,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000006}, !- Handle + {00000000-0000-0000-0085-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10453,10 +16723,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000007}, !- Handle + {00000000-0000-0000-0085-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10468,10 +16738,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000008}, !- Handle + {00000000-0000-0000-0085-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10483,10 +16753,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000009}, !- Handle + {00000000-0000-0000-0085-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10498,10 +16768,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000010}, !- Handle + {00000000-0000-0000-0085-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10513,10 +16783,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000011}, !- Handle + {00000000-0000-0000-0085-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10528,10 +16798,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000012}, !- Handle + {00000000-0000-0000-0085-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10543,10 +16813,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000013}, !- Handle + {00000000-0000-0000-0085-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10558,10 +16828,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000014}, !- Handle + {00000000-0000-0000-0085-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10573,10 +16843,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000015}, !- Handle + {00000000-0000-0000-0085-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10588,46 +16858,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000031}, !- Group Rendering Name {00000000-0000-0000-0035-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000033}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000033}, !- Group Rendering Name {00000000-0000-0000-0035-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical room-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000003}, !- Handle Space Function Office open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000037}, !- Group Rendering Name {00000000-0000-0000-0035-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0087-000000000001}, !- Handle {00000000-0000-0000-0023-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000002}, !- Handle + {00000000-0000-0000-0087-000000000002}, !- Handle {00000000-0000-0000-0023-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10636,7 +16906,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000003}, !- Handle + {00000000-0000-0000-0087-000000000003}, !- Handle {00000000-0000-0000-0023-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10645,7 +16915,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000004}, !- Handle + {00000000-0000-0000-0087-000000000004}, !- Handle {00000000-0000-0000-0023-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -10654,25 +16924,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000005}, !- Handle + {00000000-0000-0000-0087-000000000005}, !- Handle {00000000-0000-0000-0023-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000006}, !- Handle + {00000000-0000-0000-0087-000000000006}, !- Handle {00000000-0000-0000-0023-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000007}, !- Handle + {00000000-0000-0000-0087-000000000007}, !- Handle {00000000-0000-0000-0023-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000008}, !- Handle + {00000000-0000-0000-0087-000000000008}, !- Handle {00000000-0000-0000-0023-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10681,7 +16951,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000009}, !- Handle + {00000000-0000-0000-0087-000000000009}, !- Handle {00000000-0000-0000-0023-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10690,7 +16960,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000010}, !- Handle + {00000000-0000-0000-0087-000000000010}, !- Handle {00000000-0000-0000-0023-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10699,12 +16969,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000011}, !- Handle + {00000000-0000-0000-0087-000000000011}, !- Handle {00000000-0000-0000-0023-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000012}, !- Handle + {00000000-0000-0000-0087-000000000012}, !- Handle {00000000-0000-0000-0023-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -10713,12 +16983,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000013}, !- Handle + {00000000-0000-0000-0087-000000000013}, !- Handle {00000000-0000-0000-0023-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000014}, !- Handle + {00000000-0000-0000-0087-000000000014}, !- Handle {00000000-0000-0000-0023-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -10727,34 +16997,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000015}, !- Handle + {00000000-0000-0000-0087-000000000015}, !- Handle {00000000-0000-0000-0023-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000016}, !- Handle + {00000000-0000-0000-0087-000000000016}, !- Handle {00000000-0000-0000-0023-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000017}, !- Handle + {00000000-0000-0000-0087-000000000017}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000018}, !- Handle + {00000000-0000-0000-0087-000000000018}, !- Handle {00000000-0000-0000-0023-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000019}, !- Handle + {00000000-0000-0000-0087-000000000019}, !- Handle {00000000-0000-0000-0023-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000020}, !- Handle + {00000000-0000-0000-0087-000000000020}, !- Handle {00000000-0000-0000-0023-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10763,7 +17033,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000021}, !- Handle + {00000000-0000-0000-0087-000000000021}, !- Handle {00000000-0000-0000-0023-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10772,7 +17042,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000022}, !- Handle + {00000000-0000-0000-0087-000000000022}, !- Handle {00000000-0000-0000-0023-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -10781,7 +17051,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000023}, !- Handle + {00000000-0000-0000-0087-000000000023}, !- Handle {00000000-0000-0000-0023-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10790,7 +17060,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000024}, !- Handle + {00000000-0000-0000-0087-000000000024}, !- Handle {00000000-0000-0000-0023-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10799,7 +17069,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000025}, !- Handle + {00000000-0000-0000-0087-000000000025}, !- Handle {00000000-0000-0000-0023-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10808,7 +17078,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000026}, !- Handle + {00000000-0000-0000-0087-000000000026}, !- Handle {00000000-0000-0000-0023-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -10817,7 +17087,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000027}, !- Handle + {00000000-0000-0000-0087-000000000027}, !- Handle {00000000-0000-0000-0023-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -10826,135 +17096,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000001}, !- Handle - {00000000-0000-0000-0046-000000000021}; !- Material Name + {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000002}, !- Handle - {00000000-0000-0000-0047-000000000013}; !- Material Name + {00000000-0000-0000-0088-000000000002}, !- Handle + {00000000-0000-0000-0051-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000003}, !- Handle - {00000000-0000-0000-0046-000000000008}; !- Material Name + {00000000-0000-0000-0088-000000000003}, !- Handle + {00000000-0000-0000-0050-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000004}, !- Handle - {00000000-0000-0000-0047-000000000007}; !- Material Name + {00000000-0000-0000-0088-000000000004}, !- Handle + {00000000-0000-0000-0051-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000005}, !- Handle - {00000000-0000-0000-0046-000000000006}; !- Material Name + {00000000-0000-0000-0088-000000000005}, !- Handle + {00000000-0000-0000-0050-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000006}, !- Handle - {00000000-0000-0000-0046-000000000014}; !- Material Name + {00000000-0000-0000-0088-000000000006}, !- Handle + {00000000-0000-0000-0050-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000007}, !- Handle - {00000000-0000-0000-0046-000000000002}; !- Material Name + {00000000-0000-0000-0088-000000000007}, !- Handle + {00000000-0000-0000-0050-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000008}, !- Handle - {00000000-0000-0000-0046-000000000024}; !- Material Name + {00000000-0000-0000-0088-000000000008}, !- Handle + {00000000-0000-0000-0050-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000009}, !- Handle - {00000000-0000-0000-0046-000000000003}; !- Material Name + {00000000-0000-0000-0088-000000000009}, !- Handle + {00000000-0000-0000-0050-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000010}, !- Handle - {00000000-0000-0000-0046-000000000019}; !- Material Name + {00000000-0000-0000-0088-000000000010}, !- Handle + {00000000-0000-0000-0050-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000011}, !- Handle - {00000000-0000-0000-0046-000000000012}; !- Material Name + {00000000-0000-0000-0088-000000000011}, !- Handle + {00000000-0000-0000-0050-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000012}, !- Handle - {00000000-0000-0000-0100-000000000001}; !- Material Name + {00000000-0000-0000-0088-000000000012}, !- Handle + {00000000-0000-0000-0104-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000013}, !- Handle - {00000000-0000-0000-0046-000000000018}; !- Material Name + {00000000-0000-0000-0088-000000000013}, !- Handle + {00000000-0000-0000-0050-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000014}, !- Handle - {00000000-0000-0000-0047-000000000008}; !- Material Name + {00000000-0000-0000-0088-000000000014}, !- Handle + {00000000-0000-0000-0051-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000015}, !- Handle - {00000000-0000-0000-0046-000000000007}; !- Material Name + {00000000-0000-0000-0088-000000000015}, !- Handle + {00000000-0000-0000-0050-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000016}, !- Handle - {00000000-0000-0000-0047-000000000003}; !- Material Name + {00000000-0000-0000-0088-000000000016}, !- Handle + {00000000-0000-0000-0051-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000017}, !- Handle - {00000000-0000-0000-0046-000000000005}; !- Material Name + {00000000-0000-0000-0088-000000000017}, !- Handle + {00000000-0000-0000-0050-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000018}, !- Handle - {00000000-0000-0000-0046-000000000013}; !- Material Name + {00000000-0000-0000-0088-000000000018}, !- Handle + {00000000-0000-0000-0050-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000019}, !- Handle - {00000000-0000-0000-0047-000000000009}; !- Material Name + {00000000-0000-0000-0088-000000000019}, !- Handle + {00000000-0000-0000-0051-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000020}, !- Handle - {00000000-0000-0000-0046-000000000001}; !- Material Name + {00000000-0000-0000-0088-000000000020}, !- Handle + {00000000-0000-0000-0050-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000021}, !- Handle - {00000000-0000-0000-0046-000000000023}; !- Material Name + {00000000-0000-0000-0088-000000000021}, !- Handle + {00000000-0000-0000-0050-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000022}, !- Handle - {00000000-0000-0000-0047-000000000010}; !- Material Name + {00000000-0000-0000-0088-000000000022}, !- Handle + {00000000-0000-0000-0051-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000023}, !- Handle - {00000000-0000-0000-0046-000000000009}; !- Material Name + {00000000-0000-0000-0088-000000000023}, !- Handle + {00000000-0000-0000-0050-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000024}, !- Handle - {00000000-0000-0000-0047-000000000004}; !- Material Name + {00000000-0000-0000-0088-000000000024}, !- Handle + {00000000-0000-0000-0051-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000025}, !- Handle - {00000000-0000-0000-0046-000000000010}; !- Material Name + {00000000-0000-0000-0088-000000000025}, !- Handle + {00000000-0000-0000-0050-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000026}, !- Handle - {00000000-0000-0000-0047-000000000005}; !- Material Name + {00000000-0000-0000-0088-000000000026}, !- Handle + {00000000-0000-0000-0051-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000027}, !- Handle - {00000000-0000-0000-0046-000000000011}; !- Material Name + {00000000-0000-0000-0088-000000000027}, !- Handle + {00000000-0000-0000-0050-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000028}, !- Handle - {00000000-0000-0000-0047-000000000006}; !- Material Name + {00000000-0000-0000-0088-000000000028}, !- Handle + {00000000-0000-0000-0051-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000029}, !- Handle - {00000000-0000-0000-0046-000000000017}; !- Material Name + {00000000-0000-0000-0088-000000000029}, !- Handle + {00000000-0000-0000-0050-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000030}, !- Handle - {00000000-0000-0000-0047-000000000011}; !- Material Name + {00000000-0000-0000-0088-000000000030}, !- Handle + {00000000-0000-0000-0051-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000031}, !- Handle - {00000000-0000-0000-0047-000000000012}; !- Material Name + {00000000-0000-0000-0088-000000000031}, !- Handle + {00000000-0000-0000-0051-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0089-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000098}, !- Surface Name + {00000000-0000-0000-0090-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10966,11 +17236,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000002}, !- Handle + {00000000-0000-0000-0089-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000103}, !- Surface Name + {00000000-0000-0000-0090-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10982,11 +17252,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000003}, !- Handle + {00000000-0000-0000-0089-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000110}, !- Surface Name + {00000000-0000-0000-0090-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10998,11 +17268,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000004}, !- Handle + {00000000-0000-0000-0089-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000119}, !- Surface Name + {00000000-0000-0000-0090-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -11014,11 +17284,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000005}, !- Handle + {00000000-0000-0000-0089-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000125}, !- Surface Name + {00000000-0000-0000-0090-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -11030,11 +17300,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000006}, !- Handle + {00000000-0000-0000-0089-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000129}, !- Surface Name + {00000000-0000-0000-0090-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -11046,11 +17316,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000007}, !- Handle + {00000000-0000-0000-0089-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000135}, !- Surface Name + {00000000-0000-0000-0090-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -11062,11 +17332,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000008}, !- Handle + {00000000-0000-0000-0089-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000143}, !- Surface Name + {00000000-0000-0000-0090-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -11078,11 +17348,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000009}, !- Handle + {00000000-0000-0000-0089-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000147}, !- Surface Name + {00000000-0000-0000-0090-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -11094,11 +17364,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000010}, !- Handle + {00000000-0000-0000-0089-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000151}, !- Surface Name + {00000000-0000-0000-0090-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -11110,11 +17380,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000011}, !- Handle + {00000000-0000-0000-0089-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000157}, !- Surface Name + {00000000-0000-0000-0090-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -11126,11 +17396,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000012}, !- Handle + {00000000-0000-0000-0089-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000165}, !- Surface Name + {00000000-0000-0000-0090-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -11142,13 +17412,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11159,13 +17429,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11176,13 +17446,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11193,13 +17463,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11210,13 +17480,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11227,11 +17497,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11244,13 +17514,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11261,13 +17531,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11278,13 +17548,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11295,13 +17565,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11312,13 +17582,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11329,13 +17599,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11346,13 +17616,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11363,13 +17633,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11380,13 +17650,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11397,13 +17667,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11414,13 +17684,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11431,13 +17701,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11448,13 +17718,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11465,11 +17735,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11482,13 +17752,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11499,13 +17769,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11516,13 +17786,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11533,13 +17803,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000024}, !- Handle + {00000000-0000-0000-0090-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11550,13 +17820,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000025}, !- Handle + {00000000-0000-0000-0090-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11567,13 +17837,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000026}, !- Handle + {00000000-0000-0000-0090-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11584,13 +17854,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000027}, !- Handle + {00000000-0000-0000-0090-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11601,13 +17871,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000028}, !- Handle + {00000000-0000-0000-0090-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11618,13 +17888,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000029}, !- Handle + {00000000-0000-0000-0090-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11635,11 +17905,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000030}, !- Handle + {00000000-0000-0000-0090-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11652,13 +17922,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000031}, !- Handle + {00000000-0000-0000-0090-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11669,13 +17939,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000032}, !- Handle + {00000000-0000-0000-0090-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11686,13 +17956,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000033}, !- Handle + {00000000-0000-0000-0090-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11703,13 +17973,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000034}, !- Handle + {00000000-0000-0000-0090-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11720,13 +17990,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000035}, !- Handle + {00000000-0000-0000-0090-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11737,13 +18007,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000036}, !- Handle + {00000000-0000-0000-0090-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11754,13 +18024,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000037}, !- Handle + {00000000-0000-0000-0090-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11771,13 +18041,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000038}, !- Handle + {00000000-0000-0000-0090-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11788,13 +18058,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000039}, !- Handle + {00000000-0000-0000-0090-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11805,13 +18075,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000040}, !- Handle + {00000000-0000-0000-0090-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11822,13 +18092,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000041}, !- Handle + {00000000-0000-0000-0090-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11839,13 +18109,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000042}, !- Handle + {00000000-0000-0000-0090-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11856,13 +18126,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000043}, !- Handle + {00000000-0000-0000-0090-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11873,13 +18143,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000044}, !- Handle + {00000000-0000-0000-0090-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11890,13 +18160,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000045}, !- Handle + {00000000-0000-0000-0090-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11907,13 +18177,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000046}, !- Handle + {00000000-0000-0000-0090-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11924,13 +18194,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000047}, !- Handle + {00000000-0000-0000-0090-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11941,13 +18211,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000048}, !- Handle + {00000000-0000-0000-0090-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11958,13 +18228,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000049}, !- Handle + {00000000-0000-0000-0090-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11975,13 +18245,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000050}, !- Handle + {00000000-0000-0000-0090-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11992,13 +18262,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000051}, !- Handle + {00000000-0000-0000-0090-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12009,13 +18279,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000052}, !- Handle + {00000000-0000-0000-0090-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12026,13 +18296,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000053}, !- Handle + {00000000-0000-0000-0090-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12043,13 +18313,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000054}, !- Handle + {00000000-0000-0000-0090-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12060,13 +18330,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000055}, !- Handle + {00000000-0000-0000-0090-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12077,13 +18347,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000056}, !- Handle + {00000000-0000-0000-0090-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12094,13 +18364,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000057}, !- Handle + {00000000-0000-0000-0090-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12111,13 +18381,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000058}, !- Handle + {00000000-0000-0000-0090-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12128,13 +18398,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000059}, !- Handle + {00000000-0000-0000-0090-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12145,11 +18415,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000060}, !- Handle + {00000000-0000-0000-0090-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12162,13 +18432,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000061}, !- Handle + {00000000-0000-0000-0090-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12179,13 +18449,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000062}, !- Handle + {00000000-0000-0000-0090-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12196,13 +18466,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000063}, !- Handle + {00000000-0000-0000-0090-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12213,13 +18483,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000064}, !- Handle + {00000000-0000-0000-0090-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12230,13 +18500,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000065}, !- Handle + {00000000-0000-0000-0090-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12247,13 +18517,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000066}, !- Handle + {00000000-0000-0000-0090-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12264,13 +18534,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000067}, !- Handle + {00000000-0000-0000-0090-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12281,13 +18551,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000068}, !- Handle + {00000000-0000-0000-0090-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12298,13 +18568,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000069}, !- Handle + {00000000-0000-0000-0090-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12315,11 +18585,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000070}, !- Handle + {00000000-0000-0000-0090-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12332,13 +18602,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000071}, !- Handle + {00000000-0000-0000-0090-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12349,13 +18619,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000072}, !- Handle + {00000000-0000-0000-0090-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12366,13 +18636,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000073}, !- Handle + {00000000-0000-0000-0090-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12383,13 +18653,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000074}, !- Handle + {00000000-0000-0000-0090-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12400,13 +18670,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000075}, !- Handle + {00000000-0000-0000-0090-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12417,13 +18687,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000076}, !- Handle + {00000000-0000-0000-0090-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12434,13 +18704,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000077}, !- Handle + {00000000-0000-0000-0090-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12451,13 +18721,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000078}, !- Handle + {00000000-0000-0000-0090-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12468,13 +18738,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000079}, !- Handle + {00000000-0000-0000-0090-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12485,11 +18755,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000080}, !- Handle + {00000000-0000-0000-0090-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12502,11 +18772,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000081}, !- Handle + {00000000-0000-0000-0090-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12519,11 +18789,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000082}, !- Handle + {00000000-0000-0000-0090-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12536,11 +18806,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000083}, !- Handle + {00000000-0000-0000-0090-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12553,11 +18823,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000084}, !- Handle + {00000000-0000-0000-0090-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12570,13 +18840,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000085}, !- Handle + {00000000-0000-0000-0090-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12587,13 +18857,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000086}, !- Handle + {00000000-0000-0000-0090-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12604,11 +18874,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000087}, !- Handle + {00000000-0000-0000-0090-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12621,11 +18891,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000088}, !- Handle + {00000000-0000-0000-0090-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12638,11 +18908,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000089}, !- Handle + {00000000-0000-0000-0090-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12655,11 +18925,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000090}, !- Handle + {00000000-0000-0000-0090-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12672,11 +18942,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000091}, !- Handle + {00000000-0000-0000-0090-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12689,13 +18959,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000092}, !- Handle + {00000000-0000-0000-0090-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12706,13 +18976,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000093}, !- Handle + {00000000-0000-0000-0090-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12723,13 +18993,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000094}, !- Handle + {00000000-0000-0000-0090-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12740,13 +19010,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000095}, !- Handle + {00000000-0000-0000-0090-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12757,13 +19027,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000096}, !- Handle + {00000000-0000-0000-0090-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12774,13 +19044,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000097}, !- Handle + {00000000-0000-0000-0090-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12791,11 +19061,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000098}, !- Handle + {00000000-0000-0000-0090-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12808,13 +19078,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000099}, !- Handle + {00000000-0000-0000-0090-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12825,13 +19095,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000100}, !- Handle + {00000000-0000-0000-0090-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12842,13 +19112,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000101}, !- Handle + {00000000-0000-0000-0090-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12859,13 +19129,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000102}, !- Handle + {00000000-0000-0000-0090-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12876,11 +19146,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000103}, !- Handle + {00000000-0000-0000-0090-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12893,13 +19163,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000104}, !- Handle + {00000000-0000-0000-0090-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12910,13 +19180,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000105}, !- Handle + {00000000-0000-0000-0090-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12927,13 +19197,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000106}, !- Handle + {00000000-0000-0000-0090-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12944,13 +19214,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000107}, !- Handle + {00000000-0000-0000-0090-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12961,13 +19231,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000108}, !- Handle + {00000000-0000-0000-0090-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12978,13 +19248,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000109}, !- Handle + {00000000-0000-0000-0090-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12995,11 +19265,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000110}, !- Handle + {00000000-0000-0000-0090-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13012,13 +19282,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000111}, !- Handle + {00000000-0000-0000-0090-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13029,13 +19299,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000112}, !- Handle + {00000000-0000-0000-0090-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13046,13 +19316,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000113}, !- Handle + {00000000-0000-0000-0090-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13063,13 +19333,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000114}, !- Handle + {00000000-0000-0000-0090-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13080,13 +19350,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000115}, !- Handle + {00000000-0000-0000-0090-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -13097,13 +19367,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000116}, !- Handle + {00000000-0000-0000-0090-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -13114,13 +19384,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000117}, !- Handle + {00000000-0000-0000-0090-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13131,13 +19401,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000118}, !- Handle + {00000000-0000-0000-0090-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13148,11 +19418,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000119}, !- Handle + {00000000-0000-0000-0090-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13165,13 +19435,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000120}, !- Handle + {00000000-0000-0000-0090-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13182,13 +19452,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000121}, !- Handle + {00000000-0000-0000-0090-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13199,11 +19469,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000122}, !- Handle + {00000000-0000-0000-0090-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13216,13 +19486,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000123}, !- Handle + {00000000-0000-0000-0090-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13233,13 +19503,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000124}, !- Handle + {00000000-0000-0000-0090-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13250,11 +19520,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000125}, !- Handle + {00000000-0000-0000-0090-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13267,13 +19537,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000126}, !- Handle + {00000000-0000-0000-0090-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13284,13 +19554,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000127}, !- Handle + {00000000-0000-0000-0090-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13301,11 +19571,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000128}, !- Handle + {00000000-0000-0000-0090-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13318,11 +19588,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000129}, !- Handle + {00000000-0000-0000-0090-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13335,13 +19605,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000130}, !- Handle + {00000000-0000-0000-0090-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13352,13 +19622,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000131}, !- Handle + {00000000-0000-0000-0090-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13369,13 +19639,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000132}, !- Handle + {00000000-0000-0000-0090-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13386,13 +19656,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000133}, !- Handle + {00000000-0000-0000-0090-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13403,11 +19673,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000134}, !- Handle + {00000000-0000-0000-0090-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13420,11 +19690,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000135}, !- Handle + {00000000-0000-0000-0090-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13437,13 +19707,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000136}, !- Handle + {00000000-0000-0000-0090-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13454,13 +19724,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000137}, !- Handle + {00000000-0000-0000-0090-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13471,13 +19741,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000138}, !- Handle + {00000000-0000-0000-0090-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13488,13 +19758,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000139}, !- Handle + {00000000-0000-0000-0090-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13505,11 +19775,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000140}, !- Handle + {00000000-0000-0000-0090-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13522,13 +19792,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000141}, !- Handle + {00000000-0000-0000-0090-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13539,13 +19809,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000142}, !- Handle + {00000000-0000-0000-0090-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13556,11 +19826,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000143}, !- Handle + {00000000-0000-0000-0090-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13573,13 +19843,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000144}, !- Handle + {00000000-0000-0000-0090-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13590,13 +19860,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000145}, !- Handle + {00000000-0000-0000-0090-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13607,11 +19877,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000146}, !- Handle + {00000000-0000-0000-0090-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13624,11 +19894,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000147}, !- Handle + {00000000-0000-0000-0090-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13641,13 +19911,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000148}, !- Handle + {00000000-0000-0000-0090-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13658,13 +19928,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000149}, !- Handle + {00000000-0000-0000-0090-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13675,11 +19945,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000150}, !- Handle + {00000000-0000-0000-0090-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13692,11 +19962,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000151}, !- Handle + {00000000-0000-0000-0090-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13709,13 +19979,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000152}, !- Handle + {00000000-0000-0000-0090-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13726,13 +19996,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000153}, !- Handle + {00000000-0000-0000-0090-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13743,13 +20013,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000154}, !- Handle + {00000000-0000-0000-0090-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13760,13 +20030,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000155}, !- Handle + {00000000-0000-0000-0090-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13777,11 +20047,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000156}, !- Handle + {00000000-0000-0000-0090-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13794,11 +20064,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000157}, !- Handle + {00000000-0000-0000-0090-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13811,13 +20081,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000158}, !- Handle + {00000000-0000-0000-0090-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13828,13 +20098,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000159}, !- Handle + {00000000-0000-0000-0090-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13845,13 +20115,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000160}, !- Handle + {00000000-0000-0000-0090-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13862,13 +20132,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000161}, !- Handle + {00000000-0000-0000-0090-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13879,11 +20149,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000162}, !- Handle + {00000000-0000-0000-0090-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13896,13 +20166,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000163}, !- Handle + {00000000-0000-0000-0090-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13913,13 +20183,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000164}, !- Handle + {00000000-0000-0000-0090-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13930,11 +20200,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000165}, !- Handle + {00000000-0000-0000-0090-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13947,11 +20217,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000166}, !- Handle + {00000000-0000-0000-0090-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13964,11 +20234,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000167}, !- Handle + {00000000-0000-0000-0090-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13981,11 +20251,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000168}, !- Handle + {00000000-0000-0000-0090-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13998,11 +20268,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000169}, !- Handle + {00000000-0000-0000-0090-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -14015,27 +20285,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0091-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0089-000000000001}, !- Handle - {00000000-0000-0000-0086-000000000044}, !- Surface Name + {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0089-000000000002}, !- Handle - {00000000-0000-0000-0086-000000000001}, !- Surface Name + {00000000-0000-0000-0093-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14044,21 +20314,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000007}, !- Thermostat Name + {00000000-0000-0000-0062-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14067,21 +20337,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000009}, !- Thermostat Name + {00000000-0000-0000-0062-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000003}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14090,21 +20360,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000008}, !- Thermostat Name + {00000000-0000-0000-0062-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000004}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14113,21 +20383,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000058}, !- Thermostat Name + {00000000-0000-0000-0062-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000005}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14136,21 +20406,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000052}, !- Thermostat Name + {00000000-0000-0000-0062-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000006}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14159,21 +20429,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000053}, !- Thermostat Name + {00000000-0000-0000-0062-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000007}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14182,21 +20452,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000060}, !- Thermostat Name + {00000000-0000-0000-0062-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000008}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14205,21 +20475,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000065}, !- Thermostat Name + {00000000-0000-0000-0062-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000009}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14228,21 +20498,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000067}, !- Thermostat Name + {00000000-0000-0000-0062-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000010}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14251,21 +20521,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000047}, !- Thermostat Name + {00000000-0000-0000-0062-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000011}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14274,21 +20544,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000055}, !- Thermostat Name + {00000000-0000-0000-0062-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14297,21 +20567,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000057}, !- Thermostat Name + {00000000-0000-0000-0062-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000013}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14320,21 +20590,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000062}, !- Thermostat Name + {00000000-0000-0000-0062-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000014}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14343,21 +20613,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000064}, !- Thermostat Name + {00000000-0000-0000-0062-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000015}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14366,21 +20636,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000066}, !- Thermostat Name + {00000000-0000-0000-0062-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000016}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14389,21 +20659,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000050}, !- Thermostat Name + {00000000-0000-0000-0062-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000017}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14412,21 +20682,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000051}, !- Thermostat Name + {00000000-0000-0000-0062-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000018}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14435,21 +20705,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000054}, !- Thermostat Name + {00000000-0000-0000-0062-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000019}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14458,21 +20728,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000056}, !- Thermostat Name + {00000000-0000-0000-0062-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000020}, !- Handle + {00000000-0000-0000-0094-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14481,21 +20751,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000061}, !- Thermostat Name + {00000000-0000-0000-0062-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000021}, !- Handle + {00000000-0000-0000-0094-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14504,21 +20774,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000063}, !- Thermostat Name + {00000000-0000-0000-0062-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000022}, !- Handle + {00000000-0000-0000-0094-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14527,21 +20797,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000049}, !- Thermostat Name + {00000000-0000-0000-0062-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000023}, !- Handle + {00000000-0000-0000-0094-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14550,444 +20820,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000013}, !- Thermostat Name + {00000000-0000-0000-0062-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0095-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000002}, !- Handle + {00000000-0000-0000-0095-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000003}, !- Handle + {00000000-0000-0000-0095-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000004}, !- Handle + {00000000-0000-0000-0095-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000005}, !- Handle + {00000000-0000-0000-0095-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000006}, !- Handle + {00000000-0000-0000-0095-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000007}, !- Handle + {00000000-0000-0000-0095-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000008}, !- Handle + {00000000-0000-0000-0095-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000009}, !- Handle + {00000000-0000-0000-0095-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000010}, !- Handle + {00000000-0000-0000-0095-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000011}, !- Handle + {00000000-0000-0000-0095-000000000011}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000012}, !- Handle + {00000000-0000-0000-0095-000000000012}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000013}, !- Handle + {00000000-0000-0000-0095-000000000013}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000014}, !- Handle + {00000000-0000-0000-0095-000000000014}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000015}, !- Handle + {00000000-0000-0000-0095-000000000015}, !- Handle Space Function Office open plan Thermostat 1, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000016}, !- Handle + {00000000-0000-0000-0095-000000000016}, !- Handle Space Function Office open plan Thermostat 10, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000017}, !- Handle + {00000000-0000-0000-0095-000000000017}, !- Handle Space Function Office open plan Thermostat 11, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000018}, !- Handle + {00000000-0000-0000-0095-000000000018}, !- Handle Space Function Office open plan Thermostat 12, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000019}, !- Handle + {00000000-0000-0000-0095-000000000019}, !- Handle Space Function Office open plan Thermostat 13, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000020}, !- Handle + {00000000-0000-0000-0095-000000000020}, !- Handle Space Function Office open plan Thermostat 14, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000021}, !- Handle + {00000000-0000-0000-0095-000000000021}, !- Handle Space Function Office open plan Thermostat 15, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000022}, !- Handle + {00000000-0000-0000-0095-000000000022}, !- Handle Space Function Office open plan Thermostat 16, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000023}, !- Handle + {00000000-0000-0000-0095-000000000023}, !- Handle Space Function Office open plan Thermostat 17, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000024}, !- Handle + {00000000-0000-0000-0095-000000000024}, !- Handle Space Function Office open plan Thermostat 18, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000025}, !- Handle + {00000000-0000-0000-0095-000000000025}, !- Handle Space Function Office open plan Thermostat 19, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000026}, !- Handle + {00000000-0000-0000-0095-000000000026}, !- Handle Space Function Office open plan Thermostat 2, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000027}, !- Handle + {00000000-0000-0000-0095-000000000027}, !- Handle Space Function Office open plan Thermostat 20, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000028}, !- Handle + {00000000-0000-0000-0095-000000000028}, !- Handle Space Function Office open plan Thermostat 21, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000029}, !- Handle + {00000000-0000-0000-0095-000000000029}, !- Handle Space Function Office open plan Thermostat 22, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000030}, !- Handle + {00000000-0000-0000-0095-000000000030}, !- Handle Space Function Office open plan Thermostat 23, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000031}, !- Handle + {00000000-0000-0000-0095-000000000031}, !- Handle Space Function Office open plan Thermostat 24, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000032}, !- Handle + {00000000-0000-0000-0095-000000000032}, !- Handle Space Function Office open plan Thermostat 25, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000033}, !- Handle + {00000000-0000-0000-0095-000000000033}, !- Handle Space Function Office open plan Thermostat 26, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000034}, !- Handle + {00000000-0000-0000-0095-000000000034}, !- Handle Space Function Office open plan Thermostat 27, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000035}, !- Handle + {00000000-0000-0000-0095-000000000035}, !- Handle Space Function Office open plan Thermostat 28, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000036}, !- Handle + {00000000-0000-0000-0095-000000000036}, !- Handle Space Function Office open plan Thermostat 29, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000037}, !- Handle + {00000000-0000-0000-0095-000000000037}, !- Handle Space Function Office open plan Thermostat 3, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000038}, !- Handle + {00000000-0000-0000-0095-000000000038}, !- Handle Space Function Office open plan Thermostat 30, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000039}, !- Handle + {00000000-0000-0000-0095-000000000039}, !- Handle Space Function Office open plan Thermostat 31, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000040}, !- Handle + {00000000-0000-0000-0095-000000000040}, !- Handle Space Function Office open plan Thermostat 32, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000041}, !- Handle + {00000000-0000-0000-0095-000000000041}, !- Handle Space Function Office open plan Thermostat 33, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000042}, !- Handle + {00000000-0000-0000-0095-000000000042}, !- Handle Space Function Office open plan Thermostat 34, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000043}, !- Handle + {00000000-0000-0000-0095-000000000043}, !- Handle Space Function Office open plan Thermostat 35, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000044}, !- Handle + {00000000-0000-0000-0095-000000000044}, !- Handle Space Function Office open plan Thermostat 36, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000045}, !- Handle + {00000000-0000-0000-0095-000000000045}, !- Handle Space Function Office open plan Thermostat 37, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000046}, !- Handle + {00000000-0000-0000-0095-000000000046}, !- Handle Space Function Office open plan Thermostat 38, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000047}, !- Handle + {00000000-0000-0000-0095-000000000047}, !- Handle Space Function Office open plan Thermostat 39, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000048}, !- Handle + {00000000-0000-0000-0095-000000000048}, !- Handle Space Function Office open plan Thermostat 4, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000049}, !- Handle + {00000000-0000-0000-0095-000000000049}, !- Handle Space Function Office open plan Thermostat 40, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000050}, !- Handle + {00000000-0000-0000-0095-000000000050}, !- Handle Space Function Office open plan Thermostat 41, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000051}, !- Handle + {00000000-0000-0000-0095-000000000051}, !- Handle Space Function Office open plan Thermostat 42, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000052}, !- Handle + {00000000-0000-0000-0095-000000000052}, !- Handle Space Function Office open plan Thermostat 43, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000053}, !- Handle + {00000000-0000-0000-0095-000000000053}, !- Handle Space Function Office open plan Thermostat 44, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000054}, !- Handle + {00000000-0000-0000-0095-000000000054}, !- Handle Space Function Office open plan Thermostat 45, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000055}, !- Handle + {00000000-0000-0000-0095-000000000055}, !- Handle Space Function Office open plan Thermostat 46, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000056}, !- Handle + {00000000-0000-0000-0095-000000000056}, !- Handle Space Function Office open plan Thermostat 47, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000057}, !- Handle + {00000000-0000-0000-0095-000000000057}, !- Handle Space Function Office open plan Thermostat 48, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000058}, !- Handle + {00000000-0000-0000-0095-000000000058}, !- Handle Space Function Office open plan Thermostat 49, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000059}, !- Handle + {00000000-0000-0000-0095-000000000059}, !- Handle Space Function Office open plan Thermostat 5, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000060}, !- Handle + {00000000-0000-0000-0095-000000000060}, !- Handle Space Function Office open plan Thermostat 50, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000061}, !- Handle + {00000000-0000-0000-0095-000000000061}, !- Handle Space Function Office open plan Thermostat 51, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000062}, !- Handle + {00000000-0000-0000-0095-000000000062}, !- Handle Space Function Office open plan Thermostat 52, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000063}, !- Handle + {00000000-0000-0000-0095-000000000063}, !- Handle Space Function Office open plan Thermostat 53, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000064}, !- Handle + {00000000-0000-0000-0095-000000000064}, !- Handle Space Function Office open plan Thermostat 54, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000065}, !- Handle + {00000000-0000-0000-0095-000000000065}, !- Handle Space Function Office open plan Thermostat 55, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000066}, !- Handle + {00000000-0000-0000-0095-000000000066}, !- Handle Space Function Office open plan Thermostat 56, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000067}, !- Handle + {00000000-0000-0000-0095-000000000067}, !- Handle Space Function Office open plan Thermostat 57, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000068}, !- Handle + {00000000-0000-0000-0095-000000000068}, !- Handle Space Function Office open plan Thermostat 6, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000069}, !- Handle + {00000000-0000-0000-0095-000000000069}, !- Handle Space Function Office open plan Thermostat 7, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000070}, !- Handle + {00000000-0000-0000-0095-000000000070}, !- Handle Space Function Office open plan Thermostat 8, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000071}, !- Handle + {00000000-0000-0000-0095-000000000071}, !- Handle Space Function Office open plan Thermostat 9, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000072}, !- Handle + {00000000-0000-0000-0095-000000000072}, !- Handle Space Function Office open plan Thermostat, !- Name - {00000000-0000-0000-0062-000000000016}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000015}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000016}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle 1089gal NaturalGas Water Heater - 735kBtu/hr 0.805 Therm Eff, !- Name 4.12098554344306, !- Tank Volume {m3} - {00000000-0000-0000-0062-000000000020}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000020}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -15005,7 +21275,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0062-000000000022}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0066-000000000025}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 27.4181861750995, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -15015,8 +21285,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0020-000000000195}, !- Use Side Inlet Node Name - {00000000-0000-0000-0020-000000000196}, !- Use Side Outlet Node Name + {00000000-0000-0000-0020-000000000519}, !- Use Side Inlet Node Name + {00000000-0000-0000-0020-000000000520}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -15029,18 +21299,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0095-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Handle Core_bottom WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000212}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000213}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000536}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000537}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15048,13 +21318,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000002}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Handle Core_mid WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000216}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000217}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000540}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000541}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15062,13 +21332,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000003}, !- Handle + {00000000-0000-0000-0100-000000000003}, !- Handle Core_top WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000220}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000221}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000544}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000545}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15076,13 +21346,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000004}, !- Handle + {00000000-0000-0000-0100-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0020-000000000224}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000225}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000548}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000549}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15090,13 +21360,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000005}, !- Handle + {00000000-0000-0000-0100-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000228}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000229}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000552}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000553}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15104,13 +21374,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000006}, !- Handle + {00000000-0000-0000-0100-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000232}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000233}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000556}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000557}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15118,13 +21388,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000007}, !- Handle + {00000000-0000-0000-0100-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000236}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000237}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000560}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000561}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15132,13 +21402,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000008}, !- Handle + {00000000-0000-0000-0100-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000240}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000241}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000564}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000565}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15146,13 +21416,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000009}, !- Handle + {00000000-0000-0000-0100-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000244}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000245}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000568}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000569}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15160,13 +21430,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000010}, !- Handle + {00000000-0000-0000-0100-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000248}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000249}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000572}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000573}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15174,13 +21444,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000011}, !- Handle + {00000000-0000-0000-0100-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000252}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000253}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000576}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000577}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15188,13 +21458,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000012}, !- Handle + {00000000-0000-0000-0100-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000256}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000257}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000580}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000581}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15202,13 +21472,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000013}, !- Handle + {00000000-0000-0000-0100-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000260}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000261}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000584}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000585}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15216,13 +21486,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000014}, !- Handle + {00000000-0000-0000-0100-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000264}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000265}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000588}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000589}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15230,13 +21500,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000015}, !- Handle + {00000000-0000-0000-0100-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000268}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000269}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000592}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000593}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15244,13 +21514,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000016}, !- Handle + {00000000-0000-0000-0100-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000272}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000273}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000596}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000597}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15258,13 +21528,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000017}, !- Handle + {00000000-0000-0000-0100-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000276}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000277}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000600}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000601}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15272,13 +21542,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000018}, !- Handle + {00000000-0000-0000-0100-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000280}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000281}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000604}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000605}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15286,13 +21556,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000019}, !- Handle + {00000000-0000-0000-0100-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000284}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000285}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000608}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000609}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15300,314 +21570,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0101-000000000001}, !- Handle Core_bottom Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000002}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000002}, !- Handle + {00000000-0000-0000-0101-000000000002}, !- Handle Core_mid Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000003}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000003}, !- Handle + {00000000-0000-0000-0101-000000000003}, !- Handle Core_top Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000004}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000004}, !- Handle + {00000000-0000-0000-0101-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0098-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000005}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000005}, !- Handle + {00000000-0000-0000-0101-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000006}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000006}, !- Handle + {00000000-0000-0000-0101-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000007}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000007}, !- Handle + {00000000-0000-0000-0101-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000008}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000008}, !- Handle + {00000000-0000-0000-0101-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000011}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000009}, !- Handle + {00000000-0000-0000-0101-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000012}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000010}, !- Handle + {00000000-0000-0000-0101-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000013}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000011}, !- Handle + {00000000-0000-0000-0101-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000014}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000012}, !- Handle + {00000000-0000-0000-0101-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000015}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000013}, !- Handle + {00000000-0000-0000-0101-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000016}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000014}, !- Handle + {00000000-0000-0000-0101-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000017}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000015}, !- Handle + {00000000-0000-0000-0101-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000018}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000016}, !- Handle + {00000000-0000-0000-0101-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000019}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000017}, !- Handle + {00000000-0000-0000-0101-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000020}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000018}, !- Handle + {00000000-0000-0000-0101-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000021}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000019}, !- Handle + {00000000-0000-0000-0101-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000022}, !- Space Name - {00000000-0000-0000-0062-000000000014}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0066-000000000014}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0102-000000000001}, !- Handle Core_bottom 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000002}, !- Handle + {00000000-0000-0000-0102-000000000002}, !- Handle Core_mid 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000003}, !- Handle + {00000000-0000-0000-0102-000000000003}, !- Handle Core_top 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000004}, !- Handle + {00000000-0000-0000-0102-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.87303728009577e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000005}, !- Handle + {00000000-0000-0000-0102-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000006}, !- Handle + {00000000-0000-0000-0102-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000007}, !- Handle + {00000000-0000-0000-0102-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000008}, !- Handle + {00000000-0000-0000-0102-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000009}, !- Handle + {00000000-0000-0000-0102-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000010}, !- Handle + {00000000-0000-0000-0102-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000011}, !- Handle + {00000000-0000-0000-0102-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000012}, !- Handle + {00000000-0000-0000-0102-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000013}, !- Handle + {00000000-0000-0000-0102-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000014}, !- Handle + {00000000-0000-0000-0102-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000015}, !- Handle + {00000000-0000-0000-0102-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000016}, !- Handle + {00000000-0000-0000-0102-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000017}, !- Handle + {00000000-0000-0000-0102-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000018}, !- Handle + {00000000-0000-0000-0102-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000019}, !- Handle + {00000000-0000-0000-0102-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0103-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -15623,60 +21893,168 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0100-000000000001}, !- Handle + {00000000-0000-0000-0104-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0100-000000000002}, !- Handle + {00000000-0000-0000-0104-000000000002}, !- Handle SimpleGlazing:U=0.190 SHGC=0.600, !- Name 1.9, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0101-000000000001}, !- Handle + {00000000-0000-0000-0105-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0102-000000000001}, !- Handle + {00000000-0000-0000-0106-000000000001}, !- Handle Zone HVAC Baseboard Convective Water 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0019-000000000001}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0102-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0106-000000000002}, !- Handle + Zone HVAC Baseboard Convective Water 10, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0019-000000000002}; !- Heating Coil Name +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000003}, !- Handle + Zone HVAC Baseboard Convective Water 11, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000003}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000004}, !- Handle + Zone HVAC Baseboard Convective Water 12, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000004}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000005}, !- Handle + Zone HVAC Baseboard Convective Water 13, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000005}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000006}, !- Handle + Zone HVAC Baseboard Convective Water 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000006}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000007}, !- Handle + Zone HVAC Baseboard Convective Water 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000007}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000008}, !- Handle + Zone HVAC Baseboard Convective Water 16, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000008}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000009}, !- Handle + Zone HVAC Baseboard Convective Water 17, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000009}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000010}, !- Handle + Zone HVAC Baseboard Convective Water 18, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000010}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000011}, !- Handle + Zone HVAC Baseboard Convective Water 19, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000011}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000012}, !- Handle + Zone HVAC Baseboard Convective Water 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000012}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000013}, !- Handle + Zone HVAC Baseboard Convective Water 20, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000013}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000014}, !- Handle + Zone HVAC Baseboard Convective Water 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000014}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000015}, !- Handle + Zone HVAC Baseboard Convective Water 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000015}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000016}, !- Handle + Zone HVAC Baseboard Convective Water 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000016}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000017}, !- Handle + Zone HVAC Baseboard Convective Water 6, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000017}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000018}, !- Handle + Zone HVAC Baseboard Convective Water 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000018}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000019}, !- Handle + Zone HVAC Baseboard Convective Water 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000019}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000020}, !- Handle + Zone HVAC Baseboard Convective Water 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000020}; !- Heating Coil Name + OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000001}, !- Handle + {00000000-0000-0000-0107-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000001}, !- Thermal Zone + {00000000-0000-0000-0094-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000002}, !- Handle + {00000000-0000-0000-0107-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000002}, !- Thermal Zone + {00000000-0000-0000-0094-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000003}, !- Handle + {00000000-0000-0000-0107-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000003}, !- Thermal Zone + {00000000-0000-0000-0094-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000004}, !- Handle + {00000000-0000-0000-0107-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000004}, !- Thermal Zone + {00000000-0000-0000-0094-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000012}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -15688,119 +22066,299 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000005}, !- Handle + {00000000-0000-0000-0107-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000005}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000005}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000006}, !- Handle + {00000000-0000-0000-0107-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000006}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000006}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000017}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000007}, !- Handle + {00000000-0000-0000-0107-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000007}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000007}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000008}, !- Handle + {00000000-0000-0000-0107-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000008}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000008}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000018}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000009}, !- Handle + {00000000-0000-0000-0107-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000009}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000016}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000010}, !- Handle + {00000000-0000-0000-0107-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000010}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000019}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000011}, !- Handle + {00000000-0000-0000-0107-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000011}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000012}, !- Handle + {00000000-0000-0000-0107-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000012}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000013}, !- Handle + {00000000-0000-0000-0107-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000013}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000014}, !- Handle + {00000000-0000-0000-0107-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000014}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000020}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000015}, !- Handle + {00000000-0000-0000-0107-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000015}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000016}, !- Handle + {00000000-0000-0000-0107-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000016}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000017}, !- Handle + {00000000-0000-0000-0107-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000017}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000009}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000018}, !- Handle + {00000000-0000-0000-0107-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000018}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000010}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000019}, !- Handle + {00000000-0000-0000-0107-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000019}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000019}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000008}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000020}, !- Handle + {00000000-0000-0000-0107-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000020}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000020}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000011}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000021}, !- Handle + {00000000-0000-0000-0107-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000021}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000021}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000022}, !- Handle + {00000000-0000-0000-0107-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000022}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000022}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000023}, !- Handle + {00000000-0000-0000-0107-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000023}, !- Thermal Zone + {00000000-0000-0000-0094-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2020-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2020-Electricity-CAN_AB_Calgary.osm index 899f8f6e05..cd136d107b 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2020-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2020-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0059-000000000023}, !- Object Name + {00000000-0000-0000-0063-000000000026}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.902183614624489, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0059-000000000024}, !- Object Name + {00000000-0000-0000-0063-000000000030}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.198210559234802, !- Feature Value 1 @@ -32,18 +32,66 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0012-000000000001}; !- Object Name + {00000000-0000-0000-0063-000000000027}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0063-000000000028}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0063-000000000029}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000006}, !- Handle + {00000000-0000-0000-0012-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000007}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0059-000000000023}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0063-000000000026}, !- Availability Schedule + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -62,9 +110,75 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name + , !- Controller List Name + {00000000-0000-0000-0063-000000000027}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000145}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000148}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000147}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000146}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0063-000000000028}, !- Availability Schedule + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000201}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000204}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000203}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000202}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000004}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3, !- Name + , !- Controller List Name + {00000000-0000-0000-0063-000000000029}, !- Availability Schedule + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000257}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000260}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000259}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000258}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0059-000000000024}, !- Availability Schedule + {00000000-0000-0000-0063-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -89,8 +203,8 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000059}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000249}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000250}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000417}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000418}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000058}; !- Return Air Stream Node Name OS:AirLoopHVAC:OutdoorAirSystem, @@ -100,10 +214,43 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000134}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000255}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000256}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000423}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000424}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000138}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0022-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000160}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000429}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000430}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000164}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000004}, !- Handle + Air Loop HVAC Outdoor Air System 4, !- Name + {00000000-0000-0000-0022-000000000004}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000216}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000435}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000436}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000220}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000005}, !- Handle + Air Loop HVAC Outdoor Air System 5, !- Name + {00000000-0000-0000-0022-000000000005}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000272}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000441}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000442}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000276}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -116,6 +263,39 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000125}, !- Outlet Node Name {00000000-0000-0000-0017-000000000141}; !- Inlet Node Name 1 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0017-000000000150}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000167}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000173}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000179}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000185}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000191}, !- Inlet Node Name 5 + {00000000-0000-0000-0017-000000000197}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000004}, !- Handle + Air Loop HVAC Zone Mixer 4, !- Name + {00000000-0000-0000-0017-000000000206}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000223}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000229}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000235}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000241}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000247}, !- Inlet Node Name 5 + {00000000-0000-0000-0017-000000000253}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000005}, !- Handle + Air Loop HVAC Zone Mixer 5, !- Name + {00000000-0000-0000-0017-000000000262}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000279}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000285}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000291}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000297}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000303}, !- Inlet Node Name 5 + {00000000-0000-0000-0017-000000000309}; !- Inlet Node Name 6 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -128,10 +308,43 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000124}, !- Inlet Node Name {00000000-0000-0000-0017-000000000142}; !- Outlet Node Name 1 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0017-000000000149}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000168}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000174}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000180}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000186}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000192}, !- Outlet Node Name 5 + {00000000-0000-0000-0017-000000000198}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000004}, !- Handle + Air Loop HVAC Zone Splitter 4, !- Name + {00000000-0000-0000-0017-000000000205}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000224}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000230}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000236}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000242}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000248}, !- Outlet Node Name 5 + {00000000-0000-0000-0017-000000000254}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000005}, !- Handle + Air Loop HVAC Zone Splitter 5, !- Name + {00000000-0000-0000-0017-000000000261}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000280}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000286}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000292}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000298}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000304}, !- Outlet Node Name 5 + {00000000-0000-0000-0017-000000000310}; !- Outlet Node Name 6 + OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000065}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000066}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -139,14 +352,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000143}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0016-000000000003}, !- Reheat Coil Name + {00000000-0000-0000-0016-000000000018}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000144}, !- Air Outlet Node Name @@ -157,82 +370,517 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0045-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000237}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000238}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0056-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0045-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0045-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000243}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000244}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000249}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000250}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000255}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000009}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000256}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000281}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000011}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000282}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000287}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000013}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000288}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000008}, !- Handle + Air Terminal Single Duct VAV Reheat 16, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000293}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000014}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000294}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:Building, - {00000000-0000-0000-0010-000000000001}, !- Handle - LargeOffice, !- Name - , !- Building Sector Type - 0, !- North Axis {deg} - , !- Nominal Floor to Floor Height {m} - , !- Space Type Name - {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name - , !- Default Schedule Set Name - 13, !- Standards Number of Stories - 12, !- Standards Number of Above Ground Stories - NECB2020, !- Standards Template - LargeOffice, !- Standards Building Type - , !- Standards Number of Living Units - , !- Relocatable - ; !- Nominal Floor to Ceiling Height {m} +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000009}, !- Handle + Air Terminal Single Duct VAV Reheat 17, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000299}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000015}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000300}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:BuildingStory, - {00000000-0000-0000-0011-000000000001}, !- Handle - Basement Story 0, !- Name - -2.439, !- Nominal Z Coordinate {m} - , !- Nominal Floor to Floor Height {m} - , !- Default Construction Set Name - , !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000023}, !- Group Rendering Name - ; !- Nominal Floor to Ceiling Height {m} +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000010}, !- Handle + Air Terminal Single Duct VAV Reheat 18, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000305}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000016}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000306}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000011}, !- Handle + Air Terminal Single Duct VAV Reheat 19, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000311}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000017}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000312}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000169}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000020}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000170}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000175}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000021}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000176}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000181}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000022}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000182}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 5, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000187}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000023}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000188}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000016}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000193}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000024}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000194}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000017}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000199}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000002}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000200}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000018}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000225}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000226}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000019}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000231}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0016-000000000005}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000232}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000004}, !- Handle + Availability Manager Night Cycle 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000013}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000014}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000015}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000005}, !- Handle + Availability Manager Night Cycle 5, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000017}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000018}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000019}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name + {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name + {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000007}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000008}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:Building, + {00000000-0000-0000-0010-000000000001}, !- Handle + LargeOffice, !- Name + , !- Building Sector Type + 0, !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + , !- Space Type Name + {00000000-0000-0000-0028-000000000001}, !- Default Construction Set Name + , !- Default Schedule Set Name + 13, !- Standards Number of Stories + 12, !- Standards Number of Above Ground Stories + NECB2020, !- Standards Template + LargeOffice, !- Standards Building Type + , !- Standards Number of Living Units + , !- Relocatable + ; !- Nominal Floor to Ceiling Height {m} + +OS:BuildingStory, + {00000000-0000-0000-0011-000000000001}, !- Handle + Basement Story 0, !- Name + -2.439, !- Nominal Z Coordinate {m} + , !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {00000000-0000-0000-0059-000000000023}, !- Group Rendering Name + ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, {00000000-0000-0000-0011-000000000002}, !- Handle @@ -241,7 +889,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -251,7 +899,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -261,14 +909,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton, !- Name - 14417.1813010444, !- Reference Capacity {W} - 4.51476251604621, !- Reference COP {W/W} + Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton, !- Name + 1889395.58683074, !- Reference Capacity {W} + 6.0222602739726, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -310,9 +958,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0025-000000000009}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0025-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0027-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0025-000000000011}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0025-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0027-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -347,8 +995,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0014-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 115kBtu/hr 9.44EER, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 114kBtu/hr 9.44EER, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.28021693457475, !- Rated COP {W/W} @@ -383,7 +1031,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -398,31 +1046,274 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000001}, !- Handle - Coil Heating Electric 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000057}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000054}; !- Air Outlet Node Name - -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Electric 2, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name - , !- Efficiency - , !- Nominal Capacity {W} - {00000000-0000-0000-0017-000000000133}, !- Air Inlet Node Name - {00000000-0000-0000-0017-000000000130}; !- Air Outlet Node Name +OS:Coil:Cooling:Water, + {00000000-0000-0000-0015-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000152}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000153}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000161}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000158}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration -OS:Coil:Heating:Electric, - {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Electric 3, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name - , !- Efficiency - 10239.3805503845, !- Nominal Capacity {W} - , !- Air Inlet Node Name +OS:Coil:Cooling:Water, + {00000000-0000-0000-0015-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000208}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000217}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000214}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0015-000000000004}, !- Handle + Coil Cooling Water 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000264}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000265}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000273}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000270}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000001}, !- Handle + Coil Heating Electric 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000057}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000054}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000002}, !- Handle + Coil Heating Electric 10, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 15649.9596118927, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000003}, !- Handle + Coil Heating Electric 11, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000215}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000212}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000004}, !- Handle + Coil Heating Electric 12, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 439554.281616211, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000005}, !- Handle + Coil Heating Electric 13, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 27241.1902427673, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000006}, !- Handle + Coil Heating Electric 14, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 228709.210968018, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000007}, !- Handle + Coil Heating Electric 15, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 198246.10748291, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000008}, !- Handle + Coil Heating Electric 16, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 97192.5842285156, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000009}, !- Handle + Coil Heating Electric 17, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 210911.380004883, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000010}, !- Handle + Coil Heating Electric 18, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000271}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000268}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000011}, !- Handle + Coil Heating Electric 19, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 43752.7582168579, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000012}, !- Handle + Coil Heating Electric 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000133}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000130}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000013}, !- Handle + Coil Heating Electric 20, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 2747.42392301559, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000014}, !- Handle + Coil Heating Electric 21, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 22545.1478004456, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000015}, !- Handle + Coil Heating Electric 22, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 19216.4242744446, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000016}, !- Handle + Coil Heating Electric 23, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 11536.5702152252, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000017}, !- Handle + Coil Heating Electric 24, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 21139.2771720886, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000018}, !- Handle + Coil Heating Electric 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 6004.63063716888, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000019}, !- Handle + Coil Heating Electric 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0017-000000000159}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000156}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000020}, !- Handle + Coil Heating Electric 5, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 27449.1485595703, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000021}, !- Handle + Coil Heating Electric 6, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 2077.9649913311, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000022}, !- Handle + Coil Heating Electric 7, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 15907.886838913, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000023}, !- Handle + Coil Heating Electric 8, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 13996.6197967529, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0016-000000000024}, !- Handle + Coil Heating Electric 9, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 6564.07399177551, !- Nominal Capacity {W} + , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Connection, @@ -588,175 +1479,175 @@ OS:Connection, OS:Connection, {00000000-0000-0000-0017-000000000024}, !- Handle - {00000000-0000-0000-0086-000000000010}, !- Source Object + {00000000-0000-0000-0090-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000013}, !- Target Object + {00000000-0000-0000-0050-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle - {00000000-0000-0000-0086-000000000001}, !- Source Object + {00000000-0000-0000-0090-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000003}, !- Target Object + {00000000-0000-0000-0050-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle - {00000000-0000-0000-0086-000000000022}, !- Source Object + {00000000-0000-0000-0090-000000000022}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000025}, !- Target Object + {00000000-0000-0000-0050-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000027}, !- Handle - {00000000-0000-0000-0086-000000000003}, !- Source Object + {00000000-0000-0000-0090-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000005}, !- Target Object + {00000000-0000-0000-0050-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle - {00000000-0000-0000-0086-000000000016}, !- Source Object + {00000000-0000-0000-0090-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000019}, !- Target Object + {00000000-0000-0000-0050-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000029}, !- Handle - {00000000-0000-0000-0086-000000000017}, !- Source Object + {00000000-0000-0000-0090-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000020}, !- Target Object + {00000000-0000-0000-0050-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000030}, !- Handle - {00000000-0000-0000-0086-000000000005}, !- Source Object + {00000000-0000-0000-0090-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000008}, !- Target Object + {00000000-0000-0000-0050-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle - {00000000-0000-0000-0086-000000000006}, !- Source Object + {00000000-0000-0000-0090-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000009}, !- Target Object + {00000000-0000-0000-0050-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000032}, !- Handle - {00000000-0000-0000-0086-000000000018}, !- Source Object + {00000000-0000-0000-0090-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000021}, !- Target Object + {00000000-0000-0000-0050-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000033}, !- Handle - {00000000-0000-0000-0086-000000000011}, !- Source Object + {00000000-0000-0000-0090-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000014}, !- Target Object + {00000000-0000-0000-0050-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle - {00000000-0000-0000-0086-000000000019}, !- Source Object + {00000000-0000-0000-0090-000000000019}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000022}, !- Target Object + {00000000-0000-0000-0050-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000035}, !- Handle - {00000000-0000-0000-0086-000000000012}, !- Source Object + {00000000-0000-0000-0090-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000015}, !- Target Object + {00000000-0000-0000-0050-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000036}, !- Handle - {00000000-0000-0000-0086-000000000004}, !- Source Object + {00000000-0000-0000-0090-000000000004}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000007}, !- Target Object + {00000000-0000-0000-0050-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle - {00000000-0000-0000-0086-000000000002}, !- Source Object + {00000000-0000-0000-0090-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000004}, !- Target Object + {00000000-0000-0000-0050-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle - {00000000-0000-0000-0086-000000000007}, !- Source Object + {00000000-0000-0000-0090-000000000007}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000010}, !- Target Object + {00000000-0000-0000-0050-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0086-000000000020}, !- Source Object + {00000000-0000-0000-0090-000000000020}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000023}, !- Target Object + {00000000-0000-0000-0050-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle - {00000000-0000-0000-0086-000000000013}, !- Source Object + {00000000-0000-0000-0090-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000016}, !- Target Object + {00000000-0000-0000-0050-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0086-000000000021}, !- Source Object + {00000000-0000-0000-0090-000000000021}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000024}, !- Target Object + {00000000-0000-0000-0050-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle - {00000000-0000-0000-0086-000000000014}, !- Source Object + {00000000-0000-0000-0090-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000017}, !- Target Object + {00000000-0000-0000-0050-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle - {00000000-0000-0000-0086-000000000008}, !- Source Object + {00000000-0000-0000-0090-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000011}, !- Target Object + {00000000-0000-0000-0050-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0086-000000000015}, !- Source Object + {00000000-0000-0000-0090-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000018}, !- Target Object + {00000000-0000-0000-0050-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0086-000000000009}, !- Source Object + {00000000-0000-0000-0090-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000012}, !- Target Object + {00000000-0000-0000-0050-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle - {00000000-0000-0000-0086-000000000023}, !- Source Object + {00000000-0000-0000-0090-000000000023}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000113}, !- Target Object + {00000000-0000-0000-0050-000000000182}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0046-000000000119}, !- Target Object + {00000000-0000-0000-0050-000000000188}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0046-000000000120}, !- Source Object + {00000000-0000-0000-0050-000000000189}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -765,19 +1656,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000114}, !- Target Object + {00000000-0000-0000-0050-000000000183}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0046-000000000115}, !- Source Object + {00000000-0000-0000-0050-000000000184}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle - {00000000-0000-0000-0046-000000000114}, !- Source Object + {00000000-0000-0000-0050-000000000183}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -786,47 +1677,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000115}, !- Target Object + {00000000-0000-0000-0050-000000000184}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle - {00000000-0000-0000-0036-000000000001}, !- Source Object + {00000000-0000-0000-0040-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0046-000000000120}, !- Target Object + {00000000-0000-0000-0050-000000000189}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0046-000000000037}, !- Target Object + {00000000-0000-0000-0050-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle - {00000000-0000-0000-0046-000000000037}, !- Source Object + {00000000-0000-0000-0050-000000000100}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0036-000000000001}, !- Target Object + {00000000-0000-0000-0040-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0046-000000000039}, !- Target Object + {00000000-0000-0000-0050-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle - {00000000-0000-0000-0046-000000000039}, !- Source Object + {00000000-0000-0000-0050-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle - {00000000-0000-0000-0046-000000000119}, !- Source Object + {00000000-0000-0000-0050-000000000188}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -835,33 +1726,33 @@ OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0046-000000000116}, !- Target Object + {00000000-0000-0000-0050-000000000185}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0046-000000000116}, !- Source Object + {00000000-0000-0000-0050-000000000185}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle - {00000000-0000-0000-0046-000000000027}, !- Source Object + {00000000-0000-0000-0050-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000067}, !- Target Object + {00000000-0000-0000-0056-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle - {00000000-0000-0000-0052-000000000069}, !- Source Object + {00000000-0000-0000-0056-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000112}, !- Target Object + {00000000-0000-0000-0050-000000000181}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle - {00000000-0000-0000-0046-000000000112}, !- Source Object + {00000000-0000-0000-0050-000000000181}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -870,12 +1761,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000026}, !- Target Object + {00000000-0000-0000-0050-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle - {00000000-0000-0000-0046-000000000026}, !- Source Object + {00000000-0000-0000-0050-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -884,40 +1775,40 @@ OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0046-000000000027}, !- Target Object + {00000000-0000-0000-0050-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle - {00000000-0000-0000-0051-000000000001}, !- Source Object + {00000000-0000-0000-0055-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0046-000000000032}, !- Target Object + {00000000-0000-0000-0050-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000103}, !- Target Object + {00000000-0000-0000-0050-000000000169}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0046-000000000033}, !- Source Object + {00000000-0000-0000-0050-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000001}, !- Target Object + {00000000-0000-0000-0055-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle - {00000000-0000-0000-0051-000000000001}, !- Source Object + {00000000-0000-0000-0055-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0046-000000000030}, !- Target Object + {00000000-0000-0000-0050-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle - {00000000-0000-0000-0046-000000000030}, !- Source Object + {00000000-0000-0000-0050-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -926,47 +1817,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000034}, !- Target Object + {00000000-0000-0000-0050-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000031}, !- Target Object + {00000000-0000-0000-0050-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle - {00000000-0000-0000-0046-000000000031}, !- Source Object + {00000000-0000-0000-0050-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000001}, !- Target Object + {00000000-0000-0000-0055-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle - {00000000-0000-0000-0046-000000000032}, !- Source Object + {00000000-0000-0000-0050-000000000086}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000001}, !- Target Object + {00000000-0000-0000-0058-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Source Object + {00000000-0000-0000-0058-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000105}, !- Target Object + {00000000-0000-0000-0050-000000000171}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0046-000000000105}, !- Source Object + {00000000-0000-0000-0050-000000000171}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle - {00000000-0000-0000-0046-000000000103}, !- Source Object + {00000000-0000-0000-0050-000000000169}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -975,12 +1866,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0046-000000000104}, !- Target Object + {00000000-0000-0000-0050-000000000170}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle - {00000000-0000-0000-0046-000000000104}, !- Source Object + {00000000-0000-0000-0050-000000000170}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -989,12 +1880,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0046-000000000109}, !- Target Object + {00000000-0000-0000-0050-000000000175}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle - {00000000-0000-0000-0046-000000000109}, !- Source Object + {00000000-0000-0000-0050-000000000175}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1003,12 +1894,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0046-000000000110}, !- Target Object + {00000000-0000-0000-0050-000000000176}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle - {00000000-0000-0000-0046-000000000110}, !- Source Object + {00000000-0000-0000-0050-000000000176}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -1017,26 +1908,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0046-000000000089}, !- Target Object + {00000000-0000-0000-0050-000000000155}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle - {00000000-0000-0000-0046-000000000089}, !- Source Object + {00000000-0000-0000-0050-000000000155}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000001}, !- Target Object + {00000000-0000-0000-0054-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle - {00000000-0000-0000-0050-000000000001}, !- Source Object + {00000000-0000-0000-0054-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000090}, !- Target Object + {00000000-0000-0000-0050-000000000156}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle - {00000000-0000-0000-0046-000000000090}, !- Source Object + {00000000-0000-0000-0050-000000000156}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1045,54 +1936,54 @@ OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000091}, !- Target Object + {00000000-0000-0000-0050-000000000157}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle - {00000000-0000-0000-0046-000000000091}, !- Source Object + {00000000-0000-0000-0050-000000000157}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000002}, !- Target Object + {00000000-0000-0000-0054-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle - {00000000-0000-0000-0050-000000000002}, !- Source Object + {00000000-0000-0000-0054-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000033}, !- Target Object + {00000000-0000-0000-0050-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle - {00000000-0000-0000-0051-000000000002}, !- Source Object + {00000000-0000-0000-0055-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0046-000000000042}, !- Target Object + {00000000-0000-0000-0050-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000044}, !- Target Object + {00000000-0000-0000-0050-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0046-000000000043}, !- Source Object + {00000000-0000-0000-0050-000000000109}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000002}, !- Target Object + {00000000-0000-0000-0055-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle - {00000000-0000-0000-0051-000000000002}, !- Source Object + {00000000-0000-0000-0055-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0046-000000000040}, !- Target Object + {00000000-0000-0000-0050-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle - {00000000-0000-0000-0046-000000000040}, !- Source Object + {00000000-0000-0000-0050-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1101,47 +1992,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000101}, !- Target Object + {00000000-0000-0000-0050-000000000167}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000041}, !- Target Object + {00000000-0000-0000-0050-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle - {00000000-0000-0000-0046-000000000041}, !- Source Object + {00000000-0000-0000-0050-000000000107}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000002}, !- Target Object + {00000000-0000-0000-0055-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle - {00000000-0000-0000-0046-000000000042}, !- Source Object + {00000000-0000-0000-0050-000000000108}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000002}, !- Target Object + {00000000-0000-0000-0058-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Source Object + {00000000-0000-0000-0058-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000106}, !- Target Object + {00000000-0000-0000-0050-000000000172}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0046-000000000106}, !- Source Object + {00000000-0000-0000-0050-000000000172}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle - {00000000-0000-0000-0046-000000000044}, !- Source Object + {00000000-0000-0000-0050-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0024-000000000001}, !- Target Object 2; !- Inlet Port @@ -1150,12 +2041,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle {00000000-0000-0000-0024-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000045}, !- Target Object + {00000000-0000-0000-0050-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle - {00000000-0000-0000-0046-000000000045}, !- Source Object + {00000000-0000-0000-0050-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -1164,26 +2055,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0046-000000000092}, !- Target Object + {00000000-0000-0000-0050-000000000158}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle - {00000000-0000-0000-0046-000000000092}, !- Source Object + {00000000-0000-0000-0050-000000000158}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000003}, !- Target Object + {00000000-0000-0000-0054-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle - {00000000-0000-0000-0050-000000000003}, !- Source Object + {00000000-0000-0000-0054-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000093}, !- Target Object + {00000000-0000-0000-0050-000000000159}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle - {00000000-0000-0000-0046-000000000093}, !- Source Object + {00000000-0000-0000-0050-000000000159}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -1192,26 +2083,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000094}, !- Target Object + {00000000-0000-0000-0050-000000000160}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle - {00000000-0000-0000-0046-000000000094}, !- Source Object + {00000000-0000-0000-0050-000000000160}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000004}, !- Target Object + {00000000-0000-0000-0054-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle - {00000000-0000-0000-0050-000000000004}, !- Source Object + {00000000-0000-0000-0054-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000043}, !- Target Object + {00000000-0000-0000-0050-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle - {00000000-0000-0000-0046-000000000101}, !- Source Object + {00000000-0000-0000-0050-000000000167}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -1220,12 +2111,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0046-000000000102}, !- Target Object + {00000000-0000-0000-0050-000000000168}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0046-000000000102}, !- Source Object + {00000000-0000-0000-0050-000000000168}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 3; !- Inlet Port @@ -1234,12 +2125,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0046-000000000107}, !- Target Object + {00000000-0000-0000-0050-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0046-000000000107}, !- Source Object + {00000000-0000-0000-0050-000000000173}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -1248,47 +2139,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0046-000000000108}, !- Target Object + {00000000-0000-0000-0050-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0046-000000000108}, !- Source Object + {00000000-0000-0000-0050-000000000174}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0046-000000000128}, !- Target Object + {00000000-0000-0000-0050-000000000218}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0046-000000000129}, !- Source Object + {00000000-0000-0000-0050-000000000219}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000122}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000123}, !- Target Object + {00000000-0000-0000-0050-000000000213}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0046-000000000124}, !- Source Object + {00000000-0000-0000-0050-000000000214}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0046-000000000123}, !- Source Object + {00000000-0000-0000-0050-000000000213}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -1297,12 +2188,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000125}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000124}, !- Target Object + {00000000-0000-0000-0050-000000000214}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0046-000000000034}, !- Source Object + {00000000-0000-0000-0050-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 10; !- Inlet Port @@ -1311,103 +2202,103 @@ OS:Connection, {00000000-0000-0000-0017-000000000127}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0046-000000000036}, !- Target Object + {00000000-0000-0000-0050-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000128}, !- Handle - {00000000-0000-0000-0046-000000000036}, !- Source Object + {00000000-0000-0000-0050-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000129}, !- Handle - {00000000-0000-0000-0037-000000000002}, !- Source Object + {00000000-0000-0000-0041-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0046-000000000129}, !- Target Object + {00000000-0000-0000-0050-000000000219}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000130}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object + {00000000-0000-0000-0016-000000000012}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0046-000000000038}, !- Target Object + {00000000-0000-0000-0050-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0046-000000000038}, !- Source Object + {00000000-0000-0000-0050-000000000103}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0037-000000000002}, !- Target Object + {00000000-0000-0000-0041-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000132}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0046-000000000035}, !- Target Object + {00000000-0000-0000-0050-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0046-000000000035}, !- Source Object + {00000000-0000-0000-0050-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object + {00000000-0000-0000-0016-000000000012}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000134}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0046-000000000125}, !- Target Object + {00000000-0000-0000-0050-000000000215}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0046-000000000125}, !- Source Object + {00000000-0000-0000-0050-000000000215}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000136}, !- Handle - {00000000-0000-0000-0046-000000000128}, !- Source Object + {00000000-0000-0000-0050-000000000218}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0037-000000000001}, !- Target Object + {00000000-0000-0000-0041-000000000004}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000137}, !- Handle - {00000000-0000-0000-0037-000000000001}, !- Source Object + {00000000-0000-0000-0041-000000000004}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0046-000000000111}, !- Target Object + {00000000-0000-0000-0050-000000000180}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000138}, !- Handle - {00000000-0000-0000-0046-000000000111}, !- Source Object + {00000000-0000-0000-0050-000000000180}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000139}, !- Handle - {00000000-0000-0000-0046-000000000029}, !- Source Object + {00000000-0000-0000-0050-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000037}, !- Target Object + {00000000-0000-0000-0056-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0052-000000000039}, !- Source Object + {00000000-0000-0000-0056-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0046-000000000006}, !- Target Object + {00000000-0000-0000-0050-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000141}, !- Handle - {00000000-0000-0000-0046-000000000006}, !- Source Object + {00000000-0000-0000-0050-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -1416,12 +2307,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000142}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000028}, !- Target Object + {00000000-0000-0000-0050-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000143}, !- Handle - {00000000-0000-0000-0046-000000000028}, !- Source Object + {00000000-0000-0000-0050-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -1430,805 +2321,2107 @@ OS:Connection, {00000000-0000-0000-0017-000000000144}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0046-000000000029}, !- Target Object + {00000000-0000-0000-0050-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0051-000000000003}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0046-000000000063}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000197}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000146}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object + {00000000-0000-0000-0050-000000000198}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000147}, !- Handle - {00000000-0000-0000-0046-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000003}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000192}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000148}, !- Handle - {00000000-0000-0000-0051-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0046-000000000061}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000193}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0046-000000000061}, !- Source Object + {00000000-0000-0000-0050-000000000192}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000006}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000150}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000097}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000193}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000151}, !- Handle - {00000000-0000-0000-0046-000000000062}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0051-000000000003}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0019-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000091}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0046-000000000063}, !- Source Object + {00000000-0000-0000-0050-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000153}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000060}, !- Target Object + {00000000-0000-0000-0015-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0046-000000000060}, !- Source Object + {00000000-0000-0000-0050-000000000093}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000005}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000155}, !- Handle - {00000000-0000-0000-0046-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0090-000000000001}, !- Target Object - 31; !- Inlet Port + {00000000-0000-0000-0041-000000000005}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000198}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0046-000000000002}, !- Target Object + {00000000-0000-0000-0016-000000000019}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000157}, !- Handle - {00000000-0000-0000-0046-000000000002}, !- Source Object + {00000000-0000-0000-0050-000000000104}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0041-000000000005}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0019-000000000005}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0046-000000000095}, !- Target Object + {00000000-0000-0000-0015-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0046-000000000095}, !- Source Object + {00000000-0000-0000-0050-000000000092}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000005}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0016-000000000019}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000160}, !- Handle - {00000000-0000-0000-0050-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000096}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000194}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000161}, !- Handle - {00000000-0000-0000-0046-000000000096}, !- Source Object + {00000000-0000-0000-0050-000000000194}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000005}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0015-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000162}, !- Handle - {00000000-0000-0000-0046-000000000097}, !- Source Object + {00000000-0000-0000-0050-000000000197}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000006}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0041-000000000001}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0050-000000000006}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000098}, !- Target Object + {00000000-0000-0000-0041-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000177}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0046-000000000098}, !- Source Object + {00000000-0000-0000-0050-000000000177}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000165}, !- Handle - {00000000-0000-0000-0018-000000000005}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0046-000000000099}, !- Target Object + {00000000-0000-0000-0050-000000000069}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0046-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000007}, !- Target Object + {00000000-0000-0000-0056-000000000045}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000167}, !- Handle - {00000000-0000-0000-0050-000000000007}, !- Source Object + {00000000-0000-0000-0050-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000064}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0018-000000000006}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0046-000000000100}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000169}, !- Handle - {00000000-0000-0000-0046-000000000100}, !- Source Object + {00000000-0000-0000-0050-000000000068}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000008}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000012}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0050-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000062}, !- Target Object + {00000000-0000-0000-0007-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000171}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0046-000000000046}, !- Target Object + {00000000-0000-0000-0050-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0046-000000000046}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000001}, !- Target Object + {00000000-0000-0000-0056-000000000021}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0092-000000000001}, !- Source Object + {00000000-0000-0000-0050-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000047}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000174}, !- Handle - {00000000-0000-0000-0046-000000000047}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000070}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000175}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0046-000000000048}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000070}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000013}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000176}, !- Handle - {00000000-0000-0000-0046-000000000048}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000002}, !- Target Object + {00000000-0000-0000-0007-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0092-000000000002}, !- Source Object + {00000000-0000-0000-0050-000000000073}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000049}, !- Target Object + {00000000-0000-0000-0056-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0046-000000000049}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0056-000000000066}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000016}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000179}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0046-000000000050}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0046-000000000050}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000003}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000181}, !- Handle - {00000000-0000-0000-0092-000000000003}, !- Source Object + {00000000-0000-0000-0050-000000000072}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000051}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000014}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0046-000000000051}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0007-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000073}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000183}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0046-000000000052}, !- Target Object + {00000000-0000-0000-0050-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0046-000000000052}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000004}, !- Target Object + {00000000-0000-0000-0056-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000185}, !- Handle - {00000000-0000-0000-0092-000000000004}, !- Source Object + {00000000-0000-0000-0050-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000053}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0046-000000000053}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000074}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0046-000000000054}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000015}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000188}, !- Handle - {00000000-0000-0000-0046-000000000054}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000005}, !- Target Object + {00000000-0000-0000-0007-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000189}, !- Handle - {00000000-0000-0000-0092-000000000005}, !- Source Object + {00000000-0000-0000-0050-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000055}, !- Target Object + {00000000-0000-0000-0056-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000190}, !- Handle - {00000000-0000-0000-0046-000000000055}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0056-000000000060}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000014}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0046-000000000056}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0046-000000000056}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000006}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000193}, !- Handle - {00000000-0000-0000-0092-000000000006}, !- Source Object + {00000000-0000-0000-0050-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000057}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000016}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0046-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0007-000000000016}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000077}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000195}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0046-000000000058}, !- Target Object + {00000000-0000-0000-0050-000000000079}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0046-000000000058}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000007}, !- Target Object + {00000000-0000-0000-0056-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000197}, !- Handle - {00000000-0000-0000-0092-000000000007}, !- Source Object + {00000000-0000-0000-0050-000000000018}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000059}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0046-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0050-000000000078}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000199}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0046-000000000065}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000078}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000017}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0046-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000008}, !- Target Object + {00000000-0000-0000-0007-000000000017}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0092-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000066}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000204}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000202}, !- Handle - {00000000-0000-0000-0046-000000000066}, !- Source Object + {00000000-0000-0000-0050-000000000205}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 11; !- Inlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000203}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0046-000000000067}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000199}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000204}, !- Handle - {00000000-0000-0000-0046-000000000067}, !- Source Object + {00000000-0000-0000-0050-000000000200}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0092-000000000009}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0092-000000000009}, !- Source Object + {00000000-0000-0000-0050-000000000199}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000068}, !- Target Object + {00000000-0000-0000-0005-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0046-000000000068}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000200}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000207}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0046-000000000069}, !- Target Object + {00000000-0000-0000-0019-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000208}, !- Handle - {00000000-0000-0000-0046-000000000069}, !- Source Object + {00000000-0000-0000-0050-000000000094}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0092-000000000010}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000003}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0092-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0046-000000000070}, !- Target Object + {00000000-0000-0000-0015-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000210}, !- Handle - {00000000-0000-0000-0046-000000000070}, !- Source Object + {00000000-0000-0000-0050-000000000096}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 13; !- Inlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0046-000000000071}, !- Target Object + {00000000-0000-0000-0041-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000205}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000212}, !- Handle - {00000000-0000-0000-0046-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000011}, !- Target Object + {00000000-0000-0000-0016-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0092-000000000011}, !- Source Object + {00000000-0000-0000-0050-000000000101}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000072}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0041-000000000006}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0046-000000000072}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0015-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000095}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000215}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0046-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000095}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0046-000000000073}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000012}, !- Target Object + {00000000-0000-0000-0003-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000201}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000217}, !- Handle - {00000000-0000-0000-0092-000000000012}, !- Source Object + {00000000-0000-0000-0050-000000000201}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000074}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0015-000000000003}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000218}, !- Handle - {00000000-0000-0000-0046-000000000074}, !- Source Object + {00000000-0000-0000-0050-000000000204}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0041-000000000002}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000219}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0046-000000000075}, !- Target Object + {00000000-0000-0000-0041-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000178}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000220}, !- Handle - {00000000-0000-0000-0046-000000000075}, !- Source Object + {00000000-0000-0000-0050-000000000178}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0092-000000000013}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0092-000000000013}, !- Source Object + {00000000-0000-0000-0050-000000000081}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000076}, !- Target Object + {00000000-0000-0000-0056-000000000055}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000222}, !- Handle - {00000000-0000-0000-0046-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0056-000000000057}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000026}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0046-000000000077}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000026}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0046-000000000077}, !- Source Object + {00000000-0000-0000-0005-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0092-000000000014}, !- Target Object + {00000000-0000-0000-0050-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000225}, !- Handle - {00000000-0000-0000-0092-000000000014}, !- Source Object + {00000000-0000-0000-0050-000000000080}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000078}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000018}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0046-000000000078}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0007-000000000018}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000081}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000227}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0046-000000000079}, !- Target Object + {00000000-0000-0000-0050-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0046-000000000079}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000015}, !- Target Object + {00000000-0000-0000-0056-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000024}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000229}, !- Handle - {00000000-0000-0000-0092-000000000015}, !- Source Object + {00000000-0000-0000-0050-000000000024}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000080}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000230}, !- Handle - {00000000-0000-0000-0046-000000000080}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0005-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000082}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0046-000000000081}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000019}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000232}, !- Handle - {00000000-0000-0000-0046-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000016}, !- Target Object + {00000000-0000-0000-0007-000000000019}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000233}, !- Handle - {00000000-0000-0000-0092-000000000016}, !- Source Object + {00000000-0000-0000-0050-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000082}, !- Target Object + {00000000-0000-0000-0056-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0046-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 19; !- Inlet Port + {00000000-0000-0000-0056-000000000036}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000022}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000235}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0046-000000000083}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0046-000000000083}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000017}, !- Target Object + {00000000-0000-0000-0005-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000237}, !- Handle - {00000000-0000-0000-0092-000000000017}, !- Source Object + {00000000-0000-0000-0050-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000084}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000002}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0046-000000000084}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 20; !- Inlet Port + {00000000-0000-0000-0007-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000049}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000239}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0046-000000000085}, !- Target Object + {00000000-0000-0000-0050-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0046-000000000085}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000018}, !- Target Object + {00000000-0000-0000-0056-000000000030}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000020}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000241}, !- Handle - {00000000-0000-0000-0092-000000000018}, !- Source Object + {00000000-0000-0000-0050-000000000020}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000086}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0046-000000000086}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 21; !- Inlet Port + {00000000-0000-0000-0005-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000050}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000243}, !- Handle - {00000000-0000-0000-0019-000000000006}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0046-000000000087}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0050-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000003}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0046-000000000087}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0092-000000000019}, !- Target Object + {00000000-0000-0000-0007-000000000003}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000051}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000245}, !- Handle - {00000000-0000-0000-0092-000000000019}, !- Source Object + {00000000-0000-0000-0050-000000000053}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0046-000000000088}, !- Target Object + {00000000-0000-0000-0056-000000000061}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0046-000000000088}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 22; !- Inlet Port + {00000000-0000-0000-0056-000000000063}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000028}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000247}, !- Handle - {00000000-0000-0000-0046-000000000117}, !- Source Object + {00000000-0000-0000-0050-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000001}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0040-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0046-000000000121}, !- Target Object + {00000000-0000-0000-0005-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000052}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000249}, !- Handle - {00000000-0000-0000-0046-000000000121}, !- Source Object + {00000000-0000-0000-0050-000000000052}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0007-000000000004}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0046-000000000122}, !- Target Object + {00000000-0000-0000-0007-000000000004}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000053}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000251}, !- Handle - {00000000-0000-0000-0046-000000000122}, !- Source Object + {00000000-0000-0000-0050-000000000055}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000001}, !- Target Object - 14; !- Inlet Port + {00000000-0000-0000-0056-000000000013}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0040-000000000001}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0046-000000000118}, !- Target Object + {00000000-0000-0000-0056-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000253}, !- Handle - {00000000-0000-0000-0046-000000000126}, !- Source Object + {00000000-0000-0000-0050-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000002}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0040-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0046-000000000130}, !- Target Object + {00000000-0000-0000-0005-000000000004}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0050-000000000054}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000255}, !- Handle - {00000000-0000-0000-0046-000000000130}, !- Source Object + {00000000-0000-0000-0050-000000000054}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0007-000000000005}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0046-000000000131}, !- Target Object + {00000000-0000-0000-0007-000000000005}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000257}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000211}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000258}, !- Handle + {00000000-0000-0000-0050-000000000212}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000259}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000206}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000260}, !- Handle + {00000000-0000-0000-0050-000000000207}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000261}, !- Handle + {00000000-0000-0000-0050-000000000206}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000262}, !- Handle + {00000000-0000-0000-0004-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000207}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000263}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000097}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000264}, !- Handle + {00000000-0000-0000-0050-000000000097}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000265}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000099}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000266}, !- Handle + {00000000-0000-0000-0050-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000267}, !- Handle + {00000000-0000-0000-0041-000000000007}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000212}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000268}, !- Handle + {00000000-0000-0000-0016-000000000010}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000102}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000269}, !- Handle + {00000000-0000-0000-0050-000000000102}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000007}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000270}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000098}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000271}, !- Handle + {00000000-0000-0000-0050-000000000098}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000010}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000272}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000208}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000273}, !- Handle + {00000000-0000-0000-0050-000000000208}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000274}, !- Handle + {00000000-0000-0000-0050-000000000211}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000275}, !- Handle + {00000000-0000-0000-0041-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000179}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000276}, !- Handle + {00000000-0000-0000-0050-000000000179}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000277}, !- Handle + {00000000-0000-0000-0050-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000278}, !- Handle + {00000000-0000-0000-0056-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000279}, !- Handle + {00000000-0000-0000-0050-000000000040}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000280}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000281}, !- Handle + {00000000-0000-0000-0050-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000006}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000282}, !- Handle + {00000000-0000-0000-0007-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000283}, !- Handle + {00000000-0000-0000-0050-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000284}, !- Handle + {00000000-0000-0000-0056-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000285}, !- Handle + {00000000-0000-0000-0050-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000286}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000287}, !- Handle + {00000000-0000-0000-0050-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000007}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000288}, !- Handle + {00000000-0000-0000-0007-000000000007}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000289}, !- Handle + {00000000-0000-0000-0050-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000290}, !- Handle + {00000000-0000-0000-0056-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000032}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000291}, !- Handle + {00000000-0000-0000-0050-000000000032}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000292}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000293}, !- Handle + {00000000-0000-0000-0050-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000294}, !- Handle + {00000000-0000-0000-0007-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000295}, !- Handle + {00000000-0000-0000-0050-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000025}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000296}, !- Handle + {00000000-0000-0000-0056-000000000027}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000034}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000297}, !- Handle + {00000000-0000-0000-0050-000000000034}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000298}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000299}, !- Handle + {00000000-0000-0000-0050-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000300}, !- Handle + {00000000-0000-0000-0007-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000301}, !- Handle + {00000000-0000-0000-0050-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000302}, !- Handle + {00000000-0000-0000-0056-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000038}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000303}, !- Handle + {00000000-0000-0000-0050-000000000038}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000304}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000305}, !- Handle + {00000000-0000-0000-0050-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000306}, !- Handle + {00000000-0000-0000-0007-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000065}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000307}, !- Handle + {00000000-0000-0000-0050-000000000067}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000308}, !- Handle + {00000000-0000-0000-0056-000000000009}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000042}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000309}, !- Handle + {00000000-0000-0000-0050-000000000042}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000310}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0050-000000000066}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000311}, !- Handle + {00000000-0000-0000-0050-000000000066}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000312}, !- Handle + {00000000-0000-0000-0007-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000067}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000313}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0050-000000000129}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000314}, !- Handle + {00000000-0000-0000-0019-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000315}, !- Handle + {00000000-0000-0000-0050-000000000130}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000003}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000316}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000127}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000317}, !- Handle + {00000000-0000-0000-0050-000000000127}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000318}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000163}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000319}, !- Handle + {00000000-0000-0000-0050-000000000128}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000003}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000320}, !- Handle + {00000000-0000-0000-0050-000000000129}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000321}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000126}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000322}, !- Handle + {00000000-0000-0000-0050-000000000126}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000323}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0094-000000000001}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000324}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0050-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000325}, !- Handle + {00000000-0000-0000-0050-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000326}, !- Handle + {00000000-0000-0000-0019-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000161}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000327}, !- Handle + {00000000-0000-0000-0050-000000000161}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000328}, !- Handle + {00000000-0000-0000-0054-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000162}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000329}, !- Handle + {00000000-0000-0000-0050-000000000162}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000330}, !- Handle + {00000000-0000-0000-0050-000000000163}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000331}, !- Handle + {00000000-0000-0000-0054-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000164}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000332}, !- Handle + {00000000-0000-0000-0050-000000000164}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000333}, !- Handle + {00000000-0000-0000-0018-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000165}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000334}, !- Handle + {00000000-0000-0000-0050-000000000165}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000335}, !- Handle + {00000000-0000-0000-0054-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000130}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000336}, !- Handle + {00000000-0000-0000-0018-000000000006}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000166}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000337}, !- Handle + {00000000-0000-0000-0050-000000000166}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000338}, !- Handle + {00000000-0000-0000-0054-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000128}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000339}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000112}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000340}, !- Handle + {00000000-0000-0000-0050-000000000112}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000341}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000113}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000342}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000343}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000114}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000344}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000345}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000115}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000346}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000347}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000116}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000348}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000003}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000349}, !- Handle + {00000000-0000-0000-0096-000000000003}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000117}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000350}, !- Handle + {00000000-0000-0000-0050-000000000117}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000351}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000118}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000352}, !- Handle + {00000000-0000-0000-0050-000000000118}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000353}, !- Handle + {00000000-0000-0000-0096-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000119}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000354}, !- Handle + {00000000-0000-0000-0050-000000000119}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000355}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0050-000000000120}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000356}, !- Handle + {00000000-0000-0000-0050-000000000120}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000357}, !- Handle + {00000000-0000-0000-0096-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000121}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000358}, !- Handle + {00000000-0000-0000-0050-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000359}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000122}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000360}, !- Handle + {00000000-0000-0000-0050-000000000122}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000361}, !- Handle + {00000000-0000-0000-0096-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000123}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000362}, !- Handle + {00000000-0000-0000-0050-000000000123}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000363}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0050-000000000124}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000364}, !- Handle + {00000000-0000-0000-0050-000000000124}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000365}, !- Handle + {00000000-0000-0000-0096-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000125}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000366}, !- Handle + {00000000-0000-0000-0050-000000000125}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000367}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000131}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000368}, !- Handle + {00000000-0000-0000-0050-000000000131}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000369}, !- Handle + {00000000-0000-0000-0096-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000132}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000370}, !- Handle + {00000000-0000-0000-0050-000000000132}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000371}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000133}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000372}, !- Handle + {00000000-0000-0000-0050-000000000133}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000373}, !- Handle + {00000000-0000-0000-0096-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000134}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000374}, !- Handle + {00000000-0000-0000-0050-000000000134}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000375}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000135}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000376}, !- Handle + {00000000-0000-0000-0050-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000377}, !- Handle + {00000000-0000-0000-0096-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000136}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000378}, !- Handle + {00000000-0000-0000-0050-000000000136}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 13; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000379}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0050-000000000137}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000380}, !- Handle + {00000000-0000-0000-0050-000000000137}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000011}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000381}, !- Handle + {00000000-0000-0000-0096-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000138}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000382}, !- Handle + {00000000-0000-0000-0050-000000000138}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000383}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000139}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000384}, !- Handle + {00000000-0000-0000-0050-000000000139}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000385}, !- Handle + {00000000-0000-0000-0096-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000140}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000386}, !- Handle + {00000000-0000-0000-0050-000000000140}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000387}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0050-000000000141}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000388}, !- Handle + {00000000-0000-0000-0050-000000000141}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000389}, !- Handle + {00000000-0000-0000-0096-000000000013}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000142}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000390}, !- Handle + {00000000-0000-0000-0050-000000000142}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000391}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000143}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000392}, !- Handle + {00000000-0000-0000-0050-000000000143}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000393}, !- Handle + {00000000-0000-0000-0096-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000144}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000394}, !- Handle + {00000000-0000-0000-0050-000000000144}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000395}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0050-000000000145}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000396}, !- Handle + {00000000-0000-0000-0050-000000000145}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000015}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000397}, !- Handle + {00000000-0000-0000-0096-000000000015}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000146}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000398}, !- Handle + {00000000-0000-0000-0050-000000000146}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000399}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0050-000000000147}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000257}, !- Handle - {00000000-0000-0000-0046-000000000131}, !- Source Object + {00000000-0000-0000-0017-000000000400}, !- Handle + {00000000-0000-0000-0050-000000000147}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000401}, !- Handle + {00000000-0000-0000-0096-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000148}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000402}, !- Handle + {00000000-0000-0000-0050-000000000148}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000403}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0050-000000000149}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000404}, !- Handle + {00000000-0000-0000-0050-000000000149}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000017}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000405}, !- Handle + {00000000-0000-0000-0096-000000000017}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000150}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000406}, !- Handle + {00000000-0000-0000-0050-000000000150}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000407}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0050-000000000151}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000408}, !- Handle + {00000000-0000-0000-0050-000000000151}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000409}, !- Handle + {00000000-0000-0000-0096-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000152}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000410}, !- Handle + {00000000-0000-0000-0050-000000000152}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000411}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0050-000000000153}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000412}, !- Handle + {00000000-0000-0000-0050-000000000153}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0096-000000000019}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000413}, !- Handle + {00000000-0000-0000-0096-000000000019}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000154}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000414}, !- Handle + {00000000-0000-0000-0050-000000000154}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 22; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000415}, !- Handle + {00000000-0000-0000-0050-000000000186}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000416}, !- Handle + {00000000-0000-0000-0044-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000190}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000417}, !- Handle + {00000000-0000-0000-0050-000000000190}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000418}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000191}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000419}, !- Handle + {00000000-0000-0000-0050-000000000191}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000002}, !- Target Object + {00000000-0000-0000-0044-000000000001}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0040-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000420}, !- Handle + {00000000-0000-0000-0044-000000000001}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000187}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000421}, !- Handle + {00000000-0000-0000-0050-000000000216}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000005}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000422}, !- Handle + {00000000-0000-0000-0044-000000000005}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000226}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000423}, !- Handle + {00000000-0000-0000-0050-000000000226}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000424}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000227}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000425}, !- Handle + {00000000-0000-0000-0050-000000000227}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000005}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000426}, !- Handle + {00000000-0000-0000-0044-000000000005}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000217}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000427}, !- Handle + {00000000-0000-0000-0050-000000000195}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000428}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000220}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000429}, !- Handle + {00000000-0000-0000-0050-000000000220}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000430}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000221}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000431}, !- Handle + {00000000-0000-0000-0050-000000000221}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000432}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000196}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000433}, !- Handle + {00000000-0000-0000-0050-000000000202}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000434}, !- Handle + {00000000-0000-0000-0044-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000222}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000435}, !- Handle + {00000000-0000-0000-0050-000000000222}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000436}, !- Handle + {00000000-0000-0000-0003-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000223}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000437}, !- Handle + {00000000-0000-0000-0050-000000000223}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000003}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000438}, !- Handle + {00000000-0000-0000-0044-000000000003}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000203}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000439}, !- Handle + {00000000-0000-0000-0050-000000000209}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000440}, !- Handle + {00000000-0000-0000-0044-000000000004}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000224}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000441}, !- Handle + {00000000-0000-0000-0050-000000000224}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000442}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000225}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000443}, !- Handle + {00000000-0000-0000-0050-000000000225}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000004}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000444}, !- Handle + {00000000-0000-0000-0044-000000000004}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0046-000000000127}, !- Target Object + {00000000-0000-0000-0050-000000000210}, !- Target Object 2; !- Inlet Port OS:Connector:Mixer, @@ -2243,7 +4436,10 @@ OS:Connector:Mixer, {00000000-0000-0000-0018-000000000002}, !- Handle Connector Mixer 2, !- Name {00000000-0000-0000-0017-000000000073}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000128}; !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000128}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000154}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000210}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000266}; !- Inlet Branch Name 4 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000003}, !- Handle @@ -2262,34 +4458,34 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0017-000000000165}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000157}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000161}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000333}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000325}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000329}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0017-000000000168}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000164}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000174}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000178}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000182}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000186}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000190}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000194}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000198}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000202}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000206}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000210}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000214}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000218}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000222}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000226}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000230}, !- Inlet Branch Name 16 - {00000000-0000-0000-0017-000000000234}, !- Inlet Branch Name 17 - {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 18 - {00000000-0000-0000-0017-000000000242}, !- Inlet Branch Name 19 - {00000000-0000-0000-0017-000000000246}; !- Inlet Branch Name 20 + {00000000-0000-0000-0017-000000000336}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000332}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000342}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000346}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000350}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000354}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000358}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000362}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000366}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000370}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000374}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000378}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000382}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000386}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000390}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000394}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000398}, !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000402}, !- Inlet Branch Name 17 + {00000000-0000-0000-0017-000000000406}, !- Inlet Branch Name 18 + {00000000-0000-0000-0017-000000000410}, !- Inlet Branch Name 19 + {00000000-0000-0000-0017-000000000414}; !- Inlet Branch Name 20 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -2303,7 +4499,10 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0017-000000000071}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000072}; !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000072}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000151}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000207}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000263}; !- Outlet Branch Name 4 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -2322,309 +4521,420 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0017-000000000154}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000146}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000158}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000322}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000314}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000326}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0017-000000000149}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000150}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000171}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000175}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000179}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000183}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000187}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000191}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000195}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000199}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000203}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000207}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000211}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000215}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000219}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000223}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000227}, !- Outlet Branch Name 16 - {00000000-0000-0000-0017-000000000231}, !- Outlet Branch Name 17 - {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 18 - {00000000-0000-0000-0017-000000000239}, !- Outlet Branch Name 19 - {00000000-0000-0000-0017-000000000243}; !- Outlet Branch Name 20 + {00000000-0000-0000-0017-000000000317}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000318}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000339}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000343}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000347}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000351}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000355}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000359}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000363}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000367}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000371}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000375}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000379}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000383}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000387}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000391}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000395}, !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000399}, !- Outlet Branch Name 17 + {00000000-0000-0000-0017-000000000403}, !- Outlet Branch Name 18 + {00000000-0000-0000-0017-000000000407}, !- Outlet Branch Name 19 + {00000000-0000-0000-0017-000000000411}; !- Outlet Branch Name 20 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle BTAP-Ext-DaylightDiffuser, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000002}, !- Handle BTAP-Ext-DaylightDiffuser:U=0.241 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000003}; !- Layer 1 + {00000000-0000-0000-0100-000000000003}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000003}, !- Handle BTAP-Ext-DaylightDomes, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000004}, !- Handle BTAP-Ext-DaylightDomes:U=0.241 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000003}; !- Layer 1 + {00000000-0000-0000-0100-000000000003}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000005}, !- Handle BTAP-Ext-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000018}, !- Layer 1 - {00000000-0000-0000-0044-000000000013}; !- Layer 2 + {00000000-0000-0000-0047-000000000018}, !- Layer 1 + {00000000-0000-0000-0048-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000006}, !- Handle BTAP-Ext-Door:U-1.73, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000017}, !- Layer 1 - {00000000-0000-0000-0044-000000000011}; !- Layer 2 + {00000000-0000-0000-0047-000000000017}, !- Layer 1 + {00000000-0000-0000-0048-000000000011}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000007}, !- Handle BTAP-Ext-FixedWindow, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000008}, !- Handle BTAP-Ext-FixedWindow:U=0.173 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000002}; !- Layer 1 + {00000000-0000-0000-0100-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000009}, !- Handle BTAP-Ext-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000013}, !- Layer 1 - {00000000-0000-0000-0043-000000000008}, !- Layer 2 - {00000000-0000-0000-0044-000000000007}; !- Layer 3 + {00000000-0000-0000-0048-000000000013}, !- Layer 1 + {00000000-0000-0000-0047-000000000008}, !- Layer 2 + {00000000-0000-0000-0048-000000000007}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000010}, !- Handle BTAP-Ext-Floor-Mass:U-0.138, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000008}, !- Layer 1 - {00000000-0000-0000-0043-000000000007}, !- Layer 2 - {00000000-0000-0000-0044-000000000003}; !- Layer 3 + {00000000-0000-0000-0048-000000000008}, !- Layer 1 + {00000000-0000-0000-0047-000000000007}, !- Layer 2 + {00000000-0000-0000-0048-000000000003}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000011}, !- Handle BTAP-Ext-GlassDoors, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000012}, !- Handle BTAP-Ext-GlassDoors:U=0.173 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000002}; !- Layer 1 + {00000000-0000-0000-0100-000000000002}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000013}, !- Handle BTAP-Ext-OverHeadDoor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000013}; !- Layer 1 + {00000000-0000-0000-0048-000000000013}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000014}, !- Handle BTAP-Ext-OverHeadDoor:U-1.73, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000012}; !- Layer 1 + {00000000-0000-0000-0048-000000000012}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000015}, !- Handle BTAP-Ext-Roof-Metal, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000024}, !- Layer 1 - {00000000-0000-0000-0044-000000000013}; !- Layer 2 + {00000000-0000-0000-0047-000000000024}, !- Layer 1 + {00000000-0000-0000-0048-000000000013}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000016}, !- Handle BTAP-Ext-Roof-Metal:U-0.121, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000023}, !- Layer 1 - {00000000-0000-0000-0044-000000000010}; !- Layer 2 + {00000000-0000-0000-0047-000000000023}, !- Layer 1 + {00000000-0000-0000-0048-000000000010}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000017}, !- Handle BTAP-Ext-Skylights, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000018}, !- Handle BTAP-Ext-Skylights:U=0.241 SHGC=0.600, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000003}; !- Layer 1 + {00000000-0000-0000-0100-000000000003}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000019}, !- Handle BTAP-Ext-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000006}, !- Layer 1 - {00000000-0000-0000-0043-000000000014}, !- Layer 2 - {00000000-0000-0000-0044-000000000013}, !- Layer 3 - {00000000-0000-0000-0043-000000000002}; !- Layer 4 + {00000000-0000-0000-0047-000000000006}, !- Layer 1 + {00000000-0000-0000-0047-000000000014}, !- Layer 2 + {00000000-0000-0000-0048-000000000013}, !- Layer 3 + {00000000-0000-0000-0047-000000000002}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000020}, !- Handle BTAP-Ext-Wall-Mass:U-0.215, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000005}, !- Layer 1 - {00000000-0000-0000-0043-000000000013}, !- Layer 2 - {00000000-0000-0000-0044-000000000009}, !- Layer 3 - {00000000-0000-0000-0043-000000000001}; !- Layer 4 + {00000000-0000-0000-0047-000000000005}, !- Layer 1 + {00000000-0000-0000-0047-000000000013}, !- Layer 2 + {00000000-0000-0000-0048-000000000009}, !- Layer 3 + {00000000-0000-0000-0047-000000000001}; !- Layer 4 OS:Construction, {00000000-0000-0000-0020-000000000021}, !- Handle BTAP-Grnd-Floor-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000012}, !- Layer 1 - {00000000-0000-0000-0044-000000000007}; !- Layer 2 + {00000000-0000-0000-0047-000000000012}, !- Layer 1 + {00000000-0000-0000-0048-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000022}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000009}, !- Layer 1 - {00000000-0000-0000-0044-000000000004}; !- Layer 2 + {00000000-0000-0000-0047-000000000009}, !- Layer 1 + {00000000-0000-0000-0048-000000000004}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000023}, !- Handle BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000009}, !- Layer 1 - {00000000-0000-0000-0043-000000000016}; !- Layer 2 + {00000000-0000-0000-0047-000000000009}, !- Layer 1 + {00000000-0000-0000-0047-000000000016}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000024}, !- Handle BTAP-Grnd-Roof-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000012}, !- Layer 1 - {00000000-0000-0000-0044-000000000007}; !- Layer 2 + {00000000-0000-0000-0047-000000000012}, !- Layer 1 + {00000000-0000-0000-0048-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000025}, !- Handle BTAP-Grnd-Roof-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000011}, !- Layer 1 - {00000000-0000-0000-0044-000000000006}; !- Layer 2 + {00000000-0000-0000-0047-000000000011}, !- Layer 1 + {00000000-0000-0000-0048-000000000006}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000026}, !- Handle BTAP-Grnd-Wall-Mass, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000012}, !- Layer 1 - {00000000-0000-0000-0044-000000000007}; !- Layer 2 + {00000000-0000-0000-0047-000000000012}, !- Layer 1 + {00000000-0000-0000-0048-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000027}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000010}, !- Layer 1 - {00000000-0000-0000-0044-000000000005}; !- Layer 2 + {00000000-0000-0000-0047-000000000010}, !- Layer 1 + {00000000-0000-0000-0048-000000000005}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000028}, !- Handle BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000010}, !- Layer 1 - {00000000-0000-0000-0043-000000000015}; !- Layer 2 + {00000000-0000-0000-0047-000000000010}, !- Layer 1 + {00000000-0000-0000-0047-000000000015}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000029}, !- Handle BTAP-Int-Ceiling, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000007}, !- Layer 1 - {00000000-0000-0000-0043-000000000003}; !- Layer 2 + {00000000-0000-0000-0048-000000000007}, !- Layer 1 + {00000000-0000-0000-0047-000000000003}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000030}, !- Handle BTAP-Int-Door, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000021}; !- Layer 1 + {00000000-0000-0000-0047-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000031}, !- Handle BTAP-Int-Floor, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000003}, !- Layer 1 - {00000000-0000-0000-0044-000000000007}; !- Layer 2 + {00000000-0000-0000-0047-000000000003}, !- Layer 1 + {00000000-0000-0000-0048-000000000007}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000032}, !- Handle BTAP-Int-Partition, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000021}; !- Layer 1 + {00000000-0000-0000-0047-000000000021}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000033}, !- Handle BTAP-Int-Wall, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000019}, !- Layer 1 - {00000000-0000-0000-0043-000000000019}; !- Layer 2 + {00000000-0000-0000-0047-000000000019}, !- Layer 1 + {00000000-0000-0000-0047-000000000019}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000034}, !- Handle BTAP-Int-Window, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0096-000000000001}; !- Layer 1 + {00000000-0000-0000-0100-000000000001}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000035}, !- Handle Basement Floor construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000022}, !- Layer 1 - {00000000-0000-0000-0044-000000000001}; !- Layer 2 + {00000000-0000-0000-0047-000000000022}, !- Layer 1 + {00000000-0000-0000-0048-000000000001}; !- Layer 2 OS:Construction, {00000000-0000-0000-0020-000000000036}, !- Handle Basement Wall construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000022}; !- Layer 1 + {00000000-0000-0000-0047-000000000022}; !- Layer 1 OS:Construction, {00000000-0000-0000-0020-000000000037}, !- Handle Floor Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0044-000000000001}, !- Layer 1 - {00000000-0000-0000-0043-000000000004}, !- Layer 2 - {00000000-0000-0000-0044-000000000002}; !- Layer 3 + {00000000-0000-0000-0048-000000000001}, !- Layer 1 + {00000000-0000-0000-0047-000000000004}, !- Layer 2 + {00000000-0000-0000-0048-000000000002}; !- Layer 3 OS:Construction, {00000000-0000-0000-0020-000000000038}, !- Handle Wall Adiabatic construction, !- Name , !- Surface Rendering Name - {00000000-0000-0000-0043-000000000020}, !- Layer 1 - {00000000-0000-0000-0043-000000000020}; !- Layer 2 + {00000000-0000-0000-0047-000000000020}, !- Layer 1 + {00000000-0000-0000-0047-000000000020}; !- Layer 2 OS:Controller:MechanicalVentilation, {00000000-0000-0000-0021-000000000001}, !- Handle Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000004}, !- Handle + Controller Mechanical Ventilation 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000005}, !- Handle + Controller Mechanical Ventilation 5, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0063-000000000026}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0063-000000000030}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0063-000000000027}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name + {00000000-0000-0000-0022-000000000004}, !- Handle + Controller Outdoor Air 4, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name @@ -2640,10 +4950,10 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0059-000000000023}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0063-000000000028}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0021-000000000004}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -2653,27 +4963,27 @@ OS:Controller:OutdoorAir, InterlockedWithMechanicalCooling; !- Economizer Operation Staging OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name + {00000000-0000-0000-0022-000000000005}, !- Handle + Controller Outdoor Air 5, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name , !- Actuator Node Name autosize, !- Minimum Outdoor Air Flow Rate {m3/s} Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - NoEconomizer, !- Economizer Control Type + DifferentialEnthalpy, !- Economizer Control Type ModulateFlow, !- Economizer Control Action Type - 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} - 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} , !- Economizer Maximum Limit Dewpoint Temperature {C} , !- Electronic Enthalpy Limit Curve Name - -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0059-000000000024}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0063-000000000029}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0021-000000000005}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -2695,6 +5005,45 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000002}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0015-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000003}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0015-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000004}, !- Handle + Controller Water Coil 4, !- Name + {00000000-0000-0000-0015-000000000004}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0024-000000000001}, !- Handle Cooling Tower Single Speed 1, !- Name @@ -2702,7 +5051,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000104}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 228.936804464239, !- Fan Power at Design Air Flow Rate {W} + 28640.7014275539, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -2720,7 +5069,7 @@ OS:CoolingTower:SingleSpeed, , !- Blowdown Makeup Water Usage Schedule Name , !- Outdoor Air Inlet Node Name FanCycling, !- Capacity Control - 1, !- Number of Cells + 2, !- Number of Cells MinimalCell, !- Cell Control 0.33, !- Cell Minimum Water Flow Rate Fraction 2.5, !- Cell Maximum Water Flow Rate Fraction @@ -2849,6 +5198,34 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0025-000000000009}, !- Handle + WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name + 0.707908, !- Coefficient1 Constant + -0.00200657, !- Coefficient2 x + -0.00259605, !- Coefficient3 x**2 + 0.0300588, !- Coefficient4 y + -0.00105643, !- Coefficient5 y**2 + 0.0020457, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0025-000000000010}, !- Handle + WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name + 0.560523, !- Coefficient1 Constant + -0.0137816, !- Coefficient2 x + 6.56424e-05, !- Coefficient3 x**2 + 0.0132194, !- Coefficient4 y + 0.000268596, !- Coefficient5 y**2 + -0.000501131, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0025-000000000011}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -2862,7 +5239,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0025-000000000010}, !- Handle + {00000000-0000-0000-0025-000000000012}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -2905,6 +5282,26 @@ OS:Curve:Cubic, 0.68, !- Minimum Value of x 1; !- Maximum Value of x +OS:Curve:Cubic, + {00000000-0000-0000-0026-000000000004}, !- Handle + VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name + -4.1457, !- Coefficient1 Constant + 16.803, !- Coefficient2 x + -19.471, !- Coefficient3 x**2 + 7.8488, !- Coefficient4 x**3 + 0.5, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0026-000000000005}, !- Handle + VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name + -0.3477, !- Coefficient1 Constant + 4.0976, !- Coefficient2 x + -5.0024, !- Coefficient3 x**2 + 2.268, !- Coefficient4 x**3 + 0.22, !- Minimum Value of x + 1; !- Maximum Value of x + OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000001}, !- Handle Curve Quadratic 1, !- Name @@ -2961,6 +5358,15 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0027-000000000007}, !- Handle + WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name + 0.171493, !- Coefficient1 Constant + 0.588202, !- Coefficient2 x + 0.237373, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0027-000000000008}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -2992,7 +5398,7 @@ OS:DefaultScheduleSet, , !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -3000,13 +5406,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0059-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0059-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0059-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0059-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0063-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0063-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0063-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0063-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -3014,13 +5420,13 @@ OS:DefaultScheduleSet, {00000000-0000-0000-0029-000000000003}, !- Handle Space Function Office open plan Schedule Set, !- Name , !- Hours of Operation Schedule Name - {00000000-0000-0000-0059-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0059-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0059-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0059-000000000010}, !- Electric Equipment Schedule Name + {00000000-0000-0000-0063-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0063-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0063-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0063-000000000010}, !- Electric Equipment Schedule Name , !- Gas Equipment Schedule Name , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0059-000000000002}, !- Infiltration Schedule Name + {00000000-0000-0000-0063-000000000002}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name @@ -3129,7 +5535,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name {00000000-0000-0000-0034-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -3138,7 +5544,7 @@ OS:ElectricEquipment, {00000000-0000-0000-0033-000000000002}, !- Handle Space Function Office open plan Elec Equip, !- Name {00000000-0000-0000-0034-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name , !- Schedule Name , !- Multiplier General; !- End-Use Subcategory @@ -3163,13 +5569,157 @@ OS:ElectricEquipment:Definition, , !- Fraction Latent 0.5; !- Fraction Radiant +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name + {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name + {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000005}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_ClgSch0, !- Name + {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0035-000000000006}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_HtgSch0, !- Name + {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0036-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9afbd5cf-1a09-4065-80ce-983d628e2556}<23.9 && {9afbd5cf-1a09-4065-80ce-983d628e2556}>1.7, !- Program Line 1 + SET {3cb79c5b-ca0d-42d8-aa8f-47cf490db1c0} = 29.4, !- Program Line 2 + SET {8185e91b-f219-4f34-9079-d4035b9a06b0} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9afbd5cf-1a09-4065-80ce-983d628e2556}<23.9 && {9afbd5cf-1a09-4065-80ce-983d628e2556}>1.7, !- Program Line 4 + SET {3cb79c5b-ca0d-42d8-aa8f-47cf490db1c0} = 29.4, !- Program Line 5 + SET {8185e91b-f219-4f34-9079-d4035b9a06b0} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9afbd5cf-1a09-4065-80ce-983d628e2556}<23.9 && {9afbd5cf-1a09-4065-80ce-983d628e2556}>1.7, !- Program Line 7 + SET {3cb79c5b-ca0d-42d8-aa8f-47cf490db1c0} = 29.4, !- Program Line 8 + SET {8185e91b-f219-4f34-9079-d4035b9a06b0} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9afbd5cf-1a09-4065-80ce-983d628e2556}<23.9 && {9afbd5cf-1a09-4065-80ce-983d628e2556}>1.7, !- Program Line 10 + SET {3cb79c5b-ca0d-42d8-aa8f-47cf490db1c0} = 29.4, !- Program Line 11 + SET {8185e91b-f219-4f34-9079-d4035b9a06b0} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {3cb79c5b-ca0d-42d8-aa8f-47cf490db1c0} = NULL, !- Program Line 14 + SET {8185e91b-f219-4f34-9079-d4035b9a06b0} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0036-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {ec068ac8-d263-47fd-bfb1-4442d20dc59f}<23.9 && {ec068ac8-d263-47fd-bfb1-4442d20dc59f}>1.7, !- Program Line 1 + SET {06242b4e-495e-4bff-a218-a6e18beca4c6} = 29.4, !- Program Line 2 + SET {ffeb8391-361e-467a-9d4c-28aa35778b2d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {ec068ac8-d263-47fd-bfb1-4442d20dc59f}<23.9 && {ec068ac8-d263-47fd-bfb1-4442d20dc59f}>1.7, !- Program Line 4 + SET {06242b4e-495e-4bff-a218-a6e18beca4c6} = 29.4, !- Program Line 5 + SET {ffeb8391-361e-467a-9d4c-28aa35778b2d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {ec068ac8-d263-47fd-bfb1-4442d20dc59f}<23.9 && {ec068ac8-d263-47fd-bfb1-4442d20dc59f}>1.7, !- Program Line 7 + SET {06242b4e-495e-4bff-a218-a6e18beca4c6} = 29.4, !- Program Line 8 + SET {ffeb8391-361e-467a-9d4c-28aa35778b2d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {ec068ac8-d263-47fd-bfb1-4442d20dc59f}<23.9 && {ec068ac8-d263-47fd-bfb1-4442d20dc59f}>1.7, !- Program Line 10 + SET {06242b4e-495e-4bff-a218-a6e18beca4c6} = 29.4, !- Program Line 11 + SET {ffeb8391-361e-467a-9d4c-28aa35778b2d} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {06242b4e-495e-4bff-a218-a6e18beca4c6} = NULL, !- Program Line 14 + SET {ffeb8391-361e-467a-9d4c-28aa35778b2d} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0036-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f1b88208-7ce2-4332-8b17-933dd5084e09}<23.9 && {f1b88208-7ce2-4332-8b17-933dd5084e09}>1.7, !- Program Line 1 + SET {5d66ccf1-508c-48f9-8bea-fd8abf8c8bd0} = 29.4, !- Program Line 2 + SET {5408a95d-7341-4b80-b096-ef9ba3bc2697} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f1b88208-7ce2-4332-8b17-933dd5084e09}<23.9 && {f1b88208-7ce2-4332-8b17-933dd5084e09}>1.7, !- Program Line 4 + SET {5d66ccf1-508c-48f9-8bea-fd8abf8c8bd0} = 29.4, !- Program Line 5 + SET {5408a95d-7341-4b80-b096-ef9ba3bc2697} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f1b88208-7ce2-4332-8b17-933dd5084e09}<23.9 && {f1b88208-7ce2-4332-8b17-933dd5084e09}>1.7, !- Program Line 7 + SET {5d66ccf1-508c-48f9-8bea-fd8abf8c8bd0} = 29.4, !- Program Line 8 + SET {5408a95d-7341-4b80-b096-ef9ba3bc2697} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f1b88208-7ce2-4332-8b17-933dd5084e09}<23.9 && {f1b88208-7ce2-4332-8b17-933dd5084e09}>1.7, !- Program Line 10 + SET {5d66ccf1-508c-48f9-8bea-fd8abf8c8bd0} = 29.4, !- Program Line 11 + SET {5408a95d-7341-4b80-b096-ef9ba3bc2697} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {5d66ccf1-508c-48f9-8bea-fd8abf8c8bd0} = NULL, !- Program Line 14 + SET {5408a95d-7341-4b80-b096-ef9ba3bc2697} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0037-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0036-000000000001}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0037-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0036-000000000002}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0037-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0036-000000000003}; !- Program Name 1 + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0038-000000000001}, !- Handle + OAT, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0038-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0038-000000000003}, !- Handle + OAT_2, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + OS:Facility, - {00000000-0000-0000-0035-000000000001}; !- Handle + {00000000-0000-0000-0039-000000000001}; !- Handle OS:Fan:ConstantVolume, - {00000000-0000-0000-0036-000000000001}, !- Handle + {00000000-0000-0000-0040-000000000001}, !- Handle Fan Constant Volume 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name 0.39975, !- Fan Total Efficiency 640, !- Pressure Rise {Pa} AutoSize, !- Maximum Flow Rate {m3/s} @@ -3180,9 +5730,72 @@ OS:Fan:ConstantVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0037-000000000001}, !- Handle + {00000000-0000-0000-0041-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000162}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000163}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000218}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000219}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000003}, !- Handle + Sys6 Return Fan 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000274}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000275}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000004}, !- Handle Sys6 Return Fan, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency 250, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -3201,9 +5814,72 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0037-000000000002}, !- Handle + {00000000-0000-0000-0041-000000000005}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000157}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000155}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000006}, !- Handle + Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000213}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000211}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000007}, !- Handle + Sys6 Supply Fan 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000269}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000267}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000008}, !- Handle Sys6 Supply Fan, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} Autosize, !- Maximum Flow Rate {m3/s} @@ -3222,7 +5898,7 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Foundation:Kiva, - {00000000-0000-0000-0038-000000000001}, !- Handle + {00000000-0000-0000-0042-000000000001}, !- Handle Bldg Kiva Foundation, !- Name , !- Initial Indoor Air Temperature {C} , !- Interior Horizontal Insulation Material Name @@ -3242,7 +5918,7 @@ OS:Foundation:Kiva, ; !- Footing Depth {m} OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0039-000000000001}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Handle , !- Soil Conductivity {W/m-K} , !- Soil Density {kg/m3} , !- Soil Specific Heat {J/kg-K} @@ -3257,9 +5933,87 @@ OS:Foundation:Kiva:Settings, ; !- Simulation Timestep OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0040-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + {00000000-0000-0000-0044-000000000001}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0017-000000000415}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000416}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000419}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000420}, !- Exhaust Air Outlet Node + 657.843925054951, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0044-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0017-000000000427}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000428}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000431}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000432}, !- Exhaust Air Outlet Node + 1153.90903758374, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0044-000000000003}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0017-000000000433}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000434}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000437}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000438}, !- Exhaust Air Outlet Node + 11089.0903758374, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0044-000000000004}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3269,11 +6023,11 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000247}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000248}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000251}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000252}, !- Exhaust Air Outlet Node - 657.843925054951, !- Nominal Electric Power {W} + {00000000-0000-0000-0017-000000000439}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000440}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000443}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000444}, !- Exhaust Air Outlet Node + 1153.90903758374, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type ExhaustOnly, !- Frost Control Type @@ -3283,9 +6037,9 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, Yes; !- Economizer Lockout OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0040-000000000002}, !- Handle + {00000000-0000-0000-0044-000000000005}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} @@ -3295,10 +6049,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000253}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000254}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000257}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000258}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0017-000000000421}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000422}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000425}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000426}, !- Exhaust Air Outlet Node 292.796810422557, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -3309,27 +6063,27 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, Yes; !- Economizer Lockout OS:Lights, - {00000000-0000-0000-0041-000000000001}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Lights, !- Name - {00000000-0000-0000-0042-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0046-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights, - {00000000-0000-0000-0041-000000000002}, !- Handle + {00000000-0000-0000-0045-000000000002}, !- Handle Space Function Office open plan Lights, !- Name - {00000000-0000-0000-0042-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0046-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name , !- Schedule Name 1, !- Fraction Replaceable , !- Multiplier General; !- End-Use Subcategory OS:Lights:Definition, - {00000000-0000-0000-0042-000000000001}, !- Handle + {00000000-0000-0000-0046-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -3339,7 +6093,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Lights:Definition, - {00000000-0000-0000-0042-000000000002}, !- Handle + {00000000-0000-0000-0046-000000000002}, !- Handle Space Function Office open plan Lights Definition, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -3349,7 +6103,7 @@ OS:Lights:Definition, 0.2; !- Fraction Visible OS:Material, - {00000000-0000-0000-0043-000000000001}, !- Handle + {00000000-0000-0000-0047-000000000001}, !- Handle 1/2IN Gypsum 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3361,7 +6115,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000002}, !- Handle + {00000000-0000-0000-0047-000000000002}, !- Handle 1/2IN Gypsum, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3373,7 +6127,7 @@ OS:Material, 0.4; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000003}, !- Handle + {00000000-0000-0000-0047-000000000003}, !- Handle 100mm Normalweight concrete floor 1, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -3382,7 +6136,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0043-000000000004}, !- Handle + {00000000-0000-0000-0047-000000000004}, !- Handle 100mm Normalweight concrete floor, !- Name MediumSmooth, !- Roughness 0.1016, !- Thickness {m} @@ -3391,7 +6145,7 @@ OS:Material, 832; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0043-000000000005}, !- Handle + {00000000-0000-0000-0047-000000000005}, !- Handle 1IN Stucco 1, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -3403,7 +6157,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000006}, !- Handle + {00000000-0000-0000-0047-000000000006}, !- Handle 1IN Stucco, !- Name Smooth, !- Roughness 0.0253, !- Thickness {m} @@ -3415,7 +6169,7 @@ OS:Material, 0.92; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000007}, !- Handle + {00000000-0000-0000-0047-000000000007}, !- Handle 4 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -3427,7 +6181,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000008}, !- Handle + {00000000-0000-0000-0047-000000000008}, !- Handle 4 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -3439,7 +6193,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000009}, !- Handle + {00000000-0000-0000-0047-000000000009}, !- Handle 6 in. Normalweight Concrete Floor 1, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3451,7 +6205,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000010}, !- Handle + {00000000-0000-0000-0047-000000000010}, !- Handle 6 in. Normalweight Concrete Floor 2, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3463,7 +6217,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000011}, !- Handle + {00000000-0000-0000-0047-000000000011}, !- Handle 6 in. Normalweight Concrete Floor 3, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3475,7 +6229,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000012}, !- Handle + {00000000-0000-0000-0047-000000000012}, !- Handle 6 in. Normalweight Concrete Floor, !- Name MediumRough, !- Roughness 0.1524, !- Thickness {m} @@ -3487,7 +6241,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000013}, !- Handle + {00000000-0000-0000-0047-000000000013}, !- Handle 8IN CONCRETE HW RefBldg 1, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -3499,7 +6253,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000014}, !- Handle + {00000000-0000-0000-0047-000000000014}, !- Handle 8IN CONCRETE HW RefBldg, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -3511,7 +6265,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000015}, !- Handle + {00000000-0000-0000-0047-000000000015}, !- Handle Expanded Polystyrene 1, !- Name MediumSmooth, !- Roughness 0.100199429303091, !- Thickness {m} @@ -3520,7 +6274,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0043-000000000016}, !- Handle + {00000000-0000-0000-0047-000000000016}, !- Handle Expanded Polystyrene, !- Name MediumSmooth, !- Roughness 0.0363958681740979, !- Thickness {m} @@ -3529,7 +6283,7 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0043-000000000017}, !- Handle + {00000000-0000-0000-0047-000000000017}, !- Handle F08 Metal surface 1, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -3541,7 +6295,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000018}, !- Handle + {00000000-0000-0000-0047-000000000018}, !- Handle F08 Metal surface, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -3553,7 +6307,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000019}, !- Handle + {00000000-0000-0000-0047-000000000019}, !- Handle G01 13mm gypsum board 1, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3565,7 +6319,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000020}, !- Handle + {00000000-0000-0000-0047-000000000020}, !- Handle G01 13mm gypsum board, !- Name Smooth, !- Roughness 0.0127, !- Thickness {m} @@ -3577,7 +6331,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000021}, !- Handle + {00000000-0000-0000-0047-000000000021}, !- Handle G05 25mm wood, !- Name MediumSmooth, !- Roughness 0.0254, !- Thickness {m} @@ -3589,7 +6343,7 @@ OS:Material, 0.5; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000022}, !- Handle + {00000000-0000-0000-0047-000000000022}, !- Handle M10 200mm concrete block basement wall, !- Name MediumRough, !- Roughness 0.2032, !- Thickness {m} @@ -3598,7 +6352,7 @@ OS:Material, 912; !- Specific Heat {J/kg-K} OS:Material, - {00000000-0000-0000-0043-000000000023}, !- Handle + {00000000-0000-0000-0047-000000000023}, !- Handle Metal Roof Surface 1, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -3610,7 +6364,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material, - {00000000-0000-0000-0043-000000000024}, !- Handle + {00000000-0000-0000-0047-000000000024}, !- Handle Metal Roof Surface, !- Name Smooth, !- Roughness 0.000799999999999998, !- Thickness {m} @@ -3622,7 +6376,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000001}, !- Handle + {00000000-0000-0000-0048-000000000001}, !- Handle CP02 CARPET PAD, !- Name VeryRough, !- Roughness 0.21648, !- Thermal Resistance {m2-K/W} @@ -3631,7 +6385,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000002}, !- Handle + {00000000-0000-0000-0048-000000000002}, !- Handle Nonres_Floor_Insulation, !- Name MediumSmooth, !- Roughness 2.88291975297193, !- Thermal Resistance {m2-K/W} @@ -3640,7 +6394,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000003}, !- Handle + {00000000-0000-0000-0048-000000000003}, !- Handle Typical Carpet Pad 1, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -3649,7 +6403,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000004}, !- Handle + {00000000-0000-0000-0048-000000000004}, !- Handle Typical Carpet Pad 2, !- Name Smooth, !- Roughness 1.25502993703786, !- Thermal Resistance {m2-K/W} @@ -3658,7 +6412,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000005}, !- Handle + {00000000-0000-0000-0048-000000000005}, !- Handle Typical Carpet Pad 3, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -3667,7 +6421,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000006}, !- Handle + {00000000-0000-0000-0048-000000000006}, !- Handle Typical Carpet Pad 4, !- Name Smooth, !- Roughness 3.45515273458935, !- Thermal Resistance {m2-K/W} @@ -3676,7 +6430,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000007}, !- Handle + {00000000-0000-0000-0048-000000000007}, !- Handle Typical Carpet Pad, !- Name Smooth, !- Roughness 0.216479986995276, !- Thermal Resistance {m2-K/W} @@ -3685,7 +6439,7 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000008}, !- Handle + {00000000-0000-0000-0048-000000000008}, !- Handle Typical Insulation 1, !- Name Smooth, !- Roughness 6.98591414061624, !- Thermal Resistance {m2-K/W} @@ -3694,7 +6448,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000009}, !- Handle + {00000000-0000-0000-0048-000000000009}, !- Handle Typical Insulation 2, !- Name Smooth, !- Roughness 4.38022034120929, !- Thermal Resistance {m2-K/W} @@ -3703,7 +6457,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000010}, !- Handle + {00000000-0000-0000-0048-000000000010}, !- Handle Typical Insulation 3, !- Name Smooth, !- Roughness 8.26444514207283, !- Thermal Resistance {m2-K/W} @@ -3712,7 +6466,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000011}, !- Handle + {00000000-0000-0000-0048-000000000011}, !- Handle Typical Insulation 4, !- Name Smooth, !- Roughness 0.578017014236402, !- Thermal Resistance {m2-K/W} @@ -3721,7 +6475,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000012}, !- Handle + {00000000-0000-0000-0048-000000000012}, !- Handle Typical Insulation 5, !- Name Smooth, !- Roughness 0.578034682080925, !- Thermal Resistance {m2-K/W} @@ -3730,7 +6484,7 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:Material:NoMass, - {00000000-0000-0000-0044-000000000013}, !- Handle + {00000000-0000-0000-0048-000000000013}, !- Handle Typical Insulation, !- Name Smooth, !- Roughness 0.101874652714525, !- Thermal Resistance {m2-K/W} @@ -3739,856 +6493,1480 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:ModelObjectList, - {00000000-0000-0000-0045-000000000001}, !- Handle + {00000000-0000-0000-0049-000000000001}, !- Handle Availability Manager Night Cycle 1 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000002}, !- Handle + {00000000-0000-0000-0049-000000000002}, !- Handle Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000003}, !- Handle + {00000000-0000-0000-0049-000000000003}, !- Handle Availability Manager Night Cycle 1 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000004}, !- Handle + {00000000-0000-0000-0049-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000005}, !- Handle + {00000000-0000-0000-0049-000000000005}, !- Handle Availability Manager Night Cycle 2 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000006}, !- Handle + {00000000-0000-0000-0049-000000000006}, !- Handle Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000007}, !- Handle + {00000000-0000-0000-0049-000000000007}, !- Handle Availability Manager Night Cycle 2 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0045-000000000008}, !- Handle + {00000000-0000-0000-0049-000000000008}, !- Handle Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000013}, !- Handle + Availability Manager Night Cycle 4 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000014}, !- Handle + Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000015}, !- Handle + Availability Manager Night Cycle 4 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000016}, !- Handle + Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000017}, !- Handle + Availability Manager Night Cycle 5 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000018}, !- Handle + Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000019}, !- Handle + Availability Manager Night Cycle 5 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000020}, !- Handle + Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name + OS:Node, - {00000000-0000-0000-0046-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000001}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000146}, !- Inlet Port - {00000000-0000-0000-0017-000000000155}; !- Outlet Port + {00000000-0000-0000-0017-000000000314}, !- Inlet Port + {00000000-0000-0000-0017-000000000323}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000002}, !- Handle + {00000000-0000-0000-0050-000000000002}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000156}, !- Inlet Port - {00000000-0000-0000-0017-000000000157}; !- Outlet Port + {00000000-0000-0000-0017-000000000324}, !- Inlet Port + {00000000-0000-0000-0017-000000000325}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000003}, !- Handle + {00000000-0000-0000-0050-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000004}, !- Handle + {00000000-0000-0000-0050-000000000004}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000005}, !- Handle + {00000000-0000-0000-0050-000000000005}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000027}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000006}, !- Handle + {00000000-0000-0000-0050-000000000006}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000140}, !- Inlet Port {00000000-0000-0000-0017-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000007}, !- Handle + {00000000-0000-0000-0050-000000000007}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000036}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000008}, !- Handle + {00000000-0000-0000-0050-000000000008}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000172}, !- Inlet Port + {00000000-0000-0000-0017-000000000173}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000030}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000009}, !- Handle + {00000000-0000-0000-0050-000000000010}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000184}, !- Inlet Port + {00000000-0000-0000-0017-000000000185}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000010}, !- Handle + {00000000-0000-0000-0050-000000000012}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000166}, !- Inlet Port + {00000000-0000-0000-0017-000000000167}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000011}, !- Handle + {00000000-0000-0000-0050-000000000014}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000190}, !- Inlet Port + {00000000-0000-0000-0017-000000000191}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000012}, !- Handle + {00000000-0000-0000-0050-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000178}, !- Inlet Port + {00000000-0000-0000-0017-000000000179}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000045}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000013}, !- Handle + {00000000-0000-0000-0050-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000196}, !- Inlet Port + {00000000-0000-0000-0017-000000000197}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000024}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000014}, !- Handle + {00000000-0000-0000-0050-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000240}, !- Inlet Port + {00000000-0000-0000-0017-000000000241}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000033}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000015}, !- Handle + {00000000-0000-0000-0050-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000234}, !- Inlet Port + {00000000-0000-0000-0017-000000000235}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000023}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000035}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000016}, !- Handle + {00000000-0000-0000-0050-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000228}, !- Inlet Port + {00000000-0000-0000-0017-000000000229}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000025}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000017}, !- Handle + {00000000-0000-0000-0050-000000000026}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000222}, !- Inlet Port + {00000000-0000-0000-0017-000000000223}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000027}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000042}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000018}, !- Handle + {00000000-0000-0000-0050-000000000028}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000246}, !- Inlet Port + {00000000-0000-0000-0017-000000000247}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000029}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000044}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000019}, !- Handle + {00000000-0000-0000-0050-000000000030}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000252}, !- Inlet Port + {00000000-0000-0000-0017-000000000253}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000031}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000020}, !- Handle + {00000000-0000-0000-0050-000000000032}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000290}, !- Inlet Port + {00000000-0000-0000-0017-000000000291}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000033}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000029}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000021}, !- Handle + {00000000-0000-0000-0050-000000000034}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000296}, !- Inlet Port + {00000000-0000-0000-0017-000000000297}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000035}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000032}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000022}, !- Handle + {00000000-0000-0000-0050-000000000036}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000284}, !- Inlet Port + {00000000-0000-0000-0017-000000000285}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000037}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000023}, !- Handle + {00000000-0000-0000-0050-000000000038}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000302}, !- Inlet Port + {00000000-0000-0000-0017-000000000303}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000039}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000039}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000024}, !- Handle + {00000000-0000-0000-0050-000000000040}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000278}, !- Inlet Port + {00000000-0000-0000-0017-000000000279}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000041}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000041}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000025}, !- Handle + {00000000-0000-0000-0050-000000000042}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000308}, !- Inlet Port + {00000000-0000-0000-0017-000000000309}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000043}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000026}, !- Handle + {00000000-0000-0000-0050-000000000044}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000064}, !- Inlet Port {00000000-0000-0000-0017-000000000065}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000027}, !- Handle + {00000000-0000-0000-0050-000000000045}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000066}, !- Inlet Port {00000000-0000-0000-0017-000000000061}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000028}, !- Handle + {00000000-0000-0000-0050-000000000046}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000142}, !- Inlet Port {00000000-0000-0000-0017-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000029}, !- Handle + {00000000-0000-0000-0050-000000000047}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000144}, !- Inlet Port {00000000-0000-0000-0017-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000030}, !- Handle + {00000000-0000-0000-0050-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000236}, !- Inlet Port + {00000000-0000-0000-0017-000000000237}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000238}, !- Inlet Port + {00000000-0000-0000-0017-000000000233}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000050}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000242}, !- Inlet Port + {00000000-0000-0000-0017-000000000243}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000051}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000244}, !- Inlet Port + {00000000-0000-0000-0017-000000000239}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000052}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000248}, !- Inlet Port + {00000000-0000-0000-0017-000000000249}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000053}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000250}, !- Inlet Port + {00000000-0000-0000-0017-000000000245}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000054}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000254}, !- Inlet Port + {00000000-0000-0000-0017-000000000255}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000055}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000256}, !- Inlet Port + {00000000-0000-0000-0017-000000000251}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000056}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000280}, !- Inlet Port + {00000000-0000-0000-0017-000000000281}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000057}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000282}, !- Inlet Port + {00000000-0000-0000-0017-000000000277}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000286}, !- Inlet Port + {00000000-0000-0000-0017-000000000287}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000288}, !- Inlet Port + {00000000-0000-0000-0017-000000000283}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000292}, !- Inlet Port + {00000000-0000-0000-0017-000000000293}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000294}, !- Inlet Port + {00000000-0000-0000-0017-000000000289}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000298}, !- Inlet Port + {00000000-0000-0000-0017-000000000299}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000300}, !- Inlet Port + {00000000-0000-0000-0017-000000000295}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000304}, !- Inlet Port + {00000000-0000-0000-0017-000000000305}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000306}, !- Inlet Port + {00000000-0000-0000-0017-000000000301}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000066}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000310}, !- Inlet Port + {00000000-0000-0000-0017-000000000311}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000067}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000312}, !- Inlet Port + {00000000-0000-0000-0017-000000000307}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000068}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000168}, !- Inlet Port + {00000000-0000-0000-0017-000000000169}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000069}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000170}, !- Inlet Port + {00000000-0000-0000-0017-000000000165}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000070}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000174}, !- Inlet Port + {00000000-0000-0000-0017-000000000175}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000071}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000176}, !- Inlet Port + {00000000-0000-0000-0017-000000000171}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000072}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000180}, !- Inlet Port + {00000000-0000-0000-0017-000000000181}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000073}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000182}, !- Inlet Port + {00000000-0000-0000-0017-000000000177}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000074}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000186}, !- Inlet Port + {00000000-0000-0000-0017-000000000187}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000075}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000188}, !- Inlet Port + {00000000-0000-0000-0017-000000000183}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000076}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000192}, !- Inlet Port + {00000000-0000-0000-0017-000000000193}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000077}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000194}, !- Inlet Port + {00000000-0000-0000-0017-000000000189}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000078}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000198}, !- Inlet Port + {00000000-0000-0000-0017-000000000199}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000079}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000200}, !- Inlet Port + {00000000-0000-0000-0017-000000000195}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000080}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Port + {00000000-0000-0000-0017-000000000225}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000081}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000226}, !- Inlet Port + {00000000-0000-0000-0017-000000000221}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000082}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000230}, !- Inlet Port + {00000000-0000-0000-0017-000000000231}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000083}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000232}, !- Inlet Port + {00000000-0000-0000-0017-000000000227}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000084}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000070}, !- Inlet Port {00000000-0000-0000-0017-000000000071}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000031}, !- Handle + {00000000-0000-0000-0050-000000000085}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000073}, !- Inlet Port {00000000-0000-0000-0017-000000000074}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000032}, !- Handle + {00000000-0000-0000-0050-000000000086}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000067}, !- Inlet Port {00000000-0000-0000-0017-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000033}, !- Handle + {00000000-0000-0000-0050-000000000087}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000091}, !- Inlet Port {00000000-0000-0000-0017-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000034}, !- Handle + {00000000-0000-0000-0050-000000000088}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000072}, !- Inlet Port {00000000-0000-0000-0017-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000035}, !- Handle + {00000000-0000-0000-0050-000000000089}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port {00000000-0000-0000-0017-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000036}, !- Handle + {00000000-0000-0000-0050-000000000090}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000127}, !- Inlet Port {00000000-0000-0000-0017-000000000128}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000037}, !- Handle + {00000000-0000-0000-0050-000000000091}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000151}, !- Inlet Port + {00000000-0000-0000-0017-000000000152}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000092}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000158}, !- Inlet Port + {00000000-0000-0000-0017-000000000159}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000093}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000153}, !- Inlet Port + {00000000-0000-0000-0017-000000000154}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000094}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000207}, !- Inlet Port + {00000000-0000-0000-0017-000000000208}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000095}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000214}, !- Inlet Port + {00000000-0000-0000-0017-000000000215}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000096}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000209}, !- Inlet Port + {00000000-0000-0000-0017-000000000210}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000097}, !- Handle + Coil Cooling Water 4 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000263}, !- Inlet Port + {00000000-0000-0000-0017-000000000264}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000098}, !- Handle + Coil Cooling Water 4 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000270}, !- Inlet Port + {00000000-0000-0000-0017-000000000271}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000099}, !- Handle + Coil Cooling Water 4 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000265}, !- Inlet Port + {00000000-0000-0000-0017-000000000266}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000100}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000054}, !- Inlet Port {00000000-0000-0000-0017-000000000055}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000038}, !- Handle + {00000000-0000-0000-0050-000000000101}, !- Handle + Coil Heating Electric 11 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000212}, !- Inlet Port + {00000000-0000-0000-0017-000000000213}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000102}, !- Handle + Coil Heating Electric 18 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000268}, !- Inlet Port + {00000000-0000-0000-0017-000000000269}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000103}, !- Handle Coil Heating Electric 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000130}, !- Inlet Port {00000000-0000-0000-0017-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000039}, !- Handle - CoilCoolingDXSingleSpeed_dx 115kBtu/hr 9.44EER Outlet Air Node, !- Name + {00000000-0000-0000-0050-000000000104}, !- Handle + Coil Heating Electric 4 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000156}, !- Inlet Port + {00000000-0000-0000-0017-000000000157}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000105}, !- Handle + CoilCoolingDXSingleSpeed_dx 114kBtu/hr 9.44EER Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000056}, !- Inlet Port {00000000-0000-0000-0017-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000040}, !- Handle + {00000000-0000-0000-0050-000000000106}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000095}, !- Inlet Port {00000000-0000-0000-0017-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000041}, !- Handle + {00000000-0000-0000-0050-000000000107}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000098}, !- Inlet Port {00000000-0000-0000-0017-000000000099}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000042}, !- Handle + {00000000-0000-0000-0050-000000000108}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Port {00000000-0000-0000-0017-000000000100}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000043}, !- Handle + {00000000-0000-0000-0050-000000000109}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000112}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000044}, !- Handle + {00000000-0000-0000-0050-000000000110}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000045}, !- Handle + {00000000-0000-0000-0050-000000000111}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000104}, !- Inlet Port {00000000-0000-0000-0017-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000046}, !- Handle + {00000000-0000-0000-0050-000000000112}, !- Handle Core_bottom WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000171}, !- Inlet Port - {00000000-0000-0000-0017-000000000172}; !- Outlet Port + {00000000-0000-0000-0017-000000000339}, !- Inlet Port + {00000000-0000-0000-0017-000000000340}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000047}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Handle Core_bottom WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000173}, !- Inlet Port - {00000000-0000-0000-0017-000000000174}; !- Outlet Port + {00000000-0000-0000-0017-000000000341}, !- Inlet Port + {00000000-0000-0000-0017-000000000342}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000048}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Handle Core_mid WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000175}, !- Inlet Port - {00000000-0000-0000-0017-000000000176}; !- Outlet Port + {00000000-0000-0000-0017-000000000343}, !- Inlet Port + {00000000-0000-0000-0017-000000000344}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000049}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Handle Core_mid WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000177}, !- Inlet Port - {00000000-0000-0000-0017-000000000178}; !- Outlet Port + {00000000-0000-0000-0017-000000000345}, !- Inlet Port + {00000000-0000-0000-0017-000000000346}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000050}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Handle Core_top WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000179}, !- Inlet Port - {00000000-0000-0000-0017-000000000180}; !- Outlet Port + {00000000-0000-0000-0017-000000000347}, !- Inlet Port + {00000000-0000-0000-0017-000000000348}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000051}, !- Handle + {00000000-0000-0000-0050-000000000117}, !- Handle Core_top WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000181}, !- Inlet Port - {00000000-0000-0000-0017-000000000182}; !- Outlet Port + {00000000-0000-0000-0017-000000000349}, !- Inlet Port + {00000000-0000-0000-0017-000000000350}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000052}, !- Handle + {00000000-0000-0000-0050-000000000118}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000183}, !- Inlet Port - {00000000-0000-0000-0017-000000000184}; !- Outlet Port + {00000000-0000-0000-0017-000000000351}, !- Inlet Port + {00000000-0000-0000-0017-000000000352}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000053}, !- Handle + {00000000-0000-0000-0050-000000000119}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000185}, !- Inlet Port - {00000000-0000-0000-0017-000000000186}; !- Outlet Port + {00000000-0000-0000-0017-000000000353}, !- Inlet Port + {00000000-0000-0000-0017-000000000354}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000054}, !- Handle + {00000000-0000-0000-0050-000000000120}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000187}, !- Inlet Port - {00000000-0000-0000-0017-000000000188}; !- Outlet Port + {00000000-0000-0000-0017-000000000355}, !- Inlet Port + {00000000-0000-0000-0017-000000000356}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000055}, !- Handle + {00000000-0000-0000-0050-000000000121}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000189}, !- Inlet Port - {00000000-0000-0000-0017-000000000190}; !- Outlet Port + {00000000-0000-0000-0017-000000000357}, !- Inlet Port + {00000000-0000-0000-0017-000000000358}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000056}, !- Handle + {00000000-0000-0000-0050-000000000122}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000191}, !- Inlet Port - {00000000-0000-0000-0017-000000000192}; !- Outlet Port + {00000000-0000-0000-0017-000000000359}, !- Inlet Port + {00000000-0000-0000-0017-000000000360}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000057}, !- Handle + {00000000-0000-0000-0050-000000000123}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000193}, !- Inlet Port - {00000000-0000-0000-0017-000000000194}; !- Outlet Port + {00000000-0000-0000-0017-000000000361}, !- Inlet Port + {00000000-0000-0000-0017-000000000362}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000058}, !- Handle + {00000000-0000-0000-0050-000000000124}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000195}, !- Inlet Port - {00000000-0000-0000-0017-000000000196}; !- Outlet Port + {00000000-0000-0000-0017-000000000363}, !- Inlet Port + {00000000-0000-0000-0017-000000000364}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000059}, !- Handle + {00000000-0000-0000-0050-000000000125}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000197}, !- Inlet Port - {00000000-0000-0000-0017-000000000198}; !- Outlet Port + {00000000-0000-0000-0017-000000000365}, !- Inlet Port + {00000000-0000-0000-0017-000000000366}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000060}, !- Handle + {00000000-0000-0000-0050-000000000126}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000153}, !- Inlet Port - {00000000-0000-0000-0017-000000000154}; !- Outlet Port + {00000000-0000-0000-0017-000000000321}, !- Inlet Port + {00000000-0000-0000-0017-000000000322}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000061}, !- Handle + {00000000-0000-0000-0050-000000000127}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000148}, !- Inlet Port - {00000000-0000-0000-0017-000000000149}; !- Outlet Port + {00000000-0000-0000-0017-000000000316}, !- Inlet Port + {00000000-0000-0000-0017-000000000317}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000062}, !- Handle + {00000000-0000-0000-0050-000000000128}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000170}, !- Inlet Port - {00000000-0000-0000-0017-000000000151}; !- Outlet Port + {00000000-0000-0000-0017-000000000338}, !- Inlet Port + {00000000-0000-0000-0017-000000000319}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000063}, !- Handle + {00000000-0000-0000-0050-000000000129}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000145}, !- Inlet Port - {00000000-0000-0000-0017-000000000152}; !- Outlet Port + {00000000-0000-0000-0017-000000000313}, !- Inlet Port + {00000000-0000-0000-0017-000000000320}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000064}, !- Handle + {00000000-0000-0000-0050-000000000130}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000167}, !- Inlet Port - {00000000-0000-0000-0017-000000000147}; !- Outlet Port + {00000000-0000-0000-0017-000000000335}, !- Inlet Port + {00000000-0000-0000-0017-000000000315}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000065}, !- Handle + {00000000-0000-0000-0050-000000000131}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000199}, !- Inlet Port - {00000000-0000-0000-0017-000000000200}; !- Outlet Port + {00000000-0000-0000-0017-000000000367}, !- Inlet Port + {00000000-0000-0000-0017-000000000368}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000066}, !- Handle + {00000000-0000-0000-0050-000000000132}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000201}, !- Inlet Port - {00000000-0000-0000-0017-000000000202}; !- Outlet Port + {00000000-0000-0000-0017-000000000369}, !- Inlet Port + {00000000-0000-0000-0017-000000000370}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000067}, !- Handle + {00000000-0000-0000-0050-000000000133}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000203}, !- Inlet Port - {00000000-0000-0000-0017-000000000204}; !- Outlet Port + {00000000-0000-0000-0017-000000000371}, !- Inlet Port + {00000000-0000-0000-0017-000000000372}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000068}, !- Handle + {00000000-0000-0000-0050-000000000134}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000205}, !- Inlet Port - {00000000-0000-0000-0017-000000000206}; !- Outlet Port + {00000000-0000-0000-0017-000000000373}, !- Inlet Port + {00000000-0000-0000-0017-000000000374}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000069}, !- Handle + {00000000-0000-0000-0050-000000000135}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000207}, !- Inlet Port - {00000000-0000-0000-0017-000000000208}; !- Outlet Port + {00000000-0000-0000-0017-000000000375}, !- Inlet Port + {00000000-0000-0000-0017-000000000376}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000070}, !- Handle + {00000000-0000-0000-0050-000000000136}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000209}, !- Inlet Port - {00000000-0000-0000-0017-000000000210}; !- Outlet Port + {00000000-0000-0000-0017-000000000377}, !- Inlet Port + {00000000-0000-0000-0017-000000000378}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000071}, !- Handle + {00000000-0000-0000-0050-000000000137}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Port - {00000000-0000-0000-0017-000000000212}; !- Outlet Port + {00000000-0000-0000-0017-000000000379}, !- Inlet Port + {00000000-0000-0000-0017-000000000380}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000072}, !- Handle + {00000000-0000-0000-0050-000000000138}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000213}, !- Inlet Port - {00000000-0000-0000-0017-000000000214}; !- Outlet Port + {00000000-0000-0000-0017-000000000381}, !- Inlet Port + {00000000-0000-0000-0017-000000000382}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000073}, !- Handle + {00000000-0000-0000-0050-000000000139}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000215}, !- Inlet Port - {00000000-0000-0000-0017-000000000216}; !- Outlet Port + {00000000-0000-0000-0017-000000000383}, !- Inlet Port + {00000000-0000-0000-0017-000000000384}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000074}, !- Handle + {00000000-0000-0000-0050-000000000140}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000217}, !- Inlet Port - {00000000-0000-0000-0017-000000000218}; !- Outlet Port + {00000000-0000-0000-0017-000000000385}, !- Inlet Port + {00000000-0000-0000-0017-000000000386}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000075}, !- Handle + {00000000-0000-0000-0050-000000000141}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Port - {00000000-0000-0000-0017-000000000220}; !- Outlet Port + {00000000-0000-0000-0017-000000000387}, !- Inlet Port + {00000000-0000-0000-0017-000000000388}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000076}, !- Handle + {00000000-0000-0000-0050-000000000142}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000221}, !- Inlet Port - {00000000-0000-0000-0017-000000000222}; !- Outlet Port + {00000000-0000-0000-0017-000000000389}, !- Inlet Port + {00000000-0000-0000-0017-000000000390}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000077}, !- Handle + {00000000-0000-0000-0050-000000000143}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000223}, !- Inlet Port - {00000000-0000-0000-0017-000000000224}; !- Outlet Port + {00000000-0000-0000-0017-000000000391}, !- Inlet Port + {00000000-0000-0000-0017-000000000392}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000078}, !- Handle + {00000000-0000-0000-0050-000000000144}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000225}, !- Inlet Port - {00000000-0000-0000-0017-000000000226}; !- Outlet Port + {00000000-0000-0000-0017-000000000393}, !- Inlet Port + {00000000-0000-0000-0017-000000000394}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000079}, !- Handle + {00000000-0000-0000-0050-000000000145}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000227}, !- Inlet Port - {00000000-0000-0000-0017-000000000228}; !- Outlet Port + {00000000-0000-0000-0017-000000000395}, !- Inlet Port + {00000000-0000-0000-0017-000000000396}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000080}, !- Handle + {00000000-0000-0000-0050-000000000146}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000229}, !- Inlet Port - {00000000-0000-0000-0017-000000000230}; !- Outlet Port + {00000000-0000-0000-0017-000000000397}, !- Inlet Port + {00000000-0000-0000-0017-000000000398}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000081}, !- Handle + {00000000-0000-0000-0050-000000000147}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000231}, !- Inlet Port - {00000000-0000-0000-0017-000000000232}; !- Outlet Port + {00000000-0000-0000-0017-000000000399}, !- Inlet Port + {00000000-0000-0000-0017-000000000400}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000082}, !- Handle + {00000000-0000-0000-0050-000000000148}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000233}, !- Inlet Port - {00000000-0000-0000-0017-000000000234}; !- Outlet Port + {00000000-0000-0000-0017-000000000401}, !- Inlet Port + {00000000-0000-0000-0017-000000000402}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000083}, !- Handle + {00000000-0000-0000-0050-000000000149}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000235}, !- Inlet Port - {00000000-0000-0000-0017-000000000236}; !- Outlet Port + {00000000-0000-0000-0017-000000000403}, !- Inlet Port + {00000000-0000-0000-0017-000000000404}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000084}, !- Handle + {00000000-0000-0000-0050-000000000150}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000237}, !- Inlet Port - {00000000-0000-0000-0017-000000000238}; !- Outlet Port + {00000000-0000-0000-0017-000000000405}, !- Inlet Port + {00000000-0000-0000-0017-000000000406}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000085}, !- Handle + {00000000-0000-0000-0050-000000000151}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000239}, !- Inlet Port - {00000000-0000-0000-0017-000000000240}; !- Outlet Port + {00000000-0000-0000-0017-000000000407}, !- Inlet Port + {00000000-0000-0000-0017-000000000408}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000086}, !- Handle + {00000000-0000-0000-0050-000000000152}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000241}, !- Inlet Port - {00000000-0000-0000-0017-000000000242}; !- Outlet Port + {00000000-0000-0000-0017-000000000409}, !- Inlet Port + {00000000-0000-0000-0017-000000000410}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000087}, !- Handle + {00000000-0000-0000-0050-000000000153}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000243}, !- Inlet Port - {00000000-0000-0000-0017-000000000244}; !- Outlet Port + {00000000-0000-0000-0017-000000000411}, !- Inlet Port + {00000000-0000-0000-0017-000000000412}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000088}, !- Handle + {00000000-0000-0000-0050-000000000154}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000245}, !- Inlet Port - {00000000-0000-0000-0017-000000000246}; !- Outlet Port + {00000000-0000-0000-0017-000000000413}, !- Inlet Port + {00000000-0000-0000-0017-000000000414}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000089}, !- Handle + {00000000-0000-0000-0050-000000000155}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000085}, !- Inlet Port {00000000-0000-0000-0017-000000000086}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000090}, !- Handle + {00000000-0000-0000-0050-000000000156}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000091}, !- Handle + {00000000-0000-0000-0050-000000000157}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000089}, !- Inlet Port {00000000-0000-0000-0017-000000000090}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000092}, !- Handle + {00000000-0000-0000-0050-000000000158}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000106}, !- Inlet Port {00000000-0000-0000-0017-000000000107}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000093}, !- Handle + {00000000-0000-0000-0050-000000000159}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000108}, !- Inlet Port {00000000-0000-0000-0017-000000000109}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000094}, !- Handle + {00000000-0000-0000-0050-000000000160}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000110}, !- Inlet Port {00000000-0000-0000-0017-000000000111}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000095}, !- Handle + {00000000-0000-0000-0050-000000000161}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000158}, !- Inlet Port - {00000000-0000-0000-0017-000000000159}; !- Outlet Port + {00000000-0000-0000-0017-000000000326}, !- Inlet Port + {00000000-0000-0000-0017-000000000327}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000096}, !- Handle + {00000000-0000-0000-0050-000000000162}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000160}, !- Inlet Port - {00000000-0000-0000-0017-000000000161}; !- Outlet Port + {00000000-0000-0000-0017-000000000328}, !- Inlet Port + {00000000-0000-0000-0017-000000000329}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000097}, !- Handle + {00000000-0000-0000-0050-000000000163}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000150}, !- Inlet Port - {00000000-0000-0000-0017-000000000162}; !- Outlet Port + {00000000-0000-0000-0017-000000000318}, !- Inlet Port + {00000000-0000-0000-0017-000000000330}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000098}, !- Handle + {00000000-0000-0000-0050-000000000164}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000163}, !- Inlet Port - {00000000-0000-0000-0017-000000000164}; !- Outlet Port + {00000000-0000-0000-0017-000000000331}, !- Inlet Port + {00000000-0000-0000-0017-000000000332}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000099}, !- Handle + {00000000-0000-0000-0050-000000000165}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000165}, !- Inlet Port - {00000000-0000-0000-0017-000000000166}; !- Outlet Port + {00000000-0000-0000-0017-000000000333}, !- Inlet Port + {00000000-0000-0000-0017-000000000334}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000100}, !- Handle + {00000000-0000-0000-0050-000000000166}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000168}, !- Inlet Port - {00000000-0000-0000-0017-000000000169}; !- Outlet Port + {00000000-0000-0000-0017-000000000336}, !- Inlet Port + {00000000-0000-0000-0017-000000000337}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000101}, !- Handle - Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0050-000000000167}, !- Handle + Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000097}, !- Inlet Port {00000000-0000-0000-0017-000000000113}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000102}, !- Handle - Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0050-000000000168}, !- Handle + Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000114}, !- Inlet Port {00000000-0000-0000-0017-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000103}, !- Handle - Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0050-000000000169}, !- Handle + Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000078}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000104}, !- Handle - Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0050-000000000170}, !- Handle + Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000079}, !- Inlet Port {00000000-0000-0000-0017-000000000080}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000105}, !- Handle + {00000000-0000-0000-0050-000000000171}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000076}, !- Inlet Port {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000106}, !- Handle + {00000000-0000-0000-0050-000000000172}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000101}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000107}, !- Handle + {00000000-0000-0000-0050-000000000173}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000116}, !- Inlet Port {00000000-0000-0000-0017-000000000117}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000108}, !- Handle + {00000000-0000-0000-0050-000000000174}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000118}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000109}, !- Handle + {00000000-0000-0000-0050-000000000175}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000081}, !- Inlet Port {00000000-0000-0000-0017-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000110}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000083}, !- Inlet Port - {00000000-0000-0000-0017-000000000084}; !- Outlet Port + {00000000-0000-0000-0050-000000000176}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000083}, !- Inlet Port + {00000000-0000-0000-0017-000000000084}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000177}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000163}, !- Inlet Port + {00000000-0000-0000-0017-000000000164}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000178}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000219}, !- Inlet Port + {00000000-0000-0000-0017-000000000220}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000179}, !- Handle + Sys6 Return Fan 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000275}, !- Inlet Port + {00000000-0000-0000-0017-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000111}, !- Handle + {00000000-0000-0000-0050-000000000180}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000112}, !- Handle + {00000000-0000-0000-0050-000000000181}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0017-000000000062}, !- Inlet Port {00000000-0000-0000-0017-000000000063}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000113}, !- Handle + {00000000-0000-0000-0050-000000000182}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000114}, !- Handle + {00000000-0000-0000-0050-000000000183}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000115}, !- Handle + {00000000-0000-0000-0050-000000000184}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000052}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000116}, !- Handle + {00000000-0000-0000-0050-000000000185}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000059}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000117}, !- Handle + {00000000-0000-0000-0050-000000000186}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000247}; !- Outlet Port + {00000000-0000-0000-0017-000000000415}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000118}, !- Handle + {00000000-0000-0000-0050-000000000187}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000252}, !- Inlet Port + {00000000-0000-0000-0017-000000000420}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000119}, !- Handle + {00000000-0000-0000-0050-000000000188}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000047}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000120}, !- Handle + {00000000-0000-0000-0050-000000000189}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000121}, !- Handle + {00000000-0000-0000-0050-000000000190}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000248}, !- Inlet Port - {00000000-0000-0000-0017-000000000249}; !- Outlet Port + {00000000-0000-0000-0017-000000000416}, !- Inlet Port + {00000000-0000-0000-0017-000000000417}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000122}, !- Handle + {00000000-0000-0000-0050-000000000191}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000250}, !- Inlet Port - {00000000-0000-0000-0017-000000000251}; !- Outlet Port + {00000000-0000-0000-0017-000000000418}, !- Inlet Port + {00000000-0000-0000-0017-000000000419}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000192}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000147}, !- Inlet Port + {00000000-0000-0000-0017-000000000149}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000193}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000150}, !- Inlet Port + {00000000-0000-0000-0017-000000000148}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000194}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000160}, !- Inlet Port + {00000000-0000-0000-0017-000000000161}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000195}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000427}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000196}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000432}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000197}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000145}, !- Inlet Port + {00000000-0000-0000-0017-000000000162}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000198}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000155}, !- Inlet Port + {00000000-0000-0000-0017-000000000146}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000199}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000203}, !- Inlet Port + {00000000-0000-0000-0017-000000000205}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000200}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000206}, !- Inlet Port + {00000000-0000-0000-0017-000000000204}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000201}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000216}, !- Inlet Port + {00000000-0000-0000-0017-000000000217}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000202}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000433}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000203}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000438}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000204}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000201}, !- Inlet Port + {00000000-0000-0000-0017-000000000218}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000205}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000211}, !- Inlet Port + {00000000-0000-0000-0017-000000000202}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000206}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000259}, !- Inlet Port + {00000000-0000-0000-0017-000000000261}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000207}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000262}, !- Inlet Port + {00000000-0000-0000-0017-000000000260}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000208}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000272}, !- Inlet Port + {00000000-0000-0000-0017-000000000273}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000209}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000439}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000123}, !- Handle + {00000000-0000-0000-0050-000000000210}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000444}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000211}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000257}, !- Inlet Port + {00000000-0000-0000-0017-000000000274}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000212}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000267}, !- Inlet Port + {00000000-0000-0000-0017-000000000258}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000213}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000122}, !- Inlet Port {00000000-0000-0000-0017-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000124}, !- Handle + {00000000-0000-0000-0050-000000000214}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000125}, !- Inlet Port {00000000-0000-0000-0017-000000000123}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000125}, !- Handle + {00000000-0000-0000-0050-000000000215}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000134}, !- Inlet Port {00000000-0000-0000-0017-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000126}, !- Handle + {00000000-0000-0000-0050-000000000216}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000253}; !- Outlet Port + {00000000-0000-0000-0017-000000000421}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000127}, !- Handle + {00000000-0000-0000-0050-000000000217}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000258}, !- Inlet Port + {00000000-0000-0000-0017-000000000426}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000128}, !- Handle + {00000000-0000-0000-0050-000000000218}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000129}, !- Handle + {00000000-0000-0000-0050-000000000219}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000129}, !- Inlet Port {00000000-0000-0000-0017-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000130}, !- Handle + {00000000-0000-0000-0050-000000000220}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000428}, !- Inlet Port + {00000000-0000-0000-0017-000000000429}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000221}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000430}, !- Inlet Port + {00000000-0000-0000-0017-000000000431}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000222}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000434}, !- Inlet Port + {00000000-0000-0000-0017-000000000435}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000223}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000436}, !- Inlet Port + {00000000-0000-0000-0017-000000000437}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000224}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000440}, !- Inlet Port + {00000000-0000-0000-0017-000000000441}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000225}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000442}, !- Inlet Port + {00000000-0000-0000-0017-000000000443}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000226}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000254}, !- Inlet Port - {00000000-0000-0000-0017-000000000255}; !- Outlet Port + {00000000-0000-0000-0017-000000000422}, !- Inlet Port + {00000000-0000-0000-0017-000000000423}; !- Outlet Port OS:Node, - {00000000-0000-0000-0046-000000000131}, !- Handle + {00000000-0000-0000-0050-000000000227}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000256}, !- Inlet Port - {00000000-0000-0000-0017-000000000257}; !- Outlet Port + {00000000-0000-0000-0017-000000000424}, !- Inlet Port + {00000000-0000-0000-0017-000000000425}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0047-000000000001}, !- Handle + {00000000-0000-0000-0051-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0048-000000000001}, !- Handle + {00000000-0000-0000-0052-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People, !- Name - {00000000-0000-0000-0049-000000000001}, !- People Definition Name - {00000000-0000-0000-0078-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0053-000000000001}, !- People Definition Name + {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0059-000000000022}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0059-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0059-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0063-000000000025}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0063-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0048-000000000002}, !- Handle + {00000000-0000-0000-0052-000000000002}, !- Handle Space Function Office open plan People, !- Name - {00000000-0000-0000-0049-000000000002}, !- People Definition Name - {00000000-0000-0000-0078-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0053-000000000002}, !- People Definition Name + {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0059-000000000022}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0059-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0059-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0063-000000000025}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0063-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0049-000000000001}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -4597,7 +7975,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0049-000000000002}, !- Handle + {00000000-0000-0000-0053-000000000002}, !- Handle Space Function Office open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -4606,55 +7984,55 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0017-000000000086}, !- Inlet Node Name {00000000-0000-0000-0017-000000000087}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000002}, !- Handle + {00000000-0000-0000-0054-000000000002}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Node Name {00000000-0000-0000-0017-000000000091}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000003}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0017-000000000107}, !- Inlet Node Name {00000000-0000-0000-0017-000000000108}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000004}, !- Handle + {00000000-0000-0000-0054-000000000004}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0017-000000000111}, !- Inlet Node Name {00000000-0000-0000-0017-000000000112}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000005}, !- Handle + {00000000-0000-0000-0054-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0017-000000000159}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000160}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000327}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000328}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000006}, !- Handle + {00000000-0000-0000-0054-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0017-000000000162}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000163}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000330}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000331}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000007}, !- Handle + {00000000-0000-0000-0054-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000166}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000167}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000334}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000335}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0050-000000000008}, !- Handle + {00000000-0000-0000-0054-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000169}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000170}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000337}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000338}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0051-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -4662,7 +8040,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0046-000000000033}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000087}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4676,7 +8054,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4690,7 +8068,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0051-000000000002}, !- Handle + {00000000-0000-0000-0055-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -4698,7 +8076,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0046-000000000043}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000109}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4712,7 +8090,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4726,7 +8104,7 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0051-000000000003}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -4734,21 +8112,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0046-000000000064}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000130}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000145}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000147}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000313}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000315}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000148}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000151}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000316}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000319}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4762,290 +8140,326 @@ OS:PlantLoop, {00000000-0000-0000-0019-000000000005}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0052-000000000001}, !- Handle - {00000000-0000-0000-0086-000000000010}; !- HVAC Component + {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000195}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000002}, !- Handle - {00000000-0000-0000-0086-000000000010}; !- HVAC Component + {00000000-0000-0000-0056-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000003}, !- Handle - {00000000-0000-0000-0086-000000000010}; !- HVAC Component + {00000000-0000-0000-0056-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000196}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000004}, !- Handle - {00000000-0000-0000-0086-000000000001}; !- HVAC Component + {00000000-0000-0000-0056-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000005}, !- Handle - {00000000-0000-0000-0086-000000000001}; !- HVAC Component + {00000000-0000-0000-0056-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000006}, !- Handle - {00000000-0000-0000-0086-000000000001}; !- HVAC Component + {00000000-0000-0000-0056-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000007}, !- Handle - {00000000-0000-0000-0086-000000000022}; !- HVAC Component + {00000000-0000-0000-0056-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- HVAC Component + {00000000-0000-0000-0017-000000000307}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000008}, !- Handle - {00000000-0000-0000-0086-000000000022}; !- HVAC Component + {00000000-0000-0000-0056-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000009}, !- Handle - {00000000-0000-0000-0086-000000000022}; !- HVAC Component + {00000000-0000-0000-0056-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- HVAC Component + {00000000-0000-0000-0017-000000000308}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000010}, !- Handle - {00000000-0000-0000-0086-000000000003}; !- HVAC Component + {00000000-0000-0000-0056-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000011}, !- Handle - {00000000-0000-0000-0086-000000000003}; !- HVAC Component + {00000000-0000-0000-0056-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000012}, !- Handle - {00000000-0000-0000-0086-000000000003}; !- HVAC Component + {00000000-0000-0000-0056-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000013}, !- Handle - {00000000-0000-0000-0086-000000000016}; !- HVAC Component + {00000000-0000-0000-0056-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000251}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000014}, !- Handle - {00000000-0000-0000-0086-000000000016}; !- HVAC Component + {00000000-0000-0000-0056-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000015}, !- Handle - {00000000-0000-0000-0086-000000000016}; !- HVAC Component + {00000000-0000-0000-0056-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000252}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000016}, !- Handle - {00000000-0000-0000-0086-000000000017}; !- HVAC Component + {00000000-0000-0000-0056-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000289}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000017}, !- Handle - {00000000-0000-0000-0086-000000000017}; !- HVAC Component + {00000000-0000-0000-0056-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000018}, !- Handle - {00000000-0000-0000-0086-000000000017}; !- HVAC Component + {00000000-0000-0000-0056-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000290}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000019}, !- Handle - {00000000-0000-0000-0086-000000000005}; !- HVAC Component + {00000000-0000-0000-0056-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- HVAC Component + {00000000-0000-0000-0017-000000000171}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000020}, !- Handle - {00000000-0000-0000-0086-000000000005}; !- HVAC Component + {00000000-0000-0000-0056-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000021}, !- Handle - {00000000-0000-0000-0086-000000000005}; !- HVAC Component + {00000000-0000-0000-0056-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- HVAC Component + {00000000-0000-0000-0017-000000000172}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000022}, !- Handle - {00000000-0000-0000-0086-000000000006}; !- HVAC Component + {00000000-0000-0000-0056-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- HVAC Component + {00000000-0000-0000-0017-000000000183}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000023}, !- Handle - {00000000-0000-0000-0086-000000000006}; !- HVAC Component + {00000000-0000-0000-0056-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000024}, !- Handle - {00000000-0000-0000-0086-000000000006}; !- HVAC Component + {00000000-0000-0000-0056-000000000024}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- HVAC Component + {00000000-0000-0000-0017-000000000184}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000025}, !- Handle - {00000000-0000-0000-0086-000000000018}; !- HVAC Component + {00000000-0000-0000-0056-000000000025}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000295}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000026}, !- Handle - {00000000-0000-0000-0086-000000000018}; !- HVAC Component + {00000000-0000-0000-0056-000000000026}, !- Handle + {00000000-0000-0000-0090-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000027}, !- Handle - {00000000-0000-0000-0086-000000000018}; !- HVAC Component + {00000000-0000-0000-0056-000000000027}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000296}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000028}, !- Handle - {00000000-0000-0000-0086-000000000011}; !- HVAC Component + {00000000-0000-0000-0056-000000000028}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000239}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000029}, !- Handle - {00000000-0000-0000-0086-000000000011}; !- HVAC Component + {00000000-0000-0000-0056-000000000029}, !- Handle + {00000000-0000-0000-0090-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000030}, !- Handle - {00000000-0000-0000-0086-000000000011}; !- HVAC Component + {00000000-0000-0000-0056-000000000030}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000240}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000031}, !- Handle - {00000000-0000-0000-0086-000000000019}; !- HVAC Component + {00000000-0000-0000-0056-000000000031}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- HVAC Component + {00000000-0000-0000-0017-000000000283}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000032}, !- Handle - {00000000-0000-0000-0086-000000000019}; !- HVAC Component + {00000000-0000-0000-0056-000000000032}, !- Handle + {00000000-0000-0000-0090-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000033}, !- Handle - {00000000-0000-0000-0086-000000000019}; !- HVAC Component + {00000000-0000-0000-0056-000000000033}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- HVAC Component + {00000000-0000-0000-0017-000000000284}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000034}, !- Handle - {00000000-0000-0000-0086-000000000012}; !- HVAC Component + {00000000-0000-0000-0056-000000000034}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000233}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000035}, !- Handle - {00000000-0000-0000-0086-000000000012}; !- HVAC Component + {00000000-0000-0000-0056-000000000035}, !- Handle + {00000000-0000-0000-0090-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000036}, !- Handle - {00000000-0000-0000-0086-000000000012}; !- HVAC Component + {00000000-0000-0000-0056-000000000036}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000234}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000037}, !- Handle - {00000000-0000-0000-0086-000000000004}, !- HVAC Component + {00000000-0000-0000-0056-000000000037}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000139}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000038}, !- Handle - {00000000-0000-0000-0086-000000000004}; !- HVAC Component + {00000000-0000-0000-0056-000000000038}, !- Handle + {00000000-0000-0000-0090-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000039}, !- Handle - {00000000-0000-0000-0086-000000000004}, !- HVAC Component + {00000000-0000-0000-0056-000000000039}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- HVAC Component {00000000-0000-0000-0017-000000000140}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000040}, !- Handle - {00000000-0000-0000-0086-000000000002}; !- HVAC Component + {00000000-0000-0000-0056-000000000040}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000041}, !- Handle - {00000000-0000-0000-0086-000000000002}; !- HVAC Component + {00000000-0000-0000-0056-000000000041}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000042}, !- Handle - {00000000-0000-0000-0086-000000000002}; !- HVAC Component + {00000000-0000-0000-0056-000000000042}, !- Handle + {00000000-0000-0000-0090-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000043}, !- Handle - {00000000-0000-0000-0086-000000000007}; !- HVAC Component + {00000000-0000-0000-0056-000000000043}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- HVAC Component + {00000000-0000-0000-0017-000000000165}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000044}, !- Handle - {00000000-0000-0000-0086-000000000007}; !- HVAC Component + {00000000-0000-0000-0056-000000000044}, !- Handle + {00000000-0000-0000-0090-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000045}, !- Handle - {00000000-0000-0000-0086-000000000007}; !- HVAC Component + {00000000-0000-0000-0056-000000000045}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- HVAC Component + {00000000-0000-0000-0017-000000000166}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000046}, !- Handle - {00000000-0000-0000-0086-000000000020}; !- HVAC Component + {00000000-0000-0000-0056-000000000046}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- HVAC Component + {00000000-0000-0000-0017-000000000301}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000047}, !- Handle - {00000000-0000-0000-0086-000000000020}; !- HVAC Component + {00000000-0000-0000-0056-000000000047}, !- Handle + {00000000-0000-0000-0090-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000048}, !- Handle - {00000000-0000-0000-0086-000000000020}; !- HVAC Component + {00000000-0000-0000-0056-000000000048}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- HVAC Component + {00000000-0000-0000-0017-000000000302}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000049}, !- Handle - {00000000-0000-0000-0086-000000000013}; !- HVAC Component + {00000000-0000-0000-0056-000000000049}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000227}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000050}, !- Handle - {00000000-0000-0000-0086-000000000013}; !- HVAC Component + {00000000-0000-0000-0056-000000000050}, !- Handle + {00000000-0000-0000-0090-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000051}, !- Handle - {00000000-0000-0000-0086-000000000013}; !- HVAC Component + {00000000-0000-0000-0056-000000000051}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000228}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000052}, !- Handle - {00000000-0000-0000-0086-000000000021}; !- HVAC Component + {00000000-0000-0000-0056-000000000052}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- HVAC Component + {00000000-0000-0000-0017-000000000277}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000053}, !- Handle - {00000000-0000-0000-0086-000000000021}; !- HVAC Component + {00000000-0000-0000-0056-000000000053}, !- Handle + {00000000-0000-0000-0090-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000054}, !- Handle - {00000000-0000-0000-0086-000000000021}; !- HVAC Component + {00000000-0000-0000-0056-000000000054}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- HVAC Component + {00000000-0000-0000-0017-000000000278}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000055}, !- Handle - {00000000-0000-0000-0086-000000000014}; !- HVAC Component + {00000000-0000-0000-0056-000000000055}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000221}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000056}, !- Handle - {00000000-0000-0000-0086-000000000014}; !- HVAC Component + {00000000-0000-0000-0056-000000000056}, !- Handle + {00000000-0000-0000-0090-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000057}, !- Handle - {00000000-0000-0000-0086-000000000014}; !- HVAC Component + {00000000-0000-0000-0056-000000000057}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000222}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000058}, !- Handle - {00000000-0000-0000-0086-000000000008}; !- HVAC Component + {00000000-0000-0000-0056-000000000058}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- HVAC Component + {00000000-0000-0000-0017-000000000189}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000059}, !- Handle - {00000000-0000-0000-0086-000000000008}; !- HVAC Component + {00000000-0000-0000-0056-000000000059}, !- Handle + {00000000-0000-0000-0090-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000060}, !- Handle - {00000000-0000-0000-0086-000000000008}; !- HVAC Component + {00000000-0000-0000-0056-000000000060}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- HVAC Component + {00000000-0000-0000-0017-000000000190}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000061}, !- Handle - {00000000-0000-0000-0086-000000000015}; !- HVAC Component + {00000000-0000-0000-0056-000000000061}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000245}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000062}, !- Handle - {00000000-0000-0000-0086-000000000015}; !- HVAC Component + {00000000-0000-0000-0056-000000000062}, !- Handle + {00000000-0000-0000-0090-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000063}, !- Handle - {00000000-0000-0000-0086-000000000015}; !- HVAC Component + {00000000-0000-0000-0056-000000000063}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000246}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000064}, !- Handle - {00000000-0000-0000-0086-000000000009}; !- HVAC Component + {00000000-0000-0000-0056-000000000064}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000177}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000065}, !- Handle - {00000000-0000-0000-0086-000000000009}; !- HVAC Component + {00000000-0000-0000-0056-000000000065}, !- Handle + {00000000-0000-0000-0090-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000066}, !- Handle - {00000000-0000-0000-0086-000000000009}; !- HVAC Component + {00000000-0000-0000-0056-000000000066}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000178}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000067}, !- Handle - {00000000-0000-0000-0086-000000000023}, !- HVAC Component + {00000000-0000-0000-0056-000000000067}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000061}; !- Port 1 OS:PortList, - {00000000-0000-0000-0052-000000000068}, !- Handle - {00000000-0000-0000-0086-000000000023}; !- HVAC Component + {00000000-0000-0000-0056-000000000068}, !- Handle + {00000000-0000-0000-0090-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0052-000000000069}, !- Handle - {00000000-0000-0000-0086-000000000023}, !- HVAC Component + {00000000-0000-0000-0056-000000000069}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- HVAC Component {00000000-0000-0000-0017-000000000062}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0053-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000152}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000153}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000320}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000321}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 742176.159809915, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -5064,14 +8478,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0017-000000000075}, !- Inlet Node Name {00000000-0000-0000-0017-000000000076}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 234161.928009366, !- Rated Pump Head {Pa} + 256345.689610254, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.936, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5097,14 +8511,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0054-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0017-000000000100}, !- Inlet Node Name {00000000-0000-0000-0017-000000000101}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 200710.224008028, !- Rated Pump Head {Pa} + 223011.36000892, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.95, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5130,322 +8544,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0055-000000000001}, !- Handle + {00000000-0000-0000-0059-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000002}, !- Handle + {00000000-0000-0000-0059-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000003}, !- Handle + {00000000-0000-0000-0059-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000004}, !- Handle + {00000000-0000-0000-0059-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000005}, !- Handle + {00000000-0000-0000-0059-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000006}, !- Handle + {00000000-0000-0000-0059-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000007}, !- Handle + {00000000-0000-0000-0059-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000008}, !- Handle + {00000000-0000-0000-0059-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000009}, !- Handle + {00000000-0000-0000-0059-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000010}, !- Handle + {00000000-0000-0000-0059-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000011}, !- Handle + {00000000-0000-0000-0059-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000012}, !- Handle + {00000000-0000-0000-0059-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000013}, !- Handle + {00000000-0000-0000-0059-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000014}, !- Handle + {00000000-0000-0000-0059-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000015}, !- Handle + {00000000-0000-0000-0059-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000016}, !- Handle + {00000000-0000-0000-0059-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000017}, !- Handle + {00000000-0000-0000-0059-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000018}, !- Handle + {00000000-0000-0000-0059-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000019}, !- Handle + {00000000-0000-0000-0059-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000020}, !- Handle + {00000000-0000-0000-0059-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000021}, !- Handle + {00000000-0000-0000-0059-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000022}, !- Handle + {00000000-0000-0000-0059-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000023}, !- Handle + {00000000-0000-0000-0059-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000024}, !- Handle + {00000000-0000-0000-0059-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000025}, !- Handle + {00000000-0000-0000-0059-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000026}, !- Handle + {00000000-0000-0000-0059-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000027}, !- Handle + {00000000-0000-0000-0059-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000028}, !- Handle + {00000000-0000-0000-0059-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000029}, !- Handle + {00000000-0000-0000-0059-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000030}, !- Handle + {00000000-0000-0000-0059-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000031}, !- Handle + {00000000-0000-0000-0059-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000032}, !- Handle + {00000000-0000-0000-0059-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000033}, !- Handle + {00000000-0000-0000-0059-000000000033}, !- Handle Space Function Electrical/Mechanical room-sch-A 1, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000034}, !- Handle + {00000000-0000-0000-0059-000000000034}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000035}, !- Handle + {00000000-0000-0000-0059-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000036}, !- Handle + {00000000-0000-0000-0059-000000000036}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000037}, !- Handle + {00000000-0000-0000-0059-000000000037}, !- Handle Space Function Office open plan 1, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000038}, !- Handle + {00000000-0000-0000-0059-000000000038}, !- Handle Space Function Office open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0055-000000000039}, !- Handle + {00000000-0000-0000-0059-000000000039}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0060-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0060-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000003}, !- Handle + {00000000-0000-0000-0061-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000004}, !- Handle + {00000000-0000-0000-0061-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000005}, !- Handle + {00000000-0000-0000-0061-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5454,36 +8868,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000006}, !- Handle + {00000000-0000-0000-0061-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000007}, !- Handle + {00000000-0000-0000-0061-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000008}, !- Handle + {00000000-0000-0000-0061-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000009}, !- Handle + {00000000-0000-0000-0061-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5508,9 +8922,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000010}, !- Handle + {00000000-0000-0000-0061-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5535,27 +8949,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000011}, !- Handle + {00000000-0000-0000-0061-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000012}, !- Handle + {00000000-0000-0000-0061-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000013}, !- Handle + {00000000-0000-0000-0061-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5586,9 +9000,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000014}, !- Handle + {00000000-0000-0000-0061-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5619,27 +9033,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000015}, !- Handle + {00000000-0000-0000-0061-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000016}, !- Handle + {00000000-0000-0000-0061-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000017}, !- Handle + {00000000-0000-0000-0061-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5673,9 +9087,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000018}, !- Handle + {00000000-0000-0000-0061-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5709,27 +9123,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000019}, !- Handle + {00000000-0000-0000-0061-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000020}, !- Handle + {00000000-0000-0000-0061-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000021}, !- Handle + {00000000-0000-0000-0061-000000000021}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5760,9 +9174,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000022}, !- Handle + {00000000-0000-0000-0061-000000000022}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -5793,27 +9207,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000023}, !- Handle + {00000000-0000-0000-0061-000000000023}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000024}, !- Handle + {00000000-0000-0000-0061-000000000024}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000025}, !- Handle + {00000000-0000-0000-0061-000000000025}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5826,9 +9240,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000026}, !- Handle + {00000000-0000-0000-0061-000000000026}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5841,27 +9255,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000027}, !- Handle + {00000000-0000-0000-0061-000000000027}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000028}, !- Handle + {00000000-0000-0000-0061-000000000028}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000029}, !- Handle + {00000000-0000-0000-0061-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5877,9 +9291,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000030}, !- Handle + {00000000-0000-0000-0061-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -5895,52 +9309,52 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000031}, !- Handle + {00000000-0000-0000-0061-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000032}, !- Handle + {00000000-0000-0000-0061-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000033}, !- Handle + {00000000-0000-0000-0061-000000000033}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000034}, !- Handle + {00000000-0000-0000-0061-000000000034}, !- Handle NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000035}, !- Handle + {00000000-0000-0000-0061-000000000035}, !- Handle NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000036}, !- Handle + {00000000-0000-0000-0061-000000000036}, !- Handle Schedule Day 1, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5949,16 +9363,70 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000037}, !- Handle + {00000000-0000-0000-0061-000000000037}, !- Handle Schedule Day 10, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000038}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000038}, !- Handle + {00000000-0000-0000-0061-000000000039}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000040}, !- Handle + Schedule Day 13, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000041}, !- Handle + Schedule Day 14, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000042}, !- Handle + Schedule Day 15, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000043}, !- Handle + Schedule Day 16, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000044}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5967,9 +9435,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000039}, !- Handle + {00000000-0000-0000-0061-000000000045}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6045,9 +9513,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000040}, !- Handle + {00000000-0000-0000-0061-000000000046}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6123,90 +9591,117 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000041}, !- Handle + {00000000-0000-0000-0061-000000000047}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000042}, !- Handle + {00000000-0000-0000-0061-000000000048}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000043}, !- Handle + {00000000-0000-0000-0061-000000000049}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000044}, !- Handle + {00000000-0000-0000-0061-000000000050}, !- Handle Schedule Day 8, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000045}, !- Handle + {00000000-0000-0000-0061-000000000051}, !- Handle Schedule Day 9, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000046}, !- Handle + {00000000-0000-0000-0061-000000000052}, !- Handle Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000047}, !- Handle + {00000000-0000-0000-0061-000000000053}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000054}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000055}, !- Handle + Supply Air Temp Default 3, !- Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000056}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000048}, !- Handle + {00000000-0000-0000-0061-000000000057}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000049}, !- Handle + {00000000-0000-0000-0061-000000000058}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000050}, !- Handle + {00000000-0000-0000-0061-000000000059}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6282,9 +9777,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000051}, !- Handle + {00000000-0000-0000-0061-000000000060}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6360,9 +9855,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000052}, !- Handle + {00000000-0000-0000-0061-000000000061}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6438,9 +9933,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000053}, !- Handle + {00000000-0000-0000-0061-000000000062}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6516,9 +10011,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000054}, !- Handle + {00000000-0000-0000-0061-000000000063}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6594,9 +10089,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000055}, !- Handle + {00000000-0000-0000-0061-000000000064}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6672,9 +10167,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000056}, !- Handle + {00000000-0000-0000-0061-000000000065}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6750,9 +10245,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000057}, !- Handle + {00000000-0000-0000-0061-000000000066}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6828,9 +10323,75 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000058}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000067}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Default, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000068}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000069}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000070}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000071}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000072}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000073}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -6843,27 +10404,60 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000059}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000074}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000060}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000075}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000076}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Default, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000077}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000061}, !- Handle + {00000000-0000-0000-0061-000000000078}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000079}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -6876,27 +10470,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000062}, !- Handle + {00000000-0000-0000-0061-000000000080}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000063}, !- Handle + {00000000-0000-0000-0061-000000000081}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000064}, !- Handle + {00000000-0000-0000-0061-000000000082}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6972,9 +10566,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000065}, !- Handle + {00000000-0000-0000-0061-000000000083}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7050,9 +10644,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000066}, !- Handle + {00000000-0000-0000-0061-000000000084}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7128,9 +10722,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0057-000000000067}, !- Handle + {00000000-0000-0000-0061-000000000085}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7206,11 +10800,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0059-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7225,11 +10819,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0062-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7244,11 +10838,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000003}, !- Handle + {00000000-0000-0000-0062-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7263,11 +10857,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7282,11 +10876,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000005}, !- Handle + {00000000-0000-0000-0062-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0059-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7301,11 +10895,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000006}, !- Handle + {00000000-0000-0000-0062-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7320,11 +10914,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000007}, !- Handle + {00000000-0000-0000-0062-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7339,11 +10933,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000008}, !- Handle + {00000000-0000-0000-0062-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0059-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000028}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7358,11 +10952,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000009}, !- Handle + {00000000-0000-0000-0062-000000000009}, !- Handle Schedule Rule 17, !- Name - {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000022}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000022}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7377,11 +10971,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000010}, !- Handle + {00000000-0000-0000-0062-000000000010}, !- Handle Schedule Rule 18, !- Name - {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000023}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7396,11 +10990,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000011}, !- Handle + {00000000-0000-0000-0062-000000000011}, !- Handle Schedule Rule 19, !- Name - {00000000-0000-0000-0059-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000024}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7415,11 +11009,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000012}, !- Handle + {00000000-0000-0000-0062-000000000012}, !- Handle Schedule Rule 2, !- Name - {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000018}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000018}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7434,11 +11028,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000013}, !- Handle + {00000000-0000-0000-0062-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0059-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000026}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000049}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7453,11 +11047,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000014}, !- Handle + {00000000-0000-0000-0062-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0059-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000026}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000044}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000050}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7472,11 +11066,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000015}, !- Handle + {00000000-0000-0000-0062-000000000015}, !- Handle Schedule Rule 22, !- Name - {00000000-0000-0000-0059-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000030}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000051}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7491,11 +11085,87 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000016}, !- Handle + {00000000-0000-0000-0062-000000000016}, !- Handle Schedule Rule 23, !- Name - {00000000-0000-0000-0059-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000030}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0061-000000000037}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0061-000000000038}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0061-000000000039}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000019}, !- Handle + Schedule Rule 26, !- Name + {00000000-0000-0000-0063-000000000028}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0061-000000000040}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000020}, !- Handle + Schedule Rule 27, !- Name + {00000000-0000-0000-0063-000000000028}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000037}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000041}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7510,11 +11180,49 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000017}, !- Handle + {00000000-0000-0000-0062-000000000021}, !- Handle + Schedule Rule 28, !- Name + {00000000-0000-0000-0063-000000000029}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0061-000000000042}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000022}, !- Handle + Schedule Rule 29, !- Name + {00000000-0000-0000-0063-000000000029}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0061-000000000043}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000023}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000019}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7529,11 +11237,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000018}, !- Handle + {00000000-0000-0000-0062-000000000024}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0059-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7548,11 +11256,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000019}, !- Handle + {00000000-0000-0000-0062-000000000025}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7567,11 +11275,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000020}, !- Handle + {00000000-0000-0000-0062-000000000026}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7586,11 +11294,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000021}, !- Handle + {00000000-0000-0000-0062-000000000027}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0059-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7605,11 +11313,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000022}, !- Handle + {00000000-0000-0000-0062-000000000028}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7624,11 +11332,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000023}, !- Handle + {00000000-0000-0000-0062-000000000029}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0059-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7643,11 +11351,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000024}, !- Handle + {00000000-0000-0000-0062-000000000030}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000059}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7662,11 +11370,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000025}, !- Handle + {00000000-0000-0000-0062-000000000031}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0057-000000000052}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000061}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7681,11 +11389,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000026}, !- Handle + {00000000-0000-0000-0062-000000000032}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000063}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7700,11 +11408,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000027}, !- Handle + {00000000-0000-0000-0062-000000000033}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0057-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000065}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7719,11 +11427,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000028}, !- Handle + {00000000-0000-0000-0062-000000000034}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0059-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000064}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000082}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7738,11 +11446,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0058-000000000029}, !- Handle + {00000000-0000-0000-0062-000000000035}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0059-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0057-000000000066}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000084}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7757,157 +11465,199 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0060-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000002}, !- Handle + {00000000-0000-0000-0063-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000003}, !- Handle + {00000000-0000-0000-0063-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0060-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000039}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000004}, !- Handle + {00000000-0000-0000-0063-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000040}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000005}, !- Handle + {00000000-0000-0000-0063-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0060-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000006}, !- Handle + {00000000-0000-0000-0063-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000007}, !- Handle + {00000000-0000-0000-0063-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000008}, !- Handle + {00000000-0000-0000-0063-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000009}, !- Handle + {00000000-0000-0000-0063-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000010}, !- Handle + {00000000-0000-0000-0063-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000011}, !- Handle + {00000000-0000-0000-0063-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000012}, !- Handle + {00000000-0000-0000-0063-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000013}, !- Handle + {00000000-0000-0000-0063-000000000013}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000021}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000021}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000014}, !- Handle + {00000000-0000-0000-0063-000000000014}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000015}, !- Handle + {00000000-0000-0000-0063-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000016}, !- Handle + {00000000-0000-0000-0063-000000000016}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0060-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000033}, !- Default Day Schedule Name - {00000000-0000-0000-0057-000000000034}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0057-000000000035}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000033}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000034}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000035}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000017}, !- Handle + {00000000-0000-0000-0063-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000018}, !- Handle + {00000000-0000-0000-0063-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000042}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000019}, !- Handle + {00000000-0000-0000-0063-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000020}, !- Handle + {00000000-0000-0000-0063-000000000020}, !- Handle + Supply Air Temp 1, !- Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000053}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000021}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000054}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000022}, !- Handle + Supply Air Temp 3, !- Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000055}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000023}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0060-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000056}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000021}, !- Handle + {00000000-0000-0000-0063-000000000024}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0060-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000057}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000022}, !- Handle + {00000000-0000-0000-0063-000000000025}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000049}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000058}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000023}, !- Handle + {00000000-0000-0000-0063-000000000026}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000058}, !- Default Day Schedule Name - {00000000-0000-0000-0057-000000000059}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0057-000000000060}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000067}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000068}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000069}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0059-000000000024}, !- Handle + {00000000-0000-0000-0063-000000000027}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000070}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000071}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000072}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000028}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000073}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000074}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000075}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000029}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 3 Occ Sch, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000076}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000077}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000078}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000030}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0060-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0057-000000000061}, !- Default Day Schedule Name - {00000000-0000-0000-0057-000000000062}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0057-000000000063}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000079}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000080}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000081}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -7915,7 +11665,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000002}, !- Handle + {00000000-0000-0000-0064-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -7923,7 +11673,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000003}, !- Handle + {00000000-0000-0000-0064-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -7931,14 +11681,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000004}, !- Handle + {00000000-0000-0000-0064-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000005}, !- Handle + {00000000-0000-0000-0064-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -7946,7 +11696,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000006}, !- Handle + {00000000-0000-0000-0064-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -7954,7 +11704,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000007}, !- Handle + {00000000-0000-0000-0064-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -7962,7 +11712,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000008}, !- Handle + {00000000-0000-0000-0064-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -7970,7 +11720,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0060-000000000009}, !- Handle + {00000000-0000-0000-0064-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -7978,71 +11728,134 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Setpoint Manager Outdoor Air Pretreat 1, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0046-000000000116}, !- Reference Setpoint Node Name - {00000000-0000-0000-0046-000000000116}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0046-000000000117}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0046-000000000119}, !- Return Air Stream Node Name - {00000000-0000-0000-0046-000000000121}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000185}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000185}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000186}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000188}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000190}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0065-000000000002}, !- Handle Setpoint Manager Outdoor Air Pretreat 2, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0046-000000000125}, !- Reference Setpoint Node Name - {00000000-0000-0000-0046-000000000125}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0046-000000000126}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0046-000000000111}, !- Return Air Stream Node Name - {00000000-0000-0000-0046-000000000130}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000215}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000215}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000216}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000180}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000226}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0065-000000000003}, !- Handle + Setpoint Manager Outdoor Air Pretreat 3, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0050-000000000194}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000194}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000195}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000177}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000220}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0065-000000000004}, !- Handle + Setpoint Manager Outdoor Air Pretreat 4, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0050-000000000201}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000201}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000202}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000178}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000222}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0065-000000000005}, !- Handle + Setpoint Manager Outdoor Air Pretreat 5, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0050-000000000208}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000208}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000209}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000179}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000224}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0059-000000000019}, !- Schedule Name - {00000000-0000-0000-0046-000000000064}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0063-000000000019}, !- Schedule Name + {00000000-0000-0000-0050-000000000130}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0062-000000000002}, !- Handle + {00000000-0000-0000-0066-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0059-000000000003}, !- Schedule Name - {00000000-0000-0000-0046-000000000033}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0063-000000000003}, !- Schedule Name + {00000000-0000-0000-0050-000000000087}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0062-000000000003}, !- Handle + {00000000-0000-0000-0066-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0059-000000000004}, !- Schedule Name - {00000000-0000-0000-0046-000000000043}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0063-000000000004}, !- Schedule Name + {00000000-0000-0000-0050-000000000109}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0062-000000000004}, !- Handle + {00000000-0000-0000-0066-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0059-000000000020}, !- Schedule Name - {00000000-0000-0000-0046-000000000129}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0063-000000000023}, !- Schedule Name + {00000000-0000-0000-0050-000000000219}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0066-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0063-000000000020}, !- Schedule Name + {00000000-0000-0000-0050-000000000198}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0066-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0063-000000000021}, !- Schedule Name + {00000000-0000-0000-0050-000000000205}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0066-000000000007}, !- Handle + Setpoint Manager Scheduled 6, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0063-000000000022}, !- Schedule Name + {00000000-0000-0000-0050-000000000212}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0086-000000000023}, !- Control Zone Name - {00000000-0000-0000-0046-000000000120}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0090-000000000023}, !- Control Zone Name + {00000000-0000-0000-0050-000000000189}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -8057,7 +11870,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0069-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -8066,7 +11879,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0070-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -8081,7 +11894,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0071-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -8096,7 +11909,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0072-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -8111,7 +11924,7 @@ OS:Site:GroundTemperature:FCfactorMethod, 11.1; !- December Ground Temperature {C} OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0073-000000000001}, !- Handle -1.6, !- January Surface Ground Temperature {C} -5.4, !- February Surface Ground Temperature {C} -6.4, !- March Surface Ground Temperature {C} @@ -8126,20 +11939,20 @@ OS:Site:GroundTemperature:Shallow, 4; !- December Surface Ground Temperature {C} OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0074-000000000001}, !- Handle Correlation, !- Calculation Method , !- Temperature Schedule Name 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} OS:Sizing:Parameters, - {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle 1.3, !- Heating Sizing Factor 1.1; !- Cooling Sizing Factor OS:Sizing:Plant, - {00000000-0000-0000-0072-000000000001}, !- Handle - {00000000-0000-0000-0051-000000000001}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Plant or Condenser Loop Name Cooling, !- Loop Type 7, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -8148,8 +11961,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0072-000000000002}, !- Handle - {00000000-0000-0000-0051-000000000002}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000002}, !- Handle + {00000000-0000-0000-0055-000000000002}, !- Plant or Condenser Loop Name Condenser, !- Loop Type 29, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -8158,8 +11971,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0072-000000000003}, !- Handle - {00000000-0000-0000-0051-000000000003}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0076-000000000003}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Plant or Condenser Loop Name Heating, !- Loop Type 60, !- Design Loop Exit Temperature {C} 5, !- Loop Design Temperature Difference {deltaC} @@ -8168,27 +11981,68 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0073-000000000001}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- AirLoop Name - Sensible, !- Type of Load to Size On + {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 43, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0077-000000000002}, !- Handle + {00000000-0000-0000-0002-000000000005}, !- AirLoop Name + , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 1, !- Central Heating Maximum System Air Flow Ratio + 0.3, !- Central Heating Maximum System Air Flow Ratio 7, !- Preheat Design Temperature {C} 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} - 13, !- Precool Design Temperature {C} + 12.8, !- Precool Design Temperature {C} 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} 13, !- Central Cooling Design Supply Air Temperature {C} - 43, !- Central Heating Design Supply Air Temperature {C} - NonCoincident, !- Sizing Option + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option No, !- 100% Outdoor Air in Cooling No, !- 100% Outdoor Air in Heating 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - DesignDay, !- Cooling Design Air Flow Method - 0, !- Cooling Design Air Flow Rate {m3/s} - DesignDay, !- Heating Design Air Flow Method - 0, !- Heating Design Air Flow Rate {m3/s} - ZoneSum, !- System Outdoor Air Method + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate @@ -8209,7 +12063,7 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0073-000000000002}, !- Handle + {00000000-0000-0000-0077-000000000003}, !- Handle {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -8249,19 +12103,101 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0077-000000000004}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0077-000000000005}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000001}, !- Handle - {00000000-0000-0000-0086-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8285,8 +12221,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000002}, !- Handle - {00000000-0000-0000-0086-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8320,18 +12256,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000003}, !- Handle - {00000000-0000-0000-0086-000000000022}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8355,8 +12291,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000004}, !- Handle - {00000000-0000-0000-0086-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8390,18 +12326,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000005}, !- Handle - {00000000-0000-0000-0086-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8425,18 +12361,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000006}, !- Handle - {00000000-0000-0000-0086-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8460,18 +12396,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000007}, !- Handle - {00000000-0000-0000-0086-000000000005}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8495,18 +12431,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000008}, !- Handle - {00000000-0000-0000-0086-000000000006}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8530,18 +12466,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000009}, !- Handle - {00000000-0000-0000-0086-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8565,18 +12501,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000010}, !- Handle - {00000000-0000-0000-0086-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8600,18 +12536,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000011}, !- Handle - {00000000-0000-0000-0086-000000000019}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8635,18 +12571,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000012}, !- Handle - {00000000-0000-0000-0086-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8670,8 +12606,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000013}, !- Handle - {00000000-0000-0000-0086-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8705,8 +12641,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000014}, !- Handle - {00000000-0000-0000-0086-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -8740,18 +12676,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000015}, !- Handle - {00000000-0000-0000-0086-000000000007}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8775,18 +12711,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000016}, !- Handle - {00000000-0000-0000-0086-000000000020}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8810,18 +12746,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000017}, !- Handle - {00000000-0000-0000-0086-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8845,18 +12781,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000018}, !- Handle - {00000000-0000-0000-0086-000000000021}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8880,18 +12816,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000019}, !- Handle - {00000000-0000-0000-0086-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8915,18 +12851,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000020}, !- Handle - {00000000-0000-0000-0086-000000000008}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8950,18 +12886,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000021}, !- Handle - {00000000-0000-0000-0086-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8985,18 +12921,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000022}, !- Handle - {00000000-0000-0000-0086-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0078-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9020,8 +12956,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0074-000000000023}, !- Handle - {00000000-0000-0000-0086-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0078-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9055,7 +12991,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0075-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9083,7 +13019,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0075-000000000002}, !- Handle + {00000000-0000-0000-0079-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9111,7 +13047,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0075-000000000003}, !- Handle + {00000000-0000-0000-0079-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9135,9 +13071,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0080-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0078-000000000002}, !- Space Type Name + {00000000-0000-0000-0082-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9145,16 +13081,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0086-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000002}, !- Handle + {00000000-0000-0000-0080-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9162,16 +13098,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000003}, !- Handle + {00000000-0000-0000-0080-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9179,16 +13115,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000004}, !- Handle + {00000000-0000-0000-0080-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9196,16 +13132,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000005}, !- Handle + {00000000-0000-0000-0080-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9213,16 +13149,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0011-000000000001}, !- Building Story Name - {00000000-0000-0000-0086-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000006}, !- Handle + {00000000-0000-0000-0080-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9230,16 +13166,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000007}, !- Handle + {00000000-0000-0000-0080-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9247,16 +13183,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000008}, !- Handle + {00000000-0000-0000-0080-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9264,16 +13200,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000009}, !- Handle + {00000000-0000-0000-0080-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0078-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9281,16 +13217,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000010}, !- Handle + {00000000-0000-0000-0080-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0078-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9298,16 +13234,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000011}, !- Handle + {00000000-0000-0000-0080-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9315,16 +13251,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000012}, !- Handle + {00000000-0000-0000-0080-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9332,16 +13268,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000013}, !- Handle + {00000000-0000-0000-0080-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9349,16 +13285,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000014}, !- Handle + {00000000-0000-0000-0080-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9366,16 +13302,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0011-000000000002}, !- Building Story Name - {00000000-0000-0000-0086-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000015}, !- Handle + {00000000-0000-0000-0080-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9383,16 +13319,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000016}, !- Handle + {00000000-0000-0000-0080-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9400,16 +13336,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000017}, !- Handle + {00000000-0000-0000-0080-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9417,16 +13353,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000018}, !- Handle + {00000000-0000-0000-0080-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9434,16 +13370,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0011-000000000003}, !- Building Story Name - {00000000-0000-0000-0086-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000019}, !- Handle + {00000000-0000-0000-0080-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9451,16 +13387,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000020}, !- Handle + {00000000-0000-0000-0080-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9468,16 +13404,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000021}, !- Handle + {00000000-0000-0000-0080-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9485,16 +13421,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000022}, !- Handle + {00000000-0000-0000-0080-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0078-000000000003}, !- Space Type Name + {00000000-0000-0000-0082-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9502,16 +13438,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0076-000000000023}, !- Handle + {00000000-0000-0000-0080-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0078-000000000001}, !- Space Type Name + {00000000-0000-0000-0082-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9519,17 +13455,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0011-000000000004}, !- Building Story Name - {00000000-0000-0000-0086-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0090-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0076-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9541,10 +13477,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0076-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9556,10 +13492,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000003}, !- Handle + {00000000-0000-0000-0081-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0076-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9571,10 +13507,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000004}, !- Handle + {00000000-0000-0000-0081-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0076-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9586,10 +13522,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000005}, !- Handle + {00000000-0000-0000-0081-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0076-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9601,10 +13537,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000006}, !- Handle + {00000000-0000-0000-0081-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0076-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9616,10 +13552,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000007}, !- Handle + {00000000-0000-0000-0081-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0076-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9631,10 +13567,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000008}, !- Handle + {00000000-0000-0000-0081-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0076-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9646,10 +13582,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000009}, !- Handle + {00000000-0000-0000-0081-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0076-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9661,10 +13597,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000010}, !- Handle + {00000000-0000-0000-0081-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0076-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9676,10 +13612,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000011}, !- Handle + {00000000-0000-0000-0081-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0076-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9691,10 +13627,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000012}, !- Handle + {00000000-0000-0000-0081-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0076-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9706,10 +13642,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000013}, !- Handle + {00000000-0000-0000-0081-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0076-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9721,10 +13657,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000014}, !- Handle + {00000000-0000-0000-0081-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0076-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9736,10 +13672,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0077-000000000015}, !- Handle + {00000000-0000-0000-0081-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0076-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0056-000000000001}, !- Schedule Name + {00000000-0000-0000-0080-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0060-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -9751,46 +13687,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0082-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000031}, !- Group Rendering Name {00000000-0000-0000-0032-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0078-000000000002}, !- Handle + {00000000-0000-0000-0082-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000033}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000033}, !- Group Rendering Name {00000000-0000-0000-0032-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical room-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0082-000000000003}, !- Handle Space Function Office open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0029-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0055-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0059-000000000037}, !- Group Rendering Name {00000000-0000-0000-0032-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle {00000000-0000-0000-0020-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000002}, !- Handle + {00000000-0000-0000-0083-000000000002}, !- Handle {00000000-0000-0000-0020-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9799,7 +13735,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0083-000000000003}, !- Handle {00000000-0000-0000-0020-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9808,7 +13744,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000004}, !- Handle + {00000000-0000-0000-0083-000000000004}, !- Handle {00000000-0000-0000-0020-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -9817,25 +13753,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000005}, !- Handle + {00000000-0000-0000-0083-000000000005}, !- Handle {00000000-0000-0000-0020-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000006}, !- Handle + {00000000-0000-0000-0083-000000000006}, !- Handle {00000000-0000-0000-0020-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000007}, !- Handle + {00000000-0000-0000-0083-000000000007}, !- Handle {00000000-0000-0000-0020-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000008}, !- Handle + {00000000-0000-0000-0083-000000000008}, !- Handle {00000000-0000-0000-0020-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9844,7 +13780,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000009}, !- Handle + {00000000-0000-0000-0083-000000000009}, !- Handle {00000000-0000-0000-0020-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9853,7 +13789,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000010}, !- Handle + {00000000-0000-0000-0083-000000000010}, !- Handle {00000000-0000-0000-0020-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9862,12 +13798,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000011}, !- Handle + {00000000-0000-0000-0083-000000000011}, !- Handle {00000000-0000-0000-0020-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000012}, !- Handle + {00000000-0000-0000-0083-000000000012}, !- Handle {00000000-0000-0000-0020-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -9876,12 +13812,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000013}, !- Handle + {00000000-0000-0000-0083-000000000013}, !- Handle {00000000-0000-0000-0020-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000014}, !- Handle + {00000000-0000-0000-0083-000000000014}, !- Handle {00000000-0000-0000-0020-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -9890,34 +13826,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000015}, !- Handle + {00000000-0000-0000-0083-000000000015}, !- Handle {00000000-0000-0000-0020-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000016}, !- Handle + {00000000-0000-0000-0083-000000000016}, !- Handle {00000000-0000-0000-0020-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000017}, !- Handle + {00000000-0000-0000-0083-000000000017}, !- Handle {00000000-0000-0000-0020-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000018}, !- Handle + {00000000-0000-0000-0083-000000000018}, !- Handle {00000000-0000-0000-0020-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000019}, !- Handle + {00000000-0000-0000-0083-000000000019}, !- Handle {00000000-0000-0000-0020-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000020}, !- Handle + {00000000-0000-0000-0083-000000000020}, !- Handle {00000000-0000-0000-0020-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9926,7 +13862,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000021}, !- Handle + {00000000-0000-0000-0083-000000000021}, !- Handle {00000000-0000-0000-0020-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9935,7 +13871,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000022}, !- Handle + {00000000-0000-0000-0083-000000000022}, !- Handle {00000000-0000-0000-0020-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -9944,7 +13880,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000023}, !- Handle + {00000000-0000-0000-0083-000000000023}, !- Handle {00000000-0000-0000-0020-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9953,7 +13889,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000024}, !- Handle + {00000000-0000-0000-0083-000000000024}, !- Handle {00000000-0000-0000-0020-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9962,7 +13898,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000025}, !- Handle + {00000000-0000-0000-0083-000000000025}, !- Handle {00000000-0000-0000-0020-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -9971,7 +13907,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000026}, !- Handle + {00000000-0000-0000-0083-000000000026}, !- Handle {00000000-0000-0000-0020-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -9980,7 +13916,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0079-000000000027}, !- Handle + {00000000-0000-0000-0083-000000000027}, !- Handle {00000000-0000-0000-0020-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -9989,135 +13925,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000001}, !- Handle - {00000000-0000-0000-0043-000000000021}; !- Material Name + {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0047-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000002}, !- Handle - {00000000-0000-0000-0044-000000000013}; !- Material Name + {00000000-0000-0000-0084-000000000002}, !- Handle + {00000000-0000-0000-0048-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000003}, !- Handle - {00000000-0000-0000-0043-000000000008}; !- Material Name + {00000000-0000-0000-0084-000000000003}, !- Handle + {00000000-0000-0000-0047-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000004}, !- Handle - {00000000-0000-0000-0044-000000000007}; !- Material Name + {00000000-0000-0000-0084-000000000004}, !- Handle + {00000000-0000-0000-0048-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000005}, !- Handle - {00000000-0000-0000-0043-000000000006}; !- Material Name + {00000000-0000-0000-0084-000000000005}, !- Handle + {00000000-0000-0000-0047-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000006}, !- Handle - {00000000-0000-0000-0043-000000000014}; !- Material Name + {00000000-0000-0000-0084-000000000006}, !- Handle + {00000000-0000-0000-0047-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000007}, !- Handle - {00000000-0000-0000-0043-000000000002}; !- Material Name + {00000000-0000-0000-0084-000000000007}, !- Handle + {00000000-0000-0000-0047-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000008}, !- Handle - {00000000-0000-0000-0043-000000000024}; !- Material Name + {00000000-0000-0000-0084-000000000008}, !- Handle + {00000000-0000-0000-0047-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000009}, !- Handle - {00000000-0000-0000-0043-000000000003}; !- Material Name + {00000000-0000-0000-0084-000000000009}, !- Handle + {00000000-0000-0000-0047-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000010}, !- Handle - {00000000-0000-0000-0043-000000000019}; !- Material Name + {00000000-0000-0000-0084-000000000010}, !- Handle + {00000000-0000-0000-0047-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000011}, !- Handle - {00000000-0000-0000-0043-000000000012}; !- Material Name + {00000000-0000-0000-0084-000000000011}, !- Handle + {00000000-0000-0000-0047-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000012}, !- Handle - {00000000-0000-0000-0096-000000000001}; !- Material Name + {00000000-0000-0000-0084-000000000012}, !- Handle + {00000000-0000-0000-0100-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000013}, !- Handle - {00000000-0000-0000-0043-000000000018}; !- Material Name + {00000000-0000-0000-0084-000000000013}, !- Handle + {00000000-0000-0000-0047-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000014}, !- Handle - {00000000-0000-0000-0044-000000000008}; !- Material Name + {00000000-0000-0000-0084-000000000014}, !- Handle + {00000000-0000-0000-0048-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000015}, !- Handle - {00000000-0000-0000-0043-000000000007}; !- Material Name + {00000000-0000-0000-0084-000000000015}, !- Handle + {00000000-0000-0000-0047-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000016}, !- Handle - {00000000-0000-0000-0044-000000000003}; !- Material Name + {00000000-0000-0000-0084-000000000016}, !- Handle + {00000000-0000-0000-0048-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000017}, !- Handle - {00000000-0000-0000-0043-000000000005}; !- Material Name + {00000000-0000-0000-0084-000000000017}, !- Handle + {00000000-0000-0000-0047-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000018}, !- Handle - {00000000-0000-0000-0043-000000000013}; !- Material Name + {00000000-0000-0000-0084-000000000018}, !- Handle + {00000000-0000-0000-0047-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000019}, !- Handle - {00000000-0000-0000-0044-000000000009}; !- Material Name + {00000000-0000-0000-0084-000000000019}, !- Handle + {00000000-0000-0000-0048-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000020}, !- Handle - {00000000-0000-0000-0043-000000000001}; !- Material Name + {00000000-0000-0000-0084-000000000020}, !- Handle + {00000000-0000-0000-0047-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000021}, !- Handle - {00000000-0000-0000-0043-000000000023}; !- Material Name + {00000000-0000-0000-0084-000000000021}, !- Handle + {00000000-0000-0000-0047-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000022}, !- Handle - {00000000-0000-0000-0044-000000000010}; !- Material Name + {00000000-0000-0000-0084-000000000022}, !- Handle + {00000000-0000-0000-0048-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000023}, !- Handle - {00000000-0000-0000-0043-000000000009}; !- Material Name + {00000000-0000-0000-0084-000000000023}, !- Handle + {00000000-0000-0000-0047-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000024}, !- Handle - {00000000-0000-0000-0044-000000000004}; !- Material Name + {00000000-0000-0000-0084-000000000024}, !- Handle + {00000000-0000-0000-0048-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000025}, !- Handle - {00000000-0000-0000-0043-000000000010}; !- Material Name + {00000000-0000-0000-0084-000000000025}, !- Handle + {00000000-0000-0000-0047-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000026}, !- Handle - {00000000-0000-0000-0044-000000000005}; !- Material Name + {00000000-0000-0000-0084-000000000026}, !- Handle + {00000000-0000-0000-0048-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000027}, !- Handle - {00000000-0000-0000-0043-000000000011}; !- Material Name + {00000000-0000-0000-0084-000000000027}, !- Handle + {00000000-0000-0000-0047-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000028}, !- Handle - {00000000-0000-0000-0044-000000000006}; !- Material Name + {00000000-0000-0000-0084-000000000028}, !- Handle + {00000000-0000-0000-0048-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000029}, !- Handle - {00000000-0000-0000-0043-000000000017}; !- Material Name + {00000000-0000-0000-0084-000000000029}, !- Handle + {00000000-0000-0000-0047-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000030}, !- Handle - {00000000-0000-0000-0044-000000000011}; !- Material Name + {00000000-0000-0000-0084-000000000030}, !- Handle + {00000000-0000-0000-0048-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0080-000000000031}, !- Handle - {00000000-0000-0000-0044-000000000012}; !- Material Name + {00000000-0000-0000-0084-000000000031}, !- Handle + {00000000-0000-0000-0048-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0085-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000098}, !- Surface Name + {00000000-0000-0000-0086-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10129,11 +14065,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0085-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000103}, !- Surface Name + {00000000-0000-0000-0086-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10145,11 +14081,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0085-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000110}, !- Surface Name + {00000000-0000-0000-0086-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10161,11 +14097,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000004}, !- Handle + {00000000-0000-0000-0085-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000119}, !- Surface Name + {00000000-0000-0000-0086-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10177,11 +14113,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000005}, !- Handle + {00000000-0000-0000-0085-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000125}, !- Surface Name + {00000000-0000-0000-0086-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10193,11 +14129,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000006}, !- Handle + {00000000-0000-0000-0085-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000129}, !- Surface Name + {00000000-0000-0000-0086-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10209,11 +14145,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000007}, !- Handle + {00000000-0000-0000-0085-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000135}, !- Surface Name + {00000000-0000-0000-0086-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10225,11 +14161,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000008}, !- Handle + {00000000-0000-0000-0085-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000143}, !- Surface Name + {00000000-0000-0000-0086-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10241,11 +14177,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000009}, !- Handle + {00000000-0000-0000-0085-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000147}, !- Surface Name + {00000000-0000-0000-0086-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10257,11 +14193,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000010}, !- Handle + {00000000-0000-0000-0085-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000151}, !- Surface Name + {00000000-0000-0000-0086-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10273,11 +14209,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000011}, !- Handle + {00000000-0000-0000-0085-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000157}, !- Surface Name + {00000000-0000-0000-0086-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10289,11 +14225,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0081-000000000012}, !- Handle + {00000000-0000-0000-0085-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0020-000000000008}, !- Construction Name - {00000000-0000-0000-0082-000000000165}, !- Surface Name + {00000000-0000-0000-0086-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10305,13 +14241,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10322,13 +14258,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10339,13 +14275,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10356,13 +14292,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000004}, !- Handle + {00000000-0000-0000-0086-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10373,13 +14309,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000005}, !- Handle + {00000000-0000-0000-0086-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10390,11 +14326,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000006}, !- Handle + {00000000-0000-0000-0086-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -10407,13 +14343,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000007}, !- Handle + {00000000-0000-0000-0086-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10424,13 +14360,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000008}, !- Handle + {00000000-0000-0000-0086-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10441,13 +14377,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000009}, !- Handle + {00000000-0000-0000-0086-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10458,13 +14394,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000010}, !- Handle + {00000000-0000-0000-0086-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10475,13 +14411,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000011}, !- Handle + {00000000-0000-0000-0086-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10492,13 +14428,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000012}, !- Handle + {00000000-0000-0000-0086-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10509,13 +14445,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000013}, !- Handle + {00000000-0000-0000-0086-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10526,13 +14462,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000014}, !- Handle + {00000000-0000-0000-0086-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10543,13 +14479,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000015}, !- Handle + {00000000-0000-0000-0086-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10560,13 +14496,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000016}, !- Handle + {00000000-0000-0000-0086-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10577,13 +14513,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000017}, !- Handle + {00000000-0000-0000-0086-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10594,13 +14530,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000018}, !- Handle + {00000000-0000-0000-0086-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10611,13 +14547,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000019}, !- Handle + {00000000-0000-0000-0086-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10628,11 +14564,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000020}, !- Handle + {00000000-0000-0000-0086-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10645,13 +14581,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000021}, !- Handle + {00000000-0000-0000-0086-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10662,13 +14598,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000022}, !- Handle + {00000000-0000-0000-0086-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10679,13 +14615,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000023}, !- Handle + {00000000-0000-0000-0086-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10696,13 +14632,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000024}, !- Handle + {00000000-0000-0000-0086-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10713,13 +14649,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000025}, !- Handle + {00000000-0000-0000-0086-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10730,13 +14666,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000026}, !- Handle + {00000000-0000-0000-0086-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10747,13 +14683,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000027}, !- Handle + {00000000-0000-0000-0086-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000003}, !- Space Name + {00000000-0000-0000-0080-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10764,13 +14700,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000028}, !- Handle + {00000000-0000-0000-0086-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10781,13 +14717,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000029}, !- Handle + {00000000-0000-0000-0086-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10798,11 +14734,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000030}, !- Handle + {00000000-0000-0000-0086-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -10815,13 +14751,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000031}, !- Handle + {00000000-0000-0000-0086-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10832,13 +14768,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000032}, !- Handle + {00000000-0000-0000-0086-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10849,13 +14785,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000033}, !- Handle + {00000000-0000-0000-0086-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10866,13 +14802,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000034}, !- Handle + {00000000-0000-0000-0086-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10883,13 +14819,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000035}, !- Handle + {00000000-0000-0000-0086-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10900,13 +14836,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000036}, !- Handle + {00000000-0000-0000-0086-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10917,13 +14853,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000037}, !- Handle + {00000000-0000-0000-0086-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000004}, !- Space Name + {00000000-0000-0000-0080-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -10934,13 +14870,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000038}, !- Handle + {00000000-0000-0000-0086-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10951,13 +14887,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000039}, !- Handle + {00000000-0000-0000-0086-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10968,13 +14904,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000040}, !- Handle + {00000000-0000-0000-0086-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000002}, !- Space Name + {00000000-0000-0000-0080-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -10985,13 +14921,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000041}, !- Handle + {00000000-0000-0000-0086-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11002,13 +14938,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000042}, !- Handle + {00000000-0000-0000-0086-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11019,13 +14955,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000043}, !- Handle + {00000000-0000-0000-0086-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11036,13 +14972,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000044}, !- Handle + {00000000-0000-0000-0086-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000023}, !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11053,13 +14989,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000045}, !- Handle + {00000000-0000-0000-0086-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11070,13 +15006,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000046}, !- Handle + {00000000-0000-0000-0086-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11087,13 +15023,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000047}, !- Handle + {00000000-0000-0000-0086-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11104,13 +15040,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000048}, !- Handle + {00000000-0000-0000-0086-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0020-000000000028}, !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0038-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0042-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11121,13 +15057,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000049}, !- Handle + {00000000-0000-0000-0086-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11138,13 +15074,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000050}, !- Handle + {00000000-0000-0000-0086-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11155,13 +15091,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000051}, !- Handle + {00000000-0000-0000-0086-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11172,13 +15108,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000052}, !- Handle + {00000000-0000-0000-0086-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11189,13 +15125,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000053}, !- Handle + {00000000-0000-0000-0086-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11206,13 +15142,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000054}, !- Handle + {00000000-0000-0000-0086-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11223,13 +15159,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000055}, !- Handle + {00000000-0000-0000-0086-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11240,13 +15176,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000056}, !- Handle + {00000000-0000-0000-0086-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11257,13 +15193,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000057}, !- Handle + {00000000-0000-0000-0086-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11274,13 +15210,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000058}, !- Handle + {00000000-0000-0000-0086-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000006}, !- Space Name + {00000000-0000-0000-0080-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11291,13 +15227,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000059}, !- Handle + {00000000-0000-0000-0086-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11308,11 +15244,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000060}, !- Handle + {00000000-0000-0000-0086-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11325,13 +15261,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000061}, !- Handle + {00000000-0000-0000-0086-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11342,13 +15278,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000062}, !- Handle + {00000000-0000-0000-0086-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11359,13 +15295,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000063}, !- Handle + {00000000-0000-0000-0086-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11376,13 +15312,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000064}, !- Handle + {00000000-0000-0000-0086-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11393,13 +15329,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000065}, !- Handle + {00000000-0000-0000-0086-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11410,13 +15346,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000066}, !- Handle + {00000000-0000-0000-0086-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11427,13 +15363,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000067}, !- Handle + {00000000-0000-0000-0086-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11444,13 +15380,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000068}, !- Handle + {00000000-0000-0000-0086-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11461,13 +15397,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000069}, !- Handle + {00000000-0000-0000-0086-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000007}, !- Space Name + {00000000-0000-0000-0080-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11478,11 +15414,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000070}, !- Handle + {00000000-0000-0000-0086-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11495,13 +15431,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000071}, !- Handle + {00000000-0000-0000-0086-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11512,13 +15448,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000072}, !- Handle + {00000000-0000-0000-0086-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11529,13 +15465,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000073}, !- Handle + {00000000-0000-0000-0086-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11546,13 +15482,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000074}, !- Handle + {00000000-0000-0000-0086-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11563,13 +15499,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000075}, !- Handle + {00000000-0000-0000-0086-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11580,13 +15516,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000076}, !- Handle + {00000000-0000-0000-0086-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11597,13 +15533,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000077}, !- Handle + {00000000-0000-0000-0086-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11614,13 +15550,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000078}, !- Handle + {00000000-0000-0000-0086-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11631,13 +15567,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000079}, !- Handle + {00000000-0000-0000-0086-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000008}, !- Space Name + {00000000-0000-0000-0080-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11648,11 +15584,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000080}, !- Handle + {00000000-0000-0000-0086-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11665,11 +15601,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000081}, !- Handle + {00000000-0000-0000-0086-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11682,11 +15618,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000082}, !- Handle + {00000000-0000-0000-0086-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11699,11 +15635,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000083}, !- Handle + {00000000-0000-0000-0086-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11716,11 +15652,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000084}, !- Handle + {00000000-0000-0000-0086-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11733,13 +15669,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000085}, !- Handle + {00000000-0000-0000-0086-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11750,13 +15686,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000086}, !- Handle + {00000000-0000-0000-0086-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11767,11 +15703,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000087}, !- Handle + {00000000-0000-0000-0086-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11784,11 +15720,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000088}, !- Handle + {00000000-0000-0000-0086-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11801,11 +15737,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000089}, !- Handle + {00000000-0000-0000-0086-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11818,11 +15754,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000090}, !- Handle + {00000000-0000-0000-0086-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11835,11 +15771,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000091}, !- Handle + {00000000-0000-0000-0086-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11852,13 +15788,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000092}, !- Handle + {00000000-0000-0000-0086-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11869,13 +15805,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000093}, !- Handle + {00000000-0000-0000-0086-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11886,13 +15822,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000094}, !- Handle + {00000000-0000-0000-0086-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11903,13 +15839,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000095}, !- Handle + {00000000-0000-0000-0086-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11920,13 +15856,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000096}, !- Handle + {00000000-0000-0000-0086-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11937,13 +15873,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000097}, !- Handle + {00000000-0000-0000-0086-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11954,11 +15890,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000098}, !- Handle + {00000000-0000-0000-0086-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11971,13 +15907,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000099}, !- Handle + {00000000-0000-0000-0086-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11988,13 +15924,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000100}, !- Handle + {00000000-0000-0000-0086-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12005,13 +15941,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000101}, !- Handle + {00000000-0000-0000-0086-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12022,13 +15958,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000102}, !- Handle + {00000000-0000-0000-0086-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12039,11 +15975,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000103}, !- Handle + {00000000-0000-0000-0086-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12056,13 +15992,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000104}, !- Handle + {00000000-0000-0000-0086-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000012}, !- Space Name + {00000000-0000-0000-0080-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12073,13 +16009,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000105}, !- Handle + {00000000-0000-0000-0086-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12090,13 +16026,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000106}, !- Handle + {00000000-0000-0000-0086-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12107,13 +16043,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000107}, !- Handle + {00000000-0000-0000-0086-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12124,13 +16060,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000108}, !- Handle + {00000000-0000-0000-0086-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12141,13 +16077,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000109}, !- Handle + {00000000-0000-0000-0086-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000001}, !- Space Name + {00000000-0000-0000-0080-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12158,11 +16094,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000110}, !- Handle + {00000000-0000-0000-0086-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12175,13 +16111,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000111}, !- Handle + {00000000-0000-0000-0086-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000013}, !- Space Name + {00000000-0000-0000-0080-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12192,13 +16128,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000112}, !- Handle + {00000000-0000-0000-0086-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12209,13 +16145,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000113}, !- Handle + {00000000-0000-0000-0086-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000009}, !- Space Name + {00000000-0000-0000-0080-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12226,13 +16162,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000114}, !- Handle + {00000000-0000-0000-0086-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12243,13 +16179,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000115}, !- Handle + {00000000-0000-0000-0086-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12260,13 +16196,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000116}, !- Handle + {00000000-0000-0000-0086-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000005}, !- Space Name + {00000000-0000-0000-0080-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12277,13 +16213,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000117}, !- Handle + {00000000-0000-0000-0086-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12294,13 +16230,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000118}, !- Handle + {00000000-0000-0000-0086-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000011}, !- Space Name + {00000000-0000-0000-0080-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12311,11 +16247,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000119}, !- Handle + {00000000-0000-0000-0086-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000014}, !- Space Name + {00000000-0000-0000-0080-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12328,13 +16264,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000120}, !- Handle + {00000000-0000-0000-0086-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12345,13 +16281,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000121}, !- Handle + {00000000-0000-0000-0086-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12362,11 +16298,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000122}, !- Handle + {00000000-0000-0000-0086-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12379,13 +16315,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000123}, !- Handle + {00000000-0000-0000-0086-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12396,13 +16332,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000124}, !- Handle + {00000000-0000-0000-0086-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12413,11 +16349,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000125}, !- Handle + {00000000-0000-0000-0086-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12430,13 +16366,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000126}, !- Handle + {00000000-0000-0000-0086-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12447,13 +16383,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000127}, !- Handle + {00000000-0000-0000-0086-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12464,11 +16400,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000128}, !- Handle + {00000000-0000-0000-0086-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12481,11 +16417,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000129}, !- Handle + {00000000-0000-0000-0086-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12498,13 +16434,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000130}, !- Handle + {00000000-0000-0000-0086-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000016}, !- Space Name + {00000000-0000-0000-0080-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12515,13 +16451,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000131}, !- Handle + {00000000-0000-0000-0086-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12532,13 +16468,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000132}, !- Handle + {00000000-0000-0000-0086-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12549,13 +16485,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000133}, !- Handle + {00000000-0000-0000-0086-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12566,11 +16502,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000134}, !- Handle + {00000000-0000-0000-0086-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12583,11 +16519,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000135}, !- Handle + {00000000-0000-0000-0086-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12600,13 +16536,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000136}, !- Handle + {00000000-0000-0000-0086-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000017}, !- Space Name + {00000000-0000-0000-0080-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12617,13 +16553,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000137}, !- Handle + {00000000-0000-0000-0086-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12634,13 +16570,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000138}, !- Handle + {00000000-0000-0000-0086-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000010}, !- Space Name + {00000000-0000-0000-0080-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12651,13 +16587,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000139}, !- Handle + {00000000-0000-0000-0086-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12668,11 +16604,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000140}, !- Handle + {00000000-0000-0000-0086-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12685,13 +16621,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000141}, !- Handle + {00000000-0000-0000-0086-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12702,13 +16638,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000142}, !- Handle + {00000000-0000-0000-0086-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000015}, !- Space Name + {00000000-0000-0000-0080-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12719,11 +16655,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000143}, !- Handle + {00000000-0000-0000-0086-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000018}, !- Space Name + {00000000-0000-0000-0080-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12736,13 +16672,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000144}, !- Handle + {00000000-0000-0000-0086-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12753,13 +16689,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000145}, !- Handle + {00000000-0000-0000-0086-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12770,11 +16706,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000146}, !- Handle + {00000000-0000-0000-0086-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12787,11 +16723,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000147}, !- Handle + {00000000-0000-0000-0086-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12804,13 +16740,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000148}, !- Handle + {00000000-0000-0000-0086-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12821,13 +16757,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000149}, !- Handle + {00000000-0000-0000-0086-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12838,11 +16774,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000150}, !- Handle + {00000000-0000-0000-0086-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12855,11 +16791,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000151}, !- Handle + {00000000-0000-0000-0086-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12872,13 +16808,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000152}, !- Handle + {00000000-0000-0000-0086-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000020}, !- Space Name + {00000000-0000-0000-0080-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12889,13 +16825,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000153}, !- Handle + {00000000-0000-0000-0086-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12906,13 +16842,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000154}, !- Handle + {00000000-0000-0000-0086-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12923,13 +16859,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000155}, !- Handle + {00000000-0000-0000-0086-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12940,11 +16876,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000156}, !- Handle + {00000000-0000-0000-0086-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12957,11 +16893,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000157}, !- Handle + {00000000-0000-0000-0086-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12974,13 +16910,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000158}, !- Handle + {00000000-0000-0000-0086-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000021}, !- Space Name + {00000000-0000-0000-0080-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12991,13 +16927,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000159}, !- Handle + {00000000-0000-0000-0086-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13008,13 +16944,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000160}, !- Handle + {00000000-0000-0000-0086-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13025,13 +16961,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000161}, !- Handle + {00000000-0000-0000-0086-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13042,11 +16978,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000162}, !- Handle + {00000000-0000-0000-0086-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0020-000000000033}, !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13059,13 +16995,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000163}, !- Handle + {00000000-0000-0000-0086-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13076,13 +17012,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000164}, !- Handle + {00000000-0000-0000-0086-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000019}, !- Space Name + {00000000-0000-0000-0080-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0082-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0086-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13093,11 +17029,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000165}, !- Handle + {00000000-0000-0000-0086-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000022}, !- Space Name + {00000000-0000-0000-0080-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13110,11 +17046,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000166}, !- Handle + {00000000-0000-0000-0086-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13127,11 +17063,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000167}, !- Handle + {00000000-0000-0000-0086-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13144,11 +17080,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000168}, !- Handle + {00000000-0000-0000-0086-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13161,11 +17097,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0082-000000000169}, !- Handle + {00000000-0000-0000-0086-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0076-000000000023}, !- Space Name + {00000000-0000-0000-0080-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13178,27 +17114,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0087-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0084-000000000001}, !- Handle + {00000000-0000-0000-0088-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0085-000000000001}, !- Handle - {00000000-0000-0000-0082-000000000044}, !- Surface Name + {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0085-000000000002}, !- Handle - {00000000-0000-0000-0082-000000000001}, !- Surface Name + {00000000-0000-0000-0089-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13207,21 +17143,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000007}, !- Thermostat Name + {00000000-0000-0000-0059-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13230,21 +17166,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000009}, !- Thermostat Name + {00000000-0000-0000-0059-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13253,21 +17189,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000008}, !- Thermostat Name + {00000000-0000-0000-0059-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13276,21 +17212,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000058}, !- Thermostat Name + {00000000-0000-0000-0059-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13299,21 +17235,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000052}, !- Thermostat Name + {00000000-0000-0000-0059-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13322,21 +17258,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000053}, !- Thermostat Name + {00000000-0000-0000-0059-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13345,21 +17281,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000060}, !- Thermostat Name + {00000000-0000-0000-0059-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13368,21 +17304,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000065}, !- Thermostat Name + {00000000-0000-0000-0059-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13391,21 +17327,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000067}, !- Thermostat Name + {00000000-0000-0000-0059-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13414,21 +17350,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000047}, !- Thermostat Name + {00000000-0000-0000-0059-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13437,21 +17373,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000055}, !- Thermostat Name + {00000000-0000-0000-0059-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13460,21 +17396,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000057}, !- Thermostat Name + {00000000-0000-0000-0059-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13483,21 +17419,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000062}, !- Thermostat Name + {00000000-0000-0000-0059-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13506,21 +17442,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000064}, !- Thermostat Name + {00000000-0000-0000-0059-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13529,21 +17465,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000066}, !- Thermostat Name + {00000000-0000-0000-0059-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13552,21 +17488,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000050}, !- Thermostat Name + {00000000-0000-0000-0059-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13575,21 +17511,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000051}, !- Thermostat Name + {00000000-0000-0000-0059-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13598,21 +17534,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000054}, !- Thermostat Name + {00000000-0000-0000-0059-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13621,21 +17557,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000056}, !- Thermostat Name + {00000000-0000-0000-0059-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13644,21 +17580,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000061}, !- Thermostat Name + {00000000-0000-0000-0059-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13667,21 +17603,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000063}, !- Thermostat Name + {00000000-0000-0000-0059-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13690,21 +17626,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000049}, !- Thermostat Name + {00000000-0000-0000-0059-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0086-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13713,444 +17649,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0052-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0052-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0056-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0056-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0017-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0052-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0056-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0055-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0087-000000000013}, !- Thermostat Name + {00000000-0000-0000-0059-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0091-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0091-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000002}, !- Handle + {00000000-0000-0000-0091-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000003}, !- Handle + {00000000-0000-0000-0091-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000004}, !- Handle + {00000000-0000-0000-0091-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000005}, !- Handle + {00000000-0000-0000-0091-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000006}, !- Handle + {00000000-0000-0000-0091-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000007}, !- Handle + {00000000-0000-0000-0091-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000008}, !- Handle + {00000000-0000-0000-0091-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000009}, !- Handle + {00000000-0000-0000-0091-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000010}, !- Handle + {00000000-0000-0000-0091-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000011}, !- Handle + {00000000-0000-0000-0091-000000000011}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000012}, !- Handle + {00000000-0000-0000-0091-000000000012}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000013}, !- Handle + {00000000-0000-0000-0091-000000000013}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000014}, !- Handle + {00000000-0000-0000-0091-000000000014}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000015}, !- Handle + {00000000-0000-0000-0091-000000000015}, !- Handle Space Function Office open plan Thermostat 1, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000016}, !- Handle + {00000000-0000-0000-0091-000000000016}, !- Handle Space Function Office open plan Thermostat 10, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000017}, !- Handle + {00000000-0000-0000-0091-000000000017}, !- Handle Space Function Office open plan Thermostat 11, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000018}, !- Handle + {00000000-0000-0000-0091-000000000018}, !- Handle Space Function Office open plan Thermostat 12, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000019}, !- Handle + {00000000-0000-0000-0091-000000000019}, !- Handle Space Function Office open plan Thermostat 13, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000020}, !- Handle + {00000000-0000-0000-0091-000000000020}, !- Handle Space Function Office open plan Thermostat 14, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000021}, !- Handle + {00000000-0000-0000-0091-000000000021}, !- Handle Space Function Office open plan Thermostat 15, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000022}, !- Handle + {00000000-0000-0000-0091-000000000022}, !- Handle Space Function Office open plan Thermostat 16, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000023}, !- Handle + {00000000-0000-0000-0091-000000000023}, !- Handle Space Function Office open plan Thermostat 17, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000024}, !- Handle + {00000000-0000-0000-0091-000000000024}, !- Handle Space Function Office open plan Thermostat 18, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000025}, !- Handle + {00000000-0000-0000-0091-000000000025}, !- Handle Space Function Office open plan Thermostat 19, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000026}, !- Handle + {00000000-0000-0000-0091-000000000026}, !- Handle Space Function Office open plan Thermostat 2, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000027}, !- Handle + {00000000-0000-0000-0091-000000000027}, !- Handle Space Function Office open plan Thermostat 20, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000028}, !- Handle + {00000000-0000-0000-0091-000000000028}, !- Handle Space Function Office open plan Thermostat 21, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000029}, !- Handle + {00000000-0000-0000-0091-000000000029}, !- Handle Space Function Office open plan Thermostat 22, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000030}, !- Handle + {00000000-0000-0000-0091-000000000030}, !- Handle Space Function Office open plan Thermostat 23, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000031}, !- Handle + {00000000-0000-0000-0091-000000000031}, !- Handle Space Function Office open plan Thermostat 24, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000032}, !- Handle + {00000000-0000-0000-0091-000000000032}, !- Handle Space Function Office open plan Thermostat 25, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000033}, !- Handle + {00000000-0000-0000-0091-000000000033}, !- Handle Space Function Office open plan Thermostat 26, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000034}, !- Handle + {00000000-0000-0000-0091-000000000034}, !- Handle Space Function Office open plan Thermostat 27, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000035}, !- Handle + {00000000-0000-0000-0091-000000000035}, !- Handle Space Function Office open plan Thermostat 28, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000036}, !- Handle + {00000000-0000-0000-0091-000000000036}, !- Handle Space Function Office open plan Thermostat 29, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000037}, !- Handle + {00000000-0000-0000-0091-000000000037}, !- Handle Space Function Office open plan Thermostat 3, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000038}, !- Handle + {00000000-0000-0000-0091-000000000038}, !- Handle Space Function Office open plan Thermostat 30, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000039}, !- Handle + {00000000-0000-0000-0091-000000000039}, !- Handle Space Function Office open plan Thermostat 31, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000040}, !- Handle + {00000000-0000-0000-0091-000000000040}, !- Handle Space Function Office open plan Thermostat 32, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000041}, !- Handle + {00000000-0000-0000-0091-000000000041}, !- Handle Space Function Office open plan Thermostat 33, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000042}, !- Handle + {00000000-0000-0000-0091-000000000042}, !- Handle Space Function Office open plan Thermostat 34, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000043}, !- Handle + {00000000-0000-0000-0091-000000000043}, !- Handle Space Function Office open plan Thermostat 35, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000044}, !- Handle + {00000000-0000-0000-0091-000000000044}, !- Handle Space Function Office open plan Thermostat 36, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000045}, !- Handle + {00000000-0000-0000-0091-000000000045}, !- Handle Space Function Office open plan Thermostat 37, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000046}, !- Handle + {00000000-0000-0000-0091-000000000046}, !- Handle Space Function Office open plan Thermostat 38, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000047}, !- Handle + {00000000-0000-0000-0091-000000000047}, !- Handle Space Function Office open plan Thermostat 39, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000048}, !- Handle + {00000000-0000-0000-0091-000000000048}, !- Handle Space Function Office open plan Thermostat 4, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000049}, !- Handle + {00000000-0000-0000-0091-000000000049}, !- Handle Space Function Office open plan Thermostat 40, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000050}, !- Handle + {00000000-0000-0000-0091-000000000050}, !- Handle Space Function Office open plan Thermostat 41, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000051}, !- Handle + {00000000-0000-0000-0091-000000000051}, !- Handle Space Function Office open plan Thermostat 42, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000052}, !- Handle + {00000000-0000-0000-0091-000000000052}, !- Handle Space Function Office open plan Thermostat 43, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000053}, !- Handle + {00000000-0000-0000-0091-000000000053}, !- Handle Space Function Office open plan Thermostat 44, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000054}, !- Handle + {00000000-0000-0000-0091-000000000054}, !- Handle Space Function Office open plan Thermostat 45, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000055}, !- Handle + {00000000-0000-0000-0091-000000000055}, !- Handle Space Function Office open plan Thermostat 46, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000056}, !- Handle + {00000000-0000-0000-0091-000000000056}, !- Handle Space Function Office open plan Thermostat 47, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000057}, !- Handle + {00000000-0000-0000-0091-000000000057}, !- Handle Space Function Office open plan Thermostat 48, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000058}, !- Handle + {00000000-0000-0000-0091-000000000058}, !- Handle Space Function Office open plan Thermostat 49, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000059}, !- Handle + {00000000-0000-0000-0091-000000000059}, !- Handle Space Function Office open plan Thermostat 5, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000060}, !- Handle + {00000000-0000-0000-0091-000000000060}, !- Handle Space Function Office open plan Thermostat 50, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000061}, !- Handle + {00000000-0000-0000-0091-000000000061}, !- Handle Space Function Office open plan Thermostat 51, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000062}, !- Handle + {00000000-0000-0000-0091-000000000062}, !- Handle Space Function Office open plan Thermostat 52, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000063}, !- Handle + {00000000-0000-0000-0091-000000000063}, !- Handle Space Function Office open plan Thermostat 53, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000064}, !- Handle + {00000000-0000-0000-0091-000000000064}, !- Handle Space Function Office open plan Thermostat 54, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000065}, !- Handle + {00000000-0000-0000-0091-000000000065}, !- Handle Space Function Office open plan Thermostat 55, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000066}, !- Handle + {00000000-0000-0000-0091-000000000066}, !- Handle Space Function Office open plan Thermostat 56, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000067}, !- Handle + {00000000-0000-0000-0091-000000000067}, !- Handle Space Function Office open plan Thermostat 57, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000068}, !- Handle + {00000000-0000-0000-0091-000000000068}, !- Handle Space Function Office open plan Thermostat 6, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000069}, !- Handle + {00000000-0000-0000-0091-000000000069}, !- Handle Space Function Office open plan Thermostat 7, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000070}, !- Handle + {00000000-0000-0000-0091-000000000070}, !- Handle Space Function Office open plan Thermostat 8, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000071}, !- Handle + {00000000-0000-0000-0091-000000000071}, !- Handle Space Function Office open plan Thermostat 9, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0087-000000000072}, !- Handle + {00000000-0000-0000-0091-000000000072}, !- Handle Space Function Office open plan Thermostat, !- Name - {00000000-0000-0000-0059-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0059-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0089-000000000001}, !- Handle + {00000000-0000-0000-0093-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle 1089gal Electricity Water Heater - 735kBtu/hr 1 Therm Eff, !- Name 4.12098554344306, !- Tank Volume {m3} - {00000000-0000-0000-0059-000000000019}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0063-000000000019}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -14168,7 +18104,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0059-000000000021}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0063-000000000024}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 0.00835199724525224, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -14178,8 +18114,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000155}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000156}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000323}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000324}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -14192,18 +18128,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0091-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle Core_bottom WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000172}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000173}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000340}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000341}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14211,13 +18147,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000002}, !- Handle + {00000000-0000-0000-0096-000000000002}, !- Handle Core_mid WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000176}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000177}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000344}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000345}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14225,13 +18161,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000003}, !- Handle + {00000000-0000-0000-0096-000000000003}, !- Handle Core_top WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0017-000000000180}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000181}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000348}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000349}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14239,13 +18175,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000004}, !- Handle + {00000000-0000-0000-0096-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0017-000000000184}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000185}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000352}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000353}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14253,13 +18189,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000005}, !- Handle + {00000000-0000-0000-0096-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000188}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000189}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000356}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000357}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14267,13 +18203,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000006}, !- Handle + {00000000-0000-0000-0096-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000192}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000193}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000360}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000361}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14281,13 +18217,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000007}, !- Handle + {00000000-0000-0000-0096-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0017-000000000196}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000197}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000364}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000365}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14295,13 +18231,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000008}, !- Handle + {00000000-0000-0000-0096-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000200}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000201}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000368}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000369}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14309,13 +18245,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000009}, !- Handle + {00000000-0000-0000-0096-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000204}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000205}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000372}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000373}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14323,13 +18259,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000010}, !- Handle + {00000000-0000-0000-0096-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000208}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000209}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000376}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000377}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14337,13 +18273,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000011}, !- Handle + {00000000-0000-0000-0096-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000213}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000380}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000381}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14351,13 +18287,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000012}, !- Handle + {00000000-0000-0000-0096-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000216}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000217}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000384}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000385}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14365,13 +18301,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000013}, !- Handle + {00000000-0000-0000-0096-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000220}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000221}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000388}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000389}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14379,13 +18315,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000014}, !- Handle + {00000000-0000-0000-0096-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000225}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000392}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000393}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14393,13 +18329,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000015}, !- Handle + {00000000-0000-0000-0096-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000228}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000229}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000396}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000397}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14407,13 +18343,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000016}, !- Handle + {00000000-0000-0000-0096-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000232}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000233}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000400}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000401}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14421,13 +18357,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000017}, !- Handle + {00000000-0000-0000-0096-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000236}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000237}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000404}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000405}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14435,13 +18371,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000018}, !- Handle + {00000000-0000-0000-0096-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0017-000000000240}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000241}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000408}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000409}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14449,13 +18385,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0092-000000000019}, !- Handle + {00000000-0000-0000-0096-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000244}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000245}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000412}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000413}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14463,314 +18399,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0093-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0097-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle Core_bottom Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0094-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000002}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000002}, !- Handle + {00000000-0000-0000-0097-000000000002}, !- Handle Core_mid Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0094-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000003}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000003}, !- Handle + {00000000-0000-0000-0097-000000000003}, !- Handle Core_top Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0094-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000004}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000004}, !- Handle + {00000000-0000-0000-0097-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0094-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000005}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000005}, !- Handle + {00000000-0000-0000-0097-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0094-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000006}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000006}, !- Handle + {00000000-0000-0000-0097-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0094-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000007}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000007}, !- Handle + {00000000-0000-0000-0097-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0094-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000008}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000008}, !- Handle + {00000000-0000-0000-0097-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000011}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000009}, !- Handle + {00000000-0000-0000-0097-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000012}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000010}, !- Handle + {00000000-0000-0000-0097-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000013}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000011}, !- Handle + {00000000-0000-0000-0097-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000014}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000012}, !- Handle + {00000000-0000-0000-0097-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000015}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000013}, !- Handle + {00000000-0000-0000-0097-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000016}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000014}, !- Handle + {00000000-0000-0000-0097-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000017}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000015}, !- Handle + {00000000-0000-0000-0097-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000018}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000016}, !- Handle + {00000000-0000-0000-0097-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000019}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000017}, !- Handle + {00000000-0000-0000-0097-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000020}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000018}, !- Handle + {00000000-0000-0000-0097-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0094-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000021}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0093-000000000019}, !- Handle + {00000000-0000-0000-0097-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0094-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0076-000000000022}, !- Space Name - {00000000-0000-0000-0059-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0098-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0063-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle Core_bottom 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000002}, !- Handle + {00000000-0000-0000-0098-000000000002}, !- Handle Core_mid 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000003}, !- Handle + {00000000-0000-0000-0098-000000000003}, !- Handle Core_top 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000004}, !- Handle + {00000000-0000-0000-0098-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.87303728009577e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000005}, !- Handle + {00000000-0000-0000-0098-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000006}, !- Handle + {00000000-0000-0000-0098-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000007}, !- Handle + {00000000-0000-0000-0098-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000008}, !- Handle + {00000000-0000-0000-0098-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000009}, !- Handle + {00000000-0000-0000-0098-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000010}, !- Handle + {00000000-0000-0000-0098-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000011}, !- Handle + {00000000-0000-0000-0098-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000012}, !- Handle + {00000000-0000-0000-0098-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000013}, !- Handle + {00000000-0000-0000-0098-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000014}, !- Handle + {00000000-0000-0000-0098-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000015}, !- Handle + {00000000-0000-0000-0098-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000016}, !- Handle + {00000000-0000-0000-0098-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000017}, !- Handle + {00000000-0000-0000-0098-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000018}, !- Handle + {00000000-0000-0000-0098-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0094-000000000019}, !- Handle + {00000000-0000-0000-0098-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0059-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0059-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0059-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0063-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0063-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0063-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0095-000000000001}, !- Handle + {00000000-0000-0000-0099-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -14786,69 +18722,195 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0096-000000000002}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Handle SimpleGlazing:U=0.173 SHGC=0.600, !- Name 1.73, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0096-000000000003}, !- Handle + {00000000-0000-0000-0100-000000000003}, !- Handle SimpleGlazing:U=0.241 SHGC=0.600, !- Name 2.41, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0101-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0102-000000000001}, !- Handle Zone HVAC Baseboard Convective Electric 1, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, - {00000000-0000-0000-0098-000000000002}, !- Handle + {00000000-0000-0000-0102-000000000002}, !- Handle + Zone HVAC Baseboard Convective Electric 10, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000003}, !- Handle + Zone HVAC Baseboard Convective Electric 11, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000004}, !- Handle + Zone HVAC Baseboard Convective Electric 12, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000005}, !- Handle + Zone HVAC Baseboard Convective Electric 13, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000006}, !- Handle + Zone HVAC Baseboard Convective Electric 14, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000007}, !- Handle + Zone HVAC Baseboard Convective Electric 15, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000008}, !- Handle + Zone HVAC Baseboard Convective Electric 16, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000009}, !- Handle + Zone HVAC Baseboard Convective Electric 17, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000010}, !- Handle + Zone HVAC Baseboard Convective Electric 18, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000011}, !- Handle + Zone HVAC Baseboard Convective Electric 19, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000012}, !- Handle Zone HVAC Baseboard Convective Electric 2, !- Name - {00000000-0000-0000-0056-000000000001}, !- Availability Schedule + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000013}, !- Handle + Zone HVAC Baseboard Convective Electric 20, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000014}, !- Handle + Zone HVAC Baseboard Convective Electric 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000015}, !- Handle + Zone HVAC Baseboard Convective Electric 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000016}, !- Handle + Zone HVAC Baseboard Convective Electric 5, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000017}, !- Handle + Zone HVAC Baseboard Convective Electric 6, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000018}, !- Handle + Zone HVAC Baseboard Convective Electric 7, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000019}, !- Handle + Zone HVAC Baseboard Convective Electric 8, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0102-000000000020}, !- Handle + Zone HVAC Baseboard Convective Electric 9, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0103-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000001}, !- Thermal Zone + {00000000-0000-0000-0090-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000002}, !- Handle + {00000000-0000-0000-0103-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000002}, !- Thermal Zone + {00000000-0000-0000-0090-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000003}, !- Handle + {00000000-0000-0000-0103-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000003}, !- Thermal Zone + {00000000-0000-0000-0090-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000004}, !- Handle + {00000000-0000-0000-0103-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000004}, !- Thermal Zone + {00000000-0000-0000-0090-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0098-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0102-000000000012}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -14860,119 +18922,299 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000005}, !- Handle + {00000000-0000-0000-0103-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000005}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000005}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000006}, !- Handle + {00000000-0000-0000-0103-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000006}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000006}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000017}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000007}, !- Handle + {00000000-0000-0000-0103-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000007}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000007}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000008}, !- Handle + {00000000-0000-0000-0103-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000008}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000008}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000018}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000009}, !- Handle + {00000000-0000-0000-0103-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000009}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000016}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000010}, !- Handle + {00000000-0000-0000-0103-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000010}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000019}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000011}, !- Handle + {00000000-0000-0000-0103-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000011}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000012}, !- Handle + {00000000-0000-0000-0103-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000012}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000013}, !- Handle + {00000000-0000-0000-0103-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000013}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000014}, !- Handle + {00000000-0000-0000-0103-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000014}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000020}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000015}, !- Handle + {00000000-0000-0000-0103-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000015}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000016}, !- Handle + {00000000-0000-0000-0103-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000016}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000017}, !- Handle + {00000000-0000-0000-0103-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000017}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000009}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000018}, !- Handle + {00000000-0000-0000-0103-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000018}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000010}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000019}, !- Handle + {00000000-0000-0000-0103-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000019}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000019}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000008}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000020}, !- Handle + {00000000-0000-0000-0103-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000020}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000020}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000011}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000021}, !- Handle + {00000000-0000-0000-0103-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000021}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000021}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000022}, !- Handle + {00000000-0000-0000-0103-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000022}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0090-000000000022}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0102-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0099-000000000023}, !- Handle + {00000000-0000-0000-0103-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0086-000000000023}, !- Thermal Zone + {00000000-0000-0000-0090-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0098-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0102-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm index c69b6a3383..0258ffd70a 100644 --- a/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/LargeOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0062-000000000023}, !- Object Name + {00000000-0000-0000-0066-000000000026}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 13.902183614624489, !- Feature Value 1 @@ -16,7 +16,7 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0062-000000000024}, !- Object Name + {00000000-0000-0000-0066-000000000030}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 39.198210559234802, !- Feature Value 1 @@ -32,18 +32,66 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle - {00000000-0000-0000-0013-000000000001}; !- Object Name + {00000000-0000-0000-0066-000000000027}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0066-000000000028}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle + {00000000-0000-0000-0066-000000000029}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 178.22004670547969, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 6, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000006}, !- Handle + {00000000-0000-0000-0013-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000007}, !- Handle {00000000-0000-0000-0013-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|, !- Name , !- Controller List Name - {00000000-0000-0000-0062-000000000023}, !- Availability Schedule - {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0066-000000000026}, !- Availability Schedule + {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name @@ -62,9 +110,75 @@ OS:AirLoopHVAC, OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name + , !- Controller List Name + {00000000-0000-0000-0066-000000000027}, !- Availability Schedule + {00000000-0000-0000-0009-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0020-000000000185}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0020-000000000188}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000187}, !- Demand Side Inlet Node A + {00000000-0000-0000-0020-000000000186}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0066-000000000028}, !- Availability Schedule + {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0020-000000000293}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0020-000000000296}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000295}, !- Demand Side Inlet Node A + {00000000-0000-0000-0020-000000000294}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000004}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000004}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000004}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3, !- Name + , !- Controller List Name + {00000000-0000-0000-0066-000000000029}, !- Availability Schedule + {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0020-000000000401}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0020-000000000404}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000403}, !- Demand Side Inlet Node A + {00000000-0000-0000-0020-000000000402}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000005}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000005}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000005}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name , !- Controller List Name - {00000000-0000-0000-0062-000000000024}, !- Availability Schedule + {00000000-0000-0000-0066-000000000030}, !- Availability Schedule {00000000-0000-0000-0009-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow @@ -89,8 +203,8 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0020-000000000084}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000289}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000290}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000613}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000614}, !- Relief Air Stream Node Name {00000000-0000-0000-0020-000000000083}; !- Return Air Stream Node Name OS:AirLoopHVAC:OutdoorAirSystem, @@ -100,10 +214,43 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0020-000000000166}, !- Mixed Air Node Name - {00000000-0000-0000-0020-000000000295}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0020-000000000296}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000619}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000620}, !- Relief Air Stream Node Name {00000000-0000-0000-0020-000000000170}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0025-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0020-000000000204}, !- Mixed Air Node Name + {00000000-0000-0000-0020-000000000625}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000626}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000208}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000004}, !- Handle + Air Loop HVAC Outdoor Air System 4, !- Name + {00000000-0000-0000-0025-000000000004}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0020-000000000312}, !- Mixed Air Node Name + {00000000-0000-0000-0020-000000000631}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000632}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000316}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000005}, !- Handle + Air Loop HVAC Outdoor Air System 5, !- Name + {00000000-0000-0000-0025-000000000005}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0020-000000000420}, !- Mixed Air Node Name + {00000000-0000-0000-0020-000000000637}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0020-000000000638}, !- Relief Air Stream Node Name + {00000000-0000-0000-0020-000000000424}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -116,6 +263,39 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0020-000000000153}, !- Outlet Node Name {00000000-0000-0000-0020-000000000181}; !- Inlet Node Name 1 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0020-000000000190}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000219}, !- Inlet Node Name 1 + {00000000-0000-0000-0020-000000000233}, !- Inlet Node Name 2 + {00000000-0000-0000-0020-000000000247}, !- Inlet Node Name 3 + {00000000-0000-0000-0020-000000000261}, !- Inlet Node Name 4 + {00000000-0000-0000-0020-000000000275}, !- Inlet Node Name 5 + {00000000-0000-0000-0020-000000000289}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000004}, !- Handle + Air Loop HVAC Zone Mixer 4, !- Name + {00000000-0000-0000-0020-000000000298}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000327}, !- Inlet Node Name 1 + {00000000-0000-0000-0020-000000000341}, !- Inlet Node Name 2 + {00000000-0000-0000-0020-000000000355}, !- Inlet Node Name 3 + {00000000-0000-0000-0020-000000000369}, !- Inlet Node Name 4 + {00000000-0000-0000-0020-000000000383}, !- Inlet Node Name 5 + {00000000-0000-0000-0020-000000000397}; !- Inlet Node Name 6 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000005}, !- Handle + Air Loop HVAC Zone Mixer 5, !- Name + {00000000-0000-0000-0020-000000000406}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000435}, !- Inlet Node Name 1 + {00000000-0000-0000-0020-000000000449}, !- Inlet Node Name 2 + {00000000-0000-0000-0020-000000000463}, !- Inlet Node Name 3 + {00000000-0000-0000-0020-000000000477}, !- Inlet Node Name 4 + {00000000-0000-0000-0020-000000000491}, !- Inlet Node Name 5 + {00000000-0000-0000-0020-000000000505}; !- Inlet Node Name 6 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -128,10 +308,43 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0020-000000000152}, !- Inlet Node Name {00000000-0000-0000-0020-000000000182}; !- Outlet Node Name 1 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0020-000000000189}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000220}, !- Outlet Node Name 1 + {00000000-0000-0000-0020-000000000234}, !- Outlet Node Name 2 + {00000000-0000-0000-0020-000000000248}, !- Outlet Node Name 3 + {00000000-0000-0000-0020-000000000262}, !- Outlet Node Name 4 + {00000000-0000-0000-0020-000000000276}, !- Outlet Node Name 5 + {00000000-0000-0000-0020-000000000290}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000004}, !- Handle + Air Loop HVAC Zone Splitter 4, !- Name + {00000000-0000-0000-0020-000000000297}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000328}, !- Outlet Node Name 1 + {00000000-0000-0000-0020-000000000342}, !- Outlet Node Name 2 + {00000000-0000-0000-0020-000000000356}, !- Outlet Node Name 3 + {00000000-0000-0000-0020-000000000370}, !- Outlet Node Name 4 + {00000000-0000-0000-0020-000000000384}, !- Outlet Node Name 5 + {00000000-0000-0000-0020-000000000398}; !- Outlet Node Name 6 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000005}, !- Handle + Air Loop HVAC Zone Splitter 5, !- Name + {00000000-0000-0000-0020-000000000405}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000436}, !- Outlet Node Name 1 + {00000000-0000-0000-0020-000000000450}, !- Outlet Node Name 2 + {00000000-0000-0000-0020-000000000464}, !- Outlet Node Name 3 + {00000000-0000-0000-0020-000000000478}, !- Outlet Node Name 4 + {00000000-0000-0000-0020-000000000492}, !- Outlet Node Name 5 + {00000000-0000-0000-0020-000000000506}; !- Outlet Node Name 6 + OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct Constant Volume No Reheat 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000093}, !- Air Inlet Node Name {00000000-0000-0000-0020-000000000094}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} @@ -139,14 +352,14 @@ OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0007-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0020-000000000183}, !- Air Inlet Node Name AutoSize, !- Maximum Air Flow Rate {m3/s} Constant, !- Zone Minimum Air Flow Input Method 0.3, !- Constant Minimum Air Flow Fraction 1.56735881028, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0018-000000000002}, !- Reheat Coil Name + {00000000-0000-0000-0018-000000000012}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0020-000000000184}, !- Air Outlet Node Name @@ -157,83 +370,518 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000001}, !- Handle - Availability Manager Night Cycle 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000001}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000002}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000003}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name - -OS:AvailabilityManager:NightCycle, - {00000000-0000-0000-0008-000000000002}, !- Handle - Availability Manager Night Cycle 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Applicability Schedule - , !- Fan Schedule - CycleOnAny, !- Control Type - 1, !- Thermostat Tolerance {deltaC} - , !- Cycling Run Time Control Type - 3600, !- Cycling Run Time {s} - {00000000-0000-0000-0048-000000000005}, !- Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000006}, !- Cooling Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000007}, !- Heating Control Zone or Zone List Name - {00000000-0000-0000-0048-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000357}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000005}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000358}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name - {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000371}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000372}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000002}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000385}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000386}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000399}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000400}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000004}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000437}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000010}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000438}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000005}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000451}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000011}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000452}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0009-000000000006}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList; !- Name +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000008}, !- Handle + Air Terminal Single Duct VAV Reheat 16, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000465}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000013}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000466}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:Boiler:HotWater, - {00000000-0000-0000-0010-000000000001}, !- Handle - Primary Boiler 323kBtu/hr 0.9 Thermal Eff, !- Name - NaturalGas, !- Fuel Type - 94575.1619916586, !- Nominal Capacity {W} - 0.9, !- Nominal Thermal Efficiency - , !- Efficiency Curve Temperature Evaluation Variable - {00000000-0000-0000-0029-000000000001}, !- Normalized Boiler Efficiency Curve Name - , !- Design Water Flow Rate {m3/s} - , !- Minimum Part Load Ratio - , !- Maximum Part Load Ratio - , !- Optimum Part Load Ratio - {00000000-0000-0000-0020-000000000058}, !- Boiler Water Inlet Node Name - {00000000-0000-0000-0020-000000000059}, !- Boiler Water Outlet Node Name - 99, !- Water Outlet Upper Temperature Limit {C} - ConstantFlow, !- Boiler Flow Mode - 0, !- On Cycle Parasitic Electric Load {W} - 0, !- Off Cycle Parasitic Fuel Load {W} - 1, !- Sizing Factor - General; !- End-Use Subcategory +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000009}, !- Handle + Air Terminal Single Duct VAV Reheat 17, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000479}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000014}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000480}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air -OS:Boiler:HotWater, - {00000000-0000-0000-0010-000000000002}, !- Handle +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000010}, !- Handle + Air Terminal Single Duct VAV Reheat 18, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000493}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000015}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000494}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000011}, !- Handle + Air Terminal Single Duct VAV Reheat 19, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000507}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000016}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000508}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000221}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000018}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000222}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000235}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000019}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000236}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000249}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268393776, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000020}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000250}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000263}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000021}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000264}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000016}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000277}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.6268256708, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000022}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000278}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000017}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000291}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.40395029868, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000023}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000292}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000018}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000329}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 4.99224091904, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000003}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000330}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0007-000000000019}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0020-000000000343}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.07240548384, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0018-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000344}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000001}, !- Handle + Availability Manager Night Cycle 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0052-000000000001}, !- Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000002}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000003}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0052-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0052-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000004}, !- Handle + Availability Manager Night Cycle 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0052-000000000013}, !- Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000014}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000015}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000016}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0008-000000000005}, !- Handle + Availability Manager Night Cycle 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0052-000000000017}, !- Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000018}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000019}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0052-000000000020}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0008-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0008-000000000003}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000003}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name + {00000000-0000-0000-0008-000000000004}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000004}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name + {00000000-0000-0000-0008-000000000005}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000005}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0008-000000000001}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000007}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000008}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0009-000000000009}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:Boiler:HotWater, + {00000000-0000-0000-0010-000000000001}, !- Handle + Primary Boiler 8382kBtu/hr 0.9 Combustion Eff, !- Name + NaturalGas, !- Fuel Type + 2456409.84259427, !- Nominal Capacity {W} + 0.893, !- Nominal Thermal Efficiency + , !- Efficiency Curve Temperature Evaluation Variable + {00000000-0000-0000-0029-000000000001}, !- Normalized Boiler Efficiency Curve Name + , !- Design Water Flow Rate {m3/s} + 0.25, !- Minimum Part Load Ratio + , !- Maximum Part Load Ratio + , !- Optimum Part Load Ratio + {00000000-0000-0000-0020-000000000058}, !- Boiler Water Inlet Node Name + {00000000-0000-0000-0020-000000000059}, !- Boiler Water Outlet Node Name + 99, !- Water Outlet Upper Temperature Limit {C} + LeavingSetpointModulated, !- Boiler Flow Mode + 0, !- On Cycle Parasitic Electric Load {W} + 0, !- Off Cycle Parasitic Fuel Load {W} + 1, !- Sizing Factor + General; !- End-Use Subcategory + +OS:Boiler:HotWater, + {00000000-0000-0000-0010-000000000002}, !- Handle Secondary Boiler 0kBtu/hr 0.9 AFUE, !- Name NaturalGas, !- Fuel Type 0.001, !- Nominal Capacity {W} @@ -277,7 +925,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000023}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000023}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -287,7 +935,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000024}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000024}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -297,7 +945,7 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000026}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000026}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:BuildingStory, @@ -307,14 +955,14 @@ OS:BuildingStory, , !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000025}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000025}, !- Group Rendering Name ; !- Nominal Floor to Ceiling Height {m} OS:Chiller:Electric:EIR, {00000000-0000-0000-0013-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton, !- Name - 14417.1813010444, !- Reference Capacity {W} - 4.51476251604621, !- Reference COP {W/W} + Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton, !- Name + 1889395.58683074, !- Reference Capacity {W} + 6.0222602739726, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} @@ -356,9 +1004,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0028-000000000009}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000010}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0030-000000000007}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0028-000000000011}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000012}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0030-000000000008}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -393,8 +1041,8 @@ OS:ClimateZones, OS:Coil:Cooling:DX:SingleSpeed, {00000000-0000-0000-0015-000000000001}, !- Handle - CoilCoolingDXSingleSpeed_dx 115kBtu/hr 9.26EER, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + CoilCoolingDXSingleSpeed_dx 114kBtu/hr 9.26EER, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3.22027057931225, !- Rated COP {W/W} @@ -429,7 +1077,7 @@ OS:Coil:Cooling:DX:SingleSpeed, OS:Coil:Cooling:Water, {00000000-0000-0000-0016-000000000001}, !- Handle Coil Cooling Water 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- Design Water Flow Rate {m3/s} , !- Design Air Flow Rate {m3/s} , !- Design Inlet Water Temperature {C} @@ -444,31 +1092,85 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration -OS:Coil:Heating:Gas, - {00000000-0000-0000-0017-000000000001}, !- Handle - Coil Heating Gas 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.81, !- Gas Burner Efficiency - AutoSize, !- Nominal Capacity {W} - {00000000-0000-0000-0020-000000000082}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000079}, !- Air Outlet Node Name - , !- Temperature Setpoint Node Name - 0, !- On Cycle Parasitic Electric Load {W} - {00000000-0000-0000-0029-000000000004}, !- Part Load Fraction Correlation Curve Name - 0; !- Off Cycle Parasitic Gas Load {W} +OS:Coil:Cooling:Water, + {00000000-0000-0000-0016-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0020-000000000196}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000197}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000205}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000202}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration -OS:Coil:Heating:Water, - {00000000-0000-0000-0018-000000000001}, !- Handle - Coil Heating Water 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - , !- U-Factor Times Area Value {W/K} - , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000155}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000156}, !- Water Outlet Node Name - {00000000-0000-0000-0020-000000000165}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000162}, !- Air Outlet Node Name - , !- Performance Input Method - , !- Rated Capacity {W} +OS:Coil:Cooling:Water, + {00000000-0000-0000-0016-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0020-000000000304}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000305}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000313}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000310}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0016-000000000004}, !- Handle + Coil Cooling Water 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0020-000000000412}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000413}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000421}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000418}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Heating:Gas, + {00000000-0000-0000-0017-000000000001}, !- Handle + Coil Heating Gas 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.81, !- Gas Burner Efficiency + AutoSize, !- Nominal Capacity {W} + {00000000-0000-0000-0020-000000000082}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000079}, !- Air Outlet Node Name + , !- Temperature Setpoint Node Name + 0, !- On Cycle Parasitic Electric Load {W} + {00000000-0000-0000-0029-000000000004}, !- Part Load Fraction Correlation Curve Name + 0; !- Off Cycle Parasitic Gas Load {W} + +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000001}, !- Handle + Coil Heating Water 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000155}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000156}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000165}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000162}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -477,450 +1179,1062 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0018-000000000002}, !- Handle - Coil Heating Water 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + Coil Heating Water 10, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - {00000000-0000-0000-0020-000000000172}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000173}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000300}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000301}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000311}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000308}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000003}, !- Handle + Coil Heating Water 11, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000318}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000319}, !- Water Outlet Node Name , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 10239.3805503845, !- Rated Capacity {W} + 439554.281616211, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} , !- Rated Outlet Air Temperature {C} ; !- Rated Ratio for Air and Water Convection -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000001}, !- Handle - Coil Heating Water Baseboard 1, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000004}, !- Handle + Coil Heating Water 12, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000086}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000087}; !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000332}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000333}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 27241.1902427673, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Coil:Heating:Water:Baseboard, - {00000000-0000-0000-0019-000000000002}, !- Handle - Coil Heating Water Baseboard 2, !- Name - HeatingDesignCapacity, !- Heating Design Capacity Method - autosize, !- Heating Design Capacity {W} - 0, !- Heating Design Capacity Per Floor Area {W/m2} - 0.8, !- Fraction of Autosized Heating Design Capacity +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000005}, !- Handle + Coil Heating Water 13, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} - , !- Convergence Tolerance - {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000177}; !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000346}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000347}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 228709.210968018, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000001}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000006}, !- Handle + Coil Heating Water 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000360}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000361}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 198246.10748291, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000002}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000007}, !- Handle + Coil Heating Water 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000374}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000375}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 97192.5842285156, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000003}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000008}, !- Handle + Coil Heating Water 16, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000388}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000389}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 210911.380004883, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000004}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000009}, !- Handle + Coil Heating Water 17, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000408}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000409}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000419}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000416}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000005}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000010}, !- Handle + Coil Heating Water 18, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000426}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000427}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 43752.7582168579, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000006}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000011}, !- Handle + Coil Heating Water 19, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000440}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000441}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 2747.42392301559, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000007}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000012}, !- Handle + Coil Heating Water 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000172}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000173}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 6004.63063716888, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000008}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000013}, !- Handle + Coil Heating Water 20, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000454}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000455}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 22545.1478004456, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000009}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000014}, !- Handle + Coil Heating Water 21, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000468}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000469}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 19216.4242744446, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000010}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0020-000000000011}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000015}, !- Handle + Coil Heating Water 22, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000482}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000483}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 11536.5702152252, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000012}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000016}, !- Handle + Coil Heating Water 23, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000496}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000497}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 21139.2771720886, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000013}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000017}, !- Handle + Coil Heating Water 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000192}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000193}, !- Water Outlet Node Name + {00000000-0000-0000-0020-000000000203}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000200}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000014}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000018}, !- Handle + Coil Heating Water 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000210}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000211}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 27449.1485595703, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000015}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000019}, !- Handle + Coil Heating Water 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000224}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000225}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 2077.9649913311, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000016}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000020}, !- Handle + Coil Heating Water 6, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000238}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000239}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 15907.886838913, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000017}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000021}, !- Handle + Coil Heating Water 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000252}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000253}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 13996.6197967529, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000018}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000022}, !- Handle + Coil Heating Water 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000266}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000267}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 6564.07399177551, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000019}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water, + {00000000-0000-0000-0018-000000000023}, !- Handle + Coil Heating Water 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0020-000000000280}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000281}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 15649.9596118927, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection -OS:Connection, - {00000000-0000-0000-0020-000000000020}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000001}, !- Handle + Coil Heating Water Baseboard 1, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000086}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000087}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000021}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000002}, !- Handle + Coil Heating Water Baseboard 10, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000336}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000337}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000022}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000003}, !- Handle + Coil Heating Water Baseboard 11, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000350}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000351}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000023}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000004}, !- Handle + Coil Heating Water Baseboard 12, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000364}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000365}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000024}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000013}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000005}, !- Handle + Coil Heating Water Baseboard 13, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000378}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000379}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000025}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000003}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000006}, !- Handle + Coil Heating Water Baseboard 14, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000392}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000393}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000026}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000025}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000007}, !- Handle + Coil Heating Water Baseboard 15, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000430}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000431}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0020-000000000027}, !- Handle - {00000000-0000-0000-0090-000000000003}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000005}, !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000008}, !- Handle + Coil Heating Water Baseboard 16, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000444}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000445}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000009}, !- Handle + Coil Heating Water Baseboard 17, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000458}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000459}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000010}, !- Handle + Coil Heating Water Baseboard 18, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000472}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000473}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000011}, !- Handle + Coil Heating Water Baseboard 19, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000486}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000487}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000012}, !- Handle + Coil Heating Water Baseboard 2, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000176}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000177}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000013}, !- Handle + Coil Heating Water Baseboard 20, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000500}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000501}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000014}, !- Handle + Coil Heating Water Baseboard 3, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000214}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000215}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000015}, !- Handle + Coil Heating Water Baseboard 4, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000228}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000229}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000016}, !- Handle + Coil Heating Water Baseboard 5, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000242}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000243}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000017}, !- Handle + Coil Heating Water Baseboard 6, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000256}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000257}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000018}, !- Handle + Coil Heating Water Baseboard 7, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000270}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000271}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000019}, !- Handle + Coil Heating Water Baseboard 8, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000284}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000285}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0019-000000000020}, !- Handle + Coil Heating Water Baseboard 9, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0020-000000000322}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000323}; !- Water Outlet Node Name OS:Connection, - {00000000-0000-0000-0020-000000000028}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- Source Object + {00000000-0000-0000-0020-000000000001}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000019}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000029}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- Source Object + {00000000-0000-0000-0020-000000000002}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000020}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000030}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- Source Object + {00000000-0000-0000-0020-000000000003}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000008}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000031}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- Source Object + {00000000-0000-0000-0020-000000000004}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000009}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000032}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- Source Object + {00000000-0000-0000-0020-000000000005}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000021}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000033}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- Source Object + {00000000-0000-0000-0020-000000000006}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000014}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000034}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- Source Object + {00000000-0000-0000-0020-000000000007}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000022}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000035}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- Source Object + {00000000-0000-0000-0020-000000000008}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000015}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000036}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- Source Object + {00000000-0000-0000-0020-000000000009}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000007}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000037}, !- Handle - {00000000-0000-0000-0090-000000000002}, !- Source Object + {00000000-0000-0000-0020-000000000010}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000004}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000038}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- Source Object + {00000000-0000-0000-0020-000000000011}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000010}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000039}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- Source Object + {00000000-0000-0000-0020-000000000012}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000023}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000040}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- Source Object + {00000000-0000-0000-0020-000000000013}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000016}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000041}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- Source Object + {00000000-0000-0000-0020-000000000014}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000024}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000042}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- Source Object + {00000000-0000-0000-0020-000000000015}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000017}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000043}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- Source Object + {00000000-0000-0000-0020-000000000016}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000011}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000044}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- Source Object + {00000000-0000-0000-0020-000000000017}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000018}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000045}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- Source Object + {00000000-0000-0000-0020-000000000018}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000012}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000046}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- Source Object + {00000000-0000-0000-0020-000000000019}, !- Handle + , !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000133}, !- Target Object + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000047}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0049-000000000070}, !- Target Object + {00000000-0000-0000-0020-000000000020}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000048}, !- Handle - {00000000-0000-0000-0022-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000116}, !- Target Object + {00000000-0000-0000-0020-000000000021}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000049}, !- Handle - {00000000-0000-0000-0049-000000000071}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000003}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0020-000000000022}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000050}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000068}, !- Target Object + {00000000-0000-0000-0020-000000000023}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000051}, !- Handle - {00000000-0000-0000-0049-000000000068}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0022-000000000002}, !- Target Object + {00000000-0000-0000-0020-000000000024}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000052}, !- Handle - {00000000-0000-0000-0022-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000043}, !- Target Object + {00000000-0000-0000-0020-000000000025}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000053}, !- Handle - {00000000-0000-0000-0021-000000000002}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000069}, !- Target Object + {00000000-0000-0000-0020-000000000026}, !- Handle + {00000000-0000-0000-0094-000000000022}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000054}, !- Handle - {00000000-0000-0000-0049-000000000069}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000003}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0020-000000000027}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000005}, !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000055}, !- Handle - {00000000-0000-0000-0049-000000000070}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0057-000000000001}, !- Target Object + {00000000-0000-0000-0020-000000000028}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0020-000000000056}, !- Handle - {00000000-0000-0000-0057-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000122}, !- Target Object + {00000000-0000-0000-0020-000000000029}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000033}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000030}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000031}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000011}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000032}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000035}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000033}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000021}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000034}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000035}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000023}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000036}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000037}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000038}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000039}, !- Handle + {00000000-0000-0000-0094-000000000020}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000039}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000040}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000025}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000041}, !- Handle + {00000000-0000-0000-0094-000000000021}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000041}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000042}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000027}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000043}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000015}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000044}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000029}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000045}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000017}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000046}, !- Handle + {00000000-0000-0000-0094-000000000023}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000280}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000047}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0053-000000000214}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000048}, !- Handle + {00000000-0000-0000-0022-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000260}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000049}, !- Handle + {00000000-0000-0000-0053-000000000215}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000003}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000050}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000212}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000051}, !- Handle + {00000000-0000-0000-0053-000000000212}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0022-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000052}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000151}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000053}, !- Handle + {00000000-0000-0000-0021-000000000002}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000213}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000054}, !- Handle + {00000000-0000-0000-0053-000000000213}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000003}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000055}, !- Handle + {00000000-0000-0000-0053-000000000214}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0061-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000056}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000266}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000057}, !- Handle - {00000000-0000-0000-0049-000000000122}, !- Source Object + {00000000-0000-0000-0053-000000000266}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000058}, !- Handle - {00000000-0000-0000-0049-000000000116}, !- Source Object + {00000000-0000-0000-0053-000000000260}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000001}, !- Target Object 11; !- Inlet Port @@ -929,12 +2243,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000059}, !- Handle {00000000-0000-0000-0010-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000117}, !- Target Object + {00000000-0000-0000-0053-000000000261}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000060}, !- Handle - {00000000-0000-0000-0049-000000000117}, !- Source Object + {00000000-0000-0000-0053-000000000261}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 3; !- Inlet Port @@ -943,12 +2257,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000061}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000125}, !- Target Object + {00000000-0000-0000-0053-000000000269}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000062}, !- Handle - {00000000-0000-0000-0049-000000000125}, !- Source Object + {00000000-0000-0000-0053-000000000269}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0010-000000000002}, !- Target Object 11; !- Inlet Port @@ -957,12 +2271,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000063}, !- Handle {00000000-0000-0000-0010-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000126}, !- Target Object + {00000000-0000-0000-0053-000000000270}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000064}, !- Handle - {00000000-0000-0000-0049-000000000126}, !- Source Object + {00000000-0000-0000-0053-000000000270}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 4; !- Inlet Port @@ -971,26 +2285,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000065}, !- Handle {00000000-0000-0000-0022-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000101}, !- Target Object + {00000000-0000-0000-0053-000000000245}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000066}, !- Handle - {00000000-0000-0000-0049-000000000101}, !- Source Object + {00000000-0000-0000-0053-000000000245}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000001}, !- Target Object + {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000067}, !- Handle - {00000000-0000-0000-0053-000000000001}, !- Source Object + {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000102}, !- Target Object + {00000000-0000-0000-0053-000000000246}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000068}, !- Handle - {00000000-0000-0000-0049-000000000102}, !- Source Object + {00000000-0000-0000-0053-000000000246}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000001}, !- Target Object 5; !- Inlet Port @@ -999,33 +2313,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000069}, !- Handle {00000000-0000-0000-0021-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000104}, !- Target Object + {00000000-0000-0000-0053-000000000248}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000070}, !- Handle - {00000000-0000-0000-0049-000000000104}, !- Source Object + {00000000-0000-0000-0053-000000000248}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000003}, !- Target Object + {00000000-0000-0000-0057-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000071}, !- Handle - {00000000-0000-0000-0053-000000000003}, !- Source Object + {00000000-0000-0000-0057-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000071}, !- Target Object + {00000000-0000-0000-0053-000000000215}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000072}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000139}, !- Target Object + {00000000-0000-0000-0053-000000000286}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000073}, !- Handle - {00000000-0000-0000-0049-000000000140}, !- Source Object + {00000000-0000-0000-0053-000000000287}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 12; !- Inlet Port @@ -1034,19 +2348,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000074}, !- Handle {00000000-0000-0000-0002-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000134}, !- Target Object + {00000000-0000-0000-0053-000000000281}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000075}, !- Handle - {00000000-0000-0000-0049-000000000135}, !- Source Object + {00000000-0000-0000-0053-000000000282}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0002-000000000001}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000076}, !- Handle - {00000000-0000-0000-0049-000000000134}, !- Source Object + {00000000-0000-0000-0053-000000000281}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -1055,47 +2369,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000077}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000135}, !- Target Object + {00000000-0000-0000-0053-000000000282}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000078}, !- Handle - {00000000-0000-0000-0039-000000000001}, !- Source Object + {00000000-0000-0000-0043-000000000001}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000140}, !- Target Object + {00000000-0000-0000-0053-000000000287}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000079}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000037}, !- Target Object + {00000000-0000-0000-0053-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000080}, !- Handle - {00000000-0000-0000-0049-000000000037}, !- Source Object + {00000000-0000-0000-0053-000000000100}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000001}, !- Target Object + {00000000-0000-0000-0043-000000000001}, !- Target Object 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000081}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0049-000000000047}, !- Target Object + {00000000-0000-0000-0053-000000000191}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000082}, !- Handle - {00000000-0000-0000-0049-000000000047}, !- Source Object + {00000000-0000-0000-0053-000000000191}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000083}, !- Handle - {00000000-0000-0000-0049-000000000139}, !- Source Object + {00000000-0000-0000-0053-000000000286}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 8; !- Inlet Port @@ -1104,19 +2418,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000084}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000136}, !- Target Object + {00000000-0000-0000-0053-000000000283}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000085}, !- Handle - {00000000-0000-0000-0049-000000000136}, !- Source Object + {00000000-0000-0000-0053-000000000283}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000086}, !- Handle - {00000000-0000-0000-0049-000000000043}, !- Source Object + {00000000-0000-0000-0053-000000000151}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 9; !- Inlet Port @@ -1125,33 +2439,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000087}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0049-000000000044}, !- Target Object + {00000000-0000-0000-0053-000000000152}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000088}, !- Handle - {00000000-0000-0000-0049-000000000044}, !- Source Object + {00000000-0000-0000-0053-000000000152}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000089}, !- Handle - {00000000-0000-0000-0049-000000000027}, !- Source Object + {00000000-0000-0000-0053-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000067}, !- Target Object + {00000000-0000-0000-0059-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000090}, !- Handle - {00000000-0000-0000-0055-000000000069}, !- Source Object + {00000000-0000-0000-0059-000000000069}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000132}, !- Target Object + {00000000-0000-0000-0053-000000000279}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000091}, !- Handle - {00000000-0000-0000-0049-000000000132}, !- Source Object + {00000000-0000-0000-0053-000000000279}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000001}, !- Target Object 3; !- Inlet Port @@ -1160,12 +2474,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000092}, !- Handle {00000000-0000-0000-0005-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000026}, !- Target Object + {00000000-0000-0000-0053-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000093}, !- Handle - {00000000-0000-0000-0049-000000000026}, !- Source Object + {00000000-0000-0000-0053-000000000044}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0006-000000000001}, !- Target Object 3; !- Inlet Port @@ -1174,40 +2488,40 @@ OS:Connection, {00000000-0000-0000-0020-000000000094}, !- Handle {00000000-0000-0000-0006-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000027}, !- Target Object + {00000000-0000-0000-0053-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000095}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Source Object + {00000000-0000-0000-0058-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000032}, !- Target Object + {00000000-0000-0000-0053-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000096}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000120}, !- Target Object + {00000000-0000-0000-0053-000000000264}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000097}, !- Handle - {00000000-0000-0000-0049-000000000033}, !- Source Object + {00000000-0000-0000-0053-000000000087}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000001}, !- Target Object + {00000000-0000-0000-0058-000000000001}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000098}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Source Object + {00000000-0000-0000-0058-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000030}, !- Target Object + {00000000-0000-0000-0053-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000099}, !- Handle - {00000000-0000-0000-0049-000000000030}, !- Source Object + {00000000-0000-0000-0053-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000004}, !- Target Object 2; !- Inlet Port @@ -1216,47 +2530,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000100}, !- Handle {00000000-0000-0000-0022-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000034}, !- Target Object + {00000000-0000-0000-0053-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000101}, !- Handle {00000000-0000-0000-0021-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000031}, !- Target Object + {00000000-0000-0000-0053-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000102}, !- Handle - {00000000-0000-0000-0049-000000000031}, !- Source Object + {00000000-0000-0000-0053-000000000085}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000001}, !- Target Object + {00000000-0000-0000-0058-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000103}, !- Handle - {00000000-0000-0000-0049-000000000032}, !- Source Object + {00000000-0000-0000-0053-000000000086}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000002}, !- Target Object + {00000000-0000-0000-0061-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000104}, !- Handle - {00000000-0000-0000-0057-000000000002}, !- Source Object + {00000000-0000-0000-0061-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000123}, !- Target Object + {00000000-0000-0000-0053-000000000267}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000105}, !- Handle - {00000000-0000-0000-0049-000000000123}, !- Source Object + {00000000-0000-0000-0053-000000000267}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000106}, !- Handle - {00000000-0000-0000-0049-000000000120}, !- Source Object + {00000000-0000-0000-0053-000000000264}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 15; !- Inlet Port @@ -1265,12 +2579,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000107}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000121}, !- Target Object + {00000000-0000-0000-0053-000000000265}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000108}, !- Handle - {00000000-0000-0000-0049-000000000121}, !- Source Object + {00000000-0000-0000-0053-000000000265}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 3; !- Inlet Port @@ -1279,12 +2593,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000109}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000129}, !- Target Object + {00000000-0000-0000-0053-000000000273}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000110}, !- Handle - {00000000-0000-0000-0049-000000000129}, !- Source Object + {00000000-0000-0000-0053-000000000273}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 15; !- Inlet Port @@ -1293,12 +2607,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000111}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000130}, !- Target Object + {00000000-0000-0000-0053-000000000274}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000112}, !- Handle - {00000000-0000-0000-0049-000000000130}, !- Source Object + {00000000-0000-0000-0053-000000000274}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 4; !- Inlet Port @@ -1307,26 +2621,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000113}, !- Handle {00000000-0000-0000-0022-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000105}, !- Target Object + {00000000-0000-0000-0053-000000000249}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000114}, !- Handle - {00000000-0000-0000-0049-000000000105}, !- Source Object + {00000000-0000-0000-0053-000000000249}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000004}, !- Target Object + {00000000-0000-0000-0057-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000115}, !- Handle - {00000000-0000-0000-0053-000000000004}, !- Source Object + {00000000-0000-0000-0057-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000106}, !- Target Object + {00000000-0000-0000-0053-000000000250}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000116}, !- Handle - {00000000-0000-0000-0049-000000000106}, !- Source Object + {00000000-0000-0000-0053-000000000250}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000003}, !- Target Object 5; !- Inlet Port @@ -1335,54 +2649,54 @@ OS:Connection, {00000000-0000-0000-0020-000000000117}, !- Handle {00000000-0000-0000-0021-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000107}, !- Target Object + {00000000-0000-0000-0053-000000000251}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000118}, !- Handle - {00000000-0000-0000-0049-000000000107}, !- Source Object + {00000000-0000-0000-0053-000000000251}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000005}, !- Target Object + {00000000-0000-0000-0057-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000119}, !- Handle - {00000000-0000-0000-0053-000000000005}, !- Source Object + {00000000-0000-0000-0057-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000033}, !- Target Object + {00000000-0000-0000-0053-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000120}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Source Object + {00000000-0000-0000-0058-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000050}, !- Target Object + {00000000-0000-0000-0053-000000000194}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000121}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000052}, !- Target Object + {00000000-0000-0000-0053-000000000196}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000122}, !- Handle - {00000000-0000-0000-0049-000000000051}, !- Source Object + {00000000-0000-0000-0053-000000000195}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000002}, !- Target Object + {00000000-0000-0000-0058-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000123}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Source Object + {00000000-0000-0000-0058-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000048}, !- Target Object + {00000000-0000-0000-0053-000000000192}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000124}, !- Handle - {00000000-0000-0000-0049-000000000048}, !- Source Object + {00000000-0000-0000-0053-000000000192}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000006}, !- Target Object 2; !- Inlet Port @@ -1391,47 +2705,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000125}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000118}, !- Target Object + {00000000-0000-0000-0053-000000000262}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000126}, !- Handle {00000000-0000-0000-0021-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000049}, !- Target Object + {00000000-0000-0000-0053-000000000193}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000127}, !- Handle - {00000000-0000-0000-0049-000000000049}, !- Source Object + {00000000-0000-0000-0053-000000000193}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000002}, !- Target Object + {00000000-0000-0000-0058-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000128}, !- Handle - {00000000-0000-0000-0049-000000000050}, !- Source Object + {00000000-0000-0000-0053-000000000194}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000003}, !- Target Object + {00000000-0000-0000-0061-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000129}, !- Handle - {00000000-0000-0000-0057-000000000003}, !- Source Object + {00000000-0000-0000-0061-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000124}, !- Target Object + {00000000-0000-0000-0053-000000000268}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000130}, !- Handle - {00000000-0000-0000-0049-000000000124}, !- Source Object + {00000000-0000-0000-0053-000000000268}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0022-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000131}, !- Handle - {00000000-0000-0000-0049-000000000052}, !- Source Object + {00000000-0000-0000-0053-000000000196}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0027-000000000001}, !- Target Object 2; !- Inlet Port @@ -1440,12 +2754,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000132}, !- Handle {00000000-0000-0000-0027-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000053}, !- Target Object + {00000000-0000-0000-0053-000000000197}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000133}, !- Handle - {00000000-0000-0000-0049-000000000053}, !- Source Object + {00000000-0000-0000-0053-000000000197}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 3; !- Inlet Port @@ -1454,26 +2768,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000134}, !- Handle {00000000-0000-0000-0022-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000108}, !- Target Object + {00000000-0000-0000-0053-000000000252}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000135}, !- Handle - {00000000-0000-0000-0049-000000000108}, !- Source Object + {00000000-0000-0000-0053-000000000252}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000006}, !- Target Object + {00000000-0000-0000-0057-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000136}, !- Handle - {00000000-0000-0000-0053-000000000006}, !- Source Object + {00000000-0000-0000-0057-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000109}, !- Target Object + {00000000-0000-0000-0053-000000000253}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000137}, !- Handle - {00000000-0000-0000-0049-000000000109}, !- Source Object + {00000000-0000-0000-0053-000000000253}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000005}, !- Target Object 4; !- Inlet Port @@ -1482,26 +2796,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000138}, !- Handle {00000000-0000-0000-0021-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000110}, !- Target Object + {00000000-0000-0000-0053-000000000254}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000139}, !- Handle - {00000000-0000-0000-0049-000000000110}, !- Source Object + {00000000-0000-0000-0053-000000000254}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000007}, !- Target Object + {00000000-0000-0000-0057-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000140}, !- Handle - {00000000-0000-0000-0053-000000000007}, !- Source Object + {00000000-0000-0000-0057-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000051}, !- Target Object + {00000000-0000-0000-0053-000000000195}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000141}, !- Handle - {00000000-0000-0000-0049-000000000118}, !- Source Object + {00000000-0000-0000-0053-000000000262}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 17; !- Inlet Port @@ -1510,12 +2824,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000142}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0049-000000000119}, !- Target Object + {00000000-0000-0000-0053-000000000263}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000143}, !- Handle - {00000000-0000-0000-0049-000000000119}, !- Source Object + {00000000-0000-0000-0053-000000000263}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 3; !- Inlet Port @@ -1524,12 +2838,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000144}, !- Handle {00000000-0000-0000-0022-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000127}, !- Target Object + {00000000-0000-0000-0053-000000000271}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000145}, !- Handle - {00000000-0000-0000-0049-000000000127}, !- Source Object + {00000000-0000-0000-0053-000000000271}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000002}, !- Target Object 17; !- Inlet Port @@ -1538,47 +2852,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000146}, !- Handle {00000000-0000-0000-0013-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0049-000000000128}, !- Target Object + {00000000-0000-0000-0053-000000000272}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000147}, !- Handle - {00000000-0000-0000-0049-000000000128}, !- Source Object + {00000000-0000-0000-0053-000000000272}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000148}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000148}, !- Target Object + {00000000-0000-0000-0053-000000000316}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000149}, !- Handle - {00000000-0000-0000-0049-000000000149}, !- Source Object + {00000000-0000-0000-0053-000000000317}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000150}, !- Handle - {00000000-0000-0000-0002-000000000002}, !- Source Object + {00000000-0000-0000-0002-000000000005}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000143}, !- Target Object + {00000000-0000-0000-0053-000000000311}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000151}, !- Handle - {00000000-0000-0000-0049-000000000144}, !- Source Object + {00000000-0000-0000-0053-000000000312}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000002}, !- Target Object + {00000000-0000-0000-0002-000000000005}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000152}, !- Handle - {00000000-0000-0000-0049-000000000143}, !- Source Object + {00000000-0000-0000-0053-000000000311}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000002}, !- Target Object 2; !- Inlet Port @@ -1587,19 +2901,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000153}, !- Handle {00000000-0000-0000-0004-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000144}, !- Target Object + {00000000-0000-0000-0053-000000000312}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000154}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000038}, !- Target Object + {00000000-0000-0000-0053-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000155}, !- Handle - {00000000-0000-0000-0049-000000000038}, !- Source Object + {00000000-0000-0000-0053-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -1608,19 +2922,19 @@ OS:Connection, {00000000-0000-0000-0020-000000000156}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000040}, !- Target Object + {00000000-0000-0000-0053-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000157}, !- Handle - {00000000-0000-0000-0049-000000000040}, !- Source Object + {00000000-0000-0000-0053-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000158}, !- Handle - {00000000-0000-0000-0049-000000000034}, !- Source Object + {00000000-0000-0000-0053-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 10; !- Inlet Port @@ -1629,47 +2943,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000159}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000036}, !- Target Object + {00000000-0000-0000-0053-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000160}, !- Handle - {00000000-0000-0000-0049-000000000036}, !- Source Object + {00000000-0000-0000-0053-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000161}, !- Handle - {00000000-0000-0000-0040-000000000002}, !- Source Object + {00000000-0000-0000-0044-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000149}, !- Target Object + {00000000-0000-0000-0053-000000000317}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000162}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0049-000000000039}, !- Target Object + {00000000-0000-0000-0053-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000163}, !- Handle - {00000000-0000-0000-0049-000000000039}, !- Source Object + {00000000-0000-0000-0053-000000000102}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000002}, !- Target Object + {00000000-0000-0000-0044-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000164}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0049-000000000035}, !- Target Object + {00000000-0000-0000-0053-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000165}, !- Handle - {00000000-0000-0000-0049-000000000035}, !- Source Object + {00000000-0000-0000-0053-000000000089}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 7; !- Inlet Port @@ -1678,33 +2992,33 @@ OS:Connection, {00000000-0000-0000-0020-000000000166}, !- Handle {00000000-0000-0000-0003-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000145}, !- Target Object + {00000000-0000-0000-0053-000000000313}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000167}, !- Handle - {00000000-0000-0000-0049-000000000145}, !- Source Object + {00000000-0000-0000-0053-000000000313}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000168}, !- Handle - {00000000-0000-0000-0049-000000000148}, !- Source Object + {00000000-0000-0000-0053-000000000316}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0040-000000000001}, !- Target Object + {00000000-0000-0000-0044-000000000004}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000169}, !- Handle - {00000000-0000-0000-0040-000000000001}, !- Source Object + {00000000-0000-0000-0044-000000000004}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000131}, !- Target Object + {00000000-0000-0000-0053-000000000278}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000170}, !- Handle - {00000000-0000-0000-0049-000000000131}, !- Source Object + {00000000-0000-0000-0053-000000000278}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000002}, !- Target Object 8; !- Inlet Port @@ -1713,26 +3027,26 @@ OS:Connection, {00000000-0000-0000-0020-000000000171}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000041}, !- Target Object + {00000000-0000-0000-0053-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000172}, !- Handle - {00000000-0000-0000-0049-000000000041}, !- Source Object + {00000000-0000-0000-0053-000000000126}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0018-000000000002}, !- Target Object + {00000000-0000-0000-0018-000000000012}, !- Target Object 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000173}, !- Handle - {00000000-0000-0000-0018-000000000002}, !- Source Object + {00000000-0000-0000-0018-000000000012}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000042}, !- Target Object + {00000000-0000-0000-0053-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000174}, !- Handle - {00000000-0000-0000-0049-000000000042}, !- Source Object + {00000000-0000-0000-0053-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 5; !- Inlet Port @@ -1741,47 +3055,47 @@ OS:Connection, {00000000-0000-0000-0020-000000000175}, !- Handle {00000000-0000-0000-0022-000000000002}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000045}, !- Target Object + {00000000-0000-0000-0053-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000176}, !- Handle - {00000000-0000-0000-0049-000000000045}, !- Source Object + {00000000-0000-0000-0053-000000000173}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0019-000000000002}, !- Target Object + {00000000-0000-0000-0019-000000000012}, !- Target Object 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000177}, !- Handle - {00000000-0000-0000-0019-000000000002}, !- Source Object + {00000000-0000-0000-0019-000000000012}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0049-000000000046}, !- Target Object + {00000000-0000-0000-0053-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000178}, !- Handle - {00000000-0000-0000-0049-000000000046}, !- Source Object + {00000000-0000-0000-0053-000000000174}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0021-000000000002}, !- Target Object 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000179}, !- Handle - {00000000-0000-0000-0049-000000000029}, !- Source Object + {00000000-0000-0000-0053-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000037}, !- Target Object + {00000000-0000-0000-0059-000000000037}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000180}, !- Handle - {00000000-0000-0000-0055-000000000039}, !- Source Object + {00000000-0000-0000-0059-000000000039}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000006}, !- Target Object + {00000000-0000-0000-0053-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000181}, !- Handle - {00000000-0000-0000-0049-000000000006}, !- Source Object + {00000000-0000-0000-0053-000000000006}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0004-000000000002}, !- Target Object 3; !- Inlet Port @@ -1790,12 +3104,12 @@ OS:Connection, {00000000-0000-0000-0020-000000000182}, !- Handle {00000000-0000-0000-0005-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000028}, !- Target Object + {00000000-0000-0000-0053-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000183}, !- Handle - {00000000-0000-0000-0049-000000000028}, !- Source Object + {00000000-0000-0000-0053-000000000046}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0007-000000000001}, !- Target Object 3; !- Inlet Port @@ -1804,3375 +3118,7773 @@ OS:Connection, {00000000-0000-0000-0020-000000000184}, !- Handle {00000000-0000-0000-0007-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000029}, !- Target Object + {00000000-0000-0000-0053-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000185}, !- Handle - {00000000-0000-0000-0054-000000000004}, !- Source Object - 14, !- Outlet Port - {00000000-0000-0000-0049-000000000075}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0053-000000000295}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000186}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object + {00000000-0000-0000-0053-000000000296}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000187}, !- Handle - {00000000-0000-0000-0049-000000000076}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000004}, !- Target Object - 15; !- Inlet Port + {00000000-0000-0000-0002-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000290}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000188}, !- Handle - {00000000-0000-0000-0054-000000000004}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000073}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000291}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000189}, !- Handle - {00000000-0000-0000-0049-000000000073}, !- Source Object + {00000000-0000-0000-0053-000000000290}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0022-000000000008}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000190}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000113}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000291}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000191}, !- Handle - {00000000-0000-0000-0049-000000000074}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0054-000000000004}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0022-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000136}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000192}, !- Handle - {00000000-0000-0000-0049-000000000075}, !- Source Object + {00000000-0000-0000-0053-000000000136}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000017}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000193}, !- Handle - {00000000-0000-0000-0056-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000072}, !- Target Object + {00000000-0000-0000-0018-000000000017}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000138}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000194}, !- Handle - {00000000-0000-0000-0049-000000000072}, !- Source Object + {00000000-0000-0000-0053-000000000138}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0022-000000000007}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000195}, !- Handle - {00000000-0000-0000-0049-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0094-000000000001}, !- Target Object - 31; !- Inlet Port + {00000000-0000-0000-0022-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000091}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000196}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- Source Object - 32, !- Outlet Port - {00000000-0000-0000-0049-000000000002}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000091}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000197}, !- Handle - {00000000-0000-0000-0049-000000000002}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0016-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000093}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000198}, !- Handle - {00000000-0000-0000-0022-000000000007}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000111}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000093}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000004}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000199}, !- Handle - {00000000-0000-0000-0049-000000000111}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000008}, !- Target Object + {00000000-0000-0000-0044-000000000005}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000296}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000200}, !- Handle - {00000000-0000-0000-0053-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000112}, !- Target Object + {00000000-0000-0000-0018-000000000017}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000137}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000201}, !- Handle - {00000000-0000-0000-0049-000000000112}, !- Source Object + {00000000-0000-0000-0053-000000000137}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000007}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0044-000000000005}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000202}, !- Handle - {00000000-0000-0000-0049-000000000113}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000009}, !- Target Object + {00000000-0000-0000-0016-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000203}, !- Handle - {00000000-0000-0000-0053-000000000009}, !- Source Object + {00000000-0000-0000-0053-000000000092}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000114}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000017}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000204}, !- Handle - {00000000-0000-0000-0049-000000000114}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0003-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000292}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000205}, !- Handle - {00000000-0000-0000-0021-000000000007}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000115}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000292}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000206}, !- Handle - {00000000-0000-0000-0049-000000000115}, !- Source Object + {00000000-0000-0000-0053-000000000295}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0053-000000000010}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0044-000000000001}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000207}, !- Handle - {00000000-0000-0000-0053-000000000010}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000076}, !- Target Object + {00000000-0000-0000-0044-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000275}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000208}, !- Handle - {00000000-0000-0000-0021-000000000008}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0049-000000000103}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000275}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000209}, !- Handle - {00000000-0000-0000-0049-000000000103}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0053-000000000002}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000210}, !- Handle - {00000000-0000-0000-0053-000000000002}, !- Source Object + {00000000-0000-0000-0053-000000000139}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000074}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000018}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000211}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000054}, !- Target Object + {00000000-0000-0000-0018-000000000018}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000212}, !- Handle - {00000000-0000-0000-0049-000000000054}, !- Source Object + {00000000-0000-0000-0053-000000000140}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000001}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 8; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000213}, !- Handle - {00000000-0000-0000-0096-000000000001}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000055}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0053-000000000177}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000214}, !- Handle - {00000000-0000-0000-0049-000000000055}, !- Source Object + {00000000-0000-0000-0053-000000000177}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0019-000000000014}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000215}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0049-000000000056}, !- Target Object + {00000000-0000-0000-0019-000000000014}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000178}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000216}, !- Handle - {00000000-0000-0000-0049-000000000056}, !- Source Object + {00000000-0000-0000-0053-000000000178}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000002}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000217}, !- Handle - {00000000-0000-0000-0096-000000000002}, !- Source Object + {00000000-0000-0000-0053-000000000069}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000057}, !- Target Object + {00000000-0000-0000-0059-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000218}, !- Handle - {00000000-0000-0000-0049-000000000057}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 5; !- Inlet Port + {00000000-0000-0000-0059-000000000045}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000012}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000219}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0049-000000000058}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000220}, !- Handle - {00000000-0000-0000-0049-000000000058}, !- Source Object + {00000000-0000-0000-0005-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000003}, !- Target Object + {00000000-0000-0000-0053-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000221}, !- Handle - {00000000-0000-0000-0096-000000000003}, !- Source Object + {00000000-0000-0000-0053-000000000068}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000059}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000012}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000222}, !- Handle - {00000000-0000-0000-0049-000000000059}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 6; !- Inlet Port + {00000000-0000-0000-0007-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000069}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000223}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000060}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000141}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000224}, !- Handle - {00000000-0000-0000-0049-000000000060}, !- Source Object + {00000000-0000-0000-0053-000000000141}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000004}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000019}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000225}, !- Handle - {00000000-0000-0000-0096-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000061}, !- Target Object + {00000000-0000-0000-0018-000000000019}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000142}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000226}, !- Handle - {00000000-0000-0000-0049-000000000061}, !- Source Object + {00000000-0000-0000-0053-000000000142}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 7; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000227}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0049-000000000062}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000179}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000228}, !- Handle - {00000000-0000-0000-0049-000000000062}, !- Source Object + {00000000-0000-0000-0053-000000000179}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000005}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0019-000000000015}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000229}, !- Handle - {00000000-0000-0000-0096-000000000005}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000063}, !- Target Object + {00000000-0000-0000-0019-000000000015}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000180}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000230}, !- Handle - {00000000-0000-0000-0049-000000000063}, !- Source Object + {00000000-0000-0000-0053-000000000180}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 8; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 11; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000231}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0049-000000000064}, !- Target Object + {00000000-0000-0000-0053-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000232}, !- Handle - {00000000-0000-0000-0049-000000000064}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000006}, !- Target Object + {00000000-0000-0000-0059-000000000021}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000233}, !- Handle - {00000000-0000-0000-0096-000000000006}, !- Source Object + {00000000-0000-0000-0053-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000065}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000234}, !- Handle - {00000000-0000-0000-0049-000000000065}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 9; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000070}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000235}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0049-000000000066}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000070}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000013}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000236}, !- Handle - {00000000-0000-0000-0049-000000000066}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000007}, !- Target Object + {00000000-0000-0000-0007-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000237}, !- Handle - {00000000-0000-0000-0096-000000000007}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000067}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000238}, !- Handle - {00000000-0000-0000-0049-000000000067}, !- Source Object + {00000000-0000-0000-0053-000000000143}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 10; !- Inlet Port + {00000000-0000-0000-0018-000000000020}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000239}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0049-000000000077}, !- Target Object + {00000000-0000-0000-0018-000000000020}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000240}, !- Handle - {00000000-0000-0000-0049-000000000077}, !- Source Object + {00000000-0000-0000-0053-000000000144}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000008}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000241}, !- Handle - {00000000-0000-0000-0096-000000000008}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000078}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000181}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000242}, !- Handle - {00000000-0000-0000-0049-000000000078}, !- Source Object + {00000000-0000-0000-0053-000000000181}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 11; !- Inlet Port + {00000000-0000-0000-0019-000000000016}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000243}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0049-000000000079}, !- Target Object + {00000000-0000-0000-0019-000000000016}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000182}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000244}, !- Handle - {00000000-0000-0000-0049-000000000079}, !- Source Object + {00000000-0000-0000-0053-000000000182}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000009}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 13; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000245}, !- Handle - {00000000-0000-0000-0096-000000000009}, !- Source Object + {00000000-0000-0000-0053-000000000073}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000080}, !- Target Object + {00000000-0000-0000-0059-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000246}, !- Handle - {00000000-0000-0000-0049-000000000080}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 12; !- Inlet Port + {00000000-0000-0000-0059-000000000066}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000016}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000247}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000081}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000248}, !- Handle - {00000000-0000-0000-0049-000000000081}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000010}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000249}, !- Handle - {00000000-0000-0000-0096-000000000010}, !- Source Object + {00000000-0000-0000-0053-000000000072}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000082}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000014}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000250}, !- Handle - {00000000-0000-0000-0049-000000000082}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 13; !- Inlet Port + {00000000-0000-0000-0007-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000073}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000251}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object + {00000000-0000-0000-0022-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000083}, !- Target Object + {00000000-0000-0000-0053-000000000145}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000252}, !- Handle - {00000000-0000-0000-0049-000000000083}, !- Source Object + {00000000-0000-0000-0053-000000000145}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000011}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000021}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000253}, !- Handle - {00000000-0000-0000-0096-000000000011}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000084}, !- Target Object + {00000000-0000-0000-0018-000000000021}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000146}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000254}, !- Handle - {00000000-0000-0000-0049-000000000084}, !- Source Object + {00000000-0000-0000-0053-000000000146}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object + {00000000-0000-0000-0021-000000000002}, !- Target Object 14; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000255}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object + {00000000-0000-0000-0022-000000000002}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0049-000000000085}, !- Target Object + {00000000-0000-0000-0053-000000000183}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000256}, !- Handle - {00000000-0000-0000-0049-000000000085}, !- Source Object + {00000000-0000-0000-0053-000000000183}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000012}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0019-000000000017}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000257}, !- Handle - {00000000-0000-0000-0096-000000000012}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000086}, !- Target Object + {00000000-0000-0000-0019-000000000017}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000184}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000258}, !- Handle - {00000000-0000-0000-0049-000000000086}, !- Source Object + {00000000-0000-0000-0053-000000000184}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object + {00000000-0000-0000-0021-000000000002}, !- Target Object 15; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000259}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 16, !- Outlet Port - {00000000-0000-0000-0049-000000000087}, !- Target Object + {00000000-0000-0000-0053-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000260}, !- Handle - {00000000-0000-0000-0049-000000000087}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000013}, !- Target Object + {00000000-0000-0000-0059-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000261}, !- Handle - {00000000-0000-0000-0096-000000000013}, !- Source Object + {00000000-0000-0000-0053-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000088}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 6; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000262}, !- Handle - {00000000-0000-0000-0049-000000000088}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 16; !- Inlet Port + {00000000-0000-0000-0005-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000074}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000263}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 17, !- Outlet Port - {00000000-0000-0000-0049-000000000089}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000015}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000264}, !- Handle - {00000000-0000-0000-0049-000000000089}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000014}, !- Target Object + {00000000-0000-0000-0007-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000075}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000265}, !- Handle - {00000000-0000-0000-0096-000000000014}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000090}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0053-000000000147}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000266}, !- Handle - {00000000-0000-0000-0049-000000000090}, !- Source Object + {00000000-0000-0000-0053-000000000147}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0018-000000000022}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000267}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0049-000000000091}, !- Target Object + {00000000-0000-0000-0018-000000000022}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000268}, !- Handle - {00000000-0000-0000-0049-000000000091}, !- Source Object + {00000000-0000-0000-0053-000000000148}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000015}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000269}, !- Handle - {00000000-0000-0000-0096-000000000015}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000092}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000185}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000270}, !- Handle - {00000000-0000-0000-0049-000000000092}, !- Source Object + {00000000-0000-0000-0053-000000000185}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 18; !- Inlet Port + {00000000-0000-0000-0019-000000000018}, !- Target Object + 9; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000271}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 19, !- Outlet Port - {00000000-0000-0000-0049-000000000093}, !- Target Object + {00000000-0000-0000-0019-000000000018}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000186}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000272}, !- Handle - {00000000-0000-0000-0049-000000000093}, !- Source Object + {00000000-0000-0000-0053-000000000186}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000016}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 17; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000273}, !- Handle - {00000000-0000-0000-0096-000000000016}, !- Source Object + {00000000-0000-0000-0053-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000094}, !- Target Object + {00000000-0000-0000-0059-000000000058}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000274}, !- Handle - {00000000-0000-0000-0049-000000000094}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 19; !- Inlet Port + {00000000-0000-0000-0059-000000000060}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000014}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000275}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 20, !- Outlet Port - {00000000-0000-0000-0049-000000000095}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0053-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 7; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000276}, !- Handle - {00000000-0000-0000-0049-000000000095}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000017}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000076}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000277}, !- Handle - {00000000-0000-0000-0096-000000000017}, !- Source Object + {00000000-0000-0000-0053-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000096}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0007-000000000016}, !- Target Object + 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000278}, !- Handle - {00000000-0000-0000-0049-000000000096}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 20; !- Inlet Port + {00000000-0000-0000-0007-000000000016}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000077}, !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000279}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 21, !- Outlet Port - {00000000-0000-0000-0049-000000000097}, !- Target Object + {00000000-0000-0000-0022-000000000002}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0053-000000000149}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000280}, !- Handle - {00000000-0000-0000-0049-000000000097}, !- Source Object + {00000000-0000-0000-0053-000000000149}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0096-000000000018}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0018-000000000023}, !- Target Object + 5; !- Inlet Port OS:Connection, {00000000-0000-0000-0020-000000000281}, !- Handle - {00000000-0000-0000-0096-000000000018}, !- Source Object + {00000000-0000-0000-0018-000000000023}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000150}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000282}, !- Handle + {00000000-0000-0000-0053-000000000150}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000283}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0053-000000000187}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000284}, !- Handle + {00000000-0000-0000-0053-000000000187}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000019}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000285}, !- Handle + {00000000-0000-0000-0019-000000000019}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000188}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000286}, !- Handle + {00000000-0000-0000-0053-000000000188}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000287}, !- Handle + {00000000-0000-0000-0053-000000000079}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000098}, !- Target Object + {00000000-0000-0000-0059-000000000001}, !- Target Object 2; !- Inlet Port -OS:Connection, - {00000000-0000-0000-0020-000000000282}, !- Handle - {00000000-0000-0000-0049-000000000098}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 21; !- Inlet Port +OS:Connection, + {00000000-0000-0000-0020-000000000288}, !- Handle + {00000000-0000-0000-0059-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000289}, !- Handle + {00000000-0000-0000-0053-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000003}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000290}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000078}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000291}, !- Handle + {00000000-0000-0000-0053-000000000078}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000017}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000292}, !- Handle + {00000000-0000-0000-0007-000000000017}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000079}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000293}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0053-000000000302}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000294}, !- Handle + {00000000-0000-0000-0053-000000000303}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000295}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000297}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000296}, !- Handle + {00000000-0000-0000-0053-000000000298}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000297}, !- Handle + {00000000-0000-0000-0053-000000000297}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000298}, !- Handle + {00000000-0000-0000-0004-000000000004}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000298}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000299}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0053-000000000104}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000300}, !- Handle + {00000000-0000-0000-0053-000000000104}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000301}, !- Handle + {00000000-0000-0000-0018-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000106}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000302}, !- Handle + {00000000-0000-0000-0053-000000000106}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000303}, !- Handle + {00000000-0000-0000-0022-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000094}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000304}, !- Handle + {00000000-0000-0000-0053-000000000094}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000305}, !- Handle + {00000000-0000-0000-0016-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000096}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000306}, !- Handle + {00000000-0000-0000-0053-000000000096}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000004}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000307}, !- Handle + {00000000-0000-0000-0044-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000303}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000308}, !- Handle + {00000000-0000-0000-0018-000000000002}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000105}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000309}, !- Handle + {00000000-0000-0000-0053-000000000105}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000006}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000310}, !- Handle + {00000000-0000-0000-0016-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000095}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000311}, !- Handle + {00000000-0000-0000-0053-000000000095}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000312}, !- Handle + {00000000-0000-0000-0003-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000299}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000313}, !- Handle + {00000000-0000-0000-0053-000000000299}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000314}, !- Handle + {00000000-0000-0000-0053-000000000302}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000002}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000315}, !- Handle + {00000000-0000-0000-0044-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000276}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000316}, !- Handle + {00000000-0000-0000-0053-000000000276}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000317}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0053-000000000107}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000318}, !- Handle + {00000000-0000-0000-0053-000000000107}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000003}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000319}, !- Handle + {00000000-0000-0000-0018-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000108}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000320}, !- Handle + {00000000-0000-0000-0053-000000000108}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000321}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0053-000000000189}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000322}, !- Handle + {00000000-0000-0000-0053-000000000189}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000020}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000323}, !- Handle + {00000000-0000-0000-0019-000000000020}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000190}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000324}, !- Handle + {00000000-0000-0000-0053-000000000190}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 22; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000325}, !- Handle + {00000000-0000-0000-0053-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000326}, !- Handle + {00000000-0000-0000-0059-000000000057}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000026}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000327}, !- Handle + {00000000-0000-0000-0053-000000000026}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000328}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000080}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000329}, !- Handle + {00000000-0000-0000-0053-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000018}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000330}, !- Handle + {00000000-0000-0000-0007-000000000018}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000081}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000331}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 23, !- Outlet Port + {00000000-0000-0000-0053-000000000109}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000332}, !- Handle + {00000000-0000-0000-0053-000000000109}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000004}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000333}, !- Handle + {00000000-0000-0000-0018-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000110}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000334}, !- Handle + {00000000-0000-0000-0053-000000000110}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 23; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000335}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 24, !- Outlet Port + {00000000-0000-0000-0053-000000000153}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000336}, !- Handle + {00000000-0000-0000-0053-000000000153}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000002}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000337}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000154}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000338}, !- Handle + {00000000-0000-0000-0053-000000000154}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 24; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000339}, !- Handle + {00000000-0000-0000-0053-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000340}, !- Handle + {00000000-0000-0000-0059-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000024}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000341}, !- Handle + {00000000-0000-0000-0053-000000000024}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000342}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000082}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000343}, !- Handle + {00000000-0000-0000-0053-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000019}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000344}, !- Handle + {00000000-0000-0000-0007-000000000019}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000083}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000345}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 25, !- Outlet Port + {00000000-0000-0000-0053-000000000111}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000346}, !- Handle + {00000000-0000-0000-0053-000000000111}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000347}, !- Handle + {00000000-0000-0000-0018-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000112}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000348}, !- Handle + {00000000-0000-0000-0053-000000000112}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 25; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000349}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 26, !- Outlet Port + {00000000-0000-0000-0053-000000000155}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000350}, !- Handle + {00000000-0000-0000-0053-000000000155}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000003}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000351}, !- Handle + {00000000-0000-0000-0019-000000000003}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000156}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000352}, !- Handle + {00000000-0000-0000-0053-000000000156}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 26; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000353}, !- Handle + {00000000-0000-0000-0053-000000000049}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000034}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000354}, !- Handle + {00000000-0000-0000-0059-000000000036}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000355}, !- Handle + {00000000-0000-0000-0053-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000356}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000048}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000357}, !- Handle + {00000000-0000-0000-0053-000000000048}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000358}, !- Handle + {00000000-0000-0000-0007-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000359}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 27, !- Outlet Port + {00000000-0000-0000-0053-000000000113}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000360}, !- Handle + {00000000-0000-0000-0053-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000361}, !- Handle + {00000000-0000-0000-0018-000000000006}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000114}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000362}, !- Handle + {00000000-0000-0000-0053-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 27; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000363}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 28, !- Outlet Port + {00000000-0000-0000-0053-000000000157}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000364}, !- Handle + {00000000-0000-0000-0053-000000000157}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000004}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000365}, !- Handle + {00000000-0000-0000-0019-000000000004}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000158}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000366}, !- Handle + {00000000-0000-0000-0053-000000000158}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 28; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000367}, !- Handle + {00000000-0000-0000-0053-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000028}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000368}, !- Handle + {00000000-0000-0000-0059-000000000030}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000020}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000369}, !- Handle + {00000000-0000-0000-0053-000000000020}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000370}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000050}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000371}, !- Handle + {00000000-0000-0000-0053-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000003}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000372}, !- Handle + {00000000-0000-0000-0007-000000000003}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000051}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000373}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 29, !- Outlet Port + {00000000-0000-0000-0053-000000000115}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000374}, !- Handle + {00000000-0000-0000-0053-000000000115}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000007}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000375}, !- Handle + {00000000-0000-0000-0018-000000000007}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000116}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000376}, !- Handle + {00000000-0000-0000-0053-000000000116}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 29; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000377}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 30, !- Outlet Port + {00000000-0000-0000-0053-000000000159}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000378}, !- Handle + {00000000-0000-0000-0053-000000000159}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000005}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000379}, !- Handle + {00000000-0000-0000-0019-000000000005}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000160}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000380}, !- Handle + {00000000-0000-0000-0053-000000000160}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 30; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000381}, !- Handle + {00000000-0000-0000-0053-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000382}, !- Handle + {00000000-0000-0000-0059-000000000063}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000028}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000383}, !- Handle + {00000000-0000-0000-0053-000000000028}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000384}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000385}, !- Handle + {00000000-0000-0000-0053-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000386}, !- Handle + {00000000-0000-0000-0007-000000000004}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000053}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000387}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 31, !- Outlet Port + {00000000-0000-0000-0053-000000000117}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000388}, !- Handle + {00000000-0000-0000-0053-000000000117}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000008}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000389}, !- Handle + {00000000-0000-0000-0018-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000118}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000390}, !- Handle + {00000000-0000-0000-0053-000000000118}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000391}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0053-000000000161}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000392}, !- Handle + {00000000-0000-0000-0053-000000000161}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000006}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000393}, !- Handle + {00000000-0000-0000-0019-000000000006}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000162}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000394}, !- Handle + {00000000-0000-0000-0053-000000000162}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 32; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000395}, !- Handle + {00000000-0000-0000-0053-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000396}, !- Handle + {00000000-0000-0000-0059-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000030}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000397}, !- Handle + {00000000-0000-0000-0053-000000000030}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000004}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000398}, !- Handle + {00000000-0000-0000-0005-000000000004}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000054}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000399}, !- Handle + {00000000-0000-0000-0053-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000400}, !- Handle + {00000000-0000-0000-0007-000000000005}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000401}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0053-000000000309}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000402}, !- Handle + {00000000-0000-0000-0053-000000000310}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000403}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000304}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000404}, !- Handle + {00000000-0000-0000-0053-000000000305}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000405}, !- Handle + {00000000-0000-0000-0053-000000000304}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000406}, !- Handle + {00000000-0000-0000-0004-000000000005}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000305}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000407}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 33, !- Outlet Port + {00000000-0000-0000-0053-000000000119}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000408}, !- Handle + {00000000-0000-0000-0053-000000000119}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000009}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000409}, !- Handle + {00000000-0000-0000-0018-000000000009}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000121}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000410}, !- Handle + {00000000-0000-0000-0053-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 33; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000411}, !- Handle + {00000000-0000-0000-0022-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000097}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000412}, !- Handle + {00000000-0000-0000-0053-000000000097}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000413}, !- Handle + {00000000-0000-0000-0016-000000000004}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000099}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000414}, !- Handle + {00000000-0000-0000-0053-000000000099}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000004}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000415}, !- Handle + {00000000-0000-0000-0044-000000000007}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000310}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000416}, !- Handle + {00000000-0000-0000-0018-000000000009}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000120}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000417}, !- Handle + {00000000-0000-0000-0053-000000000120}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000007}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000418}, !- Handle + {00000000-0000-0000-0016-000000000004}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000098}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000419}, !- Handle + {00000000-0000-0000-0053-000000000098}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000009}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000420}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000306}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000421}, !- Handle + {00000000-0000-0000-0053-000000000306}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000422}, !- Handle + {00000000-0000-0000-0053-000000000309}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0044-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000423}, !- Handle + {00000000-0000-0000-0044-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000277}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000424}, !- Handle + {00000000-0000-0000-0053-000000000277}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000425}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 34, !- Outlet Port + {00000000-0000-0000-0053-000000000122}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000426}, !- Handle + {00000000-0000-0000-0053-000000000122}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000010}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000427}, !- Handle + {00000000-0000-0000-0018-000000000010}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000123}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000428}, !- Handle + {00000000-0000-0000-0053-000000000123}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 34; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000429}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 35, !- Outlet Port + {00000000-0000-0000-0053-000000000163}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000430}, !- Handle + {00000000-0000-0000-0053-000000000163}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000007}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000431}, !- Handle + {00000000-0000-0000-0019-000000000007}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000164}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000432}, !- Handle + {00000000-0000-0000-0053-000000000164}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 35; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000433}, !- Handle + {00000000-0000-0000-0053-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000434}, !- Handle + {00000000-0000-0000-0059-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000435}, !- Handle + {00000000-0000-0000-0053-000000000040}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000436}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000437}, !- Handle + {00000000-0000-0000-0053-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000006}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000438}, !- Handle + {00000000-0000-0000-0007-000000000006}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000439}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 36, !- Outlet Port + {00000000-0000-0000-0053-000000000124}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000440}, !- Handle + {00000000-0000-0000-0053-000000000124}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000011}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000441}, !- Handle + {00000000-0000-0000-0018-000000000011}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000125}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000442}, !- Handle + {00000000-0000-0000-0053-000000000125}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 36; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000443}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 37, !- Outlet Port + {00000000-0000-0000-0053-000000000165}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000444}, !- Handle + {00000000-0000-0000-0053-000000000165}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000008}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000445}, !- Handle + {00000000-0000-0000-0019-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000166}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000446}, !- Handle + {00000000-0000-0000-0053-000000000166}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 37; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000447}, !- Handle + {00000000-0000-0000-0053-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000448}, !- Handle + {00000000-0000-0000-0059-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000449}, !- Handle + {00000000-0000-0000-0053-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000450}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000451}, !- Handle + {00000000-0000-0000-0053-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000007}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000452}, !- Handle + {00000000-0000-0000-0007-000000000007}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000453}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 38, !- Outlet Port + {00000000-0000-0000-0053-000000000128}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000454}, !- Handle + {00000000-0000-0000-0053-000000000128}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000013}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000455}, !- Handle + {00000000-0000-0000-0018-000000000013}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000129}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000456}, !- Handle + {00000000-0000-0000-0053-000000000129}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 38; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000457}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 39, !- Outlet Port + {00000000-0000-0000-0053-000000000167}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000458}, !- Handle + {00000000-0000-0000-0053-000000000167}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000009}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000459}, !- Handle + {00000000-0000-0000-0019-000000000009}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000168}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000460}, !- Handle + {00000000-0000-0000-0053-000000000168}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 39; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000461}, !- Handle + {00000000-0000-0000-0053-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000462}, !- Handle + {00000000-0000-0000-0059-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000032}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000463}, !- Handle + {00000000-0000-0000-0053-000000000032}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000464}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000465}, !- Handle + {00000000-0000-0000-0053-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000466}, !- Handle + {00000000-0000-0000-0007-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000467}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 40, !- Outlet Port + {00000000-0000-0000-0053-000000000130}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000468}, !- Handle + {00000000-0000-0000-0053-000000000130}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000014}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000469}, !- Handle + {00000000-0000-0000-0018-000000000014}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000131}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000470}, !- Handle + {00000000-0000-0000-0053-000000000131}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 40; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000471}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 41, !- Outlet Port + {00000000-0000-0000-0053-000000000169}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000472}, !- Handle + {00000000-0000-0000-0053-000000000169}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000010}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000473}, !- Handle + {00000000-0000-0000-0019-000000000010}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000170}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000474}, !- Handle + {00000000-0000-0000-0053-000000000170}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 41; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000475}, !- Handle + {00000000-0000-0000-0053-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000025}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000476}, !- Handle + {00000000-0000-0000-0059-000000000027}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000034}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000477}, !- Handle + {00000000-0000-0000-0053-000000000034}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000478}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000479}, !- Handle + {00000000-0000-0000-0053-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000480}, !- Handle + {00000000-0000-0000-0007-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000481}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 42, !- Outlet Port + {00000000-0000-0000-0053-000000000132}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000482}, !- Handle + {00000000-0000-0000-0053-000000000132}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000015}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000483}, !- Handle + {00000000-0000-0000-0018-000000000015}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000133}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000484}, !- Handle + {00000000-0000-0000-0053-000000000133}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 42; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000485}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 43, !- Outlet Port + {00000000-0000-0000-0053-000000000171}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000486}, !- Handle + {00000000-0000-0000-0053-000000000171}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000011}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000487}, !- Handle + {00000000-0000-0000-0019-000000000011}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000172}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000488}, !- Handle + {00000000-0000-0000-0053-000000000172}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 43; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000489}, !- Handle + {00000000-0000-0000-0053-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000490}, !- Handle + {00000000-0000-0000-0059-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000038}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000491}, !- Handle + {00000000-0000-0000-0053-000000000038}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000492}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000493}, !- Handle + {00000000-0000-0000-0053-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000494}, !- Handle + {00000000-0000-0000-0007-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000065}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000495}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 44, !- Outlet Port + {00000000-0000-0000-0053-000000000134}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000496}, !- Handle + {00000000-0000-0000-0053-000000000134}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000016}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000497}, !- Handle + {00000000-0000-0000-0018-000000000016}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000135}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000498}, !- Handle + {00000000-0000-0000-0053-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 44; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000499}, !- Handle + {00000000-0000-0000-0022-000000000002}, !- Source Object + 45, !- Outlet Port + {00000000-0000-0000-0053-000000000175}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000500}, !- Handle + {00000000-0000-0000-0053-000000000175}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0019-000000000013}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000501}, !- Handle + {00000000-0000-0000-0019-000000000013}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000176}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000502}, !- Handle + {00000000-0000-0000-0053-000000000176}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000002}, !- Target Object + 45; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000503}, !- Handle + {00000000-0000-0000-0053-000000000067}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0059-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000504}, !- Handle + {00000000-0000-0000-0059-000000000009}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000042}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000505}, !- Handle + {00000000-0000-0000-0053-000000000042}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000005}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000506}, !- Handle + {00000000-0000-0000-0005-000000000005}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000066}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000507}, !- Handle + {00000000-0000-0000-0053-000000000066}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0007-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000508}, !- Handle + {00000000-0000-0000-0007-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000067}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000509}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0053-000000000219}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000510}, !- Handle + {00000000-0000-0000-0022-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000511}, !- Handle + {00000000-0000-0000-0053-000000000220}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000004}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000512}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000217}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000513}, !- Handle + {00000000-0000-0000-0053-000000000217}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0022-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000514}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000257}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000515}, !- Handle + {00000000-0000-0000-0053-000000000218}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000004}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000516}, !- Handle + {00000000-0000-0000-0053-000000000219}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0060-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000517}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000216}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000518}, !- Handle + {00000000-0000-0000-0053-000000000216}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0022-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000519}, !- Handle + {00000000-0000-0000-0053-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0098-000000000001}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000520}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Source Object + 32, !- Outlet Port + {00000000-0000-0000-0053-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000521}, !- Handle + {00000000-0000-0000-0053-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000522}, !- Handle + {00000000-0000-0000-0022-000000000007}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000255}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000523}, !- Handle + {00000000-0000-0000-0053-000000000255}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000524}, !- Handle + {00000000-0000-0000-0057-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000256}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000525}, !- Handle + {00000000-0000-0000-0053-000000000256}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000007}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000526}, !- Handle + {00000000-0000-0000-0053-000000000257}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000527}, !- Handle + {00000000-0000-0000-0057-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000258}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000528}, !- Handle + {00000000-0000-0000-0053-000000000258}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000529}, !- Handle + {00000000-0000-0000-0021-000000000007}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000259}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000530}, !- Handle + {00000000-0000-0000-0053-000000000259}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000531}, !- Handle + {00000000-0000-0000-0057-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000220}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000532}, !- Handle + {00000000-0000-0000-0021-000000000008}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0053-000000000247}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000533}, !- Handle + {00000000-0000-0000-0053-000000000247}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000534}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000218}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000535}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0053-000000000198}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000536}, !- Handle + {00000000-0000-0000-0053-000000000198}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000537}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000199}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000538}, !- Handle + {00000000-0000-0000-0053-000000000199}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000539}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0053-000000000200}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000540}, !- Handle + {00000000-0000-0000-0053-000000000200}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000541}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000201}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000542}, !- Handle + {00000000-0000-0000-0053-000000000201}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000543}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0053-000000000202}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000544}, !- Handle + {00000000-0000-0000-0053-000000000202}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000003}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000545}, !- Handle + {00000000-0000-0000-0100-000000000003}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000203}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000546}, !- Handle + {00000000-0000-0000-0053-000000000203}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000547}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000204}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000548}, !- Handle + {00000000-0000-0000-0053-000000000204}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000549}, !- Handle + {00000000-0000-0000-0100-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000205}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000550}, !- Handle + {00000000-0000-0000-0053-000000000205}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000551}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0053-000000000206}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000552}, !- Handle + {00000000-0000-0000-0053-000000000206}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000005}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000553}, !- Handle + {00000000-0000-0000-0100-000000000005}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000207}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000554}, !- Handle + {00000000-0000-0000-0053-000000000207}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000555}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0053-000000000208}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000556}, !- Handle + {00000000-0000-0000-0053-000000000208}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000557}, !- Handle + {00000000-0000-0000-0100-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000209}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000558}, !- Handle + {00000000-0000-0000-0053-000000000209}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000559}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0053-000000000210}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000560}, !- Handle + {00000000-0000-0000-0053-000000000210}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000007}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000561}, !- Handle + {00000000-0000-0000-0100-000000000007}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000211}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000562}, !- Handle + {00000000-0000-0000-0053-000000000211}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000563}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0053-000000000221}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000564}, !- Handle + {00000000-0000-0000-0053-000000000221}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000565}, !- Handle + {00000000-0000-0000-0100-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000222}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000566}, !- Handle + {00000000-0000-0000-0053-000000000222}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000567}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0053-000000000223}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000568}, !- Handle + {00000000-0000-0000-0053-000000000223}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000569}, !- Handle + {00000000-0000-0000-0100-000000000009}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000224}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000570}, !- Handle + {00000000-0000-0000-0053-000000000224}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000571}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000225}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000572}, !- Handle + {00000000-0000-0000-0053-000000000225}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000573}, !- Handle + {00000000-0000-0000-0100-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000226}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000574}, !- Handle + {00000000-0000-0000-0053-000000000226}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 13; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000575}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0053-000000000227}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000576}, !- Handle + {00000000-0000-0000-0053-000000000227}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000011}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000577}, !- Handle + {00000000-0000-0000-0100-000000000011}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000228}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000578}, !- Handle + {00000000-0000-0000-0053-000000000228}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000579}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000229}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000580}, !- Handle + {00000000-0000-0000-0053-000000000229}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000581}, !- Handle + {00000000-0000-0000-0100-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000230}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000582}, !- Handle + {00000000-0000-0000-0053-000000000230}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000583}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0053-000000000231}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000584}, !- Handle + {00000000-0000-0000-0053-000000000231}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000585}, !- Handle + {00000000-0000-0000-0100-000000000013}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000232}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000586}, !- Handle + {00000000-0000-0000-0053-000000000232}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000587}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0053-000000000233}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000588}, !- Handle + {00000000-0000-0000-0053-000000000233}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000589}, !- Handle + {00000000-0000-0000-0100-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000234}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000590}, !- Handle + {00000000-0000-0000-0053-000000000234}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000591}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0053-000000000235}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000592}, !- Handle + {00000000-0000-0000-0053-000000000235}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000015}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000593}, !- Handle + {00000000-0000-0000-0100-000000000015}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000236}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000594}, !- Handle + {00000000-0000-0000-0053-000000000236}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000595}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0053-000000000237}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000596}, !- Handle + {00000000-0000-0000-0053-000000000237}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000597}, !- Handle + {00000000-0000-0000-0100-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000238}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000598}, !- Handle + {00000000-0000-0000-0053-000000000238}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000599}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0053-000000000239}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000600}, !- Handle + {00000000-0000-0000-0053-000000000239}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000017}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000601}, !- Handle + {00000000-0000-0000-0100-000000000017}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000240}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000602}, !- Handle + {00000000-0000-0000-0053-000000000240}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000603}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0053-000000000241}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000604}, !- Handle + {00000000-0000-0000-0053-000000000241}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000605}, !- Handle + {00000000-0000-0000-0100-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000242}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000606}, !- Handle + {00000000-0000-0000-0053-000000000242}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000607}, !- Handle + {00000000-0000-0000-0022-000000000008}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0053-000000000243}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000608}, !- Handle + {00000000-0000-0000-0053-000000000243}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0100-000000000019}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000609}, !- Handle + {00000000-0000-0000-0100-000000000019}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0053-000000000244}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000610}, !- Handle + {00000000-0000-0000-0053-000000000244}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0021-000000000008}, !- Target Object + 22; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000611}, !- Handle + {00000000-0000-0000-0053-000000000284}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000612}, !- Handle + {00000000-0000-0000-0047-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000288}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000613}, !- Handle + {00000000-0000-0000-0053-000000000288}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000614}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000289}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000615}, !- Handle + {00000000-0000-0000-0053-000000000289}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000001}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000616}, !- Handle + {00000000-0000-0000-0047-000000000001}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000285}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000617}, !- Handle + {00000000-0000-0000-0053-000000000314}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000005}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000618}, !- Handle + {00000000-0000-0000-0047-000000000005}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000324}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000619}, !- Handle + {00000000-0000-0000-0053-000000000324}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000620}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000325}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000621}, !- Handle + {00000000-0000-0000-0053-000000000325}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000005}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000622}, !- Handle + {00000000-0000-0000-0047-000000000005}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000315}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000623}, !- Handle + {00000000-0000-0000-0053-000000000293}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000624}, !- Handle + {00000000-0000-0000-0047-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000318}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000625}, !- Handle + {00000000-0000-0000-0053-000000000318}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000626}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000319}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000627}, !- Handle + {00000000-0000-0000-0053-000000000319}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000628}, !- Handle + {00000000-0000-0000-0047-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000294}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000629}, !- Handle + {00000000-0000-0000-0053-000000000300}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000630}, !- Handle + {00000000-0000-0000-0047-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000320}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000631}, !- Handle + {00000000-0000-0000-0053-000000000320}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000004}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000632}, !- Handle + {00000000-0000-0000-0003-000000000004}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000321}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000633}, !- Handle + {00000000-0000-0000-0053-000000000321}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000003}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000634}, !- Handle + {00000000-0000-0000-0047-000000000003}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000301}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000635}, !- Handle + {00000000-0000-0000-0053-000000000307}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000004}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000636}, !- Handle + {00000000-0000-0000-0047-000000000004}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0053-000000000322}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000637}, !- Handle + {00000000-0000-0000-0053-000000000322}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000005}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000638}, !- Handle + {00000000-0000-0000-0003-000000000005}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0053-000000000323}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000639}, !- Handle + {00000000-0000-0000-0053-000000000323}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0047-000000000004}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0020-000000000640}, !- Handle + {00000000-0000-0000-0047-000000000004}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0053-000000000308}, !- Target Object + 2; !- Inlet Port + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000001}, !- Handle + Connector Mixer 1, !- Name + {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000002}, !- Handle + Connector Mixer 2, !- Name + {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000088}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000157}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000174}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000178}, !- Inlet Branch Name 4 + {00000000-0000-0000-0020-000000000194}, !- Inlet Branch Name 5 + {00000000-0000-0000-0020-000000000212}, !- Inlet Branch Name 6 + {00000000-0000-0000-0020-000000000216}, !- Inlet Branch Name 7 + {00000000-0000-0000-0020-000000000226}, !- Inlet Branch Name 8 + {00000000-0000-0000-0020-000000000230}, !- Inlet Branch Name 9 + {00000000-0000-0000-0020-000000000240}, !- Inlet Branch Name 10 + {00000000-0000-0000-0020-000000000244}, !- Inlet Branch Name 11 + {00000000-0000-0000-0020-000000000254}, !- Inlet Branch Name 12 + {00000000-0000-0000-0020-000000000258}, !- Inlet Branch Name 13 + {00000000-0000-0000-0020-000000000268}, !- Inlet Branch Name 14 + {00000000-0000-0000-0020-000000000272}, !- Inlet Branch Name 15 + {00000000-0000-0000-0020-000000000282}, !- Inlet Branch Name 16 + {00000000-0000-0000-0020-000000000286}, !- Inlet Branch Name 17 + {00000000-0000-0000-0020-000000000302}, !- Inlet Branch Name 18 + {00000000-0000-0000-0020-000000000320}, !- Inlet Branch Name 19 + {00000000-0000-0000-0020-000000000324}, !- Inlet Branch Name 20 + {00000000-0000-0000-0020-000000000334}, !- Inlet Branch Name 21 + {00000000-0000-0000-0020-000000000338}, !- Inlet Branch Name 22 + {00000000-0000-0000-0020-000000000348}, !- Inlet Branch Name 23 + {00000000-0000-0000-0020-000000000352}, !- Inlet Branch Name 24 + {00000000-0000-0000-0020-000000000362}, !- Inlet Branch Name 25 + {00000000-0000-0000-0020-000000000366}, !- Inlet Branch Name 26 + {00000000-0000-0000-0020-000000000376}, !- Inlet Branch Name 27 + {00000000-0000-0000-0020-000000000380}, !- Inlet Branch Name 28 + {00000000-0000-0000-0020-000000000390}, !- Inlet Branch Name 29 + {00000000-0000-0000-0020-000000000394}, !- Inlet Branch Name 30 + {00000000-0000-0000-0020-000000000410}, !- Inlet Branch Name 31 + {00000000-0000-0000-0020-000000000428}, !- Inlet Branch Name 32 + {00000000-0000-0000-0020-000000000432}, !- Inlet Branch Name 33 + {00000000-0000-0000-0020-000000000442}, !- Inlet Branch Name 34 + {00000000-0000-0000-0020-000000000446}, !- Inlet Branch Name 35 + {00000000-0000-0000-0020-000000000456}, !- Inlet Branch Name 36 + {00000000-0000-0000-0020-000000000460}, !- Inlet Branch Name 37 + {00000000-0000-0000-0020-000000000470}, !- Inlet Branch Name 38 + {00000000-0000-0000-0020-000000000474}, !- Inlet Branch Name 39 + {00000000-0000-0000-0020-000000000484}, !- Inlet Branch Name 40 + {00000000-0000-0000-0020-000000000488}, !- Inlet Branch Name 41 + {00000000-0000-0000-0020-000000000498}, !- Inlet Branch Name 42 + {00000000-0000-0000-0020-000000000502}; !- Inlet Branch Name 43 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000003}, !- Handle + Connector Mixer 3, !- Name + {00000000-0000-0000-0020-000000000117}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000108}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000112}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000116}; !- Inlet Branch Name 3 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000004}, !- Handle + Connector Mixer 4, !- Name + {00000000-0000-0000-0020-000000000101}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000160}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000198}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000306}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000414}; !- Inlet Branch Name 4 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000005}, !- Handle + Connector Mixer 5, !- Name + {00000000-0000-0000-0020-000000000138}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000133}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000137}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000006}, !- Handle + Connector Mixer 6, !- Name + {00000000-0000-0000-0020-000000000126}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000143}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000147}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000007}, !- Handle + Connector Mixer 7, !- Name + {00000000-0000-0000-0020-000000000529}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000521}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000525}; !- Inlet Branch Name 2 + +OS:Connector:Mixer, + {00000000-0000-0000-0021-000000000008}, !- Handle + Connector Mixer 8, !- Name + {00000000-0000-0000-0020-000000000532}, !- Outlet Branch Name + {00000000-0000-0000-0020-000000000528}, !- Inlet Branch Name 1 + {00000000-0000-0000-0020-000000000538}, !- Inlet Branch Name 2 + {00000000-0000-0000-0020-000000000542}, !- Inlet Branch Name 3 + {00000000-0000-0000-0020-000000000546}, !- Inlet Branch Name 4 + {00000000-0000-0000-0020-000000000550}, !- Inlet Branch Name 5 + {00000000-0000-0000-0020-000000000554}, !- Inlet Branch Name 6 + {00000000-0000-0000-0020-000000000558}, !- Inlet Branch Name 7 + {00000000-0000-0000-0020-000000000562}, !- Inlet Branch Name 8 + {00000000-0000-0000-0020-000000000566}, !- Inlet Branch Name 9 + {00000000-0000-0000-0020-000000000570}, !- Inlet Branch Name 10 + {00000000-0000-0000-0020-000000000574}, !- Inlet Branch Name 11 + {00000000-0000-0000-0020-000000000578}, !- Inlet Branch Name 12 + {00000000-0000-0000-0020-000000000582}, !- Inlet Branch Name 13 + {00000000-0000-0000-0020-000000000586}, !- Inlet Branch Name 14 + {00000000-0000-0000-0020-000000000590}, !- Inlet Branch Name 15 + {00000000-0000-0000-0020-000000000594}, !- Inlet Branch Name 16 + {00000000-0000-0000-0020-000000000598}, !- Inlet Branch Name 17 + {00000000-0000-0000-0020-000000000602}, !- Inlet Branch Name 18 + {00000000-0000-0000-0020-000000000606}, !- Inlet Branch Name 19 + {00000000-0000-0000-0020-000000000610}; !- Inlet Branch Name 20 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000001}, !- Handle + Connector Splitter 1, !- Name + {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000002}, !- Handle + Connector Splitter 2, !- Name + {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000154}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000171}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000175}, !- Outlet Branch Name 4 + {00000000-0000-0000-0020-000000000191}, !- Outlet Branch Name 5 + {00000000-0000-0000-0020-000000000209}, !- Outlet Branch Name 6 + {00000000-0000-0000-0020-000000000213}, !- Outlet Branch Name 7 + {00000000-0000-0000-0020-000000000223}, !- Outlet Branch Name 8 + {00000000-0000-0000-0020-000000000227}, !- Outlet Branch Name 9 + {00000000-0000-0000-0020-000000000237}, !- Outlet Branch Name 10 + {00000000-0000-0000-0020-000000000241}, !- Outlet Branch Name 11 + {00000000-0000-0000-0020-000000000251}, !- Outlet Branch Name 12 + {00000000-0000-0000-0020-000000000255}, !- Outlet Branch Name 13 + {00000000-0000-0000-0020-000000000265}, !- Outlet Branch Name 14 + {00000000-0000-0000-0020-000000000269}, !- Outlet Branch Name 15 + {00000000-0000-0000-0020-000000000279}, !- Outlet Branch Name 16 + {00000000-0000-0000-0020-000000000283}, !- Outlet Branch Name 17 + {00000000-0000-0000-0020-000000000299}, !- Outlet Branch Name 18 + {00000000-0000-0000-0020-000000000317}, !- Outlet Branch Name 19 + {00000000-0000-0000-0020-000000000321}, !- Outlet Branch Name 20 + {00000000-0000-0000-0020-000000000331}, !- Outlet Branch Name 21 + {00000000-0000-0000-0020-000000000335}, !- Outlet Branch Name 22 + {00000000-0000-0000-0020-000000000345}, !- Outlet Branch Name 23 + {00000000-0000-0000-0020-000000000349}, !- Outlet Branch Name 24 + {00000000-0000-0000-0020-000000000359}, !- Outlet Branch Name 25 + {00000000-0000-0000-0020-000000000363}, !- Outlet Branch Name 26 + {00000000-0000-0000-0020-000000000373}, !- Outlet Branch Name 27 + {00000000-0000-0000-0020-000000000377}, !- Outlet Branch Name 28 + {00000000-0000-0000-0020-000000000387}, !- Outlet Branch Name 29 + {00000000-0000-0000-0020-000000000391}, !- Outlet Branch Name 30 + {00000000-0000-0000-0020-000000000407}, !- Outlet Branch Name 31 + {00000000-0000-0000-0020-000000000425}, !- Outlet Branch Name 32 + {00000000-0000-0000-0020-000000000429}, !- Outlet Branch Name 33 + {00000000-0000-0000-0020-000000000439}, !- Outlet Branch Name 34 + {00000000-0000-0000-0020-000000000443}, !- Outlet Branch Name 35 + {00000000-0000-0000-0020-000000000453}, !- Outlet Branch Name 36 + {00000000-0000-0000-0020-000000000457}, !- Outlet Branch Name 37 + {00000000-0000-0000-0020-000000000467}, !- Outlet Branch Name 38 + {00000000-0000-0000-0020-000000000471}, !- Outlet Branch Name 39 + {00000000-0000-0000-0020-000000000481}, !- Outlet Branch Name 40 + {00000000-0000-0000-0020-000000000485}, !- Outlet Branch Name 41 + {00000000-0000-0000-0020-000000000495}, !- Outlet Branch Name 42 + {00000000-0000-0000-0020-000000000499}; !- Outlet Branch Name 43 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000003}, !- Handle + Connector Splitter 3, !- Name + {00000000-0000-0000-0020-000000000105}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000096}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000109}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000113}; !- Outlet Branch Name 3 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000004}, !- Handle + Connector Splitter 4, !- Name + {00000000-0000-0000-0020-000000000099}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000100}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000195}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000303}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000411}; !- Outlet Branch Name 4 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000005}, !- Handle + Connector Splitter 5, !- Name + {00000000-0000-0000-0020-000000000130}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000121}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000134}; !- Outlet Branch Name 2 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000006}, !- Handle + Connector Splitter 6, !- Name + {00000000-0000-0000-0020-000000000124}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000125}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000144}; !- Outlet Branch Name 2 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000007}, !- Handle + Connector Splitter 7, !- Name + {00000000-0000-0000-0020-000000000518}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000510}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000522}; !- Outlet Branch Name 2 + +OS:Connector:Splitter, + {00000000-0000-0000-0022-000000000008}, !- Handle + Connector Splitter 8, !- Name + {00000000-0000-0000-0020-000000000513}, !- Inlet Branch Name + {00000000-0000-0000-0020-000000000514}, !- Outlet Branch Name 1 + {00000000-0000-0000-0020-000000000535}, !- Outlet Branch Name 2 + {00000000-0000-0000-0020-000000000539}, !- Outlet Branch Name 3 + {00000000-0000-0000-0020-000000000543}, !- Outlet Branch Name 4 + {00000000-0000-0000-0020-000000000547}, !- Outlet Branch Name 5 + {00000000-0000-0000-0020-000000000551}, !- Outlet Branch Name 6 + {00000000-0000-0000-0020-000000000555}, !- Outlet Branch Name 7 + {00000000-0000-0000-0020-000000000559}, !- Outlet Branch Name 8 + {00000000-0000-0000-0020-000000000563}, !- Outlet Branch Name 9 + {00000000-0000-0000-0020-000000000567}, !- Outlet Branch Name 10 + {00000000-0000-0000-0020-000000000571}, !- Outlet Branch Name 11 + {00000000-0000-0000-0020-000000000575}, !- Outlet Branch Name 12 + {00000000-0000-0000-0020-000000000579}, !- Outlet Branch Name 13 + {00000000-0000-0000-0020-000000000583}, !- Outlet Branch Name 14 + {00000000-0000-0000-0020-000000000587}, !- Outlet Branch Name 15 + {00000000-0000-0000-0020-000000000591}, !- Outlet Branch Name 16 + {00000000-0000-0000-0020-000000000595}, !- Outlet Branch Name 17 + {00000000-0000-0000-0020-000000000599}, !- Outlet Branch Name 18 + {00000000-0000-0000-0020-000000000603}, !- Outlet Branch Name 19 + {00000000-0000-0000-0020-000000000607}; !- Outlet Branch Name 20 + +OS:Construction, + {00000000-0000-0000-0023-000000000001}, !- Handle + BTAP-Ext-DaylightDiffuser, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000002}, !- Handle + BTAP-Ext-DaylightDiffuser:U=0.241 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000003}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000003}, !- Handle + BTAP-Ext-DaylightDomes, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000004}, !- Handle + BTAP-Ext-DaylightDomes:U=0.241 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000003}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000005}, !- Handle + BTAP-Ext-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000018}, !- Layer 1 + {00000000-0000-0000-0051-000000000013}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000006}, !- Handle + BTAP-Ext-Door:U-1.73, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000017}, !- Layer 1 + {00000000-0000-0000-0051-000000000011}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000007}, !- Handle + BTAP-Ext-FixedWindow, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000008}, !- Handle + BTAP-Ext-FixedWindow:U=0.173 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000009}, !- Handle + BTAP-Ext-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000013}, !- Layer 1 + {00000000-0000-0000-0050-000000000008}, !- Layer 2 + {00000000-0000-0000-0051-000000000007}; !- Layer 3 + +OS:Construction, + {00000000-0000-0000-0023-000000000010}, !- Handle + BTAP-Ext-Floor-Mass:U-0.138, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000008}, !- Layer 1 + {00000000-0000-0000-0050-000000000007}, !- Layer 2 + {00000000-0000-0000-0051-000000000003}; !- Layer 3 + +OS:Construction, + {00000000-0000-0000-0023-000000000011}, !- Handle + BTAP-Ext-GlassDoors, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000012}, !- Handle + BTAP-Ext-GlassDoors:U=0.173 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000002}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000013}, !- Handle + BTAP-Ext-OverHeadDoor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000013}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000014}, !- Handle + BTAP-Ext-OverHeadDoor:U-1.73, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000012}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000015}, !- Handle + BTAP-Ext-Roof-Metal, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000024}, !- Layer 1 + {00000000-0000-0000-0051-000000000013}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000016}, !- Handle + BTAP-Ext-Roof-Metal:U-0.121, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000023}, !- Layer 1 + {00000000-0000-0000-0051-000000000010}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000017}, !- Handle + BTAP-Ext-Skylights, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000018}, !- Handle + BTAP-Ext-Skylights:U=0.241 SHGC=0.600, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000003}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000019}, !- Handle + BTAP-Ext-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000006}, !- Layer 1 + {00000000-0000-0000-0050-000000000014}, !- Layer 2 + {00000000-0000-0000-0051-000000000013}, !- Layer 3 + {00000000-0000-0000-0050-000000000002}; !- Layer 4 + +OS:Construction, + {00000000-0000-0000-0023-000000000020}, !- Handle + BTAP-Ext-Wall-Mass:U-0.215, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000005}, !- Layer 1 + {00000000-0000-0000-0050-000000000013}, !- Layer 2 + {00000000-0000-0000-0051-000000000009}, !- Layer 3 + {00000000-0000-0000-0050-000000000001}; !- Layer 4 + +OS:Construction, + {00000000-0000-0000-0023-000000000021}, !- Handle + BTAP-Grnd-Floor-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000012}, !- Layer 1 + {00000000-0000-0000-0051-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000022}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000009}, !- Layer 1 + {00000000-0000-0000-0051-000000000004}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000023}, !- Handle + BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000009}, !- Layer 1 + {00000000-0000-0000-0050-000000000016}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000024}, !- Handle + BTAP-Grnd-Roof-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000012}, !- Layer 1 + {00000000-0000-0000-0051-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000025}, !- Handle + BTAP-Grnd-Roof-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000011}, !- Layer 1 + {00000000-0000-0000-0051-000000000006}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000026}, !- Handle + BTAP-Grnd-Wall-Mass, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000012}, !- Layer 1 + {00000000-0000-0000-0051-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000027}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000010}, !- Layer 1 + {00000000-0000-0000-0051-000000000005}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000028}, !- Handle + BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000010}, !- Layer 1 + {00000000-0000-0000-0050-000000000015}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000029}, !- Handle + BTAP-Int-Ceiling, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000007}, !- Layer 1 + {00000000-0000-0000-0050-000000000003}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000030}, !- Handle + BTAP-Int-Door, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000021}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000031}, !- Handle + BTAP-Int-Floor, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000003}, !- Layer 1 + {00000000-0000-0000-0051-000000000007}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000032}, !- Handle + BTAP-Int-Partition, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000021}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000033}, !- Handle + BTAP-Int-Wall, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000019}, !- Layer 1 + {00000000-0000-0000-0050-000000000019}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000034}, !- Handle + BTAP-Int-Window, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0104-000000000001}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000035}, !- Handle + Basement Floor construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000022}, !- Layer 1 + {00000000-0000-0000-0051-000000000001}; !- Layer 2 + +OS:Construction, + {00000000-0000-0000-0023-000000000036}, !- Handle + Basement Wall construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000022}; !- Layer 1 + +OS:Construction, + {00000000-0000-0000-0023-000000000037}, !- Handle + Floor Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0051-000000000001}, !- Layer 1 + {00000000-0000-0000-0050-000000000004}, !- Layer 2 + {00000000-0000-0000-0051-000000000002}; !- Layer 3 + +OS:Construction, + {00000000-0000-0000-0023-000000000038}, !- Handle + Wall Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0050-000000000020}, !- Layer 1 + {00000000-0000-0000-0050-000000000020}; !- Layer 2 + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000004}, !- Handle + Controller Mechanical Ventilation 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0024-000000000005}, !- Handle + Controller Mechanical Ventilation 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000026}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000030}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000027}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000004}, !- Handle + Controller Outdoor Air 4, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000028}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000004}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0025-000000000005}, !- Handle + Controller Outdoor Air 5, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000029}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0024-000000000005}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000001}, !- Handle + Controller Water Coil 1, !- Name + {00000000-0000-0000-0018-000000000001}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000002}, !- Handle + Controller Water Coil 10, !- Name + {00000000-0000-0000-0018-000000000022}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000003}, !- Handle + Controller Water Coil 11, !- Name + {00000000-0000-0000-0018-000000000023}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000004}, !- Handle + Controller Water Coil 12, !- Name + {00000000-0000-0000-0018-000000000002}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000005}, !- Handle + Controller Water Coil 13, !- Name + {00000000-0000-0000-0016-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000006}, !- Handle + Controller Water Coil 14, !- Name + {00000000-0000-0000-0018-000000000003}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000007}, !- Handle + Controller Water Coil 15, !- Name + {00000000-0000-0000-0018-000000000004}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000008}, !- Handle + Controller Water Coil 16, !- Name + {00000000-0000-0000-0018-000000000005}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000009}, !- Handle + Controller Water Coil 17, !- Name + {00000000-0000-0000-0018-000000000006}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000010}, !- Handle + Controller Water Coil 18, !- Name + {00000000-0000-0000-0018-000000000007}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000011}, !- Handle + Controller Water Coil 19, !- Name + {00000000-0000-0000-0018-000000000008}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000012}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0016-000000000001}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000013}, !- Handle + Controller Water Coil 20, !- Name + {00000000-0000-0000-0018-000000000009}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000014}, !- Handle + Controller Water Coil 21, !- Name + {00000000-0000-0000-0016-000000000004}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000015}, !- Handle + Controller Water Coil 22, !- Name + {00000000-0000-0000-0018-000000000010}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000016}, !- Handle + Controller Water Coil 23, !- Name + {00000000-0000-0000-0018-000000000011}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000017}, !- Handle + Controller Water Coil 24, !- Name + {00000000-0000-0000-0018-000000000013}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000018}, !- Handle + Controller Water Coil 25, !- Name + {00000000-0000-0000-0018-000000000014}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000019}, !- Handle + Controller Water Coil 26, !- Name + {00000000-0000-0000-0018-000000000015}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000020}, !- Handle + Controller Water Coil 27, !- Name + {00000000-0000-0000-0018-000000000016}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000021}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0018-000000000012}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000022}, !- Handle + Controller Water Coil 4, !- Name + {00000000-0000-0000-0018-000000000017}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000023}, !- Handle + Controller Water Coil 5, !- Name + {00000000-0000-0000-0016-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000024}, !- Handle + Controller Water Coil 6, !- Name + {00000000-0000-0000-0018-000000000018}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000025}, !- Handle + Controller Water Coil 7, !- Name + {00000000-0000-0000-0018-000000000019}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000026}, !- Handle + Controller Water Coil 8, !- Name + {00000000-0000-0000-0018-000000000020}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0026-000000000027}, !- Handle + Controller Water Coil 9, !- Name + {00000000-0000-0000-0018-000000000021}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:CoolingTower:SingleSpeed, + {00000000-0000-0000-0027-000000000001}, !- Handle + Cooling Tower Single Speed 1, !- Name + {00000000-0000-0000-0020-000000000131}, !- Water Inlet Node Name + {00000000-0000-0000-0020-000000000132}, !- Water Outlet Node Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + 28640.7014275539, !- Fan Power at Design Air Flow Rate {W} + autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} + autosize, !- Air Flow Rate in Free Convection Regime {m3/s} + autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + , !- Nominal Capacity {W} + 0, !- Free Convection Capacity {W} + 0, !- Basin Heater Capacity {W/K} + 2, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + LossFactor, !- Evaporation Loss Mode + 0.2, !- Evaporation Loss Factor {percent/K} + 0.008, !- Drift Loss Percent {percent} + ConcentrationRatio, !- Blowdown Calculation Mode + 3, !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Outdoor Air Inlet Node Name + FanCycling, !- Capacity Control + 2, !- Number of Cells + MinimalCell, !- Cell Control + 0.33, !- Cell Minimum Water Flow Rate Fraction + 2.5, !- Cell Maximum Water Flow Rate Fraction + 1, !- Sizing Factor + 0.1, !- Free Convection Air Flow Rate Sizing Factor + 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor + 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + 0.1, !- Free Convection Nominal Capacity Sizing Factor + 35, !- Design Inlet Air Dry-Bulb Temperature {C} + 24, !- Design Inlet Air Wet-Bulb Temperature {C} + 5, !- Design Approach Temperature {deltaC} + 6, !- Design Range Temperature {deltaC} + General; !- End-Use Subcategory + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000001}, !- Handle + Curve Biquadratic 1, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.000554364, !- Coefficient3 x**2 + -0.00755748, !- Coefficient4 y + 3.3048e-05, !- Coefficient5 y**2 + -0.000191808, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000002}, !- Handle + Curve Biquadratic 2, !- Name + 0.116936, !- Coefficient1 Constant + 0.0284933, !- Coefficient2 x + -0.000411156, !- Coefficient3 x**2 + 0.0214108, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000003}, !- Handle + Curve Biquadratic 3, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000004}, !- Handle + Curve Biquadratic 4, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000005}, !- Handle + Curve Biquadratic 5, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-05, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000006}, !- Handle + Curve Biquadratic 6, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000007}, !- Handle + DXCOOL-NECB2011-REF-CAPFT, !- Name + 0.867905, !- Coefficient1 Constant + 0.0142459, !- Coefficient2 x + 0.00055436, !- Coefficient3 x**2 + -0.0075575, !- Coefficient4 y + 3.3e-05, !- Coefficient5 y**2 + -0.0001918, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000008}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFT, !- Name + 0.1141714, !- Coefficient1 Constant + 0.02818224, !- Coefficient2 x + -0.0004199, !- Coefficient3 x**2 + 0.02141082, !- Coefficient4 y + 0.000161028, !- Coefficient5 y**2 + -0.000679104, !- Coefficient6 x*y + 13, !- Minimum Value of x + 24, !- Maximum Value of x + 24, !- Minimum Value of y + 46; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000009}, !- Handle + WaterCooled_Centrifugal_CAPFT_NECB2011, !- Name + 0.707908, !- Coefficient1 Constant + -0.00200657, !- Coefficient2 x + -0.00259605, !- Coefficient3 x**2 + 0.0300588, !- Coefficient4 y + -0.00105643, !- Coefficient5 y**2 + 0.0020457, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000010}, !- Handle + WaterCooled_Centrifugal_EIRFT_NECB2011, !- Name + 0.560523, !- Coefficient1 Constant + -0.0137816, !- Coefficient2 x + 6.56424e-05, !- Coefficient3 x**2 + 0.0132194, !- Coefficient4 y + 0.000268596, !- Coefficient5 y**2 + -0.000501131, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000011}, !- Handle + WaterCooled_Scroll_CAPFT_NECB2011, !- Name + 0.94418, !- Coefficient1 Constant + 0.0337102, !- Coefficient2 x + 9.75564e-05, !- Coefficient3 x**2 + -0.00322114, !- Coefficient4 y + -4.91832e-05, !- Coefficient5 y**2 + -0.000177584, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0028-000000000012}, !- Handle + WaterCooled_Scroll_EIRFT_NECB2011, !- Name + 0.727393, !- Coefficient1 Constant + -0.0118922, !- Coefficient2 x + 0.000541177, !- Coefficient3 x**2 + 0.00187934, !- Coefficient4 y + 0.000473461, !- Coefficient5 y**2 + -0.000711472, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000001}, !- Handle + BOILER-EFFFPLR-NECB2011, !- Name + 0.3831, !- Coefficient1 Constant + 2.0567, !- Coefficient2 x + -2.6469, !- Coefficient3 x**2 + 1.2148, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000002}, !- Handle + Curve Cubic 1, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000003}, !- Handle + DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name + 0.0277, !- Coefficient1 Constant + 4.9151, !- Coefficient2 x + -8.184, !- Coefficient3 x**2 + 4.2702, !- Coefficient4 x**3 + 0.7, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000004}, !- Handle + FURNACE-EFFPLR-NECB2011, !- Name + 0.722, !- Coefficient1 Constant + 0.8211, !- Coefficient2 x + -1.0396, !- Coefficient3 x**2 + 0.5, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000005}, !- Handle + SWH-EFFFPLR-NECB2011, !- Name + 0.7576, !- Coefficient1 Constant + 1.0071, !- Coefficient2 x + -1.4443, !- Coefficient3 x**2 + 0.6844, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000006}, !- Handle + VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name + -2.4176, !- Coefficient1 Constant + 9.5874, !- Coefficient2 x + -11.559, !- Coefficient3 x**2 + 5.4009, !- Coefficient4 x**3 + 0.68, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000007}, !- Handle + VarVolFan-AFBIInletVanes-NECB2011-FPLR, !- Name + -4.1457, !- Coefficient1 Constant + 16.803, !- Coefficient2 x + -19.471, !- Coefficient3 x**2 + 7.8488, !- Coefficient4 x**3 + 0.5, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Cubic, + {00000000-0000-0000-0029-000000000008}, !- Handle + VarVolFan-FCInletVanes-NECB2011-FPLR, !- Name + -0.3477, !- Coefficient1 Constant + 4.0976, !- Coefficient2 x + -5.0024, !- Coefficient3 x**2 + 2.268, !- Coefficient4 x**3 + 0.22, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000001}, !- Handle + Curve Quadratic 1, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000002}, !- Handle + Curve Quadratic 2, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000003}, !- Handle + Curve Quadratic 3, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000004}, !- Handle + Curve Quadratic 4, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000005}, !- Handle + DXCOOL-NECB2011-REF-CAPFFLOW, !- Name + 0.8, !- Coefficient1 Constant + 0.2, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000006}, !- Handle + DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name + 1.1552, !- Coefficient1 Constant + -0.1808, !- Coefficient2 x + 0.0256, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000007}, !- Handle + WaterCooled_Centrifugal_EIRFPLR_NECB2011, !- Name + 0.171493, !- Coefficient1 Constant + 0.588202, !- Coefficient2 x + 0.237373, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0030-000000000008}, !- Handle + WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name + 0.04412, !- Coefficient1 Constant + 0.640367, !- Coefficient2 x + 0.319555, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:DefaultConstructionSet, + {00000000-0000-0000-0031-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name + {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name + {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name + {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name + {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name + {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000001}, !- Handle + Space Function - undefined - Schedule Set, !- 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 + {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000002}, !- Handle + Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0066-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0066-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0066-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0066-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:DefaultScheduleSet, + {00000000-0000-0000-0032-000000000003}, !- Handle + Space Function Office open plan Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {00000000-0000-0000-0066-000000000012}, !- Number of People Schedule Name + {00000000-0000-0000-0066-000000000016}, !- People Activity Level Schedule Name + {00000000-0000-0000-0066-000000000011}, !- Lighting Schedule Name + {00000000-0000-0000-0066-000000000010}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {00000000-0000-0000-0066-000000000002}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000006}, !- Door Construction Name + {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000002}, !- Handle + Default Sub Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000030}, !- 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:DefaultSubSurfaceConstructions, + {00000000-0000-0000-0033-000000000003}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name + {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name + {00000000-0000-0000-0023-000000000005}, !- Door Construction Name + {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name + {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name + {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name + {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name + {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000001}, !- Handle + BTAP-Mass at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000002}, !- Handle + BTAP-Mass at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000003}, !- Handle + Default Surface Constructions 2, !- Name + {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000004}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name + {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {00000000-0000-0000-0034-000000000005}, !- Handle + NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name + {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name + {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name + {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name + +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000001}, !- Handle + Space Function - undefined - Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000002}, !- Handle + Space Function Electrical/Mechanical room-sch-A Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.0003048, !- 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:DesignSpecification:OutdoorAir, + {00000000-0000-0000-0035-000000000003}, !- Handle + Space Function Office open plan Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.002539077244416, !- Outdoor Air Flow per Person {m3/s-person} + 0.0003048, !- 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:ElectricEquipment, + {00000000-0000-0000-0036-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name + {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name + {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:ElectricEquipment, + {00000000-0000-0000-0036-000000000002}, !- Handle + Space Function Office open plan Elec Equip, !- Name + {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name + {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 1.0003634216273, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant + +OS:ElectricEquipment:Definition, + {00000000-0000-0000-0037-000000000002}, !- Handle + Space Function Office open plan Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.50272566220473, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Fraction Latent + 0.5; !- Fraction Radiant + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name + {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name + {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000005}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_ClgSch0, !- Name + {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0038-000000000006}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_HtgSch0, !- Name + {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0039-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {92c8007f-2601-4a81-901a-d10c55a60863}<23.9 && {92c8007f-2601-4a81-901a-d10c55a60863}>1.7, !- Program Line 1 + SET {8fbb60be-7c17-4014-8328-9460b16ba696} = 29.4, !- Program Line 2 + SET {481e682b-c9d9-42df-a157-c47ce5139883} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {92c8007f-2601-4a81-901a-d10c55a60863}<23.9 && {92c8007f-2601-4a81-901a-d10c55a60863}>1.7, !- Program Line 4 + SET {8fbb60be-7c17-4014-8328-9460b16ba696} = 29.4, !- Program Line 5 + SET {481e682b-c9d9-42df-a157-c47ce5139883} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {92c8007f-2601-4a81-901a-d10c55a60863}<23.9 && {92c8007f-2601-4a81-901a-d10c55a60863}>1.7, !- Program Line 7 + SET {8fbb60be-7c17-4014-8328-9460b16ba696} = 29.4, !- Program Line 8 + SET {481e682b-c9d9-42df-a157-c47ce5139883} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {92c8007f-2601-4a81-901a-d10c55a60863}<23.9 && {92c8007f-2601-4a81-901a-d10c55a60863}>1.7, !- Program Line 10 + SET {8fbb60be-7c17-4014-8328-9460b16ba696} = 29.4, !- Program Line 11 + SET {481e682b-c9d9-42df-a157-c47ce5139883} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {8fbb60be-7c17-4014-8328-9460b16ba696} = NULL, !- Program Line 14 + SET {481e682b-c9d9-42df-a157-c47ce5139883} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0039-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {a252cf65-acbd-4fc5-88b5-ef26a0ab96bb}<23.9 && {a252cf65-acbd-4fc5-88b5-ef26a0ab96bb}>1.7, !- Program Line 1 + SET {976255b5-7ad4-42bc-8bb7-5670bbfc32e8} = 29.4, !- Program Line 2 + SET {7cc98a62-f8ee-4bff-aa22-5af5d486e93f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {a252cf65-acbd-4fc5-88b5-ef26a0ab96bb}<23.9 && {a252cf65-acbd-4fc5-88b5-ef26a0ab96bb}>1.7, !- Program Line 4 + SET {976255b5-7ad4-42bc-8bb7-5670bbfc32e8} = 29.4, !- Program Line 5 + SET {7cc98a62-f8ee-4bff-aa22-5af5d486e93f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {a252cf65-acbd-4fc5-88b5-ef26a0ab96bb}<23.9 && {a252cf65-acbd-4fc5-88b5-ef26a0ab96bb}>1.7, !- Program Line 7 + SET {976255b5-7ad4-42bc-8bb7-5670bbfc32e8} = 29.4, !- Program Line 8 + SET {7cc98a62-f8ee-4bff-aa22-5af5d486e93f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {a252cf65-acbd-4fc5-88b5-ef26a0ab96bb}<23.9 && {a252cf65-acbd-4fc5-88b5-ef26a0ab96bb}>1.7, !- Program Line 10 + SET {976255b5-7ad4-42bc-8bb7-5670bbfc32e8} = 29.4, !- Program Line 11 + SET {7cc98a62-f8ee-4bff-aa22-5af5d486e93f} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {976255b5-7ad4-42bc-8bb7-5670bbfc32e8} = NULL, !- Program Line 14 + SET {7cc98a62-f8ee-4bff-aa22-5af5d486e93f} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0039-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {5f9527c8-b392-444b-a8fb-52dc9107030e}<23.9 && {5f9527c8-b392-444b-a8fb-52dc9107030e}>1.7, !- Program Line 1 + SET {2707cd53-4c43-48fe-a17c-507fdccb58c4} = 29.4, !- Program Line 2 + SET {4c5f8bb3-2a7d-441c-af25-4afd19fc4bcd} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {5f9527c8-b392-444b-a8fb-52dc9107030e}<23.9 && {5f9527c8-b392-444b-a8fb-52dc9107030e}>1.7, !- Program Line 4 + SET {2707cd53-4c43-48fe-a17c-507fdccb58c4} = 29.4, !- Program Line 5 + SET {4c5f8bb3-2a7d-441c-af25-4afd19fc4bcd} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {5f9527c8-b392-444b-a8fb-52dc9107030e}<23.9 && {5f9527c8-b392-444b-a8fb-52dc9107030e}>1.7, !- Program Line 7 + SET {2707cd53-4c43-48fe-a17c-507fdccb58c4} = 29.4, !- Program Line 8 + SET {4c5f8bb3-2a7d-441c-af25-4afd19fc4bcd} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {5f9527c8-b392-444b-a8fb-52dc9107030e}<23.9 && {5f9527c8-b392-444b-a8fb-52dc9107030e}>1.7, !- Program Line 10 + SET {2707cd53-4c43-48fe-a17c-507fdccb58c4} = 29.4, !- Program Line 11 + SET {4c5f8bb3-2a7d-441c-af25-4afd19fc4bcd} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {2707cd53-4c43-48fe-a17c-507fdccb58c4} = NULL, !- Program Line 14 + SET {4c5f8bb3-2a7d-441c-af25-4afd19fc4bcd} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0040-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0039-000000000001}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0040-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0039-000000000002}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0040-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__3_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0039-000000000003}; !- Program Name 1 + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0041-000000000001}, !- Handle + OAT, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0041-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0041-000000000003}, !- Handle + OAT_2, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:Facility, + {00000000-0000-0000-0042-000000000001}; !- Handle + +OS:Fan:ConstantVolume, + {00000000-0000-0000-0043-000000000001}, !- Handle + Fan Constant Volume 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.39975, !- Fan Total Efficiency + 640, !- Pressure Rise {Pa} + AutoSize, !- Maximum Flow Rate {m3/s} + 0.615, !- Motor Efficiency + , !- Motor In Airstream Fraction + {00000000-0000-0000-0020-000000000080}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000078}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000206}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000207}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000314}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000315}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000003}, !- Handle + Sys6 Return Fan 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000422}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000423}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000004}, !- Handle + Sys6 Return Fan, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000168}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000169}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000005}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000201}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000199}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000006}, !- Handle + Sys6 Supply Fan 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.22, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -0.3477, !- Fan Power Coefficient 1 + 4.0976, !- Fan Power Coefficient 2 + -5.0024, !- Fan Power Coefficient 3 + 2.268, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000309}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000307}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000007}, !- Handle + Sys6 Supply Fan 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000417}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000415}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0044-000000000008}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0020-000000000163}, !- Air Inlet Node Name + {00000000-0000-0000-0020-000000000161}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Foundation:Kiva, + {00000000-0000-0000-0045-000000000001}, !- Handle + Bldg Kiva Foundation, !- Name + , !- Initial Indoor Air Temperature {C} + , !- Interior Horizontal Insulation Material Name + , !- Interior Horizontal Insulation Depth {m} + , !- Interior Horizontal Insulation Width {m} + , !- Interior Vertical Insulation Material Name + , !- Interior Vertical Insulation Depth {m} + , !- Exterior Horizontal Insulation Material Name + , !- Exterior Horizontal Insulation Depth {m} + , !- Exterior Horizontal Insulation Width {m} + , !- Exterior Vertical Insulation Material Name + , !- Exterior Vertical Insulation Depth {m} + 0, !- Wall Height Above Grade {m} + 0, !- Wall Depth Below Slab {m} + , !- Footing Wall Construction Name + , !- Footing Material Name + ; !- Footing Depth {m} + +OS:Foundation:Kiva:Settings, + {00000000-0000-0000-0046-000000000001}, !- Handle + , !- Soil Conductivity {W/m-K} + , !- Soil Density {kg/m3} + , !- Soil Specific Heat {J/kg-K} + , !- Ground Solar Absorptivity {dimensionless} + , !- Ground Thermal Absorptivity {dimensionless} + , !- Ground Surface Roughness {m} + , !- Far-Field Width {m} + , !- Deep-Ground Boundary Condition + , !- Deep-Ground Depth {m} + , !- Minimum Cell Dimension {m} + , !- Maximum Cell Growth Coefficient {dimensionless} + ; !- Simulation Timestep + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0047-000000000001}, !- Handle + sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000611}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000612}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000615}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000616}, !- Exhaust Air Outlet Node + 657.843925054951, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0047-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000623}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000624}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000627}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000628}, !- Exhaust Air Outlet Node + 1153.90903758374, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0047-000000000003}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000629}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000630}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000633}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000634}, !- Exhaust Air Outlet Node + 11089.0903758374, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0047-000000000004}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000635}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000636}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000639}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000640}, !- Exhaust Air Outlet Node + 1153.90903758374, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout -OS:Connection, - {00000000-0000-0000-0020-000000000283}, !- Handle - {00000000-0000-0000-0022-000000000008}, !- Source Object - 22, !- Outlet Port - {00000000-0000-0000-0049-000000000099}, !- Target Object - 2; !- Inlet Port +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0047-000000000005}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0020-000000000617}, !- Supply Air Inlet Node + {00000000-0000-0000-0020-000000000618}, !- Supply Air Outlet Node + {00000000-0000-0000-0020-000000000621}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0020-000000000622}, !- Exhaust Air Outlet Node + 292.796810422557, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout -OS:Connection, - {00000000-0000-0000-0020-000000000284}, !- Handle - {00000000-0000-0000-0049-000000000099}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0096-000000000019}, !- Target Object - 2; !- Inlet Port +OS:Lights, + {00000000-0000-0000-0048-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Lights, !- Name + {00000000-0000-0000-0049-000000000001}, !- Lights Definition Name + {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:Connection, - {00000000-0000-0000-0020-000000000285}, !- Handle - {00000000-0000-0000-0096-000000000019}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0049-000000000100}, !- Target Object - 2; !- Inlet Port +OS:Lights, + {00000000-0000-0000-0048-000000000002}, !- Handle + Space Function Office open plan Lights, !- Name + {00000000-0000-0000-0049-000000000002}, !- Lights Definition Name + {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:Connection, - {00000000-0000-0000-0020-000000000286}, !- Handle - {00000000-0000-0000-0049-000000000100}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0021-000000000008}, !- Target Object - 22; !- Inlet Port +OS:Lights:Definition, + {00000000-0000-0000-0049-000000000001}, !- Handle + Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.60167173948557, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible -OS:Connection, - {00000000-0000-0000-0020-000000000287}, !- Handle - {00000000-0000-0000-0049-000000000137}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object - 12; !- Inlet Port +OS:Lights:Definition, + {00000000-0000-0000-0049-000000000002}, !- Handle + Space Function Office open plan Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.60000638299888, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.5, !- Fraction Radiant + 0.2; !- Fraction Visible -OS:Connection, - {00000000-0000-0000-0020-000000000288}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000141}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000001}, !- Handle + 1/2IN Gypsum 1, !- 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:Connection, - {00000000-0000-0000-0020-000000000289}, !- Handle - {00000000-0000-0000-0049-000000000141}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object - 6; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000002}, !- 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:Connection, - {00000000-0000-0000-0020-000000000290}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000142}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000003}, !- Handle + 100mm Normalweight concrete floor 1, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} -OS:Connection, - {00000000-0000-0000-0020-000000000291}, !- Handle - {00000000-0000-0000-0049-000000000142}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object - 14; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000004}, !- Handle + 100mm Normalweight concrete floor, !- Name + MediumSmooth, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} -OS:Connection, - {00000000-0000-0000-0020-000000000292}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0049-000000000138}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000005}, !- Handle + 1IN Stucco 1, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000293}, !- Handle - {00000000-0000-0000-0049-000000000146}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000002}, !- Target Object - 12; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000006}, !- Handle + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000294}, !- Handle - {00000000-0000-0000-0043-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0049-000000000150}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000007}, !- Handle + 4 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000295}, !- Handle - {00000000-0000-0000-0049-000000000150}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0003-000000000002}, !- Target Object - 6; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000008}, !- Handle + 4 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000296}, !- Handle - {00000000-0000-0000-0003-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0049-000000000151}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000009}, !- Handle + 6 in. Normalweight Concrete Floor 1, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000297}, !- Handle - {00000000-0000-0000-0049-000000000151}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0043-000000000002}, !- Target Object - 14; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000010}, !- Handle + 6 in. Normalweight Concrete Floor 2, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connection, - {00000000-0000-0000-0020-000000000298}, !- Handle - {00000000-0000-0000-0043-000000000002}, !- Source Object - 15, !- Outlet Port - {00000000-0000-0000-0049-000000000147}, !- Target Object - 2; !- Inlet Port +OS:Material, + {00000000-0000-0000-0050-000000000011}, !- Handle + 6 in. Normalweight Concrete Floor 3, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000001}, !- Handle - Connector Mixer 1, !- Name - {00000000-0000-0000-0020-000000000069}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000060}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000064}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000068}; !- Inlet Branch Name 3 +OS:Material, + {00000000-0000-0000-0050-000000000012}, !- Handle + 6 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000002}, !- Handle - Connector Mixer 2, !- Name - {00000000-0000-0000-0020-000000000053}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000088}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000157}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000174}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000178}; !- Inlet Branch Name 4 +OS:Material, + {00000000-0000-0000-0050-000000000013}, !- Handle + 8IN CONCRETE HW RefBldg 1, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000003}, !- Handle - Connector Mixer 3, !- Name - {00000000-0000-0000-0020-000000000117}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000108}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000112}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000116}; !- Inlet Branch Name 3 +OS:Material, + {00000000-0000-0000-0050-000000000014}, !- Handle + 8IN CONCRETE HW RefBldg, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000004}, !- Handle - Connector Mixer 4, !- Name - {00000000-0000-0000-0020-000000000101}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000160}; !- Inlet Branch Name 1 +OS:Material, + {00000000-0000-0000-0050-000000000015}, !- Handle + Expanded Polystyrene 1, !- Name + MediumSmooth, !- Roughness + 0.100199429303091, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000005}, !- Handle - Connector Mixer 5, !- Name - {00000000-0000-0000-0020-000000000138}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000133}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000137}; !- Inlet Branch Name 2 +OS:Material, + {00000000-0000-0000-0050-000000000016}, !- Handle + Expanded Polystyrene, !- Name + MediumSmooth, !- Roughness + 0.0363958681740979, !- Thickness {m} + 0.029, !- Conductivity {W/m-K} + 29, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:Connector:Mixer, - {00000000-0000-0000-0021-000000000006}, !- Handle - Connector Mixer 6, !- Name - {00000000-0000-0000-0020-000000000126}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000143}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000147}; !- Inlet Branch Name 2 +OS:Material, + {00000000-0000-0000-0050-000000000017}, !- Handle + F08 Metal surface 1, !- 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:Connector:Mixer, - {00000000-0000-0000-0021-000000000007}, !- Handle - Connector Mixer 7, !- Name - {00000000-0000-0000-0020-000000000205}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000197}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000201}; !- Inlet Branch Name 2 +OS:Material, + {00000000-0000-0000-0050-000000000018}, !- 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:Connector:Mixer, - {00000000-0000-0000-0021-000000000008}, !- Handle - Connector Mixer 8, !- Name - {00000000-0000-0000-0020-000000000208}, !- Outlet Branch Name - {00000000-0000-0000-0020-000000000204}, !- Inlet Branch Name 1 - {00000000-0000-0000-0020-000000000214}, !- Inlet Branch Name 2 - {00000000-0000-0000-0020-000000000218}, !- Inlet Branch Name 3 - {00000000-0000-0000-0020-000000000222}, !- Inlet Branch Name 4 - {00000000-0000-0000-0020-000000000226}, !- Inlet Branch Name 5 - {00000000-0000-0000-0020-000000000230}, !- Inlet Branch Name 6 - {00000000-0000-0000-0020-000000000234}, !- Inlet Branch Name 7 - {00000000-0000-0000-0020-000000000238}, !- Inlet Branch Name 8 - {00000000-0000-0000-0020-000000000242}, !- Inlet Branch Name 9 - {00000000-0000-0000-0020-000000000246}, !- Inlet Branch Name 10 - {00000000-0000-0000-0020-000000000250}, !- Inlet Branch Name 11 - {00000000-0000-0000-0020-000000000254}, !- Inlet Branch Name 12 - {00000000-0000-0000-0020-000000000258}, !- Inlet Branch Name 13 - {00000000-0000-0000-0020-000000000262}, !- Inlet Branch Name 14 - {00000000-0000-0000-0020-000000000266}, !- Inlet Branch Name 15 - {00000000-0000-0000-0020-000000000270}, !- Inlet Branch Name 16 - {00000000-0000-0000-0020-000000000274}, !- Inlet Branch Name 17 - {00000000-0000-0000-0020-000000000278}, !- Inlet Branch Name 18 - {00000000-0000-0000-0020-000000000282}, !- Inlet Branch Name 19 - {00000000-0000-0000-0020-000000000286}; !- Inlet Branch Name 20 +OS:Material, + {00000000-0000-0000-0050-000000000019}, !- Handle + G01 13mm gypsum board 1, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000001}, !- Handle - Connector Splitter 1, !- Name - {00000000-0000-0000-0020-000000000057}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000048}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000061}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000065}; !- Outlet Branch Name 3 +OS:Material, + {00000000-0000-0000-0050-000000000020}, !- Handle + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000002}, !- Handle - Connector Splitter 2, !- Name - {00000000-0000-0000-0020-000000000051}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000052}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000154}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000171}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000175}; !- Outlet Branch Name 4 +OS:Material, + {00000000-0000-0000-0050-000000000021}, !- 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:Connector:Splitter, - {00000000-0000-0000-0022-000000000003}, !- Handle - Connector Splitter 3, !- Name - {00000000-0000-0000-0020-000000000105}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000096}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000109}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000113}; !- Outlet Branch Name 3 +OS:Material, + {00000000-0000-0000-0050-000000000022}, !- Handle + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1842, !- Density {kg/m3} + 912; !- Specific Heat {J/kg-K} -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000004}, !- Handle - Connector Splitter 4, !- Name - {00000000-0000-0000-0020-000000000099}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000100}; !- Outlet Branch Name 1 +OS:Material, + {00000000-0000-0000-0050-000000000023}, !- Handle + Metal Roof Surface 1, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000005}, !- Handle - Connector Splitter 5, !- Name - {00000000-0000-0000-0020-000000000130}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000121}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000134}; !- Outlet Branch Name 2 +OS:Material, + {00000000-0000-0000-0050-000000000024}, !- Handle + Metal Roof Surface, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000006}, !- Handle - Connector Splitter 6, !- Name - {00000000-0000-0000-0020-000000000124}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000125}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000144}; !- Outlet Branch Name 2 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000001}, !- Handle + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000007}, !- Handle - Connector Splitter 7, !- Name - {00000000-0000-0000-0020-000000000194}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000186}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000198}; !- Outlet Branch Name 2 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000002}, !- Handle + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 2.88291975297193, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Connector:Splitter, - {00000000-0000-0000-0022-000000000008}, !- Handle - Connector Splitter 8, !- Name - {00000000-0000-0000-0020-000000000189}, !- Inlet Branch Name - {00000000-0000-0000-0020-000000000190}, !- Outlet Branch Name 1 - {00000000-0000-0000-0020-000000000211}, !- Outlet Branch Name 2 - {00000000-0000-0000-0020-000000000215}, !- Outlet Branch Name 3 - {00000000-0000-0000-0020-000000000219}, !- Outlet Branch Name 4 - {00000000-0000-0000-0020-000000000223}, !- Outlet Branch Name 5 - {00000000-0000-0000-0020-000000000227}, !- Outlet Branch Name 6 - {00000000-0000-0000-0020-000000000231}, !- Outlet Branch Name 7 - {00000000-0000-0000-0020-000000000235}, !- Outlet Branch Name 8 - {00000000-0000-0000-0020-000000000239}, !- Outlet Branch Name 9 - {00000000-0000-0000-0020-000000000243}, !- Outlet Branch Name 10 - {00000000-0000-0000-0020-000000000247}, !- Outlet Branch Name 11 - {00000000-0000-0000-0020-000000000251}, !- Outlet Branch Name 12 - {00000000-0000-0000-0020-000000000255}, !- Outlet Branch Name 13 - {00000000-0000-0000-0020-000000000259}, !- Outlet Branch Name 14 - {00000000-0000-0000-0020-000000000263}, !- Outlet Branch Name 15 - {00000000-0000-0000-0020-000000000267}, !- Outlet Branch Name 16 - {00000000-0000-0000-0020-000000000271}, !- Outlet Branch Name 17 - {00000000-0000-0000-0020-000000000275}, !- Outlet Branch Name 18 - {00000000-0000-0000-0020-000000000279}, !- Outlet Branch Name 19 - {00000000-0000-0000-0020-000000000283}; !- Outlet Branch Name 20 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000003}, !- Handle + Typical Carpet Pad 1, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000004}, !- Handle + Typical Carpet Pad 2, !- Name + Smooth, !- Roughness + 1.25502993703786, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000001}, !- Handle - BTAP-Ext-DaylightDiffuser, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000005}, !- Handle + Typical Carpet Pad 3, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000002}, !- Handle - BTAP-Ext-DaylightDiffuser:U=0.241 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000003}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000006}, !- Handle + Typical Carpet Pad 4, !- Name + Smooth, !- Roughness + 3.45515273458935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000003}, !- Handle - BTAP-Ext-DaylightDomes, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000007}, !- Handle + Typical Carpet Pad, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000004}, !- Handle - BTAP-Ext-DaylightDomes:U=0.241 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000003}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000008}, !- Handle + Typical Insulation 1, !- Name + Smooth, !- Roughness + 6.98591414061624, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000005}, !- Handle - BTAP-Ext-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000018}, !- Layer 1 - {00000000-0000-0000-0047-000000000013}; !- Layer 2 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000009}, !- Handle + Typical Insulation 2, !- Name + Smooth, !- Roughness + 4.38022034120929, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000006}, !- Handle - BTAP-Ext-Door:U-1.73, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000017}, !- Layer 1 - {00000000-0000-0000-0047-000000000011}; !- Layer 2 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000010}, !- Handle + Typical Insulation 3, !- Name + Smooth, !- Roughness + 8.26444514207283, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000007}, !- Handle - BTAP-Ext-FixedWindow, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000011}, !- Handle + Typical Insulation 4, !- Name + Smooth, !- Roughness + 0.578017014236402, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000008}, !- Handle - BTAP-Ext-FixedWindow:U=0.173 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000012}, !- Handle + Typical Insulation 5, !- Name + Smooth, !- Roughness + 0.578034682080925, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000009}, !- Handle - BTAP-Ext-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000013}, !- Layer 1 - {00000000-0000-0000-0046-000000000008}, !- Layer 2 - {00000000-0000-0000-0047-000000000007}; !- Layer 3 +OS:Material:NoMass, + {00000000-0000-0000-0051-000000000013}, !- Handle + Typical Insulation, !- Name + Smooth, !- Roughness + 0.101874652714525, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance -OS:Construction, - {00000000-0000-0000-0023-000000000010}, !- Handle - BTAP-Ext-Floor-Mass:U-0.138, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000008}, !- Layer 1 - {00000000-0000-0000-0046-000000000007}, !- Layer 2 - {00000000-0000-0000-0047-000000000003}; !- Layer 3 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000001}, !- Handle + Availability Manager Night Cycle 1 Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000011}, !- Handle - BTAP-Ext-GlassDoors, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000002}, !- Handle + Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000012}, !- Handle - BTAP-Ext-GlassDoors:U=0.173 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000002}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000003}, !- Handle + Availability Manager Night Cycle 1 Heating Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000013}, !- Handle - BTAP-Ext-OverHeadDoor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000013}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000004}, !- Handle + Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000014}, !- Handle - BTAP-Ext-OverHeadDoor:U-1.73, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000012}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000015}, !- Handle - BTAP-Ext-Roof-Metal, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000024}, !- Layer 1 - {00000000-0000-0000-0047-000000000013}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000016}, !- Handle - BTAP-Ext-Roof-Metal:U-0.121, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000023}, !- Layer 1 - {00000000-0000-0000-0047-000000000010}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000017}, !- Handle - BTAP-Ext-Skylights, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000018}, !- Handle - BTAP-Ext-Skylights:U=0.241 SHGC=0.600, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000003}; !- Layer 1 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000019}, !- Handle - BTAP-Ext-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000006}, !- Layer 1 - {00000000-0000-0000-0046-000000000014}, !- Layer 2 - {00000000-0000-0000-0047-000000000013}, !- Layer 3 - {00000000-0000-0000-0046-000000000002}; !- Layer 4 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000020}, !- Handle - BTAP-Ext-Wall-Mass:U-0.215, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000005}, !- Layer 1 - {00000000-0000-0000-0046-000000000013}, !- Layer 2 - {00000000-0000-0000-0047-000000000009}, !- Layer 3 - {00000000-0000-0000-0046-000000000001}; !- Layer 4 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000021}, !- Handle - BTAP-Grnd-Floor-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000012}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000022}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000009}, !- Layer 1 - {00000000-0000-0000-0047-000000000004}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000013}, !- Handle + Availability Manager Night Cycle 4 Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000023}, !- Handle - BTAP-Grnd-Floor-Mass:U-0.757_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000009}, !- Layer 1 - {00000000-0000-0000-0046-000000000016}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000014}, !- Handle + Availability Manager Night Cycle 4 Cooling Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000024}, !- Handle - BTAP-Grnd-Roof-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000012}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000015}, !- Handle + Availability Manager Night Cycle 4 Heating Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000025}, !- Handle - BTAP-Grnd-Roof-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000011}, !- Layer 1 - {00000000-0000-0000-0047-000000000006}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000016}, !- Handle + Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000026}, !- Handle - BTAP-Grnd-Wall-Mass, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000012}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000017}, !- Handle + Availability Manager Night Cycle 5 Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000027}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000010}, !- Layer 1 - {00000000-0000-0000-0047-000000000005}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000018}, !- Handle + Availability Manager Night Cycle 5 Cooling Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000028}, !- Handle - BTAP-Grnd-Wall-Mass:U-0.284_std, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000010}, !- Layer 1 - {00000000-0000-0000-0046-000000000015}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000019}, !- Handle + Availability Manager Night Cycle 5 Heating Control Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000029}, !- Handle - BTAP-Int-Ceiling, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000007}, !- Layer 1 - {00000000-0000-0000-0046-000000000003}; !- Layer 2 +OS:ModelObjectList, + {00000000-0000-0000-0052-000000000020}, !- Handle + Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name -OS:Construction, - {00000000-0000-0000-0023-000000000030}, !- Handle - BTAP-Int-Door, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000021}; !- Layer 1 +OS:Node, + {00000000-0000-0000-0053-000000000001}, !- Handle + 1089gal NaturalGas Water Heater - 735kBtu/hr 0.905 Therm Eff Supply Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000510}, !- Inlet Port + {00000000-0000-0000-0020-000000000519}; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000031}, !- Handle - BTAP-Int-Floor, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000003}, !- Layer 1 - {00000000-0000-0000-0047-000000000007}; !- Layer 2 +OS:Node, + {00000000-0000-0000-0053-000000000002}, !- Handle + 1089gal NaturalGas Water Heater - 735kBtu/hr 0.905 Therm Eff Supply Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000520}, !- Inlet Port + {00000000-0000-0000-0020-000000000521}; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000032}, !- Handle - BTAP-Int-Partition, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000021}; !- Layer 1 +OS:Node, + {00000000-0000-0000-0053-000000000003}, !- Handle + ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000025}, !- Inlet Port + ; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000033}, !- Handle - BTAP-Int-Wall, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000019}, !- Layer 1 - {00000000-0000-0000-0046-000000000019}; !- Layer 2 +OS:Node, + {00000000-0000-0000-0053-000000000004}, !- Handle + ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000037}, !- Inlet Port + ; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000034}, !- Handle - BTAP-Int-Window, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0100-000000000001}; !- Layer 1 +OS:Node, + {00000000-0000-0000-0053-000000000005}, !- Handle + ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000027}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000006}, !- Handle + ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000180}, !- Inlet Port + {00000000-0000-0000-0020-000000000181}; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000035}, !- Handle - Basement Floor construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000022}, !- Layer 1 - {00000000-0000-0000-0047-000000000001}; !- Layer 2 +OS:Node, + {00000000-0000-0000-0053-000000000007}, !- Handle + ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000036}, !- Inlet Port + ; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000036}, !- Handle - Basement Wall construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000022}; !- Layer 1 +OS:Node, + {00000000-0000-0000-0053-000000000008}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000232}, !- Inlet Port + {00000000-0000-0000-0020-000000000233}; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000037}, !- Handle - Floor Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0047-000000000001}, !- Layer 1 - {00000000-0000-0000-0046-000000000004}, !- Layer 2 - {00000000-0000-0000-0047-000000000002}; !- Layer 3 +OS:Node, + {00000000-0000-0000-0053-000000000009}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000030}, !- Inlet Port + ; !- Outlet Port -OS:Construction, - {00000000-0000-0000-0023-000000000038}, !- Handle - Wall Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0046-000000000020}, !- Layer 1 - {00000000-0000-0000-0046-000000000020}; !- Layer 2 +OS:Node, + {00000000-0000-0000-0053-000000000010}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000260}, !- Inlet Port + {00000000-0000-0000-0020-000000000261}; !- Outlet Port -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method +OS:Node, + {00000000-0000-0000-0053-000000000011}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000031}, !- Inlet Port + ; !- Outlet Port -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0024-000000000002}, !- Handle - Controller Mechanical Ventilation 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method +OS:Node, + {00000000-0000-0000-0053-000000000012}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000218}, !- Inlet Port + {00000000-0000-0000-0020-000000000219}; !- Outlet Port -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0062-000000000023}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Node, + {00000000-0000-0000-0053-000000000013}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000038}, !- Inlet Port + ; !- Outlet Port -OS:Controller:OutdoorAir, - {00000000-0000-0000-0025-000000000002}, !- Handle - Controller Outdoor Air 2, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name - , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - NoEconomizer, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} - 64000, !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0062-000000000024}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0024-000000000002}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Node, + {00000000-0000-0000-0053-000000000014}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000274}, !- Inlet Port + {00000000-0000-0000-0020-000000000275}; !- Outlet Port -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000001}, !- Handle - Controller Water Coil 1, !- Name - {00000000-0000-0000-0018-000000000001}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} +OS:Node, + {00000000-0000-0000-0053-000000000015}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000043}, !- Inlet Port + ; !- Outlet Port -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000002}, !- Handle - Controller Water Coil 2, !- Name - {00000000-0000-0000-0016-000000000001}, !- Water Coil Name - , !- Control Variable - Reverse, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - , !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} +OS:Node, + {00000000-0000-0000-0053-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000246}, !- Inlet Port + {00000000-0000-0000-0020-000000000247}; !- Outlet Port -OS:Controller:WaterCoil, - {00000000-0000-0000-0026-000000000003}, !- Handle - Controller Water Coil 3, !- Name - {00000000-0000-0000-0018-000000000002}, !- Water Coil Name - , !- Control Variable - Normal, !- Action - , !- Actuator Variable - , !- Sensor Node Name - , !- Actuator Node Name - 0.0001, !- Controller Convergence Tolerance {deltaC} - , !- Maximum Actuated Flow {m3/s} - ; !- Minimum Actuated Flow {m3/s} +OS:Node, + {00000000-0000-0000-0053-000000000017}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000045}, !- Inlet Port + ; !- Outlet Port -OS:CoolingTower:SingleSpeed, - {00000000-0000-0000-0027-000000000001}, !- Handle - Cooling Tower Single Speed 1, !- Name - {00000000-0000-0000-0020-000000000131}, !- Water Inlet Node Name - {00000000-0000-0000-0020-000000000132}, !- Water Outlet Node Name - autosize, !- Design Water Flow Rate {m3/s} - autosize, !- Design Air Flow Rate {m3/s} - 228.936804464239, !- Fan Power at Design Air Flow Rate {W} - autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} - autosize, !- Air Flow Rate in Free Convection Regime {m3/s} - autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} - UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method - , !- Nominal Capacity {W} - 0, !- Free Convection Capacity {W} - 0, !- Basin Heater Capacity {W/K} - 2, !- Basin Heater Setpoint Temperature {C} - , !- Basin Heater Operating Schedule Name - LossFactor, !- Evaporation Loss Mode - 0.2, !- Evaporation Loss Factor {percent/K} - 0.008, !- Drift Loss Percent {percent} - ConcentrationRatio, !- Blowdown Calculation Mode - 3, !- Blowdown Concentration Ratio - , !- Blowdown Makeup Water Usage Schedule Name - , !- Outdoor Air Inlet Node Name - FanCycling, !- Capacity Control - 1, !- Number of Cells - MinimalCell, !- Cell Control - 0.33, !- Cell Minimum Water Flow Rate Fraction - 2.5, !- Cell Maximum Water Flow Rate Fraction - 1, !- Sizing Factor - 0.1, !- Free Convection Air Flow Rate Sizing Factor - 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor - 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio - 0.1, !- Free Convection Nominal Capacity Sizing Factor - 35, !- Design Inlet Air Dry-Bulb Temperature {C} - 24, !- Design Inlet Air Wet-Bulb Temperature {C} - 5, !- Design Approach Temperature {deltaC} - 6, !- Design Range Temperature {deltaC} - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000288}, !- Inlet Port + {00000000-0000-0000-0020-000000000289}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000001}, !- Handle - Curve Biquadratic 1, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.000554364, !- Coefficient3 x**2 - -0.00755748, !- Coefficient4 y - 3.3048e-05, !- Coefficient5 y**2 - -0.000191808, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000019}, !- Handle + ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000024}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000002}, !- Handle - Curve Biquadratic 2, !- Name - 0.116936, !- Coefficient1 Constant - 0.0284933, !- Coefficient2 x - -0.000411156, !- Coefficient3 x**2 - 0.0214108, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000368}, !- Inlet Port + {00000000-0000-0000-0020-000000000369}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000003}, !- Handle - Curve Biquadratic 3, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000021}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000033}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000004}, !- Handle - Curve Biquadratic 4, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000354}, !- Inlet Port + {00000000-0000-0000-0020-000000000355}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000023}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000035}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000005}, !- Handle - Curve Biquadratic 5, !- Name - 1.0215158, !- Coefficient1 Constant - 0.037035864, !- Coefficient2 x - 0.0002332476, !- Coefficient3 x**2 - -0.003894048, !- Coefficient4 y - -6.52536e-05, !- Coefficient5 y**2 - -0.0002680452, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000340}, !- Inlet Port + {00000000-0000-0000-0020-000000000341}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000006}, !- Handle - Curve Biquadratic 6, !- Name - 0.70176857, !- Coefficient1 Constant - -0.00452016, !- Coefficient2 x - 0.0005331096, !- Coefficient3 x**2 - -0.005498208, !- Coefficient4 y - 0.0005445792, !- Coefficient5 y**2 - -0.0007290324, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000025}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000040}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000007}, !- Handle - DXCOOL-NECB2011-REF-CAPFT, !- Name - 0.867905, !- Coefficient1 Constant - 0.0142459, !- Coefficient2 x - 0.00055436, !- Coefficient3 x**2 - -0.0075575, !- Coefficient4 y - 3.3e-05, !- Coefficient5 y**2 - -0.0001918, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000026}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000326}, !- Inlet Port + {00000000-0000-0000-0020-000000000327}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000008}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFT, !- Name - 0.1141714, !- Coefficient1 Constant - 0.02818224, !- Coefficient2 x - -0.0004199, !- Coefficient3 x**2 - 0.02141082, !- Coefficient4 y - 0.000161028, !- Coefficient5 y**2 - -0.000679104, !- Coefficient6 x*y - 13, !- Minimum Value of x - 24, !- Maximum Value of x - 24, !- Minimum Value of y - 46; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000027}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000042}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000009}, !- Handle - WaterCooled_Scroll_CAPFT_NECB2011, !- Name - 0.94418, !- Coefficient1 Constant - 0.0337102, !- Coefficient2 x - 9.75564e-05, !- Coefficient3 x**2 - -0.00322114, !- Coefficient4 y - -4.91832e-05, !- Coefficient5 y**2 - -0.000177584, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000028}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000382}, !- Inlet Port + {00000000-0000-0000-0020-000000000383}; !- Outlet Port -OS:Curve:Biquadratic, - {00000000-0000-0000-0028-000000000010}, !- Handle - WaterCooled_Scroll_EIRFT_NECB2011, !- Name - 0.727393, !- Coefficient1 Constant - -0.0118922, !- Coefficient2 x - 0.000541177, !- Coefficient3 x**2 - 0.00187934, !- Coefficient4 y - 0.000473461, !- Coefficient5 y**2 - -0.000711472, !- Coefficient6 x*y - 5, !- Minimum Value of x - 10, !- Maximum Value of x - 24, !- Minimum Value of y - 35; !- Maximum Value of y +OS:Node, + {00000000-0000-0000-0053-000000000029}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000044}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000001}, !- Handle - BOILER-EFFFPLR-NECB2011, !- Name - 0.3831, !- Coefficient1 Constant - 2.0567, !- Coefficient2 x - -2.6469, !- Coefficient3 x**2 - 1.2148, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000030}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000396}, !- Inlet Port + {00000000-0000-0000-0020-000000000397}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000002}, !- Handle - Curve Cubic 1, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000031}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000028}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000003}, !- Handle - DXCOOL-NECB2011-REF-COOLPLFFPLR, !- Name - 0.0277, !- Coefficient1 Constant - 4.9151, !- Coefficient2 x - -8.184, !- Coefficient3 x**2 - 4.2702, !- Coefficient4 x**3 - 0.7, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000032}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000462}, !- Inlet Port + {00000000-0000-0000-0020-000000000463}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000004}, !- Handle - FURNACE-EFFPLR-NECB2011, !- Name - 0.722, !- Coefficient1 Constant - 0.8211, !- Coefficient2 x - -1.0396, !- Coefficient3 x**2 - 0.5, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000033}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000029}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000005}, !- Handle - SWH-EFFFPLR-NECB2011, !- Name - 0.7576, !- Coefficient1 Constant - 1.0071, !- Coefficient2 x - -1.4443, !- Coefficient3 x**2 - 0.6844, !- Coefficient4 x**3 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000034}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000476}, !- Inlet Port + {00000000-0000-0000-0020-000000000477}; !- Outlet Port -OS:Curve:Cubic, - {00000000-0000-0000-0029-000000000006}, !- Handle - VarVolFan-AFBIFanCurve-NECB2011-FPLR, !- Name - -2.4176, !- Coefficient1 Constant - 9.5874, !- Coefficient2 x - -11.559, !- Coefficient3 x**2 - 5.4009, !- Coefficient4 x**3 - 0.68, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000035}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000032}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000001}, !- Handle - Curve Quadratic 1, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000036}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000448}, !- Inlet Port + {00000000-0000-0000-0020-000000000449}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000002}, !- Handle - Curve Quadratic 2, !- Name - 1, !- Coefficient1 Constant - 0, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000037}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000034}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000003}, !- Handle - Curve Quadratic 3, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000038}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000490}, !- Inlet Port + {00000000-0000-0000-0020-000000000491}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000004}, !- Handle - Curve Quadratic 4, !- Name - 0.06369119, !- Coefficient1 Constant - 0.58488832, !- Coefficient2 x - 0.35280274, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000039}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000039}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000005}, !- Handle - DXCOOL-NECB2011-REF-CAPFFLOW, !- Name - 0.8, !- Coefficient1 Constant - 0.2, !- Coefficient2 x - 0, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000040}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Return Air Node, !- Name + {00000000-0000-0000-0020-000000000434}, !- Inlet Port + {00000000-0000-0000-0020-000000000435}; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000006}, !- Handle - DXCOOL-NECB2011-REF-COOLEIRFFLOW, !- Name - 1.1552, !- Coefficient1 Constant - -0.1808, !- Coefficient2 x - 0.0256, !- Coefficient3 x**2 - 0.5, !- Minimum Value of x - 1.5; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000041}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000041}, !- Inlet Port + ; !- Outlet Port -OS:Curve:Quadratic, - {00000000-0000-0000-0030-000000000007}, !- Handle - WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name - 0.04412, !- Coefficient1 Constant - 0.640367, !- Coefficient2 x - 0.319555, !- Coefficient3 x**2 - 0, !- Minimum Value of x - 1; !- Maximum Value of x +OS:Node, + {00000000-0000-0000-0053-000000000042}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0020-000000000504}, !- Inlet Port + {00000000-0000-0000-0020-000000000505}; !- Outlet Port -OS:DefaultConstructionSet, - {00000000-0000-0000-0031-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0034-000000000002}, !- Default Exterior Surface Constructions Name - {00000000-0000-0000-0034-000000000003}, !- Default Interior Surface Constructions Name - {00000000-0000-0000-0034-000000000001}, !- Default Ground Contact Surface Constructions Name - {00000000-0000-0000-0033-000000000001}, !- Default Exterior SubSurface Constructions Name - {00000000-0000-0000-0033-000000000002}, !- Default Interior SubSurface Constructions Name - {00000000-0000-0000-0023-000000000032}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - , !- Site Shading Construction Name - ; !- Adiabatic Surface Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000043}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name + {00000000-0000-0000-0020-000000000026}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000044}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000092}, !- Inlet Port + {00000000-0000-0000-0020-000000000093}; !- Outlet Port -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000001}, !- Handle - Space Function - undefined - Schedule Set, !- 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 - {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name +OS:Node, + {00000000-0000-0000-0053-000000000045}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000094}, !- Inlet Port + {00000000-0000-0000-0020-000000000089}; !- Outlet Port -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000002}, !- Handle - Space Function Electrical/Mechanical room-sch-A Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0062-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0062-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name +OS:Node, + {00000000-0000-0000-0053-000000000046}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000182}, !- Inlet Port + {00000000-0000-0000-0020-000000000183}; !- Outlet Port -OS:DefaultScheduleSet, - {00000000-0000-0000-0032-000000000003}, !- Handle - Space Function Office open plan Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {00000000-0000-0000-0062-000000000012}, !- Number of People Schedule Name - {00000000-0000-0000-0062-000000000016}, !- People Activity Level Schedule Name - {00000000-0000-0000-0062-000000000011}, !- Lighting Schedule Name - {00000000-0000-0000-0062-000000000010}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {00000000-0000-0000-0062-000000000002}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name +OS:Node, + {00000000-0000-0000-0053-000000000047}, !- Handle + Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000184}, !- Inlet Port + {00000000-0000-0000-0020-000000000179}; !- Outlet Port -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000008}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000008}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000006}, !- Door Construction Name - {00000000-0000-0000-0023-000000000012}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000014}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000018}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000004}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000002}; !- Tubular Daylight Diffuser Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000356}, !- Inlet Port + {00000000-0000-0000-0020-000000000357}; !- Outlet Port -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000002}, !- Handle - Default Sub Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000034}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000034}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000030}, !- 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:Node, + {00000000-0000-0000-0053-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000358}, !- Inlet Port + {00000000-0000-0000-0020-000000000353}; !- Outlet Port -OS:DefaultSubSurfaceConstructions, - {00000000-0000-0000-0033-000000000003}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000007}, !- Fixed Window Construction Name - {00000000-0000-0000-0023-000000000007}, !- Operable Window Construction Name - {00000000-0000-0000-0023-000000000005}, !- Door Construction Name - {00000000-0000-0000-0023-000000000011}, !- Glass Door Construction Name - {00000000-0000-0000-0023-000000000013}, !- Overhead Door Construction Name - {00000000-0000-0000-0023-000000000017}, !- Skylight Construction Name - {00000000-0000-0000-0023-000000000003}, !- Tubular Daylight Dome Construction Name - {00000000-0000-0000-0023-000000000001}; !- Tubular Daylight Diffuser Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000050}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000370}, !- Inlet Port + {00000000-0000-0000-0020-000000000371}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000001}, !- Handle - BTAP-Mass at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000022}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000027}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000025}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000051}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000372}, !- Inlet Port + {00000000-0000-0000-0020-000000000367}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000002}, !- Handle - BTAP-Mass at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000010}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000020}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000016}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000052}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000384}, !- Inlet Port + {00000000-0000-0000-0020-000000000385}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000003}, !- Handle - Default Surface Constructions 2, !- Name - {00000000-0000-0000-0023-000000000031}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000033}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000029}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000053}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000386}, !- Inlet Port + {00000000-0000-0000-0020-000000000381}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000004}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0 1, !- Name - {00000000-0000-0000-0023-000000000021}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000026}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000024}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000054}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000398}, !- Inlet Port + {00000000-0000-0000-0020-000000000399}; !- Outlet Port -OS:DefaultSurfaceConstructions, - {00000000-0000-0000-0034-000000000005}, !- Handle - NECB2011 - FullSrvRest - WholeBuilding - NECB HDD Method at hdd = 5000.0, !- Name - {00000000-0000-0000-0023-000000000009}, !- Floor Construction Name - {00000000-0000-0000-0023-000000000019}, !- Wall Construction Name - {00000000-0000-0000-0023-000000000015}; !- Roof Ceiling Construction Name +OS:Node, + {00000000-0000-0000-0053-000000000055}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000400}, !- Inlet Port + {00000000-0000-0000-0020-000000000395}; !- Outlet Port -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000001}, !- Handle - Space Function - undefined - Ventilation, !- Name - , !- Outdoor Air Method - 0, !- Outdoor Air Flow per Person {m3/s-person} - 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name +OS:Node, + {00000000-0000-0000-0053-000000000056}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000436}, !- Inlet Port + {00000000-0000-0000-0020-000000000437}; !- Outlet Port -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000002}, !- Handle - Space Function Electrical/Mechanical room-sch-A Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.0003048, !- 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:Node, + {00000000-0000-0000-0053-000000000057}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000438}, !- Inlet Port + {00000000-0000-0000-0020-000000000433}; !- Outlet Port -OS:DesignSpecification:OutdoorAir, - {00000000-0000-0000-0035-000000000003}, !- Handle - Space Function Office open plan Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.002539077244416, !- Outdoor Air Flow per Person {m3/s-person} - 0.0003048, !- 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:Node, + {00000000-0000-0000-0053-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000450}, !- Inlet Port + {00000000-0000-0000-0020-000000000451}; !- Outlet Port -OS:ElectricEquipment, - {00000000-0000-0000-0036-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Elec Equip, !- Name - {00000000-0000-0000-0037-000000000001}, !- Electric Equipment Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000452}, !- Inlet Port + {00000000-0000-0000-0020-000000000447}; !- Outlet Port -OS:ElectricEquipment, - {00000000-0000-0000-0036-000000000002}, !- Handle - Space Function Office open plan Elec Equip, !- Name - {00000000-0000-0000-0037-000000000002}, !- Electric Equipment Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000464}, !- Inlet Port + {00000000-0000-0000-0020-000000000465}; !- Outlet Port -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 1.0003634216273, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant +OS:Node, + {00000000-0000-0000-0053-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 16 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000466}, !- Inlet Port + {00000000-0000-0000-0020-000000000461}; !- Outlet Port -OS:ElectricEquipment:Definition, - {00000000-0000-0000-0037-000000000002}, !- Handle - Space Function Office open plan Elec Equip Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.50272566220473, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - , !- Fraction Latent - 0.5; !- Fraction Radiant +OS:Node, + {00000000-0000-0000-0053-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000478}, !- Inlet Port + {00000000-0000-0000-0020-000000000479}; !- Outlet Port -OS:Facility, - {00000000-0000-0000-0038-000000000001}; !- Handle +OS:Node, + {00000000-0000-0000-0053-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 17 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000480}, !- Inlet Port + {00000000-0000-0000-0020-000000000475}; !- Outlet Port -OS:Fan:ConstantVolume, - {00000000-0000-0000-0039-000000000001}, !- Handle - Fan Constant Volume 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.39975, !- Fan Total Efficiency - 640, !- Pressure Rise {Pa} - AutoSize, !- Maximum Flow Rate {m3/s} - 0.615, !- Motor Efficiency - , !- Motor In Airstream Fraction - {00000000-0000-0000-0020-000000000080}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000078}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000492}, !- Inlet Port + {00000000-0000-0000-0020-000000000493}; !- Outlet Port -OS:Fan:VariableVolume, - {00000000-0000-0000-0040-000000000001}, !- Handle - Sys6 Return Fan, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.299975, !- Fan Total Efficiency - 250, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.4615, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000168}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000169}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 18 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000494}, !- Inlet Port + {00000000-0000-0000-0020-000000000489}; !- Outlet Port -OS:Fan:VariableVolume, - {00000000-0000-0000-0040-000000000002}, !- Handle - Sys6 Supply Fan, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name - 0.549965, !- Fan Total Efficiency - 1000, !- Pressure Rise {Pa} - Autosize, !- Maximum Flow Rate {m3/s} - Fraction, !- Fan Power Minimum Flow Rate Input Method - 0.68, !- Fan Power Minimum Flow Fraction - 0, !- Fan Power Minimum Air Flow Rate {m3/s} - 0.8461, !- Motor Efficiency - 1, !- Motor In Airstream Fraction - -2.4176, !- Fan Power Coefficient 1 - 9.5874, !- Fan Power Coefficient 2 - -11.559, !- Fan Power Coefficient 3 - 5.4009, !- Fan Power Coefficient 4 - 0, !- Fan Power Coefficient 5 - {00000000-0000-0000-0020-000000000163}, !- Air Inlet Node Name - {00000000-0000-0000-0020-000000000161}, !- Air Outlet Node Name - ; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000066}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000506}, !- Inlet Port + {00000000-0000-0000-0020-000000000507}; !- Outlet Port -OS:Foundation:Kiva, - {00000000-0000-0000-0041-000000000001}, !- Handle - Bldg Kiva Foundation, !- Name - , !- Initial Indoor Air Temperature {C} - , !- Interior Horizontal Insulation Material Name - , !- Interior Horizontal Insulation Depth {m} - , !- Interior Horizontal Insulation Width {m} - , !- Interior Vertical Insulation Material Name - , !- Interior Vertical Insulation Depth {m} - , !- Exterior Horizontal Insulation Material Name - , !- Exterior Horizontal Insulation Depth {m} - , !- Exterior Horizontal Insulation Width {m} - , !- Exterior Vertical Insulation Material Name - , !- Exterior Vertical Insulation Depth {m} - 0, !- Wall Height Above Grade {m} - 0, !- Wall Depth Below Slab {m} - , !- Footing Wall Construction Name - , !- Footing Material Name - ; !- Footing Depth {m} +OS:Node, + {00000000-0000-0000-0053-000000000067}, !- Handle + Air Terminal Single Duct VAV Reheat 19 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000508}, !- Inlet Port + {00000000-0000-0000-0020-000000000503}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000068}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000220}, !- Inlet Port + {00000000-0000-0000-0020-000000000221}; !- Outlet Port -OS:Foundation:Kiva:Settings, - {00000000-0000-0000-0042-000000000001}, !- Handle - , !- Soil Conductivity {W/m-K} - , !- Soil Density {kg/m3} - , !- Soil Specific Heat {J/kg-K} - , !- Ground Solar Absorptivity {dimensionless} - , !- Ground Thermal Absorptivity {dimensionless} - , !- Ground Surface Roughness {m} - , !- Far-Field Width {m} - , !- Deep-Ground Boundary Condition - , !- Deep-Ground Depth {m} - , !- Minimum Cell Dimension {m} - , !- Maximum Cell Growth Coefficient {dimensionless} - ; !- Simulation Timestep +OS:Node, + {00000000-0000-0000-0053-000000000069}, !- Handle + Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000222}, !- Inlet Port + {00000000-0000-0000-0020-000000000217}; !- Outlet Port -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0043-000000000001}, !- Handle - sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000287}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000288}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000291}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000292}, !- Exhaust Air Outlet Node - 657.843925054951, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout +OS:Node, + {00000000-0000-0000-0053-000000000070}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000234}, !- Inlet Port + {00000000-0000-0000-0020-000000000235}; !- Outlet Port -OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0043-000000000002}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule - autosize, !- Nominal Supply Air Flow Rate {m3/s} - 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} - 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} - 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0020-000000000293}, !- Supply Air Inlet Node - {00000000-0000-0000-0020-000000000294}, !- Supply Air Outlet Node - {00000000-0000-0000-0020-000000000297}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0020-000000000298}, !- Exhaust Air Outlet Node - 292.796810422557, !- Nominal Electric Power {W} - Yes, !- Supply Air Outlet Temperature Control - Rotary, !- Heat Exchanger Type - ExhaustOnly, !- Frost Control Type - -23.3, !- Threshold Temperature {C} - 0.167, !- Initial Defrost Time Fraction {dimensionless} - 1.44, !- Rate of Defrost Time Fraction Increase {1/K} - Yes; !- Economizer Lockout +OS:Node, + {00000000-0000-0000-0053-000000000071}, !- Handle + Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000236}, !- Inlet Port + {00000000-0000-0000-0020-000000000231}; !- Outlet Port -OS:Lights, - {00000000-0000-0000-0044-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Lights, !- Name - {00000000-0000-0000-0045-000000000001}, !- Lights Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000072}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000248}, !- Inlet Port + {00000000-0000-0000-0020-000000000249}; !- Outlet Port -OS:Lights, - {00000000-0000-0000-0044-000000000002}, !- Handle - Space Function Office open plan Lights, !- Name - {00000000-0000-0000-0045-000000000002}, !- Lights Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name - , !- Schedule Name - 1, !- Fraction Replaceable - , !- Multiplier - General; !- End-Use Subcategory +OS:Node, + {00000000-0000-0000-0053-000000000073}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000250}, !- Inlet Port + {00000000-0000-0000-0020-000000000245}; !- Outlet Port -OS:Lights:Definition, - {00000000-0000-0000-0045-000000000001}, !- Handle - Space Function Electrical/Mechanical room-sch-A Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.60167173948557, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible +OS:Node, + {00000000-0000-0000-0053-000000000074}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000262}, !- Inlet Port + {00000000-0000-0000-0020-000000000263}; !- Outlet Port -OS:Lights:Definition, - {00000000-0000-0000-0045-000000000002}, !- Handle - Space Function Office open plan Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 6.60000638299888, !- Watts per Space Floor Area {W/m2} - , !- Watts per Person {W/person} - 0.5, !- Fraction Radiant - 0.2; !- Fraction Visible +OS:Node, + {00000000-0000-0000-0053-000000000075}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000264}, !- Inlet Port + {00000000-0000-0000-0020-000000000259}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000001}, !- Handle - 1/2IN Gypsum 1, !- 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:Node, + {00000000-0000-0000-0053-000000000076}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000276}, !- Inlet Port + {00000000-0000-0000-0020-000000000277}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000002}, !- 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:Node, + {00000000-0000-0000-0053-000000000077}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000278}, !- Inlet Port + {00000000-0000-0000-0020-000000000273}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000003}, !- Handle - 100mm Normalweight concrete floor 1, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0053-000000000078}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000290}, !- Inlet Port + {00000000-0000-0000-0020-000000000291}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000004}, !- Handle - 100mm Normalweight concrete floor, !- Name - MediumSmooth, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2322, !- Density {kg/m3} - 832; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0053-000000000079}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000292}, !- Inlet Port + {00000000-0000-0000-0020-000000000287}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000005}, !- Handle - 1IN Stucco 1, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000080}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000328}, !- Inlet Port + {00000000-0000-0000-0020-000000000329}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000006}, !- Handle - 1IN Stucco, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.92; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000081}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000330}, !- Inlet Port + {00000000-0000-0000-0020-000000000325}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000007}, !- Handle - 4 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000082}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000342}, !- Inlet Port + {00000000-0000-0000-0020-000000000343}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000008}, !- Handle - 4 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000083}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000344}, !- Inlet Port + {00000000-0000-0000-0020-000000000339}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000009}, !- Handle - 6 in. Normalweight Concrete Floor 1, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000084}, !- Handle + Chilled Water Loop Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000098}, !- Inlet Port + {00000000-0000-0000-0020-000000000099}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000010}, !- Handle - 6 in. Normalweight Concrete Floor 2, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000085}, !- Handle + Chilled Water Loop Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000101}, !- Inlet Port + {00000000-0000-0000-0020-000000000102}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000011}, !- Handle - 6 in. Normalweight Concrete Floor 3, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000086}, !- Handle + Chilled Water Loop Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000095}, !- Inlet Port + {00000000-0000-0000-0020-000000000103}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000012}, !- Handle - 6 in. Normalweight Concrete Floor, !- Name - MediumRough, !- Roughness - 0.1524, !- Thickness {m} - 2.31, !- Conductivity {W/m-K} - 2321.99999999999, !- Density {kg/m3} - 831.999999999997, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000087}, !- Handle + Chilled Water Loop Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000119}, !- Inlet Port + {00000000-0000-0000-0020-000000000097}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000088}, !- Handle + Coil Cooling Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000100}, !- Inlet Port + {00000000-0000-0000-0020-000000000158}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000089}, !- Handle + Coil Cooling Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000164}, !- Inlet Port + {00000000-0000-0000-0020-000000000165}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000090}, !- Handle + Coil Cooling Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000159}, !- Inlet Port + {00000000-0000-0000-0020-000000000160}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000091}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000195}, !- Inlet Port + {00000000-0000-0000-0020-000000000196}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000092}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000202}, !- Inlet Port + {00000000-0000-0000-0020-000000000203}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000093}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000197}, !- Inlet Port + {00000000-0000-0000-0020-000000000198}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000094}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000303}, !- Inlet Port + {00000000-0000-0000-0020-000000000304}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000013}, !- Handle - 8IN CONCRETE HW RefBldg 1, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000095}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000310}, !- Inlet Port + {00000000-0000-0000-0020-000000000311}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000014}, !- Handle - 8IN CONCRETE HW RefBldg, !- Name - Rough, !- Roughness - 0.2032, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000096}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000305}, !- Inlet Port + {00000000-0000-0000-0020-000000000306}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000015}, !- Handle - Expanded Polystyrene 1, !- Name - MediumSmooth, !- Roughness - 0.100199429303091, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0053-000000000097}, !- Handle + Coil Cooling Water 4 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000411}, !- Inlet Port + {00000000-0000-0000-0020-000000000412}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000016}, !- Handle - Expanded Polystyrene, !- Name - MediumSmooth, !- Roughness - 0.0363958681740979, !- Thickness {m} - 0.029, !- Conductivity {W/m-K} - 29, !- Density {kg/m3} - 1210; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0053-000000000098}, !- Handle + Coil Cooling Water 4 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000418}, !- Inlet Port + {00000000-0000-0000-0020-000000000419}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000017}, !- Handle - F08 Metal surface 1, !- 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:Node, + {00000000-0000-0000-0053-000000000099}, !- Handle + Coil Cooling Water 4 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000413}, !- Inlet Port + {00000000-0000-0000-0020-000000000414}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000018}, !- 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:Node, + {00000000-0000-0000-0053-000000000100}, !- Handle + Coil Heating Gas 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000079}, !- Inlet Port + {00000000-0000-0000-0020-000000000080}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000019}, !- Handle - G01 13mm gypsum board 1, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000101}, !- Handle + Coil Heating Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000154}, !- Inlet Port + {00000000-0000-0000-0020-000000000155}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000020}, !- Handle - G01 13mm gypsum board, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000102}, !- Handle + Coil Heating Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000162}, !- Inlet Port + {00000000-0000-0000-0020-000000000163}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000021}, !- 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:Node, + {00000000-0000-0000-0053-000000000103}, !- Handle + Coil Heating Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000156}, !- Inlet Port + {00000000-0000-0000-0020-000000000157}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000022}, !- Handle - M10 200mm concrete block basement wall, !- Name - MediumRough, !- Roughness - 0.2032, !- Thickness {m} - 1.326, !- Conductivity {W/m-K} - 1842, !- Density {kg/m3} - 912; !- Specific Heat {J/kg-K} +OS:Node, + {00000000-0000-0000-0053-000000000104}, !- Handle + Coil Heating Water 10 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000299}, !- Inlet Port + {00000000-0000-0000-0020-000000000300}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000023}, !- Handle - Metal Roof Surface 1, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000105}, !- Handle + Coil Heating Water 10 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000308}, !- Inlet Port + {00000000-0000-0000-0020-000000000309}; !- Outlet Port -OS:Material, - {00000000-0000-0000-0046-000000000024}, !- Handle - Metal Roof Surface, !- Name - Smooth, !- Roughness - 0.000799999999999998, !- Thickness {m} - 45.2799999999999, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 499.999999999996, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000106}, !- Handle + Coil Heating Water 10 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000301}, !- Inlet Port + {00000000-0000-0000-0020-000000000302}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000001}, !- Handle - CP02 CARPET PAD, !- Name - VeryRough, !- Roughness - 0.21648, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000107}, !- Handle + Coil Heating Water 11 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000317}, !- Inlet Port + {00000000-0000-0000-0020-000000000318}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000002}, !- Handle - Nonres_Floor_Insulation, !- Name - MediumSmooth, !- Roughness - 2.88291975297193, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000108}, !- Handle + Coil Heating Water 11 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000319}, !- Inlet Port + {00000000-0000-0000-0020-000000000320}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000003}, !- Handle - Typical Carpet Pad 1, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000109}, !- Handle + Coil Heating Water 12 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000331}, !- Inlet Port + {00000000-0000-0000-0020-000000000332}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000004}, !- Handle - Typical Carpet Pad 2, !- Name - Smooth, !- Roughness - 1.25502993703786, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000110}, !- Handle + Coil Heating Water 12 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000333}, !- Inlet Port + {00000000-0000-0000-0020-000000000334}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000005}, !- Handle - Typical Carpet Pad 3, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000111}, !- Handle + Coil Heating Water 13 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000345}, !- Inlet Port + {00000000-0000-0000-0020-000000000346}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000006}, !- Handle - Typical Carpet Pad 4, !- Name - Smooth, !- Roughness - 3.45515273458935, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000112}, !- Handle + Coil Heating Water 13 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000347}, !- Inlet Port + {00000000-0000-0000-0020-000000000348}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000007}, !- Handle - Typical Carpet Pad, !- Name - Smooth, !- Roughness - 0.216479986995276, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.8; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000113}, !- Handle + Coil Heating Water 14 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000359}, !- Inlet Port + {00000000-0000-0000-0020-000000000360}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000008}, !- Handle - Typical Insulation 1, !- Name - Smooth, !- Roughness - 6.98591414061624, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000114}, !- Handle + Coil Heating Water 14 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000361}, !- Inlet Port + {00000000-0000-0000-0020-000000000362}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000009}, !- Handle - Typical Insulation 2, !- Name - Smooth, !- Roughness - 4.38022034120929, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000115}, !- Handle + Coil Heating Water 15 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000373}, !- Inlet Port + {00000000-0000-0000-0020-000000000374}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000010}, !- Handle - Typical Insulation 3, !- Name - Smooth, !- Roughness - 8.26444514207283, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000116}, !- Handle + Coil Heating Water 15 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000375}, !- Inlet Port + {00000000-0000-0000-0020-000000000376}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000011}, !- Handle - Typical Insulation 4, !- Name - Smooth, !- Roughness - 0.578017014236402, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000117}, !- Handle + Coil Heating Water 16 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000387}, !- Inlet Port + {00000000-0000-0000-0020-000000000388}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000012}, !- Handle - Typical Insulation 5, !- Name - Smooth, !- Roughness - 0.578034682080925, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000118}, !- Handle + Coil Heating Water 16 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000389}, !- Inlet Port + {00000000-0000-0000-0020-000000000390}; !- Outlet Port -OS:Material:NoMass, - {00000000-0000-0000-0047-000000000013}, !- Handle - Typical Insulation, !- Name - Smooth, !- Roughness - 0.101874652714525, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance +OS:Node, + {00000000-0000-0000-0053-000000000119}, !- Handle + Coil Heating Water 17 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000407}, !- Inlet Port + {00000000-0000-0000-0020-000000000408}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000001}, !- Handle - Availability Manager Night Cycle 1 Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000120}, !- Handle + Coil Heating Water 17 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000416}, !- Inlet Port + {00000000-0000-0000-0020-000000000417}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000002}, !- Handle - Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000121}, !- Handle + Coil Heating Water 17 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000409}, !- Inlet Port + {00000000-0000-0000-0020-000000000410}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000003}, !- Handle - Availability Manager Night Cycle 1 Heating Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000122}, !- Handle + Coil Heating Water 18 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000425}, !- Inlet Port + {00000000-0000-0000-0020-000000000426}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000004}, !- Handle - Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000123}, !- Handle + Coil Heating Water 18 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000427}, !- Inlet Port + {00000000-0000-0000-0020-000000000428}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000005}, !- Handle - Availability Manager Night Cycle 2 Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000124}, !- Handle + Coil Heating Water 19 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000439}, !- Inlet Port + {00000000-0000-0000-0020-000000000440}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000006}, !- Handle - Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000125}, !- Handle + Coil Heating Water 19 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000441}, !- Inlet Port + {00000000-0000-0000-0020-000000000442}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000007}, !- Handle - Availability Manager Night Cycle 2 Heating Control Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000126}, !- Handle + Coil Heating Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000171}, !- Inlet Port + {00000000-0000-0000-0020-000000000172}; !- Outlet Port -OS:ModelObjectList, - {00000000-0000-0000-0048-000000000008}, !- Handle - Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name +OS:Node, + {00000000-0000-0000-0053-000000000127}, !- Handle + Coil Heating Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000173}, !- Inlet Port + {00000000-0000-0000-0020-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000001}, !- Handle - 1089gal NaturalGas Water Heater - 735kBtu/hr 0.905 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000186}, !- Inlet Port - {00000000-0000-0000-0020-000000000195}; !- Outlet Port + {00000000-0000-0000-0053-000000000128}, !- Handle + Coil Heating Water 20 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000453}, !- Inlet Port + {00000000-0000-0000-0020-000000000454}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000002}, !- Handle - 1089gal NaturalGas Water Heater - 735kBtu/hr 0.905 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000196}, !- Inlet Port - {00000000-0000-0000-0020-000000000197}; !- Outlet Port + {00000000-0000-0000-0053-000000000129}, !- Handle + Coil Heating Water 20 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000455}, !- Inlet Port + {00000000-0000-0000-0020-000000000456}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000003}, !- Handle - ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000025}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000130}, !- Handle + Coil Heating Water 21 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000467}, !- Inlet Port + {00000000-0000-0000-0020-000000000468}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000004}, !- Handle - ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000037}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000131}, !- Handle + Coil Heating Water 21 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000469}, !- Inlet Port + {00000000-0000-0000-0020-000000000470}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000005}, !- Handle - ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000027}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000132}, !- Handle + Coil Heating Water 22 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000481}, !- Inlet Port + {00000000-0000-0000-0020-000000000482}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000006}, !- Handle - ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Return Air Node, !- Name - {00000000-0000-0000-0020-000000000180}, !- Inlet Port - {00000000-0000-0000-0020-000000000181}; !- Outlet Port + {00000000-0000-0000-0053-000000000133}, !- Handle + Coil Heating Water 22 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000483}, !- Inlet Port + {00000000-0000-0000-0020-000000000484}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000007}, !- Handle - ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000036}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000134}, !- Handle + Coil Heating Water 23 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000495}, !- Inlet Port + {00000000-0000-0000-0020-000000000496}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000008}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000030}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000135}, !- Handle + Coil Heating Water 23 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000497}, !- Inlet Port + {00000000-0000-0000-0020-000000000498}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000009}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000031}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000136}, !- Handle + Coil Heating Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000191}, !- Inlet Port + {00000000-0000-0000-0020-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000010}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000038}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000137}, !- Handle + Coil Heating Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000200}, !- Inlet Port + {00000000-0000-0000-0020-000000000201}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000011}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000043}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000138}, !- Handle + Coil Heating Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000193}, !- Inlet Port + {00000000-0000-0000-0020-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000012}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000045}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000139}, !- Handle + Coil Heating Water 4 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000209}, !- Inlet Port + {00000000-0000-0000-0020-000000000210}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000013}, !- Handle - ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000024}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000140}, !- Handle + Coil Heating Water 4 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000211}, !- Inlet Port + {00000000-0000-0000-0020-000000000212}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000014}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000033}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000141}, !- Handle + Coil Heating Water 5 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000223}, !- Inlet Port + {00000000-0000-0000-0020-000000000224}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000015}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000035}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000142}, !- Handle + Coil Heating Water 5 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000225}, !- Inlet Port + {00000000-0000-0000-0020-000000000226}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000016}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000040}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000143}, !- Handle + Coil Heating Water 6 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000237}, !- Inlet Port + {00000000-0000-0000-0020-000000000238}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000017}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000042}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000144}, !- Handle + Coil Heating Water 6 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000239}, !- Inlet Port + {00000000-0000-0000-0020-000000000240}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000018}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000044}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000145}, !- Handle + Coil Heating Water 7 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000251}, !- Inlet Port + {00000000-0000-0000-0020-000000000252}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000019}, !- Handle - ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000028}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000146}, !- Handle + Coil Heating Water 7 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000253}, !- Inlet Port + {00000000-0000-0000-0020-000000000254}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000020}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000029}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000147}, !- Handle + Coil Heating Water 8 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000265}, !- Inlet Port + {00000000-0000-0000-0020-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000021}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000032}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000148}, !- Handle + Coil Heating Water 8 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000267}, !- Inlet Port + {00000000-0000-0000-0020-000000000268}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000022}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000034}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000149}, !- Handle + Coil Heating Water 9 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000279}, !- Inlet Port + {00000000-0000-0000-0020-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000023}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000039}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000150}, !- Handle + Coil Heating Water 9 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000281}, !- Inlet Port + {00000000-0000-0000-0020-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000024}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000041}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000151}, !- Handle + Coil Heating Water Baseboard 1 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000052}, !- Inlet Port + {00000000-0000-0000-0020-000000000086}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000025}, !- Handle - ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name - {00000000-0000-0000-0020-000000000026}, !- Inlet Port - ; !- Outlet Port + {00000000-0000-0000-0053-000000000152}, !- Handle + Coil Heating Water Baseboard 1 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000087}, !- Inlet Port + {00000000-0000-0000-0020-000000000088}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000026}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000092}, !- Inlet Port - {00000000-0000-0000-0020-000000000093}; !- Outlet Port + {00000000-0000-0000-0053-000000000153}, !- Handle + Coil Heating Water Baseboard 10 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000335}, !- Inlet Port + {00000000-0000-0000-0020-000000000336}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000027}, !- Handle - Air Terminal Single Duct Constant Volume No Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000094}, !- Inlet Port - {00000000-0000-0000-0020-000000000089}; !- Outlet Port + {00000000-0000-0000-0053-000000000154}, !- Handle + Coil Heating Water Baseboard 10 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000337}, !- Inlet Port + {00000000-0000-0000-0020-000000000338}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000028}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000182}, !- Inlet Port - {00000000-0000-0000-0020-000000000183}; !- Outlet Port + {00000000-0000-0000-0053-000000000155}, !- Handle + Coil Heating Water Baseboard 11 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000349}, !- Inlet Port + {00000000-0000-0000-0020-000000000350}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000029}, !- Handle - Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000184}, !- Inlet Port - {00000000-0000-0000-0020-000000000179}; !- Outlet Port + {00000000-0000-0000-0053-000000000156}, !- Handle + Coil Heating Water Baseboard 11 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000351}, !- Inlet Port + {00000000-0000-0000-0020-000000000352}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000030}, !- Handle - Chilled Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000098}, !- Inlet Port - {00000000-0000-0000-0020-000000000099}; !- Outlet Port + {00000000-0000-0000-0053-000000000157}, !- Handle + Coil Heating Water Baseboard 12 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000363}, !- Inlet Port + {00000000-0000-0000-0020-000000000364}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000031}, !- Handle - Chilled Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000101}, !- Inlet Port - {00000000-0000-0000-0020-000000000102}; !- Outlet Port + {00000000-0000-0000-0053-000000000158}, !- Handle + Coil Heating Water Baseboard 12 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000365}, !- Inlet Port + {00000000-0000-0000-0020-000000000366}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000032}, !- Handle - Chilled Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000095}, !- Inlet Port - {00000000-0000-0000-0020-000000000103}; !- Outlet Port + {00000000-0000-0000-0053-000000000159}, !- Handle + Coil Heating Water Baseboard 13 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000377}, !- Inlet Port + {00000000-0000-0000-0020-000000000378}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000033}, !- Handle - Chilled Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000119}, !- Inlet Port - {00000000-0000-0000-0020-000000000097}; !- Outlet Port + {00000000-0000-0000-0053-000000000160}, !- Handle + Coil Heating Water Baseboard 13 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000379}, !- Inlet Port + {00000000-0000-0000-0020-000000000380}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000034}, !- Handle - Coil Cooling Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000100}, !- Inlet Port - {00000000-0000-0000-0020-000000000158}; !- Outlet Port + {00000000-0000-0000-0053-000000000161}, !- Handle + Coil Heating Water Baseboard 14 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000391}, !- Inlet Port + {00000000-0000-0000-0020-000000000392}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000035}, !- Handle - Coil Cooling Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000164}, !- Inlet Port - {00000000-0000-0000-0020-000000000165}; !- Outlet Port + {00000000-0000-0000-0053-000000000162}, !- Handle + Coil Heating Water Baseboard 14 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000393}, !- Inlet Port + {00000000-0000-0000-0020-000000000394}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000036}, !- Handle - Coil Cooling Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000159}, !- Inlet Port - {00000000-0000-0000-0020-000000000160}; !- Outlet Port + {00000000-0000-0000-0053-000000000163}, !- Handle + Coil Heating Water Baseboard 15 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000429}, !- Inlet Port + {00000000-0000-0000-0020-000000000430}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000037}, !- Handle - Coil Heating Gas 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000079}, !- Inlet Port - {00000000-0000-0000-0020-000000000080}; !- Outlet Port + {00000000-0000-0000-0053-000000000164}, !- Handle + Coil Heating Water Baseboard 15 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000431}, !- Inlet Port + {00000000-0000-0000-0020-000000000432}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000038}, !- Handle - Coil Heating Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000154}, !- Inlet Port - {00000000-0000-0000-0020-000000000155}; !- Outlet Port + {00000000-0000-0000-0053-000000000165}, !- Handle + Coil Heating Water Baseboard 16 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000443}, !- Inlet Port + {00000000-0000-0000-0020-000000000444}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000039}, !- Handle - Coil Heating Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000162}, !- Inlet Port - {00000000-0000-0000-0020-000000000163}; !- Outlet Port + {00000000-0000-0000-0053-000000000166}, !- Handle + Coil Heating Water Baseboard 16 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000445}, !- Inlet Port + {00000000-0000-0000-0020-000000000446}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000040}, !- Handle - Coil Heating Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000156}, !- Inlet Port - {00000000-0000-0000-0020-000000000157}; !- Outlet Port + {00000000-0000-0000-0053-000000000167}, !- Handle + Coil Heating Water Baseboard 17 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000457}, !- Inlet Port + {00000000-0000-0000-0020-000000000458}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000041}, !- Handle - Coil Heating Water 2 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000171}, !- Inlet Port - {00000000-0000-0000-0020-000000000172}; !- Outlet Port + {00000000-0000-0000-0053-000000000168}, !- Handle + Coil Heating Water Baseboard 17 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000459}, !- Inlet Port + {00000000-0000-0000-0020-000000000460}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000042}, !- Handle - Coil Heating Water 2 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000173}, !- Inlet Port - {00000000-0000-0000-0020-000000000174}; !- Outlet Port + {00000000-0000-0000-0053-000000000169}, !- Handle + Coil Heating Water Baseboard 18 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000471}, !- Inlet Port + {00000000-0000-0000-0020-000000000472}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000043}, !- Handle - Coil Heating Water Baseboard 1 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000052}, !- Inlet Port - {00000000-0000-0000-0020-000000000086}; !- Outlet Port + {00000000-0000-0000-0053-000000000170}, !- Handle + Coil Heating Water Baseboard 18 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000473}, !- Inlet Port + {00000000-0000-0000-0020-000000000474}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000044}, !- Handle - Coil Heating Water Baseboard 1 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000087}, !- Inlet Port - {00000000-0000-0000-0020-000000000088}; !- Outlet Port + {00000000-0000-0000-0053-000000000171}, !- Handle + Coil Heating Water Baseboard 19 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000485}, !- Inlet Port + {00000000-0000-0000-0020-000000000486}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000045}, !- Handle + {00000000-0000-0000-0053-000000000172}, !- Handle + Coil Heating Water Baseboard 19 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000487}, !- Inlet Port + {00000000-0000-0000-0020-000000000488}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000173}, !- Handle Coil Heating Water Baseboard 2 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000175}, !- Inlet Port {00000000-0000-0000-0020-000000000176}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000046}, !- Handle + {00000000-0000-0000-0053-000000000174}, !- Handle Coil Heating Water Baseboard 2 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000177}, !- Inlet Port {00000000-0000-0000-0020-000000000178}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000047}, !- Handle - CoilCoolingDXSingleSpeed_dx 115kBtu/hr 9.26EER Outlet Air Node, !- Name + {00000000-0000-0000-0053-000000000175}, !- Handle + Coil Heating Water Baseboard 20 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000499}, !- Inlet Port + {00000000-0000-0000-0020-000000000500}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000176}, !- Handle + Coil Heating Water Baseboard 20 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000501}, !- Inlet Port + {00000000-0000-0000-0020-000000000502}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000177}, !- Handle + Coil Heating Water Baseboard 3 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000213}, !- Inlet Port + {00000000-0000-0000-0020-000000000214}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000178}, !- Handle + Coil Heating Water Baseboard 3 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000215}, !- Inlet Port + {00000000-0000-0000-0020-000000000216}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000179}, !- Handle + Coil Heating Water Baseboard 4 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000227}, !- Inlet Port + {00000000-0000-0000-0020-000000000228}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000180}, !- Handle + Coil Heating Water Baseboard 4 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000229}, !- Inlet Port + {00000000-0000-0000-0020-000000000230}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000181}, !- Handle + Coil Heating Water Baseboard 5 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000241}, !- Inlet Port + {00000000-0000-0000-0020-000000000242}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000182}, !- Handle + Coil Heating Water Baseboard 5 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000243}, !- Inlet Port + {00000000-0000-0000-0020-000000000244}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000183}, !- Handle + Coil Heating Water Baseboard 6 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000255}, !- Inlet Port + {00000000-0000-0000-0020-000000000256}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000184}, !- Handle + Coil Heating Water Baseboard 6 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000257}, !- Inlet Port + {00000000-0000-0000-0020-000000000258}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000185}, !- Handle + Coil Heating Water Baseboard 7 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000269}, !- Inlet Port + {00000000-0000-0000-0020-000000000270}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000186}, !- Handle + Coil Heating Water Baseboard 7 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000271}, !- Inlet Port + {00000000-0000-0000-0020-000000000272}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000187}, !- Handle + Coil Heating Water Baseboard 8 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000283}, !- Inlet Port + {00000000-0000-0000-0020-000000000284}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000188}, !- Handle + Coil Heating Water Baseboard 8 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000285}, !- Inlet Port + {00000000-0000-0000-0020-000000000286}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000189}, !- Handle + Coil Heating Water Baseboard 9 Inlet Water Node, !- Name + {00000000-0000-0000-0020-000000000321}, !- Inlet Port + {00000000-0000-0000-0020-000000000322}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000190}, !- Handle + Coil Heating Water Baseboard 9 Outlet Water Node, !- Name + {00000000-0000-0000-0020-000000000323}, !- Inlet Port + {00000000-0000-0000-0020-000000000324}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000191}, !- Handle + CoilCoolingDXSingleSpeed_dx 114kBtu/hr 9.26EER Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000081}, !- Inlet Port {00000000-0000-0000-0020-000000000082}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000048}, !- Handle + {00000000-0000-0000-0053-000000000192}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000123}, !- Inlet Port {00000000-0000-0000-0020-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000049}, !- Handle + {00000000-0000-0000-0053-000000000193}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000126}, !- Inlet Port {00000000-0000-0000-0020-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000050}, !- Handle + {00000000-0000-0000-0053-000000000194}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000120}, !- Inlet Port {00000000-0000-0000-0020-000000000128}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000051}, !- Handle + {00000000-0000-0000-0053-000000000195}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000140}, !- Inlet Port {00000000-0000-0000-0020-000000000122}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000052}, !- Handle + {00000000-0000-0000-0053-000000000196}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000121}, !- Inlet Port {00000000-0000-0000-0020-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000053}, !- Handle + {00000000-0000-0000-0053-000000000197}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000132}, !- Inlet Port {00000000-0000-0000-0020-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000054}, !- Handle + {00000000-0000-0000-0053-000000000198}, !- Handle Core_bottom WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000211}, !- Inlet Port - {00000000-0000-0000-0020-000000000212}; !- Outlet Port + {00000000-0000-0000-0020-000000000535}, !- Inlet Port + {00000000-0000-0000-0020-000000000536}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000055}, !- Handle + {00000000-0000-0000-0053-000000000199}, !- Handle Core_bottom WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000213}, !- Inlet Port - {00000000-0000-0000-0020-000000000214}; !- Outlet Port + {00000000-0000-0000-0020-000000000537}, !- Inlet Port + {00000000-0000-0000-0020-000000000538}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000056}, !- Handle + {00000000-0000-0000-0053-000000000200}, !- Handle Core_mid WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000215}, !- Inlet Port - {00000000-0000-0000-0020-000000000216}; !- Outlet Port + {00000000-0000-0000-0020-000000000539}, !- Inlet Port + {00000000-0000-0000-0020-000000000540}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000057}, !- Handle + {00000000-0000-0000-0053-000000000201}, !- Handle Core_mid WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000217}, !- Inlet Port - {00000000-0000-0000-0020-000000000218}; !- Outlet Port + {00000000-0000-0000-0020-000000000541}, !- Inlet Port + {00000000-0000-0000-0020-000000000542}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000058}, !- Handle + {00000000-0000-0000-0053-000000000202}, !- Handle Core_top WUC 0.95gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000219}, !- Inlet Port - {00000000-0000-0000-0020-000000000220}; !- Outlet Port + {00000000-0000-0000-0020-000000000543}, !- Inlet Port + {00000000-0000-0000-0020-000000000544}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000059}, !- Handle + {00000000-0000-0000-0053-000000000203}, !- Handle Core_top WUC 0.95gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000221}, !- Inlet Port - {00000000-0000-0000-0020-000000000222}; !- Outlet Port + {00000000-0000-0000-0020-000000000545}, !- Inlet Port + {00000000-0000-0000-0020-000000000546}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000060}, !- Handle + {00000000-0000-0000-0053-000000000204}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000223}, !- Inlet Port - {00000000-0000-0000-0020-000000000224}; !- Outlet Port + {00000000-0000-0000-0020-000000000547}, !- Inlet Port + {00000000-0000-0000-0020-000000000548}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000061}, !- Handle + {00000000-0000-0000-0053-000000000205}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000225}, !- Inlet Port - {00000000-0000-0000-0020-000000000226}; !- Outlet Port + {00000000-0000-0000-0020-000000000549}, !- Inlet Port + {00000000-0000-0000-0020-000000000550}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000062}, !- Handle + {00000000-0000-0000-0053-000000000206}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000227}, !- Inlet Port - {00000000-0000-0000-0020-000000000228}; !- Outlet Port + {00000000-0000-0000-0020-000000000551}, !- Inlet Port + {00000000-0000-0000-0020-000000000552}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000063}, !- Handle + {00000000-0000-0000-0053-000000000207}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000229}, !- Inlet Port - {00000000-0000-0000-0020-000000000230}; !- Outlet Port + {00000000-0000-0000-0020-000000000553}, !- Inlet Port + {00000000-0000-0000-0020-000000000554}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000064}, !- Handle + {00000000-0000-0000-0053-000000000208}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000231}, !- Inlet Port - {00000000-0000-0000-0020-000000000232}; !- Outlet Port + {00000000-0000-0000-0020-000000000555}, !- Inlet Port + {00000000-0000-0000-0020-000000000556}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000065}, !- Handle + {00000000-0000-0000-0053-000000000209}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000233}, !- Inlet Port - {00000000-0000-0000-0020-000000000234}; !- Outlet Port + {00000000-0000-0000-0020-000000000557}, !- Inlet Port + {00000000-0000-0000-0020-000000000558}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000066}, !- Handle + {00000000-0000-0000-0053-000000000210}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000235}, !- Inlet Port - {00000000-0000-0000-0020-000000000236}; !- Outlet Port + {00000000-0000-0000-0020-000000000559}, !- Inlet Port + {00000000-0000-0000-0020-000000000560}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000067}, !- Handle + {00000000-0000-0000-0053-000000000211}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000237}, !- Inlet Port - {00000000-0000-0000-0020-000000000238}; !- Outlet Port + {00000000-0000-0000-0020-000000000561}, !- Inlet Port + {00000000-0000-0000-0020-000000000562}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000068}, !- Handle + {00000000-0000-0000-0053-000000000212}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000050}, !- Inlet Port {00000000-0000-0000-0020-000000000051}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000069}, !- Handle + {00000000-0000-0000-0053-000000000213}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000053}, !- Inlet Port {00000000-0000-0000-0020-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000070}, !- Handle + {00000000-0000-0000-0053-000000000214}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000047}, !- Inlet Port {00000000-0000-0000-0020-000000000055}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000071}, !- Handle + {00000000-0000-0000-0053-000000000215}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000071}, !- Inlet Port {00000000-0000-0000-0020-000000000049}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000072}, !- Handle + {00000000-0000-0000-0053-000000000216}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000193}, !- Inlet Port - {00000000-0000-0000-0020-000000000194}; !- Outlet Port + {00000000-0000-0000-0020-000000000517}, !- Inlet Port + {00000000-0000-0000-0020-000000000518}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000073}, !- Handle + {00000000-0000-0000-0053-000000000217}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0020-000000000188}, !- Inlet Port - {00000000-0000-0000-0020-000000000189}; !- Outlet Port + {00000000-0000-0000-0020-000000000512}, !- Inlet Port + {00000000-0000-0000-0020-000000000513}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000074}, !- Handle + {00000000-0000-0000-0053-000000000218}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0020-000000000210}, !- Inlet Port - {00000000-0000-0000-0020-000000000191}; !- Outlet Port + {00000000-0000-0000-0020-000000000534}, !- Inlet Port + {00000000-0000-0000-0020-000000000515}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000075}, !- Handle + {00000000-0000-0000-0053-000000000219}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0020-000000000185}, !- Inlet Port - {00000000-0000-0000-0020-000000000192}; !- Outlet Port + {00000000-0000-0000-0020-000000000509}, !- Inlet Port + {00000000-0000-0000-0020-000000000516}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000076}, !- Handle + {00000000-0000-0000-0053-000000000220}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0020-000000000207}, !- Inlet Port - {00000000-0000-0000-0020-000000000187}; !- Outlet Port + {00000000-0000-0000-0020-000000000531}, !- Inlet Port + {00000000-0000-0000-0020-000000000511}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000077}, !- Handle + {00000000-0000-0000-0053-000000000221}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000239}, !- Inlet Port - {00000000-0000-0000-0020-000000000240}; !- Outlet Port + {00000000-0000-0000-0020-000000000563}, !- Inlet Port + {00000000-0000-0000-0020-000000000564}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000078}, !- Handle + {00000000-0000-0000-0053-000000000222}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000241}, !- Inlet Port - {00000000-0000-0000-0020-000000000242}; !- Outlet Port + {00000000-0000-0000-0020-000000000565}, !- Inlet Port + {00000000-0000-0000-0020-000000000566}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000079}, !- Handle + {00000000-0000-0000-0053-000000000223}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000243}, !- Inlet Port - {00000000-0000-0000-0020-000000000244}; !- Outlet Port + {00000000-0000-0000-0020-000000000567}, !- Inlet Port + {00000000-0000-0000-0020-000000000568}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000080}, !- Handle + {00000000-0000-0000-0053-000000000224}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000245}, !- Inlet Port - {00000000-0000-0000-0020-000000000246}; !- Outlet Port + {00000000-0000-0000-0020-000000000569}, !- Inlet Port + {00000000-0000-0000-0020-000000000570}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000081}, !- Handle + {00000000-0000-0000-0053-000000000225}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000247}, !- Inlet Port - {00000000-0000-0000-0020-000000000248}; !- Outlet Port + {00000000-0000-0000-0020-000000000571}, !- Inlet Port + {00000000-0000-0000-0020-000000000572}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000082}, !- Handle + {00000000-0000-0000-0053-000000000226}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000249}, !- Inlet Port - {00000000-0000-0000-0020-000000000250}; !- Outlet Port + {00000000-0000-0000-0020-000000000573}, !- Inlet Port + {00000000-0000-0000-0020-000000000574}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000083}, !- Handle + {00000000-0000-0000-0053-000000000227}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000251}, !- Inlet Port - {00000000-0000-0000-0020-000000000252}; !- Outlet Port + {00000000-0000-0000-0020-000000000575}, !- Inlet Port + {00000000-0000-0000-0020-000000000576}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000084}, !- Handle + {00000000-0000-0000-0053-000000000228}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000253}, !- Inlet Port - {00000000-0000-0000-0020-000000000254}; !- Outlet Port + {00000000-0000-0000-0020-000000000577}, !- Inlet Port + {00000000-0000-0000-0020-000000000578}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000085}, !- Handle + {00000000-0000-0000-0053-000000000229}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000255}, !- Inlet Port - {00000000-0000-0000-0020-000000000256}; !- Outlet Port + {00000000-0000-0000-0020-000000000579}, !- Inlet Port + {00000000-0000-0000-0020-000000000580}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000086}, !- Handle + {00000000-0000-0000-0053-000000000230}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000257}, !- Inlet Port - {00000000-0000-0000-0020-000000000258}; !- Outlet Port + {00000000-0000-0000-0020-000000000581}, !- Inlet Port + {00000000-0000-0000-0020-000000000582}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000087}, !- Handle + {00000000-0000-0000-0053-000000000231}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000259}, !- Inlet Port - {00000000-0000-0000-0020-000000000260}; !- Outlet Port + {00000000-0000-0000-0020-000000000583}, !- Inlet Port + {00000000-0000-0000-0020-000000000584}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000088}, !- Handle + {00000000-0000-0000-0053-000000000232}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000261}, !- Inlet Port - {00000000-0000-0000-0020-000000000262}; !- Outlet Port + {00000000-0000-0000-0020-000000000585}, !- Inlet Port + {00000000-0000-0000-0020-000000000586}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000089}, !- Handle + {00000000-0000-0000-0053-000000000233}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000263}, !- Inlet Port - {00000000-0000-0000-0020-000000000264}; !- Outlet Port + {00000000-0000-0000-0020-000000000587}, !- Inlet Port + {00000000-0000-0000-0020-000000000588}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000090}, !- Handle + {00000000-0000-0000-0053-000000000234}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000265}, !- Inlet Port - {00000000-0000-0000-0020-000000000266}; !- Outlet Port + {00000000-0000-0000-0020-000000000589}, !- Inlet Port + {00000000-0000-0000-0020-000000000590}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000091}, !- Handle + {00000000-0000-0000-0053-000000000235}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000267}, !- Inlet Port - {00000000-0000-0000-0020-000000000268}; !- Outlet Port + {00000000-0000-0000-0020-000000000591}, !- Inlet Port + {00000000-0000-0000-0020-000000000592}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000092}, !- Handle + {00000000-0000-0000-0053-000000000236}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000269}, !- Inlet Port - {00000000-0000-0000-0020-000000000270}; !- Outlet Port + {00000000-0000-0000-0020-000000000593}, !- Inlet Port + {00000000-0000-0000-0020-000000000594}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000093}, !- Handle + {00000000-0000-0000-0053-000000000237}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000271}, !- Inlet Port - {00000000-0000-0000-0020-000000000272}; !- Outlet Port + {00000000-0000-0000-0020-000000000595}, !- Inlet Port + {00000000-0000-0000-0020-000000000596}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000094}, !- Handle + {00000000-0000-0000-0053-000000000238}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000273}, !- Inlet Port - {00000000-0000-0000-0020-000000000274}; !- Outlet Port + {00000000-0000-0000-0020-000000000597}, !- Inlet Port + {00000000-0000-0000-0020-000000000598}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000095}, !- Handle + {00000000-0000-0000-0053-000000000239}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000275}, !- Inlet Port - {00000000-0000-0000-0020-000000000276}; !- Outlet Port + {00000000-0000-0000-0020-000000000599}, !- Inlet Port + {00000000-0000-0000-0020-000000000600}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000096}, !- Handle + {00000000-0000-0000-0053-000000000240}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000277}, !- Inlet Port - {00000000-0000-0000-0020-000000000278}; !- Outlet Port + {00000000-0000-0000-0020-000000000601}, !- Inlet Port + {00000000-0000-0000-0020-000000000602}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000097}, !- Handle + {00000000-0000-0000-0053-000000000241}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000279}, !- Inlet Port - {00000000-0000-0000-0020-000000000280}; !- Outlet Port + {00000000-0000-0000-0020-000000000603}, !- Inlet Port + {00000000-0000-0000-0020-000000000604}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000098}, !- Handle + {00000000-0000-0000-0053-000000000242}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000281}, !- Inlet Port - {00000000-0000-0000-0020-000000000282}; !- Outlet Port + {00000000-0000-0000-0020-000000000605}, !- Inlet Port + {00000000-0000-0000-0020-000000000606}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000099}, !- Handle + {00000000-0000-0000-0053-000000000243}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000283}, !- Inlet Port - {00000000-0000-0000-0020-000000000284}; !- Outlet Port + {00000000-0000-0000-0020-000000000607}, !- Inlet Port + {00000000-0000-0000-0020-000000000608}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000100}, !- Handle + {00000000-0000-0000-0053-000000000244}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000285}, !- Inlet Port - {00000000-0000-0000-0020-000000000286}; !- Outlet Port + {00000000-0000-0000-0020-000000000609}, !- Inlet Port + {00000000-0000-0000-0020-000000000610}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000101}, !- Handle + {00000000-0000-0000-0053-000000000245}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000065}, !- Inlet Port {00000000-0000-0000-0020-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000102}, !- Handle + {00000000-0000-0000-0053-000000000246}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000067}, !- Inlet Port {00000000-0000-0000-0020-000000000068}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000103}, !- Handle + {00000000-0000-0000-0053-000000000247}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000208}, !- Inlet Port - {00000000-0000-0000-0020-000000000209}; !- Outlet Port + {00000000-0000-0000-0020-000000000532}, !- Inlet Port + {00000000-0000-0000-0020-000000000533}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000104}, !- Handle + {00000000-0000-0000-0053-000000000248}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000069}, !- Inlet Port {00000000-0000-0000-0020-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000105}, !- Handle + {00000000-0000-0000-0053-000000000249}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000113}, !- Inlet Port {00000000-0000-0000-0020-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000106}, !- Handle + {00000000-0000-0000-0053-000000000250}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000115}, !- Inlet Port {00000000-0000-0000-0020-000000000116}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000107}, !- Handle + {00000000-0000-0000-0053-000000000251}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000117}, !- Inlet Port {00000000-0000-0000-0020-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000108}, !- Handle + {00000000-0000-0000-0053-000000000252}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000134}, !- Inlet Port {00000000-0000-0000-0020-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000109}, !- Handle + {00000000-0000-0000-0053-000000000253}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000136}, !- Inlet Port {00000000-0000-0000-0020-000000000137}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000110}, !- Handle + {00000000-0000-0000-0053-000000000254}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000138}, !- Inlet Port {00000000-0000-0000-0020-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000111}, !- Handle + {00000000-0000-0000-0053-000000000255}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000198}, !- Inlet Port - {00000000-0000-0000-0020-000000000199}; !- Outlet Port + {00000000-0000-0000-0020-000000000522}, !- Inlet Port + {00000000-0000-0000-0020-000000000523}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000112}, !- Handle + {00000000-0000-0000-0053-000000000256}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000200}, !- Inlet Port - {00000000-0000-0000-0020-000000000201}; !- Outlet Port + {00000000-0000-0000-0020-000000000524}, !- Inlet Port + {00000000-0000-0000-0020-000000000525}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000113}, !- Handle + {00000000-0000-0000-0053-000000000257}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000190}, !- Inlet Port - {00000000-0000-0000-0020-000000000202}; !- Outlet Port + {00000000-0000-0000-0020-000000000514}, !- Inlet Port + {00000000-0000-0000-0020-000000000526}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000114}, !- Handle + {00000000-0000-0000-0053-000000000258}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0020-000000000203}, !- Inlet Port - {00000000-0000-0000-0020-000000000204}; !- Outlet Port + {00000000-0000-0000-0020-000000000527}, !- Inlet Port + {00000000-0000-0000-0020-000000000528}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000115}, !- Handle + {00000000-0000-0000-0053-000000000259}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0020-000000000205}, !- Inlet Port - {00000000-0000-0000-0020-000000000206}; !- Outlet Port + {00000000-0000-0000-0020-000000000529}, !- Inlet Port + {00000000-0000-0000-0020-000000000530}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000116}, !- Handle - Primary Boiler 323kBtu/hr 0.9 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0053-000000000260}, !- Handle + Primary Boiler 8382kBtu/hr 0.9 Combustion Eff Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000048}, !- Inlet Port {00000000-0000-0000-0020-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000117}, !- Handle - Primary Boiler 323kBtu/hr 0.9 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0053-000000000261}, !- Handle + Primary Boiler 8382kBtu/hr 0.9 Combustion Eff Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000059}, !- Inlet Port {00000000-0000-0000-0020-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000118}, !- Handle - Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0053-000000000262}, !- Handle + Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000125}, !- Inlet Port {00000000-0000-0000-0020-000000000141}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000119}, !- Handle - Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0053-000000000263}, !- Handle + Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000142}, !- Inlet Port {00000000-0000-0000-0020-000000000143}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000120}, !- Handle - Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0053-000000000264}, !- Handle + Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000096}, !- Inlet Port {00000000-0000-0000-0020-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000121}, !- Handle - Primary Chiller WaterCooled Scroll 4tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0053-000000000265}, !- Handle + Primary Chiller WaterCooled Centrifugal 537tons 0.6kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000107}, !- Inlet Port {00000000-0000-0000-0020-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000122}, !- Handle + {00000000-0000-0000-0053-000000000266}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000056}, !- Inlet Port {00000000-0000-0000-0020-000000000057}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000123}, !- Handle + {00000000-0000-0000-0053-000000000267}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000104}, !- Inlet Port {00000000-0000-0000-0020-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000124}, !- Handle + {00000000-0000-0000-0053-000000000268}, !- Handle Pump Variable Speed 3 Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000129}, !- Inlet Port {00000000-0000-0000-0020-000000000130}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000125}, !- Handle + {00000000-0000-0000-0053-000000000269}, !- Handle Secondary Boiler 0kBtu/hr 0.9 AFUE Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000061}, !- Inlet Port {00000000-0000-0000-0020-000000000062}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000126}, !- Handle + {00000000-0000-0000-0053-000000000270}, !- Handle Secondary Boiler 0kBtu/hr 0.9 AFUE Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000063}, !- Inlet Port {00000000-0000-0000-0020-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000127}, !- Handle + {00000000-0000-0000-0053-000000000271}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000144}, !- Inlet Port {00000000-0000-0000-0020-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000128}, !- Handle + {00000000-0000-0000-0053-000000000272}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000146}, !- Inlet Port {00000000-0000-0000-0020-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000129}, !- Handle + {00000000-0000-0000-0053-000000000273}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0020-000000000109}, !- Inlet Port {00000000-0000-0000-0020-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000130}, !- Handle + {00000000-0000-0000-0053-000000000274}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0020-000000000111}, !- Inlet Port {00000000-0000-0000-0020-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000131}, !- Handle + {00000000-0000-0000-0053-000000000275}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000207}, !- Inlet Port + {00000000-0000-0000-0020-000000000208}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000276}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000315}, !- Inlet Port + {00000000-0000-0000-0020-000000000316}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000277}, !- Handle + Sys6 Return Fan 3 Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000423}, !- Inlet Port + {00000000-0000-0000-0020-000000000424}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000278}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0020-000000000169}, !- Inlet Port {00000000-0000-0000-0020-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000132}, !- Handle + {00000000-0000-0000-0053-000000000279}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Return Air Node, !- Name {00000000-0000-0000-0020-000000000090}, !- Inlet Port {00000000-0000-0000-0020-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000133}, !- Handle + {00000000-0000-0000-0053-000000000280}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0020-000000000046}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000134}, !- Handle + {00000000-0000-0000-0053-000000000281}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000074}, !- Inlet Port {00000000-0000-0000-0020-000000000076}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000135}, !- Handle + {00000000-0000-0000-0053-000000000282}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000077}, !- Inlet Port {00000000-0000-0000-0020-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000136}, !- Handle + {00000000-0000-0000-0053-000000000283}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000084}, !- Inlet Port {00000000-0000-0000-0020-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000137}, !- Handle + {00000000-0000-0000-0053-000000000284}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0020-000000000287}; !- Outlet Port + {00000000-0000-0000-0020-000000000611}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000138}, !- Handle + {00000000-0000-0000-0053-000000000285}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000292}, !- Inlet Port + {00000000-0000-0000-0020-000000000616}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000139}, !- Handle + {00000000-0000-0000-0053-000000000286}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000072}, !- Inlet Port {00000000-0000-0000-0020-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000140}, !- Handle + {00000000-0000-0000-0053-000000000287}, !- Handle sys_4|mixed|shr>erv|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000078}, !- Inlet Port {00000000-0000-0000-0020-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000141}, !- Handle + {00000000-0000-0000-0053-000000000288}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000288}, !- Inlet Port - {00000000-0000-0000-0020-000000000289}; !- Outlet Port + {00000000-0000-0000-0020-000000000612}, !- Inlet Port + {00000000-0000-0000-0020-000000000613}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000142}, !- Handle + {00000000-0000-0000-0053-000000000289}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000290}, !- Inlet Port - {00000000-0000-0000-0020-000000000291}; !- Outlet Port + {00000000-0000-0000-0020-000000000614}, !- Inlet Port + {00000000-0000-0000-0020-000000000615}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000290}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000187}, !- Inlet Port + {00000000-0000-0000-0020-000000000189}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000291}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000190}, !- Inlet Port + {00000000-0000-0000-0020-000000000188}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000292}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0020-000000000204}, !- Inlet Port + {00000000-0000-0000-0020-000000000205}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000293}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0020-000000000623}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000294}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0020-000000000628}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000295}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000185}, !- Inlet Port + {00000000-0000-0000-0020-000000000206}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000296}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000199}, !- Inlet Port + {00000000-0000-0000-0020-000000000186}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000297}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000295}, !- Inlet Port + {00000000-0000-0000-0020-000000000297}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000298}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000298}, !- Inlet Port + {00000000-0000-0000-0020-000000000296}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000299}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0020-000000000312}, !- Inlet Port + {00000000-0000-0000-0020-000000000313}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000300}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0020-000000000629}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000301}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0020-000000000634}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000302}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000293}, !- Inlet Port + {00000000-0000-0000-0020-000000000314}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000303}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000307}, !- Inlet Port + {00000000-0000-0000-0020-000000000294}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000304}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Inlet Node, !- Name + {00000000-0000-0000-0020-000000000403}, !- Inlet Port + {00000000-0000-0000-0020-000000000405}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000305}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Demand Outlet Node, !- Name + {00000000-0000-0000-0020-000000000406}, !- Inlet Port + {00000000-0000-0000-0020-000000000404}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000306}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Mixed Air Node, !- Name + {00000000-0000-0000-0020-000000000420}, !- Inlet Port + {00000000-0000-0000-0020-000000000421}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000307}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0020-000000000635}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000308}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Relief Air Node, !- Name + {00000000-0000-0000-0020-000000000640}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000309}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Inlet Node, !- Name + {00000000-0000-0000-0020-000000000401}, !- Inlet Port + {00000000-0000-0000-0020-000000000422}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000310}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Supply Outlet Node, !- Name + {00000000-0000-0000-0020-000000000415}, !- Inlet Port + {00000000-0000-0000-0020-000000000402}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000143}, !- Handle + {00000000-0000-0000-0053-000000000311}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0020-000000000150}, !- Inlet Port {00000000-0000-0000-0020-000000000152}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000144}, !- Handle + {00000000-0000-0000-0053-000000000312}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0020-000000000153}, !- Inlet Port {00000000-0000-0000-0020-000000000151}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000145}, !- Handle + {00000000-0000-0000-0053-000000000313}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0020-000000000166}, !- Inlet Port {00000000-0000-0000-0020-000000000167}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000146}, !- Handle + {00000000-0000-0000-0053-000000000314}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0020-000000000293}; !- Outlet Port + {00000000-0000-0000-0020-000000000617}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000147}, !- Handle + {00000000-0000-0000-0053-000000000315}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0020-000000000298}, !- Inlet Port + {00000000-0000-0000-0020-000000000622}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000148}, !- Handle + {00000000-0000-0000-0053-000000000316}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0020-000000000148}, !- Inlet Port {00000000-0000-0000-0020-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000149}, !- Handle + {00000000-0000-0000-0053-000000000317}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0020-000000000161}, !- Inlet Port {00000000-0000-0000-0020-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000150}, !- Handle + {00000000-0000-0000-0053-000000000318}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000624}, !- Inlet Port + {00000000-0000-0000-0020-000000000625}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000319}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000626}, !- Inlet Port + {00000000-0000-0000-0020-000000000627}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000320}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000630}, !- Inlet Port + {00000000-0000-0000-0020-000000000631}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000321}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000632}, !- Inlet Port + {00000000-0000-0000-0020-000000000633}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000322}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0020-000000000636}, !- Inlet Port + {00000000-0000-0000-0020-000000000637}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000323}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0020-000000000638}, !- Inlet Port + {00000000-0000-0000-0020-000000000639}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0053-000000000324}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0020-000000000294}, !- Inlet Port - {00000000-0000-0000-0020-000000000295}; !- Outlet Port + {00000000-0000-0000-0020-000000000618}, !- Inlet Port + {00000000-0000-0000-0020-000000000619}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000151}, !- Handle + {00000000-0000-0000-0053-000000000325}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0020-000000000296}, !- Inlet Port - {00000000-0000-0000-0020-000000000297}; !- Outlet Port + {00000000-0000-0000-0020-000000000620}, !- Inlet Port + {00000000-0000-0000-0020-000000000621}; !- Outlet Port OS:OutputControl:ReportingTolerances, - {00000000-0000-0000-0050-000000000001}, !- Handle + {00000000-0000-0000-0054-000000000001}, !- Handle 1, !- Tolerance for Time Heating Setpoint Not Met {deltaC} 1; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} OS:People, - {00000000-0000-0000-0051-000000000001}, !- Handle + {00000000-0000-0000-0055-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People, !- Name - {00000000-0000-0000-0052-000000000001}, !- People Definition Name - {00000000-0000-0000-0082-000000000002}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000001}, !- People Definition Name + {00000000-0000-0000-0086-000000000002}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0062-000000000022}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0066-000000000025}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People, - {00000000-0000-0000-0051-000000000002}, !- Handle + {00000000-0000-0000-0055-000000000002}, !- Handle Space Function Office open plan People, !- Name - {00000000-0000-0000-0052-000000000002}, !- People Definition Name - {00000000-0000-0000-0082-000000000003}, !- Space or SpaceType Name + {00000000-0000-0000-0056-000000000002}, !- People Definition Name + {00000000-0000-0000-0086-000000000003}, !- Space or SpaceType Name , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0062-000000000022}, !- Work Efficiency Schedule Name - {00000000-0000-0000-0062-000000000005}, !- Clothing Insulation Schedule Name - {00000000-0000-0000-0062-000000000001}, !- Air Velocity Schedule Name + {00000000-0000-0000-0066-000000000025}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name + {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier OS:People:Definition, - {00000000-0000-0000-0052-000000000001}, !- Handle + {00000000-0000-0000-0056-000000000001}, !- Handle Space Function Electrical/Mechanical room-sch-A People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -5181,7 +10893,7 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People:Definition, - {00000000-0000-0000-0052-000000000002}, !- Handle + {00000000-0000-0000-0056-000000000002}, !- Handle Space Function Office open plan People Definition, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -5190,67 +10902,67 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000001}, !- Handle + {00000000-0000-0000-0057-000000000001}, !- Handle Pipe Adiabatic 1, !- Name {00000000-0000-0000-0020-000000000066}, !- Inlet Node Name {00000000-0000-0000-0020-000000000067}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000002}, !- Handle + {00000000-0000-0000-0057-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0020-000000000209}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000210}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000533}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000534}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000003}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Handle Pipe Adiabatic 2, !- Name {00000000-0000-0000-0020-000000000070}, !- Inlet Node Name {00000000-0000-0000-0020-000000000071}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000004}, !- Handle + {00000000-0000-0000-0057-000000000004}, !- Handle Pipe Adiabatic 3, !- Name {00000000-0000-0000-0020-000000000114}, !- Inlet Node Name {00000000-0000-0000-0020-000000000115}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000005}, !- Handle + {00000000-0000-0000-0057-000000000005}, !- Handle Pipe Adiabatic 4, !- Name {00000000-0000-0000-0020-000000000118}, !- Inlet Node Name {00000000-0000-0000-0020-000000000119}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000006}, !- Handle + {00000000-0000-0000-0057-000000000006}, !- Handle Pipe Adiabatic 5, !- Name {00000000-0000-0000-0020-000000000135}, !- Inlet Node Name {00000000-0000-0000-0020-000000000136}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000007}, !- Handle + {00000000-0000-0000-0057-000000000007}, !- Handle Pipe Adiabatic 6, !- Name {00000000-0000-0000-0020-000000000139}, !- Inlet Node Name {00000000-0000-0000-0020-000000000140}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000008}, !- Handle + {00000000-0000-0000-0057-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0020-000000000199}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000200}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000523}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000524}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000009}, !- Handle + {00000000-0000-0000-0057-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0020-000000000202}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000203}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000526}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000527}; !- Outlet Node Name OS:Pipe:Adiabatic, - {00000000-0000-0000-0053-000000000010}, !- Handle + {00000000-0000-0000-0057-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0020-000000000206}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000207}; !- Outlet Node Name + {00000000-0000-0000-0020-000000000530}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000531}; !- Outlet Node Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Handle Chilled Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -5258,7 +10970,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000033}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0053-000000000087}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5272,7 +10984,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5286,7 +10998,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000003}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Handle Condenser Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -5294,7 +11006,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000051}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0053-000000000195}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5308,7 +11020,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000007}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5322,7 +11034,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000005}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000003}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Handle Hot Water Loop, !- Name Water, !- Fluid Type 0, !- Glycol Concentration @@ -5330,7 +11042,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000071}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0053-000000000215}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5344,7 +11056,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000006}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000009}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5358,7 +11070,7 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000001}; !- Supply Splitter Name OS:PlantLoop, - {00000000-0000-0000-0054-000000000004}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Handle Main Service Water Loop, !- Name , !- Fluid Type 0, !- Glycol Concentration @@ -5366,21 +11078,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000076}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0053-000000000220}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0020-000000000185}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0020-000000000187}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0020-000000000509}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0020-000000000511}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0020-000000000188}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0020-000000000191}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0020-000000000512}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0020-000000000515}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0009-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0009-000000000008}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5394,290 +11106,326 @@ OS:PlantLoop, {00000000-0000-0000-0022-000000000007}; !- Supply Splitter Name OS:PortList, - {00000000-0000-0000-0055-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000010}; !- HVAC Component + {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- HVAC Component + {00000000-0000-0000-0020-000000000287}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000002}, !- Handle - {00000000-0000-0000-0090-000000000010}; !- HVAC Component + {00000000-0000-0000-0059-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000010}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000003}, !- Handle - {00000000-0000-0000-0090-000000000010}; !- HVAC Component + {00000000-0000-0000-0059-000000000003}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- HVAC Component + {00000000-0000-0000-0020-000000000288}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000004}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0059-000000000004}, !- Handle + {00000000-0000-0000-0094-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000005}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0059-000000000005}, !- Handle + {00000000-0000-0000-0094-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000006}, !- Handle - {00000000-0000-0000-0090-000000000001}; !- HVAC Component + {00000000-0000-0000-0059-000000000006}, !- Handle + {00000000-0000-0000-0094-000000000001}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000007}, !- Handle - {00000000-0000-0000-0090-000000000022}; !- HVAC Component + {00000000-0000-0000-0059-000000000007}, !- Handle + {00000000-0000-0000-0094-000000000022}, !- HVAC Component + {00000000-0000-0000-0020-000000000503}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000008}, !- Handle - {00000000-0000-0000-0090-000000000022}; !- HVAC Component + {00000000-0000-0000-0059-000000000008}, !- Handle + {00000000-0000-0000-0094-000000000022}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000009}, !- Handle - {00000000-0000-0000-0090-000000000022}; !- HVAC Component + {00000000-0000-0000-0059-000000000009}, !- Handle + {00000000-0000-0000-0094-000000000022}, !- HVAC Component + {00000000-0000-0000-0020-000000000504}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000010}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0059-000000000010}, !- Handle + {00000000-0000-0000-0094-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000011}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0059-000000000011}, !- Handle + {00000000-0000-0000-0094-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000012}, !- Handle - {00000000-0000-0000-0090-000000000003}; !- HVAC Component + {00000000-0000-0000-0059-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000003}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000013}, !- Handle - {00000000-0000-0000-0090-000000000016}; !- HVAC Component + {00000000-0000-0000-0059-000000000013}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- HVAC Component + {00000000-0000-0000-0020-000000000395}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000014}, !- Handle - {00000000-0000-0000-0090-000000000016}; !- HVAC Component + {00000000-0000-0000-0059-000000000014}, !- Handle + {00000000-0000-0000-0094-000000000016}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000015}, !- Handle - {00000000-0000-0000-0090-000000000016}; !- HVAC Component + {00000000-0000-0000-0059-000000000015}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- HVAC Component + {00000000-0000-0000-0020-000000000396}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000016}, !- Handle - {00000000-0000-0000-0090-000000000017}; !- HVAC Component + {00000000-0000-0000-0059-000000000016}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- HVAC Component + {00000000-0000-0000-0020-000000000461}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000017}, !- Handle - {00000000-0000-0000-0090-000000000017}; !- HVAC Component + {00000000-0000-0000-0059-000000000017}, !- Handle + {00000000-0000-0000-0094-000000000017}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000018}, !- Handle - {00000000-0000-0000-0090-000000000017}; !- HVAC Component + {00000000-0000-0000-0059-000000000018}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- HVAC Component + {00000000-0000-0000-0020-000000000462}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000019}, !- Handle - {00000000-0000-0000-0090-000000000005}; !- HVAC Component + {00000000-0000-0000-0059-000000000019}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- HVAC Component + {00000000-0000-0000-0020-000000000231}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000020}, !- Handle - {00000000-0000-0000-0090-000000000005}; !- HVAC Component + {00000000-0000-0000-0059-000000000020}, !- Handle + {00000000-0000-0000-0094-000000000005}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000021}, !- Handle - {00000000-0000-0000-0090-000000000005}; !- HVAC Component + {00000000-0000-0000-0059-000000000021}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- HVAC Component + {00000000-0000-0000-0020-000000000232}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000022}, !- Handle - {00000000-0000-0000-0090-000000000006}; !- HVAC Component + {00000000-0000-0000-0059-000000000022}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- HVAC Component + {00000000-0000-0000-0020-000000000259}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000023}, !- Handle - {00000000-0000-0000-0090-000000000006}; !- HVAC Component + {00000000-0000-0000-0059-000000000023}, !- Handle + {00000000-0000-0000-0094-000000000006}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000024}, !- Handle - {00000000-0000-0000-0090-000000000006}; !- HVAC Component + {00000000-0000-0000-0059-000000000024}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- HVAC Component + {00000000-0000-0000-0020-000000000260}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000025}, !- Handle - {00000000-0000-0000-0090-000000000018}; !- HVAC Component + {00000000-0000-0000-0059-000000000025}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- HVAC Component + {00000000-0000-0000-0020-000000000475}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000026}, !- Handle - {00000000-0000-0000-0090-000000000018}; !- HVAC Component + {00000000-0000-0000-0059-000000000026}, !- Handle + {00000000-0000-0000-0094-000000000018}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000027}, !- Handle - {00000000-0000-0000-0090-000000000018}; !- HVAC Component + {00000000-0000-0000-0059-000000000027}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- HVAC Component + {00000000-0000-0000-0020-000000000476}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000028}, !- Handle - {00000000-0000-0000-0090-000000000011}; !- HVAC Component + {00000000-0000-0000-0059-000000000028}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- HVAC Component + {00000000-0000-0000-0020-000000000367}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000029}, !- Handle - {00000000-0000-0000-0090-000000000011}; !- HVAC Component + {00000000-0000-0000-0059-000000000029}, !- Handle + {00000000-0000-0000-0094-000000000011}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000030}, !- Handle - {00000000-0000-0000-0090-000000000011}; !- HVAC Component + {00000000-0000-0000-0059-000000000030}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- HVAC Component + {00000000-0000-0000-0020-000000000368}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000031}, !- Handle - {00000000-0000-0000-0090-000000000019}; !- HVAC Component + {00000000-0000-0000-0059-000000000031}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- HVAC Component + {00000000-0000-0000-0020-000000000447}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000032}, !- Handle - {00000000-0000-0000-0090-000000000019}; !- HVAC Component + {00000000-0000-0000-0059-000000000032}, !- Handle + {00000000-0000-0000-0094-000000000019}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000033}, !- Handle - {00000000-0000-0000-0090-000000000019}; !- HVAC Component + {00000000-0000-0000-0059-000000000033}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- HVAC Component + {00000000-0000-0000-0020-000000000448}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000034}, !- Handle - {00000000-0000-0000-0090-000000000012}; !- HVAC Component + {00000000-0000-0000-0059-000000000034}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- HVAC Component + {00000000-0000-0000-0020-000000000353}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000035}, !- Handle - {00000000-0000-0000-0090-000000000012}; !- HVAC Component + {00000000-0000-0000-0059-000000000035}, !- Handle + {00000000-0000-0000-0094-000000000012}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000036}, !- Handle - {00000000-0000-0000-0090-000000000012}; !- HVAC Component + {00000000-0000-0000-0059-000000000036}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- HVAC Component + {00000000-0000-0000-0020-000000000354}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000037}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- HVAC Component + {00000000-0000-0000-0059-000000000037}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000179}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000038}, !- Handle - {00000000-0000-0000-0090-000000000004}; !- HVAC Component + {00000000-0000-0000-0059-000000000038}, !- Handle + {00000000-0000-0000-0094-000000000004}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000039}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- HVAC Component + {00000000-0000-0000-0059-000000000039}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- HVAC Component {00000000-0000-0000-0020-000000000180}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000040}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0059-000000000040}, !- Handle + {00000000-0000-0000-0094-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000041}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0059-000000000041}, !- Handle + {00000000-0000-0000-0094-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000042}, !- Handle - {00000000-0000-0000-0090-000000000002}; !- HVAC Component + {00000000-0000-0000-0059-000000000042}, !- Handle + {00000000-0000-0000-0094-000000000002}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000043}, !- Handle - {00000000-0000-0000-0090-000000000007}; !- HVAC Component + {00000000-0000-0000-0059-000000000043}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- HVAC Component + {00000000-0000-0000-0020-000000000217}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000044}, !- Handle - {00000000-0000-0000-0090-000000000007}; !- HVAC Component + {00000000-0000-0000-0059-000000000044}, !- Handle + {00000000-0000-0000-0094-000000000007}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000045}, !- Handle - {00000000-0000-0000-0090-000000000007}; !- HVAC Component + {00000000-0000-0000-0059-000000000045}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- HVAC Component + {00000000-0000-0000-0020-000000000218}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000046}, !- Handle - {00000000-0000-0000-0090-000000000020}; !- HVAC Component + {00000000-0000-0000-0059-000000000046}, !- Handle + {00000000-0000-0000-0094-000000000020}, !- HVAC Component + {00000000-0000-0000-0020-000000000489}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000047}, !- Handle - {00000000-0000-0000-0090-000000000020}; !- HVAC Component + {00000000-0000-0000-0059-000000000047}, !- Handle + {00000000-0000-0000-0094-000000000020}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000048}, !- Handle - {00000000-0000-0000-0090-000000000020}; !- HVAC Component + {00000000-0000-0000-0059-000000000048}, !- Handle + {00000000-0000-0000-0094-000000000020}, !- HVAC Component + {00000000-0000-0000-0020-000000000490}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000049}, !- Handle - {00000000-0000-0000-0090-000000000013}; !- HVAC Component + {00000000-0000-0000-0059-000000000049}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- HVAC Component + {00000000-0000-0000-0020-000000000339}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000050}, !- Handle - {00000000-0000-0000-0090-000000000013}; !- HVAC Component + {00000000-0000-0000-0059-000000000050}, !- Handle + {00000000-0000-0000-0094-000000000013}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000051}, !- Handle - {00000000-0000-0000-0090-000000000013}; !- HVAC Component + {00000000-0000-0000-0059-000000000051}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- HVAC Component + {00000000-0000-0000-0020-000000000340}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000052}, !- Handle - {00000000-0000-0000-0090-000000000021}; !- HVAC Component + {00000000-0000-0000-0059-000000000052}, !- Handle + {00000000-0000-0000-0094-000000000021}, !- HVAC Component + {00000000-0000-0000-0020-000000000433}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000053}, !- Handle - {00000000-0000-0000-0090-000000000021}; !- HVAC Component + {00000000-0000-0000-0059-000000000053}, !- Handle + {00000000-0000-0000-0094-000000000021}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000054}, !- Handle - {00000000-0000-0000-0090-000000000021}; !- HVAC Component + {00000000-0000-0000-0059-000000000054}, !- Handle + {00000000-0000-0000-0094-000000000021}, !- HVAC Component + {00000000-0000-0000-0020-000000000434}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000055}, !- Handle - {00000000-0000-0000-0090-000000000014}; !- HVAC Component + {00000000-0000-0000-0059-000000000055}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- HVAC Component + {00000000-0000-0000-0020-000000000325}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000056}, !- Handle - {00000000-0000-0000-0090-000000000014}; !- HVAC Component + {00000000-0000-0000-0059-000000000056}, !- Handle + {00000000-0000-0000-0094-000000000014}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000057}, !- Handle - {00000000-0000-0000-0090-000000000014}; !- HVAC Component + {00000000-0000-0000-0059-000000000057}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- HVAC Component + {00000000-0000-0000-0020-000000000326}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000058}, !- Handle - {00000000-0000-0000-0090-000000000008}; !- HVAC Component + {00000000-0000-0000-0059-000000000058}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- HVAC Component + {00000000-0000-0000-0020-000000000273}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000059}, !- Handle - {00000000-0000-0000-0090-000000000008}; !- HVAC Component + {00000000-0000-0000-0059-000000000059}, !- Handle + {00000000-0000-0000-0094-000000000008}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000060}, !- Handle - {00000000-0000-0000-0090-000000000008}; !- HVAC Component + {00000000-0000-0000-0059-000000000060}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- HVAC Component + {00000000-0000-0000-0020-000000000274}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000061}, !- Handle - {00000000-0000-0000-0090-000000000015}; !- HVAC Component + {00000000-0000-0000-0059-000000000061}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- HVAC Component + {00000000-0000-0000-0020-000000000381}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000062}, !- Handle - {00000000-0000-0000-0090-000000000015}; !- HVAC Component + {00000000-0000-0000-0059-000000000062}, !- Handle + {00000000-0000-0000-0094-000000000015}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000063}, !- Handle - {00000000-0000-0000-0090-000000000015}; !- HVAC Component + {00000000-0000-0000-0059-000000000063}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- HVAC Component + {00000000-0000-0000-0020-000000000382}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000064}, !- Handle - {00000000-0000-0000-0090-000000000009}; !- HVAC Component + {00000000-0000-0000-0059-000000000064}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- HVAC Component + {00000000-0000-0000-0020-000000000245}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000065}, !- Handle - {00000000-0000-0000-0090-000000000009}; !- HVAC Component + {00000000-0000-0000-0059-000000000065}, !- Handle + {00000000-0000-0000-0094-000000000009}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000066}, !- Handle - {00000000-0000-0000-0090-000000000009}; !- HVAC Component + {00000000-0000-0000-0059-000000000066}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- HVAC Component + {00000000-0000-0000-0020-000000000246}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000067}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- HVAC Component + {00000000-0000-0000-0059-000000000067}, !- Handle + {00000000-0000-0000-0094-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000089}; !- Port 1 OS:PortList, - {00000000-0000-0000-0055-000000000068}, !- Handle - {00000000-0000-0000-0090-000000000023}; !- HVAC Component + {00000000-0000-0000-0059-000000000068}, !- Handle + {00000000-0000-0000-0094-000000000023}; !- HVAC Component OS:PortList, - {00000000-0000-0000-0055-000000000069}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- HVAC Component + {00000000-0000-0000-0059-000000000069}, !- Handle + {00000000-0000-0000-0094-000000000023}, !- HVAC Component {00000000-0000-0000-0020-000000000090}; !- Port 1 OS:Pump:ConstantSpeed, - {00000000-0000-0000-0056-000000000001}, !- Handle + {00000000-0000-0000-0060-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0020-000000000192}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000193}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000516}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000517}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 742176.159809915, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -5696,14 +11444,14 @@ OS:Pump:ConstantSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0057-000000000001}, !- Handle + {00000000-0000-0000-0061-000000000001}, !- Handle Pump Variable Speed 1, !- Name {00000000-0000-0000-0020-000000000055}, !- Inlet Node Name {00000000-0000-0000-0020-000000000056}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 200710.224008028, !- Rated Pump Head {Pa} + 216907.891208676, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.924, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5729,14 +11477,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0057-000000000002}, !- Handle + {00000000-0000-0000-0061-000000000002}, !- Handle Pump Variable Speed 2, !- Name {00000000-0000-0000-0020-000000000103}, !- Inlet Node Name {00000000-0000-0000-0020-000000000104}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 234161.928009366, !- Rated Pump Head {Pa} + 256345.689610254, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.936, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5762,14 +11510,14 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Pump:VariableSpeed, - {00000000-0000-0000-0057-000000000003}, !- Handle + {00000000-0000-0000-0061-000000000003}, !- Handle Pump Variable Speed 3, !- Name {00000000-0000-0000-0020-000000000128}, !- Inlet Node Name {00000000-0000-0000-0020-000000000129}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 200710.224008028, !- Rated Pump Head {Pa} + 223011.36000892, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.95, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5795,322 +11543,322 @@ OS:Pump:VariableSpeed, General; !- End-Use Subcategory OS:Rendering:Color, - {00000000-0000-0000-0058-000000000001}, !- Handle + {00000000-0000-0000-0062-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name 47, !- Rendering Red Value 211, !- Rendering Green Value 38; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000002}, !- Handle + {00000000-0000-0000-0062-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 53, !- Rendering Red Value 204, !- Rendering Green Value 116; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000003}, !- Handle + {00000000-0000-0000-0062-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name 152, !- Rendering Red Value 249, !- Rendering Green Value 143; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000004}, !- Handle + {00000000-0000-0000-0062-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name 177, !- Rendering Red Value 23, !- Rendering Green Value 233; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000005}, !- Handle + {00000000-0000-0000-0062-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name 158, !- Rendering Red Value 236, !- Rendering Green Value 124; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000006}, !- Handle + {00000000-0000-0000-0062-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name 26, !- Rendering Red Value 118, !- Rendering Green Value 186; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000007}, !- Handle + {00000000-0000-0000-0062-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name 120, !- Rendering Red Value 112, !- Rendering Green Value 220; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000008}, !- Handle + {00000000-0000-0000-0062-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name 69, !- Rendering Red Value 80, !- Rendering Green Value 201; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000009}, !- Handle + {00000000-0000-0000-0062-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name 127, !- Rendering Red Value 246, !- Rendering Green Value 254; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000010}, !- Handle + {00000000-0000-0000-0062-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name 154, !- Rendering Red Value 30, !- Rendering Green Value 171; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000011}, !- Handle + {00000000-0000-0000-0062-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 251, !- Rendering Red Value 76, !- Rendering Green Value 37; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000012}, !- Handle + {00000000-0000-0000-0062-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 34, !- Rendering Red Value 166, !- Rendering Green Value 250; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000013}, !- Handle + {00000000-0000-0000-0062-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 195, !- Rendering Red Value 231, !- Rendering Green Value 139; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000014}, !- Handle + {00000000-0000-0000-0062-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 128, !- Rendering Red Value 233, !- Rendering Green Value 75; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000015}, !- Handle + {00000000-0000-0000-0062-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 80, !- Rendering Red Value 3, !- Rendering Green Value 2; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000016}, !- Handle + {00000000-0000-0000-0062-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 175, !- Rendering Red Value 50, !- Rendering Green Value 240; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000017}, !- Handle + {00000000-0000-0000-0062-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name 203, !- Rendering Red Value 115, !- Rendering Green Value 107; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000018}, !- Handle + {00000000-0000-0000-0062-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name 250, !- Rendering Red Value 209, !- Rendering Green Value 14; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000019}, !- Handle + {00000000-0000-0000-0062-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name 243, !- Rendering Red Value 199, !- Rendering Green Value 60; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000020}, !- Handle + {00000000-0000-0000-0062-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name 234, !- Rendering Red Value 107, !- Rendering Green Value 174; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000021}, !- Handle + {00000000-0000-0000-0062-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name 156, !- Rendering Red Value 81, !- Rendering Green Value 87; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000022}, !- Handle + {00000000-0000-0000-0062-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name 19, !- Rendering Red Value 140, !- Rendering Green Value 193; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000023}, !- Handle + {00000000-0000-0000-0062-000000000023}, !- Handle Rendering Color 1, !- Name 175, !- Rendering Red Value 238, !- Rendering Green Value 238; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000024}, !- Handle + {00000000-0000-0000-0062-000000000024}, !- Handle Rendering Color 2, !- Name 211, !- Rendering Red Value 211, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000025}, !- Handle + {00000000-0000-0000-0062-000000000025}, !- Handle Rendering Color 3, !- Name 119, !- Rendering Red Value 136, !- Rendering Green Value 153; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000026}, !- Handle + {00000000-0000-0000-0062-000000000026}, !- Handle Rendering Color 4, !- Name 153, !- Rendering Red Value 50, !- Rendering Green Value 204; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000027}, !- Handle + {00000000-0000-0000-0062-000000000027}, !- Handle Rendering Color 5, !- Name 255, !- Rendering Red Value 0, !- Rendering Green Value 0; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000028}, !- Handle + {00000000-0000-0000-0062-000000000028}, !- Handle Rendering Color 6, !- Name 148, !- Rendering Red Value 0, !- Rendering Green Value 211; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000029}, !- Handle + {00000000-0000-0000-0062-000000000029}, !- Handle Rendering Color 7, !- Name 50, !- Rendering Red Value 205, !- Rendering Green Value 50; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000030}, !- Handle + {00000000-0000-0000-0062-000000000030}, !- Handle Space Function - undefined - 1, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000031}, !- Handle + {00000000-0000-0000-0062-000000000031}, !- Handle Space Function - undefined - 2, !- Name 140, !- Rendering Red Value 197, !- Rendering Green Value 253; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000032}, !- Handle + {00000000-0000-0000-0062-000000000032}, !- Handle Space Function - undefined -, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000033}, !- Handle + {00000000-0000-0000-0062-000000000033}, !- Handle Space Function Electrical/Mechanical room-sch-A 1, !- Name 113, !- Rendering Red Value 223, !- Rendering Green Value 229; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000034}, !- Handle + {00000000-0000-0000-0062-000000000034}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000035}, !- Handle + {00000000-0000-0000-0062-000000000035}, !- Handle Space Function Electrical/Mechanical-sch-A, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000036}, !- Handle + {00000000-0000-0000-0062-000000000036}, !- Handle Space Function Office - open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000037}, !- Handle + {00000000-0000-0000-0062-000000000037}, !- Handle Space Function Office open plan 1, !- Name 159, !- Rendering Red Value 249, !- Rendering Green Value 252; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000038}, !- Handle + {00000000-0000-0000-0062-000000000038}, !- Handle Space Function Office open plan, !- Name 255, !- Rendering Red Value 255, !- Rendering Green Value 255; !- Rendering Blue Value OS:Rendering:Color, - {00000000-0000-0000-0058-000000000039}, !- Handle + {00000000-0000-0000-0062-000000000039}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name 13, !- Rendering Red Value 116, !- Rendering Green Value 96; !- Rendering Blue Value OS:Schedule:Constant, - {00000000-0000-0000-0059-000000000001}, !- Handle + {00000000-0000-0000-0063-000000000001}, !- Handle Always On Discrete, !- Name - {00000000-0000-0000-0063-000000000005}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000005}, !- Schedule Type Limits Name 1; !- Value OS:Schedule:Day, - {00000000-0000-0000-0060-000000000001}, !- Handle + {00000000-0000-0000-0064-000000000001}, !- Handle Air Velocity Schedule Default, !- Name - {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000009}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000002}, !- Handle + {00000000-0000-0000-0064-000000000002}, !- Handle Always On Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000003}, !- Handle + {00000000-0000-0000-0064-000000000003}, !- Handle Clothing Schedule Default Winter Clothes, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000004}, !- Handle + {00000000-0000-0000-0064-000000000004}, !- Handle Clothing Schedule Summer Clothes, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.5; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000005}, !- Handle + {00000000-0000-0000-0064-000000000005}, !- Handle Economizer Max OA Fraction 100 pct Default, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6119,36 +11867,36 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000006}, !- Handle + {00000000-0000-0000-0064-000000000006}, !- Handle Fraction Latent - 0.05 Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000007}, !- Handle + {00000000-0000-0000-0064-000000000007}, !- Handle Fraction Sensible - 0.2 Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000008}, !- Handle + {00000000-0000-0000-0064-000000000008}, !- Handle Mixed Water At Faucet Temp - 140F Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000009}, !- Handle + {00000000-0000-0000-0064-000000000009}, !- Handle NECB-A-Electric-Equipment Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6173,9 +11921,9 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000010}, !- Handle + {00000000-0000-0000-0064-000000000010}, !- Handle NECB-A-Electric-Equipment Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6200,27 +11948,27 @@ OS:Schedule:Day, 0.2; !- Value Until Time 7 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000011}, !- Handle + {00000000-0000-0000-0064-000000000011}, !- Handle NECB-A-Electric-Equipment Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000012}, !- Handle + {00000000-0000-0000-0064-000000000012}, !- Handle NECB-A-Electric-Equipment Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.2; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000013}, !- Handle + {00000000-0000-0000-0064-000000000013}, !- Handle NECB-A-Lighting Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6251,9 +11999,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000014}, !- Handle + {00000000-0000-0000-0064-000000000014}, !- Handle NECB-A-Lighting Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6284,27 +12032,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000015}, !- Handle + {00000000-0000-0000-0064-000000000015}, !- Handle NECB-A-Lighting Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000016}, !- Handle + {00000000-0000-0000-0064-000000000016}, !- Handle NECB-A-Lighting Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000017}, !- Handle + {00000000-0000-0000-0064-000000000017}, !- Handle NECB-A-Occupancy Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6338,9 +12086,9 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000018}, !- Handle + {00000000-0000-0000-0064-000000000018}, !- Handle NECB-A-Occupancy Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6374,27 +12122,27 @@ OS:Schedule:Day, 0; !- Value Until Time 10 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000019}, !- Handle + {00000000-0000-0000-0064-000000000019}, !- Handle NECB-A-Occupancy Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000020}, !- Handle + {00000000-0000-0000-0064-000000000020}, !- Handle NECB-A-Occupancy Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000021}, !- Handle + {00000000-0000-0000-0064-000000000021}, !- Handle NECB-A-Service Water Heating Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6425,9 +12173,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000022}, !- Handle + {00000000-0000-0000-0064-000000000022}, !- Handle NECB-A-Service Water Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 7, !- Hour 1 0, !- Minute 1 @@ -6458,27 +12206,27 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000023}, !- Handle + {00000000-0000-0000-0064-000000000023}, !- Handle NECB-A-Service Water Heating Sat Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000024}, !- Handle + {00000000-0000-0000-0064-000000000024}, !- Handle NECB-A-Service Water Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000025}, !- Handle + {00000000-0000-0000-0064-000000000025}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6491,9 +12239,9 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000026}, !- Handle + {00000000-0000-0000-0064-000000000026}, !- Handle NECB-A-Thermostat Setpoint-Cooling Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6506,27 +12254,27 @@ OS:Schedule:Day, 35; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000027}, !- Handle + {00000000-0000-0000-0064-000000000027}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sat Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000028}, !- Handle + {00000000-0000-0000-0064-000000000028}, !- Handle NECB-A-Thermostat Setpoint-Cooling Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 35; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000029}, !- Handle + {00000000-0000-0000-0064-000000000029}, !- Handle NECB-A-Thermostat Setpoint-Heating Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6542,9 +12290,9 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000030}, !- Handle + {00000000-0000-0000-0064-000000000030}, !- Handle NECB-A-Thermostat Setpoint-Heating Default|Wkdy Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -6560,52 +12308,52 @@ OS:Schedule:Day, 18; !- Value Until Time 4 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000031}, !- Handle + {00000000-0000-0000-0064-000000000031}, !- Handle NECB-A-Thermostat Setpoint-Heating Sat Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000032}, !- Handle + {00000000-0000-0000-0064-000000000032}, !- Handle NECB-A-Thermostat Setpoint-Heating Sun|Hol Day, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 18; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000033}, !- Handle + {00000000-0000-0000-0064-000000000033}, !- Handle NECB-Activity Default, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000034}, !- Handle + {00000000-0000-0000-0064-000000000034}, !- Handle NECB-Activity Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000035}, !- Handle + {00000000-0000-0000-0064-000000000035}, !- Handle NECB-Activity Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name No, !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 130; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000036}, !- Handle + {00000000-0000-0000-0064-000000000036}, !- Handle Schedule Day 1, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6614,16 +12362,70 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000037}, !- Handle + {00000000-0000-0000-0064-000000000037}, !- Handle Schedule Day 10, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000038}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000039}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000040}, !- Handle + Schedule Day 13, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000041}, !- Handle + Schedule Day 14, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000042}, !- Handle + Schedule Day 15, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000043}, !- Handle + Schedule Day 16, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000038}, !- Handle + {00000000-0000-0000-0064-000000000044}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6632,9 +12434,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000039}, !- Handle + {00000000-0000-0000-0064-000000000045}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6710,9 +12512,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000040}, !- Handle + {00000000-0000-0000-0064-000000000046}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6788,90 +12590,117 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000041}, !- Handle + {00000000-0000-0000-0064-000000000047}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000042}, !- Handle + {00000000-0000-0000-0064-000000000048}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000043}, !- Handle + {00000000-0000-0000-0064-000000000049}, !- Handle Schedule Day 7, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000050}, !- Handle + Schedule Day 8, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000051}, !- Handle + Schedule Day 9, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000044}, !- Handle - Schedule Day 8, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000052}, !- Handle + Service Water Loop Temp - 140F Default, !- Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 60; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000053}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000045}, !- Handle - Schedule Day 9, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000054}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 0; !- Value Until Time 1 + 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000046}, !- Handle - Service Water Loop Temp - 140F Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000055}, !- Handle + Supply Air Temp Default 3, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 60; !- Value Until Time 1 + 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000047}, !- Handle + {00000000-0000-0000-0064-000000000056}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000048}, !- Handle + {00000000-0000-0000-0064-000000000057}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000049}, !- Handle + {00000000-0000-0000-0064-000000000058}, !- Handle Work Efficiency Schedule Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000050}, !- Handle + {00000000-0000-0000-0064-000000000059}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6947,9 +12776,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000051}, !- Handle + {00000000-0000-0000-0064-000000000060}, !- Handle satCHW Temp, !- Name - {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7025,9 +12854,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000052}, !- Handle + {00000000-0000-0000-0064-000000000061}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7103,9 +12932,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000053}, !- Handle + {00000000-0000-0000-0064-000000000062}, !- Handle satCW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7181,9 +13010,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000054}, !- Handle + {00000000-0000-0000-0064-000000000063}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7259,9 +13088,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000055}, !- Handle + {00000000-0000-0000-0064-000000000064}, !- Handle sunCHW Temp, !- Name - {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7337,9 +13166,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000056}, !- Handle + {00000000-0000-0000-0064-000000000065}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7415,9 +13244,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000057}, !- Handle + {00000000-0000-0000-0064-000000000066}, !- Handle sunCW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7493,9 +13322,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000058}, !- Handle + {00000000-0000-0000-0064-000000000067}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -7508,27 +13337,126 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000059}, !- Handle + {00000000-0000-0000-0064-000000000068}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000060}, !- Handle + {00000000-0000-0000-0064-000000000069}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000070}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000071}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000072}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000073}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000074}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000075}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000076}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Default, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000077}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000078}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000061}, !- Handle + {00000000-0000-0000-0064-000000000079}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -7541,27 +13469,27 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000062}, !- Handle + {00000000-0000-0000-0064-000000000080}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000063}, !- Handle + {00000000-0000-0000-0064-000000000081}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000064}, !- Handle + {00000000-0000-0000-0064-000000000082}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7637,9 +13565,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000065}, !- Handle + {00000000-0000-0000-0064-000000000083}, !- Handle wkdCHW Temp, !- Name - {00000000-0000-0000-0063-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7715,9 +13643,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000066}, !- Handle + {00000000-0000-0000-0064-000000000084}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7793,9 +13721,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0060-000000000067}, !- Handle + {00000000-0000-0000-0064-000000000085}, !- Handle wkdCW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7871,11 +13799,11 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000001}, !- Handle + {00000000-0000-0000-0065-000000000001}, !- Handle Schedule Rule 1, !- Name - {00000000-0000-0000-0062-000000000005}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000005}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000004}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000004}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7890,11 +13818,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000002}, !- Handle + {00000000-0000-0000-0065-000000000002}, !- Handle Schedule Rule 10, !- Name - {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000012}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000012}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7909,11 +13837,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000003}, !- Handle + {00000000-0000-0000-0065-000000000003}, !- Handle Schedule Rule 11, !- Name - {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000030}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000030}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7928,11 +13856,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000004}, !- Handle + {00000000-0000-0000-0065-000000000004}, !- Handle Schedule Rule 12, !- Name - {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000031}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000031}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7947,11 +13875,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000005}, !- Handle + {00000000-0000-0000-0065-000000000005}, !- Handle Schedule Rule 13, !- Name - {00000000-0000-0000-0062-000000000015}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000015}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000032}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000032}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7966,11 +13894,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000006}, !- Handle + {00000000-0000-0000-0065-000000000006}, !- Handle Schedule Rule 14, !- Name - {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000026}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000026}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7985,11 +13913,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000007}, !- Handle + {00000000-0000-0000-0065-000000000007}, !- Handle Schedule Rule 15, !- Name - {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000027}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000027}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8004,11 +13932,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000008}, !- Handle + {00000000-0000-0000-0065-000000000008}, !- Handle Schedule Rule 16, !- Name - {00000000-0000-0000-0062-000000000014}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000014}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000028}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000028}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8023,11 +13951,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000009}, !- Handle + {00000000-0000-0000-0065-000000000009}, !- Handle Schedule Rule 17, !- Name - {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000022}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000022}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8042,11 +13970,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000010}, !- Handle + {00000000-0000-0000-0065-000000000010}, !- Handle Schedule Rule 18, !- Name - {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000023}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000023}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8061,11 +13989,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000011}, !- Handle + {00000000-0000-0000-0065-000000000011}, !- Handle Schedule Rule 19, !- Name - {00000000-0000-0000-0062-000000000013}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000013}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000024}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000024}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8080,11 +14008,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000012}, !- Handle + {00000000-0000-0000-0065-000000000012}, !- Handle Schedule Rule 2, !- Name - {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000018}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000018}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8099,11 +14027,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000013}, !- Handle + {00000000-0000-0000-0065-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0062-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000049}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8118,11 +14046,11 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000014}, !- Handle + {00000000-0000-0000-0065-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0062-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000044}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000050}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8137,11 +14065,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000015}, !- Handle + {00000000-0000-0000-0065-000000000015}, !- Handle Schedule Rule 22, !- Name - {00000000-0000-0000-0062-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000030}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000045}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000051}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8156,11 +14084,125 @@ OS:Schedule:Rule, 30; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000016}, !- Handle + {00000000-0000-0000-0065-000000000016}, !- Handle Schedule Rule 23, !- Name - {00000000-0000-0000-0062-000000000024}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000030}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0064-000000000037}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0064-000000000038}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0064-000000000039}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000019}, !- Handle + Schedule Rule 26, !- Name + {00000000-0000-0000-0066-000000000028}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0064-000000000040}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000020}, !- Handle + Schedule Rule 27, !- Name + {00000000-0000-0000-0066-000000000028}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0064-000000000041}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000021}, !- Handle + Schedule Rule 28, !- Name + {00000000-0000-0000-0066-000000000029}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0064-000000000042}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000022}, !- Handle + Schedule Rule 29, !- Name + {00000000-0000-0000-0066-000000000029}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000037}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000043}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8175,11 +14217,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000017}, !- Handle + {00000000-0000-0000-0065-000000000023}, !- Handle Schedule Rule 3, !- Name - {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000019}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000019}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8194,11 +14236,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000018}, !- Handle + {00000000-0000-0000-0065-000000000024}, !- Handle Schedule Rule 4, !- Name - {00000000-0000-0000-0062-000000000012}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000020}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000020}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8213,11 +14255,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000019}, !- Handle + {00000000-0000-0000-0065-000000000025}, !- Handle Schedule Rule 5, !- Name - {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000014}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000014}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8232,11 +14274,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000020}, !- Handle + {00000000-0000-0000-0065-000000000026}, !- Handle Schedule Rule 6, !- Name - {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000015}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000015}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8251,11 +14293,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000021}, !- Handle + {00000000-0000-0000-0065-000000000027}, !- Handle Schedule Rule 7, !- Name - {00000000-0000-0000-0062-000000000011}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000016}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000016}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8270,11 +14312,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000022}, !- Handle + {00000000-0000-0000-0065-000000000028}, !- Handle Schedule Rule 8, !- Name - {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000010}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000010}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8289,11 +14331,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000023}, !- Handle + {00000000-0000-0000-0065-000000000029}, !- Handle Schedule Rule 9, !- Name - {00000000-0000-0000-0062-000000000010}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000011}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000011}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -8308,11 +14350,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000024}, !- Handle + {00000000-0000-0000-0065-000000000030}, !- Handle satCHW Temprule, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000059}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8327,11 +14369,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000025}, !- Handle + {00000000-0000-0000-0065-000000000031}, !- Handle satCW Temprule, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0060-000000000052}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000061}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8346,11 +14388,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000026}, !- Handle + {00000000-0000-0000-0065-000000000032}, !- Handle sunCHW Temprule, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000063}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8365,11 +14407,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000027}, !- Handle + {00000000-0000-0000-0065-000000000033}, !- Handle sunCW Temprule, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0060-000000000056}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000065}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8384,11 +14426,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000028}, !- Handle + {00000000-0000-0000-0065-000000000034}, !- Handle wkdCHW Temp rule, !- Name - {00000000-0000-0000-0062-000000000003}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000064}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000082}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8403,11 +14445,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0061-000000000029}, !- Handle + {00000000-0000-0000-0065-000000000035}, !- Handle wkdCW Temp rule, !- Name - {00000000-0000-0000-0062-000000000004}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0060-000000000066}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000084}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8422,157 +14464,199 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000001}, !- Handle + {00000000-0000-0000-0066-000000000001}, !- Handle Air Velocity Schedule, !- Name - {00000000-0000-0000-0063-000000000009}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000001}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000009}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000001}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000002}, !- Handle + {00000000-0000-0000-0066-000000000002}, !- Handle Always On, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000002}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000002}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000003}, !- Handle + {00000000-0000-0000-0066-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000039}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000045}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000004}, !- Handle + {00000000-0000-0000-0066-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000040}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000046}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000005}, !- Handle + {00000000-0000-0000-0066-000000000005}, !- Handle Clothing Schedule, !- Name - {00000000-0000-0000-0063-000000000003}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000003}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000003}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000003}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000006}, !- Handle + {00000000-0000-0000-0066-000000000006}, !- Handle Economizer Max OA Fraction 100 pct, !- Name , !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000005}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000005}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000007}, !- Handle + {00000000-0000-0000-0066-000000000007}, !- Handle Fraction Latent - 0.05, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000006}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000008}, !- Handle + {00000000-0000-0000-0066-000000000008}, !- Handle Fraction Sensible - 0.2, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000007}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000007}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000009}, !- Handle + {00000000-0000-0000-0066-000000000009}, !- Handle Mixed Water At Faucet Temp - 140F, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000008}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000008}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000010}, !- Handle + {00000000-0000-0000-0066-000000000010}, !- Handle NECB-A-Electric-Equipment, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000009}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000009}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000011}, !- Handle + {00000000-0000-0000-0066-000000000011}, !- Handle NECB-A-Lighting, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000013}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000013}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000012}, !- Handle + {00000000-0000-0000-0066-000000000012}, !- Handle NECB-A-Occupancy, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000017}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000017}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000013}, !- Handle + {00000000-0000-0000-0066-000000000013}, !- Handle NECB-A-Service Water Heating, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000021}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000021}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000014}, !- Handle + {00000000-0000-0000-0066-000000000014}, !- Handle NECB-A-Thermostat Setpoint-Cooling, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000025}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000025}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000015}, !- Handle + {00000000-0000-0000-0066-000000000015}, !- Handle NECB-A-Thermostat Setpoint-Heating, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000029}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000029}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000016}, !- Handle + {00000000-0000-0000-0066-000000000016}, !- Handle NECB-Activity, !- Name - {00000000-0000-0000-0063-000000000001}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000033}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000034}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000035}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0067-000000000001}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000033}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000034}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000035}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000017}, !- Handle + {00000000-0000-0000-0066-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000047}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000018}, !- Handle + {00000000-0000-0000-0066-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000042}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000019}, !- Handle + {00000000-0000-0000-0066-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000020}, !- Handle + {00000000-0000-0000-0066-000000000020}, !- Handle + Supply Air Temp 1, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000053}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000021}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000054}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000022}, !- Handle + Supply Air Temp 3, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000055}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000023}, !- Handle Supply Air Temp, !- Name - {00000000-0000-0000-0063-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000056}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000021}, !- Handle + {00000000-0000-0000-0066-000000000024}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name - {00000000-0000-0000-0063-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000048}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000057}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000022}, !- Handle + {00000000-0000-0000-0066-000000000025}, !- Handle Work Efficiency Schedule, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000049}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000058}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000023}, !- Handle + {00000000-0000-0000-0066-000000000026}, !- Handle sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none| Occ Sch, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000058}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000059}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000060}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000067}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000068}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000069}; !- Winter Design Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0062-000000000024}, !- Handle + {00000000-0000-0000-0066-000000000027}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000070}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000071}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000072}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000028}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000073}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000074}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000075}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000029}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 3 Occ Sch, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000076}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000077}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000078}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000030}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name - {00000000-0000-0000-0063-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0060-000000000061}, !- Default Day Schedule Name - {00000000-0000-0000-0060-000000000062}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0060-000000000063}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000079}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000080}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000081}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000001}, !- Handle + {00000000-0000-0000-0067-000000000001}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8580,7 +14664,7 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000002}, !- Handle + {00000000-0000-0000-0067-000000000002}, !- Handle Always On Discrete Limits, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -8588,7 +14672,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000003}, !- Handle + {00000000-0000-0000-0067-000000000003}, !- Handle ClothingInsulation, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8596,14 +14680,14 @@ OS:ScheduleTypeLimits, ClothingInsulation; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000004}, !- Handle + {00000000-0000-0000-0067-000000000004}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000005}, !- Handle + {00000000-0000-0000-0067-000000000005}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -8611,7 +14695,7 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000006}, !- Handle + {00000000-0000-0000-0067-000000000006}, !- Handle TEMPERATURE 1, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8619,7 +14703,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000007}, !- Handle + {00000000-0000-0000-0067-000000000007}, !- Handle TEMPERATURE 2, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8627,7 +14711,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000008}, !- Handle + {00000000-0000-0000-0067-000000000008}, !- Handle Temperature, !- Name , !- Lower Limit Value , !- Upper Limit Value @@ -8635,7 +14719,7 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:ScheduleTypeLimits, - {00000000-0000-0000-0063-000000000009}, !- Handle + {00000000-0000-0000-0067-000000000009}, !- Handle Velocity, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -8643,42 +14727,84 @@ OS:ScheduleTypeLimits, Velocity; !- Unit Type OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0064-000000000001}, !- Handle + {00000000-0000-0000-0068-000000000001}, !- Handle Setpoint Manager Outdoor Air Pretreat 1, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0049-000000000136}, !- Reference Setpoint Node Name - {00000000-0000-0000-0049-000000000136}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0049-000000000137}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0049-000000000139}, !- Return Air Stream Node Name - {00000000-0000-0000-0049-000000000141}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0053-000000000283}, !- Reference Setpoint Node Name + {00000000-0000-0000-0053-000000000283}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0053-000000000284}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0053-000000000286}, !- Return Air Stream Node Name + {00000000-0000-0000-0053-000000000288}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirPretreat, - {00000000-0000-0000-0064-000000000002}, !- Handle + {00000000-0000-0000-0068-000000000002}, !- Handle Setpoint Manager Outdoor Air Pretreat 2, !- Name , !- Control Variable -99, !- Minimum Setpoint Temperature {C} 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0049-000000000145}, !- Reference Setpoint Node Name - {00000000-0000-0000-0049-000000000145}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0049-000000000146}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0049-000000000131}, !- Return Air Stream Node Name - {00000000-0000-0000-0049-000000000150}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0053-000000000313}, !- Reference Setpoint Node Name + {00000000-0000-0000-0053-000000000313}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0053-000000000314}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0053-000000000278}, !- Return Air Stream Node Name + {00000000-0000-0000-0053-000000000324}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0068-000000000003}, !- Handle + Setpoint Manager Outdoor Air Pretreat 3, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0053-000000000292}, !- Reference Setpoint Node Name + {00000000-0000-0000-0053-000000000292}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0053-000000000293}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0053-000000000275}, !- Return Air Stream Node Name + {00000000-0000-0000-0053-000000000318}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0068-000000000004}, !- Handle + Setpoint Manager Outdoor Air Pretreat 4, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0053-000000000299}, !- Reference Setpoint Node Name + {00000000-0000-0000-0053-000000000299}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0053-000000000300}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0053-000000000276}, !- Return Air Stream Node Name + {00000000-0000-0000-0053-000000000320}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0068-000000000005}, !- Handle + Setpoint Manager Outdoor Air Pretreat 5, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0053-000000000306}, !- Reference Setpoint Node Name + {00000000-0000-0000-0053-000000000306}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0053-000000000307}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0053-000000000277}, !- Return Air Stream Node Name + {00000000-0000-0000-0053-000000000322}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirReset, - {00000000-0000-0000-0065-000000000001}, !- Handle + {00000000-0000-0000-0069-000000000001}, !- Handle Setpoint Manager Outdoor Air Reset 1, !- Name Temperature, !- Control Variable 82, !- Setpoint at Outdoor Low Temperature {C} -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0049-000000000071}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0053-000000000215}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -8686,43 +14812,64 @@ OS:SetpointManager:OutdoorAirReset, ; !- Outdoor High Temperature 2 {C} OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000001}, !- Handle + {00000000-0000-0000-0070-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000019}, !- Schedule Name - {00000000-0000-0000-0049-000000000076}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0066-000000000019}, !- Schedule Name + {00000000-0000-0000-0053-000000000220}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000002}, !- Handle + {00000000-0000-0000-0070-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000003}, !- Schedule Name - {00000000-0000-0000-0049-000000000033}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0066-000000000003}, !- Schedule Name + {00000000-0000-0000-0053-000000000087}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000003}, !- Handle + {00000000-0000-0000-0070-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000004}, !- Schedule Name - {00000000-0000-0000-0049-000000000051}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Name + {00000000-0000-0000-0053-000000000195}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0070-000000000004}, !- Handle + Setpoint Manager Scheduled 3, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0066-000000000023}, !- Schedule Name + {00000000-0000-0000-0053-000000000317}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0070-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0066-000000000020}, !- Schedule Name + {00000000-0000-0000-0053-000000000296}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0070-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0066-000000000021}, !- Schedule Name + {00000000-0000-0000-0053-000000000303}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, - {00000000-0000-0000-0066-000000000004}, !- Handle - Setpoint Manager Scheduled 3, !- Name + {00000000-0000-0000-0070-000000000007}, !- Handle + Setpoint Manager Scheduled 6, !- Name Temperature, !- Control Variable - {00000000-0000-0000-0062-000000000020}, !- Schedule Name - {00000000-0000-0000-0049-000000000149}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0066-000000000022}, !- Schedule Name + {00000000-0000-0000-0053-000000000310}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {00000000-0000-0000-0067-000000000001}, !- Handle + {00000000-0000-0000-0071-000000000001}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name 13, !- Minimum Supply Air Temperature {C} 43, !- Maximum Supply Air Temperature {C} - {00000000-0000-0000-0090-000000000023}, !- Control Zone Name - {00000000-0000-0000-0049-000000000140}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0094-000000000023}, !- Control Zone Name + {00000000-0000-0000-0053-000000000287}; !- Setpoint Node or NodeList Name OS:SimulationControl, - {00000000-0000-0000-0068-000000000001}, !- Handle + {00000000-0000-0000-0072-000000000001}, !- Handle , !- Do Zone Sizing Calculation , !- Do System Sizing Calculation , !- Do Plant Sizing Calculation @@ -8737,7 +14884,7 @@ OS:SimulationControl, 1; !- Maximum Number of HVAC Sizing Simulation Passes OS:Site, - {00000000-0000-0000-0069-000000000001}, !- Handle + {00000000-0000-0000-0073-000000000001}, !- Handle Calgary Intl AP_AB_CAN, !- Name 51.11, !- Latitude {deg} -114.02, !- Longitude {deg} @@ -8746,7 +14893,7 @@ OS:Site, ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {00000000-0000-0000-0070-000000000001}, !- Handle + {00000000-0000-0000-0074-000000000001}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -8761,7 +14908,7 @@ OS:Site:GroundTemperature:BuildingSurface, 19.633; !- December Ground Temperature {C} OS:Site:GroundTemperature:Deep, - {00000000-0000-0000-0071-000000000001}, !- Handle + {00000000-0000-0000-0075-000000000001}, !- Handle 4, !- January Deep Ground Temperature {C} 1.3, !- February Deep Ground Temperature {C} -0.4, !- March Deep Ground Temperature {C} @@ -8776,7 +14923,7 @@ OS:Site:GroundTemperature:Deep, 7; !- December Deep Ground Temperature {C} OS:Site:GroundTemperature:FCfactorMethod, - {00000000-0000-0000-0072-000000000001}, !- Handle + {00000000-0000-0000-0076-000000000001}, !- Handle 5.5, !- January Ground Temperature {C} -2, !- February Ground Temperature {C} -7.6, !- March Ground Temperature {C} @@ -8791,7 +14938,7 @@ OS:Site:GroundTemperature:FCfactorMethod, 11.1; !- December Ground Temperature {C} OS:Site:GroundTemperature:Shallow, - {00000000-0000-0000-0073-000000000001}, !- Handle + {00000000-0000-0000-0077-000000000001}, !- Handle -1.6, !- January Surface Ground Temperature {C} -5.4, !- February Surface Ground Temperature {C} -6.4, !- March Surface Ground Temperature {C} @@ -8806,20 +14953,20 @@ OS:Site:GroundTemperature:Shallow, 4; !- December Surface Ground Temperature {C} OS:Site:WaterMainsTemperature, - {00000000-0000-0000-0074-000000000001}, !- Handle + {00000000-0000-0000-0078-000000000001}, !- Handle Correlation, !- Calculation Method , !- Temperature Schedule Name 4.69166666666667, !- Annual Average Outdoor Air Temperature {C} 24.6; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} OS:Sizing:Parameters, - {00000000-0000-0000-0075-000000000001}, !- Handle + {00000000-0000-0000-0079-000000000001}, !- Handle 1.3, !- Heating Sizing Factor 1.1; !- Cooling Sizing Factor OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000001}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Plant or Condenser Loop Name Heating, !- Loop Type 82, !- Design Loop Exit Temperature {C} 16, !- Loop Design Temperature Difference {deltaC} @@ -8828,8 +14975,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000002}, !- Handle - {00000000-0000-0000-0054-000000000001}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0058-000000000001}, !- Plant or Condenser Loop Name Cooling, !- Loop Type 7, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -8838,8 +14985,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000003}, !- Handle - {00000000-0000-0000-0054-000000000002}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0058-000000000002}, !- Plant or Condenser Loop Name Condenser, !- Loop Type 29, !- Design Loop Exit Temperature {C} 6, !- Loop Design Temperature Difference {deltaC} @@ -8848,8 +14995,8 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:Plant, - {00000000-0000-0000-0076-000000000004}, !- Handle - {00000000-0000-0000-0054-000000000004}, !- Plant or Condenser Loop Name + {00000000-0000-0000-0080-000000000004}, !- Handle + {00000000-0000-0000-0058-000000000004}, !- Plant or Condenser Loop Name Heating, !- Loop Type 60, !- Design Loop Exit Temperature {C} 5, !- Loop Design Temperature Difference {deltaC} @@ -8858,7 +15005,7 @@ OS:Sizing:Plant, None; !- Coincident Sizing Factor Mode OS:Sizing:System, - {00000000-0000-0000-0077-000000000001}, !- Handle + {00000000-0000-0000-0081-000000000001}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name Sensible, !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -8899,7 +15046,48 @@ OS:Sizing:System, autosize; !- Occupant Diversity OS:Sizing:System, - {00000000-0000-0000-0077-000000000002}, !- Handle + {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0002-000000000005}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0081-000000000003}, !- Handle {00000000-0000-0000-0002-000000000002}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -8939,19 +15127,101 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0081-000000000004}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0081-000000000005}, !- Handle + {00000000-0000-0000-0002-000000000004}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000001}, !- Handle - {00000000-0000-0000-0090-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8975,8 +15245,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000002}, !- Handle - {00000000-0000-0000-0090-000000000001}, !- Zone or ZoneList Name + {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9010,18 +15280,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000003}, !- Handle - {00000000-0000-0000-0090-000000000022}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0094-000000000022}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9045,8 +15315,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000004}, !- Handle - {00000000-0000-0000-0090-000000000003}, !- Zone or ZoneList Name + {00000000-0000-0000-0082-000000000004}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9080,18 +15350,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000005}, !- Handle - {00000000-0000-0000-0090-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000005}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9115,18 +15385,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000006}, !- Handle - {00000000-0000-0000-0090-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000006}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9150,18 +15420,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000007}, !- Handle - {00000000-0000-0000-0090-000000000005}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000007}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9185,18 +15455,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000008}, !- Handle - {00000000-0000-0000-0090-000000000006}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000008}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9220,18 +15490,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000009}, !- Handle - {00000000-0000-0000-0090-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000009}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9255,18 +15525,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000010}, !- Handle - {00000000-0000-0000-0090-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000010}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9290,18 +15560,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000011}, !- Handle - {00000000-0000-0000-0090-000000000019}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000011}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9325,18 +15595,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000012}, !- Handle - {00000000-0000-0000-0090-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9360,8 +15630,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000013}, !- Handle - {00000000-0000-0000-0090-000000000004}, !- Zone or ZoneList Name + {00000000-0000-0000-0082-000000000013}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9395,8 +15665,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000014}, !- Handle - {00000000-0000-0000-0090-000000000002}, !- Zone or ZoneList Name + {00000000-0000-0000-0082-000000000014}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Zone or ZoneList Name SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9430,18 +15700,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000015}, !- Handle - {00000000-0000-0000-0090-000000000007}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000015}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9465,18 +15735,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000016}, !- Handle - {00000000-0000-0000-0090-000000000020}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000016}, !- Handle + {00000000-0000-0000-0094-000000000020}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9500,18 +15770,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000017}, !- Handle - {00000000-0000-0000-0090-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000017}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9535,18 +15805,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000018}, !- Handle - {00000000-0000-0000-0090-000000000021}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000018}, !- Handle + {00000000-0000-0000-0094-000000000021}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9570,18 +15840,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000019}, !- Handle - {00000000-0000-0000-0090-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000019}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9605,18 +15875,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000020}, !- Handle - {00000000-0000-0000-0090-000000000008}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000020}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9640,18 +15910,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000021}, !- Handle - {00000000-0000-0000-0090-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000021}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9675,18 +15945,18 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000022}, !- Handle - {00000000-0000-0000-0090-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + {00000000-0000-0000-0082-000000000022}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9710,8 +15980,8 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:Sizing:Zone, - {00000000-0000-0000-0078-000000000023}, !- Handle - {00000000-0000-0000-0090-000000000023}, !- Zone or ZoneList Name + {00000000-0000-0000-0082-000000000023}, !- Handle + {00000000-0000-0000-0094-000000000023}, !- Zone or ZoneList Name TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} @@ -9745,7 +16015,7 @@ OS:Sizing:Zone, 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0083-000000000001}, !- Handle Calgary Intl AP Ann Clg .4% Condns DB=>MWB, !- Name 28.8, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9773,7 +16043,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000002}, !- Handle + {00000000-0000-0000-0083-000000000002}, !- Handle Calgary Intl AP Ann Clg .4% Condns WB=>MDB, !- Name 25.5, !- Maximum Dry-Bulb Temperature {C} 12.3, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9801,7 +16071,7 @@ OS:SizingPeriod:DesignDay, 2.419; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} OS:SizingPeriod:DesignDay, - {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0083-000000000003}, !- Handle Calgary Intl AP Ann Htg 99.6% Condns DB, !- Name -27.7, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} @@ -9825,9 +16095,9 @@ OS:SizingPeriod:DesignDay, ASHRAEClearSky; !- Solar Model Indicator OS:Space, - {00000000-0000-0000-0080-000000000001}, !- Handle + {00000000-0000-0000-0084-000000000001}, !- Handle Basement, !- Name - {00000000-0000-0000-0082-000000000002}, !- Space Type Name + {00000000-0000-0000-0086-000000000002}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9835,16 +16105,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0090-000000000023}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000023}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000002}, !- Handle + {00000000-0000-0000-0084-000000000002}, !- Handle Core_bottom, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9852,16 +16122,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000007}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000007}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000003}, !- Handle + {00000000-0000-0000-0084-000000000003}, !- Handle Core_mid, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9869,16 +16139,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000014}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000014}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000004}, !- Handle + {00000000-0000-0000-0084-000000000004}, !- Handle Core_top, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9886,16 +16156,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000021}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000021}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000005}, !- Handle + {00000000-0000-0000-0084-000000000005}, !- Handle DataCenter_basement_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9903,16 +16173,16 @@ OS:Space, 0, !- Y Origin {m} -2.439, !- Z Origin {m} {00000000-0000-0000-0012-000000000001}, !- Building Story Name - {00000000-0000-0000-0090-000000000004}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000004}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000006}, !- Handle + {00000000-0000-0000-0084-000000000006}, !- Handle DataCenter_bot_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9920,16 +16190,16 @@ OS:Space, 4.5732, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000005}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000005}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000007}, !- Handle + {00000000-0000-0000-0084-000000000007}, !- Handle DataCenter_mid_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9937,16 +16207,16 @@ OS:Space, 4.5732, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000013}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000013}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000008}, !- Handle + {00000000-0000-0000-0084-000000000008}, !- Handle DataCenter_top_ZN_6, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9954,16 +16224,16 @@ OS:Space, 4.5732, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000019}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000019}, !- Thermal Zone Name , !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000009}, !- Handle + {00000000-0000-0000-0084-000000000009}, !- Handle GroundFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0086-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9971,16 +16241,16 @@ OS:Space, 0, !- Y Origin {m} 2.744, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000001}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000001}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000010}, !- Handle + {00000000-0000-0000-0084-000000000010}, !- Handle MidFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0086-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -9988,16 +16258,16 @@ OS:Space, 0, !- Y Origin {m} 22.56, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000002}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000002}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000011}, !- Handle + {00000000-0000-0000-0084-000000000011}, !- Handle Perimeter_bot_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10005,16 +16275,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000009}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000009}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000012}, !- Handle + {00000000-0000-0000-0084-000000000012}, !- Handle Perimeter_bot_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10022,16 +16292,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000006}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000006}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000013}, !- Handle + {00000000-0000-0000-0084-000000000013}, !- Handle Perimeter_bot_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10039,16 +16309,16 @@ OS:Space, 44.165, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000008}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000008}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000014}, !- Handle + {00000000-0000-0000-0084-000000000014}, !- Handle Perimeter_bot_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10056,16 +16326,16 @@ OS:Space, 0, !- Y Origin {m} 0, !- Z Origin {m} {00000000-0000-0000-0012-000000000002}, !- Building Story Name - {00000000-0000-0000-0090-000000000010}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000010}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000015}, !- Handle + {00000000-0000-0000-0084-000000000015}, !- Handle Perimeter_mid_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10073,16 +16343,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000012}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000012}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000016}, !- Handle + {00000000-0000-0000-0084-000000000016}, !- Handle Perimeter_mid_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10090,16 +16360,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000011}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000011}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000017}, !- Handle + {00000000-0000-0000-0084-000000000017}, !- Handle Perimeter_mid_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10107,16 +16377,16 @@ OS:Space, 44.165, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000015}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000015}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000018}, !- Handle + {00000000-0000-0000-0084-000000000018}, !- Handle Perimeter_mid_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10124,16 +16394,16 @@ OS:Space, 0, !- Y Origin {m} 19.816, !- Z Origin {m} {00000000-0000-0000-0012-000000000003}, !- Building Story Name - {00000000-0000-0000-0090-000000000016}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000016}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000019}, !- Handle + {00000000-0000-0000-0084-000000000019}, !- Handle Perimeter_top_ZN_1, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10141,16 +16411,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000017}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000017}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000020}, !- Handle + {00000000-0000-0000-0084-000000000020}, !- Handle Perimeter_top_ZN_2, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10158,16 +16428,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000018}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000018}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000021}, !- Handle + {00000000-0000-0000-0084-000000000021}, !- Handle Perimeter_top_ZN_3, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10175,16 +16445,16 @@ OS:Space, 44.165, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000020}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000020}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000022}, !- Handle + {00000000-0000-0000-0084-000000000022}, !- Handle Perimeter_top_ZN_4, !- Name - {00000000-0000-0000-0082-000000000003}, !- Space Type Name + {00000000-0000-0000-0086-000000000003}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10192,16 +16462,16 @@ OS:Space, 0, !- Y Origin {m} 43.5952, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000022}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000022}, !- Thermal Zone Name Yes, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:Space, - {00000000-0000-0000-0080-000000000023}, !- Handle + {00000000-0000-0000-0084-000000000023}, !- Handle TopFloor_Plenum, !- Name - {00000000-0000-0000-0082-000000000001}, !- Space Type Name + {00000000-0000-0000-0086-000000000001}, !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name -0, !- Direction of Relative North {deg} @@ -10209,17 +16479,17 @@ OS:Space, 0, !- Y Origin {m} 46.3392, !- Z Origin {m} {00000000-0000-0000-0012-000000000004}, !- Building Story Name - {00000000-0000-0000-0090-000000000003}, !- Thermal Zone Name + {00000000-0000-0000-0094-000000000003}, !- Thermal Zone Name No, !- Part of Total Floor Area , !- Design Specification Outdoor Air Object Name , !- Building Unit Name Autocalculate; !- Volume {m3} OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0085-000000000001}, !- Handle GroundFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000009}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000009}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10231,10 +16501,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000002}, !- Handle + {00000000-0000-0000-0085-000000000002}, !- Handle MidFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000010}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000010}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10246,10 +16516,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0085-000000000003}, !- Handle Perimeter_bot_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000011}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000011}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10261,10 +16531,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000004}, !- Handle + {00000000-0000-0000-0085-000000000004}, !- Handle Perimeter_bot_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000012}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000012}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10276,10 +16546,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000005}, !- Handle + {00000000-0000-0000-0085-000000000005}, !- Handle Perimeter_bot_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000013}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000013}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10291,10 +16561,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000006}, !- Handle + {00000000-0000-0000-0085-000000000006}, !- Handle Perimeter_bot_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000014}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000014}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10306,10 +16576,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000007}, !- Handle + {00000000-0000-0000-0085-000000000007}, !- Handle Perimeter_mid_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000015}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000015}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10321,10 +16591,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000008}, !- Handle + {00000000-0000-0000-0085-000000000008}, !- Handle Perimeter_mid_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000016}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000016}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10336,10 +16606,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000009}, !- Handle + {00000000-0000-0000-0085-000000000009}, !- Handle Perimeter_mid_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000017}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000017}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10351,10 +16621,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000010}, !- Handle + {00000000-0000-0000-0085-000000000010}, !- Handle Perimeter_mid_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000018}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000018}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10366,10 +16636,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000011}, !- Handle + {00000000-0000-0000-0085-000000000011}, !- Handle Perimeter_top_ZN_1 Infiltration, !- Name - {00000000-0000-0000-0080-000000000019}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000019}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10381,10 +16651,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000012}, !- Handle + {00000000-0000-0000-0085-000000000012}, !- Handle Perimeter_top_ZN_2 Infiltration, !- Name - {00000000-0000-0000-0080-000000000020}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000020}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10396,10 +16666,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000013}, !- Handle + {00000000-0000-0000-0085-000000000013}, !- Handle Perimeter_top_ZN_3 Infiltration, !- Name - {00000000-0000-0000-0080-000000000021}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000021}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10411,10 +16681,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000014}, !- Handle + {00000000-0000-0000-0085-000000000014}, !- Handle Perimeter_top_ZN_4 Infiltration, !- Name - {00000000-0000-0000-0080-000000000022}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000022}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10426,10 +16696,10 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceInfiltration:DesignFlowRate, - {00000000-0000-0000-0081-000000000015}, !- Handle + {00000000-0000-0000-0085-000000000015}, !- Handle TopFloor_Plenum Infiltration, !- Name - {00000000-0000-0000-0080-000000000023}, !- Space or SpaceType Name - {00000000-0000-0000-0059-000000000001}, !- Schedule Name + {00000000-0000-0000-0084-000000000023}, !- Space or SpaceType Name + {00000000-0000-0000-0063-000000000001}, !- Schedule Name Flow/ExteriorArea, !- Design Flow Rate Calculation Method , !- Design Flow Rate {m3/s} , !- Flow per Space Floor Area {m3/s-m2} @@ -10441,46 +16711,46 @@ OS:SpaceInfiltration:DesignFlowRate, 0; !- Velocity Squared Term Coefficient OS:SpaceType, - {00000000-0000-0000-0082-000000000001}, !- Handle + {00000000-0000-0000-0086-000000000001}, !- Handle Space Function - undefined -, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000001}, !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000031}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000031}, !- Group Rendering Name {00000000-0000-0000-0035-000000000001}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type - undefined -; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0082-000000000002}, !- Handle + {00000000-0000-0000-0086-000000000002}, !- Handle Space Function Electrical/Mechanical room-sch-A, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000002}, !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000033}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000033}, !- Group Rendering Name {00000000-0000-0000-0035-000000000002}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Electrical/Mechanical room-sch-A; !- Standards Space Type OS:SpaceType, - {00000000-0000-0000-0082-000000000003}, !- Handle + {00000000-0000-0000-0086-000000000003}, !- Handle Space Function Office open plan, !- Name , !- Default Construction Set Name {00000000-0000-0000-0032-000000000003}, !- Default Schedule Set Name - {00000000-0000-0000-0058-000000000037}, !- Group Rendering Name + {00000000-0000-0000-0062-000000000037}, !- Group Rendering Name {00000000-0000-0000-0035-000000000003}, !- Design Specification Outdoor Air Object Name , !- Standards Template Space Function, !- Standards Building Type Office open plan; !- Standards Space Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000001}, !- Handle + {00000000-0000-0000-0087-000000000001}, !- Handle {00000000-0000-0000-0023-000000000032}, !- Construction Name InteriorPartition, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000002}, !- Handle + {00000000-0000-0000-0087-000000000002}, !- Handle {00000000-0000-0000-0023-000000000009}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10489,7 +16759,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000003}, !- Handle + {00000000-0000-0000-0087-000000000003}, !- Handle {00000000-0000-0000-0023-000000000019}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10498,7 +16768,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000004}, !- Handle + {00000000-0000-0000-0087-000000000004}, !- Handle {00000000-0000-0000-0023-000000000015}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -10507,25 +16777,25 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000005}, !- Handle + {00000000-0000-0000-0087-000000000005}, !- Handle {00000000-0000-0000-0023-000000000031}, !- Construction Name InteriorFloor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000006}, !- Handle + {00000000-0000-0000-0087-000000000006}, !- Handle {00000000-0000-0000-0023-000000000033}, !- Construction Name InteriorWall, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000007}, !- Handle + {00000000-0000-0000-0087-000000000007}, !- Handle {00000000-0000-0000-0023-000000000029}, !- Construction Name InteriorCeiling, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000008}, !- Handle + {00000000-0000-0000-0087-000000000008}, !- Handle {00000000-0000-0000-0023-000000000021}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10534,7 +16804,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000009}, !- Handle + {00000000-0000-0000-0087-000000000009}, !- Handle {00000000-0000-0000-0023-000000000026}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10543,7 +16813,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000010}, !- Handle + {00000000-0000-0000-0087-000000000010}, !- Handle {00000000-0000-0000-0023-000000000024}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10552,12 +16822,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000011}, !- Handle + {00000000-0000-0000-0087-000000000011}, !- Handle {00000000-0000-0000-0023-000000000007}, !- Construction Name ExteriorWindow; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000012}, !- Handle + {00000000-0000-0000-0087-000000000012}, !- Handle {00000000-0000-0000-0023-000000000005}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -10566,12 +16836,12 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000013}, !- Handle + {00000000-0000-0000-0087-000000000013}, !- Handle {00000000-0000-0000-0023-000000000011}, !- Construction Name GlassDoor; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000014}, !- Handle + {00000000-0000-0000-0087-000000000014}, !- Handle {00000000-0000-0000-0023-000000000013}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -10580,34 +16850,34 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000015}, !- Handle + {00000000-0000-0000-0087-000000000015}, !- Handle {00000000-0000-0000-0023-000000000017}, !- Construction Name Skylight; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000016}, !- Handle + {00000000-0000-0000-0087-000000000016}, !- Handle {00000000-0000-0000-0023-000000000003}, !- Construction Name TubularDaylightDome; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000017}, !- Handle + {00000000-0000-0000-0087-000000000017}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Construction Name TubularDaylightDiffuser; !- Intended Surface Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000018}, !- Handle + {00000000-0000-0000-0087-000000000018}, !- Handle {00000000-0000-0000-0023-000000000034}, !- Construction Name InteriorWindow, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000019}, !- Handle + {00000000-0000-0000-0087-000000000019}, !- Handle {00000000-0000-0000-0023-000000000030}, !- Construction Name InteriorDoor, !- Intended Surface Type ; !- Standards Construction Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000020}, !- Handle + {00000000-0000-0000-0087-000000000020}, !- Handle {00000000-0000-0000-0023-000000000010}, !- Construction Name ExteriorFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10616,7 +16886,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000021}, !- Handle + {00000000-0000-0000-0087-000000000021}, !- Handle {00000000-0000-0000-0023-000000000020}, !- Construction Name ExteriorWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10625,7 +16895,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000022}, !- Handle + {00000000-0000-0000-0087-000000000022}, !- Handle {00000000-0000-0000-0023-000000000016}, !- Construction Name ExteriorRoof, !- Intended Surface Type Metal, !- Standards Construction Type @@ -10634,7 +16904,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000023}, !- Handle + {00000000-0000-0000-0087-000000000023}, !- Handle {00000000-0000-0000-0023-000000000022}, !- Construction Name GroundContactFloor, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10643,7 +16913,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000024}, !- Handle + {00000000-0000-0000-0087-000000000024}, !- Handle {00000000-0000-0000-0023-000000000027}, !- Construction Name GroundContactWall, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10652,7 +16922,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000025}, !- Handle + {00000000-0000-0000-0087-000000000025}, !- Handle {00000000-0000-0000-0023-000000000025}, !- Construction Name GroundContactRoof, !- Intended Surface Type Mass, !- Standards Construction Type @@ -10661,7 +16931,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000026}, !- Handle + {00000000-0000-0000-0087-000000000026}, !- Handle {00000000-0000-0000-0023-000000000006}, !- Construction Name ExteriorDoor, !- Intended Surface Type , !- Standards Construction Type @@ -10670,7 +16940,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Construction, - {00000000-0000-0000-0083-000000000027}, !- Handle + {00000000-0000-0000-0087-000000000027}, !- Handle {00000000-0000-0000-0023-000000000014}, !- Construction Name ExteriorDoor, !- Intended Surface Type RollUp, !- Standards Construction Type @@ -10679,135 +16949,135 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000001}, !- Handle - {00000000-0000-0000-0046-000000000021}; !- Material Name + {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0050-000000000021}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000002}, !- Handle - {00000000-0000-0000-0047-000000000013}; !- Material Name + {00000000-0000-0000-0088-000000000002}, !- Handle + {00000000-0000-0000-0051-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000003}, !- Handle - {00000000-0000-0000-0046-000000000008}; !- Material Name + {00000000-0000-0000-0088-000000000003}, !- Handle + {00000000-0000-0000-0050-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000004}, !- Handle - {00000000-0000-0000-0047-000000000007}; !- Material Name + {00000000-0000-0000-0088-000000000004}, !- Handle + {00000000-0000-0000-0051-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000005}, !- Handle - {00000000-0000-0000-0046-000000000006}; !- Material Name + {00000000-0000-0000-0088-000000000005}, !- Handle + {00000000-0000-0000-0050-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000006}, !- Handle - {00000000-0000-0000-0046-000000000014}; !- Material Name + {00000000-0000-0000-0088-000000000006}, !- Handle + {00000000-0000-0000-0050-000000000014}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000007}, !- Handle - {00000000-0000-0000-0046-000000000002}; !- Material Name + {00000000-0000-0000-0088-000000000007}, !- Handle + {00000000-0000-0000-0050-000000000002}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000008}, !- Handle - {00000000-0000-0000-0046-000000000024}; !- Material Name + {00000000-0000-0000-0088-000000000008}, !- Handle + {00000000-0000-0000-0050-000000000024}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000009}, !- Handle - {00000000-0000-0000-0046-000000000003}; !- Material Name + {00000000-0000-0000-0088-000000000009}, !- Handle + {00000000-0000-0000-0050-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000010}, !- Handle - {00000000-0000-0000-0046-000000000019}; !- Material Name + {00000000-0000-0000-0088-000000000010}, !- Handle + {00000000-0000-0000-0050-000000000019}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000011}, !- Handle - {00000000-0000-0000-0046-000000000012}; !- Material Name + {00000000-0000-0000-0088-000000000011}, !- Handle + {00000000-0000-0000-0050-000000000012}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000012}, !- Handle - {00000000-0000-0000-0100-000000000001}; !- Material Name + {00000000-0000-0000-0088-000000000012}, !- Handle + {00000000-0000-0000-0104-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000013}, !- Handle - {00000000-0000-0000-0046-000000000018}; !- Material Name + {00000000-0000-0000-0088-000000000013}, !- Handle + {00000000-0000-0000-0050-000000000018}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000014}, !- Handle - {00000000-0000-0000-0047-000000000008}; !- Material Name + {00000000-0000-0000-0088-000000000014}, !- Handle + {00000000-0000-0000-0051-000000000008}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000015}, !- Handle - {00000000-0000-0000-0046-000000000007}; !- Material Name + {00000000-0000-0000-0088-000000000015}, !- Handle + {00000000-0000-0000-0050-000000000007}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000016}, !- Handle - {00000000-0000-0000-0047-000000000003}; !- Material Name + {00000000-0000-0000-0088-000000000016}, !- Handle + {00000000-0000-0000-0051-000000000003}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000017}, !- Handle - {00000000-0000-0000-0046-000000000005}; !- Material Name + {00000000-0000-0000-0088-000000000017}, !- Handle + {00000000-0000-0000-0050-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000018}, !- Handle - {00000000-0000-0000-0046-000000000013}; !- Material Name + {00000000-0000-0000-0088-000000000018}, !- Handle + {00000000-0000-0000-0050-000000000013}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000019}, !- Handle - {00000000-0000-0000-0047-000000000009}; !- Material Name + {00000000-0000-0000-0088-000000000019}, !- Handle + {00000000-0000-0000-0051-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000020}, !- Handle - {00000000-0000-0000-0046-000000000001}; !- Material Name + {00000000-0000-0000-0088-000000000020}, !- Handle + {00000000-0000-0000-0050-000000000001}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000021}, !- Handle - {00000000-0000-0000-0046-000000000023}; !- Material Name + {00000000-0000-0000-0088-000000000021}, !- Handle + {00000000-0000-0000-0050-000000000023}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000022}, !- Handle - {00000000-0000-0000-0047-000000000010}; !- Material Name + {00000000-0000-0000-0088-000000000022}, !- Handle + {00000000-0000-0000-0051-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000023}, !- Handle - {00000000-0000-0000-0046-000000000009}; !- Material Name + {00000000-0000-0000-0088-000000000023}, !- Handle + {00000000-0000-0000-0050-000000000009}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000024}, !- Handle - {00000000-0000-0000-0047-000000000004}; !- Material Name + {00000000-0000-0000-0088-000000000024}, !- Handle + {00000000-0000-0000-0051-000000000004}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000025}, !- Handle - {00000000-0000-0000-0046-000000000010}; !- Material Name + {00000000-0000-0000-0088-000000000025}, !- Handle + {00000000-0000-0000-0050-000000000010}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000026}, !- Handle - {00000000-0000-0000-0047-000000000005}; !- Material Name + {00000000-0000-0000-0088-000000000026}, !- Handle + {00000000-0000-0000-0051-000000000005}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000027}, !- Handle - {00000000-0000-0000-0046-000000000011}; !- Material Name + {00000000-0000-0000-0088-000000000027}, !- Handle + {00000000-0000-0000-0050-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000028}, !- Handle - {00000000-0000-0000-0047-000000000006}; !- Material Name + {00000000-0000-0000-0088-000000000028}, !- Handle + {00000000-0000-0000-0051-000000000006}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000029}, !- Handle - {00000000-0000-0000-0046-000000000017}; !- Material Name + {00000000-0000-0000-0088-000000000029}, !- Handle + {00000000-0000-0000-0050-000000000017}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000030}, !- Handle - {00000000-0000-0000-0047-000000000011}; !- Material Name + {00000000-0000-0000-0088-000000000030}, !- Handle + {00000000-0000-0000-0051-000000000011}; !- Material Name OS:StandardsInformation:Material, - {00000000-0000-0000-0084-000000000031}, !- Handle - {00000000-0000-0000-0047-000000000012}; !- Material Name + {00000000-0000-0000-0088-000000000031}, !- Handle + {00000000-0000-0000-0051-000000000012}; !- Material Name OS:SubSurface, - {00000000-0000-0000-0085-000000000001}, !- Handle + {00000000-0000-0000-0089-000000000001}, !- Handle Perimeter_bot_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000098}, !- Surface Name + {00000000-0000-0000-0090-000000000098}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10819,11 +17089,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000002}, !- Handle + {00000000-0000-0000-0089-000000000002}, !- Handle Perimeter_bot_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000103}, !- Surface Name + {00000000-0000-0000-0090-000000000103}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10835,11 +17105,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000003}, !- Handle + {00000000-0000-0000-0089-000000000003}, !- Handle Perimeter_bot_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000110}, !- Surface Name + {00000000-0000-0000-0090-000000000110}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10851,11 +17121,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000004}, !- Handle + {00000000-0000-0000-0089-000000000004}, !- Handle Perimeter_bot_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000119}, !- Surface Name + {00000000-0000-0000-0090-000000000119}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10867,11 +17137,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000005}, !- Handle + {00000000-0000-0000-0089-000000000005}, !- Handle Perimeter_mid_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000125}, !- Surface Name + {00000000-0000-0000-0090-000000000125}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10883,11 +17153,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000006}, !- Handle + {00000000-0000-0000-0089-000000000006}, !- Handle Perimeter_mid_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000129}, !- Surface Name + {00000000-0000-0000-0090-000000000129}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10899,11 +17169,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000007}, !- Handle + {00000000-0000-0000-0089-000000000007}, !- Handle Perimeter_mid_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000135}, !- Surface Name + {00000000-0000-0000-0090-000000000135}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10915,11 +17185,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000008}, !- Handle + {00000000-0000-0000-0089-000000000008}, !- Handle Perimeter_mid_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000143}, !- Surface Name + {00000000-0000-0000-0090-000000000143}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10931,11 +17201,11 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000009}, !- Handle + {00000000-0000-0000-0089-000000000009}, !- Handle Perimeter_top_ZN_1_Wall_South_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000147}, !- Surface Name + {00000000-0000-0000-0090-000000000147}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10947,11 +17217,11 @@ OS:SubSurface, 73.0818, 0, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000010}, !- Handle + {00000000-0000-0000-0089-000000000010}, !- Handle Perimeter_top_ZN_2_Wall_East_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000151}, !- Surface Name + {00000000-0000-0000-0090-000000000151}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10963,11 +17233,11 @@ OS:SubSurface, 4.5732, 48.7127, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000011}, !- Handle + {00000000-0000-0000-0089-000000000011}, !- Handle Perimeter_top_ZN_3_Wall_North_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000157}, !- Surface Name + {00000000-0000-0000-0090-000000000157}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10979,11 +17249,11 @@ OS:SubSurface, 0.0253999999999905, 4.5731, 2.08266328929868; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {00000000-0000-0000-0085-000000000012}, !- Handle + {00000000-0000-0000-0089-000000000012}, !- Handle Perimeter_top_ZN_4_Wall_West_FixedWindow, !- Name FixedWindow, !- Sub Surface Type {00000000-0000-0000-0023-000000000008}, !- Construction Name - {00000000-0000-0000-0086-000000000165}, !- Surface Name + {00000000-0000-0000-0090-000000000165}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground , !- Frame and Divider Name @@ -10995,13 +17265,13 @@ OS:SubSurface, 0, 0.0254000000000048, 2.08312261364586; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Handle Basement_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11012,13 +17282,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000002}, !- Handle Basement_Wall_East, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11029,13 +17299,13 @@ OS:Surface, 57.0278, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000003}, !- Handle + {00000000-0000-0000-0090-000000000003}, !- Handle Basement_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11046,13 +17316,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000004}, !- Handle + {00000000-0000-0000-0090-000000000004}, !- Handle Basement_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11063,13 +17333,13 @@ OS:Surface, 57.0278, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000005}, !- Handle + {00000000-0000-0000-0090-000000000005}, !- Handle Basement_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000045}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000045}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11080,11 +17350,11 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000006}, !- Handle + {00000000-0000-0000-0090-000000000006}, !- Handle Building_Roof, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -11097,13 +17367,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000007}, !- Handle + {00000000-0000-0000-0090-000000000007}, !- Handle Core_bot_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000008}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000008}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11114,13 +17384,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000008}, !- Handle + {00000000-0000-0000-0090-000000000008}, !- Handle Core_bot_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000007}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000007}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11131,13 +17401,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000009}, !- Handle + {00000000-0000-0000-0090-000000000009}, !- Handle Core_bot_ZN_5_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000010}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000010}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11148,13 +17418,13 @@ OS:Surface, 10.5906, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000010}, !- Handle + {00000000-0000-0000-0090-000000000010}, !- Handle Core_bot_ZN_5_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000009}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000009}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11165,13 +17435,13 @@ OS:Surface, 0, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000011}, !- Handle + {00000000-0000-0000-0090-000000000011}, !- Handle Core_bot_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000012}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000012}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11182,13 +17452,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000012}, !- Handle + {00000000-0000-0000-0090-000000000012}, !- Handle Core_bot_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000011}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000011}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11199,13 +17469,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000013}, !- Handle + {00000000-0000-0000-0090-000000000013}, !- Handle Core_bot_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000014}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000014}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11216,13 +17486,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000014}, !- Handle + {00000000-0000-0000-0090-000000000014}, !- Handle Core_bot_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000013}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000013}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11233,13 +17503,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000015}, !- Handle + {00000000-0000-0000-0090-000000000015}, !- Handle Core_bot_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000016}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000016}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11250,13 +17520,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000016}, !- Handle + {00000000-0000-0000-0090-000000000016}, !- Handle Core_bot_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000015}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000015}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11267,13 +17537,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000017}, !- Handle + {00000000-0000-0000-0090-000000000017}, !- Handle Core_bot_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000053}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000053}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11284,13 +17554,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000018}, !- Handle + {00000000-0000-0000-0090-000000000018}, !- Handle Core_mid_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000019}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000019}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11301,13 +17571,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000019}, !- Handle + {00000000-0000-0000-0090-000000000019}, !- Handle Core_mid_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000018}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000018}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11318,11 +17588,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000020}, !- Handle + {00000000-0000-0000-0090-000000000020}, !- Handle Core_mid_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11335,13 +17605,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000021}, !- Handle + {00000000-0000-0000-0090-000000000021}, !- Handle Core_mid_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000022}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000022}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11352,13 +17622,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000022}, !- Handle + {00000000-0000-0000-0090-000000000022}, !- Handle Core_mid_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000021}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000021}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11369,13 +17639,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000023}, !- Handle + {00000000-0000-0000-0090-000000000023}, !- Handle Core_mid_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000024}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000024}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11386,13 +17656,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000024}, !- Handle + {00000000-0000-0000-0090-000000000024}, !- Handle Core_mid_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000023}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000023}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11403,13 +17673,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000025}, !- Handle + {00000000-0000-0000-0090-000000000025}, !- Handle Core_mid_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000026}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000026}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11420,13 +17690,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000026}, !- Handle + {00000000-0000-0000-0090-000000000026}, !- Handle Core_mid_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000025}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000025}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11437,13 +17707,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000027}, !- Handle + {00000000-0000-0000-0090-000000000027}, !- Handle Core_mid_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000003}, !- Space Name + {00000000-0000-0000-0084-000000000003}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000061}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000061}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11454,13 +17724,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000028}, !- Handle + {00000000-0000-0000-0090-000000000028}, !- Handle Core_top_ZN_5_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000029}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000029}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11471,13 +17741,13 @@ OS:Surface, 5.4876, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000029}, !- Handle + {00000000-0000-0000-0090-000000000029}, !- Handle Core_top_ZN_5_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000028}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000028}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11488,11 +17758,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000030}, !- Handle + {00000000-0000-0000-0090-000000000030}, !- Handle Core_top_ZN_5_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -11505,13 +17775,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000031}, !- Handle + {00000000-0000-0000-0090-000000000031}, !- Handle Core_top_ZN_5_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000032}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000032}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11522,13 +17792,13 @@ OS:Surface, 63.0464, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000032}, !- Handle + {00000000-0000-0000-0090-000000000032}, !- Handle Core_top_ZN_5_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000031}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000031}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11539,13 +17809,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000033}, !- Handle + {00000000-0000-0000-0090-000000000033}, !- Handle Core_top_ZN_5_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000034}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000034}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11556,13 +17826,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000034}, !- Handle + {00000000-0000-0000-0090-000000000034}, !- Handle Core_top_ZN_5_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000033}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000033}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11573,13 +17843,13 @@ OS:Surface, 68.534, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000035}, !- Handle + {00000000-0000-0000-0090-000000000035}, !- Handle Core_top_ZN_5_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000036}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000036}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11590,13 +17860,13 @@ OS:Surface, 63.0464, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000036}, !- Handle + {00000000-0000-0000-0090-000000000036}, !- Handle Core_top_ZN_5_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000035}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000035}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11607,13 +17877,13 @@ OS:Surface, 5.4876, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000037}, !- Handle + {00000000-0000-0000-0090-000000000037}, !- Handle Core_top_ZN_5_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000004}, !- Space Name + {00000000-0000-0000-0084-000000000004}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000071}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000071}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11624,13 +17894,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000038}, !- Handle + {00000000-0000-0000-0090-000000000038}, !- Handle DataCenter_basement_ZN_6-Perimeter_bot_ZN_1-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000041}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000041}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11641,13 +17911,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000039}, !- Handle + {00000000-0000-0000-0090-000000000039}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000040}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000040}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11658,13 +17928,13 @@ OS:Surface, 5.4876, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000040}, !- Handle + {00000000-0000-0000-0090-000000000040}, !- Handle DataCenter_basement_ZN_6_Ceiling-Core_bot_ZN_5-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000002}, !- Space Name + {00000000-0000-0000-0084-000000000002}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000039}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000039}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11675,13 +17945,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000041}, !- Handle + {00000000-0000-0000-0090-000000000041}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_1, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000038}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000038}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11692,13 +17962,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000042}, !- Handle + {00000000-0000-0000-0090-000000000042}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000043}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000043}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11709,13 +17979,13 @@ OS:Surface, 4.5732, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000043}, !- Handle + {00000000-0000-0000-0090-000000000043}, !- Handle DataCenter_basement_ZN_6_Ceiling-Perimeter_bot_ZN_3-PPAutoCreateOther, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000042}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000042}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11726,13 +17996,13 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000044}, !- Handle + {00000000-0000-0000-0090-000000000044}, !- Handle DataCenter_basement_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000023}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11743,13 +18013,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000045}, !- Handle + {00000000-0000-0000-0090-000000000045}, !- Handle DataCenter_basement_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000005}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000005}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11760,13 +18030,13 @@ OS:Surface, 16.0794, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000046}, !- Handle + {00000000-0000-0000-0090-000000000046}, !- Handle DataCenter_basement_ZN_6_Wall_North, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11777,13 +18047,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000047}, !- Handle + {00000000-0000-0000-0090-000000000047}, !- Handle DataCenter_basement_ZN_6_Wall_South, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11794,13 +18064,13 @@ OS:Surface, 16.0794, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000048}, !- Handle + {00000000-0000-0000-0090-000000000048}, !- Handle DataCenter_basement_ZN_6_Wall_West, !- Name Wall, !- Surface Type {00000000-0000-0000-0023-000000000028}, !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Foundation, !- Outside Boundary Condition - {00000000-0000-0000-0041-000000000001}, !- Outside Boundary Condition Object + {00000000-0000-0000-0045-000000000001}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11811,13 +18081,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000049}, !- Handle + {00000000-0000-0000-0090-000000000049}, !- Handle DataCenter_bot_ZN_6_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000050}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000050}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -11828,13 +18098,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000050}, !- Handle + {00000000-0000-0000-0090-000000000050}, !- Handle DataCenter_bot_ZN_6_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000049}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000049}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11845,13 +18115,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000051}, !- Handle + {00000000-0000-0000-0090-000000000051}, !- Handle DataCenter_bot_ZN_6_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000052}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000052}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11862,13 +18132,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000052}, !- Handle + {00000000-0000-0000-0090-000000000052}, !- Handle DataCenter_bot_ZN_6_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000051}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000051}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11879,13 +18149,13 @@ OS:Surface, 4.5732, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000053}, !- Handle + {00000000-0000-0000-0090-000000000053}, !- Handle DataCenter_bot_ZN_6_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000017}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000017}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11896,13 +18166,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000054}, !- Handle + {00000000-0000-0000-0090-000000000054}, !- Handle DataCenter_bot_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000055}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000055}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11913,13 +18183,13 @@ OS:Surface, -3.33066907387547e-016, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000055}, !- Handle + {00000000-0000-0000-0090-000000000055}, !- Handle DataCenter_bot_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000054}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000054}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11930,13 +18200,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000056}, !- Handle + {00000000-0000-0000-0090-000000000056}, !- Handle DataCenter_bot_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000057}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000057}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11947,13 +18217,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000057}, !- Handle + {00000000-0000-0000-0090-000000000057}, !- Handle DataCenter_bot_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000056}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000056}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11964,13 +18234,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000058}, !- Handle + {00000000-0000-0000-0090-000000000058}, !- Handle DataCenter_bot_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000006}, !- Space Name + {00000000-0000-0000-0084-000000000006}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000059}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000059}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11981,13 +18251,13 @@ OS:Surface, -3.33066907387547e-016, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000059}, !- Handle + {00000000-0000-0000-0090-000000000059}, !- Handle DataCenter_bot_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000058}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000058}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -11998,11 +18268,11 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000060}, !- Handle + {00000000-0000-0000-0090-000000000060}, !- Handle DataCenter_mid_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12015,13 +18285,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000061}, !- Handle + {00000000-0000-0000-0090-000000000061}, !- Handle DataCenter_mid_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000027}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000027}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12032,13 +18302,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000062}, !- Handle + {00000000-0000-0000-0090-000000000062}, !- Handle DataCenter_mid_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000063}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000063}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12049,13 +18319,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000063}, !- Handle + {00000000-0000-0000-0090-000000000063}, !- Handle DataCenter_mid_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000062}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000062}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12066,13 +18336,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000064}, !- Handle + {00000000-0000-0000-0090-000000000064}, !- Handle DataCenter_mid_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000065}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000065}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12083,13 +18353,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000065}, !- Handle + {00000000-0000-0000-0090-000000000065}, !- Handle DataCenter_mid_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000064}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000064}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12100,13 +18370,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000066}, !- Handle + {00000000-0000-0000-0090-000000000066}, !- Handle DataCenter_mid_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000067}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000067}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12117,13 +18387,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000067}, !- Handle + {00000000-0000-0000-0090-000000000067}, !- Handle DataCenter_mid_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000066}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12134,13 +18404,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000068}, !- Handle + {00000000-0000-0000-0090-000000000068}, !- Handle DataCenter_mid_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000069}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000069}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12151,13 +18421,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000069}, !- Handle + {00000000-0000-0000-0090-000000000069}, !- Handle DataCenter_mid_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000007}, !- Space Name + {00000000-0000-0000-0084-000000000007}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000068}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000068}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12168,11 +18438,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000070}, !- Handle + {00000000-0000-0000-0090-000000000070}, !- Handle DataCenter_top_ZN_6_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12185,13 +18455,13 @@ OS:Surface, 0, 39.5918, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000071}, !- Handle + {00000000-0000-0000-0090-000000000071}, !- Handle DataCenter_top_ZN_6_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000037}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000037}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12202,13 +18472,13 @@ OS:Surface, 0.9144, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000072}, !- Handle + {00000000-0000-0000-0090-000000000072}, !- Handle DataCenter_top_ZN_6_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000073}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000073}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12219,13 +18489,13 @@ OS:Surface, 0, 39.5918, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000073}, !- Handle + {00000000-0000-0000-0090-000000000073}, !- Handle DataCenter_top_ZN_6_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000072}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000072}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12236,13 +18506,13 @@ OS:Surface, 5.4876, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000074}, !- Handle + {00000000-0000-0000-0090-000000000074}, !- Handle DataCenter_top_ZN_6_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000075}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000075}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12253,13 +18523,13 @@ OS:Surface, 0.9144, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000075}, !- Handle + {00000000-0000-0000-0090-000000000075}, !- Handle DataCenter_top_ZN_6_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000074}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000074}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12270,13 +18540,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000076}, !- Handle + {00000000-0000-0000-0090-000000000076}, !- Handle DataCenter_top_ZN_6_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000077}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000077}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12287,13 +18557,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000077}, !- Handle + {00000000-0000-0000-0090-000000000077}, !- Handle DataCenter_top_ZN_6_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000076}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000076}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12304,13 +18574,13 @@ OS:Surface, 4.5732, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000078}, !- Handle + {00000000-0000-0000-0090-000000000078}, !- Handle DataCenter_top_ZN_6_ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000079}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000079}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12321,13 +18591,13 @@ OS:Surface, 4.5732, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000079}, !- Handle + {00000000-0000-0000-0090-000000000079}, !- Handle DataCenter_top_ZN_6_ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000008}, !- Space Name + {00000000-0000-0000-0084-000000000008}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000078}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000078}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12338,11 +18608,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000080}, !- Handle + {00000000-0000-0000-0090-000000000080}, !- Handle GroundFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12355,11 +18625,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000081}, !- Handle + {00000000-0000-0000-0090-000000000081}, !- Handle GroundFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12372,11 +18642,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000082}, !- Handle + {00000000-0000-0000-0090-000000000082}, !- Handle GroundFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12389,11 +18659,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000083}, !- Handle + {00000000-0000-0000-0090-000000000083}, !- Handle GroundFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12406,11 +18676,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000084}, !- Handle + {00000000-0000-0000-0090-000000000084}, !- Handle GroundFloor_Plenum_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12423,13 +18693,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000085}, !- Handle + {00000000-0000-0000-0090-000000000085}, !- Handle Int-Per3S-NE, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000086}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000086}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12440,13 +18710,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000086}, !- Handle + {00000000-0000-0000-0090-000000000086}, !- Handle Int-Per3S-NE-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000085}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000085}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12457,11 +18727,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000087}, !- Handle + {00000000-0000-0000-0090-000000000087}, !- Handle MidFloor_Plenum_Ceiling, !- Name RoofCeiling, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -12474,11 +18744,11 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000088}, !- Handle + {00000000-0000-0000-0090-000000000088}, !- Handle MidFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12491,11 +18761,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000089}, !- Handle + {00000000-0000-0000-0090-000000000089}, !- Handle MidFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12508,11 +18778,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000090}, !- Handle + {00000000-0000-0000-0090-000000000090}, !- Handle MidFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12525,11 +18795,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000091}, !- Handle + {00000000-0000-0000-0090-000000000091}, !- Handle MidFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12542,13 +18812,13 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000092}, !- Handle + {00000000-0000-0000-0090-000000000092}, !- Handle Perimeter_bot_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000093}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000093}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12559,13 +18829,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000093}, !- Handle + {00000000-0000-0000-0090-000000000093}, !- Handle Perimeter_bot_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000092}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000092}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12576,13 +18846,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000094}, !- Handle + {00000000-0000-0000-0090-000000000094}, !- Handle Perimeter_bot_ZN_1_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000095}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000095}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12593,13 +18863,13 @@ OS:Surface, 16.0782, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000095}, !- Handle + {00000000-0000-0000-0090-000000000095}, !- Handle Perimeter_bot_ZN_1_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000094}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000094}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12610,13 +18880,13 @@ OS:Surface, 0, 0, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000096}, !- Handle + {00000000-0000-0000-0090-000000000096}, !- Handle Perimeter_bot_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000097}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000097}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12627,13 +18897,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000097}, !- Handle + {00000000-0000-0000-0090-000000000097}, !- Handle Perimeter_bot_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000096}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000096}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12644,11 +18914,11 @@ OS:Surface, 4.5732, 4.08374768133815e-015, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000098}, !- Handle + {00000000-0000-0000-0090-000000000098}, !- Handle Perimeter_bot_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12661,13 +18931,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000099}, !- Handle + {00000000-0000-0000-0090-000000000099}, !- Handle Perimeter_bot_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000100}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000100}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12678,13 +18948,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000100}, !- Handle + {00000000-0000-0000-0090-000000000100}, !- Handle Perimeter_bot_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000099}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000099}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12695,13 +18965,13 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000101}, !- Handle + {00000000-0000-0000-0090-000000000101}, !- Handle Perimeter_bot_ZN_2_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000102}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000102}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12712,13 +18982,13 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000102}, !- Handle + {00000000-0000-0000-0090-000000000102}, !- Handle Perimeter_bot_ZN_2_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000101}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000101}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12729,11 +18999,11 @@ OS:Surface, 52.4546, 4.5732, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000103}, !- Handle + {00000000-0000-0000-0090-000000000103}, !- Handle Perimeter_bot_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12746,13 +19016,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000104}, !- Handle + {00000000-0000-0000-0090-000000000104}, !- Handle Perimeter_bot_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000012}, !- Space Name + {00000000-0000-0000-0084-000000000012}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000105}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000105}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12763,13 +19033,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000105}, !- Handle + {00000000-0000-0000-0090-000000000105}, !- Handle Perimeter_bot_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000104}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000104}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12780,13 +19050,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000106}, !- Handle + {00000000-0000-0000-0090-000000000106}, !- Handle Perimeter_bot_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000107}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000107}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12797,13 +19067,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000107}, !- Handle + {00000000-0000-0000-0090-000000000107}, !- Handle Perimeter_bot_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000106}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000106}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12814,13 +19084,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000108}, !- Handle + {00000000-0000-0000-0090-000000000108}, !- Handle Perimeter_bot_ZN_3_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000109}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000109}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12831,13 +19101,13 @@ OS:Surface, 16.0782, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000109}, !- Handle + {00000000-0000-0000-0090-000000000109}, !- Handle Perimeter_bot_ZN_3_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000001}, !- Space Name + {00000000-0000-0000-0084-000000000001}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000108}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000108}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12848,11 +19118,11 @@ OS:Surface, 0, 44.165, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000110}, !- Handle + {00000000-0000-0000-0090-000000000110}, !- Handle Perimeter_bot_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -12865,13 +19135,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000111}, !- Handle + {00000000-0000-0000-0090-000000000111}, !- Handle Perimeter_bot_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000013}, !- Space Name + {00000000-0000-0000-0084-000000000013}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000112}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000112}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12882,13 +19152,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000112}, !- Handle + {00000000-0000-0000-0090-000000000112}, !- Handle Perimeter_bot_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000111}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000111}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12899,13 +19169,13 @@ OS:Surface, 8.16740606383402e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000113}, !- Handle + {00000000-0000-0000-0090-000000000113}, !- Handle Perimeter_bot_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000009}, !- Space Name + {00000000-0000-0000-0084-000000000009}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000114}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000114}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12916,13 +19186,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000114}, !- Handle + {00000000-0000-0000-0090-000000000114}, !- Handle Perimeter_bot_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000113}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000113}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12933,13 +19203,13 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000115}, !- Handle + {00000000-0000-0000-0090-000000000115}, !- Handle Perimeter_bot_ZN_4_Floor, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000116}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000116}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12950,13 +19220,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000116}, !- Handle + {00000000-0000-0000-0090-000000000116}, !- Handle Perimeter_bot_ZN_4_Floor-PPAutoCreateOther, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000005}, !- Space Name + {00000000-0000-0000-0084-000000000005}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000115}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000115}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure 0, !- View Factor to Ground @@ -12967,13 +19237,13 @@ OS:Surface, 0, 48.7381, 2.439; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000117}, !- Handle + {00000000-0000-0000-0090-000000000117}, !- Handle Perimeter_bot_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000118}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000118}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -12984,13 +19254,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000118}, !- Handle + {00000000-0000-0000-0090-000000000118}, !- Handle Perimeter_bot_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000011}, !- Space Name + {00000000-0000-0000-0084-000000000011}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000117}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000117}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13001,11 +19271,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000119}, !- Handle + {00000000-0000-0000-0090-000000000119}, !- Handle Perimeter_bot_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000014}, !- Space Name + {00000000-0000-0000-0084-000000000014}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13018,13 +19288,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000120}, !- Handle + {00000000-0000-0000-0090-000000000120}, !- Handle Perimeter_mid_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000121}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000121}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13035,13 +19305,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000121}, !- Handle + {00000000-0000-0000-0090-000000000121}, !- Handle Perimeter_mid_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000120}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000120}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13052,11 +19322,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000122}, !- Handle + {00000000-0000-0000-0090-000000000122}, !- Handle Perimeter_mid_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13069,13 +19339,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000123}, !- Handle + {00000000-0000-0000-0090-000000000123}, !- Handle Perimeter_mid_ZN_1_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000124}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000124}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13086,13 +19356,13 @@ OS:Surface, 68.534, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000124}, !- Handle + {00000000-0000-0000-0090-000000000124}, !- Handle Perimeter_mid_ZN_1_Wall_East-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000123}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000123}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13103,11 +19373,11 @@ OS:Surface, 4.5732, 2.55234230083634e-016, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000125}, !- Handle + {00000000-0000-0000-0090-000000000125}, !- Handle Perimeter_mid_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13120,13 +19390,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000126}, !- Handle + {00000000-0000-0000-0090-000000000126}, !- Handle Perimeter_mid_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000127}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000127}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13137,13 +19407,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000127}, !- Handle + {00000000-0000-0000-0090-000000000127}, !- Handle Perimeter_mid_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000126}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000126}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13154,11 +19424,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000128}, !- Handle + {00000000-0000-0000-0090-000000000128}, !- Handle Perimeter_mid_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13171,11 +19441,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000129}, !- Handle + {00000000-0000-0000-0090-000000000129}, !- Handle Perimeter_mid_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13188,13 +19458,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000130}, !- Handle + {00000000-0000-0000-0090-000000000130}, !- Handle Perimeter_mid_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000016}, !- Space Name + {00000000-0000-0000-0084-000000000016}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000131}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000131}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13205,13 +19475,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000131}, !- Handle + {00000000-0000-0000-0090-000000000131}, !- Handle Perimeter_mid_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000130}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000130}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13222,13 +19492,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000132}, !- Handle + {00000000-0000-0000-0090-000000000132}, !- Handle Perimeter_mid_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000133}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000133}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13239,13 +19509,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000133}, !- Handle + {00000000-0000-0000-0090-000000000133}, !- Handle Perimeter_mid_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000132}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000132}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13256,11 +19526,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000134}, !- Handle + {00000000-0000-0000-0090-000000000134}, !- Handle Perimeter_mid_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13273,11 +19543,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000135}, !- Handle + {00000000-0000-0000-0090-000000000135}, !- Handle Perimeter_mid_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13290,13 +19560,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000136}, !- Handle + {00000000-0000-0000-0090-000000000136}, !- Handle Perimeter_mid_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000017}, !- Space Name + {00000000-0000-0000-0084-000000000017}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000137}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000137}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13307,13 +19577,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000137}, !- Handle + {00000000-0000-0000-0090-000000000137}, !- Handle Perimeter_mid_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000136}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000136}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13324,13 +19594,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000138}, !- Handle + {00000000-0000-0000-0090-000000000138}, !- Handle Perimeter_mid_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000010}, !- Space Name + {00000000-0000-0000-0084-000000000010}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000139}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000139}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13341,13 +19611,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000139}, !- Handle + {00000000-0000-0000-0090-000000000139}, !- Handle Perimeter_mid_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000138}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000138}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13358,11 +19628,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000140}, !- Handle + {00000000-0000-0000-0090-000000000140}, !- Handle Perimeter_mid_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13375,13 +19645,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000141}, !- Handle + {00000000-0000-0000-0090-000000000141}, !- Handle Perimeter_mid_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000142}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000142}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13392,13 +19662,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000142}, !- Handle + {00000000-0000-0000-0090-000000000142}, !- Handle Perimeter_mid_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000015}, !- Space Name + {00000000-0000-0000-0084-000000000015}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000141}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000141}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13409,11 +19679,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000143}, !- Handle + {00000000-0000-0000-0090-000000000143}, !- Handle Perimeter_mid_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000018}, !- Space Name + {00000000-0000-0000-0084-000000000018}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13426,13 +19696,13 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000144}, !- Handle + {00000000-0000-0000-0090-000000000144}, !- Handle Perimeter_top_ZN_1_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000145}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000145}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13443,13 +19713,13 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000145}, !- Handle + {00000000-0000-0000-0090-000000000145}, !- Handle Perimeter_top_ZN_1_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000144}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000144}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13460,11 +19730,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000146}, !- Handle + {00000000-0000-0000-0090-000000000146}, !- Handle Perimeter_top_ZN_1_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13477,11 +19747,11 @@ OS:Surface, 4.5732, 4.5732, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000147}, !- Handle + {00000000-0000-0000-0090-000000000147}, !- Handle Perimeter_top_ZN_1_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13494,13 +19764,13 @@ OS:Surface, 73.1072, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000148}, !- Handle + {00000000-0000-0000-0090-000000000148}, !- Handle Perimeter_top_ZN_2_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000149}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000149}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13511,13 +19781,13 @@ OS:Surface, 68.534, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000149}, !- Handle + {00000000-0000-0000-0090-000000000149}, !- Handle Perimeter_top_ZN_2_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000148}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000148}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13528,11 +19798,11 @@ OS:Surface, 0, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000150}, !- Handle + {00000000-0000-0000-0090-000000000150}, !- Handle Perimeter_top_ZN_2_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13545,11 +19815,11 @@ OS:Surface, 0, 44.165, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000151}, !- Handle + {00000000-0000-0000-0090-000000000151}, !- Handle Perimeter_top_ZN_2_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13562,13 +19832,13 @@ OS:Surface, 4.5732, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000152}, !- Handle + {00000000-0000-0000-0090-000000000152}, !- Handle Perimeter_top_ZN_2_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000020}, !- Space Name + {00000000-0000-0000-0084-000000000020}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000153}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000153}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13579,13 +19849,13 @@ OS:Surface, 0, 44.165, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000153}, !- Handle + {00000000-0000-0000-0090-000000000153}, !- Handle Perimeter_top_ZN_2_Wall_North-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000152}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000152}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13596,13 +19866,13 @@ OS:Surface, 73.1072, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000154}, !- Handle + {00000000-0000-0000-0090-000000000154}, !- Handle Perimeter_top_ZN_3_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000155}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000155}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13613,13 +19883,13 @@ OS:Surface, 0, 48.7381, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000155}, !- Handle + {00000000-0000-0000-0090-000000000155}, !- Handle Perimeter_top_ZN_3_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000154}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000154}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13630,11 +19900,11 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000156}, !- Handle + {00000000-0000-0000-0090-000000000156}, !- Handle Perimeter_top_ZN_3_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13647,11 +19917,11 @@ OS:Surface, 0, 4.5731, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000157}, !- Handle + {00000000-0000-0000-0090-000000000157}, !- Handle Perimeter_top_ZN_3_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13664,13 +19934,13 @@ OS:Surface, 0, 4.5731, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000158}, !- Handle + {00000000-0000-0000-0090-000000000158}, !- Handle Perimeter_top_ZN_3_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000021}, !- Space Name + {00000000-0000-0000-0084-000000000021}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000159}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000159}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13681,13 +19951,13 @@ OS:Surface, 4.5732, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000159}, !- Handle + {00000000-0000-0000-0090-000000000159}, !- Handle Perimeter_top_ZN_3_Wall_West-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000158}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000158}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13698,13 +19968,13 @@ OS:Surface, 4.08370303191701e-015, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000160}, !- Handle + {00000000-0000-0000-0090-000000000160}, !- Handle Perimeter_top_ZN_4_Ceiling Reversed, !- Name Floor, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000161}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000161}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13715,13 +19985,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000161}, !- Handle + {00000000-0000-0000-0090-000000000161}, !- Handle Perimeter_top_ZN_4_Ceiling, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000160}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000160}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13732,11 +20002,11 @@ OS:Surface, 0, 48.7381, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000162}, !- Handle + {00000000-0000-0000-0090-000000000162}, !- Handle Perimeter_top_ZN_4_Floor, !- Name Floor, !- Surface Type {00000000-0000-0000-0023-000000000033}, !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Adiabatic, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -13749,13 +20019,13 @@ OS:Surface, 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000163}, !- Handle + {00000000-0000-0000-0090-000000000163}, !- Handle Perimeter_top_ZN_4_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000164}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000164}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13766,13 +20036,13 @@ OS:Surface, 4.5732, 4.5732, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000164}, !- Handle + {00000000-0000-0000-0090-000000000164}, !- Handle Perimeter_top_ZN_4_Wall_South-PPAutoCreateOther, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000019}, !- Space Name + {00000000-0000-0000-0084-000000000019}, !- Space Name Surface, !- Outside Boundary Condition - {00000000-0000-0000-0086-000000000163}, !- Outside Boundary Condition Object + {00000000-0000-0000-0090-000000000163}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground @@ -13783,11 +20053,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000165}, !- Handle + {00000000-0000-0000-0090-000000000165}, !- Handle Perimeter_top_ZN_4_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000022}, !- Space Name + {00000000-0000-0000-0084-000000000022}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13800,11 +20070,11 @@ OS:Surface, 0, 0, 2.744; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000166}, !- Handle + {00000000-0000-0000-0090-000000000166}, !- Handle TopFloor_Plenum_Wall_East, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13817,11 +20087,11 @@ OS:Surface, 73.1072, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000167}, !- Handle + {00000000-0000-0000-0090-000000000167}, !- Handle TopFloor_Plenum_Wall_North, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13834,11 +20104,11 @@ OS:Surface, 73.1072, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000168}, !- Handle + {00000000-0000-0000-0090-000000000168}, !- Handle TopFloor_Plenum_Wall_South, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13851,11 +20121,11 @@ OS:Surface, 0, 48.7381, 1.2192; !- X,Y,Z Vertex 4 {m} OS:Surface, - {00000000-0000-0000-0086-000000000169}, !- Handle + {00000000-0000-0000-0090-000000000169}, !- Handle TopFloor_Plenum_Wall_West, !- Name Wall, !- Surface Type , !- Construction Name - {00000000-0000-0000-0080-000000000023}, !- Space Name + {00000000-0000-0000-0084-000000000023}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -13868,27 +20138,27 @@ OS:Surface, 0, 0, 1.2192; !- X,Y,Z Vertex 4 {m} OS:SurfaceConvectionAlgorithm:Inside, - {00000000-0000-0000-0087-000000000001}, !- Handle + {00000000-0000-0000-0091-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {00000000-0000-0000-0088-000000000001}, !- Handle + {00000000-0000-0000-0092-000000000001}, !- Handle TARP; !- Algorithm OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0089-000000000001}, !- Handle - {00000000-0000-0000-0086-000000000044}, !- Surface Name + {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0090-000000000044}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 80.8969; !- Total Exposed Perimeter {m} OS:SurfaceProperty:ExposedFoundationPerimeter, - {00000000-0000-0000-0089-000000000002}, !- Handle - {00000000-0000-0000-0086-000000000001}, !- Surface Name + {00000000-0000-0000-0093-000000000002}, !- Handle + {00000000-0000-0000-0090-000000000001}, !- Surface Name TotalExposedPerimeter, !- Exposed Perimeter Calculation Method 162.7937; !- Total Exposed Perimeter {m} OS:ThermalZone, - {00000000-0000-0000-0090-000000000001}, !- Handle + {00000000-0000-0000-0094-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13897,21 +20167,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000004}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000005}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000004}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000005}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000025}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000006}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000006}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000001}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000007}, !- Thermostat Name + {00000000-0000-0000-0062-000000000001}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000007}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000002}, !- Handle + {00000000-0000-0000-0094-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -13920,21 +20190,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000040}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000041}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000040}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000041}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000037}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000042}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000042}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000002}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000009}, !- Thermostat Name + {00000000-0000-0000-0062-000000000002}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000009}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000003}, !- Handle + {00000000-0000-0000-0094-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13943,21 +20213,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000010}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000011}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000010}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000011}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000027}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000012}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000012}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000003}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000008}, !- Thermostat Name + {00000000-0000-0000-0062-000000000003}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000008}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000004}, !- Handle + {00000000-0000-0000-0094-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13966,21 +20236,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000037}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000038}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000037}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000038}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000036}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000039}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000039}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000004}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000058}, !- Thermostat Name + {00000000-0000-0000-0062-000000000004}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000058}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000005}, !- Handle + {00000000-0000-0000-0094-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -13989,21 +20259,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000019}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000020}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000019}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000020}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000030}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000021}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000021}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000005}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000052}, !- Thermostat Name + {00000000-0000-0000-0062-000000000005}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000052}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000006}, !- Handle + {00000000-0000-0000-0094-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14012,21 +20282,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000022}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000023}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000022}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000023}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000031}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000024}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000024}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000006}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000053}, !- Thermostat Name + {00000000-0000-0000-0062-000000000006}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000053}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000007}, !- Handle + {00000000-0000-0000-0094-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14035,21 +20305,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000043}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000044}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000043}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000044}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000038}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000045}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000045}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000007}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000060}, !- Thermostat Name + {00000000-0000-0000-0062-000000000007}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000060}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000008}, !- Handle + {00000000-0000-0000-0094-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14058,21 +20328,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000058}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000059}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000058}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000059}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000043}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000060}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000060}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000008}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000065}, !- Thermostat Name + {00000000-0000-0000-0062-000000000008}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000065}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000009}, !- Handle + {00000000-0000-0000-0094-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14081,21 +20351,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000064}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000065}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000064}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000065}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000045}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000066}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000066}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000009}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000067}, !- Thermostat Name + {00000000-0000-0000-0062-000000000009}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000067}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000010}, !- Handle + {00000000-0000-0000-0094-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14104,21 +20374,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000001}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000002}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000001}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000002}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000024}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000003}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000003}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000010}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000047}, !- Thermostat Name + {00000000-0000-0000-0062-000000000010}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000047}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000011}, !- Handle + {00000000-0000-0000-0094-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14127,21 +20397,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000028}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000029}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000028}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000029}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000033}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000030}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000030}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000011}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000055}, !- Thermostat Name + {00000000-0000-0000-0062-000000000011}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000055}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000012}, !- Handle + {00000000-0000-0000-0094-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14150,21 +20420,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000034}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000035}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000034}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000035}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000035}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000036}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000036}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000012}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000057}, !- Thermostat Name + {00000000-0000-0000-0062-000000000012}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000057}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000013}, !- Handle + {00000000-0000-0000-0094-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14173,21 +20443,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000049}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000050}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000049}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000050}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000040}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000051}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000051}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000013}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000062}, !- Thermostat Name + {00000000-0000-0000-0062-000000000013}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000062}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000014}, !- Handle + {00000000-0000-0000-0094-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14196,21 +20466,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000055}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000056}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000055}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000056}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000042}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000057}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000057}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000014}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000064}, !- Thermostat Name + {00000000-0000-0000-0062-000000000014}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000064}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000015}, !- Handle + {00000000-0000-0000-0094-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14219,21 +20489,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000061}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000062}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000061}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000062}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000044}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000063}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000063}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000015}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000066}, !- Thermostat Name + {00000000-0000-0000-0062-000000000015}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000066}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000016}, !- Handle + {00000000-0000-0000-0094-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A, !- Name 10, !- Multiplier , !- Ceiling Height {m} @@ -14242,21 +20512,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000013}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000014}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000013}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000014}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000028}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000015}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000015}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000016}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000050}, !- Thermostat Name + {00000000-0000-0000-0062-000000000016}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000050}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000017}, !- Handle + {00000000-0000-0000-0094-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14265,21 +20535,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000016}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000017}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000016}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000017}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000029}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000018}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000018}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000017}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000051}, !- Thermostat Name + {00000000-0000-0000-0062-000000000017}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000051}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000018}, !- Handle + {00000000-0000-0000-0094-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14288,21 +20558,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000025}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000026}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000025}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000026}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000032}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000027}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000027}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000018}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000054}, !- Thermostat Name + {00000000-0000-0000-0062-000000000018}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000054}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000019}, !- Handle + {00000000-0000-0000-0094-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14311,21 +20581,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000031}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000032}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000031}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000032}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000034}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000033}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000033}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000019}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000056}, !- Thermostat Name + {00000000-0000-0000-0062-000000000019}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000056}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000020}, !- Handle + {00000000-0000-0000-0094-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14334,21 +20604,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000046}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000047}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000046}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000047}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000039}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000048}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000048}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000020}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000061}, !- Thermostat Name + {00000000-0000-0000-0062-000000000020}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000061}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000021}, !- Handle + {00000000-0000-0000-0094-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14357,21 +20627,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000052}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000053}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000052}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000053}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000041}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000054}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000054}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000021}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000063}, !- Thermostat Name + {00000000-0000-0000-0062-000000000021}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000063}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000022}, !- Handle + {00000000-0000-0000-0094-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14380,21 +20650,21 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000007}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000008}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000007}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000008}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000026}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000009}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000009}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000022}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000049}, !- Thermostat Name + {00000000-0000-0000-0062-000000000022}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000049}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermalZone, - {00000000-0000-0000-0090-000000000023}, !- Handle + {00000000-0000-0000-0094-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -14403,444 +20673,444 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {00000000-0000-0000-0055-000000000067}, !- Zone Air Inlet Port List - {00000000-0000-0000-0055-000000000068}, !- Zone Air Exhaust Port List + {00000000-0000-0000-0059-000000000067}, !- Zone Air Inlet Port List + {00000000-0000-0000-0059-000000000068}, !- Zone Air Exhaust Port List {00000000-0000-0000-0020-000000000046}, !- Zone Air Node Name - {00000000-0000-0000-0055-000000000069}, !- Zone Return Air Port List + {00000000-0000-0000-0059-000000000069}, !- Zone Return Air Port List , !- Primary Daylighting Control Name , !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control , !- Illuminance Map Name - {00000000-0000-0000-0058-000000000039}, !- Group Rendering Name - {00000000-0000-0000-0091-000000000013}, !- Thermostat Name + {00000000-0000-0000-0062-000000000039}, !- Group Rendering Name + {00000000-0000-0000-0095-000000000013}, !- Thermostat Name No; !- Use Ideal Air Loads OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000001}, !- Handle + {00000000-0000-0000-0095-000000000001}, !- Handle Space Function - undefined - Thermostat 1; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000002}, !- Handle + {00000000-0000-0000-0095-000000000002}, !- Handle Space Function - undefined - Thermostat 2; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000003}, !- Handle + {00000000-0000-0000-0095-000000000003}, !- Handle Space Function - undefined - Thermostat 3; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000004}, !- Handle + {00000000-0000-0000-0095-000000000004}, !- Handle Space Function - undefined - Thermostat 4; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000005}, !- Handle + {00000000-0000-0000-0095-000000000005}, !- Handle Space Function - undefined - Thermostat 5; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000006}, !- Handle + {00000000-0000-0000-0095-000000000006}, !- Handle Space Function - undefined - Thermostat 6; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000007}, !- Handle + {00000000-0000-0000-0095-000000000007}, !- Handle Space Function - undefined - Thermostat 7; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000008}, !- Handle + {00000000-0000-0000-0095-000000000008}, !- Handle Space Function - undefined - Thermostat 8; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000009}, !- Handle + {00000000-0000-0000-0095-000000000009}, !- Handle Space Function - undefined - Thermostat 9; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000010}, !- Handle + {00000000-0000-0000-0095-000000000010}, !- Handle Space Function - undefined - Thermostat; !- Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000011}, !- Handle + {00000000-0000-0000-0095-000000000011}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 1, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000012}, !- Handle + {00000000-0000-0000-0095-000000000012}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 2, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000013}, !- Handle + {00000000-0000-0000-0095-000000000013}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat 3, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000014}, !- Handle + {00000000-0000-0000-0095-000000000014}, !- Handle Space Function Electrical/Mechanical room-sch-A Thermostat, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000015}, !- Handle + {00000000-0000-0000-0095-000000000015}, !- Handle Space Function Office open plan Thermostat 1, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000016}, !- Handle + {00000000-0000-0000-0095-000000000016}, !- Handle Space Function Office open plan Thermostat 10, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000017}, !- Handle + {00000000-0000-0000-0095-000000000017}, !- Handle Space Function Office open plan Thermostat 11, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000018}, !- Handle + {00000000-0000-0000-0095-000000000018}, !- Handle Space Function Office open plan Thermostat 12, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000019}, !- Handle + {00000000-0000-0000-0095-000000000019}, !- Handle Space Function Office open plan Thermostat 13, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000020}, !- Handle + {00000000-0000-0000-0095-000000000020}, !- Handle Space Function Office open plan Thermostat 14, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000021}, !- Handle + {00000000-0000-0000-0095-000000000021}, !- Handle Space Function Office open plan Thermostat 15, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000022}, !- Handle + {00000000-0000-0000-0095-000000000022}, !- Handle Space Function Office open plan Thermostat 16, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000023}, !- Handle + {00000000-0000-0000-0095-000000000023}, !- Handle Space Function Office open plan Thermostat 17, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000024}, !- Handle + {00000000-0000-0000-0095-000000000024}, !- Handle Space Function Office open plan Thermostat 18, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000025}, !- Handle + {00000000-0000-0000-0095-000000000025}, !- Handle Space Function Office open plan Thermostat 19, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000026}, !- Handle + {00000000-0000-0000-0095-000000000026}, !- Handle Space Function Office open plan Thermostat 2, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000027}, !- Handle + {00000000-0000-0000-0095-000000000027}, !- Handle Space Function Office open plan Thermostat 20, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000028}, !- Handle + {00000000-0000-0000-0095-000000000028}, !- Handle Space Function Office open plan Thermostat 21, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000029}, !- Handle + {00000000-0000-0000-0095-000000000029}, !- Handle Space Function Office open plan Thermostat 22, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000030}, !- Handle + {00000000-0000-0000-0095-000000000030}, !- Handle Space Function Office open plan Thermostat 23, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000031}, !- Handle + {00000000-0000-0000-0095-000000000031}, !- Handle Space Function Office open plan Thermostat 24, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000032}, !- Handle + {00000000-0000-0000-0095-000000000032}, !- Handle Space Function Office open plan Thermostat 25, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000033}, !- Handle + {00000000-0000-0000-0095-000000000033}, !- Handle Space Function Office open plan Thermostat 26, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000034}, !- Handle + {00000000-0000-0000-0095-000000000034}, !- Handle Space Function Office open plan Thermostat 27, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000035}, !- Handle + {00000000-0000-0000-0095-000000000035}, !- Handle Space Function Office open plan Thermostat 28, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000036}, !- Handle + {00000000-0000-0000-0095-000000000036}, !- Handle Space Function Office open plan Thermostat 29, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000037}, !- Handle + {00000000-0000-0000-0095-000000000037}, !- Handle Space Function Office open plan Thermostat 3, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000038}, !- Handle + {00000000-0000-0000-0095-000000000038}, !- Handle Space Function Office open plan Thermostat 30, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000039}, !- Handle + {00000000-0000-0000-0095-000000000039}, !- Handle Space Function Office open plan Thermostat 31, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000040}, !- Handle + {00000000-0000-0000-0095-000000000040}, !- Handle Space Function Office open plan Thermostat 32, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000041}, !- Handle + {00000000-0000-0000-0095-000000000041}, !- Handle Space Function Office open plan Thermostat 33, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000042}, !- Handle + {00000000-0000-0000-0095-000000000042}, !- Handle Space Function Office open plan Thermostat 34, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000043}, !- Handle + {00000000-0000-0000-0095-000000000043}, !- Handle Space Function Office open plan Thermostat 35, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000044}, !- Handle + {00000000-0000-0000-0095-000000000044}, !- Handle Space Function Office open plan Thermostat 36, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000045}, !- Handle + {00000000-0000-0000-0095-000000000045}, !- Handle Space Function Office open plan Thermostat 37, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000046}, !- Handle + {00000000-0000-0000-0095-000000000046}, !- Handle Space Function Office open plan Thermostat 38, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000047}, !- Handle + {00000000-0000-0000-0095-000000000047}, !- Handle Space Function Office open plan Thermostat 39, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000048}, !- Handle + {00000000-0000-0000-0095-000000000048}, !- Handle Space Function Office open plan Thermostat 4, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000049}, !- Handle + {00000000-0000-0000-0095-000000000049}, !- Handle Space Function Office open plan Thermostat 40, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000050}, !- Handle + {00000000-0000-0000-0095-000000000050}, !- Handle Space Function Office open plan Thermostat 41, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000051}, !- Handle + {00000000-0000-0000-0095-000000000051}, !- Handle Space Function Office open plan Thermostat 42, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000052}, !- Handle + {00000000-0000-0000-0095-000000000052}, !- Handle Space Function Office open plan Thermostat 43, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000053}, !- Handle + {00000000-0000-0000-0095-000000000053}, !- Handle Space Function Office open plan Thermostat 44, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000054}, !- Handle + {00000000-0000-0000-0095-000000000054}, !- Handle Space Function Office open plan Thermostat 45, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000055}, !- Handle + {00000000-0000-0000-0095-000000000055}, !- Handle Space Function Office open plan Thermostat 46, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000056}, !- Handle + {00000000-0000-0000-0095-000000000056}, !- Handle Space Function Office open plan Thermostat 47, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000057}, !- Handle + {00000000-0000-0000-0095-000000000057}, !- Handle Space Function Office open plan Thermostat 48, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000058}, !- Handle + {00000000-0000-0000-0095-000000000058}, !- Handle Space Function Office open plan Thermostat 49, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000059}, !- Handle + {00000000-0000-0000-0095-000000000059}, !- Handle Space Function Office open plan Thermostat 5, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000060}, !- Handle + {00000000-0000-0000-0095-000000000060}, !- Handle Space Function Office open plan Thermostat 50, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000061}, !- Handle + {00000000-0000-0000-0095-000000000061}, !- Handle Space Function Office open plan Thermostat 51, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000062}, !- Handle + {00000000-0000-0000-0095-000000000062}, !- Handle Space Function Office open plan Thermostat 52, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000063}, !- Handle + {00000000-0000-0000-0095-000000000063}, !- Handle Space Function Office open plan Thermostat 53, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000064}, !- Handle + {00000000-0000-0000-0095-000000000064}, !- Handle Space Function Office open plan Thermostat 54, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000065}, !- Handle + {00000000-0000-0000-0095-000000000065}, !- Handle Space Function Office open plan Thermostat 55, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000066}, !- Handle + {00000000-0000-0000-0095-000000000066}, !- Handle Space Function Office open plan Thermostat 56, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000067}, !- Handle + {00000000-0000-0000-0095-000000000067}, !- Handle Space Function Office open plan Thermostat 57, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000068}, !- Handle + {00000000-0000-0000-0095-000000000068}, !- Handle Space Function Office open plan Thermostat 6, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000069}, !- Handle + {00000000-0000-0000-0095-000000000069}, !- Handle Space Function Office open plan Thermostat 7, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000070}, !- Handle + {00000000-0000-0000-0095-000000000070}, !- Handle Space Function Office open plan Thermostat 8, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000071}, !- Handle + {00000000-0000-0000-0095-000000000071}, !- Handle Space Function Office open plan Thermostat 9, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:ThermostatSetpoint:DualSetpoint, - {00000000-0000-0000-0091-000000000072}, !- Handle + {00000000-0000-0000-0095-000000000072}, !- Handle Space Function Office open plan Thermostat, !- Name - {00000000-0000-0000-0062-000000000015}, !- Heating Setpoint Temperature Schedule Name - {00000000-0000-0000-0062-000000000014}; !- Cooling Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000015}, !- Heating Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000014}; !- Cooling Setpoint Temperature Schedule Name OS:Timestep, - {00000000-0000-0000-0092-000000000001}, !- Handle + {00000000-0000-0000-0096-000000000001}, !- Handle 6; !- Number of Timesteps per Hour OS:Version, - {00000000-0000-0000-0093-000000000001}, !- Handle + {00000000-0000-0000-0097-000000000001}, !- Handle 3.7.0; !- Version Identifier OS:WaterHeater:Mixed, - {00000000-0000-0000-0094-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- Handle 1089gal NaturalGas Water Heater - 735kBtu/hr 0.905 Therm Eff, !- Name 4.12098554344306, !- Tank Volume {m3} - {00000000-0000-0000-0062-000000000019}, !- Setpoint Temperature Schedule Name + {00000000-0000-0000-0066-000000000019}, !- Setpoint Temperature Schedule Name 2, !- Deadband Temperature Difference {deltaC} 60, !- Maximum Temperature Limit {C} Cycle, !- Heater Control Type @@ -14858,7 +21128,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0062-000000000021}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0066-000000000024}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 25.910825760565, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -14868,8 +21138,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0020-000000000195}, !- Use Side Inlet Node Name - {00000000-0000-0000-0020-000000000196}, !- Use Side Outlet Node Name + {00000000-0000-0000-0020-000000000519}, !- Use Side Inlet Node Name + {00000000-0000-0000-0020-000000000520}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -14882,18 +21152,18 @@ OS:WaterHeater:Mixed, General; !- End-Use Subcategory OS:WaterHeater:Sizing, - {00000000-0000-0000-0095-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000001}, !- WaterHeater Name + {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0098-000000000001}, !- WaterHeater Name PeakDraw, !- Design Mode 0.538503, !- Time Storage Can Meet Peak Draw {hr} 0, !- Time for Tank Recovery {hr} 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000001}, !- Handle + {00000000-0000-0000-0100-000000000001}, !- Handle Core_bottom WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000212}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000213}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000536}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000537}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14901,13 +21171,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000001}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000001}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000002}, !- Handle + {00000000-0000-0000-0100-000000000002}, !- Handle Core_mid WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000216}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000217}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000540}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000541}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14915,13 +21185,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000002}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000002}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000003}, !- Handle + {00000000-0000-0000-0100-000000000003}, !- Handle Core_top WUC 0.95gpm 140F, !- Name - {00000000-0000-0000-0020-000000000220}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000221}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000544}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000545}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14929,13 +21199,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000003}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000003}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000004}, !- Handle + {00000000-0000-0000-0100-000000000004}, !- Handle DataCenter_basement_ZN_6 WUC 0.3gpm 140F, !- Name - {00000000-0000-0000-0020-000000000224}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000225}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000548}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000549}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14943,13 +21213,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000004}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000004}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000005}, !- Handle + {00000000-0000-0000-0100-000000000005}, !- Handle DataCenter_bot_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000228}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000229}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000552}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000553}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14957,13 +21227,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000005}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000005}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000006}, !- Handle + {00000000-0000-0000-0100-000000000006}, !- Handle DataCenter_mid_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000232}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000233}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000556}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000557}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14971,13 +21241,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000006}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000006}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000007}, !- Handle + {00000000-0000-0000-0100-000000000007}, !- Handle DataCenter_top_ZN_6 WUC 0.01gpm 140F, !- Name - {00000000-0000-0000-0020-000000000236}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000237}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000560}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000561}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14985,13 +21255,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000007}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000007}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000008}, !- Handle + {00000000-0000-0000-0100-000000000008}, !- Handle Perimeter_bot_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000240}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000241}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000564}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000565}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -14999,13 +21269,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000008}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000008}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000009}, !- Handle + {00000000-0000-0000-0100-000000000009}, !- Handle Perimeter_bot_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000244}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000245}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000568}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000569}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15013,13 +21283,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000009}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000009}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000010}, !- Handle + {00000000-0000-0000-0100-000000000010}, !- Handle Perimeter_bot_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000248}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000249}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000572}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000573}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15027,13 +21297,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000010}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000010}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000011}, !- Handle + {00000000-0000-0000-0100-000000000011}, !- Handle Perimeter_bot_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000252}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000253}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000576}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000577}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15041,13 +21311,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000011}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000011}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000012}, !- Handle + {00000000-0000-0000-0100-000000000012}, !- Handle Perimeter_mid_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000256}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000257}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000580}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000581}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15055,13 +21325,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000012}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000012}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000013}, !- Handle + {00000000-0000-0000-0100-000000000013}, !- Handle Perimeter_mid_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000260}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000261}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000584}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000585}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15069,13 +21339,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000013}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000013}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000014}, !- Handle + {00000000-0000-0000-0100-000000000014}, !- Handle Perimeter_mid_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000264}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000265}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000588}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000589}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15083,13 +21353,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000014}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000014}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000015}, !- Handle + {00000000-0000-0000-0100-000000000015}, !- Handle Perimeter_mid_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000268}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000269}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000592}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000593}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15097,13 +21367,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000015}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000015}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000016}, !- Handle + {00000000-0000-0000-0100-000000000016}, !- Handle Perimeter_top_ZN_1 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000272}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000273}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000596}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000597}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15111,13 +21381,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000016}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000016}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000017}, !- Handle + {00000000-0000-0000-0100-000000000017}, !- Handle Perimeter_top_ZN_2 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000276}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000277}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000600}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000601}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15125,13 +21395,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000017}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000017}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000018}, !- Handle + {00000000-0000-0000-0100-000000000018}, !- Handle Perimeter_top_ZN_3 WUC 0.12gpm 140F, !- Name - {00000000-0000-0000-0020-000000000280}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000281}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000604}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000605}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15139,13 +21409,13 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000018}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000018}; !- Water Use Equipment Name 1 OS:WaterUse:Connections, - {00000000-0000-0000-0096-000000000019}, !- Handle + {00000000-0000-0000-0100-000000000019}, !- Handle Perimeter_top_ZN_4 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0020-000000000284}, !- Inlet Node Name - {00000000-0000-0000-0020-000000000285}, !- Outlet Node Name + {00000000-0000-0000-0020-000000000608}, !- Inlet Node Name + {00000000-0000-0000-0020-000000000609}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -15153,314 +21423,314 @@ OS:WaterUse:Connections, None, !- Drain Water Heat Exchanger Type Plant, !- Drain Water Heat Exchanger Destination , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} - {00000000-0000-0000-0097-000000000019}; !- Water Use Equipment Name 1 + {00000000-0000-0000-0101-000000000019}; !- Water Use Equipment Name 1 OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000001}, !- Handle + {00000000-0000-0000-0101-000000000001}, !- Handle Core_bottom Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000001}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000002}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000001}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000002}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000002}, !- Handle + {00000000-0000-0000-0101-000000000002}, !- Handle Core_mid Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000002}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000003}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000002}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000003}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000003}, !- Handle + {00000000-0000-0000-0101-000000000003}, !- Handle Core_top Service Water Use 0.95gpm 140F, !- Name - {00000000-0000-0000-0098-000000000003}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000004}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000003}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000004}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000004}, !- Handle + {00000000-0000-0000-0101-000000000004}, !- Handle DataCenter_basement_ZN_6 Service Water Use 0.3gpm 140F, !- Name - {00000000-0000-0000-0098-000000000004}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000005}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000004}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000005}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000005}, !- Handle + {00000000-0000-0000-0101-000000000005}, !- Handle DataCenter_bot_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000005}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000006}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000005}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000006}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000006}, !- Handle + {00000000-0000-0000-0101-000000000006}, !- Handle DataCenter_mid_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000006}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000007}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000006}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000007}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000007}, !- Handle + {00000000-0000-0000-0101-000000000007}, !- Handle DataCenter_top_ZN_6 Service Water Use 0.01gpm 140F, !- Name - {00000000-0000-0000-0098-000000000007}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000008}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000007}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000008}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000008}, !- Handle + {00000000-0000-0000-0101-000000000008}, !- Handle Perimeter_bot_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000008}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000011}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000008}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000011}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000009}, !- Handle + {00000000-0000-0000-0101-000000000009}, !- Handle Perimeter_bot_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000009}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000012}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000009}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000012}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000010}, !- Handle + {00000000-0000-0000-0101-000000000010}, !- Handle Perimeter_bot_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000010}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000013}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000010}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000013}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000011}, !- Handle + {00000000-0000-0000-0101-000000000011}, !- Handle Perimeter_bot_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000011}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000014}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000011}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000014}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000012}, !- Handle + {00000000-0000-0000-0101-000000000012}, !- Handle Perimeter_mid_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000012}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000015}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000012}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000015}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000013}, !- Handle + {00000000-0000-0000-0101-000000000013}, !- Handle Perimeter_mid_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000013}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000016}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000013}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000016}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000014}, !- Handle + {00000000-0000-0000-0101-000000000014}, !- Handle Perimeter_mid_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000014}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000017}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000014}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000017}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000015}, !- Handle + {00000000-0000-0000-0101-000000000015}, !- Handle Perimeter_mid_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000015}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000018}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000015}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000018}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000016}, !- Handle + {00000000-0000-0000-0101-000000000016}, !- Handle Perimeter_top_ZN_1 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000016}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000019}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000016}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000019}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000017}, !- Handle + {00000000-0000-0000-0101-000000000017}, !- Handle Perimeter_top_ZN_2 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000017}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000020}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000017}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000020}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000018}, !- Handle + {00000000-0000-0000-0101-000000000018}, !- Handle Perimeter_top_ZN_3 Service Water Use 0.12gpm 140F, !- Name - {00000000-0000-0000-0098-000000000018}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000021}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000018}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000021}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment, - {00000000-0000-0000-0097-000000000019}, !- Handle + {00000000-0000-0000-0101-000000000019}, !- Handle Perimeter_top_ZN_4 Service Water Use 0.08gpm 140F, !- Name - {00000000-0000-0000-0098-000000000019}, !- Water Use Equipment Definition Name - {00000000-0000-0000-0080-000000000022}, !- Space Name - {00000000-0000-0000-0062-000000000013}; !- Flow Rate Fraction Schedule Name + {00000000-0000-0000-0102-000000000019}, !- Water Use Equipment Definition Name + {00000000-0000-0000-0084-000000000022}, !- Space Name + {00000000-0000-0000-0066-000000000013}; !- Flow Rate Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000001}, !- Handle + {00000000-0000-0000-0102-000000000001}, !- Handle Core_bottom 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000002}, !- Handle + {00000000-0000-0000-0102-000000000002}, !- Handle Core_mid 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000003}, !- Handle + {00000000-0000-0000-0102-000000000003}, !- Handle Core_top 0.95gpm 140F, !- Name , !- End-Use Subcategory 5.96586645715862e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000004}, !- Handle + {00000000-0000-0000-0102-000000000004}, !- Handle Datacenter_basement_zn_6 0.3gpm 140F, !- Name , !- End-Use Subcategory 1.87303728009577e-05, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000005}, !- Handle + {00000000-0000-0000-0102-000000000005}, !- Handle Datacenter_bot_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000006}, !- Handle + {00000000-0000-0000-0102-000000000006}, !- Handle Datacenter_mid_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000007}, !- Handle + {00000000-0000-0000-0102-000000000007}, !- Handle Datacenter_top_zn_6 0.01gpm 140F, !- Name , !- End-Use Subcategory 8.65265627922585e-07, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000008}, !- Handle + {00000000-0000-0000-0102-000000000008}, !- Handle Perimeter_bot_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000009}, !- Handle + {00000000-0000-0000-0102-000000000009}, !- Handle Perimeter_bot_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000010}, !- Handle + {00000000-0000-0000-0102-000000000010}, !- Handle Perimeter_bot_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000011}, !- Handle + {00000000-0000-0000-0102-000000000011}, !- Handle Perimeter_bot_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000012}, !- Handle + {00000000-0000-0000-0102-000000000012}, !- Handle Perimeter_mid_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000013}, !- Handle + {00000000-0000-0000-0102-000000000013}, !- Handle Perimeter_mid_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000014}, !- Handle + {00000000-0000-0000-0102-000000000014}, !- Handle Perimeter_mid_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000015}, !- Handle + {00000000-0000-0000-0102-000000000015}, !- Handle Perimeter_mid_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000016}, !- Handle + {00000000-0000-0000-0102-000000000016}, !- Handle Perimeter_top_zn_1 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49090454065898e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000017}, !- Handle + {00000000-0000-0000-0102-000000000017}, !- Handle Perimeter_top_zn_2 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000018}, !- Handle + {00000000-0000-0000-0102-000000000018}, !- Handle Perimeter_top_zn_3 0.12gpm 140F, !- Name , !- End-Use Subcategory 7.49074074059468e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WaterUse:Equipment:Definition, - {00000000-0000-0000-0098-000000000019}, !- Handle + {00000000-0000-0000-0102-000000000019}, !- Handle Perimeter_top_zn_4 0.08gpm 140F, !- Name , !- End-Use Subcategory 4.82731818503191e-06, !- Peak Flow Rate {m3/s} - {00000000-0000-0000-0062-000000000009}, !- Target Temperature Schedule Name - {00000000-0000-0000-0062-000000000008}, !- Sensible Fraction Schedule Name - {00000000-0000-0000-0062-000000000007}; !- Latent Fraction Schedule Name + {00000000-0000-0000-0066-000000000009}, !- Target Temperature Schedule Name + {00000000-0000-0000-0066-000000000008}, !- Sensible Fraction Schedule Name + {00000000-0000-0000-0066-000000000007}; !- Latent Fraction Schedule Name OS:WeatherFile, - {00000000-0000-0000-0099-000000000001}, !- Handle + {00000000-0000-0000-0103-000000000001}, !- Handle Calgary Intl AP, !- City AB, !- State Province Region CAN, !- Country @@ -15476,67 +21746,175 @@ OS:WeatherFile, Sunday; !- Start Day of Week OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0100-000000000001}, !- Handle + {00000000-0000-0000-0104-000000000001}, !- Handle SimpleGlazing, !- Name 2.2, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0100-000000000002}, !- Handle + {00000000-0000-0000-0104-000000000002}, !- Handle SimpleGlazing:U=0.173 SHGC=0.600, !- Name 1.73, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:WindowMaterial:SimpleGlazingSystem, - {00000000-0000-0000-0100-000000000003}, !- Handle + {00000000-0000-0000-0104-000000000003}, !- Handle SimpleGlazing:U=0.241 SHGC=0.600, !- Name 2.41, !- U-Factor {W/m2-K} 0.6, !- Solar Heat Gain Coefficient 0.21; !- Visible Transmittance OS:YearDescription, - {00000000-0000-0000-0101-000000000001}, !- Handle + {00000000-0000-0000-0105-000000000001}, !- Handle , !- Calendar Year Sunday; !- Day of Week for Start Day OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0102-000000000001}, !- Handle + {00000000-0000-0000-0106-000000000001}, !- Handle Zone HVAC Baseboard Convective Water 1, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0019-000000000001}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, - {00000000-0000-0000-0102-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 2, !- Name - {00000000-0000-0000-0059-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0106-000000000002}, !- Handle + Zone HVAC Baseboard Convective Water 10, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0019-000000000002}; !- Heating Coil Name +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000003}, !- Handle + Zone HVAC Baseboard Convective Water 11, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000003}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000004}, !- Handle + Zone HVAC Baseboard Convective Water 12, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000004}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000005}, !- Handle + Zone HVAC Baseboard Convective Water 13, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000005}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000006}, !- Handle + Zone HVAC Baseboard Convective Water 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000006}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000007}, !- Handle + Zone HVAC Baseboard Convective Water 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000007}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000008}, !- Handle + Zone HVAC Baseboard Convective Water 16, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000008}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000009}, !- Handle + Zone HVAC Baseboard Convective Water 17, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000009}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000010}, !- Handle + Zone HVAC Baseboard Convective Water 18, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000010}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000011}, !- Handle + Zone HVAC Baseboard Convective Water 19, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000011}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000012}, !- Handle + Zone HVAC Baseboard Convective Water 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000012}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000013}, !- Handle + Zone HVAC Baseboard Convective Water 20, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000013}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000014}, !- Handle + Zone HVAC Baseboard Convective Water 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000014}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000015}, !- Handle + Zone HVAC Baseboard Convective Water 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000015}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000016}, !- Handle + Zone HVAC Baseboard Convective Water 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000016}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000017}, !- Handle + Zone HVAC Baseboard Convective Water 6, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000017}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000018}, !- Handle + Zone HVAC Baseboard Convective Water 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000018}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000019}, !- Handle + Zone HVAC Baseboard Convective Water 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000019}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000020}, !- Handle + Zone HVAC Baseboard Convective Water 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0019-000000000020}; !- Heating Coil Name + OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000001}, !- Handle + {00000000-0000-0000-0107-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000001}, !- Thermal Zone + {00000000-0000-0000-0094-000000000001}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000002}, !- Handle + {00000000-0000-0000-0107-000000000002}, !- Handle ALL_ST=- undefined -_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000002}, !- Thermal Zone + {00000000-0000-0000-0094-000000000002}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000003}, !- Handle + {00000000-0000-0000-0107-000000000003}, !- Handle ALL_ST=- undefined -_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000003}, !- Thermal Zone + {00000000-0000-0000-0094-000000000003}, !- Thermal Zone ; !- Load Distribution Scheme OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000004}, !- Handle + {00000000-0000-0000-0107-000000000004}, !- Handle ALL_ST=Office open plan_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000004}, !- Thermal Zone + {00000000-0000-0000-0094-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000012}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 @@ -15548,119 +21926,299 @@ OS:ZoneHVAC:EquipmentList, ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000005}, !- Handle + {00000000-0000-0000-0107-000000000005}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000005}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000005}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000006}, !- Handle + {00000000-0000-0000-0107-000000000006}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000006}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000006}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000017}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000007}, !- Handle + {00000000-0000-0000-0107-000000000007}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000007}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000007}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000008}, !- Handle + {00000000-0000-0000-0107-000000000008}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000008}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000008}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000018}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000016}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000009}, !- Handle + {00000000-0000-0000-0107-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000009}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000016}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000010}, !- Handle + {00000000-0000-0000-0107-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000010}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000019}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000017}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000011}, !- Handle + {00000000-0000-0000-0107-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000011}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000012}, !- Handle + {00000000-0000-0000-0107-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000012}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000013}, !- Handle + {00000000-0000-0000-0107-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000013}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000019}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000014}, !- Handle + {00000000-0000-0000-0107-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000014}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000020}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000018}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000015}, !- Handle + {00000000-0000-0000-0107-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000015}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000016}, !- Handle + {00000000-0000-0000-0107-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000016}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000017}, !- Handle + {00000000-0000-0000-0107-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000017}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000009}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000008}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000018}, !- Handle + {00000000-0000-0000-0107-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000018}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000010}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000009}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000019}, !- Handle + {00000000-0000-0000-0107-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000019}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000019}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000008}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000020}, !- Handle + {00000000-0000-0000-0107-000000000020}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000020}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000020}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000011}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000010}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000021}, !- Handle + {00000000-0000-0000-0107-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 5 Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000021}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000021}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000022}, !- Handle + {00000000-0000-0000-0107-000000000022}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000022}, !- Thermal Zone - ; !- Load Distribution Scheme + {00000000-0000-0000-0094-000000000022}, !- Thermal Zone + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0007-000000000011}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, - {00000000-0000-0000-0103-000000000023}, !- Handle + {00000000-0000-0000-0107-000000000023}, !- Handle WILD_ST=Electrical/Mechanical room-sch-A_FL=Basement Story 0_SCH=A Zone HVAC Equipment List, !- Name - {00000000-0000-0000-0090-000000000023}, !- Thermal Zone + {00000000-0000-0000-0094-000000000023}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0102-000000000001}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000001}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2011-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2011-Electricity-CAN_AB_Calgary.osm index 96b59ba392..4d5c068982 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2011-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2011-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0063-000000000023}, !- Object Name + {00000000-0000-0000-0063-000000000027}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.123094119094475, !- Feature Value 1 @@ -16,22 +16,98 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0011-000000000001}; !- Object Name + {00000000-0000-0000-0063-000000000025}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.123094119094475, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle + {00000000-0000-0000-0063-000000000026}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.123094119094475, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0011-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle {00000000-0000-0000-0011-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name , !- Controller List Name - {00000000-0000-0000-0063-000000000023}, !- Availability Schedule + {00000000-0000-0000-0063-000000000025}, !- Availability Schedule {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name , !- Connector List Name + {00000000-0000-0000-0015-000000000141}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0015-000000000144}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000143}, !- Demand Side Inlet Node A + {00000000-0000-0000-0015-000000000142}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0063-000000000026}, !- Availability Schedule + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0015-000000000193}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0015-000000000196}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000195}, !- Demand Side Inlet Node A + {00000000-0000-0000-0015-000000000194}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name + , !- Controller List Name + {00000000-0000-0000-0063-000000000027}, !- Availability Schedule + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name {00000000-0000-0000-0015-000000000090}, !- Supply Side Inlet Node Name {00000000-0000-0000-0015-000000000093}, !- Demand Side Outlet Node Name {00000000-0000-0000-0015-000000000092}, !- Demand Side Inlet Node A @@ -55,6 +131,28 @@ OS:AirLoopHVAC:OutdoorAirSystem, {00000000-0000-0000-0015-000000000100}, !- Relief Air Stream Node Name {00000000-0000-0000-0015-000000000110}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000002}, !- Handle + Air Loop HVAC Outdoor Air System 2, !- Name + {00000000-0000-0000-0020-000000000002}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0015-000000000158}, !- Mixed Air Node Name + {00000000-0000-0000-0015-000000000151}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0015-000000000152}, !- Relief Air Stream Node Name + {00000000-0000-0000-0015-000000000162}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0020-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0015-000000000210}, !- Mixed Air Node Name + {00000000-0000-0000-0015-000000000203}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0015-000000000204}, !- Relief Air Stream Node Name + {00000000-0000-0000-0015-000000000214}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -65,6 +163,26 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0015-000000000131}, !- Inlet Node Name 4 {00000000-0000-0000-0015-000000000137}; !- Inlet Node Name 5 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000002}, !- Handle + Air Loop HVAC Zone Mixer 2, !- Name + {00000000-0000-0000-0015-000000000146}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000165}, !- Inlet Node Name 1 + {00000000-0000-0000-0015-000000000171}, !- Inlet Node Name 2 + {00000000-0000-0000-0015-000000000177}, !- Inlet Node Name 3 + {00000000-0000-0000-0015-000000000183}, !- Inlet Node Name 4 + {00000000-0000-0000-0015-000000000189}; !- Inlet Node Name 5 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0015-000000000198}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000217}, !- Inlet Node Name 1 + {00000000-0000-0000-0015-000000000223}, !- Inlet Node Name 2 + {00000000-0000-0000-0015-000000000229}, !- Inlet Node Name 3 + {00000000-0000-0000-0015-000000000235}, !- Inlet Node Name 4 + {00000000-0000-0000-0015-000000000241}; !- Inlet Node Name 5 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -75,6 +193,26 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0015-000000000132}, !- Outlet Node Name 4 {00000000-0000-0000-0015-000000000138}; !- Outlet Node Name 5 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000002}, !- Handle + Air Loop HVAC Zone Splitter 2, !- Name + {00000000-0000-0000-0015-000000000145}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000166}, !- Outlet Node Name 1 + {00000000-0000-0000-0015-000000000172}, !- Outlet Node Name 2 + {00000000-0000-0000-0015-000000000178}, !- Outlet Node Name 3 + {00000000-0000-0000-0015-000000000184}, !- Outlet Node Name 4 + {00000000-0000-0000-0015-000000000190}; !- Outlet Node Name 5 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0015-000000000197}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000218}, !- Outlet Node Name 1 + {00000000-0000-0000-0015-000000000224}, !- Outlet Node Name 2 + {00000000-0000-0000-0015-000000000230}, !- Outlet Node Name 3 + {00000000-0000-0000-0015-000000000236}, !- Outlet Node Name 4 + {00000000-0000-0000-0015-000000000242}; !- Outlet Node Name 5 + OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -85,7 +223,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000011}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000116}, !- Air Outlet Node Name @@ -98,6 +236,132 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000191}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000192}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000219}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000220}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000225}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000226}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000231}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000232}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000237}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000009}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000238}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000243}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000010}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000244}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000121}, !- Air Inlet Node Name @@ -106,7 +370,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000012}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000122}, !- Air Outlet Node Name @@ -118,7 +382,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000127}, !- Air Inlet Node Name @@ -127,7 +391,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000013}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000128}, !- Air Outlet Node Name @@ -139,7 +403,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000133}, !- Air Inlet Node Name @@ -148,7 +412,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000005}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000014}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000134}, !- Air Outlet Node Name @@ -160,7 +424,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000139}, !- Air Inlet Node Name @@ -169,7 +433,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000015}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000140}, !- Air Outlet Node Name @@ -180,6 +444,90 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000167}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000017}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000168}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000173}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000018}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000174}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000179}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000180}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000185}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000186}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -194,21 +542,59 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0048-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0048-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0048-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0048-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000004}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000006}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Building, @@ -260,8 +646,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0011-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton, !- Name - 98998.1003686864, !- Reference Capacity {W} + Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton, !- Name + 248661.151059467, !- Reference Capacity {W} 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -304,9 +690,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0024-000000000005}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0024-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0024-000000000007}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0024-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -357,6 +743,42 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration +OS:Coil:Cooling:Water, + {00000000-0000-0000-0013-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0015-000000000148}, !- Water Inlet Node Name + {00000000-0000-0000-0015-000000000149}, !- Water Outlet Node Name + {00000000-0000-0000-0015-000000000159}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000156}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0013-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0015-000000000200}, !- Water Inlet Node Name + {00000000-0000-0000-0015-000000000201}, !- Water Outlet Node Name + {00000000-0000-0000-0015-000000000211}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000208}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000001}, !- Handle Coil Heating Electric 1, !- Name @@ -368,46 +790,154 @@ OS:Coil:Heating:Electric, OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000002}, !- Handle - Coil Heating Electric 2, !- Name + Coil Heating Electric 10, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Efficiency - 26665.4019355774, !- Nominal Capacity {W} + 11197.9591369629, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000003}, !- Handle - Coil Heating Electric 3, !- Name + Coil Heating Electric 11, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Efficiency - 14999.2591381073, !- Nominal Capacity {W} + 6543.26219558716, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000004}, !- Handle - Coil Heating Electric 4, !- Name + Coil Heating Electric 12, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Efficiency - 12592.0353412628, !- Nominal Capacity {W} + 12108.2193374634, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000005}, !- Handle + Coil Heating Electric 13, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0015-000000000209}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000206}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000006}, !- Handle + Coil Heating Electric 14, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 24091.289806366, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000007}, !- Handle + Coil Heating Electric 15, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 14241.6543960571, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000008}, !- Handle + Coil Heating Electric 16, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 11677.5599956512, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000009}, !- Handle + Coil Heating Electric 17, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 7499.4943857193, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000010}, !- Handle + Coil Heating Electric 18, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 12827.5813579559, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000011}, !- Handle + Coil Heating Electric 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 14499.383354187, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000012}, !- Handle + Coil Heating Electric 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 11646.1575508118, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000013}, !- Handle + Coil Heating Electric 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 10310.8687162399, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000014}, !- Handle Coil Heating Electric 5, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Efficiency - 6863.41495513916, !- Nominal Capacity {W} + 5860.14540195465, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000006}, !- Handle + {00000000-0000-0000-0014-000000000015}, !- Handle Coil Heating Electric 6, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name , !- Efficiency - 13941.654253006, !- Nominal Capacity {W} + 11752.9098987579, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000016}, !- Handle + Coil Heating Electric 7, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0015-000000000157}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000154}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000017}, !- Handle + Coil Heating Electric 8, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 20076.7271518707, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000018}, !- Handle + Coil Heating Electric 9, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + , !- Efficiency + 13291.9927597046, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name @@ -541,35 +1071,35 @@ OS:Connection, {00000000-0000-0000-0015-000000000019}, !- Handle {00000000-0000-0000-0089-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000020}, !- Target Object + {00000000-0000-0000-0049-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000020}, !- Handle {00000000-0000-0000-0089-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000025}, !- Target Object + {00000000-0000-0000-0049-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000021}, !- Handle {00000000-0000-0000-0089-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000021}, !- Target Object + {00000000-0000-0000-0049-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000022}, !- Handle {00000000-0000-0000-0089-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000022}, !- Target Object + {00000000-0000-0000-0049-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000023}, !- Handle {00000000-0000-0000-0089-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000016}, !- Target Object + {00000000-0000-0000-0049-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -583,14 +1113,14 @@ OS:Connection, {00000000-0000-0000-0015-000000000025}, !- Handle {00000000-0000-0000-0089-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000023}, !- Target Object + {00000000-0000-0000-0049-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000026}, !- Handle {00000000-0000-0000-0089-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000017}, !- Target Object + {00000000-0000-0000-0049-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -604,7 +1134,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000028}, !- Handle {00000000-0000-0000-0089-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000024}, !- Target Object + {00000000-0000-0000-0049-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -625,7 +1155,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000031}, !- Handle {00000000-0000-0000-0089-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000018}, !- Target Object + {00000000-0000-0000-0049-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -646,7 +1176,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000034}, !- Handle {00000000-0000-0000-0089-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000019}, !- Target Object + {00000000-0000-0000-0049-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -667,19 +1197,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000037}, !- Handle {00000000-0000-0000-0054-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000038}, !- Target Object + {00000000-0000-0000-0049-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000038}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000099}, !- Target Object + {00000000-0000-0000-0049-000000000137}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000039}, !- Handle - {00000000-0000-0000-0049-000000000039}, !- Source Object + {00000000-0000-0000-0049-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000001}, !- Target Object 15; !- Inlet Port @@ -688,12 +1218,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000040}, !- Handle {00000000-0000-0000-0054-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000036}, !- Target Object + {00000000-0000-0000-0049-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000041}, !- Handle - {00000000-0000-0000-0049-000000000036}, !- Source Object + {00000000-0000-0000-0049-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000002}, !- Target Object 2; !- Inlet Port @@ -702,26 +1232,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000042}, !- Handle {00000000-0000-0000-0017-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000040}, !- Target Object + {00000000-0000-0000-0049-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000043}, !- Handle {00000000-0000-0000-0016-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000037}, !- Target Object + {00000000-0000-0000-0049-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000044}, !- Handle - {00000000-0000-0000-0049-000000000037}, !- Source Object + {00000000-0000-0000-0049-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000045}, !- Handle - {00000000-0000-0000-0049-000000000038}, !- Source Object + {00000000-0000-0000-0049-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port @@ -730,19 +1260,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000046}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000101}, !- Target Object + {00000000-0000-0000-0049-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000047}, !- Handle - {00000000-0000-0000-0049-000000000101}, !- Source Object + {00000000-0000-0000-0049-000000000139}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000048}, !- Handle - {00000000-0000-0000-0049-000000000099}, !- Source Object + {00000000-0000-0000-0049-000000000137}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000001}, !- Target Object 15; !- Inlet Port @@ -751,12 +1281,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000049}, !- Handle {00000000-0000-0000-0011-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000100}, !- Target Object + {00000000-0000-0000-0049-000000000138}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000050}, !- Handle - {00000000-0000-0000-0049-000000000100}, !- Source Object + {00000000-0000-0000-0049-000000000138}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 3; !- Inlet Port @@ -765,12 +1295,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000051}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000105}, !- Target Object + {00000000-0000-0000-0049-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000052}, !- Handle - {00000000-0000-0000-0049-000000000105}, !- Source Object + {00000000-0000-0000-0049-000000000143}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000002}, !- Target Object 15; !- Inlet Port @@ -779,12 +1309,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000053}, !- Handle {00000000-0000-0000-0011-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000106}, !- Target Object + {00000000-0000-0000-0049-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000054}, !- Handle - {00000000-0000-0000-0049-000000000106}, !- Source Object + {00000000-0000-0000-0049-000000000144}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 4; !- Inlet Port @@ -793,12 +1323,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000055}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000085}, !- Target Object + {00000000-0000-0000-0049-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000056}, !- Handle - {00000000-0000-0000-0049-000000000085}, !- Source Object + {00000000-0000-0000-0049-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000001}, !- Target Object 2; !- Inlet Port @@ -807,12 +1337,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000057}, !- Handle {00000000-0000-0000-0053-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000086}, !- Target Object + {00000000-0000-0000-0049-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000058}, !- Handle - {00000000-0000-0000-0049-000000000086}, !- Source Object + {00000000-0000-0000-0049-000000000124}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port @@ -821,12 +1351,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000059}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000087}, !- Target Object + {00000000-0000-0000-0049-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000060}, !- Handle - {00000000-0000-0000-0049-000000000087}, !- Source Object + {00000000-0000-0000-0049-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000002}, !- Target Object 2; !- Inlet Port @@ -835,26 +1365,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000061}, !- Handle {00000000-0000-0000-0053-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000039}, !- Target Object + {00000000-0000-0000-0049-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000062}, !- Handle {00000000-0000-0000-0054-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000046}, !- Target Object + {00000000-0000-0000-0049-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000063}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000048}, !- Target Object + {00000000-0000-0000-0049-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000064}, !- Handle - {00000000-0000-0000-0049-000000000047}, !- Source Object + {00000000-0000-0000-0049-000000000085}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000002}, !- Target Object 15; !- Inlet Port @@ -863,12 +1393,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000065}, !- Handle {00000000-0000-0000-0054-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000044}, !- Target Object + {00000000-0000-0000-0049-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000066}, !- Handle - {00000000-0000-0000-0049-000000000044}, !- Source Object + {00000000-0000-0000-0049-000000000082}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000004}, !- Target Object 2; !- Inlet Port @@ -877,26 +1407,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000067}, !- Handle {00000000-0000-0000-0017-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000097}, !- Target Object + {00000000-0000-0000-0049-000000000135}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000068}, !- Handle {00000000-0000-0000-0016-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000045}, !- Target Object + {00000000-0000-0000-0049-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000069}, !- Handle - {00000000-0000-0000-0049-000000000045}, !- Source Object + {00000000-0000-0000-0049-000000000083}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000070}, !- Handle - {00000000-0000-0000-0049-000000000046}, !- Source Object + {00000000-0000-0000-0049-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000002}, !- Target Object 2; !- Inlet Port @@ -905,19 +1435,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000071}, !- Handle {00000000-0000-0000-0057-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000102}, !- Target Object + {00000000-0000-0000-0049-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000072}, !- Handle - {00000000-0000-0000-0049-000000000102}, !- Source Object + {00000000-0000-0000-0049-000000000140}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000073}, !- Handle - {00000000-0000-0000-0049-000000000048}, !- Source Object + {00000000-0000-0000-0049-000000000086}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0023-000000000001}, !- Target Object 2; !- Inlet Port @@ -926,12 +1456,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000074}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000049}, !- Target Object + {00000000-0000-0000-0049-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000075}, !- Handle - {00000000-0000-0000-0049-000000000049}, !- Source Object + {00000000-0000-0000-0049-000000000087}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000003}, !- Target Object 3; !- Inlet Port @@ -940,12 +1470,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000076}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000088}, !- Target Object + {00000000-0000-0000-0049-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000077}, !- Handle - {00000000-0000-0000-0049-000000000088}, !- Source Object + {00000000-0000-0000-0049-000000000126}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000003}, !- Target Object 2; !- Inlet Port @@ -954,12 +1484,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000078}, !- Handle {00000000-0000-0000-0053-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000089}, !- Target Object + {00000000-0000-0000-0049-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000079}, !- Handle - {00000000-0000-0000-0049-000000000089}, !- Source Object + {00000000-0000-0000-0049-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000003}, !- Target Object 4; !- Inlet Port @@ -968,12 +1498,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000080}, !- Handle {00000000-0000-0000-0016-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000090}, !- Target Object + {00000000-0000-0000-0049-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000081}, !- Handle - {00000000-0000-0000-0049-000000000090}, !- Source Object + {00000000-0000-0000-0049-000000000128}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000004}, !- Target Object 2; !- Inlet Port @@ -982,1013 +1512,1741 @@ OS:Connection, {00000000-0000-0000-0015-000000000082}, !- Handle {00000000-0000-0000-0053-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000047}, !- Target Object + {00000000-0000-0000-0049-000000000085}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000083}, !- Handle + {00000000-0000-0000-0049-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0011-000000000001}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000084}, !- Handle + {00000000-0000-0000-0011-000000000001}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0049-000000000136}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000085}, !- Handle + {00000000-0000-0000-0049-000000000136}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000086}, !- Handle + {00000000-0000-0000-0017-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000141}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000087}, !- Handle + {00000000-0000-0000-0049-000000000141}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0011-000000000002}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000088}, !- Handle + {00000000-0000-0000-0011-000000000002}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0049-000000000142}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000089}, !- Handle + {00000000-0000-0000-0049-000000000142}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000090}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0049-000000000167}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000091}, !- Handle + {00000000-0000-0000-0049-000000000168}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000092}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000162}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000093}, !- Handle + {00000000-0000-0000-0049-000000000163}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000094}, !- Handle + {00000000-0000-0000-0049-000000000162}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000095}, !- Handle + {00000000-0000-0000-0004-000000000001}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000163}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000096}, !- Handle + {00000000-0000-0000-0049-000000000070}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000097}, !- Handle + {00000000-0000-0000-0013-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000072}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000098}, !- Handle + {00000000-0000-0000-0049-000000000072}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000099}, !- Handle + {00000000-0000-0000-0049-000000000165}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000100}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000166}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000101}, !- Handle + {00000000-0000-0000-0039-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000168}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000102}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000079}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000103}, !- Handle + {00000000-0000-0000-0049-000000000079}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000006}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000104}, !- Handle + {00000000-0000-0000-0013-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000071}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000105}, !- Handle + {00000000-0000-0000-0049-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000001}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000106}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000164}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000107}, !- Handle + {00000000-0000-0000-0049-000000000164}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000108}, !- Handle + {00000000-0000-0000-0049-000000000167}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000109}, !- Handle + {00000000-0000-0000-0039-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000147}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000110}, !- Handle + {00000000-0000-0000-0049-000000000147}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000111}, !- Handle + {00000000-0000-0000-0049-000000000037}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000112}, !- Handle + {00000000-0000-0000-0055-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000113}, !- Handle + {00000000-0000-0000-0049-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000114}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000115}, !- Handle + {00000000-0000-0000-0049-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000116}, !- Handle + {00000000-0000-0000-0006-000000000001}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000117}, !- Handle + {00000000-0000-0000-0049-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000118}, !- Handle + {00000000-0000-0000-0055-000000000042}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000119}, !- Handle + {00000000-0000-0000-0049-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000120}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000050}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000121}, !- Handle + {00000000-0000-0000-0049-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000122}, !- Handle + {00000000-0000-0000-0006-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000051}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000123}, !- Handle + {00000000-0000-0000-0049-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000124}, !- Handle + {00000000-0000-0000-0055-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000125}, !- Handle + {00000000-0000-0000-0049-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000126}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000127}, !- Handle + {00000000-0000-0000-0049-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000128}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000053}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000129}, !- Handle + {00000000-0000-0000-0049-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000130}, !- Handle + {00000000-0000-0000-0055-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000131}, !- Handle + {00000000-0000-0000-0049-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000132}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000054}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000133}, !- Handle + {00000000-0000-0000-0049-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000134}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000135}, !- Handle + {00000000-0000-0000-0049-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000136}, !- Handle + {00000000-0000-0000-0055-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000137}, !- Handle + {00000000-0000-0000-0049-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000138}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000139}, !- Handle + {00000000-0000-0000-0049-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000140}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000141}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0049-000000000153}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000142}, !- Handle + {00000000-0000-0000-0049-000000000154}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000143}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000148}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000144}, !- Handle + {00000000-0000-0000-0049-000000000149}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000145}, !- Handle + {00000000-0000-0000-0049-000000000148}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000146}, !- Handle + {00000000-0000-0000-0004-000000000002}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000149}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000147}, !- Handle + {00000000-0000-0000-0017-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000073}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000148}, !- Handle + {00000000-0000-0000-0049-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000149}, !- Handle + {00000000-0000-0000-0013-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0049-000000000075}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000150}, !- Handle + {00000000-0000-0000-0049-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000151}, !- Handle + {00000000-0000-0000-0049-000000000151}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000152}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000152}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000153}, !- Handle + {00000000-0000-0000-0039-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000154}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000154}, !- Handle + {00000000-0000-0000-0014-000000000016}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000081}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000155}, !- Handle + {00000000-0000-0000-0049-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000004}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000156}, !- Handle + {00000000-0000-0000-0013-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0049-000000000074}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000157}, !- Handle + {00000000-0000-0000-0049-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000016}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000158}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000150}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000159}, !- Handle + {00000000-0000-0000-0049-000000000150}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000160}, !- Handle + {00000000-0000-0000-0049-000000000153}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000001}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000161}, !- Handle + {00000000-0000-0000-0039-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0049-000000000145}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000162}, !- Handle + {00000000-0000-0000-0049-000000000145}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000163}, !- Handle + {00000000-0000-0000-0049-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000164}, !- Handle + {00000000-0000-0000-0055-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000024}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000165}, !- Handle + {00000000-0000-0000-0049-000000000024}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000166}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0049-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000167}, !- Handle + {00000000-0000-0000-0049-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000012}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000168}, !- Handle + {00000000-0000-0000-0006-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000169}, !- Handle + {00000000-0000-0000-0049-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000170}, !- Handle + {00000000-0000-0000-0055-000000000039}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000020}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000171}, !- Handle + {00000000-0000-0000-0049-000000000020}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000172}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0049-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000173}, !- Handle + {00000000-0000-0000-0049-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000013}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000174}, !- Handle + {00000000-0000-0000-0006-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000175}, !- Handle + {00000000-0000-0000-0049-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000176}, !- Handle + {00000000-0000-0000-0055-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000177}, !- Handle + {00000000-0000-0000-0049-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000178}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000179}, !- Handle + {00000000-0000-0000-0049-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000014}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000180}, !- Handle + {00000000-0000-0000-0006-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000181}, !- Handle + {00000000-0000-0000-0049-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0055-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000182}, !- Handle + {00000000-0000-0000-0055-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000183}, !- Handle + {00000000-0000-0000-0049-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000184}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0049-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000185}, !- Handle + {00000000-0000-0000-0049-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000015}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000186}, !- Handle + {00000000-0000-0000-0006-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000065}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000083}, !- Handle - {00000000-0000-0000-0049-000000000097}, !- Source Object + {00000000-0000-0000-0015-000000000187}, !- Handle + {00000000-0000-0000-0049-000000000039}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0011-000000000001}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0055-000000000013}, !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000084}, !- Handle - {00000000-0000-0000-0011-000000000001}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0049-000000000098}, !- Target Object + {00000000-0000-0000-0015-000000000188}, !- Handle + {00000000-0000-0000-0055-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0049-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000085}, !- Handle - {00000000-0000-0000-0049-000000000098}, !- Source Object + {00000000-0000-0000-0015-000000000189}, !- Handle + {00000000-0000-0000-0049-000000000016}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000086}, !- Handle - {00000000-0000-0000-0017-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0049-000000000103}, !- Target Object + {00000000-0000-0000-0015-000000000190}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0049-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000087}, !- Handle - {00000000-0000-0000-0049-000000000103}, !- Source Object + {00000000-0000-0000-0015-000000000191}, !- Handle + {00000000-0000-0000-0049-000000000038}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0011-000000000002}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0006-000000000002}, !- Target Object + 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000088}, !- Handle - {00000000-0000-0000-0011-000000000002}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0049-000000000104}, !- Target Object + {00000000-0000-0000-0015-000000000192}, !- Handle + {00000000-0000-0000-0006-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0049-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000089}, !- Handle - {00000000-0000-0000-0049-000000000104}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000090}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000193}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000113}, !- Target Object + {00000000-0000-0000-0049-000000000160}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000091}, !- Handle - {00000000-0000-0000-0049-000000000114}, !- Source Object + {00000000-0000-0000-0015-000000000194}, !- Handle + {00000000-0000-0000-0049-000000000161}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000092}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000195}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000108}, !- Target Object + {00000000-0000-0000-0049-000000000155}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000093}, !- Handle - {00000000-0000-0000-0049-000000000109}, !- Source Object + {00000000-0000-0000-0015-000000000196}, !- Handle + {00000000-0000-0000-0049-000000000156}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000094}, !- Handle - {00000000-0000-0000-0049-000000000108}, !- Source Object + {00000000-0000-0000-0015-000000000197}, !- Handle + {00000000-0000-0000-0049-000000000155}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000001}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000095}, !- Handle - {00000000-0000-0000-0004-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000198}, !- Handle + {00000000-0000-0000-0004-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000109}, !- Target Object + {00000000-0000-0000-0049-000000000156}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000096}, !- Handle - {00000000-0000-0000-0049-000000000040}, !- Source Object + {00000000-0000-0000-0015-000000000199}, !- Handle + {00000000-0000-0000-0017-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0049-000000000076}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000200}, !- Handle + {00000000-0000-0000-0049-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object + {00000000-0000-0000-0013-000000000003}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000097}, !- Handle - {00000000-0000-0000-0013-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000201}, !- Handle + {00000000-0000-0000-0013-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000042}, !- Target Object + {00000000-0000-0000-0049-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000098}, !- Handle - {00000000-0000-0000-0049-000000000042}, !- Source Object + {00000000-0000-0000-0015-000000000202}, !- Handle + {00000000-0000-0000-0049-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000002}, !- Target Object - 3; !- Inlet Port + 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000099}, !- Handle - {00000000-0000-0000-0049-000000000111}, !- Source Object + {00000000-0000-0000-0015-000000000203}, !- Handle + {00000000-0000-0000-0049-000000000158}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000100}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000204}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0049-000000000112}, !- Target Object + {00000000-0000-0000-0049-000000000159}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000101}, !- Handle - {00000000-0000-0000-0039-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000205}, !- Handle + {00000000-0000-0000-0039-000000000005}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000114}, !- Target Object + {00000000-0000-0000-0049-000000000161}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000102}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000206}, !- Handle + {00000000-0000-0000-0014-000000000005}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000043}, !- Target Object + {00000000-0000-0000-0049-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000103}, !- Handle - {00000000-0000-0000-0049-000000000043}, !- Source Object + {00000000-0000-0000-0015-000000000207}, !- Handle + {00000000-0000-0000-0049-000000000080}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000002}, !- Target Object + {00000000-0000-0000-0039-000000000005}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000104}, !- Handle - {00000000-0000-0000-0013-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000208}, !- Handle + {00000000-0000-0000-0013-000000000003}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0049-000000000041}, !- Target Object + {00000000-0000-0000-0049-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000105}, !- Handle - {00000000-0000-0000-0049-000000000041}, !- Source Object + {00000000-0000-0000-0015-000000000209}, !- Handle + {00000000-0000-0000-0049-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object + {00000000-0000-0000-0014-000000000005}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000106}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000210}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000110}, !- Target Object + {00000000-0000-0000-0049-000000000157}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000107}, !- Handle - {00000000-0000-0000-0049-000000000110}, !- Source Object + {00000000-0000-0000-0015-000000000211}, !- Handle + {00000000-0000-0000-0049-000000000157}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object + {00000000-0000-0000-0013-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000108}, !- Handle - {00000000-0000-0000-0049-000000000113}, !- Source Object + {00000000-0000-0000-0015-000000000212}, !- Handle + {00000000-0000-0000-0049-000000000160}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000001}, !- Target Object + {00000000-0000-0000-0039-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000109}, !- Handle - {00000000-0000-0000-0039-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000213}, !- Handle + {00000000-0000-0000-0039-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000107}, !- Target Object + {00000000-0000-0000-0049-000000000146}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000110}, !- Handle - {00000000-0000-0000-0049-000000000107}, !- Source Object + {00000000-0000-0000-0015-000000000214}, !- Handle + {00000000-0000-0000-0049-000000000146}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000111}, !- Handle - {00000000-0000-0000-0049-000000000027}, !- Source Object + {00000000-0000-0000-0015-000000000215}, !- Handle + {00000000-0000-0000-0049-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000016}, !- Target Object + {00000000-0000-0000-0055-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000112}, !- Handle - {00000000-0000-0000-0055-000000000018}, !- Source Object + {00000000-0000-0000-0015-000000000216}, !- Handle + {00000000-0000-0000-0055-000000000012}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000014}, !- Target Object + {00000000-0000-0000-0049-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000113}, !- Handle - {00000000-0000-0000-0049-000000000014}, !- Source Object + {00000000-0000-0000-0015-000000000217}, !- Handle + {00000000-0000-0000-0049-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000114}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000218}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000026}, !- Target Object + {00000000-0000-0000-0049-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000115}, !- Handle - {00000000-0000-0000-0049-000000000026}, !- Source Object + {00000000-0000-0000-0015-000000000219}, !- Handle + {00000000-0000-0000-0049-000000000040}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000001}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000116}, !- Handle - {00000000-0000-0000-0006-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000220}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000027}, !- Target Object + {00000000-0000-0000-0049-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000117}, !- Handle - {00000000-0000-0000-0049-000000000029}, !- Source Object + {00000000-0000-0000-0015-000000000221}, !- Handle + {00000000-0000-0000-0049-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000040}, !- Target Object + {00000000-0000-0000-0055-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000118}, !- Handle - {00000000-0000-0000-0055-000000000042}, !- Source Object + {00000000-0000-0000-0015-000000000222}, !- Handle + {00000000-0000-0000-0055-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000008}, !- Target Object + {00000000-0000-0000-0049-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000119}, !- Handle - {00000000-0000-0000-0049-000000000008}, !- Source Object + {00000000-0000-0000-0015-000000000223}, !- Handle + {00000000-0000-0000-0049-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000120}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000224}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000028}, !- Target Object + {00000000-0000-0000-0049-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000121}, !- Handle - {00000000-0000-0000-0049-000000000028}, !- Source Object + {00000000-0000-0000-0015-000000000225}, !- Handle + {00000000-0000-0000-0049-000000000042}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000122}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000226}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000029}, !- Target Object + {00000000-0000-0000-0049-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000123}, !- Handle - {00000000-0000-0000-0049-000000000031}, !- Source Object + {00000000-0000-0000-0015-000000000227}, !- Handle + {00000000-0000-0000-0049-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000031}, !- Target Object + {00000000-0000-0000-0055-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000124}, !- Handle - {00000000-0000-0000-0055-000000000033}, !- Source Object + {00000000-0000-0000-0015-000000000228}, !- Handle + {00000000-0000-0000-0055-000000000009}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000006}, !- Target Object + {00000000-0000-0000-0049-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000125}, !- Handle - {00000000-0000-0000-0049-000000000006}, !- Source Object + {00000000-0000-0000-0015-000000000229}, !- Handle + {00000000-0000-0000-0049-000000000026}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000126}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000230}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000030}, !- Target Object + {00000000-0000-0000-0049-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000127}, !- Handle - {00000000-0000-0000-0049-000000000030}, !- Source Object + {00000000-0000-0000-0015-000000000231}, !- Handle + {00000000-0000-0000-0049-000000000044}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000128}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000232}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000031}, !- Target Object + {00000000-0000-0000-0049-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000129}, !- Handle - {00000000-0000-0000-0049-000000000033}, !- Source Object + {00000000-0000-0000-0015-000000000233}, !- Handle + {00000000-0000-0000-0049-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000049}, !- Target Object + {00000000-0000-0000-0055-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000130}, !- Handle - {00000000-0000-0000-0055-000000000051}, !- Source Object + {00000000-0000-0000-0015-000000000234}, !- Handle + {00000000-0000-0000-0055-000000000021}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000010}, !- Target Object + {00000000-0000-0000-0049-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000131}, !- Handle - {00000000-0000-0000-0049-000000000010}, !- Source Object + {00000000-0000-0000-0015-000000000235}, !- Handle + {00000000-0000-0000-0049-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000132}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000236}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000032}, !- Target Object + {00000000-0000-0000-0049-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000133}, !- Handle - {00000000-0000-0000-0049-000000000032}, !- Source Object + {00000000-0000-0000-0015-000000000237}, !- Handle + {00000000-0000-0000-0049-000000000046}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object + {00000000-0000-0000-0006-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000134}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object + {00000000-0000-0000-0015-000000000238}, !- Handle + {00000000-0000-0000-0006-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000033}, !- Target Object + {00000000-0000-0000-0049-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000135}, !- Handle - {00000000-0000-0000-0049-000000000035}, !- Source Object + {00000000-0000-0000-0015-000000000239}, !- Handle + {00000000-0000-0000-0049-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0055-000000000052}, !- Target Object + {00000000-0000-0000-0055-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000136}, !- Handle - {00000000-0000-0000-0055-000000000054}, !- Source Object + {00000000-0000-0000-0015-000000000240}, !- Handle + {00000000-0000-0000-0055-000000000030}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000012}, !- Target Object + {00000000-0000-0000-0049-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000137}, !- Handle - {00000000-0000-0000-0049-000000000012}, !- Source Object + {00000000-0000-0000-0015-000000000241}, !- Handle + {00000000-0000-0000-0049-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000138}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000242}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0049-000000000034}, !- Target Object + {00000000-0000-0000-0049-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000139}, !- Handle - {00000000-0000-0000-0049-000000000034}, !- Source Object + {00000000-0000-0000-0015-000000000243}, !- Handle + {00000000-0000-0000-0049-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object + {00000000-0000-0000-0006-000000000007}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000140}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000244}, !- Handle + {00000000-0000-0000-0006-000000000007}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000035}, !- Target Object + {00000000-0000-0000-0049-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000141}, !- Handle + {00000000-0000-0000-0015-000000000245}, !- Handle {00000000-0000-0000-0054-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000059}, !- Target Object + {00000000-0000-0000-0049-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000142}, !- Handle + {00000000-0000-0000-0015-000000000246}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0049-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000143}, !- Handle - {00000000-0000-0000-0049-000000000060}, !- Source Object + {00000000-0000-0000-0015-000000000247}, !- Handle + {00000000-0000-0000-0049-000000000098}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000003}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000144}, !- Handle + {00000000-0000-0000-0015-000000000248}, !- Handle {00000000-0000-0000-0054-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000057}, !- Target Object + {00000000-0000-0000-0049-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000145}, !- Handle - {00000000-0000-0000-0049-000000000057}, !- Source Object + {00000000-0000-0000-0015-000000000249}, !- Handle + {00000000-0000-0000-0049-000000000095}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000146}, !- Handle + {00000000-0000-0000-0015-000000000250}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000093}, !- Target Object + {00000000-0000-0000-0049-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000147}, !- Handle - {00000000-0000-0000-0049-000000000058}, !- Source Object + {00000000-0000-0000-0015-000000000251}, !- Handle + {00000000-0000-0000-0049-000000000096}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000148}, !- Handle - {00000000-0000-0000-0049-000000000059}, !- Source Object + {00000000-0000-0000-0015-000000000252}, !- Handle + {00000000-0000-0000-0049-000000000097}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000149}, !- Handle + {00000000-0000-0000-0015-000000000253}, !- Handle {00000000-0000-0000-0056-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000056}, !- Target Object + {00000000-0000-0000-0049-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000150}, !- Handle - {00000000-0000-0000-0049-000000000056}, !- Source Object + {00000000-0000-0000-0015-000000000254}, !- Handle + {00000000-0000-0000-0049-000000000094}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000151}, !- Handle + {00000000-0000-0000-0015-000000000255}, !- Handle {00000000-0000-0000-0049-000000000001}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0093-000000000001}, !- Target Object 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000152}, !- Handle + {00000000-0000-0000-0015-000000000256}, !- Handle {00000000-0000-0000-0093-000000000001}, !- Source Object 32, !- Outlet Port {00000000-0000-0000-0049-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000153}, !- Handle + {00000000-0000-0000-0015-000000000257}, !- Handle {00000000-0000-0000-0049-000000000002}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000154}, !- Handle + {00000000-0000-0000-0015-000000000258}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000091}, !- Target Object + {00000000-0000-0000-0049-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000155}, !- Handle - {00000000-0000-0000-0049-000000000091}, !- Source Object + {00000000-0000-0000-0015-000000000259}, !- Handle + {00000000-0000-0000-0049-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000156}, !- Handle + {00000000-0000-0000-0015-000000000260}, !- Handle {00000000-0000-0000-0053-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000092}, !- Target Object + {00000000-0000-0000-0049-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000157}, !- Handle - {00000000-0000-0000-0049-000000000092}, !- Source Object + {00000000-0000-0000-0015-000000000261}, !- Handle + {00000000-0000-0000-0049-000000000130}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000158}, !- Handle - {00000000-0000-0000-0049-000000000093}, !- Source Object + {00000000-0000-0000-0015-000000000262}, !- Handle + {00000000-0000-0000-0049-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000159}, !- Handle + {00000000-0000-0000-0015-000000000263}, !- Handle {00000000-0000-0000-0053-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000094}, !- Target Object + {00000000-0000-0000-0049-000000000132}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000160}, !- Handle - {00000000-0000-0000-0049-000000000094}, !- Source Object + {00000000-0000-0000-0015-000000000264}, !- Handle + {00000000-0000-0000-0049-000000000132}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000161}, !- Handle + {00000000-0000-0000-0015-000000000265}, !- Handle {00000000-0000-0000-0016-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000095}, !- Target Object + {00000000-0000-0000-0049-000000000133}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000162}, !- Handle - {00000000-0000-0000-0049-000000000095}, !- Source Object + {00000000-0000-0000-0015-000000000266}, !- Handle + {00000000-0000-0000-0049-000000000133}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000163}, !- Handle + {00000000-0000-0000-0015-000000000267}, !- Handle {00000000-0000-0000-0053-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000060}, !- Target Object + {00000000-0000-0000-0049-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000164}, !- Handle + {00000000-0000-0000-0015-000000000268}, !- Handle {00000000-0000-0000-0016-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0049-000000000096}, !- Target Object + {00000000-0000-0000-0049-000000000134}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000165}, !- Handle - {00000000-0000-0000-0049-000000000096}, !- Source Object + {00000000-0000-0000-0015-000000000269}, !- Handle + {00000000-0000-0000-0049-000000000134}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0053-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000166}, !- Handle + {00000000-0000-0000-0015-000000000270}, !- Handle {00000000-0000-0000-0053-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000058}, !- Target Object + {00000000-0000-0000-0049-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000167}, !- Handle + {00000000-0000-0000-0015-000000000271}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0049-000000000050}, !- Target Object + {00000000-0000-0000-0049-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000168}, !- Handle - {00000000-0000-0000-0049-000000000050}, !- Source Object + {00000000-0000-0000-0015-000000000272}, !- Handle + {00000000-0000-0000-0049-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000169}, !- Handle + {00000000-0000-0000-0015-000000000273}, !- Handle {00000000-0000-0000-0095-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000051}, !- Target Object + {00000000-0000-0000-0049-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000170}, !- Handle - {00000000-0000-0000-0049-000000000051}, !- Source Object + {00000000-0000-0000-0015-000000000274}, !- Handle + {00000000-0000-0000-0049-000000000089}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000171}, !- Handle + {00000000-0000-0000-0015-000000000275}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0049-000000000052}, !- Target Object + {00000000-0000-0000-0049-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000172}, !- Handle - {00000000-0000-0000-0049-000000000052}, !- Source Object + {00000000-0000-0000-0015-000000000276}, !- Handle + {00000000-0000-0000-0049-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000173}, !- Handle + {00000000-0000-0000-0015-000000000277}, !- Handle {00000000-0000-0000-0095-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000053}, !- Target Object + {00000000-0000-0000-0049-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000174}, !- Handle - {00000000-0000-0000-0049-000000000053}, !- Source Object + {00000000-0000-0000-0015-000000000278}, !- Handle + {00000000-0000-0000-0049-000000000091}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000175}, !- Handle + {00000000-0000-0000-0015-000000000279}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0049-000000000054}, !- Target Object + {00000000-0000-0000-0049-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000176}, !- Handle - {00000000-0000-0000-0049-000000000054}, !- Source Object + {00000000-0000-0000-0015-000000000280}, !- Handle + {00000000-0000-0000-0049-000000000092}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000177}, !- Handle + {00000000-0000-0000-0015-000000000281}, !- Handle {00000000-0000-0000-0095-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000055}, !- Target Object + {00000000-0000-0000-0049-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000178}, !- Handle - {00000000-0000-0000-0049-000000000055}, !- Source Object + {00000000-0000-0000-0015-000000000282}, !- Handle + {00000000-0000-0000-0049-000000000093}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000179}, !- Handle + {00000000-0000-0000-0015-000000000283}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0049-000000000061}, !- Target Object + {00000000-0000-0000-0049-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000180}, !- Handle - {00000000-0000-0000-0049-000000000061}, !- Source Object + {00000000-0000-0000-0015-000000000284}, !- Handle + {00000000-0000-0000-0049-000000000099}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000181}, !- Handle + {00000000-0000-0000-0015-000000000285}, !- Handle {00000000-0000-0000-0095-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000062}, !- Target Object + {00000000-0000-0000-0049-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000182}, !- Handle - {00000000-0000-0000-0049-000000000062}, !- Source Object + {00000000-0000-0000-0015-000000000286}, !- Handle + {00000000-0000-0000-0049-000000000100}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000183}, !- Handle + {00000000-0000-0000-0015-000000000287}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0049-000000000063}, !- Target Object + {00000000-0000-0000-0049-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000184}, !- Handle - {00000000-0000-0000-0049-000000000063}, !- Source Object + {00000000-0000-0000-0015-000000000288}, !- Handle + {00000000-0000-0000-0049-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000185}, !- Handle + {00000000-0000-0000-0015-000000000289}, !- Handle {00000000-0000-0000-0095-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000064}, !- Target Object + {00000000-0000-0000-0049-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000186}, !- Handle - {00000000-0000-0000-0049-000000000064}, !- Source Object + {00000000-0000-0000-0015-000000000290}, !- Handle + {00000000-0000-0000-0049-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000187}, !- Handle + {00000000-0000-0000-0015-000000000291}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0049-000000000065}, !- Target Object + {00000000-0000-0000-0049-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000188}, !- Handle - {00000000-0000-0000-0049-000000000065}, !- Source Object + {00000000-0000-0000-0015-000000000292}, !- Handle + {00000000-0000-0000-0049-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000189}, !- Handle + {00000000-0000-0000-0015-000000000293}, !- Handle {00000000-0000-0000-0095-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000066}, !- Target Object + {00000000-0000-0000-0049-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000190}, !- Handle - {00000000-0000-0000-0049-000000000066}, !- Source Object + {00000000-0000-0000-0015-000000000294}, !- Handle + {00000000-0000-0000-0049-000000000104}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000191}, !- Handle + {00000000-0000-0000-0015-000000000295}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0049-000000000067}, !- Target Object + {00000000-0000-0000-0049-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000192}, !- Handle - {00000000-0000-0000-0049-000000000067}, !- Source Object + {00000000-0000-0000-0015-000000000296}, !- Handle + {00000000-0000-0000-0049-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000193}, !- Handle + {00000000-0000-0000-0015-000000000297}, !- Handle {00000000-0000-0000-0095-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000068}, !- Target Object + {00000000-0000-0000-0049-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000194}, !- Handle - {00000000-0000-0000-0049-000000000068}, !- Source Object + {00000000-0000-0000-0015-000000000298}, !- Handle + {00000000-0000-0000-0049-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000195}, !- Handle + {00000000-0000-0000-0015-000000000299}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0049-000000000069}, !- Target Object + {00000000-0000-0000-0049-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000196}, !- Handle - {00000000-0000-0000-0049-000000000069}, !- Source Object + {00000000-0000-0000-0015-000000000300}, !- Handle + {00000000-0000-0000-0049-000000000107}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000197}, !- Handle + {00000000-0000-0000-0015-000000000301}, !- Handle {00000000-0000-0000-0095-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000070}, !- Target Object + {00000000-0000-0000-0049-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000198}, !- Handle - {00000000-0000-0000-0049-000000000070}, !- Source Object + {00000000-0000-0000-0015-000000000302}, !- Handle + {00000000-0000-0000-0049-000000000108}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 11; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000199}, !- Handle + {00000000-0000-0000-0015-000000000303}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0049-000000000071}, !- Target Object + {00000000-0000-0000-0049-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000200}, !- Handle - {00000000-0000-0000-0049-000000000071}, !- Source Object + {00000000-0000-0000-0015-000000000304}, !- Handle + {00000000-0000-0000-0049-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000201}, !- Handle + {00000000-0000-0000-0015-000000000305}, !- Handle {00000000-0000-0000-0095-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000072}, !- Target Object + {00000000-0000-0000-0049-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000202}, !- Handle - {00000000-0000-0000-0049-000000000072}, !- Source Object + {00000000-0000-0000-0015-000000000306}, !- Handle + {00000000-0000-0000-0049-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000203}, !- Handle + {00000000-0000-0000-0015-000000000307}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0049-000000000073}, !- Target Object + {00000000-0000-0000-0049-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000204}, !- Handle - {00000000-0000-0000-0049-000000000073}, !- Source Object + {00000000-0000-0000-0015-000000000308}, !- Handle + {00000000-0000-0000-0049-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000205}, !- Handle + {00000000-0000-0000-0015-000000000309}, !- Handle {00000000-0000-0000-0095-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000074}, !- Target Object + {00000000-0000-0000-0049-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000206}, !- Handle - {00000000-0000-0000-0049-000000000074}, !- Source Object + {00000000-0000-0000-0015-000000000310}, !- Handle + {00000000-0000-0000-0049-000000000112}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 13; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000207}, !- Handle + {00000000-0000-0000-0015-000000000311}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0049-000000000075}, !- Target Object + {00000000-0000-0000-0049-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000208}, !- Handle - {00000000-0000-0000-0049-000000000075}, !- Source Object + {00000000-0000-0000-0015-000000000312}, !- Handle + {00000000-0000-0000-0049-000000000113}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000209}, !- Handle + {00000000-0000-0000-0015-000000000313}, !- Handle {00000000-0000-0000-0095-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000076}, !- Target Object + {00000000-0000-0000-0049-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000210}, !- Handle - {00000000-0000-0000-0049-000000000076}, !- Source Object + {00000000-0000-0000-0015-000000000314}, !- Handle + {00000000-0000-0000-0049-000000000114}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000211}, !- Handle + {00000000-0000-0000-0015-000000000315}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0049-000000000077}, !- Target Object + {00000000-0000-0000-0049-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000212}, !- Handle - {00000000-0000-0000-0049-000000000077}, !- Source Object + {00000000-0000-0000-0015-000000000316}, !- Handle + {00000000-0000-0000-0049-000000000115}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000213}, !- Handle + {00000000-0000-0000-0015-000000000317}, !- Handle {00000000-0000-0000-0095-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000078}, !- Target Object + {00000000-0000-0000-0049-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000214}, !- Handle - {00000000-0000-0000-0049-000000000078}, !- Source Object + {00000000-0000-0000-0015-000000000318}, !- Handle + {00000000-0000-0000-0049-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000215}, !- Handle + {00000000-0000-0000-0015-000000000319}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0049-000000000079}, !- Target Object + {00000000-0000-0000-0049-000000000117}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000216}, !- Handle - {00000000-0000-0000-0049-000000000079}, !- Source Object + {00000000-0000-0000-0015-000000000320}, !- Handle + {00000000-0000-0000-0049-000000000117}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000217}, !- Handle + {00000000-0000-0000-0015-000000000321}, !- Handle {00000000-0000-0000-0095-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000080}, !- Target Object + {00000000-0000-0000-0049-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000218}, !- Handle - {00000000-0000-0000-0049-000000000080}, !- Source Object + {00000000-0000-0000-0015-000000000322}, !- Handle + {00000000-0000-0000-0049-000000000118}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000219}, !- Handle + {00000000-0000-0000-0015-000000000323}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0049-000000000081}, !- Target Object + {00000000-0000-0000-0049-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000220}, !- Handle - {00000000-0000-0000-0049-000000000081}, !- Source Object + {00000000-0000-0000-0015-000000000324}, !- Handle + {00000000-0000-0000-0049-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000221}, !- Handle + {00000000-0000-0000-0015-000000000325}, !- Handle {00000000-0000-0000-0095-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000082}, !- Target Object + {00000000-0000-0000-0049-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000222}, !- Handle - {00000000-0000-0000-0049-000000000082}, !- Source Object + {00000000-0000-0000-0015-000000000326}, !- Handle + {00000000-0000-0000-0049-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000223}, !- Handle + {00000000-0000-0000-0015-000000000327}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0049-000000000083}, !- Target Object + {00000000-0000-0000-0049-000000000121}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000224}, !- Handle - {00000000-0000-0000-0049-000000000083}, !- Source Object + {00000000-0000-0000-0015-000000000328}, !- Handle + {00000000-0000-0000-0049-000000000121}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000225}, !- Handle + {00000000-0000-0000-0015-000000000329}, !- Handle {00000000-0000-0000-0095-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0049-000000000084}, !- Target Object + {00000000-0000-0000-0049-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000226}, !- Handle - {00000000-0000-0000-0049-000000000084}, !- Source Object + {00000000-0000-0000-0015-000000000330}, !- Handle + {00000000-0000-0000-0049-000000000122}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 18; !- Inlet Port @@ -2005,7 +3263,9 @@ OS:Connector:Mixer, {00000000-0000-0000-0016-000000000002}, !- Handle Connector Mixer 2, !- Name {00000000-0000-0000-0015-000000000043}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000098}; !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000098}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000150}, !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000202}; !- Inlet Branch Name 3 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000003}, !- Handle @@ -2024,30 +3284,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0016-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0015-000000000161}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000153}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000157}; !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000265}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000257}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000261}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0015-000000000164}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000160}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000170}, !- Inlet Branch Name 2 - {00000000-0000-0000-0015-000000000174}, !- Inlet Branch Name 3 - {00000000-0000-0000-0015-000000000178}, !- Inlet Branch Name 4 - {00000000-0000-0000-0015-000000000182}, !- Inlet Branch Name 5 - {00000000-0000-0000-0015-000000000186}, !- Inlet Branch Name 6 - {00000000-0000-0000-0015-000000000190}, !- Inlet Branch Name 7 - {00000000-0000-0000-0015-000000000194}, !- Inlet Branch Name 8 - {00000000-0000-0000-0015-000000000198}, !- Inlet Branch Name 9 - {00000000-0000-0000-0015-000000000202}, !- Inlet Branch Name 10 - {00000000-0000-0000-0015-000000000206}, !- Inlet Branch Name 11 - {00000000-0000-0000-0015-000000000210}, !- Inlet Branch Name 12 - {00000000-0000-0000-0015-000000000214}, !- Inlet Branch Name 13 - {00000000-0000-0000-0015-000000000218}, !- Inlet Branch Name 14 - {00000000-0000-0000-0015-000000000222}, !- Inlet Branch Name 15 - {00000000-0000-0000-0015-000000000226}; !- Inlet Branch Name 16 + {00000000-0000-0000-0015-000000000268}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000264}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000274}, !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000278}, !- Inlet Branch Name 3 + {00000000-0000-0000-0015-000000000282}, !- Inlet Branch Name 4 + {00000000-0000-0000-0015-000000000286}, !- Inlet Branch Name 5 + {00000000-0000-0000-0015-000000000290}, !- Inlet Branch Name 6 + {00000000-0000-0000-0015-000000000294}, !- Inlet Branch Name 7 + {00000000-0000-0000-0015-000000000298}, !- Inlet Branch Name 8 + {00000000-0000-0000-0015-000000000302}, !- Inlet Branch Name 9 + {00000000-0000-0000-0015-000000000306}, !- Inlet Branch Name 10 + {00000000-0000-0000-0015-000000000310}, !- Inlet Branch Name 11 + {00000000-0000-0000-0015-000000000314}, !- Inlet Branch Name 12 + {00000000-0000-0000-0015-000000000318}, !- Inlet Branch Name 13 + {00000000-0000-0000-0015-000000000322}, !- Inlet Branch Name 14 + {00000000-0000-0000-0015-000000000326}, !- Inlet Branch Name 15 + {00000000-0000-0000-0015-000000000330}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000001}, !- Handle @@ -2061,7 +3321,9 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0015-000000000041}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000042}; !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000042}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000147}, !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000199}; !- Outlet Branch Name 3 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000003}, !- Handle @@ -2080,30 +3342,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0017-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0015-000000000150}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000142}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000154}; !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000254}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000246}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000258}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0015-000000000145}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000146}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000167}, !- Outlet Branch Name 2 - {00000000-0000-0000-0015-000000000171}, !- Outlet Branch Name 3 - {00000000-0000-0000-0015-000000000175}, !- Outlet Branch Name 4 - {00000000-0000-0000-0015-000000000179}, !- Outlet Branch Name 5 - {00000000-0000-0000-0015-000000000183}, !- Outlet Branch Name 6 - {00000000-0000-0000-0015-000000000187}, !- Outlet Branch Name 7 - {00000000-0000-0000-0015-000000000191}, !- Outlet Branch Name 8 - {00000000-0000-0000-0015-000000000195}, !- Outlet Branch Name 9 - {00000000-0000-0000-0015-000000000199}, !- Outlet Branch Name 10 - {00000000-0000-0000-0015-000000000203}, !- Outlet Branch Name 11 - {00000000-0000-0000-0015-000000000207}, !- Outlet Branch Name 12 - {00000000-0000-0000-0015-000000000211}, !- Outlet Branch Name 13 - {00000000-0000-0000-0015-000000000215}, !- Outlet Branch Name 14 - {00000000-0000-0000-0015-000000000219}, !- Outlet Branch Name 15 - {00000000-0000-0000-0015-000000000223}; !- Outlet Branch Name 16 + {00000000-0000-0000-0015-000000000249}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000250}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000271}, !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000275}, !- Outlet Branch Name 3 + {00000000-0000-0000-0015-000000000279}, !- Outlet Branch Name 4 + {00000000-0000-0000-0015-000000000283}, !- Outlet Branch Name 5 + {00000000-0000-0000-0015-000000000287}, !- Outlet Branch Name 6 + {00000000-0000-0000-0015-000000000291}, !- Outlet Branch Name 7 + {00000000-0000-0000-0015-000000000295}, !- Outlet Branch Name 8 + {00000000-0000-0000-0015-000000000299}, !- Outlet Branch Name 9 + {00000000-0000-0000-0015-000000000303}, !- Outlet Branch Name 10 + {00000000-0000-0000-0015-000000000307}, !- Outlet Branch Name 11 + {00000000-0000-0000-0015-000000000311}, !- Outlet Branch Name 12 + {00000000-0000-0000-0015-000000000315}, !- Outlet Branch Name 13 + {00000000-0000-0000-0015-000000000319}, !- Outlet Branch Name 14 + {00000000-0000-0000-0015-000000000323}, !- Outlet Branch Name 15 + {00000000-0000-0000-0015-000000000327}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0018-000000000001}, !- Handle @@ -2356,8 +3618,22 @@ OS:Construction, {00000000-0000-0000-0046-000000000019}; !- Layer 2 OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0019-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0019-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0019-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0019-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method @@ -2380,7 +3656,7 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0063-000000000023}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0063-000000000027}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0019-000000000001}, !- Controller Mechanical Ventilation @@ -2392,6 +3668,66 @@ OS:Controller:OutdoorAir, BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Controller:OutdoorAir, + {00000000-0000-0000-0020-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0063-000000000025}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0019-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0020-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0063-000000000026}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0019-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + OS:Controller:WaterCoil, {00000000-0000-0000-0021-000000000001}, !- Handle Controller Water Coil 1, !- Name @@ -2405,6 +3741,32 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} +OS:Controller:WaterCoil, + {00000000-0000-0000-0021-000000000002}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0013-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0021-000000000003}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0013-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + OS:ConvergenceLimits, {00000000-0000-0000-0022-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -2417,7 +3779,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0015-000000000074}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 1814.73060300518, !- Fan Power at Design Air Flow Rate {W} + 4558.19858083704, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -2508,6 +3870,34 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0024-000000000005}, !- Handle + WaterCooled_Screw_CAPFT_NECB2011, !- Name + 0.812998, !- Coefficient1 Constant + -0.0142532, !- Coefficient2 x + -0.00161799, !- Coefficient3 x**2 + 0.0263844, !- Coefficient4 y + -0.00091543, !- Coefficient5 y**2 + 0.00169601, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0024-000000000006}, !- Handle + WaterCooled_Screw_EIRFT_NECB2011, !- Name + 0.638103, !- Coefficient1 Constant + 0.00630158, !- Coefficient2 x + 0.00092327, !- Coefficient3 x**2 + -0.00455294, !- Coefficient4 y + 0.000825682, !- Coefficient5 y**2 + -0.00156152, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0024-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -2521,7 +3911,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000006}, !- Handle + {00000000-0000-0000-0024-000000000008}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -2574,6 +3964,15 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0026-000000000003}, !- Handle + WaterCooled_Screw_EIRFPLR_NECB2011, !- Name + 0.330188, !- Coefficient1 Constant + 0.235543, !- Coefficient2 x + 0.460708, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0026-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -2735,7 +4134,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__ClgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2743,6 +4142,38 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0034-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0034-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name + {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0034-000000000005}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__ClgSch0, !- Name + {00000000-0000-0000-0063-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0034-000000000006}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__HtgSch0, !- Name {00000000-0000-0000-0063-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -2751,41 +4182,147 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {24ed36a2-e3c4-4152-b5a8-6e027a267692}<23.9 && {24ed36a2-e3c4-4152-b5a8-6e027a267692}>1.7, !- Program Line 1 + SET {f7979cc9-c64b-4174-919e-8ae554083cb6} = 29.4, !- Program Line 2 + SET {733c8080-8303-47d4-83a5-c3a06a0935aa} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {24ed36a2-e3c4-4152-b5a8-6e027a267692}<23.9 && {24ed36a2-e3c4-4152-b5a8-6e027a267692}>1.7, !- Program Line 4 + SET {f7979cc9-c64b-4174-919e-8ae554083cb6} = 29.4, !- Program Line 5 + SET {733c8080-8303-47d4-83a5-c3a06a0935aa} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {24ed36a2-e3c4-4152-b5a8-6e027a267692}<23.9 && {24ed36a2-e3c4-4152-b5a8-6e027a267692}>1.7, !- Program Line 7 + SET {f7979cc9-c64b-4174-919e-8ae554083cb6} = 29.4, !- Program Line 8 + SET {733c8080-8303-47d4-83a5-c3a06a0935aa} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {24ed36a2-e3c4-4152-b5a8-6e027a267692}<23.9 && {24ed36a2-e3c4-4152-b5a8-6e027a267692}>1.7, !- Program Line 10 + SET {f7979cc9-c64b-4174-919e-8ae554083cb6} = 29.4, !- Program Line 11 + SET {733c8080-8303-47d4-83a5-c3a06a0935aa} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {f7979cc9-c64b-4174-919e-8ae554083cb6} = NULL, !- Program Line 14 + SET {733c8080-8303-47d4-83a5-c3a06a0935aa} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0035-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {cb2c4b43-0224-4d30-8b13-f888dc46854b}<23.9 && {cb2c4b43-0224-4d30-8b13-f888dc46854b}>1.7, !- Program Line 1 + SET {b0aa5f15-4e29-4097-b627-a28261ca2e2c} = 29.4, !- Program Line 2 + SET {056bc4c8-d98f-4499-a420-80eded81ae72} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {cb2c4b43-0224-4d30-8b13-f888dc46854b}<23.9 && {cb2c4b43-0224-4d30-8b13-f888dc46854b}>1.7, !- Program Line 4 + SET {b0aa5f15-4e29-4097-b627-a28261ca2e2c} = 29.4, !- Program Line 5 + SET {056bc4c8-d98f-4499-a420-80eded81ae72} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {cb2c4b43-0224-4d30-8b13-f888dc46854b}<23.9 && {cb2c4b43-0224-4d30-8b13-f888dc46854b}>1.7, !- Program Line 7 + SET {b0aa5f15-4e29-4097-b627-a28261ca2e2c} = 29.4, !- Program Line 8 + SET {056bc4c8-d98f-4499-a420-80eded81ae72} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {cb2c4b43-0224-4d30-8b13-f888dc46854b}<23.9 && {cb2c4b43-0224-4d30-8b13-f888dc46854b}>1.7, !- Program Line 10 + SET {b0aa5f15-4e29-4097-b627-a28261ca2e2c} = 29.4, !- Program Line 11 + SET {056bc4c8-d98f-4499-a420-80eded81ae72} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {b0aa5f15-4e29-4097-b627-a28261ca2e2c} = NULL, !- Program Line 14 + SET {056bc4c8-d98f-4499-a420-80eded81ae72} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {360dab31-168c-4262-9028-aff9c08d77d3}<23.9 && {360dab31-168c-4262-9028-aff9c08d77d3}>1.7, !- Program Line 1 - SET {db472e4a-f29e-4800-b423-c9a54a423283} = 29.4, !- Program Line 2 - SET {ffbceb59-fb15-45a3-a227-37446d6fae3d} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {360dab31-168c-4262-9028-aff9c08d77d3}<23.9 && {360dab31-168c-4262-9028-aff9c08d77d3}>1.7, !- Program Line 4 - SET {db472e4a-f29e-4800-b423-c9a54a423283} = 29.4, !- Program Line 5 - SET {ffbceb59-fb15-45a3-a227-37446d6fae3d} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {360dab31-168c-4262-9028-aff9c08d77d3}<23.9 && {360dab31-168c-4262-9028-aff9c08d77d3}>1.7, !- Program Line 7 - SET {db472e4a-f29e-4800-b423-c9a54a423283} = 29.4, !- Program Line 8 - SET {ffbceb59-fb15-45a3-a227-37446d6fae3d} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {360dab31-168c-4262-9028-aff9c08d77d3}<23.9 && {360dab31-168c-4262-9028-aff9c08d77d3}>1.7, !- Program Line 10 - SET {db472e4a-f29e-4800-b423-c9a54a423283} = 29.4, !- Program Line 11 - SET {ffbceb59-fb15-45a3-a227-37446d6fae3d} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {f659d30e-391b-494a-a5ab-52e9a8e8f4ef}<23.9 && {f659d30e-391b-494a-a5ab-52e9a8e8f4ef}>1.7, !- Program Line 1 + SET {f0ae6496-c158-4a7e-a6da-ff196fc39dc2} = 29.4, !- Program Line 2 + SET {2c5c3c69-ab03-4d32-b7d6-9f1364c925fc} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {f659d30e-391b-494a-a5ab-52e9a8e8f4ef}<23.9 && {f659d30e-391b-494a-a5ab-52e9a8e8f4ef}>1.7, !- Program Line 4 + SET {f0ae6496-c158-4a7e-a6da-ff196fc39dc2} = 29.4, !- Program Line 5 + SET {2c5c3c69-ab03-4d32-b7d6-9f1364c925fc} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {f659d30e-391b-494a-a5ab-52e9a8e8f4ef}<23.9 && {f659d30e-391b-494a-a5ab-52e9a8e8f4ef}>1.7, !- Program Line 7 + SET {f0ae6496-c158-4a7e-a6da-ff196fc39dc2} = 29.4, !- Program Line 8 + SET {2c5c3c69-ab03-4d32-b7d6-9f1364c925fc} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {f659d30e-391b-494a-a5ab-52e9a8e8f4ef}<23.9 && {f659d30e-391b-494a-a5ab-52e9a8e8f4ef}>1.7, !- Program Line 10 + SET {f0ae6496-c158-4a7e-a6da-ff196fc39dc2} = 29.4, !- Program Line 11 + SET {2c5c3c69-ab03-4d32-b7d6-9f1364c925fc} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {db472e4a-f29e-4800-b423-c9a54a423283} = NULL, !- Program Line 14 - SET {ffbceb59-fb15-45a3-a227-37446d6fae3d} = NULL, !- Program Line 15 + SET {f0ae6496-c158-4a7e-a6da-ff196fc39dc2} = NULL, !- Program Line 14 + SET {2c5c3c69-ab03-4d32-b7d6-9f1364c925fc} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0036-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0035-000000000002}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0036-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0035-000000000003}; !- Program Name 1 + OS:EnergyManagementSystem:Sensor, {00000000-0000-0000-0037-000000000001}, !- Handle OAT, !- Name Environment, !- Output Variable or Output Meter Index Key Name Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0037-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0037-000000000003}, !- Handle + OAT_2, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + OS:Facility, {00000000-0000-0000-0038-000000000001}; !- Handle OS:Fan:VariableVolume, {00000000-0000-0000-0039-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000160}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000161}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000212}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000213}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000003}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -2806,8 +4343,29 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000002}, !- Handle - Sys6 Supply Fan, !- Name + {00000000-0000-0000-0039-000000000004}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000155}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000153}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000005}, !- Handle + Sys6 Supply Fan 2, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -2822,6 +4380,27 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000207}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000205}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000006}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0015-000000000103}, !- Air Inlet Node Name {00000000-0000-0000-0015-000000000101}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -3300,17 +4879,49 @@ OS:ModelObjectList, {00000000-0000-0000-0048-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0048-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name + OS:Node, {00000000-0000-0000-0049-000000000001}, !- Handle 126gal Electricity Water Heater - 85kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000142}, !- Inlet Port - {00000000-0000-0000-0015-000000000151}; !- Outlet Port + {00000000-0000-0000-0015-000000000246}, !- Inlet Port + {00000000-0000-0000-0015-000000000255}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000002}, !- Handle 126gal Electricity Water Heater - 85kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000152}, !- Inlet Port - {00000000-0000-0000-0015-000000000153}; !- Outlet Port + {00000000-0000-0000-0015-000000000256}, !- Inlet Port + {00000000-0000-0000-0015-000000000257}; !- Outlet Port OS:Node, {00000000-0000-0000-0049-000000000003}, !- Handle @@ -3392,594 +5003,918 @@ OS:Node, OS:Node, {00000000-0000-0000-0049-000000000016}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000188}, !- Inlet Port + {00000000-0000-0000-0015-000000000189}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000017}, !- Handle + {00000000-0000-0000-0049-000000000018}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000182}, !- Inlet Port + {00000000-0000-0000-0015-000000000183}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000018}, !- Handle + {00000000-0000-0000-0049-000000000020}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000170}, !- Inlet Port + {00000000-0000-0000-0015-000000000171}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000019}, !- Handle + {00000000-0000-0000-0049-000000000022}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000176}, !- Inlet Port + {00000000-0000-0000-0015-000000000177}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000023}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000020}, !- Handle + {00000000-0000-0000-0049-000000000024}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0015-000000000164}, !- Inlet Port + {00000000-0000-0000-0015-000000000165}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000025}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000021}, !- Handle + {00000000-0000-0000-0049-000000000026}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000228}, !- Inlet Port + {00000000-0000-0000-0015-000000000229}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000027}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000022}, !- Handle + {00000000-0000-0000-0049-000000000028}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000216}, !- Inlet Port + {00000000-0000-0000-0015-000000000217}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000029}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000023}, !- Handle + {00000000-0000-0000-0049-000000000030}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000234}, !- Inlet Port + {00000000-0000-0000-0015-000000000235}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000031}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000024}, !- Handle + {00000000-0000-0000-0049-000000000032}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000240}, !- Inlet Port + {00000000-0000-0000-0015-000000000241}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000033}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000025}, !- Handle + {00000000-0000-0000-0049-000000000034}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0015-000000000222}, !- Inlet Port + {00000000-0000-0000-0015-000000000223}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000035}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000026}, !- Handle + {00000000-0000-0000-0049-000000000036}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000114}, !- Inlet Port {00000000-0000-0000-0015-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000027}, !- Handle + {00000000-0000-0000-0049-000000000037}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000116}, !- Inlet Port {00000000-0000-0000-0015-000000000111}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000028}, !- Handle + {00000000-0000-0000-0049-000000000038}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000190}, !- Inlet Port + {00000000-0000-0000-0015-000000000191}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000039}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000192}, !- Inlet Port + {00000000-0000-0000-0015-000000000187}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000040}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000218}, !- Inlet Port + {00000000-0000-0000-0015-000000000219}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000041}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000220}, !- Inlet Port + {00000000-0000-0000-0015-000000000215}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000042}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000224}, !- Inlet Port + {00000000-0000-0000-0015-000000000225}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000043}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000226}, !- Inlet Port + {00000000-0000-0000-0015-000000000221}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000044}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000230}, !- Inlet Port + {00000000-0000-0000-0015-000000000231}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000045}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000232}, !- Inlet Port + {00000000-0000-0000-0015-000000000227}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000046}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000236}, !- Inlet Port + {00000000-0000-0000-0015-000000000237}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000047}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000238}, !- Inlet Port + {00000000-0000-0000-0015-000000000233}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000242}, !- Inlet Port + {00000000-0000-0000-0015-000000000243}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000244}, !- Inlet Port + {00000000-0000-0000-0015-000000000239}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000050}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000120}, !- Inlet Port {00000000-0000-0000-0015-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000029}, !- Handle + {00000000-0000-0000-0049-000000000051}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000122}, !- Inlet Port {00000000-0000-0000-0015-000000000117}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000030}, !- Handle + {00000000-0000-0000-0049-000000000052}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000126}, !- Inlet Port {00000000-0000-0000-0015-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000031}, !- Handle + {00000000-0000-0000-0049-000000000053}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000128}, !- Inlet Port {00000000-0000-0000-0015-000000000123}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000032}, !- Handle + {00000000-0000-0000-0049-000000000054}, !- Handle Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000132}, !- Inlet Port {00000000-0000-0000-0015-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000033}, !- Handle + {00000000-0000-0000-0049-000000000055}, !- Handle Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000134}, !- Inlet Port {00000000-0000-0000-0015-000000000129}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000034}, !- Handle + {00000000-0000-0000-0049-000000000056}, !- Handle Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000138}, !- Inlet Port {00000000-0000-0000-0015-000000000139}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000035}, !- Handle + {00000000-0000-0000-0049-000000000057}, !- Handle Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000140}, !- Inlet Port {00000000-0000-0000-0015-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000036}, !- Handle + {00000000-0000-0000-0049-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000166}, !- Inlet Port + {00000000-0000-0000-0015-000000000167}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000168}, !- Inlet Port + {00000000-0000-0000-0015-000000000163}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000172}, !- Inlet Port + {00000000-0000-0000-0015-000000000173}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000174}, !- Inlet Port + {00000000-0000-0000-0015-000000000169}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000178}, !- Inlet Port + {00000000-0000-0000-0015-000000000179}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000180}, !- Inlet Port + {00000000-0000-0000-0015-000000000175}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000184}, !- Inlet Port + {00000000-0000-0000-0015-000000000185}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000186}, !- Inlet Port + {00000000-0000-0000-0015-000000000181}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000066}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000040}, !- Inlet Port {00000000-0000-0000-0015-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000037}, !- Handle + {00000000-0000-0000-0049-000000000067}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000043}, !- Inlet Port {00000000-0000-0000-0015-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000038}, !- Handle + {00000000-0000-0000-0049-000000000068}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000037}, !- Inlet Port {00000000-0000-0000-0015-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000039}, !- Handle + {00000000-0000-0000-0049-000000000069}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000061}, !- Inlet Port {00000000-0000-0000-0015-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000040}, !- Handle + {00000000-0000-0000-0049-000000000070}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000042}, !- Inlet Port {00000000-0000-0000-0015-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000041}, !- Handle + {00000000-0000-0000-0049-000000000071}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000104}, !- Inlet Port {00000000-0000-0000-0015-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000042}, !- Handle + {00000000-0000-0000-0049-000000000072}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000097}, !- Inlet Port {00000000-0000-0000-0015-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000043}, !- Handle + {00000000-0000-0000-0049-000000000073}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000147}, !- Inlet Port + {00000000-0000-0000-0015-000000000148}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000074}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000156}, !- Inlet Port + {00000000-0000-0000-0015-000000000157}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000075}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000149}, !- Inlet Port + {00000000-0000-0000-0015-000000000150}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000076}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000199}, !- Inlet Port + {00000000-0000-0000-0015-000000000200}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000077}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000208}, !- Inlet Port + {00000000-0000-0000-0015-000000000209}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000078}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000201}, !- Inlet Port + {00000000-0000-0000-0015-000000000202}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000079}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000102}, !- Inlet Port {00000000-0000-0000-0015-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000044}, !- Handle + {00000000-0000-0000-0049-000000000080}, !- Handle + Coil Heating Electric 13 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000206}, !- Inlet Port + {00000000-0000-0000-0015-000000000207}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000081}, !- Handle + Coil Heating Electric 7 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000154}, !- Inlet Port + {00000000-0000-0000-0015-000000000155}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000082}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000065}, !- Inlet Port {00000000-0000-0000-0015-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000045}, !- Handle + {00000000-0000-0000-0049-000000000083}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000068}, !- Inlet Port {00000000-0000-0000-0015-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000046}, !- Handle + {00000000-0000-0000-0049-000000000084}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000062}, !- Inlet Port {00000000-0000-0000-0015-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000047}, !- Handle + {00000000-0000-0000-0049-000000000085}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000082}, !- Inlet Port {00000000-0000-0000-0015-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000048}, !- Handle + {00000000-0000-0000-0049-000000000086}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000063}, !- Inlet Port {00000000-0000-0000-0015-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000049}, !- Handle + {00000000-0000-0000-0049-000000000087}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000074}, !- Inlet Port {00000000-0000-0000-0015-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000050}, !- Handle + {00000000-0000-0000-0049-000000000088}, !- Handle Core_bottom WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000167}, !- Inlet Port - {00000000-0000-0000-0015-000000000168}; !- Outlet Port + {00000000-0000-0000-0015-000000000271}, !- Inlet Port + {00000000-0000-0000-0015-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000051}, !- Handle + {00000000-0000-0000-0049-000000000089}, !- Handle Core_bottom WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000169}, !- Inlet Port - {00000000-0000-0000-0015-000000000170}; !- Outlet Port + {00000000-0000-0000-0015-000000000273}, !- Inlet Port + {00000000-0000-0000-0015-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000052}, !- Handle + {00000000-0000-0000-0049-000000000090}, !- Handle Core_mid WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000171}, !- Inlet Port - {00000000-0000-0000-0015-000000000172}; !- Outlet Port + {00000000-0000-0000-0015-000000000275}, !- Inlet Port + {00000000-0000-0000-0015-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000053}, !- Handle + {00000000-0000-0000-0049-000000000091}, !- Handle Core_mid WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000173}, !- Inlet Port - {00000000-0000-0000-0015-000000000174}; !- Outlet Port + {00000000-0000-0000-0015-000000000277}, !- Inlet Port + {00000000-0000-0000-0015-000000000278}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000054}, !- Handle + {00000000-0000-0000-0049-000000000092}, !- Handle Core_top WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000175}, !- Inlet Port - {00000000-0000-0000-0015-000000000176}; !- Outlet Port + {00000000-0000-0000-0015-000000000279}, !- Inlet Port + {00000000-0000-0000-0015-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000055}, !- Handle + {00000000-0000-0000-0049-000000000093}, !- Handle Core_top WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000177}, !- Inlet Port - {00000000-0000-0000-0015-000000000178}; !- Outlet Port + {00000000-0000-0000-0015-000000000281}, !- Inlet Port + {00000000-0000-0000-0015-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000056}, !- Handle + {00000000-0000-0000-0049-000000000094}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000149}, !- Inlet Port - {00000000-0000-0000-0015-000000000150}; !- Outlet Port + {00000000-0000-0000-0015-000000000253}, !- Inlet Port + {00000000-0000-0000-0015-000000000254}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000057}, !- Handle + {00000000-0000-0000-0049-000000000095}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000144}, !- Inlet Port - {00000000-0000-0000-0015-000000000145}; !- Outlet Port + {00000000-0000-0000-0015-000000000248}, !- Inlet Port + {00000000-0000-0000-0015-000000000249}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000058}, !- Handle + {00000000-0000-0000-0049-000000000096}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000166}, !- Inlet Port - {00000000-0000-0000-0015-000000000147}; !- Outlet Port + {00000000-0000-0000-0015-000000000270}, !- Inlet Port + {00000000-0000-0000-0015-000000000251}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000059}, !- Handle + {00000000-0000-0000-0049-000000000097}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000141}, !- Inlet Port - {00000000-0000-0000-0015-000000000148}; !- Outlet Port + {00000000-0000-0000-0015-000000000245}, !- Inlet Port + {00000000-0000-0000-0015-000000000252}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000060}, !- Handle + {00000000-0000-0000-0049-000000000098}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000163}, !- Inlet Port - {00000000-0000-0000-0015-000000000143}; !- Outlet Port + {00000000-0000-0000-0015-000000000267}, !- Inlet Port + {00000000-0000-0000-0015-000000000247}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000061}, !- Handle + {00000000-0000-0000-0049-000000000099}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000179}, !- Inlet Port - {00000000-0000-0000-0015-000000000180}; !- Outlet Port + {00000000-0000-0000-0015-000000000283}, !- Inlet Port + {00000000-0000-0000-0015-000000000284}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000062}, !- Handle + {00000000-0000-0000-0049-000000000100}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000181}, !- Inlet Port - {00000000-0000-0000-0015-000000000182}; !- Outlet Port + {00000000-0000-0000-0015-000000000285}, !- Inlet Port + {00000000-0000-0000-0015-000000000286}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000063}, !- Handle + {00000000-0000-0000-0049-000000000101}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000183}, !- Inlet Port - {00000000-0000-0000-0015-000000000184}; !- Outlet Port + {00000000-0000-0000-0015-000000000287}, !- Inlet Port + {00000000-0000-0000-0015-000000000288}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000064}, !- Handle + {00000000-0000-0000-0049-000000000102}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000185}, !- Inlet Port - {00000000-0000-0000-0015-000000000186}; !- Outlet Port + {00000000-0000-0000-0015-000000000289}, !- Inlet Port + {00000000-0000-0000-0015-000000000290}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000065}, !- Handle + {00000000-0000-0000-0049-000000000103}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000187}, !- Inlet Port - {00000000-0000-0000-0015-000000000188}; !- Outlet Port + {00000000-0000-0000-0015-000000000291}, !- Inlet Port + {00000000-0000-0000-0015-000000000292}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000066}, !- Handle + {00000000-0000-0000-0049-000000000104}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000189}, !- Inlet Port - {00000000-0000-0000-0015-000000000190}; !- Outlet Port + {00000000-0000-0000-0015-000000000293}, !- Inlet Port + {00000000-0000-0000-0015-000000000294}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000067}, !- Handle + {00000000-0000-0000-0049-000000000105}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000191}, !- Inlet Port - {00000000-0000-0000-0015-000000000192}; !- Outlet Port + {00000000-0000-0000-0015-000000000295}, !- Inlet Port + {00000000-0000-0000-0015-000000000296}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000068}, !- Handle + {00000000-0000-0000-0049-000000000106}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000193}, !- Inlet Port - {00000000-0000-0000-0015-000000000194}; !- Outlet Port + {00000000-0000-0000-0015-000000000297}, !- Inlet Port + {00000000-0000-0000-0015-000000000298}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000069}, !- Handle + {00000000-0000-0000-0049-000000000107}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000195}, !- Inlet Port - {00000000-0000-0000-0015-000000000196}; !- Outlet Port + {00000000-0000-0000-0015-000000000299}, !- Inlet Port + {00000000-0000-0000-0015-000000000300}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000070}, !- Handle + {00000000-0000-0000-0049-000000000108}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000197}, !- Inlet Port - {00000000-0000-0000-0015-000000000198}; !- Outlet Port + {00000000-0000-0000-0015-000000000301}, !- Inlet Port + {00000000-0000-0000-0015-000000000302}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000071}, !- Handle + {00000000-0000-0000-0049-000000000109}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000199}, !- Inlet Port - {00000000-0000-0000-0015-000000000200}; !- Outlet Port + {00000000-0000-0000-0015-000000000303}, !- Inlet Port + {00000000-0000-0000-0015-000000000304}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000072}, !- Handle + {00000000-0000-0000-0049-000000000110}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000201}, !- Inlet Port - {00000000-0000-0000-0015-000000000202}; !- Outlet Port + {00000000-0000-0000-0015-000000000305}, !- Inlet Port + {00000000-0000-0000-0015-000000000306}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000073}, !- Handle + {00000000-0000-0000-0049-000000000111}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000203}, !- Inlet Port - {00000000-0000-0000-0015-000000000204}; !- Outlet Port + {00000000-0000-0000-0015-000000000307}, !- Inlet Port + {00000000-0000-0000-0015-000000000308}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000074}, !- Handle + {00000000-0000-0000-0049-000000000112}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000205}, !- Inlet Port - {00000000-0000-0000-0015-000000000206}; !- Outlet Port + {00000000-0000-0000-0015-000000000309}, !- Inlet Port + {00000000-0000-0000-0015-000000000310}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000075}, !- Handle + {00000000-0000-0000-0049-000000000113}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000207}, !- Inlet Port - {00000000-0000-0000-0015-000000000208}; !- Outlet Port + {00000000-0000-0000-0015-000000000311}, !- Inlet Port + {00000000-0000-0000-0015-000000000312}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000076}, !- Handle + {00000000-0000-0000-0049-000000000114}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000209}, !- Inlet Port - {00000000-0000-0000-0015-000000000210}; !- Outlet Port + {00000000-0000-0000-0015-000000000313}, !- Inlet Port + {00000000-0000-0000-0015-000000000314}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000077}, !- Handle + {00000000-0000-0000-0049-000000000115}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000211}, !- Inlet Port - {00000000-0000-0000-0015-000000000212}; !- Outlet Port + {00000000-0000-0000-0015-000000000315}, !- Inlet Port + {00000000-0000-0000-0015-000000000316}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000078}, !- Handle + {00000000-0000-0000-0049-000000000116}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000213}, !- Inlet Port - {00000000-0000-0000-0015-000000000214}; !- Outlet Port + {00000000-0000-0000-0015-000000000317}, !- Inlet Port + {00000000-0000-0000-0015-000000000318}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000079}, !- Handle + {00000000-0000-0000-0049-000000000117}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000215}, !- Inlet Port - {00000000-0000-0000-0015-000000000216}; !- Outlet Port + {00000000-0000-0000-0015-000000000319}, !- Inlet Port + {00000000-0000-0000-0015-000000000320}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000080}, !- Handle + {00000000-0000-0000-0049-000000000118}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000217}, !- Inlet Port - {00000000-0000-0000-0015-000000000218}; !- Outlet Port + {00000000-0000-0000-0015-000000000321}, !- Inlet Port + {00000000-0000-0000-0015-000000000322}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000081}, !- Handle + {00000000-0000-0000-0049-000000000119}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000219}, !- Inlet Port - {00000000-0000-0000-0015-000000000220}; !- Outlet Port + {00000000-0000-0000-0015-000000000323}, !- Inlet Port + {00000000-0000-0000-0015-000000000324}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000082}, !- Handle + {00000000-0000-0000-0049-000000000120}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000221}, !- Inlet Port - {00000000-0000-0000-0015-000000000222}; !- Outlet Port + {00000000-0000-0000-0015-000000000325}, !- Inlet Port + {00000000-0000-0000-0015-000000000326}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000083}, !- Handle + {00000000-0000-0000-0049-000000000121}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000223}, !- Inlet Port - {00000000-0000-0000-0015-000000000224}; !- Outlet Port + {00000000-0000-0000-0015-000000000327}, !- Inlet Port + {00000000-0000-0000-0015-000000000328}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000084}, !- Handle + {00000000-0000-0000-0049-000000000122}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000225}, !- Inlet Port - {00000000-0000-0000-0015-000000000226}; !- Outlet Port + {00000000-0000-0000-0015-000000000329}, !- Inlet Port + {00000000-0000-0000-0015-000000000330}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000085}, !- Handle + {00000000-0000-0000-0049-000000000123}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000055}, !- Inlet Port {00000000-0000-0000-0015-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000086}, !- Handle + {00000000-0000-0000-0049-000000000124}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000057}, !- Inlet Port {00000000-0000-0000-0015-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000087}, !- Handle + {00000000-0000-0000-0049-000000000125}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000059}, !- Inlet Port {00000000-0000-0000-0015-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000088}, !- Handle + {00000000-0000-0000-0049-000000000126}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000076}, !- Inlet Port {00000000-0000-0000-0015-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000089}, !- Handle + {00000000-0000-0000-0049-000000000127}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000078}, !- Inlet Port {00000000-0000-0000-0015-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000090}, !- Handle + {00000000-0000-0000-0049-000000000128}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000080}, !- Inlet Port {00000000-0000-0000-0015-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000091}, !- Handle + {00000000-0000-0000-0049-000000000129}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000154}, !- Inlet Port - {00000000-0000-0000-0015-000000000155}; !- Outlet Port + {00000000-0000-0000-0015-000000000258}, !- Inlet Port + {00000000-0000-0000-0015-000000000259}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000092}, !- Handle + {00000000-0000-0000-0049-000000000130}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000156}, !- Inlet Port - {00000000-0000-0000-0015-000000000157}; !- Outlet Port + {00000000-0000-0000-0015-000000000260}, !- Inlet Port + {00000000-0000-0000-0015-000000000261}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000093}, !- Handle + {00000000-0000-0000-0049-000000000131}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000146}, !- Inlet Port - {00000000-0000-0000-0015-000000000158}; !- Outlet Port + {00000000-0000-0000-0015-000000000250}, !- Inlet Port + {00000000-0000-0000-0015-000000000262}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000094}, !- Handle + {00000000-0000-0000-0049-000000000132}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000159}, !- Inlet Port - {00000000-0000-0000-0015-000000000160}; !- Outlet Port + {00000000-0000-0000-0015-000000000263}, !- Inlet Port + {00000000-0000-0000-0015-000000000264}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000095}, !- Handle + {00000000-0000-0000-0049-000000000133}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000161}, !- Inlet Port - {00000000-0000-0000-0015-000000000162}; !- Outlet Port + {00000000-0000-0000-0015-000000000265}, !- Inlet Port + {00000000-0000-0000-0015-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000096}, !- Handle + {00000000-0000-0000-0049-000000000134}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000164}, !- Inlet Port - {00000000-0000-0000-0015-000000000165}; !- Outlet Port + {00000000-0000-0000-0015-000000000268}, !- Inlet Port + {00000000-0000-0000-0015-000000000269}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000097}, !- Handle - Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000135}, !- Handle + Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000067}, !- Inlet Port {00000000-0000-0000-0015-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000098}, !- Handle - Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000136}, !- Handle + Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000084}, !- Inlet Port {00000000-0000-0000-0015-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000099}, !- Handle - Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0049-000000000137}, !- Handle + Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000038}, !- Inlet Port {00000000-0000-0000-0015-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000100}, !- Handle - Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0049-000000000138}, !- Handle + Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000049}, !- Inlet Port {00000000-0000-0000-0015-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000101}, !- Handle + {00000000-0000-0000-0049-000000000139}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000046}, !- Inlet Port {00000000-0000-0000-0015-000000000047}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000102}, !- Handle + {00000000-0000-0000-0049-000000000140}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000071}, !- Inlet Port {00000000-0000-0000-0015-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000103}, !- Handle + {00000000-0000-0000-0049-000000000141}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000086}, !- Inlet Port {00000000-0000-0000-0015-000000000087}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000104}, !- Handle + {00000000-0000-0000-0049-000000000142}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000088}, !- Inlet Port {00000000-0000-0000-0015-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000105}, !- Handle + {00000000-0000-0000-0049-000000000143}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000051}, !- Inlet Port {00000000-0000-0000-0015-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000106}, !- Handle + {00000000-0000-0000-0049-000000000144}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000053}, !- Inlet Port {00000000-0000-0000-0015-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000107}, !- Handle + {00000000-0000-0000-0049-000000000145}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000161}, !- Inlet Port + {00000000-0000-0000-0015-000000000162}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000146}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000213}, !- Inlet Port + {00000000-0000-0000-0015-000000000214}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000147}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000109}, !- Inlet Port {00000000-0000-0000-0015-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000108}, !- Handle + {00000000-0000-0000-0049-000000000148}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0015-000000000143}, !- Inlet Port + {00000000-0000-0000-0015-000000000145}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000149}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0015-000000000146}, !- Inlet Port + {00000000-0000-0000-0015-000000000144}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000150}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0015-000000000158}, !- Inlet Port + {00000000-0000-0000-0015-000000000159}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000151}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0015-000000000151}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000152}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0015-000000000152}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000153}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0015-000000000141}, !- Inlet Port + {00000000-0000-0000-0015-000000000160}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000154}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0015-000000000153}, !- Inlet Port + {00000000-0000-0000-0015-000000000142}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000155}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0015-000000000195}, !- Inlet Port + {00000000-0000-0000-0015-000000000197}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000156}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0015-000000000198}, !- Inlet Port + {00000000-0000-0000-0015-000000000196}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000157}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0015-000000000210}, !- Inlet Port + {00000000-0000-0000-0015-000000000211}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000158}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0015-000000000203}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000159}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0015-000000000204}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000160}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0015-000000000193}, !- Inlet Port + {00000000-0000-0000-0015-000000000212}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000161}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0015-000000000205}, !- Inlet Port + {00000000-0000-0000-0015-000000000194}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0049-000000000162}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000092}, !- Inlet Port {00000000-0000-0000-0015-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000109}, !- Handle + {00000000-0000-0000-0049-000000000163}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000095}, !- Inlet Port {00000000-0000-0000-0015-000000000093}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000110}, !- Handle + {00000000-0000-0000-0049-000000000164}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0015-000000000106}, !- Inlet Port {00000000-0000-0000-0015-000000000107}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000111}, !- Handle + {00000000-0000-0000-0049-000000000165}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0015-000000000099}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000112}, !- Handle + {00000000-0000-0000-0049-000000000166}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name {00000000-0000-0000-0015-000000000100}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000113}, !- Handle + {00000000-0000-0000-0049-000000000167}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000090}, !- Inlet Port {00000000-0000-0000-0015-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0049-000000000114}, !- Handle + {00000000-0000-0000-0049-000000000168}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000101}, !- Inlet Port {00000000-0000-0000-0015-000000000091}; !- Outlet Port @@ -3997,7 +5932,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0063-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0063-000000000024}, !- Work Efficiency Schedule Name {00000000-0000-0000-0063-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0063-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -4038,26 +5973,26 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0053-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0015-000000000155}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000156}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000259}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000260}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0053-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0015-000000000158}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000159}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000262}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000263}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0053-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0015-000000000162}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000163}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000266}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000267}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0053-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0015-000000000165}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000166}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000269}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000270}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0054-000000000001}, !- Handle @@ -4068,7 +6003,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000039}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000069}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4082,7 +6017,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4104,7 +6039,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000047}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000085}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4118,7 +6053,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4140,21 +6075,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0049-000000000060}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0049-000000000098}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0015-000000000141}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0015-000000000143}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0015-000000000245}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0015-000000000247}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0015-000000000144}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0015-000000000147}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000248}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0015-000000000251}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4169,7 +6104,8 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0055-000000000001}, !- Handle - {00000000-0000-0000-0089-000000000013}; !- HVAC Component + {00000000-0000-0000-0089-000000000013}, !- HVAC Component + {00000000-0000-0000-0015-000000000163}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000002}, !- Handle @@ -4177,11 +6113,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000003}, !- Handle - {00000000-0000-0000-0089-000000000013}; !- HVAC Component + {00000000-0000-0000-0089-000000000013}, !- HVAC Component + {00000000-0000-0000-0015-000000000164}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000004}, !- Handle - {00000000-0000-0000-0089-000000000018}; !- HVAC Component + {00000000-0000-0000-0089-000000000018}, !- HVAC Component + {00000000-0000-0000-0015-000000000221}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000005}, !- Handle @@ -4189,11 +6127,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000006}, !- Handle - {00000000-0000-0000-0089-000000000018}; !- HVAC Component + {00000000-0000-0000-0089-000000000018}, !- HVAC Component + {00000000-0000-0000-0015-000000000222}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000007}, !- Handle - {00000000-0000-0000-0089-000000000014}; !- HVAC Component + {00000000-0000-0000-0089-000000000014}, !- HVAC Component + {00000000-0000-0000-0015-000000000227}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000008}, !- Handle @@ -4201,11 +6141,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000009}, !- Handle - {00000000-0000-0000-0089-000000000014}; !- HVAC Component + {00000000-0000-0000-0089-000000000014}, !- HVAC Component + {00000000-0000-0000-0015-000000000228}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000010}, !- Handle - {00000000-0000-0000-0089-000000000015}; !- HVAC Component + {00000000-0000-0000-0089-000000000015}, !- HVAC Component + {00000000-0000-0000-0015-000000000215}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000011}, !- Handle @@ -4213,11 +6155,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000012}, !- Handle - {00000000-0000-0000-0089-000000000015}; !- HVAC Component + {00000000-0000-0000-0089-000000000015}, !- HVAC Component + {00000000-0000-0000-0015-000000000216}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000013}, !- Handle - {00000000-0000-0000-0089-000000000009}; !- HVAC Component + {00000000-0000-0000-0089-000000000009}, !- HVAC Component + {00000000-0000-0000-0015-000000000187}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000014}, !- Handle @@ -4225,7 +6169,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000015}, !- Handle - {00000000-0000-0000-0089-000000000009}; !- HVAC Component + {00000000-0000-0000-0089-000000000009}, !- HVAC Component + {00000000-0000-0000-0015-000000000188}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000016}, !- Handle @@ -4243,7 +6188,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000019}, !- Handle - {00000000-0000-0000-0089-000000000016}; !- HVAC Component + {00000000-0000-0000-0089-000000000016}, !- HVAC Component + {00000000-0000-0000-0015-000000000233}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000020}, !- Handle @@ -4251,11 +6197,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000021}, !- Handle - {00000000-0000-0000-0089-000000000016}; !- HVAC Component + {00000000-0000-0000-0089-000000000016}, !- HVAC Component + {00000000-0000-0000-0015-000000000234}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000022}, !- Handle - {00000000-0000-0000-0089-000000000010}; !- HVAC Component + {00000000-0000-0000-0089-000000000010}, !- HVAC Component + {00000000-0000-0000-0015-000000000181}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000023}, !- Handle @@ -4263,7 +6211,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000024}, !- Handle - {00000000-0000-0000-0089-000000000010}; !- HVAC Component + {00000000-0000-0000-0089-000000000010}, !- HVAC Component + {00000000-0000-0000-0015-000000000182}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000025}, !- Handle @@ -4279,7 +6228,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000028}, !- Handle - {00000000-0000-0000-0089-000000000017}; !- HVAC Component + {00000000-0000-0000-0089-000000000017}, !- HVAC Component + {00000000-0000-0000-0015-000000000239}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000029}, !- Handle @@ -4287,7 +6237,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000030}, !- Handle - {00000000-0000-0000-0089-000000000017}; !- HVAC Component + {00000000-0000-0000-0089-000000000017}, !- HVAC Component + {00000000-0000-0000-0015-000000000240}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000031}, !- Handle @@ -4317,7 +6268,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000037}, !- Handle - {00000000-0000-0000-0089-000000000011}; !- HVAC Component + {00000000-0000-0000-0089-000000000011}, !- HVAC Component + {00000000-0000-0000-0015-000000000169}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000038}, !- Handle @@ -4325,7 +6277,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000039}, !- Handle - {00000000-0000-0000-0089-000000000011}; !- HVAC Component + {00000000-0000-0000-0089-000000000011}, !- HVAC Component + {00000000-0000-0000-0015-000000000170}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000040}, !- Handle @@ -4355,7 +6308,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000046}, !- Handle - {00000000-0000-0000-0089-000000000012}; !- HVAC Component + {00000000-0000-0000-0089-000000000012}, !- HVAC Component + {00000000-0000-0000-0015-000000000175}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000047}, !- Handle @@ -4363,7 +6317,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0055-000000000048}, !- Handle - {00000000-0000-0000-0089-000000000012}; !- HVAC Component + {00000000-0000-0000-0089-000000000012}, !- HVAC Component + {00000000-0000-0000-0015-000000000176}; !- Port 1 OS:PortList, {00000000-0000-0000-0055-000000000049}, !- Handle @@ -4396,8 +6351,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0056-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0015-000000000148}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000149}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000252}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000253}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 445102.517395202, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -4423,7 +6378,7 @@ OS:Pump:VariableSpeed, , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.865, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -4456,7 +6411,7 @@ OS:Pump:VariableSpeed, , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.917, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5253,6 +7208,33 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0061-000000000037}, !- Handle + Schedule Day 10, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000038}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000039}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5261,7 +7243,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000038}, !- Handle + {00000000-0000-0000-0061-000000000041}, !- Handle Schedule Day 3, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5339,9 +7321,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000039}, !- Handle + {00000000-0000-0000-0061-000000000042}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -5417,25 +7399,25 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000040}, !- Handle + {00000000-0000-0000-0061-000000000043}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000041}, !- Handle + {00000000-0000-0000-0061-000000000044}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000042}, !- Handle + {00000000-0000-0000-0061-000000000045}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5444,7 +7426,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000043}, !- Handle + {00000000-0000-0000-0061-000000000046}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5453,7 +7435,16 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000044}, !- Handle + {00000000-0000-0000-0061-000000000047}, !- Handle + Schedule Day 9, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000048}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5462,16 +7453,34 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000045}, !- Handle + {00000000-0000-0000-0061-000000000049}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000050}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000051}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000046}, !- Handle + {00000000-0000-0000-0061-000000000052}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5480,7 +7489,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000047}, !- Handle + {00000000-0000-0000-0061-000000000053}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5489,7 +7498,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000048}, !- Handle + {00000000-0000-0000-0061-000000000054}, !- Handle satCHW Temp 1, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5567,7 +7576,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000049}, !- Handle + {00000000-0000-0000-0061-000000000055}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5645,9 +7654,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000050}, !- Handle + {00000000-0000-0000-0061-000000000056}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -5723,7 +7732,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000051}, !- Handle + {00000000-0000-0000-0061-000000000057}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5801,7 +7810,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000052}, !- Handle + {00000000-0000-0000-0061-000000000058}, !- Handle sunCHW Temp 1, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5879,7 +7888,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000053}, !- Handle + {00000000-0000-0000-0061-000000000059}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5957,9 +7966,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000054}, !- Handle + {00000000-0000-0000-0061-000000000060}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6035,7 +8044,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000055}, !- Handle + {00000000-0000-0000-0061-000000000061}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6113,7 +8122,73 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000056}, !- Handle + {00000000-0000-0000-0061-000000000062}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000063}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000064}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000065}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000066}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000067}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0061-000000000068}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6128,7 +8203,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000057}, !- Handle + {00000000-0000-0000-0061-000000000069}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6137,7 +8212,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000058}, !- Handle + {00000000-0000-0000-0061-000000000070}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6146,7 +8221,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000059}, !- Handle + {00000000-0000-0000-0061-000000000071}, !- Handle wkdCHW Temp 1, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6224,7 +8299,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000060}, !- Handle + {00000000-0000-0000-0061-000000000072}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6302,9 +8377,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000061}, !- Handle + {00000000-0000-0000-0061-000000000073}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6380,7 +8455,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0061-000000000062}, !- Handle + {00000000-0000-0000-0061-000000000074}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6688,9 +8763,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0062-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0063-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000042}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000045}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -6707,9 +8782,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0062-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0063-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0063-000000000027}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000046}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -6725,6 +8800,82 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0062-000000000015}, !- Handle + Schedule Rule 22, !- Name + {00000000-0000-0000-0063-000000000025}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0061-000000000047}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000016}, !- Handle + Schedule Rule 23, !- Name + {00000000-0000-0000-0063-000000000025}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0061-000000000037}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0063-000000000026}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0061-000000000038}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0063-000000000026}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0061-000000000039}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0062-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -6743,7 +8894,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000016}, !- Handle + {00000000-0000-0000-0062-000000000020}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0063-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -6762,7 +8913,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000017}, !- Handle + {00000000-0000-0000-0062-000000000021}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order @@ -6781,7 +8932,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000018}, !- Handle + {00000000-0000-0000-0062-000000000022}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -6800,7 +8951,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000019}, !- Handle + {00000000-0000-0000-0062-000000000023}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0063-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -6819,7 +8970,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000020}, !- Handle + {00000000-0000-0000-0062-000000000024}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -6838,7 +8989,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000021}, !- Handle + {00000000-0000-0000-0062-000000000025}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0063-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -6857,11 +9008,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000022}, !- Handle + {00000000-0000-0000-0062-000000000026}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000048}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000054}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6876,11 +9027,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000023}, !- Handle + {00000000-0000-0000-0062-000000000027}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0061-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000056}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6895,11 +9046,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000024}, !- Handle + {00000000-0000-0000-0062-000000000028}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000052}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000058}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6914,11 +9065,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000025}, !- Handle + {00000000-0000-0000-0062-000000000029}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0061-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000060}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6933,11 +9084,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000026}, !- Handle + {00000000-0000-0000-0062-000000000030}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0063-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000059}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000071}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -6952,11 +9103,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0062-000000000027}, !- Handle + {00000000-0000-0000-0062-000000000031}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0063-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0061-000000000061}, !- Day Schedule Name + {00000000-0000-0000-0061-000000000073}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -6986,13 +9137,13 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000003}, !- Handle CHW Temp, !- Name {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000038}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000039}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000005}, !- Handle @@ -7071,46 +9222,74 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000040}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000043}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000020}, !- Handle - Supply Air Temp, !- Name - {00000000-0000-0000-0064-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000045}; !- Default Day Schedule Name + Supply Air Temp 1, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0063-000000000021}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000050}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000022}, !- Handle + Supply Air Temp, !- Name + {00000000-0000-0000-0064-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000051}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000023}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0064-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000022}, !- Handle + {00000000-0000-0000-0063-000000000024}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000053}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0063-000000000023}, !- Handle + {00000000-0000-0000-0063-000000000025}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000062}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000063}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000064}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000026}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0061-000000000065}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000066}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000067}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0063-000000000027}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0061-000000000056}, !- Default Day Schedule Name - {00000000-0000-0000-0061-000000000057}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0061-000000000058}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0061-000000000068}, !- Default Day Schedule Name + {00000000-0000-0000-0061-000000000069}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0061-000000000070}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0064-000000000001}, !- Handle @@ -7188,28 +9367,42 @@ OS:SetpointManager:Scheduled, Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0063-000000000019}, !- Schedule Name - {00000000-0000-0000-0049-000000000060}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000098}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0065-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0063-000000000003}, !- Schedule Name - {00000000-0000-0000-0049-000000000039}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000069}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0065-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0063-000000000004}, !- Schedule Name - {00000000-0000-0000-0049-000000000047}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000085}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0065-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable + {00000000-0000-0000-0063-000000000022}, !- Schedule Name + {00000000-0000-0000-0049-000000000168}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0065-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable {00000000-0000-0000-0063-000000000020}, !- Schedule Name - {00000000-0000-0000-0049-000000000114}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0049-000000000154}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0065-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0063-000000000021}, !- Schedule Name + {00000000-0000-0000-0049-000000000161}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0066-000000000001}, !- Handle @@ -7352,6 +9545,47 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0076-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0076-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -7391,19 +9625,60 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0076-000000000003}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, {00000000-0000-0000-0077-000000000001}, !- Handle {00000000-0000-0000-0089-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7429,16 +9704,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000002}, !- Handle {00000000-0000-0000-0089-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7464,16 +9739,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000003}, !- Handle {00000000-0000-0000-0089-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7499,16 +9774,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000004}, !- Handle {00000000-0000-0000-0089-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7534,16 +9809,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000005}, !- Handle {00000000-0000-0000-0089-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7604,16 +9879,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000007}, !- Handle {00000000-0000-0000-0089-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7639,16 +9914,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000008}, !- Handle {00000000-0000-0000-0089-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7709,16 +9984,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000010}, !- Handle {00000000-0000-0000-0089-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7814,16 +10089,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000013}, !- Handle {00000000-0000-0000-0089-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7919,16 +10194,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0077-000000000016}, !- Handle {00000000-0000-0000-0089-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -12149,7 +14424,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0063-000000000021}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0063-000000000023}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 3.11340391204849, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -12159,8 +14434,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0015-000000000151}, !- Use Side Inlet Node Name - {00000000-0000-0000-0015-000000000152}, !- Use Side Outlet Node Name + {00000000-0000-0000-0015-000000000255}, !- Use Side Inlet Node Name + {00000000-0000-0000-0015-000000000256}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -12183,8 +14458,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000001}, !- Handle Core_bottom WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0015-000000000168}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000169}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000272}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000273}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12197,8 +14472,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000002}, !- Handle Core_mid WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0015-000000000172}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000173}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000276}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000277}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12211,8 +14486,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000003}, !- Handle Core_top WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0015-000000000176}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000177}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000280}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000281}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12225,8 +14500,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000180}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000181}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000284}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000285}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12239,8 +14514,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000184}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000185}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000288}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000289}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12253,8 +14528,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000188}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000189}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000292}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000293}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12267,8 +14542,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000192}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000193}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000296}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000297}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12281,8 +14556,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000196}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000197}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000300}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000301}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12295,8 +14570,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000200}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000201}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000304}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000305}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12309,8 +14584,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000204}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000205}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000308}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000309}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12323,8 +14598,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000208}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000209}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000312}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000313}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12337,8 +14612,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000212}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000213}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000316}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000317}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12351,8 +14626,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000216}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000217}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000320}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000321}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12365,8 +14640,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000220}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000221}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000324}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000325}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12379,8 +14654,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0095-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000224}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000225}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000328}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000329}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12674,32 +14949,102 @@ OS:ZoneHVAC:Baseboard:Convective:Electric, OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0101-000000000002}, !- Handle - Zone HVAC Baseboard Convective Electric 2, !- Name + Zone HVAC Baseboard Convective Electric 10, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0101-000000000003}, !- Handle - Zone HVAC Baseboard Convective Electric 3, !- Name + Zone HVAC Baseboard Convective Electric 11, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0101-000000000004}, !- Handle - Zone HVAC Baseboard Convective Electric 4, !- Name + Zone HVAC Baseboard Convective Electric 12, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0101-000000000005}, !- Handle + Zone HVAC Baseboard Convective Electric 13, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0101-000000000006}, !- Handle + Zone HVAC Baseboard Convective Electric 14, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0101-000000000007}, !- Handle + Zone HVAC Baseboard Convective Electric 15, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0101-000000000008}, !- Handle + Zone HVAC Baseboard Convective Electric 2, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0101-000000000009}, !- Handle + Zone HVAC Baseboard Convective Electric 3, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0101-000000000010}, !- Handle + Zone HVAC Baseboard Convective Electric 4, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0101-000000000011}, !- Handle Zone HVAC Baseboard Convective Electric 5, !- Name {00000000-0000-0000-0060-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0101-000000000012}, !- Handle + Zone HVAC Baseboard Convective Electric 6, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0101-000000000013}, !- Handle + Zone HVAC Baseboard Convective Electric 7, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0101-000000000014}, !- Handle + Zone HVAC Baseboard Convective Electric 8, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0101-000000000015}, !- Handle + Zone HVAC Baseboard Convective Electric 9, !- Name + {00000000-0000-0000-0060-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name @@ -12723,12 +15068,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000003}, !- Zone Equipment 1 + {00000000-0000-0000-0101-000000000009}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12739,12 +15084,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0101-000000000008}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12755,12 +15100,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000004}, !- Zone Equipment 1 + {00000000-0000-0000-0101-000000000010}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12771,12 +15116,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0101-000000000005}, !- Zone Equipment 1 + {00000000-0000-0000-0101-000000000011}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12802,59 +15147,159 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0101-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0101-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0101-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0101-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0101-000000000012}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0101-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0101-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0101-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0101-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0102-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0089-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0101-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm index aa445facea..3cb67ed736 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2011-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0065-000000000023}, !- Object Name + {00000000-0000-0000-0065-000000000027}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.123094119094475, !- Feature Value 1 @@ -16,22 +16,98 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0012-000000000001}; !- Object Name + {00000000-0000-0000-0065-000000000025}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.123094119094475, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle + {00000000-0000-0000-0065-000000000026}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.123094119094475, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0012-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name , !- Controller List Name - {00000000-0000-0000-0065-000000000023}, !- Availability Schedule + {00000000-0000-0000-0065-000000000025}, !- Availability Schedule {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name , !- Connector List Name + {00000000-0000-0000-0017-000000000209}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000212}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000211}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000210}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0065-000000000026}, !- Availability Schedule + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000305}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000308}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000307}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000306}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name + , !- Controller List Name + {00000000-0000-0000-0065-000000000027}, !- Availability Schedule + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name {00000000-0000-0000-0017-000000000115}, !- Supply Side Inlet Node Name {00000000-0000-0000-0017-000000000118}, !- Demand Side Outlet Node Name {00000000-0000-0000-0017-000000000117}, !- Demand Side Inlet Node A @@ -55,6 +131,28 @@ OS:AirLoopHVAC:OutdoorAirSystem, {00000000-0000-0000-0017-000000000128}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000138}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000002}, !- Handle + Air Loop HVAC Outdoor Air System 2, !- Name + {00000000-0000-0000-0022-000000000002}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000230}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000223}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000224}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000234}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0022-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000326}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000319}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000320}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000330}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -65,6 +163,26 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000191}, !- Inlet Node Name 4 {00000000-0000-0000-0017-000000000205}; !- Inlet Node Name 5 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000002}, !- Handle + Air Loop HVAC Zone Mixer 2, !- Name + {00000000-0000-0000-0017-000000000214}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000245}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000259}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000273}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000287}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000301}; !- Inlet Node Name 5 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0017-000000000310}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000341}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000355}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000369}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000383}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000397}; !- Inlet Node Name 5 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -75,6 +193,26 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000192}, !- Outlet Node Name 4 {00000000-0000-0000-0017-000000000206}; !- Outlet Node Name 5 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000002}, !- Handle + Air Loop HVAC Zone Splitter 2, !- Name + {00000000-0000-0000-0017-000000000213}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000246}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000260}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000274}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000288}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000302}; !- Outlet Node Name 5 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0017-000000000309}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000342}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000356}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000370}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000384}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000398}; !- Outlet Node Name 5 + OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -85,7 +223,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000011}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000152}, !- Air Outlet Node Name @@ -98,6 +236,132 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000303}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000304}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000343}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000344}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000357}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000358}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000371}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000372}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000385}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000009}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000386}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000399}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000010}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000400}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000165}, !- Air Inlet Node Name @@ -106,7 +370,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000012}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000166}, !- Air Outlet Node Name @@ -118,7 +382,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000179}, !- Air Inlet Node Name @@ -127,7 +391,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000013}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000180}, !- Air Outlet Node Name @@ -139,7 +403,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000193}, !- Air Inlet Node Name @@ -148,7 +412,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000005}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000014}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000194}, !- Air Outlet Node Name @@ -160,7 +424,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000207}, !- Air Inlet Node Name @@ -169,7 +433,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000015}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000208}, !- Air Outlet Node Name @@ -180,6 +444,90 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000247}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000017}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000248}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000261}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000018}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000262}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000275}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000276}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000289}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000290}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -194,43 +542,81 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0050-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0050-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0050-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0050-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0050-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0050-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0050-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0050-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0050-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0050-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000004}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000007}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000001}, !- Handle - Primary Boiler 363kBtu/hr 0.83 Thermal Eff, !- Name + Primary Boiler 1880kBtu/hr 0.83 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 106307.519374649, !- Nominal Capacity {W} + 550992.050051934, !- Nominal Capacity {W} 0.83, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} - , !- Minimum Part Load Ratio + 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio {00000000-0000-0000-0017-000000000048}, !- Boiler Water Inlet Node Name {00000000-0000-0000-0017-000000000049}, !- Boiler Water Outlet Node Name 99, !- Water Outlet Upper Temperature Limit {C} - ConstantFlow, !- Boiler Flow Mode + LeavingSetpointModulated, !- Boiler Flow Mode 0, !- On Cycle Parasitic Electric Load {W} 0, !- Off Cycle Parasitic Fuel Load {W} 1, !- Sizing Factor @@ -238,10 +624,10 @@ OS:Boiler:HotWater, OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000002}, !- Handle - Secondary Boiler 363kBtu/hr 0.83 Thermal Eff, !- Name + Secondary Boiler 0kBtu/hr 0.85 AFUE, !- Name NaturalGas, !- Fuel Type - 106307.519374649, !- Nominal Capacity {W} - 0.83, !- Nominal Thermal Efficiency + 0.001, !- Nominal Capacity {W} + 0.85, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} @@ -306,8 +692,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton, !- Name - 98998.1003686864, !- Reference Capacity {W} + Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton, !- Name + 248661.151059467, !- Reference Capacity {W} 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -350,9 +736,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0026-000000000005}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0026-000000000007}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -403,6 +789,42 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration +OS:Coil:Cooling:Water, + {00000000-0000-0000-0014-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000220}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000221}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000231}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000228}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0014-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000316}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000317}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000327}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000324}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Heating Water 1, !- Name @@ -423,6 +845,168 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000002}, !- Handle + Coil Heating Water 10, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000264}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000265}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 11197.9591369629, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000003}, !- Handle + Coil Heating Water 11, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000278}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000279}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 6543.26219558716, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000004}, !- Handle + Coil Heating Water 12, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000292}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000293}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 12108.2193374634, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000005}, !- Handle + Coil Heating Water 13, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000312}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000313}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000325}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000322}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000006}, !- Handle + Coil Heating Water 14, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000332}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000333}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 24091.289806366, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000007}, !- Handle + Coil Heating Water 15, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000346}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000347}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 14241.6543960571, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000008}, !- Handle + Coil Heating Water 16, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000360}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000361}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 11677.5599956512, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000009}, !- Handle + Coil Heating Water 17, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000374}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000375}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 7499.4943857193, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000010}, !- Handle + Coil Heating Water 18, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000388}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000389}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 12827.5813579559, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000011}, !- Handle Coil Heating Water 2, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -432,7 +1016,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 26665.4019355774, !- Rated Capacity {W} + 14499.383354187, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -440,7 +1024,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000003}, !- Handle + {00000000-0000-0000-0015-000000000012}, !- Handle Coil Heating Water 3, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -450,7 +1034,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 14999.2591381073, !- Rated Capacity {W} + 11646.1575508118, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -458,7 +1042,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000004}, !- Handle + {00000000-0000-0000-0015-000000000013}, !- Handle Coil Heating Water 4, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -468,7 +1052,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 12592.0353412628, !- Rated Capacity {W} + 10310.8687162399, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -476,7 +1060,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000005}, !- Handle + {00000000-0000-0000-0015-000000000014}, !- Handle Coil Heating Water 5, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -486,7 +1070,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 6863.41495513916, !- Rated Capacity {W} + 5860.14540195465, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -494,7 +1078,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000006}, !- Handle + {00000000-0000-0000-0015-000000000015}, !- Handle Coil Heating Water 6, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -504,7 +1088,61 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 13941.654253006, !- Rated Capacity {W} + 11752.9098987579, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000016}, !- Handle + Coil Heating Water 7, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000216}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000217}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000229}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000226}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000017}, !- Handle + Coil Heating Water 8, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000236}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000237}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 20076.7271518707, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000018}, !- Handle + Coil Heating Water 9, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000250}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000251}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 13291.9927597046, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -526,7 +1164,7 @@ OS:Coil:Heating:Water:Baseboard, OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Water Baseboard 2, !- Name + Coil Heating Water Baseboard 10, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -534,12 +1172,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000158}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000159}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000296}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000297}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Water Baseboard 3, !- Name + Coil Heating Water Baseboard 11, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -547,12 +1185,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000172}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000173}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000336}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000337}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Heating Water Baseboard 4, !- Name + Coil Heating Water Baseboard 12, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -560,12 +1198,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000186}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000187}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000350}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000351}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000005}, !- Handle - Coil Heating Water Baseboard 5, !- Name + Coil Heating Water Baseboard 13, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -573,21 +1211,151 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000200}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000201}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000364}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000365}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0017-000000000001}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000006}, !- Handle + Coil Heating Water Baseboard 14, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000378}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000379}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0017-000000000002}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000007}, !- Handle + Coil Heating Water Baseboard 15, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000392}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000393}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000008}, !- Handle + Coil Heating Water Baseboard 2, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000158}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000159}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000009}, !- Handle + Coil Heating Water Baseboard 3, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000172}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000173}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000010}, !- Handle + Coil Heating Water Baseboard 4, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000186}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000187}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000011}, !- Handle + Coil Heating Water Baseboard 5, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000200}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000201}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000012}, !- Handle + Coil Heating Water Baseboard 6, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000240}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000241}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000013}, !- Handle + Coil Heating Water Baseboard 7, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000254}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000255}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000014}, !- Handle + Coil Heating Water Baseboard 8, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000268}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000269}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000015}, !- Handle + Coil Heating Water Baseboard 9, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000282}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000283}; !- Water Outlet Node Name + +OS:Connection, + {00000000-0000-0000-0017-000000000001}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000002}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, @@ -706,35 +1474,35 @@ OS:Connection, {00000000-0000-0000-0017-000000000019}, !- Handle {00000000-0000-0000-0092-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000020}, !- Target Object + {00000000-0000-0000-0051-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000020}, !- Handle {00000000-0000-0000-0092-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000025}, !- Target Object + {00000000-0000-0000-0051-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000021}, !- Handle {00000000-0000-0000-0092-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000021}, !- Target Object + {00000000-0000-0000-0051-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000022}, !- Handle {00000000-0000-0000-0092-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000022}, !- Target Object + {00000000-0000-0000-0051-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000023}, !- Handle {00000000-0000-0000-0092-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000016}, !- Target Object + {00000000-0000-0000-0051-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -748,14 +1516,14 @@ OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle {00000000-0000-0000-0092-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000023}, !- Target Object + {00000000-0000-0000-0051-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle {00000000-0000-0000-0092-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000017}, !- Target Object + {00000000-0000-0000-0051-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -769,7 +1537,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle {00000000-0000-0000-0092-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000024}, !- Target Object + {00000000-0000-0000-0051-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -790,7 +1558,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle {00000000-0000-0000-0092-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000018}, !- Target Object + {00000000-0000-0000-0051-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -811,7 +1579,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle {00000000-0000-0000-0092-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000019}, !- Target Object + {00000000-0000-0000-0051-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -832,19 +1600,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle {00000000-0000-0000-0056-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0051-000000000080}, !- Target Object + {00000000-0000-0000-0051-000000000162}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000126}, !- Target Object + {00000000-0000-0000-0051-000000000208}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0051-000000000081}, !- Source Object + {00000000-0000-0000-0051-000000000163}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000003}, !- Target Object 15; !- Inlet Port @@ -853,12 +1621,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle {00000000-0000-0000-0056-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000078}, !- Target Object + {00000000-0000-0000-0051-000000000160}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0051-000000000078}, !- Source Object + {00000000-0000-0000-0051-000000000160}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -867,26 +1635,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000043}, !- Target Object + {00000000-0000-0000-0051-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000079}, !- Target Object + {00000000-0000-0000-0051-000000000161}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0051-000000000079}, !- Source Object + {00000000-0000-0000-0051-000000000161}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0051-000000000080}, !- Source Object + {00000000-0000-0000-0051-000000000162}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0059-000000000001}, !- Target Object 2; !- Inlet Port @@ -895,19 +1663,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle {00000000-0000-0000-0059-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000132}, !- Target Object + {00000000-0000-0000-0051-000000000214}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle - {00000000-0000-0000-0051-000000000132}, !- Source Object + {00000000-0000-0000-0051-000000000214}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0051-000000000126}, !- Source Object + {00000000-0000-0000-0051-000000000208}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000001}, !- Target Object 11; !- Inlet Port @@ -916,12 +1684,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0009-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000127}, !- Target Object + {00000000-0000-0000-0051-000000000209}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0051-000000000127}, !- Source Object + {00000000-0000-0000-0051-000000000209}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -930,12 +1698,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000135}, !- Target Object + {00000000-0000-0000-0051-000000000217}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle - {00000000-0000-0000-0051-000000000135}, !- Source Object + {00000000-0000-0000-0051-000000000217}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000002}, !- Target Object 11; !- Inlet Port @@ -944,12 +1712,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle {00000000-0000-0000-0009-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000136}, !- Target Object + {00000000-0000-0000-0051-000000000218}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle - {00000000-0000-0000-0051-000000000136}, !- Source Object + {00000000-0000-0000-0051-000000000218}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -958,12 +1726,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0051-000000000111}, !- Target Object + {00000000-0000-0000-0051-000000000193}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle - {00000000-0000-0000-0051-000000000111}, !- Source Object + {00000000-0000-0000-0051-000000000193}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000001}, !- Target Object 2; !- Inlet Port @@ -972,12 +1740,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle {00000000-0000-0000-0055-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000112}, !- Target Object + {00000000-0000-0000-0051-000000000194}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle - {00000000-0000-0000-0051-000000000112}, !- Source Object + {00000000-0000-0000-0051-000000000194}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -986,12 +1754,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000114}, !- Target Object + {00000000-0000-0000-0051-000000000196}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0051-000000000114}, !- Source Object + {00000000-0000-0000-0051-000000000196}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000003}, !- Target Object 2; !- Inlet Port @@ -1000,26 +1768,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle {00000000-0000-0000-0055-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000081}, !- Target Object + {00000000-0000-0000-0051-000000000163}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle {00000000-0000-0000-0056-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0051-000000000038}, !- Target Object + {00000000-0000-0000-0051-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000130}, !- Target Object + {00000000-0000-0000-0051-000000000212}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle - {00000000-0000-0000-0051-000000000039}, !- Source Object + {00000000-0000-0000-0051-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000001}, !- Target Object 15; !- Inlet Port @@ -1028,12 +1796,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle {00000000-0000-0000-0056-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000036}, !- Target Object + {00000000-0000-0000-0051-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle - {00000000-0000-0000-0051-000000000036}, !- Source Object + {00000000-0000-0000-0051-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1042,26 +1810,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000040}, !- Target Object + {00000000-0000-0000-0051-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000037}, !- Target Object + {00000000-0000-0000-0051-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0051-000000000037}, !- Source Object + {00000000-0000-0000-0051-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle - {00000000-0000-0000-0051-000000000038}, !- Source Object + {00000000-0000-0000-0051-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0059-000000000002}, !- Target Object 2; !- Inlet Port @@ -1070,19 +1838,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle {00000000-0000-0000-0059-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000133}, !- Target Object + {00000000-0000-0000-0051-000000000215}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle - {00000000-0000-0000-0051-000000000133}, !- Source Object + {00000000-0000-0000-0051-000000000215}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle - {00000000-0000-0000-0051-000000000130}, !- Source Object + {00000000-0000-0000-0051-000000000212}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -1091,12 +1859,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0051-000000000131}, !- Target Object + {00000000-0000-0000-0051-000000000213}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle - {00000000-0000-0000-0051-000000000131}, !- Source Object + {00000000-0000-0000-0051-000000000213}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -1105,12 +1873,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000139}, !- Target Object + {00000000-0000-0000-0051-000000000221}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0051-000000000139}, !- Source Object + {00000000-0000-0000-0051-000000000221}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1119,12 +1887,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0051-000000000140}, !- Target Object + {00000000-0000-0000-0051-000000000222}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle - {00000000-0000-0000-0051-000000000140}, !- Source Object + {00000000-0000-0000-0051-000000000222}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -1133,12 +1901,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0051-000000000115}, !- Target Object + {00000000-0000-0000-0051-000000000197}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle - {00000000-0000-0000-0051-000000000115}, !- Source Object + {00000000-0000-0000-0051-000000000197}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000004}, !- Target Object 2; !- Inlet Port @@ -1147,12 +1915,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle {00000000-0000-0000-0055-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000116}, !- Target Object + {00000000-0000-0000-0051-000000000198}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle - {00000000-0000-0000-0051-000000000116}, !- Source Object + {00000000-0000-0000-0051-000000000198}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 5; !- Inlet Port @@ -1161,12 +1929,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000117}, !- Target Object + {00000000-0000-0000-0051-000000000199}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle - {00000000-0000-0000-0051-000000000117}, !- Source Object + {00000000-0000-0000-0051-000000000199}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000005}, !- Target Object 2; !- Inlet Port @@ -1175,26 +1943,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle {00000000-0000-0000-0055-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000039}, !- Target Object + {00000000-0000-0000-0051-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle {00000000-0000-0000-0056-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0051-000000000068}, !- Target Object + {00000000-0000-0000-0051-000000000150}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000070}, !- Target Object + {00000000-0000-0000-0051-000000000152}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle - {00000000-0000-0000-0051-000000000069}, !- Source Object + {00000000-0000-0000-0051-000000000151}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000002}, !- Target Object 15; !- Inlet Port @@ -1203,12 +1971,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle {00000000-0000-0000-0056-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000066}, !- Target Object + {00000000-0000-0000-0051-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle - {00000000-0000-0000-0051-000000000066}, !- Source Object + {00000000-0000-0000-0051-000000000148}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000006}, !- Target Object 2; !- Inlet Port @@ -1217,26 +1985,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000128}, !- Target Object + {00000000-0000-0000-0051-000000000210}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle {00000000-0000-0000-0018-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000067}, !- Target Object + {00000000-0000-0000-0051-000000000149}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0051-000000000067}, !- Source Object + {00000000-0000-0000-0051-000000000149}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle - {00000000-0000-0000-0051-000000000068}, !- Source Object + {00000000-0000-0000-0051-000000000150}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0059-000000000003}, !- Target Object 2; !- Inlet Port @@ -1245,19 +2013,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle {00000000-0000-0000-0059-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000134}, !- Target Object + {00000000-0000-0000-0051-000000000216}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle - {00000000-0000-0000-0051-000000000134}, !- Source Object + {00000000-0000-0000-0051-000000000216}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle - {00000000-0000-0000-0051-000000000070}, !- Source Object + {00000000-0000-0000-0051-000000000152}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0025-000000000001}, !- Target Object 2; !- Inlet Port @@ -1266,12 +2034,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle {00000000-0000-0000-0025-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000071}, !- Target Object + {00000000-0000-0000-0051-000000000153}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle - {00000000-0000-0000-0051-000000000071}, !- Source Object + {00000000-0000-0000-0051-000000000153}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 3; !- Inlet Port @@ -1280,12 +2048,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000118}, !- Target Object + {00000000-0000-0000-0051-000000000200}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0051-000000000118}, !- Source Object + {00000000-0000-0000-0051-000000000200}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000006}, !- Target Object 2; !- Inlet Port @@ -1294,12 +2062,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle {00000000-0000-0000-0055-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000119}, !- Target Object + {00000000-0000-0000-0051-000000000201}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle - {00000000-0000-0000-0051-000000000119}, !- Source Object + {00000000-0000-0000-0051-000000000201}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 4; !- Inlet Port @@ -1308,12 +2076,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle {00000000-0000-0000-0018-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000120}, !- Target Object + {00000000-0000-0000-0051-000000000202}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle - {00000000-0000-0000-0051-000000000120}, !- Source Object + {00000000-0000-0000-0051-000000000202}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000007}, !- Target Object 2; !- Inlet Port @@ -1322,12 +2090,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle {00000000-0000-0000-0055-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000069}, !- Target Object + {00000000-0000-0000-0051-000000000151}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle - {00000000-0000-0000-0051-000000000128}, !- Source Object + {00000000-0000-0000-0051-000000000210}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -1336,12 +2104,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0051-000000000129}, !- Target Object + {00000000-0000-0000-0051-000000000211}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle - {00000000-0000-0000-0051-000000000129}, !- Source Object + {00000000-0000-0000-0051-000000000211}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 3; !- Inlet Port @@ -1350,1286 +2118,2630 @@ OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000137}, !- Target Object + {00000000-0000-0000-0051-000000000219}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000112}, !- Handle + {00000000-0000-0000-0051-000000000219}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0012-000000000002}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000113}, !- Handle + {00000000-0000-0000-0012-000000000002}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0051-000000000220}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000114}, !- Handle + {00000000-0000-0000-0051-000000000220}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000006}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000115}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0051-000000000245}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000116}, !- Handle + {00000000-0000-0000-0051-000000000246}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000117}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0051-000000000240}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000118}, !- Handle + {00000000-0000-0000-0051-000000000241}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000119}, !- Handle + {00000000-0000-0000-0051-000000000240}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000120}, !- Handle + {00000000-0000-0000-0004-000000000001}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000241}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000121}, !- Handle + {00000000-0000-0000-0051-000000000079}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000001}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000122}, !- Handle + {00000000-0000-0000-0015-000000000001}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000081}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000123}, !- Handle + {00000000-0000-0000-0051-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000124}, !- Handle + {00000000-0000-0000-0051-000000000070}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000125}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0051-000000000072}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000126}, !- Handle + {00000000-0000-0000-0051-000000000072}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000127}, !- Handle + {00000000-0000-0000-0051-000000000243}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000128}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0051-000000000244}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000129}, !- Handle + {00000000-0000-0000-0041-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0051-000000000246}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000130}, !- Handle + {00000000-0000-0000-0015-000000000001}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0051-000000000080}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000131}, !- Handle + {00000000-0000-0000-0051-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000006}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000132}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0051-000000000071}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000133}, !- Handle + {00000000-0000-0000-0051-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000001}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000134}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0051-000000000242}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000135}, !- Handle + {00000000-0000-0000-0051-000000000242}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000136}, !- Handle + {00000000-0000-0000-0051-000000000245}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000137}, !- Handle + {00000000-0000-0000-0041-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0051-000000000225}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000138}, !- Handle + {00000000-0000-0000-0051-000000000225}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000139}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0051-000000000101}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000140}, !- Handle + {00000000-0000-0000-0051-000000000101}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000011}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000141}, !- Handle + {00000000-0000-0000-0015-000000000011}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000102}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000142}, !- Handle + {00000000-0000-0000-0051-000000000102}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000143}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0051-000000000118}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000144}, !- Handle + {00000000-0000-0000-0051-000000000118}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000001}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000145}, !- Handle + {00000000-0000-0000-0016-000000000001}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000119}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000146}, !- Handle + {00000000-0000-0000-0051-000000000119}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000147}, !- Handle + {00000000-0000-0000-0051-000000000037}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000148}, !- Handle + {00000000-0000-0000-0057-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000149}, !- Handle + {00000000-0000-0000-0051-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000150}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000151}, !- Handle + {00000000-0000-0000-0051-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000152}, !- Handle + {00000000-0000-0000-0006-000000000001}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000153}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000103}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000154}, !- Handle + {00000000-0000-0000-0051-000000000103}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000012}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000155}, !- Handle + {00000000-0000-0000-0015-000000000012}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000104}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000156}, !- Handle + {00000000-0000-0000-0051-000000000104}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000157}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0051-000000000132}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000158}, !- Handle + {00000000-0000-0000-0051-000000000132}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000008}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000159}, !- Handle + {00000000-0000-0000-0016-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000133}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000160}, !- Handle + {00000000-0000-0000-0051-000000000133}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000161}, !- Handle + {00000000-0000-0000-0051-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000162}, !- Handle + {00000000-0000-0000-0057-000000000042}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000163}, !- Handle + {00000000-0000-0000-0051-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000164}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0051-000000000050}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000165}, !- Handle + {00000000-0000-0000-0051-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000166}, !- Handle + {00000000-0000-0000-0006-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000051}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000167}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0051-000000000105}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000168}, !- Handle + {00000000-0000-0000-0051-000000000105}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000013}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000169}, !- Handle + {00000000-0000-0000-0015-000000000013}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000106}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000170}, !- Handle + {00000000-0000-0000-0051-000000000106}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000171}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0051-000000000134}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000172}, !- Handle + {00000000-0000-0000-0051-000000000134}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000009}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000173}, !- Handle + {00000000-0000-0000-0016-000000000009}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000135}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000174}, !- Handle + {00000000-0000-0000-0051-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000175}, !- Handle + {00000000-0000-0000-0051-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000176}, !- Handle + {00000000-0000-0000-0057-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000177}, !- Handle + {00000000-0000-0000-0051-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000178}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0051-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000179}, !- Handle + {00000000-0000-0000-0051-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000180}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000053}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000181}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000107}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000182}, !- Handle + {00000000-0000-0000-0051-000000000107}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000014}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000183}, !- Handle + {00000000-0000-0000-0015-000000000014}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000108}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000184}, !- Handle + {00000000-0000-0000-0051-000000000108}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000185}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0051-000000000136}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000186}, !- Handle + {00000000-0000-0000-0051-000000000136}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000010}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000187}, !- Handle + {00000000-0000-0000-0016-000000000010}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000137}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000188}, !- Handle + {00000000-0000-0000-0051-000000000137}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000189}, !- Handle + {00000000-0000-0000-0051-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000190}, !- Handle + {00000000-0000-0000-0057-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000191}, !- Handle + {00000000-0000-0000-0051-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000192}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000054}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000193}, !- Handle + {00000000-0000-0000-0051-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000194}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000195}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000109}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000196}, !- Handle + {00000000-0000-0000-0051-000000000109}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000015}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000197}, !- Handle + {00000000-0000-0000-0015-000000000015}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000110}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000198}, !- Handle + {00000000-0000-0000-0051-000000000110}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000199}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0051-000000000138}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000200}, !- Handle + {00000000-0000-0000-0051-000000000138}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000011}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000201}, !- Handle + {00000000-0000-0000-0016-000000000011}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000139}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000202}, !- Handle + {00000000-0000-0000-0051-000000000139}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 13; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000203}, !- Handle + {00000000-0000-0000-0051-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000204}, !- Handle + {00000000-0000-0000-0057-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000205}, !- Handle + {00000000-0000-0000-0051-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000206}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0051-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000207}, !- Handle + {00000000-0000-0000-0051-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000208}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000209}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0051-000000000231}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000210}, !- Handle + {00000000-0000-0000-0051-000000000232}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000211}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0051-000000000226}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000212}, !- Handle + {00000000-0000-0000-0051-000000000227}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000213}, !- Handle + {00000000-0000-0000-0051-000000000226}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000214}, !- Handle + {00000000-0000-0000-0004-000000000002}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000227}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000215}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0051-000000000111}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000216}, !- Handle + {00000000-0000-0000-0051-000000000111}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000016}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000217}, !- Handle + {00000000-0000-0000-0015-000000000016}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000113}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000218}, !- Handle + {00000000-0000-0000-0051-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000219}, !- Handle + {00000000-0000-0000-0019-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0051-000000000073}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000220}, !- Handle + {00000000-0000-0000-0051-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000221}, !- Handle + {00000000-0000-0000-0014-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0051-000000000075}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000222}, !- Handle + {00000000-0000-0000-0051-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000004}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000223}, !- Handle + {00000000-0000-0000-0051-000000000229}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000224}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0051-000000000230}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000225}, !- Handle + {00000000-0000-0000-0041-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0051-000000000232}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000226}, !- Handle + {00000000-0000-0000-0015-000000000016}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0051-000000000112}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000227}, !- Handle + {00000000-0000-0000-0051-000000000112}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000004}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000228}, !- Handle + {00000000-0000-0000-0014-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0051-000000000074}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000229}, !- Handle + {00000000-0000-0000-0051-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000016}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000230}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0051-000000000228}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000231}, !- Handle + {00000000-0000-0000-0051-000000000228}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000232}, !- Handle + {00000000-0000-0000-0051-000000000231}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000001}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000233}, !- Handle + {00000000-0000-0000-0041-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0051-000000000223}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000234}, !- Handle + {00000000-0000-0000-0051-000000000223}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000235}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0051-000000000114}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000236}, !- Handle + {00000000-0000-0000-0051-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000017}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000237}, !- Handle + {00000000-0000-0000-0015-000000000017}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000115}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000238}, !- Handle + {00000000-0000-0000-0051-000000000115}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000239}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0051-000000000140}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000240}, !- Handle + {00000000-0000-0000-0051-000000000140}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000012}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000241}, !- Handle + {00000000-0000-0000-0016-000000000012}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000141}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000242}, !- Handle + {00000000-0000-0000-0051-000000000141}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000243}, !- Handle + {00000000-0000-0000-0051-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000244}, !- Handle + {00000000-0000-0000-0057-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000024}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000245}, !- Handle + {00000000-0000-0000-0051-000000000024}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000246}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0051-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000247}, !- Handle + {00000000-0000-0000-0051-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000012}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000248}, !- Handle + {00000000-0000-0000-0006-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000249}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0051-000000000116}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000250}, !- Handle + {00000000-0000-0000-0051-000000000116}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000018}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000251}, !- Handle + {00000000-0000-0000-0015-000000000018}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000117}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000252}, !- Handle + {00000000-0000-0000-0051-000000000117}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000253}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0051-000000000142}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000254}, !- Handle + {00000000-0000-0000-0051-000000000142}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000013}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000255}, !- Handle + {00000000-0000-0000-0016-000000000013}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000143}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000256}, !- Handle + {00000000-0000-0000-0051-000000000143}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000257}, !- Handle + {00000000-0000-0000-0051-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000258}, !- Handle + {00000000-0000-0000-0057-000000000039}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000020}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000259}, !- Handle + {00000000-0000-0000-0051-000000000020}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000260}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0051-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000261}, !- Handle + {00000000-0000-0000-0051-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000013}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000262}, !- Handle + {00000000-0000-0000-0006-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000263}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0051-000000000082}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000264}, !- Handle + {00000000-0000-0000-0051-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000265}, !- Handle + {00000000-0000-0000-0015-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000083}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000266}, !- Handle + {00000000-0000-0000-0051-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000267}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0051-000000000144}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000268}, !- Handle + {00000000-0000-0000-0051-000000000144}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000014}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000269}, !- Handle + {00000000-0000-0000-0016-000000000014}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000145}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000270}, !- Handle + {00000000-0000-0000-0051-000000000145}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000271}, !- Handle + {00000000-0000-0000-0051-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000272}, !- Handle + {00000000-0000-0000-0057-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000273}, !- Handle + {00000000-0000-0000-0051-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000274}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0051-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000275}, !- Handle + {00000000-0000-0000-0051-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000014}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000276}, !- Handle + {00000000-0000-0000-0006-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000277}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0051-000000000084}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000278}, !- Handle + {00000000-0000-0000-0051-000000000084}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000003}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000279}, !- Handle + {00000000-0000-0000-0015-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000085}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000280}, !- Handle + {00000000-0000-0000-0051-000000000085}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000281}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0051-000000000146}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000282}, !- Handle + {00000000-0000-0000-0051-000000000146}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000015}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000283}, !- Handle + {00000000-0000-0000-0016-000000000015}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000147}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000284}, !- Handle + {00000000-0000-0000-0051-000000000147}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 22; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000285}, !- Handle + {00000000-0000-0000-0051-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000286}, !- Handle + {00000000-0000-0000-0057-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000287}, !- Handle + {00000000-0000-0000-0051-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000288}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000289}, !- Handle + {00000000-0000-0000-0051-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000015}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000290}, !- Handle + {00000000-0000-0000-0006-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000065}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000291}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 23, !- Outlet Port + {00000000-0000-0000-0051-000000000086}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000292}, !- Handle + {00000000-0000-0000-0051-000000000086}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000004}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000293}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0051-000000000087}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000294}, !- Handle + {00000000-0000-0000-0051-000000000087}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 23; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000295}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 24, !- Outlet Port + {00000000-0000-0000-0051-000000000120}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000296}, !- Handle + {00000000-0000-0000-0051-000000000120}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000297}, !- Handle + {00000000-0000-0000-0016-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0051-000000000121}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000298}, !- Handle + {00000000-0000-0000-0051-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 24; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000299}, !- Handle + {00000000-0000-0000-0051-000000000039}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0057-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000300}, !- Handle + {00000000-0000-0000-0057-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0051-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000301}, !- Handle + {00000000-0000-0000-0051-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000302}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0051-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000112}, !- Handle - {00000000-0000-0000-0051-000000000137}, !- Source Object + {00000000-0000-0000-0017-000000000303}, !- Handle + {00000000-0000-0000-0051-000000000038}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0012-000000000002}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0006-000000000002}, !- Target Object + 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000113}, !- Handle - {00000000-0000-0000-0012-000000000002}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0051-000000000138}, !- Target Object + {00000000-0000-0000-0017-000000000304}, !- Handle + {00000000-0000-0000-0006-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0051-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000114}, !- Handle - {00000000-0000-0000-0051-000000000138}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0018-000000000006}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000305}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0051-000000000147}, !- Target Object + {00000000-0000-0000-0051-000000000238}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000116}, !- Handle - {00000000-0000-0000-0051-000000000148}, !- Source Object + {00000000-0000-0000-0017-000000000306}, !- Handle + {00000000-0000-0000-0051-000000000239}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000307}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000142}, !- Target Object + {00000000-0000-0000-0051-000000000233}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000118}, !- Handle - {00000000-0000-0000-0051-000000000143}, !- Source Object + {00000000-0000-0000-0017-000000000308}, !- Handle + {00000000-0000-0000-0051-000000000234}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0051-000000000142}, !- Source Object + {00000000-0000-0000-0017-000000000309}, !- Handle + {00000000-0000-0000-0051-000000000233}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000001}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000120}, !- Handle - {00000000-0000-0000-0004-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000310}, !- Handle + {00000000-0000-0000-0004-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000143}, !- Target Object + {00000000-0000-0000-0051-000000000234}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0051-000000000043}, !- Source Object + {00000000-0000-0000-0017-000000000311}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 25, !- Outlet Port + {00000000-0000-0000-0051-000000000088}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000312}, !- Handle + {00000000-0000-0000-0051-000000000088}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000001}, !- Target Object + {00000000-0000-0000-0015-000000000005}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000122}, !- Handle - {00000000-0000-0000-0015-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000313}, !- Handle + {00000000-0000-0000-0015-000000000005}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000045}, !- Target Object + {00000000-0000-0000-0051-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0051-000000000045}, !- Source Object + {00000000-0000-0000-0017-000000000314}, !- Handle + {00000000-0000-0000-0051-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 3; !- Inlet Port + 25; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0051-000000000040}, !- Source Object + {00000000-0000-0000-0017-000000000315}, !- Handle + {00000000-0000-0000-0019-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0051-000000000076}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000316}, !- Handle + {00000000-0000-0000-0051-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object + {00000000-0000-0000-0014-000000000003}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000125}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000317}, !- Handle + {00000000-0000-0000-0014-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000042}, !- Target Object + {00000000-0000-0000-0051-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0051-000000000042}, !- Source Object + {00000000-0000-0000-0017-000000000318}, !- Handle + {00000000-0000-0000-0051-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object - 3; !- Inlet Port + 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000127}, !- Handle - {00000000-0000-0000-0051-000000000145}, !- Source Object + {00000000-0000-0000-0017-000000000319}, !- Handle + {00000000-0000-0000-0051-000000000236}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000128}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000320}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0051-000000000146}, !- Target Object + {00000000-0000-0000-0051-000000000237}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000129}, !- Handle - {00000000-0000-0000-0041-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000321}, !- Handle + {00000000-0000-0000-0041-000000000005}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000148}, !- Target Object + {00000000-0000-0000-0051-000000000239}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000130}, !- Handle - {00000000-0000-0000-0015-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000322}, !- Handle + {00000000-0000-0000-0015-000000000005}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0051-000000000044}, !- Target Object + {00000000-0000-0000-0051-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0051-000000000044}, !- Source Object + {00000000-0000-0000-0017-000000000323}, !- Handle + {00000000-0000-0000-0051-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000002}, !- Target Object + {00000000-0000-0000-0041-000000000005}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000132}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000324}, !- Handle + {00000000-0000-0000-0014-000000000003}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0051-000000000041}, !- Target Object + {00000000-0000-0000-0051-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0051-000000000041}, !- Source Object + {00000000-0000-0000-0017-000000000325}, !- Handle + {00000000-0000-0000-0051-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000001}, !- Target Object + {00000000-0000-0000-0015-000000000005}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000134}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000326}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0051-000000000144}, !- Target Object + {00000000-0000-0000-0051-000000000235}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0051-000000000144}, !- Source Object + {00000000-0000-0000-0017-000000000327}, !- Handle + {00000000-0000-0000-0051-000000000235}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object + {00000000-0000-0000-0014-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000136}, !- Handle - {00000000-0000-0000-0051-000000000147}, !- Source Object + {00000000-0000-0000-0017-000000000328}, !- Handle + {00000000-0000-0000-0051-000000000238}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000001}, !- Target Object + {00000000-0000-0000-0041-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000137}, !- Handle - {00000000-0000-0000-0041-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000329}, !- Handle + {00000000-0000-0000-0041-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000141}, !- Target Object + {00000000-0000-0000-0051-000000000224}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000138}, !- Handle - {00000000-0000-0000-0051-000000000141}, !- Source Object + {00000000-0000-0000-0017-000000000330}, !- Handle + {00000000-0000-0000-0051-000000000224}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000139}, !- Handle + {00000000-0000-0000-0017-000000000331}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0051-000000000046}, !- Target Object + 26, !- Outlet Port + {00000000-0000-0000-0051-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0051-000000000046}, !- Source Object + {00000000-0000-0000-0017-000000000332}, !- Handle + {00000000-0000-0000-0051-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object + {00000000-0000-0000-0015-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000141}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000333}, !- Handle + {00000000-0000-0000-0015-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000047}, !- Target Object + {00000000-0000-0000-0051-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000142}, !- Handle - {00000000-0000-0000-0051-000000000047}, !- Source Object + {00000000-0000-0000-0017-000000000334}, !- Handle + {00000000-0000-0000-0051-000000000092}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 4; !- Inlet Port + 26; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000143}, !- Handle + {00000000-0000-0000-0017-000000000335}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0051-000000000056}, !- Target Object + 27, !- Outlet Port + {00000000-0000-0000-0051-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000144}, !- Handle - {00000000-0000-0000-0051-000000000056}, !- Source Object + {00000000-0000-0000-0017-000000000336}, !- Handle + {00000000-0000-0000-0051-000000000122}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000001}, !- Target Object + {00000000-0000-0000-0016-000000000003}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0016-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000337}, !- Handle + {00000000-0000-0000-0016-000000000003}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000057}, !- Target Object + {00000000-0000-0000-0051-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000146}, !- Handle - {00000000-0000-0000-0051-000000000057}, !- Source Object + {00000000-0000-0000-0017-000000000338}, !- Handle + {00000000-0000-0000-0051-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 5; !- Inlet Port + 27; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000147}, !- Handle - {00000000-0000-0000-0051-000000000027}, !- Source Object + {00000000-0000-0000-0017-000000000339}, !- Handle + {00000000-0000-0000-0051-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000016}, !- Target Object + {00000000-0000-0000-0057-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000148}, !- Handle - {00000000-0000-0000-0057-000000000018}, !- Source Object + {00000000-0000-0000-0017-000000000340}, !- Handle + {00000000-0000-0000-0057-000000000012}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000014}, !- Target Object + {00000000-0000-0000-0051-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0051-000000000014}, !- Source Object + {00000000-0000-0000-0017-000000000341}, !- Handle + {00000000-0000-0000-0051-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000150}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000342}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000026}, !- Target Object + {00000000-0000-0000-0051-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000151}, !- Handle - {00000000-0000-0000-0051-000000000026}, !- Source Object + {00000000-0000-0000-0017-000000000343}, !- Handle + {00000000-0000-0000-0051-000000000040}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000001}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0006-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000344}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000027}, !- Target Object + {00000000-0000-0000-0051-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000153}, !- Handle + {00000000-0000-0000-0017-000000000345}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0051-000000000048}, !- Target Object + 28, !- Outlet Port + {00000000-0000-0000-0051-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0051-000000000048}, !- Source Object + {00000000-0000-0000-0017-000000000346}, !- Handle + {00000000-0000-0000-0051-000000000093}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object + {00000000-0000-0000-0015-000000000007}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000155}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object + {00000000-0000-0000-0017-000000000347}, !- Handle + {00000000-0000-0000-0015-000000000007}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000049}, !- Target Object + {00000000-0000-0000-0051-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0051-000000000049}, !- Source Object + {00000000-0000-0000-0017-000000000348}, !- Handle + {00000000-0000-0000-0051-000000000094}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 6; !- Inlet Port + 28; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000157}, !- Handle + {00000000-0000-0000-0017-000000000349}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0051-000000000058}, !- Target Object + 29, !- Outlet Port + {00000000-0000-0000-0051-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0051-000000000058}, !- Source Object + {00000000-0000-0000-0017-000000000350}, !- Handle + {00000000-0000-0000-0051-000000000124}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object + {00000000-0000-0000-0016-000000000004}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000351}, !- Handle + {00000000-0000-0000-0016-000000000004}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000059}, !- Target Object + {00000000-0000-0000-0051-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000160}, !- Handle - {00000000-0000-0000-0051-000000000059}, !- Source Object + {00000000-0000-0000-0017-000000000352}, !- Handle + {00000000-0000-0000-0051-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 7; !- Inlet Port + 29; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000161}, !- Handle - {00000000-0000-0000-0051-000000000029}, !- Source Object + {00000000-0000-0000-0017-000000000353}, !- Handle + {00000000-0000-0000-0051-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000040}, !- Target Object + {00000000-0000-0000-0057-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000162}, !- Handle - {00000000-0000-0000-0057-000000000042}, !- Source Object + {00000000-0000-0000-0017-000000000354}, !- Handle + {00000000-0000-0000-0057-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000008}, !- Target Object + {00000000-0000-0000-0051-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0051-000000000008}, !- Source Object + {00000000-0000-0000-0017-000000000355}, !- Handle + {00000000-0000-0000-0051-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000356}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000028}, !- Target Object + {00000000-0000-0000-0051-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000165}, !- Handle - {00000000-0000-0000-0051-000000000028}, !- Source Object + {00000000-0000-0000-0017-000000000357}, !- Handle + {00000000-0000-0000-0051-000000000042}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000358}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000029}, !- Target Object + {00000000-0000-0000-0051-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000167}, !- Handle + {00000000-0000-0000-0017-000000000359}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0051-000000000050}, !- Target Object + 30, !- Outlet Port + {00000000-0000-0000-0051-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0051-000000000050}, !- Source Object + {00000000-0000-0000-0017-000000000360}, !- Handle + {00000000-0000-0000-0051-000000000095}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object + {00000000-0000-0000-0015-000000000008}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000169}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object + {00000000-0000-0000-0017-000000000361}, !- Handle + {00000000-0000-0000-0015-000000000008}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000051}, !- Target Object + {00000000-0000-0000-0051-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0051-000000000051}, !- Source Object + {00000000-0000-0000-0017-000000000362}, !- Handle + {00000000-0000-0000-0051-000000000096}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 8; !- Inlet Port + 30; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000171}, !- Handle + {00000000-0000-0000-0017-000000000363}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0051-000000000060}, !- Target Object + 31, !- Outlet Port + {00000000-0000-0000-0051-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0051-000000000060}, !- Source Object + {00000000-0000-0000-0017-000000000364}, !- Handle + {00000000-0000-0000-0051-000000000126}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object + {00000000-0000-0000-0016-000000000005}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object + {00000000-0000-0000-0017-000000000365}, !- Handle + {00000000-0000-0000-0016-000000000005}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000061}, !- Target Object + {00000000-0000-0000-0051-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000174}, !- Handle - {00000000-0000-0000-0051-000000000061}, !- Source Object + {00000000-0000-0000-0017-000000000366}, !- Handle + {00000000-0000-0000-0051-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 9; !- Inlet Port + 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000175}, !- Handle - {00000000-0000-0000-0051-000000000031}, !- Source Object + {00000000-0000-0000-0017-000000000367}, !- Handle + {00000000-0000-0000-0051-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000031}, !- Target Object + {00000000-0000-0000-0057-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000176}, !- Handle - {00000000-0000-0000-0057-000000000033}, !- Source Object + {00000000-0000-0000-0017-000000000368}, !- Handle + {00000000-0000-0000-0057-000000000009}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000006}, !- Target Object + {00000000-0000-0000-0051-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0051-000000000006}, !- Source Object + {00000000-0000-0000-0017-000000000369}, !- Handle + {00000000-0000-0000-0051-000000000026}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000370}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0051-000000000030}, !- Target Object + {00000000-0000-0000-0051-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000179}, !- Handle - {00000000-0000-0000-0051-000000000030}, !- Source Object + {00000000-0000-0000-0017-000000000371}, !- Handle + {00000000-0000-0000-0051-000000000044}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object + {00000000-0000-0000-0017-000000000372}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000031}, !- Target Object + {00000000-0000-0000-0051-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000181}, !- Handle + {00000000-0000-0000-0017-000000000373}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0051-000000000052}, !- Target Object + 32, !- Outlet Port + {00000000-0000-0000-0051-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0051-000000000052}, !- Source Object + {00000000-0000-0000-0017-000000000374}, !- Handle + {00000000-0000-0000-0051-000000000097}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000005}, !- Target Object + {00000000-0000-0000-0015-000000000009}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000183}, !- Handle - {00000000-0000-0000-0015-000000000005}, !- Source Object + {00000000-0000-0000-0017-000000000375}, !- Handle + {00000000-0000-0000-0015-000000000009}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000053}, !- Target Object + {00000000-0000-0000-0051-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0051-000000000053}, !- Source Object + {00000000-0000-0000-0017-000000000376}, !- Handle + {00000000-0000-0000-0051-000000000098}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 10; !- Inlet Port + 32; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000185}, !- Handle + {00000000-0000-0000-0017-000000000377}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0051-000000000062}, !- Target Object + 33, !- Outlet Port + {00000000-0000-0000-0051-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0051-000000000062}, !- Source Object + {00000000-0000-0000-0017-000000000378}, !- Handle + {00000000-0000-0000-0051-000000000128}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object + {00000000-0000-0000-0016-000000000006}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object + {00000000-0000-0000-0017-000000000379}, !- Handle + {00000000-0000-0000-0016-000000000006}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000063}, !- Target Object + {00000000-0000-0000-0051-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000188}, !- Handle - {00000000-0000-0000-0051-000000000063}, !- Source Object + {00000000-0000-0000-0017-000000000380}, !- Handle + {00000000-0000-0000-0051-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 11; !- Inlet Port + 33; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000189}, !- Handle - {00000000-0000-0000-0051-000000000033}, !- Source Object + {00000000-0000-0000-0017-000000000381}, !- Handle + {00000000-0000-0000-0051-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000049}, !- Target Object + {00000000-0000-0000-0057-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000190}, !- Handle - {00000000-0000-0000-0057-000000000051}, !- Source Object + {00000000-0000-0000-0017-000000000382}, !- Handle + {00000000-0000-0000-0057-000000000021}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000010}, !- Target Object + {00000000-0000-0000-0051-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0051-000000000010}, !- Source Object + {00000000-0000-0000-0017-000000000383}, !- Handle + {00000000-0000-0000-0051-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000384}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000032}, !- Target Object + {00000000-0000-0000-0051-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000193}, !- Handle - {00000000-0000-0000-0051-000000000032}, !- Source Object + {00000000-0000-0000-0017-000000000385}, !- Handle + {00000000-0000-0000-0051-000000000046}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object + {00000000-0000-0000-0006-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object + {00000000-0000-0000-0017-000000000386}, !- Handle + {00000000-0000-0000-0006-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000033}, !- Target Object + {00000000-0000-0000-0051-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000195}, !- Handle + {00000000-0000-0000-0017-000000000387}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0051-000000000054}, !- Target Object + 34, !- Outlet Port + {00000000-0000-0000-0051-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0051-000000000054}, !- Source Object + {00000000-0000-0000-0017-000000000388}, !- Handle + {00000000-0000-0000-0051-000000000099}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000006}, !- Target Object + {00000000-0000-0000-0015-000000000010}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000197}, !- Handle - {00000000-0000-0000-0015-000000000006}, !- Source Object + {00000000-0000-0000-0017-000000000389}, !- Handle + {00000000-0000-0000-0015-000000000010}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000055}, !- Target Object + {00000000-0000-0000-0051-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0051-000000000055}, !- Source Object + {00000000-0000-0000-0017-000000000390}, !- Handle + {00000000-0000-0000-0051-000000000100}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 12; !- Inlet Port + 34; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000199}, !- Handle + {00000000-0000-0000-0017-000000000391}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0051-000000000064}, !- Target Object + 35, !- Outlet Port + {00000000-0000-0000-0051-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0051-000000000064}, !- Source Object + {00000000-0000-0000-0017-000000000392}, !- Handle + {00000000-0000-0000-0051-000000000130}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000005}, !- Target Object + {00000000-0000-0000-0016-000000000007}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0016-000000000005}, !- Source Object + {00000000-0000-0000-0017-000000000393}, !- Handle + {00000000-0000-0000-0016-000000000007}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000065}, !- Target Object + {00000000-0000-0000-0051-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000202}, !- Handle - {00000000-0000-0000-0051-000000000065}, !- Source Object + {00000000-0000-0000-0017-000000000394}, !- Handle + {00000000-0000-0000-0051-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 13; !- Inlet Port + 35; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000203}, !- Handle - {00000000-0000-0000-0051-000000000035}, !- Source Object + {00000000-0000-0000-0017-000000000395}, !- Handle + {00000000-0000-0000-0051-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0057-000000000052}, !- Target Object + {00000000-0000-0000-0057-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000204}, !- Handle - {00000000-0000-0000-0057-000000000054}, !- Source Object + {00000000-0000-0000-0017-000000000396}, !- Handle + {00000000-0000-0000-0057-000000000030}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000012}, !- Target Object + {00000000-0000-0000-0051-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0051-000000000012}, !- Source Object + {00000000-0000-0000-0017-000000000397}, !- Handle + {00000000-0000-0000-0051-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000398}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0051-000000000034}, !- Target Object + {00000000-0000-0000-0051-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000207}, !- Handle - {00000000-0000-0000-0051-000000000034}, !- Source Object + {00000000-0000-0000-0017-000000000399}, !- Handle + {00000000-0000-0000-0051-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object + {00000000-0000-0000-0006-000000000007}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000208}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object + {00000000-0000-0000-0017-000000000400}, !- Handle + {00000000-0000-0000-0006-000000000007}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000035}, !- Target Object + {00000000-0000-0000-0051-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000209}, !- Handle + {00000000-0000-0000-0017-000000000401}, !- Handle {00000000-0000-0000-0056-000000000004}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0051-000000000085}, !- Target Object + {00000000-0000-0000-0051-000000000167}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000210}, !- Handle + {00000000-0000-0000-0017-000000000402}, !- Handle {00000000-0000-0000-0019-000000000007}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0051-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0051-000000000086}, !- Source Object + {00000000-0000-0000-0017-000000000403}, !- Handle + {00000000-0000-0000-0051-000000000168}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000004}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000212}, !- Handle + {00000000-0000-0000-0017-000000000404}, !- Handle {00000000-0000-0000-0056-000000000004}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000083}, !- Target Object + {00000000-0000-0000-0051-000000000165}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0051-000000000083}, !- Source Object + {00000000-0000-0000-0017-000000000405}, !- Handle + {00000000-0000-0000-0051-000000000165}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000214}, !- Handle + {00000000-0000-0000-0017-000000000406}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000123}, !- Target Object + {00000000-0000-0000-0051-000000000205}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000215}, !- Handle - {00000000-0000-0000-0051-000000000084}, !- Source Object + {00000000-0000-0000-0017-000000000407}, !- Handle + {00000000-0000-0000-0051-000000000166}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000004}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0051-000000000085}, !- Source Object + {00000000-0000-0000-0017-000000000408}, !- Handle + {00000000-0000-0000-0051-000000000167}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000217}, !- Handle + {00000000-0000-0000-0017-000000000409}, !- Handle {00000000-0000-0000-0058-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000082}, !- Target Object + {00000000-0000-0000-0051-000000000164}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000218}, !- Handle - {00000000-0000-0000-0051-000000000082}, !- Source Object + {00000000-0000-0000-0017-000000000410}, !- Handle + {00000000-0000-0000-0051-000000000164}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000219}, !- Handle + {00000000-0000-0000-0017-000000000411}, !- Handle {00000000-0000-0000-0051-000000000001}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0096-000000000001}, !- Target Object 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000220}, !- Handle + {00000000-0000-0000-0017-000000000412}, !- Handle {00000000-0000-0000-0096-000000000001}, !- Source Object 32, !- Outlet Port {00000000-0000-0000-0051-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000221}, !- Handle + {00000000-0000-0000-0017-000000000413}, !- Handle {00000000-0000-0000-0051-000000000002}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000007}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000222}, !- Handle + {00000000-0000-0000-0017-000000000414}, !- Handle {00000000-0000-0000-0019-000000000007}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000121}, !- Target Object + {00000000-0000-0000-0051-000000000203}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0051-000000000121}, !- Source Object + {00000000-0000-0000-0017-000000000415}, !- Handle + {00000000-0000-0000-0051-000000000203}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000224}, !- Handle + {00000000-0000-0000-0017-000000000416}, !- Handle {00000000-0000-0000-0055-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000122}, !- Target Object + {00000000-0000-0000-0051-000000000204}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000225}, !- Handle - {00000000-0000-0000-0051-000000000122}, !- Source Object + {00000000-0000-0000-0017-000000000417}, !- Handle + {00000000-0000-0000-0051-000000000204}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000007}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0051-000000000123}, !- Source Object + {00000000-0000-0000-0017-000000000418}, !- Handle + {00000000-0000-0000-0051-000000000205}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000227}, !- Handle + {00000000-0000-0000-0017-000000000419}, !- Handle {00000000-0000-0000-0055-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000124}, !- Target Object + {00000000-0000-0000-0051-000000000206}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0051-000000000124}, !- Source Object + {00000000-0000-0000-0017-000000000420}, !- Handle + {00000000-0000-0000-0051-000000000206}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000229}, !- Handle + {00000000-0000-0000-0017-000000000421}, !- Handle {00000000-0000-0000-0018-000000000007}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000125}, !- Target Object + {00000000-0000-0000-0051-000000000207}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000230}, !- Handle - {00000000-0000-0000-0051-000000000125}, !- Source Object + {00000000-0000-0000-0017-000000000422}, !- Handle + {00000000-0000-0000-0051-000000000207}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000231}, !- Handle + {00000000-0000-0000-0017-000000000423}, !- Handle {00000000-0000-0000-0055-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000086}, !- Target Object + {00000000-0000-0000-0051-000000000168}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000232}, !- Handle + {00000000-0000-0000-0017-000000000424}, !- Handle {00000000-0000-0000-0018-000000000008}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0051-000000000113}, !- Target Object + {00000000-0000-0000-0051-000000000195}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000233}, !- Handle - {00000000-0000-0000-0051-000000000113}, !- Source Object + {00000000-0000-0000-0017-000000000425}, !- Handle + {00000000-0000-0000-0051-000000000195}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000234}, !- Handle + {00000000-0000-0000-0017-000000000426}, !- Handle {00000000-0000-0000-0055-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000084}, !- Target Object + {00000000-0000-0000-0051-000000000166}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000235}, !- Handle + {00000000-0000-0000-0017-000000000427}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0051-000000000072}, !- Target Object + {00000000-0000-0000-0051-000000000154}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0051-000000000072}, !- Source Object + {00000000-0000-0000-0017-000000000428}, !- Handle + {00000000-0000-0000-0051-000000000154}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000237}, !- Handle + {00000000-0000-0000-0017-000000000429}, !- Handle {00000000-0000-0000-0098-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000073}, !- Target Object + {00000000-0000-0000-0051-000000000155}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0051-000000000073}, !- Source Object + {00000000-0000-0000-0017-000000000430}, !- Handle + {00000000-0000-0000-0051-000000000155}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000239}, !- Handle + {00000000-0000-0000-0017-000000000431}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0051-000000000074}, !- Target Object + {00000000-0000-0000-0051-000000000156}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0051-000000000074}, !- Source Object + {00000000-0000-0000-0017-000000000432}, !- Handle + {00000000-0000-0000-0051-000000000156}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000241}, !- Handle + {00000000-0000-0000-0017-000000000433}, !- Handle {00000000-0000-0000-0098-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000075}, !- Target Object + {00000000-0000-0000-0051-000000000157}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0051-000000000075}, !- Source Object + {00000000-0000-0000-0017-000000000434}, !- Handle + {00000000-0000-0000-0051-000000000157}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000243}, !- Handle + {00000000-0000-0000-0017-000000000435}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0051-000000000076}, !- Target Object + {00000000-0000-0000-0051-000000000158}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0051-000000000076}, !- Source Object + {00000000-0000-0000-0017-000000000436}, !- Handle + {00000000-0000-0000-0051-000000000158}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000245}, !- Handle + {00000000-0000-0000-0017-000000000437}, !- Handle {00000000-0000-0000-0098-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000077}, !- Target Object + {00000000-0000-0000-0051-000000000159}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0051-000000000077}, !- Source Object + {00000000-0000-0000-0017-000000000438}, !- Handle + {00000000-0000-0000-0051-000000000159}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000247}, !- Handle + {00000000-0000-0000-0017-000000000439}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0051-000000000087}, !- Target Object + {00000000-0000-0000-0051-000000000169}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0051-000000000087}, !- Source Object + {00000000-0000-0000-0017-000000000440}, !- Handle + {00000000-0000-0000-0051-000000000169}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000249}, !- Handle + {00000000-0000-0000-0017-000000000441}, !- Handle {00000000-0000-0000-0098-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000088}, !- Target Object + {00000000-0000-0000-0051-000000000170}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0051-000000000088}, !- Source Object + {00000000-0000-0000-0017-000000000442}, !- Handle + {00000000-0000-0000-0051-000000000170}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000251}, !- Handle + {00000000-0000-0000-0017-000000000443}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0051-000000000089}, !- Target Object + {00000000-0000-0000-0051-000000000171}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0051-000000000089}, !- Source Object + {00000000-0000-0000-0017-000000000444}, !- Handle + {00000000-0000-0000-0051-000000000171}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000253}, !- Handle + {00000000-0000-0000-0017-000000000445}, !- Handle {00000000-0000-0000-0098-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000090}, !- Target Object + {00000000-0000-0000-0051-000000000172}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0051-000000000090}, !- Source Object + {00000000-0000-0000-0017-000000000446}, !- Handle + {00000000-0000-0000-0051-000000000172}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000255}, !- Handle + {00000000-0000-0000-0017-000000000447}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0051-000000000091}, !- Target Object + {00000000-0000-0000-0051-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0051-000000000091}, !- Source Object + {00000000-0000-0000-0017-000000000448}, !- Handle + {00000000-0000-0000-0051-000000000173}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000257}, !- Handle + {00000000-0000-0000-0017-000000000449}, !- Handle {00000000-0000-0000-0098-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000092}, !- Target Object + {00000000-0000-0000-0051-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0051-000000000092}, !- Source Object + {00000000-0000-0000-0017-000000000450}, !- Handle + {00000000-0000-0000-0051-000000000174}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000259}, !- Handle + {00000000-0000-0000-0017-000000000451}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0051-000000000093}, !- Target Object + {00000000-0000-0000-0051-000000000175}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000260}, !- Handle - {00000000-0000-0000-0051-000000000093}, !- Source Object + {00000000-0000-0000-0017-000000000452}, !- Handle + {00000000-0000-0000-0051-000000000175}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000261}, !- Handle + {00000000-0000-0000-0017-000000000453}, !- Handle {00000000-0000-0000-0098-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000094}, !- Target Object + {00000000-0000-0000-0051-000000000176}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000262}, !- Handle - {00000000-0000-0000-0051-000000000094}, !- Source Object + {00000000-0000-0000-0017-000000000454}, !- Handle + {00000000-0000-0000-0051-000000000176}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000263}, !- Handle + {00000000-0000-0000-0017-000000000455}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0051-000000000095}, !- Target Object + {00000000-0000-0000-0051-000000000177}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000264}, !- Handle - {00000000-0000-0000-0051-000000000095}, !- Source Object + {00000000-0000-0000-0017-000000000456}, !- Handle + {00000000-0000-0000-0051-000000000177}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000265}, !- Handle + {00000000-0000-0000-0017-000000000457}, !- Handle {00000000-0000-0000-0098-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000096}, !- Target Object + {00000000-0000-0000-0051-000000000178}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000266}, !- Handle - {00000000-0000-0000-0051-000000000096}, !- Source Object + {00000000-0000-0000-0017-000000000458}, !- Handle + {00000000-0000-0000-0051-000000000178}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 11; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000267}, !- Handle + {00000000-0000-0000-0017-000000000459}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0051-000000000097}, !- Target Object + {00000000-0000-0000-0051-000000000179}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000268}, !- Handle - {00000000-0000-0000-0051-000000000097}, !- Source Object + {00000000-0000-0000-0017-000000000460}, !- Handle + {00000000-0000-0000-0051-000000000179}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000269}, !- Handle + {00000000-0000-0000-0017-000000000461}, !- Handle {00000000-0000-0000-0098-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000098}, !- Target Object + {00000000-0000-0000-0051-000000000180}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000270}, !- Handle - {00000000-0000-0000-0051-000000000098}, !- Source Object + {00000000-0000-0000-0017-000000000462}, !- Handle + {00000000-0000-0000-0051-000000000180}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000271}, !- Handle + {00000000-0000-0000-0017-000000000463}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0051-000000000099}, !- Target Object + {00000000-0000-0000-0051-000000000181}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000272}, !- Handle - {00000000-0000-0000-0051-000000000099}, !- Source Object + {00000000-0000-0000-0017-000000000464}, !- Handle + {00000000-0000-0000-0051-000000000181}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000273}, !- Handle + {00000000-0000-0000-0017-000000000465}, !- Handle {00000000-0000-0000-0098-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000100}, !- Target Object + {00000000-0000-0000-0051-000000000182}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000274}, !- Handle - {00000000-0000-0000-0051-000000000100}, !- Source Object + {00000000-0000-0000-0017-000000000466}, !- Handle + {00000000-0000-0000-0051-000000000182}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 13; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000275}, !- Handle + {00000000-0000-0000-0017-000000000467}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0051-000000000101}, !- Target Object + {00000000-0000-0000-0051-000000000183}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000276}, !- Handle - {00000000-0000-0000-0051-000000000101}, !- Source Object + {00000000-0000-0000-0017-000000000468}, !- Handle + {00000000-0000-0000-0051-000000000183}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000277}, !- Handle + {00000000-0000-0000-0017-000000000469}, !- Handle {00000000-0000-0000-0098-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000102}, !- Target Object + {00000000-0000-0000-0051-000000000184}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000278}, !- Handle - {00000000-0000-0000-0051-000000000102}, !- Source Object + {00000000-0000-0000-0017-000000000470}, !- Handle + {00000000-0000-0000-0051-000000000184}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000279}, !- Handle + {00000000-0000-0000-0017-000000000471}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0051-000000000103}, !- Target Object + {00000000-0000-0000-0051-000000000185}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000280}, !- Handle - {00000000-0000-0000-0051-000000000103}, !- Source Object + {00000000-0000-0000-0017-000000000472}, !- Handle + {00000000-0000-0000-0051-000000000185}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000281}, !- Handle + {00000000-0000-0000-0017-000000000473}, !- Handle {00000000-0000-0000-0098-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000104}, !- Target Object + {00000000-0000-0000-0051-000000000186}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000282}, !- Handle - {00000000-0000-0000-0051-000000000104}, !- Source Object + {00000000-0000-0000-0017-000000000474}, !- Handle + {00000000-0000-0000-0051-000000000186}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000283}, !- Handle + {00000000-0000-0000-0017-000000000475}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0051-000000000105}, !- Target Object + {00000000-0000-0000-0051-000000000187}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000284}, !- Handle - {00000000-0000-0000-0051-000000000105}, !- Source Object + {00000000-0000-0000-0017-000000000476}, !- Handle + {00000000-0000-0000-0051-000000000187}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000285}, !- Handle + {00000000-0000-0000-0017-000000000477}, !- Handle {00000000-0000-0000-0098-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000106}, !- Target Object + {00000000-0000-0000-0051-000000000188}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000286}, !- Handle - {00000000-0000-0000-0051-000000000106}, !- Source Object + {00000000-0000-0000-0017-000000000478}, !- Handle + {00000000-0000-0000-0051-000000000188}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000287}, !- Handle + {00000000-0000-0000-0017-000000000479}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0051-000000000107}, !- Target Object + {00000000-0000-0000-0051-000000000189}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000288}, !- Handle - {00000000-0000-0000-0051-000000000107}, !- Source Object + {00000000-0000-0000-0017-000000000480}, !- Handle + {00000000-0000-0000-0051-000000000189}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000289}, !- Handle + {00000000-0000-0000-0017-000000000481}, !- Handle {00000000-0000-0000-0098-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000108}, !- Target Object + {00000000-0000-0000-0051-000000000190}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000290}, !- Handle - {00000000-0000-0000-0051-000000000108}, !- Source Object + {00000000-0000-0000-0017-000000000482}, !- Handle + {00000000-0000-0000-0051-000000000190}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000291}, !- Handle + {00000000-0000-0000-0017-000000000483}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0051-000000000109}, !- Target Object + {00000000-0000-0000-0051-000000000191}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000292}, !- Handle - {00000000-0000-0000-0051-000000000109}, !- Source Object + {00000000-0000-0000-0017-000000000484}, !- Handle + {00000000-0000-0000-0051-000000000191}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000293}, !- Handle + {00000000-0000-0000-0017-000000000485}, !- Handle {00000000-0000-0000-0098-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0051-000000000110}, !- Target Object + {00000000-0000-0000-0051-000000000192}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000294}, !- Handle - {00000000-0000-0000-0051-000000000110}, !- Source Object + {00000000-0000-0000-0017-000000000486}, !- Handle + {00000000-0000-0000-0051-000000000192}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 18; !- Inlet Port @@ -2656,7 +4768,29 @@ OS:Connector:Mixer, {00000000-0000-0000-0017-000000000184}, !- Inlet Branch Name 8 {00000000-0000-0000-0017-000000000188}, !- Inlet Branch Name 9 {00000000-0000-0000-0017-000000000198}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000202}; !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000202}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000218}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000242}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000252}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000256}, !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000266}, !- Inlet Branch Name 17 + {00000000-0000-0000-0017-000000000270}, !- Inlet Branch Name 18 + {00000000-0000-0000-0017-000000000280}, !- Inlet Branch Name 19 + {00000000-0000-0000-0017-000000000284}, !- Inlet Branch Name 20 + {00000000-0000-0000-0017-000000000294}, !- Inlet Branch Name 21 + {00000000-0000-0000-0017-000000000298}, !- Inlet Branch Name 22 + {00000000-0000-0000-0017-000000000314}, !- Inlet Branch Name 23 + {00000000-0000-0000-0017-000000000334}, !- Inlet Branch Name 24 + {00000000-0000-0000-0017-000000000338}, !- Inlet Branch Name 25 + {00000000-0000-0000-0017-000000000348}, !- Inlet Branch Name 26 + {00000000-0000-0000-0017-000000000352}, !- Inlet Branch Name 27 + {00000000-0000-0000-0017-000000000362}, !- Inlet Branch Name 28 + {00000000-0000-0000-0017-000000000366}, !- Inlet Branch Name 29 + {00000000-0000-0000-0017-000000000376}, !- Inlet Branch Name 30 + {00000000-0000-0000-0017-000000000380}, !- Inlet Branch Name 31 + {00000000-0000-0000-0017-000000000390}, !- Inlet Branch Name 32 + {00000000-0000-0000-0017-000000000394}; !- Inlet Branch Name 33 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000003}, !- Handle @@ -2670,7 +4804,9 @@ OS:Connector:Mixer, {00000000-0000-0000-0018-000000000004}, !- Handle Connector Mixer 4, !- Name {00000000-0000-0000-0017-000000000068}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000126}; !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000126}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000222}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000318}; !- Inlet Branch Name 3 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle @@ -2689,30 +4825,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0018-000000000007}, !- Handle Connector Mixer 7, !- Name - {00000000-0000-0000-0017-000000000229}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000221}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000225}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000421}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000413}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000417}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000008}, !- Handle Connector Mixer 8, !- Name - {00000000-0000-0000-0017-000000000232}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000228}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000242}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000246}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000250}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000254}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000258}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000262}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000266}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000270}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000274}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000278}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000282}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000286}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000290}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000294}; !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000424}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000420}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000430}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000434}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000438}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000442}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000446}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000450}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000454}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000458}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000462}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000466}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000470}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000474}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000478}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000482}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000486}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -2736,7 +4872,29 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000181}, !- Outlet Branch Name 8 {00000000-0000-0000-0017-000000000185}, !- Outlet Branch Name 9 {00000000-0000-0000-0017-000000000195}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000199}; !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000199}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000215}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000239}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000249}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000253}, !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000263}, !- Outlet Branch Name 17 + {00000000-0000-0000-0017-000000000267}, !- Outlet Branch Name 18 + {00000000-0000-0000-0017-000000000277}, !- Outlet Branch Name 19 + {00000000-0000-0000-0017-000000000281}, !- Outlet Branch Name 20 + {00000000-0000-0000-0017-000000000291}, !- Outlet Branch Name 21 + {00000000-0000-0000-0017-000000000295}, !- Outlet Branch Name 22 + {00000000-0000-0000-0017-000000000311}, !- Outlet Branch Name 23 + {00000000-0000-0000-0017-000000000331}, !- Outlet Branch Name 24 + {00000000-0000-0000-0017-000000000335}, !- Outlet Branch Name 25 + {00000000-0000-0000-0017-000000000345}, !- Outlet Branch Name 26 + {00000000-0000-0000-0017-000000000349}, !- Outlet Branch Name 27 + {00000000-0000-0000-0017-000000000359}, !- Outlet Branch Name 28 + {00000000-0000-0000-0017-000000000363}, !- Outlet Branch Name 29 + {00000000-0000-0000-0017-000000000373}, !- Outlet Branch Name 30 + {00000000-0000-0000-0017-000000000377}, !- Outlet Branch Name 31 + {00000000-0000-0000-0017-000000000387}, !- Outlet Branch Name 32 + {00000000-0000-0000-0017-000000000391}; !- Outlet Branch Name 33 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -2750,7 +4908,9 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000004}, !- Handle Connector Splitter 4, !- Name {00000000-0000-0000-0017-000000000066}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000067}; !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000067}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000219}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000315}; !- Outlet Branch Name 3 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle @@ -2769,30 +4929,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000007}, !- Handle Connector Splitter 7, !- Name - {00000000-0000-0000-0017-000000000218}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000210}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000222}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000410}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000402}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000414}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000008}, !- Handle Connector Splitter 8, !- Name - {00000000-0000-0000-0017-000000000213}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000214}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000239}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000243}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000247}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000251}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000255}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000259}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000263}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000267}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000271}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000275}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000279}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000283}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000287}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000291}; !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000405}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000406}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000427}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000431}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000435}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000439}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000443}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000447}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000451}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000455}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000459}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000463}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000467}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000471}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000475}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000479}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000483}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle @@ -3037,54 +5197,258 @@ OS:Construction, {00000000-0000-0000-0048-000000000004}, !- Layer 2 {00000000-0000-0000-0049-000000000002}; !- Layer 3 -OS:Construction, - {00000000-0000-0000-0020-000000000037}, !- Handle - Wall Adiabatic construction, !- Name - , !- Surface Rendering Name - {00000000-0000-0000-0048-000000000019}, !- Layer 1 - {00000000-0000-0000-0048-000000000019}; !- Layer 2 +OS:Construction, + {00000000-0000-0000-0020-000000000037}, !- Handle + Wall Adiabatic construction, !- Name + , !- Surface Rendering Name + {00000000-0000-0000-0048-000000000019}, !- Layer 1 + {00000000-0000-0000-0048-000000000019}; !- Layer 2 + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000001}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0065-000000000027}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0065-000000000025}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0065-000000000026}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000001}, !- Handle + Controller Water Coil 1, !- Name + {00000000-0000-0000-0015-000000000001}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000002}, !- Handle + Controller Water Coil 10, !- Name + {00000000-0000-0000-0015-000000000017}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000003}, !- Handle + Controller Water Coil 11, !- Name + {00000000-0000-0000-0015-000000000018}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000004}, !- Handle + Controller Water Coil 12, !- Name + {00000000-0000-0000-0015-000000000002}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000005}, !- Handle + Controller Water Coil 13, !- Name + {00000000-0000-0000-0015-000000000003}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000006}, !- Handle + Controller Water Coil 14, !- Name + {00000000-0000-0000-0015-000000000004}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000007}, !- Handle + Controller Water Coil 15, !- Name + {00000000-0000-0000-0015-000000000005}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000008}, !- Handle + Controller Water Coil 16, !- Name + {00000000-0000-0000-0014-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Controller:MechanicalVentilation, - {00000000-0000-0000-0021-000000000001}, !- Handle - Controller Mechanical Ventilation 1, !- Name - {00000000-0000-0000-0062-000000000001}, !- Availability Schedule - , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000009}, !- Handle + Controller Water Coil 17, !- Name + {00000000-0000-0000-0015-000000000006}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000010}, !- Handle + Controller Water Coil 18, !- Name + {00000000-0000-0000-0015-000000000007}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0065-000000000023}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000001}, !- Handle - Controller Water Coil 1, !- Name - {00000000-0000-0000-0015-000000000001}, !- Water Coil Name + {00000000-0000-0000-0023-000000000011}, !- Handle + Controller Water Coil 19, !- Name + {00000000-0000-0000-0015-000000000008}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3095,7 +5459,7 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000002}, !- Handle + {00000000-0000-0000-0023-000000000012}, !- Handle Controller Water Coil 2, !- Name {00000000-0000-0000-0014-000000000001}, !- Water Coil Name , !- Control Variable @@ -3108,9 +5472,35 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000003}, !- Handle + {00000000-0000-0000-0023-000000000013}, !- Handle + Controller Water Coil 20, !- Name + {00000000-0000-0000-0015-000000000009}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000014}, !- Handle + Controller Water Coil 21, !- Name + {00000000-0000-0000-0015-000000000010}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000015}, !- Handle Controller Water Coil 3, !- Name - {00000000-0000-0000-0015-000000000002}, !- Water Coil Name + {00000000-0000-0000-0015-000000000011}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3121,9 +5511,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000004}, !- Handle + {00000000-0000-0000-0023-000000000016}, !- Handle Controller Water Coil 4, !- Name - {00000000-0000-0000-0015-000000000003}, !- Water Coil Name + {00000000-0000-0000-0015-000000000012}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3134,9 +5524,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000005}, !- Handle + {00000000-0000-0000-0023-000000000017}, !- Handle Controller Water Coil 5, !- Name - {00000000-0000-0000-0015-000000000004}, !- Water Coil Name + {00000000-0000-0000-0015-000000000013}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3147,9 +5537,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000006}, !- Handle + {00000000-0000-0000-0023-000000000018}, !- Handle Controller Water Coil 6, !- Name - {00000000-0000-0000-0015-000000000005}, !- Water Coil Name + {00000000-0000-0000-0015-000000000014}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3160,9 +5550,22 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000007}, !- Handle + {00000000-0000-0000-0023-000000000019}, !- Handle Controller Water Coil 7, !- Name - {00000000-0000-0000-0015-000000000006}, !- Water Coil Name + {00000000-0000-0000-0015-000000000015}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000020}, !- Handle + Controller Water Coil 8, !- Name + {00000000-0000-0000-0015-000000000016}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3172,6 +5575,19 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000021}, !- Handle + Controller Water Coil 9, !- Name + {00000000-0000-0000-0014-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + OS:ConvergenceLimits, {00000000-0000-0000-0024-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -3184,7 +5600,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000099}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 1814.73060300518, !- Fan Power at Design Air Flow Rate {W} + 4558.19858083704, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -3275,6 +5691,34 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0026-000000000005}, !- Handle + WaterCooled_Screw_CAPFT_NECB2011, !- Name + 0.812998, !- Coefficient1 Constant + -0.0142532, !- Coefficient2 x + -0.00161799, !- Coefficient3 x**2 + 0.0263844, !- Coefficient4 y + -0.00091543, !- Coefficient5 y**2 + 0.00169601, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0026-000000000006}, !- Handle + WaterCooled_Screw_EIRFT_NECB2011, !- Name + 0.638103, !- Coefficient1 Constant + 0.00630158, !- Coefficient2 x + 0.00092327, !- Coefficient3 x**2 + -0.00455294, !- Coefficient4 y + 0.000825682, !- Coefficient5 y**2 + -0.00156152, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0026-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -3288,7 +5732,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000006}, !- Handle + {00000000-0000-0000-0026-000000000008}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -3361,6 +5805,15 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0028-000000000003}, !- Handle + WaterCooled_Screw_EIRFPLR_NECB2011, !- Name + 0.330188, !- Coefficient1 Constant + 0.235543, !- Coefficient2 x + 0.460708, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0028-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -3522,7 +5975,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__ClgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3530,6 +5983,38 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0036-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0036-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name + {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0036-000000000005}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__ClgSch0, !- Name + {00000000-0000-0000-0065-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0036-000000000006}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__HtgSch0, !- Name {00000000-0000-0000-0065-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -3538,41 +6023,147 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {8c2113bc-d3a7-45be-8024-df924f880063}<23.9 && {8c2113bc-d3a7-45be-8024-df924f880063}>1.7, !- Program Line 1 + SET {d9a189d6-7bcc-471d-9f4c-f659e224957d} = 29.4, !- Program Line 2 + SET {e411104c-2524-4fe7-a732-c64cc66b4f9d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {8c2113bc-d3a7-45be-8024-df924f880063}<23.9 && {8c2113bc-d3a7-45be-8024-df924f880063}>1.7, !- Program Line 4 + SET {d9a189d6-7bcc-471d-9f4c-f659e224957d} = 29.4, !- Program Line 5 + SET {e411104c-2524-4fe7-a732-c64cc66b4f9d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {8c2113bc-d3a7-45be-8024-df924f880063}<23.9 && {8c2113bc-d3a7-45be-8024-df924f880063}>1.7, !- Program Line 7 + SET {d9a189d6-7bcc-471d-9f4c-f659e224957d} = 29.4, !- Program Line 8 + SET {e411104c-2524-4fe7-a732-c64cc66b4f9d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {8c2113bc-d3a7-45be-8024-df924f880063}<23.9 && {8c2113bc-d3a7-45be-8024-df924f880063}>1.7, !- Program Line 10 + SET {d9a189d6-7bcc-471d-9f4c-f659e224957d} = 29.4, !- Program Line 11 + SET {e411104c-2524-4fe7-a732-c64cc66b4f9d} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {d9a189d6-7bcc-471d-9f4c-f659e224957d} = NULL, !- Program Line 14 + SET {e411104c-2524-4fe7-a732-c64cc66b4f9d} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0037-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1cf8f1b6-058a-41e7-9d9b-5e55bc1cb14f}<23.9 && {1cf8f1b6-058a-41e7-9d9b-5e55bc1cb14f}>1.7, !- Program Line 1 + SET {83fce726-ad36-467b-982c-43fa863f57f9} = 29.4, !- Program Line 2 + SET {2a9a9e7f-7eb9-4d86-af89-034f02466f87} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1cf8f1b6-058a-41e7-9d9b-5e55bc1cb14f}<23.9 && {1cf8f1b6-058a-41e7-9d9b-5e55bc1cb14f}>1.7, !- Program Line 4 + SET {83fce726-ad36-467b-982c-43fa863f57f9} = 29.4, !- Program Line 5 + SET {2a9a9e7f-7eb9-4d86-af89-034f02466f87} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1cf8f1b6-058a-41e7-9d9b-5e55bc1cb14f}<23.9 && {1cf8f1b6-058a-41e7-9d9b-5e55bc1cb14f}>1.7, !- Program Line 7 + SET {83fce726-ad36-467b-982c-43fa863f57f9} = 29.4, !- Program Line 8 + SET {2a9a9e7f-7eb9-4d86-af89-034f02466f87} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1cf8f1b6-058a-41e7-9d9b-5e55bc1cb14f}<23.9 && {1cf8f1b6-058a-41e7-9d9b-5e55bc1cb14f}>1.7, !- Program Line 10 + SET {83fce726-ad36-467b-982c-43fa863f57f9} = 29.4, !- Program Line 11 + SET {2a9a9e7f-7eb9-4d86-af89-034f02466f87} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {83fce726-ad36-467b-982c-43fa863f57f9} = NULL, !- Program Line 14 + SET {2a9a9e7f-7eb9-4d86-af89-034f02466f87} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0037-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {bd42973c-4e08-4466-b354-1388c0216281}<23.9 && {bd42973c-4e08-4466-b354-1388c0216281}>1.7, !- Program Line 1 - SET {a579354f-aa99-4d31-880b-31f380a940ba} = 29.4, !- Program Line 2 - SET {20e16a8b-80a4-49f1-bfb4-e1366c87a939} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {bd42973c-4e08-4466-b354-1388c0216281}<23.9 && {bd42973c-4e08-4466-b354-1388c0216281}>1.7, !- Program Line 4 - SET {a579354f-aa99-4d31-880b-31f380a940ba} = 29.4, !- Program Line 5 - SET {20e16a8b-80a4-49f1-bfb4-e1366c87a939} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {bd42973c-4e08-4466-b354-1388c0216281}<23.9 && {bd42973c-4e08-4466-b354-1388c0216281}>1.7, !- Program Line 7 - SET {a579354f-aa99-4d31-880b-31f380a940ba} = 29.4, !- Program Line 8 - SET {20e16a8b-80a4-49f1-bfb4-e1366c87a939} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {bd42973c-4e08-4466-b354-1388c0216281}<23.9 && {bd42973c-4e08-4466-b354-1388c0216281}>1.7, !- Program Line 10 - SET {a579354f-aa99-4d31-880b-31f380a940ba} = 29.4, !- Program Line 11 - SET {20e16a8b-80a4-49f1-bfb4-e1366c87a939} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {1abbe80b-447a-4c99-8322-f4587a7d0c6b}<23.9 && {1abbe80b-447a-4c99-8322-f4587a7d0c6b}>1.7, !- Program Line 1 + SET {4ad86fcd-2db1-4361-802a-0e3767edaab3} = 29.4, !- Program Line 2 + SET {12f02611-1fe0-45ee-b2cc-bd92ac24b84b} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {1abbe80b-447a-4c99-8322-f4587a7d0c6b}<23.9 && {1abbe80b-447a-4c99-8322-f4587a7d0c6b}>1.7, !- Program Line 4 + SET {4ad86fcd-2db1-4361-802a-0e3767edaab3} = 29.4, !- Program Line 5 + SET {12f02611-1fe0-45ee-b2cc-bd92ac24b84b} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {1abbe80b-447a-4c99-8322-f4587a7d0c6b}<23.9 && {1abbe80b-447a-4c99-8322-f4587a7d0c6b}>1.7, !- Program Line 7 + SET {4ad86fcd-2db1-4361-802a-0e3767edaab3} = 29.4, !- Program Line 8 + SET {12f02611-1fe0-45ee-b2cc-bd92ac24b84b} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {1abbe80b-447a-4c99-8322-f4587a7d0c6b}<23.9 && {1abbe80b-447a-4c99-8322-f4587a7d0c6b}>1.7, !- Program Line 10 + SET {4ad86fcd-2db1-4361-802a-0e3767edaab3} = 29.4, !- Program Line 11 + SET {12f02611-1fe0-45ee-b2cc-bd92ac24b84b} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {a579354f-aa99-4d31-880b-31f380a940ba} = NULL, !- Program Line 14 - SET {20e16a8b-80a4-49f1-bfb4-e1366c87a939} = NULL, !- Program Line 15 + SET {4ad86fcd-2db1-4361-802a-0e3767edaab3} = NULL, !- Program Line 14 + SET {12f02611-1fe0-45ee-b2cc-bd92ac24b84b} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0038-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0037-000000000002}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0038-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0037-000000000003}; !- Program Name 1 + OS:EnergyManagementSystem:Sensor, {00000000-0000-0000-0039-000000000001}, !- Handle OAT, !- Name Environment, !- Output Variable or Output Meter Index Key Name Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0039-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0039-000000000003}, !- Handle + OAT_2, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + OS:Facility, {00000000-0000-0000-0040-000000000001}; !- Handle OS:Fan:VariableVolume, {00000000-0000-0000-0041-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000232}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000233}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000328}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000329}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000003}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -3593,8 +6184,29 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000002}, !- Handle - Sys6 Supply Fan, !- Name + {00000000-0000-0000-0041-000000000004}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000227}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000225}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000005}, !- Handle + Sys6 Supply Fan 2, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -3609,6 +6221,27 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000323}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000321}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000006}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0017-000000000131}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000129}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -4087,17 +6720,49 @@ OS:ModelObjectList, {00000000-0000-0000-0050-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name +OS:ModelObjectList, + {00000000-0000-0000-0050-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0050-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0050-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0050-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0050-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0050-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0050-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0050-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name + OS:Node, {00000000-0000-0000-0051-000000000001}, !- Handle 126gal NaturalGas Water Heater - 85kBtu/hr 0.813 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000210}, !- Inlet Port - {00000000-0000-0000-0017-000000000219}; !- Outlet Port + {00000000-0000-0000-0017-000000000402}, !- Inlet Port + {00000000-0000-0000-0017-000000000411}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000002}, !- Handle 126gal NaturalGas Water Heater - 85kBtu/hr 0.813 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000220}, !- Inlet Port - {00000000-0000-0000-0017-000000000221}; !- Outlet Port + {00000000-0000-0000-0017-000000000412}, !- Inlet Port + {00000000-0000-0000-0017-000000000413}; !- Outlet Port OS:Node, {00000000-0000-0000-0051-000000000003}, !- Handle @@ -4179,798 +6844,1386 @@ OS:Node, OS:Node, {00000000-0000-0000-0051-000000000016}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000300}, !- Inlet Port + {00000000-0000-0000-0017-000000000301}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000017}, !- Handle + {00000000-0000-0000-0051-000000000018}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000286}, !- Inlet Port + {00000000-0000-0000-0017-000000000287}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000019}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000018}, !- Handle + {00000000-0000-0000-0051-000000000020}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000258}, !- Inlet Port + {00000000-0000-0000-0017-000000000259}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000021}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000019}, !- Handle + {00000000-0000-0000-0051-000000000022}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000272}, !- Inlet Port + {00000000-0000-0000-0017-000000000273}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000023}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000020}, !- Handle + {00000000-0000-0000-0051-000000000024}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000244}, !- Inlet Port + {00000000-0000-0000-0017-000000000245}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000025}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000021}, !- Handle + {00000000-0000-0000-0051-000000000026}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000368}, !- Inlet Port + {00000000-0000-0000-0017-000000000369}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000027}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000022}, !- Handle + {00000000-0000-0000-0051-000000000028}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000340}, !- Inlet Port + {00000000-0000-0000-0017-000000000341}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000029}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000023}, !- Handle + {00000000-0000-0000-0051-000000000030}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000382}, !- Inlet Port + {00000000-0000-0000-0017-000000000383}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000031}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000024}, !- Handle + {00000000-0000-0000-0051-000000000032}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000396}, !- Inlet Port + {00000000-0000-0000-0017-000000000397}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000033}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000025}, !- Handle + {00000000-0000-0000-0051-000000000034}, !- Handle + ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000354}, !- Inlet Port + {00000000-0000-0000-0017-000000000355}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000035}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000026}, !- Handle + {00000000-0000-0000-0051-000000000036}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000150}, !- Inlet Port {00000000-0000-0000-0017-000000000151}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000027}, !- Handle + {00000000-0000-0000-0051-000000000037}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000152}, !- Inlet Port {00000000-0000-0000-0017-000000000147}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000028}, !- Handle + {00000000-0000-0000-0051-000000000038}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000302}, !- Inlet Port + {00000000-0000-0000-0017-000000000303}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000039}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000304}, !- Inlet Port + {00000000-0000-0000-0017-000000000299}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000040}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000342}, !- Inlet Port + {00000000-0000-0000-0017-000000000343}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000041}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000344}, !- Inlet Port + {00000000-0000-0000-0017-000000000339}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000042}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000356}, !- Inlet Port + {00000000-0000-0000-0017-000000000357}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000043}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000358}, !- Inlet Port + {00000000-0000-0000-0017-000000000353}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000044}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000370}, !- Inlet Port + {00000000-0000-0000-0017-000000000371}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000045}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000372}, !- Inlet Port + {00000000-0000-0000-0017-000000000367}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000046}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000384}, !- Inlet Port + {00000000-0000-0000-0017-000000000385}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000047}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000386}, !- Inlet Port + {00000000-0000-0000-0017-000000000381}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000398}, !- Inlet Port + {00000000-0000-0000-0017-000000000399}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000400}, !- Inlet Port + {00000000-0000-0000-0017-000000000395}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000050}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000164}, !- Inlet Port {00000000-0000-0000-0017-000000000165}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000029}, !- Handle + {00000000-0000-0000-0051-000000000051}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000166}, !- Inlet Port {00000000-0000-0000-0017-000000000161}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000030}, !- Handle + {00000000-0000-0000-0051-000000000052}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000178}, !- Inlet Port {00000000-0000-0000-0017-000000000179}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000031}, !- Handle + {00000000-0000-0000-0051-000000000053}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000180}, !- Inlet Port {00000000-0000-0000-0017-000000000175}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000032}, !- Handle + {00000000-0000-0000-0051-000000000054}, !- Handle Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000192}, !- Inlet Port {00000000-0000-0000-0017-000000000193}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000033}, !- Handle + {00000000-0000-0000-0051-000000000055}, !- Handle Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000194}, !- Inlet Port {00000000-0000-0000-0017-000000000189}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000034}, !- Handle + {00000000-0000-0000-0051-000000000056}, !- Handle Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000206}, !- Inlet Port {00000000-0000-0000-0017-000000000207}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000035}, !- Handle + {00000000-0000-0000-0051-000000000057}, !- Handle Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000208}, !- Inlet Port {00000000-0000-0000-0017-000000000203}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000036}, !- Handle + {00000000-0000-0000-0051-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000246}, !- Inlet Port + {00000000-0000-0000-0017-000000000247}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000248}, !- Inlet Port + {00000000-0000-0000-0017-000000000243}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000260}, !- Inlet Port + {00000000-0000-0000-0017-000000000261}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000262}, !- Inlet Port + {00000000-0000-0000-0017-000000000257}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000274}, !- Inlet Port + {00000000-0000-0000-0017-000000000275}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000276}, !- Inlet Port + {00000000-0000-0000-0017-000000000271}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000288}, !- Inlet Port + {00000000-0000-0000-0017-000000000289}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000290}, !- Inlet Port + {00000000-0000-0000-0017-000000000285}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000066}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000065}, !- Inlet Port {00000000-0000-0000-0017-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000037}, !- Handle + {00000000-0000-0000-0051-000000000067}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000038}, !- Handle + {00000000-0000-0000-0051-000000000068}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000062}, !- Inlet Port {00000000-0000-0000-0017-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000039}, !- Handle + {00000000-0000-0000-0051-000000000069}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000086}, !- Inlet Port {00000000-0000-0000-0017-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000040}, !- Handle + {00000000-0000-0000-0051-000000000070}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000067}, !- Inlet Port {00000000-0000-0000-0017-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000041}, !- Handle - Coil Cooling Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000132}, !- Inlet Port - {00000000-0000-0000-0017-000000000133}; !- Outlet Port + {00000000-0000-0000-0051-000000000071}, !- Handle + Coil Cooling Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000132}, !- Inlet Port + {00000000-0000-0000-0017-000000000133}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000072}, !- Handle + Coil Cooling Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000125}, !- Inlet Port + {00000000-0000-0000-0017-000000000126}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000073}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000219}, !- Inlet Port + {00000000-0000-0000-0017-000000000220}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000074}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000228}, !- Inlet Port + {00000000-0000-0000-0017-000000000229}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000075}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000221}, !- Inlet Port + {00000000-0000-0000-0017-000000000222}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000076}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000315}, !- Inlet Port + {00000000-0000-0000-0017-000000000316}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000077}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000324}, !- Inlet Port + {00000000-0000-0000-0017-000000000325}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000078}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000317}, !- Inlet Port + {00000000-0000-0000-0017-000000000318}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000079}, !- Handle + Coil Heating Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000042}, !- Inlet Port + {00000000-0000-0000-0017-000000000121}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000080}, !- Handle + Coil Heating Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000130}, !- Inlet Port + {00000000-0000-0000-0017-000000000131}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000081}, !- Handle + Coil Heating Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000122}, !- Inlet Port + {00000000-0000-0000-0017-000000000123}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000082}, !- Handle + Coil Heating Water 10 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000263}, !- Inlet Port + {00000000-0000-0000-0017-000000000264}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000083}, !- Handle + Coil Heating Water 10 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000265}, !- Inlet Port + {00000000-0000-0000-0017-000000000266}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000084}, !- Handle + Coil Heating Water 11 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000277}, !- Inlet Port + {00000000-0000-0000-0017-000000000278}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000085}, !- Handle + Coil Heating Water 11 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000279}, !- Inlet Port + {00000000-0000-0000-0017-000000000280}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000086}, !- Handle + Coil Heating Water 12 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000291}, !- Inlet Port + {00000000-0000-0000-0017-000000000292}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000087}, !- Handle + Coil Heating Water 12 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000293}, !- Inlet Port + {00000000-0000-0000-0017-000000000294}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000088}, !- Handle + Coil Heating Water 13 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000311}, !- Inlet Port + {00000000-0000-0000-0017-000000000312}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000089}, !- Handle + Coil Heating Water 13 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000322}, !- Inlet Port + {00000000-0000-0000-0017-000000000323}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000090}, !- Handle + Coil Heating Water 13 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000313}, !- Inlet Port + {00000000-0000-0000-0017-000000000314}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000091}, !- Handle + Coil Heating Water 14 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000331}, !- Inlet Port + {00000000-0000-0000-0017-000000000332}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000092}, !- Handle + Coil Heating Water 14 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000333}, !- Inlet Port + {00000000-0000-0000-0017-000000000334}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000093}, !- Handle + Coil Heating Water 15 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000345}, !- Inlet Port + {00000000-0000-0000-0017-000000000346}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000094}, !- Handle + Coil Heating Water 15 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000347}, !- Inlet Port + {00000000-0000-0000-0017-000000000348}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000095}, !- Handle + Coil Heating Water 16 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000359}, !- Inlet Port + {00000000-0000-0000-0017-000000000360}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000042}, !- Handle - Coil Cooling Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000125}, !- Inlet Port - {00000000-0000-0000-0017-000000000126}; !- Outlet Port + {00000000-0000-0000-0051-000000000096}, !- Handle + Coil Heating Water 16 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000361}, !- Inlet Port + {00000000-0000-0000-0017-000000000362}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000043}, !- Handle - Coil Heating Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000042}, !- Inlet Port - {00000000-0000-0000-0017-000000000121}; !- Outlet Port + {00000000-0000-0000-0051-000000000097}, !- Handle + Coil Heating Water 17 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000373}, !- Inlet Port + {00000000-0000-0000-0017-000000000374}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000044}, !- Handle - Coil Heating Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000130}, !- Inlet Port - {00000000-0000-0000-0017-000000000131}; !- Outlet Port + {00000000-0000-0000-0051-000000000098}, !- Handle + Coil Heating Water 17 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000375}, !- Inlet Port + {00000000-0000-0000-0017-000000000376}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000045}, !- Handle - Coil Heating Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000122}, !- Inlet Port - {00000000-0000-0000-0017-000000000123}; !- Outlet Port + {00000000-0000-0000-0051-000000000099}, !- Handle + Coil Heating Water 18 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000387}, !- Inlet Port + {00000000-0000-0000-0017-000000000388}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000046}, !- Handle + {00000000-0000-0000-0051-000000000100}, !- Handle + Coil Heating Water 18 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000389}, !- Inlet Port + {00000000-0000-0000-0017-000000000390}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000101}, !- Handle Coil Heating Water 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000139}, !- Inlet Port {00000000-0000-0000-0017-000000000140}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000047}, !- Handle + {00000000-0000-0000-0051-000000000102}, !- Handle Coil Heating Water 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000141}, !- Inlet Port {00000000-0000-0000-0017-000000000142}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000048}, !- Handle + {00000000-0000-0000-0051-000000000103}, !- Handle Coil Heating Water 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000153}, !- Inlet Port {00000000-0000-0000-0017-000000000154}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000049}, !- Handle + {00000000-0000-0000-0051-000000000104}, !- Handle Coil Heating Water 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000155}, !- Inlet Port {00000000-0000-0000-0017-000000000156}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000050}, !- Handle + {00000000-0000-0000-0051-000000000105}, !- Handle Coil Heating Water 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000167}, !- Inlet Port {00000000-0000-0000-0017-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000051}, !- Handle + {00000000-0000-0000-0051-000000000106}, !- Handle Coil Heating Water 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000169}, !- Inlet Port {00000000-0000-0000-0017-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000052}, !- Handle + {00000000-0000-0000-0051-000000000107}, !- Handle Coil Heating Water 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000181}, !- Inlet Port {00000000-0000-0000-0017-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000053}, !- Handle + {00000000-0000-0000-0051-000000000108}, !- Handle Coil Heating Water 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000183}, !- Inlet Port {00000000-0000-0000-0017-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000054}, !- Handle + {00000000-0000-0000-0051-000000000109}, !- Handle Coil Heating Water 6 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000195}, !- Inlet Port {00000000-0000-0000-0017-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000055}, !- Handle + {00000000-0000-0000-0051-000000000110}, !- Handle Coil Heating Water 6 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000197}, !- Inlet Port {00000000-0000-0000-0017-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000056}, !- Handle + {00000000-0000-0000-0051-000000000111}, !- Handle + Coil Heating Water 7 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000215}, !- Inlet Port + {00000000-0000-0000-0017-000000000216}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000112}, !- Handle + Coil Heating Water 7 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000226}, !- Inlet Port + {00000000-0000-0000-0017-000000000227}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000113}, !- Handle + Coil Heating Water 7 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000217}, !- Inlet Port + {00000000-0000-0000-0017-000000000218}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000114}, !- Handle + Coil Heating Water 8 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000235}, !- Inlet Port + {00000000-0000-0000-0017-000000000236}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000115}, !- Handle + Coil Heating Water 8 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000237}, !- Inlet Port + {00000000-0000-0000-0017-000000000238}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000116}, !- Handle + Coil Heating Water 9 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000249}, !- Inlet Port + {00000000-0000-0000-0017-000000000250}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000117}, !- Handle + Coil Heating Water 9 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000251}, !- Inlet Port + {00000000-0000-0000-0017-000000000252}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000118}, !- Handle Coil Heating Water Baseboard 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000143}, !- Inlet Port {00000000-0000-0000-0017-000000000144}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000057}, !- Handle + {00000000-0000-0000-0051-000000000119}, !- Handle Coil Heating Water Baseboard 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000145}, !- Inlet Port {00000000-0000-0000-0017-000000000146}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000058}, !- Handle + {00000000-0000-0000-0051-000000000120}, !- Handle + Coil Heating Water Baseboard 10 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000295}, !- Inlet Port + {00000000-0000-0000-0017-000000000296}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000121}, !- Handle + Coil Heating Water Baseboard 10 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000297}, !- Inlet Port + {00000000-0000-0000-0017-000000000298}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000122}, !- Handle + Coil Heating Water Baseboard 11 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000335}, !- Inlet Port + {00000000-0000-0000-0017-000000000336}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000123}, !- Handle + Coil Heating Water Baseboard 11 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000337}, !- Inlet Port + {00000000-0000-0000-0017-000000000338}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000124}, !- Handle + Coil Heating Water Baseboard 12 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000349}, !- Inlet Port + {00000000-0000-0000-0017-000000000350}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000125}, !- Handle + Coil Heating Water Baseboard 12 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000351}, !- Inlet Port + {00000000-0000-0000-0017-000000000352}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000126}, !- Handle + Coil Heating Water Baseboard 13 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000363}, !- Inlet Port + {00000000-0000-0000-0017-000000000364}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000127}, !- Handle + Coil Heating Water Baseboard 13 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000365}, !- Inlet Port + {00000000-0000-0000-0017-000000000366}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000128}, !- Handle + Coil Heating Water Baseboard 14 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000377}, !- Inlet Port + {00000000-0000-0000-0017-000000000378}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000129}, !- Handle + Coil Heating Water Baseboard 14 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000379}, !- Inlet Port + {00000000-0000-0000-0017-000000000380}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000130}, !- Handle + Coil Heating Water Baseboard 15 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000391}, !- Inlet Port + {00000000-0000-0000-0017-000000000392}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000131}, !- Handle + Coil Heating Water Baseboard 15 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000393}, !- Inlet Port + {00000000-0000-0000-0017-000000000394}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000132}, !- Handle Coil Heating Water Baseboard 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000157}, !- Inlet Port {00000000-0000-0000-0017-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000059}, !- Handle + {00000000-0000-0000-0051-000000000133}, !- Handle Coil Heating Water Baseboard 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000159}, !- Inlet Port {00000000-0000-0000-0017-000000000160}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000060}, !- Handle + {00000000-0000-0000-0051-000000000134}, !- Handle Coil Heating Water Baseboard 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000171}, !- Inlet Port {00000000-0000-0000-0017-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000061}, !- Handle + {00000000-0000-0000-0051-000000000135}, !- Handle Coil Heating Water Baseboard 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000173}, !- Inlet Port {00000000-0000-0000-0017-000000000174}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000062}, !- Handle + {00000000-0000-0000-0051-000000000136}, !- Handle Coil Heating Water Baseboard 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000185}, !- Inlet Port {00000000-0000-0000-0017-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000063}, !- Handle + {00000000-0000-0000-0051-000000000137}, !- Handle Coil Heating Water Baseboard 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000187}, !- Inlet Port {00000000-0000-0000-0017-000000000188}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000064}, !- Handle + {00000000-0000-0000-0051-000000000138}, !- Handle Coil Heating Water Baseboard 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000199}, !- Inlet Port {00000000-0000-0000-0017-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000065}, !- Handle + {00000000-0000-0000-0051-000000000139}, !- Handle Coil Heating Water Baseboard 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000201}, !- Inlet Port {00000000-0000-0000-0017-000000000202}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000066}, !- Handle + {00000000-0000-0000-0051-000000000140}, !- Handle + Coil Heating Water Baseboard 6 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000239}, !- Inlet Port + {00000000-0000-0000-0017-000000000240}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000141}, !- Handle + Coil Heating Water Baseboard 6 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000241}, !- Inlet Port + {00000000-0000-0000-0017-000000000242}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000142}, !- Handle + Coil Heating Water Baseboard 7 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000253}, !- Inlet Port + {00000000-0000-0000-0017-000000000254}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000143}, !- Handle + Coil Heating Water Baseboard 7 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000255}, !- Inlet Port + {00000000-0000-0000-0017-000000000256}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000144}, !- Handle + Coil Heating Water Baseboard 8 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000267}, !- Inlet Port + {00000000-0000-0000-0017-000000000268}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000145}, !- Handle + Coil Heating Water Baseboard 8 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000269}, !- Inlet Port + {00000000-0000-0000-0017-000000000270}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000146}, !- Handle + Coil Heating Water Baseboard 9 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000281}, !- Inlet Port + {00000000-0000-0000-0017-000000000282}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000147}, !- Handle + Coil Heating Water Baseboard 9 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000283}, !- Inlet Port + {00000000-0000-0000-0017-000000000284}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000148}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000067}, !- Handle + {00000000-0000-0000-0051-000000000149}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000068}, !- Handle + {00000000-0000-0000-0051-000000000150}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000069}, !- Handle + {00000000-0000-0000-0051-000000000151}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000107}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000070}, !- Handle + {00000000-0000-0000-0051-000000000152}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000071}, !- Handle + {00000000-0000-0000-0051-000000000153}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000099}, !- Inlet Port {00000000-0000-0000-0017-000000000100}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000072}, !- Handle + {00000000-0000-0000-0051-000000000154}, !- Handle Core_bottom WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000235}, !- Inlet Port - {00000000-0000-0000-0017-000000000236}; !- Outlet Port + {00000000-0000-0000-0017-000000000427}, !- Inlet Port + {00000000-0000-0000-0017-000000000428}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000073}, !- Handle + {00000000-0000-0000-0051-000000000155}, !- Handle Core_bottom WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000237}, !- Inlet Port - {00000000-0000-0000-0017-000000000238}; !- Outlet Port + {00000000-0000-0000-0017-000000000429}, !- Inlet Port + {00000000-0000-0000-0017-000000000430}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000074}, !- Handle + {00000000-0000-0000-0051-000000000156}, !- Handle Core_mid WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000239}, !- Inlet Port - {00000000-0000-0000-0017-000000000240}; !- Outlet Port + {00000000-0000-0000-0017-000000000431}, !- Inlet Port + {00000000-0000-0000-0017-000000000432}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000075}, !- Handle + {00000000-0000-0000-0051-000000000157}, !- Handle Core_mid WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000241}, !- Inlet Port - {00000000-0000-0000-0017-000000000242}; !- Outlet Port + {00000000-0000-0000-0017-000000000433}, !- Inlet Port + {00000000-0000-0000-0017-000000000434}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000076}, !- Handle + {00000000-0000-0000-0051-000000000158}, !- Handle Core_top WUC 0.38gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000243}, !- Inlet Port - {00000000-0000-0000-0017-000000000244}; !- Outlet Port + {00000000-0000-0000-0017-000000000435}, !- Inlet Port + {00000000-0000-0000-0017-000000000436}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000077}, !- Handle + {00000000-0000-0000-0051-000000000159}, !- Handle Core_top WUC 0.38gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000245}, !- Inlet Port - {00000000-0000-0000-0017-000000000246}; !- Outlet Port + {00000000-0000-0000-0017-000000000437}, !- Inlet Port + {00000000-0000-0000-0017-000000000438}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000078}, !- Handle + {00000000-0000-0000-0051-000000000160}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000079}, !- Handle + {00000000-0000-0000-0051-000000000161}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port {00000000-0000-0000-0017-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000080}, !- Handle + {00000000-0000-0000-0051-000000000162}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port {00000000-0000-0000-0017-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000081}, !- Handle + {00000000-0000-0000-0051-000000000163}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000061}, !- Inlet Port {00000000-0000-0000-0017-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000082}, !- Handle + {00000000-0000-0000-0051-000000000164}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000217}, !- Inlet Port - {00000000-0000-0000-0017-000000000218}; !- Outlet Port + {00000000-0000-0000-0017-000000000409}, !- Inlet Port + {00000000-0000-0000-0017-000000000410}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000083}, !- Handle + {00000000-0000-0000-0051-000000000165}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Port - {00000000-0000-0000-0017-000000000213}; !- Outlet Port + {00000000-0000-0000-0017-000000000404}, !- Inlet Port + {00000000-0000-0000-0017-000000000405}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000084}, !- Handle + {00000000-0000-0000-0051-000000000166}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000234}, !- Inlet Port - {00000000-0000-0000-0017-000000000215}; !- Outlet Port + {00000000-0000-0000-0017-000000000426}, !- Inlet Port + {00000000-0000-0000-0017-000000000407}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000085}, !- Handle + {00000000-0000-0000-0051-000000000167}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000209}, !- Inlet Port - {00000000-0000-0000-0017-000000000216}; !- Outlet Port + {00000000-0000-0000-0017-000000000401}, !- Inlet Port + {00000000-0000-0000-0017-000000000408}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000086}, !- Handle + {00000000-0000-0000-0051-000000000168}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000231}, !- Inlet Port - {00000000-0000-0000-0017-000000000211}; !- Outlet Port + {00000000-0000-0000-0017-000000000423}, !- Inlet Port + {00000000-0000-0000-0017-000000000403}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000087}, !- Handle + {00000000-0000-0000-0051-000000000169}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000247}, !- Inlet Port - {00000000-0000-0000-0017-000000000248}; !- Outlet Port + {00000000-0000-0000-0017-000000000439}, !- Inlet Port + {00000000-0000-0000-0017-000000000440}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000088}, !- Handle + {00000000-0000-0000-0051-000000000170}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000249}, !- Inlet Port - {00000000-0000-0000-0017-000000000250}; !- Outlet Port + {00000000-0000-0000-0017-000000000441}, !- Inlet Port + {00000000-0000-0000-0017-000000000442}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000089}, !- Handle + {00000000-0000-0000-0051-000000000171}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000251}, !- Inlet Port - {00000000-0000-0000-0017-000000000252}; !- Outlet Port + {00000000-0000-0000-0017-000000000443}, !- Inlet Port + {00000000-0000-0000-0017-000000000444}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000090}, !- Handle + {00000000-0000-0000-0051-000000000172}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000253}, !- Inlet Port - {00000000-0000-0000-0017-000000000254}; !- Outlet Port + {00000000-0000-0000-0017-000000000445}, !- Inlet Port + {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000091}, !- Handle + {00000000-0000-0000-0051-000000000173}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000255}, !- Inlet Port - {00000000-0000-0000-0017-000000000256}; !- Outlet Port + {00000000-0000-0000-0017-000000000447}, !- Inlet Port + {00000000-0000-0000-0017-000000000448}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000092}, !- Handle + {00000000-0000-0000-0051-000000000174}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000257}, !- Inlet Port - {00000000-0000-0000-0017-000000000258}; !- Outlet Port + {00000000-0000-0000-0017-000000000449}, !- Inlet Port + {00000000-0000-0000-0017-000000000450}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000093}, !- Handle + {00000000-0000-0000-0051-000000000175}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000259}, !- Inlet Port - {00000000-0000-0000-0017-000000000260}; !- Outlet Port + {00000000-0000-0000-0017-000000000451}, !- Inlet Port + {00000000-0000-0000-0017-000000000452}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000094}, !- Handle + {00000000-0000-0000-0051-000000000176}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000261}, !- Inlet Port - {00000000-0000-0000-0017-000000000262}; !- Outlet Port + {00000000-0000-0000-0017-000000000453}, !- Inlet Port + {00000000-0000-0000-0017-000000000454}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000095}, !- Handle + {00000000-0000-0000-0051-000000000177}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000263}, !- Inlet Port - {00000000-0000-0000-0017-000000000264}; !- Outlet Port + {00000000-0000-0000-0017-000000000455}, !- Inlet Port + {00000000-0000-0000-0017-000000000456}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000096}, !- Handle + {00000000-0000-0000-0051-000000000178}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000265}, !- Inlet Port - {00000000-0000-0000-0017-000000000266}; !- Outlet Port + {00000000-0000-0000-0017-000000000457}, !- Inlet Port + {00000000-0000-0000-0017-000000000458}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000097}, !- Handle + {00000000-0000-0000-0051-000000000179}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000267}, !- Inlet Port - {00000000-0000-0000-0017-000000000268}; !- Outlet Port + {00000000-0000-0000-0017-000000000459}, !- Inlet Port + {00000000-0000-0000-0017-000000000460}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000098}, !- Handle + {00000000-0000-0000-0051-000000000180}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000269}, !- Inlet Port - {00000000-0000-0000-0017-000000000270}; !- Outlet Port + {00000000-0000-0000-0017-000000000461}, !- Inlet Port + {00000000-0000-0000-0017-000000000462}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000099}, !- Handle + {00000000-0000-0000-0051-000000000181}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000271}, !- Inlet Port - {00000000-0000-0000-0017-000000000272}; !- Outlet Port + {00000000-0000-0000-0017-000000000463}, !- Inlet Port + {00000000-0000-0000-0017-000000000464}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000100}, !- Handle + {00000000-0000-0000-0051-000000000182}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000273}, !- Inlet Port - {00000000-0000-0000-0017-000000000274}; !- Outlet Port + {00000000-0000-0000-0017-000000000465}, !- Inlet Port + {00000000-0000-0000-0017-000000000466}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000101}, !- Handle + {00000000-0000-0000-0051-000000000183}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000275}, !- Inlet Port - {00000000-0000-0000-0017-000000000276}; !- Outlet Port + {00000000-0000-0000-0017-000000000467}, !- Inlet Port + {00000000-0000-0000-0017-000000000468}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000102}, !- Handle + {00000000-0000-0000-0051-000000000184}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000277}, !- Inlet Port - {00000000-0000-0000-0017-000000000278}; !- Outlet Port + {00000000-0000-0000-0017-000000000469}, !- Inlet Port + {00000000-0000-0000-0017-000000000470}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000103}, !- Handle + {00000000-0000-0000-0051-000000000185}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000279}, !- Inlet Port - {00000000-0000-0000-0017-000000000280}; !- Outlet Port + {00000000-0000-0000-0017-000000000471}, !- Inlet Port + {00000000-0000-0000-0017-000000000472}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000104}, !- Handle + {00000000-0000-0000-0051-000000000186}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000281}, !- Inlet Port - {00000000-0000-0000-0017-000000000282}; !- Outlet Port + {00000000-0000-0000-0017-000000000473}, !- Inlet Port + {00000000-0000-0000-0017-000000000474}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000105}, !- Handle + {00000000-0000-0000-0051-000000000187}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000283}, !- Inlet Port - {00000000-0000-0000-0017-000000000284}; !- Outlet Port + {00000000-0000-0000-0017-000000000475}, !- Inlet Port + {00000000-0000-0000-0017-000000000476}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000106}, !- Handle + {00000000-0000-0000-0051-000000000188}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000285}, !- Inlet Port - {00000000-0000-0000-0017-000000000286}; !- Outlet Port + {00000000-0000-0000-0017-000000000477}, !- Inlet Port + {00000000-0000-0000-0017-000000000478}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000107}, !- Handle + {00000000-0000-0000-0051-000000000189}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000287}, !- Inlet Port - {00000000-0000-0000-0017-000000000288}; !- Outlet Port + {00000000-0000-0000-0017-000000000479}, !- Inlet Port + {00000000-0000-0000-0017-000000000480}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000108}, !- Handle + {00000000-0000-0000-0051-000000000190}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000289}, !- Inlet Port - {00000000-0000-0000-0017-000000000290}; !- Outlet Port + {00000000-0000-0000-0017-000000000481}, !- Inlet Port + {00000000-0000-0000-0017-000000000482}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000109}, !- Handle + {00000000-0000-0000-0051-000000000191}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000291}, !- Inlet Port - {00000000-0000-0000-0017-000000000292}; !- Outlet Port + {00000000-0000-0000-0017-000000000483}, !- Inlet Port + {00000000-0000-0000-0017-000000000484}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000110}, !- Handle + {00000000-0000-0000-0051-000000000192}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000293}, !- Inlet Port - {00000000-0000-0000-0017-000000000294}; !- Outlet Port + {00000000-0000-0000-0017-000000000485}, !- Inlet Port + {00000000-0000-0000-0017-000000000486}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000111}, !- Handle + {00000000-0000-0000-0051-000000000193}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000112}, !- Handle + {00000000-0000-0000-0051-000000000194}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000057}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000113}, !- Handle + {00000000-0000-0000-0051-000000000195}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000232}, !- Inlet Port - {00000000-0000-0000-0017-000000000233}; !- Outlet Port + {00000000-0000-0000-0017-000000000424}, !- Inlet Port + {00000000-0000-0000-0017-000000000425}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000114}, !- Handle + {00000000-0000-0000-0051-000000000196}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000059}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000115}, !- Handle + {00000000-0000-0000-0051-000000000197}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000080}, !- Inlet Port {00000000-0000-0000-0017-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000116}, !- Handle + {00000000-0000-0000-0051-000000000198}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000082}, !- Inlet Port {00000000-0000-0000-0017-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000117}, !- Handle + {00000000-0000-0000-0051-000000000199}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000084}, !- Inlet Port {00000000-0000-0000-0017-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000118}, !- Handle + {00000000-0000-0000-0051-000000000200}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000101}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000119}, !- Handle + {00000000-0000-0000-0051-000000000201}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000120}, !- Handle + {00000000-0000-0000-0051-000000000202}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000105}, !- Inlet Port {00000000-0000-0000-0017-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000121}, !- Handle + {00000000-0000-0000-0051-000000000203}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000222}, !- Inlet Port - {00000000-0000-0000-0017-000000000223}; !- Outlet Port + {00000000-0000-0000-0017-000000000414}, !- Inlet Port + {00000000-0000-0000-0017-000000000415}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000122}, !- Handle + {00000000-0000-0000-0051-000000000204}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Port - {00000000-0000-0000-0017-000000000225}; !- Outlet Port + {00000000-0000-0000-0017-000000000416}, !- Inlet Port + {00000000-0000-0000-0017-000000000417}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000123}, !- Handle + {00000000-0000-0000-0051-000000000205}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000214}, !- Inlet Port - {00000000-0000-0000-0017-000000000226}; !- Outlet Port + {00000000-0000-0000-0017-000000000406}, !- Inlet Port + {00000000-0000-0000-0017-000000000418}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000124}, !- Handle + {00000000-0000-0000-0051-000000000206}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000227}, !- Inlet Port - {00000000-0000-0000-0017-000000000228}; !- Outlet Port + {00000000-0000-0000-0017-000000000419}, !- Inlet Port + {00000000-0000-0000-0017-000000000420}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000125}, !- Handle + {00000000-0000-0000-0051-000000000207}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000229}, !- Inlet Port - {00000000-0000-0000-0017-000000000230}; !- Outlet Port + {00000000-0000-0000-0017-000000000421}, !- Inlet Port + {00000000-0000-0000-0017-000000000422}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000126}, !- Handle - Primary Boiler 363kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0051-000000000208}, !- Handle + Primary Boiler 1880kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000127}, !- Handle - Primary Boiler 363kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0051-000000000209}, !- Handle + Primary Boiler 1880kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000128}, !- Handle - Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0051-000000000210}, !- Handle + Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Port {00000000-0000-0000-0017-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000129}, !- Handle - Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0051-000000000211}, !- Handle + Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000109}, !- Inlet Port {00000000-0000-0000-0017-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000130}, !- Handle - Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0051-000000000212}, !- Handle + Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000063}, !- Inlet Port {00000000-0000-0000-0017-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000131}, !- Handle - Primary Chiller WaterCooled Scroll 28tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0051-000000000213}, !- Handle + Primary Chiller WaterCooled Rotary Screw 71tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000074}, !- Inlet Port {00000000-0000-0000-0017-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000132}, !- Handle + {00000000-0000-0000-0051-000000000214}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port {00000000-0000-0000-0017-000000000047}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000133}, !- Handle + {00000000-0000-0000-0051-000000000215}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000071}, !- Inlet Port {00000000-0000-0000-0017-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000134}, !- Handle + {00000000-0000-0000-0051-000000000216}, !- Handle Pump Variable Speed 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000097}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000135}, !- Handle - Secondary Boiler 363kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0051-000000000217}, !- Handle + Secondary Boiler 0kBtu/hr 0.85 AFUE Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000051}, !- Inlet Port {00000000-0000-0000-0017-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000136}, !- Handle - Secondary Boiler 363kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0051-000000000218}, !- Handle + Secondary Boiler 0kBtu/hr 0.85 AFUE Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000137}, !- Handle + {00000000-0000-0000-0051-000000000219}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000111}, !- Inlet Port {00000000-0000-0000-0017-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000138}, !- Handle + {00000000-0000-0000-0051-000000000220}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000113}, !- Inlet Port {00000000-0000-0000-0017-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000139}, !- Handle + {00000000-0000-0000-0051-000000000221}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000076}, !- Inlet Port {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000140}, !- Handle + {00000000-0000-0000-0051-000000000222}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000078}, !- Inlet Port {00000000-0000-0000-0017-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000141}, !- Handle + {00000000-0000-0000-0051-000000000223}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000233}, !- Inlet Port + {00000000-0000-0000-0017-000000000234}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000224}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000329}, !- Inlet Port + {00000000-0000-0000-0017-000000000330}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000225}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000142}, !- Handle + {00000000-0000-0000-0051-000000000226}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000211}, !- Inlet Port + {00000000-0000-0000-0017-000000000213}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000227}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000214}, !- Inlet Port + {00000000-0000-0000-0017-000000000212}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000228}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000230}, !- Inlet Port + {00000000-0000-0000-0017-000000000231}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000229}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000223}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000230}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000231}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000209}, !- Inlet Port + {00000000-0000-0000-0017-000000000232}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000232}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000225}, !- Inlet Port + {00000000-0000-0000-0017-000000000210}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000233}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000307}, !- Inlet Port + {00000000-0000-0000-0017-000000000309}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000234}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000310}, !- Inlet Port + {00000000-0000-0000-0017-000000000308}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000235}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000326}, !- Inlet Port + {00000000-0000-0000-0017-000000000327}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000236}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000319}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000237}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000320}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000238}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000305}, !- Inlet Port + {00000000-0000-0000-0017-000000000328}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000239}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000321}, !- Inlet Port + {00000000-0000-0000-0017-000000000306}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0051-000000000240}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000117}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000143}, !- Handle + {00000000-0000-0000-0051-000000000241}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000144}, !- Handle + {00000000-0000-0000-0051-000000000242}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000134}, !- Inlet Port {00000000-0000-0000-0017-000000000135}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000145}, !- Handle + {00000000-0000-0000-0051-000000000243}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port {00000000-0000-0000-0017-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000146}, !- Handle + {00000000-0000-0000-0051-000000000244}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name {00000000-0000-0000-0017-000000000128}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000147}, !- Handle + {00000000-0000-0000-0051-000000000245}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000115}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, - {00000000-0000-0000-0051-000000000148}, !- Handle + {00000000-0000-0000-0051-000000000246}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000129}, !- Inlet Port {00000000-0000-0000-0017-000000000116}; !- Outlet Port @@ -4988,7 +8241,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0065-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0065-000000000024}, !- Work Efficiency Schedule Name {00000000-0000-0000-0065-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0065-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -5011,8 +8264,8 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0055-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0017-000000000233}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000234}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000425}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000426}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0055-000000000003}, !- Handle @@ -5047,20 +8300,20 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0055-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000223}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000224}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000415}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000416}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0055-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000226}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000227}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000418}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000419}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0055-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0017-000000000230}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000231}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000422}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000423}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0056-000000000001}, !- Handle @@ -5071,7 +8324,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0051-000000000039}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0051-000000000069}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5085,7 +8338,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5107,7 +8360,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0051-000000000069}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0051-000000000151}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5121,7 +8374,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5143,7 +8396,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0051-000000000081}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0051-000000000163}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5157,7 +8410,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000007}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5179,21 +8432,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0051-000000000086}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0051-000000000168}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000209}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000211}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000401}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000403}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000212}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000215}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000404}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000407}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5208,7 +8461,8 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0057-000000000001}, !- Handle - {00000000-0000-0000-0092-000000000013}; !- HVAC Component + {00000000-0000-0000-0092-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000243}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000002}, !- Handle @@ -5216,11 +8470,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000003}, !- Handle - {00000000-0000-0000-0092-000000000013}; !- HVAC Component + {00000000-0000-0000-0092-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000244}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000004}, !- Handle - {00000000-0000-0000-0092-000000000018}; !- HVAC Component + {00000000-0000-0000-0092-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000353}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000005}, !- Handle @@ -5228,11 +8484,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000006}, !- Handle - {00000000-0000-0000-0092-000000000018}; !- HVAC Component + {00000000-0000-0000-0092-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000354}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000007}, !- Handle - {00000000-0000-0000-0092-000000000014}; !- HVAC Component + {00000000-0000-0000-0092-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000367}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000008}, !- Handle @@ -5240,11 +8498,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000009}, !- Handle - {00000000-0000-0000-0092-000000000014}; !- HVAC Component + {00000000-0000-0000-0092-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000368}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000010}, !- Handle - {00000000-0000-0000-0092-000000000015}; !- HVAC Component + {00000000-0000-0000-0092-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000339}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000011}, !- Handle @@ -5252,11 +8512,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000012}, !- Handle - {00000000-0000-0000-0092-000000000015}; !- HVAC Component + {00000000-0000-0000-0092-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000340}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000013}, !- Handle - {00000000-0000-0000-0092-000000000009}; !- HVAC Component + {00000000-0000-0000-0092-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000299}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000014}, !- Handle @@ -5264,7 +8526,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000015}, !- Handle - {00000000-0000-0000-0092-000000000009}; !- HVAC Component + {00000000-0000-0000-0092-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000300}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000016}, !- Handle @@ -5282,7 +8545,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000019}, !- Handle - {00000000-0000-0000-0092-000000000016}; !- HVAC Component + {00000000-0000-0000-0092-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000381}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000020}, !- Handle @@ -5290,11 +8554,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000021}, !- Handle - {00000000-0000-0000-0092-000000000016}; !- HVAC Component + {00000000-0000-0000-0092-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000382}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000022}, !- Handle - {00000000-0000-0000-0092-000000000010}; !- HVAC Component + {00000000-0000-0000-0092-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000285}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000023}, !- Handle @@ -5302,7 +8568,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000024}, !- Handle - {00000000-0000-0000-0092-000000000010}; !- HVAC Component + {00000000-0000-0000-0092-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000286}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000025}, !- Handle @@ -5318,7 +8585,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000028}, !- Handle - {00000000-0000-0000-0092-000000000017}; !- HVAC Component + {00000000-0000-0000-0092-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000395}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000029}, !- Handle @@ -5326,7 +8594,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000030}, !- Handle - {00000000-0000-0000-0092-000000000017}; !- HVAC Component + {00000000-0000-0000-0092-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000396}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000031}, !- Handle @@ -5356,7 +8625,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000037}, !- Handle - {00000000-0000-0000-0092-000000000011}; !- HVAC Component + {00000000-0000-0000-0092-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000257}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000038}, !- Handle @@ -5364,7 +8634,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000039}, !- Handle - {00000000-0000-0000-0092-000000000011}; !- HVAC Component + {00000000-0000-0000-0092-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000258}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000040}, !- Handle @@ -5394,7 +8665,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000046}, !- Handle - {00000000-0000-0000-0092-000000000012}; !- HVAC Component + {00000000-0000-0000-0092-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000271}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000047}, !- Handle @@ -5402,7 +8674,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0057-000000000048}, !- Handle - {00000000-0000-0000-0092-000000000012}; !- HVAC Component + {00000000-0000-0000-0092-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000272}; !- Port 1 OS:PortList, {00000000-0000-0000-0057-000000000049}, !- Handle @@ -5435,8 +8708,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0058-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000216}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000217}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000408}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000409}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 445102.517395202, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -5462,7 +8735,7 @@ OS:Pump:VariableSpeed, , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5495,7 +8768,7 @@ OS:Pump:VariableSpeed, , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.865, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5528,7 +8801,7 @@ OS:Pump:VariableSpeed, , !- Rated Flow Rate {m3/s} , !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.917, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -6325,6 +9598,33 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0063-000000000037}, !- Handle + Schedule Day 10, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000038}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000039}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6333,9 +9633,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000038}, !- Handle + {00000000-0000-0000-0063-000000000041}, !- Handle Schedule Day 3, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6411,9 +9711,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000039}, !- Handle + {00000000-0000-0000-0063-000000000042}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6489,25 +9789,25 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000040}, !- Handle + {00000000-0000-0000-0063-000000000043}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000041}, !- Handle + {00000000-0000-0000-0063-000000000044}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000042}, !- Handle + {00000000-0000-0000-0063-000000000045}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6516,7 +9816,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000043}, !- Handle + {00000000-0000-0000-0063-000000000046}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6525,7 +9825,16 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000044}, !- Handle + {00000000-0000-0000-0063-000000000047}, !- Handle + Schedule Day 9, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000048}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6534,16 +9843,34 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000045}, !- Handle + {00000000-0000-0000-0063-000000000049}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000050}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000051}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000046}, !- Handle + {00000000-0000-0000-0063-000000000052}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6552,7 +9879,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000047}, !- Handle + {00000000-0000-0000-0063-000000000053}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6561,9 +9888,9 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000048}, !- Handle + {00000000-0000-0000-0063-000000000054}, !- Handle satCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6639,7 +9966,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000049}, !- Handle + {00000000-0000-0000-0063-000000000055}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6717,9 +10044,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000050}, !- Handle + {00000000-0000-0000-0063-000000000056}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6795,7 +10122,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000051}, !- Handle + {00000000-0000-0000-0063-000000000057}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6873,9 +10200,9 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000052}, !- Handle + {00000000-0000-0000-0063-000000000058}, !- Handle sunCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6951,7 +10278,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000053}, !- Handle + {00000000-0000-0000-0063-000000000059}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7029,9 +10356,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000054}, !- Handle + {00000000-0000-0000-0063-000000000060}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7107,7 +10434,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000055}, !- Handle + {00000000-0000-0000-0063-000000000061}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7185,7 +10512,73 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000056}, !- Handle + {00000000-0000-0000-0063-000000000062}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000063}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000064}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000065}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000066}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000067}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0063-000000000068}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7200,7 +10593,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000057}, !- Handle + {00000000-0000-0000-0063-000000000069}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7209,7 +10602,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000058}, !- Handle + {00000000-0000-0000-0063-000000000070}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7218,9 +10611,9 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000059}, !- Handle + {00000000-0000-0000-0063-000000000071}, !- Handle wkdCHW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7296,7 +10689,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000060}, !- Handle + {00000000-0000-0000-0063-000000000072}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7374,9 +10767,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000061}, !- Handle + {00000000-0000-0000-0063-000000000073}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7452,7 +10845,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0063-000000000062}, !- Handle + {00000000-0000-0000-0063-000000000074}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0066-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7760,9 +11153,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0064-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0065-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000027}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000042}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000045}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7779,9 +11172,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0064-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0065-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0065-000000000027}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000046}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7797,6 +11190,82 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0064-000000000015}, !- Handle + Schedule Rule 22, !- Name + {00000000-0000-0000-0065-000000000025}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0063-000000000047}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0064-000000000016}, !- Handle + Schedule Rule 23, !- Name + {00000000-0000-0000-0065-000000000025}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0063-000000000037}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0064-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0065-000000000026}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0063-000000000038}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0064-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0065-000000000026}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0063-000000000039}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0064-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0065-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -7815,7 +11284,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000016}, !- Handle + {00000000-0000-0000-0064-000000000020}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0065-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -7834,7 +11303,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000017}, !- Handle + {00000000-0000-0000-0064-000000000021}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order @@ -7853,7 +11322,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000018}, !- Handle + {00000000-0000-0000-0064-000000000022}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -7872,7 +11341,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000019}, !- Handle + {00000000-0000-0000-0064-000000000023}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0065-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -7891,7 +11360,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000020}, !- Handle + {00000000-0000-0000-0064-000000000024}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0065-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -7910,7 +11379,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000021}, !- Handle + {00000000-0000-0000-0064-000000000025}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0065-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -7929,11 +11398,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000022}, !- Handle + {00000000-0000-0000-0064-000000000026}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000048}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000054}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7948,11 +11417,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000023}, !- Handle + {00000000-0000-0000-0064-000000000027}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0063-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000056}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7967,11 +11436,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000024}, !- Handle + {00000000-0000-0000-0064-000000000028}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000052}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000058}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -7986,11 +11455,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000025}, !- Handle + {00000000-0000-0000-0064-000000000029}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0063-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000060}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8005,11 +11474,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000026}, !- Handle + {00000000-0000-0000-0064-000000000030}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0065-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000059}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000071}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8024,11 +11493,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0064-000000000027}, !- Handle + {00000000-0000-0000-0064-000000000031}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0063-000000000061}, !- Day Schedule Name + {00000000-0000-0000-0063-000000000073}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8057,14 +11526,14 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000003}, !- Handle CHW Temp, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000038}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000039}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000005}, !- Handle @@ -8143,46 +11612,74 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000040}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000043}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000020}, !- Handle - Supply Air Temp, !- Name - {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000045}; !- Default Day Schedule Name + Supply Air Temp 1, !- Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0065-000000000021}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000050}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0065-000000000022}, !- Handle + Supply Air Temp, !- Name + {00000000-0000-0000-0066-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000051}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0065-000000000023}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0066-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000022}, !- Handle + {00000000-0000-0000-0065-000000000024}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000053}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0065-000000000023}, !- Handle + {00000000-0000-0000-0065-000000000025}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000062}, !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000063}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0063-000000000064}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0065-000000000026}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0063-000000000065}, !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000066}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0063-000000000067}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0065-000000000027}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0063-000000000056}, !- Default Day Schedule Name - {00000000-0000-0000-0063-000000000057}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0063-000000000058}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0063-000000000068}, !- Default Day Schedule Name + {00000000-0000-0000-0063-000000000069}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0063-000000000070}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0066-000000000001}, !- Handle @@ -8263,7 +11760,7 @@ OS:SetpointManager:OutdoorAirReset, -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0051-000000000081}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0051-000000000163}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -8275,28 +11772,42 @@ OS:SetpointManager:Scheduled, Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0065-000000000019}, !- Schedule Name - {00000000-0000-0000-0051-000000000086}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0051-000000000168}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0068-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0065-000000000003}, !- Schedule Name - {00000000-0000-0000-0051-000000000039}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0051-000000000069}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0068-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0065-000000000004}, !- Schedule Name - {00000000-0000-0000-0051-000000000069}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0051-000000000151}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0068-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable + {00000000-0000-0000-0065-000000000022}, !- Schedule Name + {00000000-0000-0000-0051-000000000246}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0068-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable {00000000-0000-0000-0065-000000000020}, !- Schedule Name - {00000000-0000-0000-0051-000000000148}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0051-000000000232}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0068-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0065-000000000021}, !- Schedule Name + {00000000-0000-0000-0051-000000000239}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0069-000000000001}, !- Handle @@ -8449,6 +11960,47 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0079-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0079-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -8488,19 +12040,60 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0079-000000000003}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, {00000000-0000-0000-0080-000000000001}, !- Handle {00000000-0000-0000-0092-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8526,16 +12119,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000002}, !- Handle {00000000-0000-0000-0092-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8561,16 +12154,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000003}, !- Handle {00000000-0000-0000-0092-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8596,16 +12189,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000004}, !- Handle {00000000-0000-0000-0092-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8631,16 +12224,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000005}, !- Handle {00000000-0000-0000-0092-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8701,16 +12294,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000007}, !- Handle {00000000-0000-0000-0092-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8736,16 +12329,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000008}, !- Handle {00000000-0000-0000-0092-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8806,16 +12399,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000010}, !- Handle {00000000-0000-0000-0092-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8911,16 +12504,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000013}, !- Handle {00000000-0000-0000-0092-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9016,16 +12609,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0080-000000000016}, !- Handle {00000000-0000-0000-0092-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -13246,7 +16839,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0065-000000000021}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0065-000000000023}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 8.09069992920566, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -13256,8 +16849,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000219}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000220}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000411}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000412}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -13280,8 +16873,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000001}, !- Handle Core_bottom WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0017-000000000236}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000237}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000428}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000429}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13294,8 +16887,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000002}, !- Handle Core_mid WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0017-000000000240}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000241}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000432}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000433}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13308,8 +16901,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000003}, !- Handle Core_top WUC 0.38gpm 140F, !- Name - {00000000-0000-0000-0017-000000000244}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000245}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000436}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000437}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13322,8 +16915,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000248}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000249}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000440}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000441}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13336,8 +16929,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000252}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000253}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000444}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000445}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13350,8 +16943,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000256}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000257}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000448}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000449}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13364,8 +16957,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000260}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000261}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000452}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000453}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13378,8 +16971,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000264}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000265}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000456}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000457}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13392,8 +16985,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000268}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000269}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000460}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000461}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13406,8 +16999,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000272}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000273}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000464}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000465}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13420,8 +17013,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000276}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000277}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000468}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000469}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13434,8 +17027,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000280}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000281}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000472}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000473}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13448,8 +17041,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000284}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000285}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000476}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000477}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13462,8 +17055,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000288}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000289}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000480}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000481}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13476,8 +17069,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0098-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000292}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000293}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000484}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000485}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13770,28 +17363,88 @@ OS:ZoneHVAC:Baseboard:Convective:Water, OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0104-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 2, !- Name + Zone HVAC Baseboard Convective Water 10, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000002}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0104-000000000003}, !- Handle - Zone HVAC Baseboard Convective Water 3, !- Name + Zone HVAC Baseboard Convective Water 11, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000003}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0104-000000000004}, !- Handle - Zone HVAC Baseboard Convective Water 4, !- Name + Zone HVAC Baseboard Convective Water 12, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000004}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0104-000000000005}, !- Handle - Zone HVAC Baseboard Convective Water 5, !- Name + Zone HVAC Baseboard Convective Water 13, !- Name {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000005}; !- Heating Coil Name +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000006}, !- Handle + Zone HVAC Baseboard Convective Water 14, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000006}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000007}, !- Handle + Zone HVAC Baseboard Convective Water 15, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000007}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000008}, !- Handle + Zone HVAC Baseboard Convective Water 2, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000008}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000009}, !- Handle + Zone HVAC Baseboard Convective Water 3, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000009}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000010}, !- Handle + Zone HVAC Baseboard Convective Water 4, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000010}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000011}, !- Handle + Zone HVAC Baseboard Convective Water 5, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000011}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000012}, !- Handle + Zone HVAC Baseboard Convective Water 6, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000012}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000013}, !- Handle + Zone HVAC Baseboard Convective Water 7, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000013}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000014}, !- Handle + Zone HVAC Baseboard Convective Water 8, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000014}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0104-000000000015}, !- Handle + Zone HVAC Baseboard Convective Water 9, !- Name + {00000000-0000-0000-0062-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000015}; !- Heating Coil Name + OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name @@ -13815,12 +17468,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000003}, !- Zone Equipment 1 + {00000000-0000-0000-0104-000000000009}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13831,12 +17484,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0104-000000000008}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13847,12 +17500,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000004}, !- Zone Equipment 1 + {00000000-0000-0000-0104-000000000010}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13863,12 +17516,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office - open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0104-000000000005}, !- Zone Equipment 1 + {00000000-0000-0000-0104-000000000011}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13894,59 +17547,159 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000009}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000010}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000011}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000012}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000013}, !- Handle ALL_ST=Office - open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000012}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000014}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000015}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000016}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000017}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0105-000000000018}, !- Handle ALL_ST=Office - open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0092-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0104-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2017-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2017-Electricity-CAN_AB_Calgary.osm index efee4101f4..e288d53238 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2017-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2017-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0064-000000000023}, !- Object Name + {00000000-0000-0000-0064-000000000027}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.066608825093468, !- Feature Value 1 @@ -16,22 +16,98 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0011-000000000001}; !- Object Name + {00000000-0000-0000-0064-000000000025}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.066608825093468, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle + {00000000-0000-0000-0064-000000000026}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.066608825093468, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0011-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle {00000000-0000-0000-0011-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name , !- Controller List Name - {00000000-0000-0000-0064-000000000023}, !- Availability Schedule + {00000000-0000-0000-0064-000000000025}, !- Availability Schedule {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name , !- Connector List Name + {00000000-0000-0000-0015-000000000139}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0015-000000000142}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000141}, !- Demand Side Inlet Node A + {00000000-0000-0000-0015-000000000140}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0064-000000000026}, !- Availability Schedule + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0015-000000000189}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0015-000000000192}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000191}, !- Demand Side Inlet Node A + {00000000-0000-0000-0015-000000000190}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name + , !- Controller List Name + {00000000-0000-0000-0064-000000000027}, !- Availability Schedule + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name {00000000-0000-0000-0015-000000000090}, !- Supply Side Inlet Node Name {00000000-0000-0000-0015-000000000093}, !- Demand Side Outlet Node Name {00000000-0000-0000-0015-000000000092}, !- Demand Side Inlet Node A @@ -51,10 +127,32 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0015-000000000104}, !- Mixed Air Node Name - {00000000-0000-0000-0015-000000000227}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0015-000000000228}, !- Relief Air Stream Node Name + {00000000-0000-0000-0015-000000000327}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0015-000000000328}, !- Relief Air Stream Node Name {00000000-0000-0000-0015-000000000108}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000002}, !- Handle + Air Loop HVAC Outdoor Air System 2, !- Name + {00000000-0000-0000-0020-000000000002}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0015-000000000154}, !- Mixed Air Node Name + {00000000-0000-0000-0015-000000000333}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0015-000000000334}, !- Relief Air Stream Node Name + {00000000-0000-0000-0015-000000000158}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0020-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0015-000000000204}, !- Mixed Air Node Name + {00000000-0000-0000-0015-000000000339}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0015-000000000340}, !- Relief Air Stream Node Name + {00000000-0000-0000-0015-000000000208}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -65,6 +163,26 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0015-000000000129}, !- Inlet Node Name 4 {00000000-0000-0000-0015-000000000135}; !- Inlet Node Name 5 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000002}, !- Handle + Air Loop HVAC Zone Mixer 2, !- Name + {00000000-0000-0000-0015-000000000144}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000161}, !- Inlet Node Name 1 + {00000000-0000-0000-0015-000000000167}, !- Inlet Node Name 2 + {00000000-0000-0000-0015-000000000173}, !- Inlet Node Name 3 + {00000000-0000-0000-0015-000000000179}, !- Inlet Node Name 4 + {00000000-0000-0000-0015-000000000185}; !- Inlet Node Name 5 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0015-000000000194}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000211}, !- Inlet Node Name 1 + {00000000-0000-0000-0015-000000000217}, !- Inlet Node Name 2 + {00000000-0000-0000-0015-000000000223}, !- Inlet Node Name 3 + {00000000-0000-0000-0015-000000000229}, !- Inlet Node Name 4 + {00000000-0000-0000-0015-000000000235}; !- Inlet Node Name 5 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -75,6 +193,26 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0015-000000000130}, !- Outlet Node Name 4 {00000000-0000-0000-0015-000000000136}; !- Outlet Node Name 5 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000002}, !- Handle + Air Loop HVAC Zone Splitter 2, !- Name + {00000000-0000-0000-0015-000000000143}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000162}, !- Outlet Node Name 1 + {00000000-0000-0000-0015-000000000168}, !- Outlet Node Name 2 + {00000000-0000-0000-0015-000000000174}, !- Outlet Node Name 3 + {00000000-0000-0000-0015-000000000180}, !- Outlet Node Name 4 + {00000000-0000-0000-0015-000000000186}; !- Outlet Node Name 5 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0015-000000000193}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000212}, !- Outlet Node Name 1 + {00000000-0000-0000-0015-000000000218}, !- Outlet Node Name 2 + {00000000-0000-0000-0015-000000000224}, !- Outlet Node Name 3 + {00000000-0000-0000-0015-000000000230}, !- Outlet Node Name 4 + {00000000-0000-0000-0015-000000000236}; !- Outlet Node Name 5 + OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -85,7 +223,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000011}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000114}, !- Air Outlet Node Name @@ -98,6 +236,132 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000187}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000188}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000213}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000214}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000219}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000220}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000225}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000226}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000231}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000009}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000232}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000237}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000010}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000238}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000119}, !- Air Inlet Node Name @@ -106,7 +370,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000012}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000120}, !- Air Outlet Node Name @@ -118,7 +382,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000125}, !- Air Inlet Node Name @@ -127,7 +391,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000013}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000126}, !- Air Outlet Node Name @@ -139,7 +403,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000131}, !- Air Inlet Node Name @@ -148,7 +412,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000005}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000014}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000132}, !- Air Outlet Node Name @@ -160,7 +424,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000137}, !- Air Inlet Node Name @@ -169,7 +433,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000015}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000138}, !- Air Outlet Node Name @@ -180,6 +444,90 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000163}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000017}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000164}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000169}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000018}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000170}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000175}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000176}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000181}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000182}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -194,21 +542,59 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0049-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0049-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0061-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000004}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000006}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Building, @@ -260,8 +646,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0011-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton, !- Name - 95292.0324647093, !- Reference Capacity {W} + Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton, !- Name + 237968.431950895, !- Reference Capacity {W} 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -304,9 +690,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0024-000000000005}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0024-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0024-000000000007}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0024-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -357,6 +743,42 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration +OS:Coil:Cooling:Water, + {00000000-0000-0000-0013-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0015-000000000146}, !- Water Inlet Node Name + {00000000-0000-0000-0015-000000000147}, !- Water Outlet Node Name + {00000000-0000-0000-0015-000000000155}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000152}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0013-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0015-000000000196}, !- Water Inlet Node Name + {00000000-0000-0000-0015-000000000197}, !- Water Outlet Node Name + {00000000-0000-0000-0015-000000000205}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000202}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000001}, !- Handle Coil Heating Electric 1, !- Name @@ -368,46 +790,154 @@ OS:Coil:Heating:Electric, OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000002}, !- Handle - Coil Heating Electric 2, !- Name + Coil Heating Electric 10, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 24868.4987068176, !- Nominal Capacity {W} + 11020.0849056244, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000003}, !- Handle - Coil Heating Electric 3, !- Name + Coil Heating Electric 11, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 14588.2245540619, !- Nominal Capacity {W} + 6187.80405521393, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000004}, !- Handle - Coil Heating Electric 4, !- Name + Coil Heating Electric 12, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 12384.0525627136, !- Nominal Capacity {W} + 11857.871389389, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000005}, !- Handle + Coil Heating Electric 13, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0015-000000000203}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000200}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000006}, !- Handle + Coil Heating Electric 14, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 22238.1554603577, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000007}, !- Handle + Coil Heating Electric 15, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 13827.2543907166, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000008}, !- Handle + Coil Heating Electric 16, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 11500.2985954285, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000009}, !- Handle + Coil Heating Electric 17, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 7091.35980606079, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000010}, !- Handle + Coil Heating Electric 18, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 12537.4444484711, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000011}, !- Handle + Coil Heating Electric 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 13067.0129299164, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000012}, !- Handle + Coil Heating Electric 3, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 11280.1081180573, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000013}, !- Handle + Coil Heating Electric 4, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 10132.8232526779, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000014}, !- Handle Coil Heating Electric 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 6629.09781932831, !- Nominal Capacity {W} + 5639.30861949921, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000006}, !- Handle + {00000000-0000-0000-0014-000000000015}, !- Handle Coil Heating Electric 6, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 13672.8299617767, !- Nominal Capacity {W} + 11510.5686664581, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000016}, !- Handle + Coil Heating Electric 7, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0015-000000000153}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000150}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000017}, !- Handle + Coil Heating Electric 8, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 18493.941450119, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000018}, !- Handle + Coil Heating Electric 9, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 12915.1157855988, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name @@ -541,35 +1071,35 @@ OS:Connection, {00000000-0000-0000-0015-000000000019}, !- Handle {00000000-0000-0000-0091-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000020}, !- Target Object + {00000000-0000-0000-0050-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000020}, !- Handle {00000000-0000-0000-0091-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000025}, !- Target Object + {00000000-0000-0000-0050-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000021}, !- Handle {00000000-0000-0000-0091-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000021}, !- Target Object + {00000000-0000-0000-0050-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000022}, !- Handle {00000000-0000-0000-0091-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000022}, !- Target Object + {00000000-0000-0000-0050-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000023}, !- Handle {00000000-0000-0000-0091-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000016}, !- Target Object + {00000000-0000-0000-0050-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -583,14 +1113,14 @@ OS:Connection, {00000000-0000-0000-0015-000000000025}, !- Handle {00000000-0000-0000-0091-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000023}, !- Target Object + {00000000-0000-0000-0050-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000026}, !- Handle {00000000-0000-0000-0091-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000017}, !- Target Object + {00000000-0000-0000-0050-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -604,7 +1134,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000028}, !- Handle {00000000-0000-0000-0091-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000024}, !- Target Object + {00000000-0000-0000-0050-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -625,7 +1155,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000031}, !- Handle {00000000-0000-0000-0091-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000018}, !- Target Object + {00000000-0000-0000-0050-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -646,7 +1176,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000034}, !- Handle {00000000-0000-0000-0091-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000019}, !- Target Object + {00000000-0000-0000-0050-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -667,19 +1197,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000037}, !- Handle {00000000-0000-0000-0055-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000038}, !- Target Object + {00000000-0000-0000-0050-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000038}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000099}, !- Target Object + {00000000-0000-0000-0050-000000000137}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000039}, !- Handle - {00000000-0000-0000-0050-000000000039}, !- Source Object + {00000000-0000-0000-0050-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000001}, !- Target Object 15; !- Inlet Port @@ -688,12 +1218,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000040}, !- Handle {00000000-0000-0000-0055-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000036}, !- Target Object + {00000000-0000-0000-0050-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000041}, !- Handle - {00000000-0000-0000-0050-000000000036}, !- Source Object + {00000000-0000-0000-0050-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000002}, !- Target Object 2; !- Inlet Port @@ -702,26 +1232,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000042}, !- Handle {00000000-0000-0000-0017-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000040}, !- Target Object + {00000000-0000-0000-0050-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000043}, !- Handle {00000000-0000-0000-0016-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000037}, !- Target Object + {00000000-0000-0000-0050-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000044}, !- Handle - {00000000-0000-0000-0050-000000000037}, !- Source Object + {00000000-0000-0000-0050-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000045}, !- Handle - {00000000-0000-0000-0050-000000000038}, !- Source Object + {00000000-0000-0000-0050-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000001}, !- Target Object 2; !- Inlet Port @@ -730,19 +1260,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000046}, !- Handle {00000000-0000-0000-0058-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000101}, !- Target Object + {00000000-0000-0000-0050-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000047}, !- Handle - {00000000-0000-0000-0050-000000000101}, !- Source Object + {00000000-0000-0000-0050-000000000139}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000048}, !- Handle - {00000000-0000-0000-0050-000000000099}, !- Source Object + {00000000-0000-0000-0050-000000000137}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000001}, !- Target Object 15; !- Inlet Port @@ -751,12 +1281,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000049}, !- Handle {00000000-0000-0000-0011-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000100}, !- Target Object + {00000000-0000-0000-0050-000000000138}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000050}, !- Handle - {00000000-0000-0000-0050-000000000100}, !- Source Object + {00000000-0000-0000-0050-000000000138}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 3; !- Inlet Port @@ -765,12 +1295,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000051}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000105}, !- Target Object + {00000000-0000-0000-0050-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000052}, !- Handle - {00000000-0000-0000-0050-000000000105}, !- Source Object + {00000000-0000-0000-0050-000000000143}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000002}, !- Target Object 15; !- Inlet Port @@ -779,12 +1309,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000053}, !- Handle {00000000-0000-0000-0011-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000106}, !- Target Object + {00000000-0000-0000-0050-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000054}, !- Handle - {00000000-0000-0000-0050-000000000106}, !- Source Object + {00000000-0000-0000-0050-000000000144}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 4; !- Inlet Port @@ -793,12 +1323,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000055}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000085}, !- Target Object + {00000000-0000-0000-0050-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000056}, !- Handle - {00000000-0000-0000-0050-000000000085}, !- Source Object + {00000000-0000-0000-0050-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000001}, !- Target Object 2; !- Inlet Port @@ -807,12 +1337,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000057}, !- Handle {00000000-0000-0000-0054-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000086}, !- Target Object + {00000000-0000-0000-0050-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000058}, !- Handle - {00000000-0000-0000-0050-000000000086}, !- Source Object + {00000000-0000-0000-0050-000000000124}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port @@ -821,12 +1351,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000059}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000087}, !- Target Object + {00000000-0000-0000-0050-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000060}, !- Handle - {00000000-0000-0000-0050-000000000087}, !- Source Object + {00000000-0000-0000-0050-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000002}, !- Target Object 2; !- Inlet Port @@ -835,26 +1365,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000061}, !- Handle {00000000-0000-0000-0054-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000039}, !- Target Object + {00000000-0000-0000-0050-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000062}, !- Handle {00000000-0000-0000-0055-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000046}, !- Target Object + {00000000-0000-0000-0050-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000063}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000048}, !- Target Object + {00000000-0000-0000-0050-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000064}, !- Handle - {00000000-0000-0000-0050-000000000047}, !- Source Object + {00000000-0000-0000-0050-000000000085}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000002}, !- Target Object 15; !- Inlet Port @@ -863,12 +1393,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000065}, !- Handle {00000000-0000-0000-0055-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000044}, !- Target Object + {00000000-0000-0000-0050-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000066}, !- Handle - {00000000-0000-0000-0050-000000000044}, !- Source Object + {00000000-0000-0000-0050-000000000082}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000004}, !- Target Object 2; !- Inlet Port @@ -877,26 +1407,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000067}, !- Handle {00000000-0000-0000-0017-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000097}, !- Target Object + {00000000-0000-0000-0050-000000000135}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000068}, !- Handle {00000000-0000-0000-0016-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000045}, !- Target Object + {00000000-0000-0000-0050-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000069}, !- Handle - {00000000-0000-0000-0050-000000000045}, !- Source Object + {00000000-0000-0000-0050-000000000083}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000070}, !- Handle - {00000000-0000-0000-0050-000000000046}, !- Source Object + {00000000-0000-0000-0050-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000002}, !- Target Object 2; !- Inlet Port @@ -905,19 +1435,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000071}, !- Handle {00000000-0000-0000-0058-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000102}, !- Target Object + {00000000-0000-0000-0050-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000072}, !- Handle - {00000000-0000-0000-0050-000000000102}, !- Source Object + {00000000-0000-0000-0050-000000000140}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000073}, !- Handle - {00000000-0000-0000-0050-000000000048}, !- Source Object + {00000000-0000-0000-0050-000000000086}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0023-000000000001}, !- Target Object 2; !- Inlet Port @@ -926,12 +1456,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000074}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000049}, !- Target Object + {00000000-0000-0000-0050-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000075}, !- Handle - {00000000-0000-0000-0050-000000000049}, !- Source Object + {00000000-0000-0000-0050-000000000087}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000003}, !- Target Object 3; !- Inlet Port @@ -940,12 +1470,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000076}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000088}, !- Target Object + {00000000-0000-0000-0050-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000077}, !- Handle - {00000000-0000-0000-0050-000000000088}, !- Source Object + {00000000-0000-0000-0050-000000000126}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000003}, !- Target Object 2; !- Inlet Port @@ -954,12 +1484,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000078}, !- Handle {00000000-0000-0000-0054-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000089}, !- Target Object + {00000000-0000-0000-0050-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000079}, !- Handle - {00000000-0000-0000-0050-000000000089}, !- Source Object + {00000000-0000-0000-0050-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000003}, !- Target Object 4; !- Inlet Port @@ -968,12 +1498,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000080}, !- Handle {00000000-0000-0000-0016-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000090}, !- Target Object + {00000000-0000-0000-0050-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000081}, !- Handle - {00000000-0000-0000-0050-000000000090}, !- Source Object + {00000000-0000-0000-0050-000000000128}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000004}, !- Target Object 2; !- Inlet Port @@ -982,12 +1512,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000082}, !- Handle {00000000-0000-0000-0054-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000047}, !- Target Object + {00000000-0000-0000-0050-000000000085}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000083}, !- Handle - {00000000-0000-0000-0050-000000000097}, !- Source Object + {00000000-0000-0000-0050-000000000135}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000001}, !- Target Object 17; !- Inlet Port @@ -996,12 +1526,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000084}, !- Handle {00000000-0000-0000-0011-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000098}, !- Target Object + {00000000-0000-0000-0050-000000000136}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000085}, !- Handle - {00000000-0000-0000-0050-000000000098}, !- Source Object + {00000000-0000-0000-0050-000000000136}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000004}, !- Target Object 3; !- Inlet Port @@ -1010,12 +1540,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000086}, !- Handle {00000000-0000-0000-0017-000000000004}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000103}, !- Target Object + {00000000-0000-0000-0050-000000000141}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000087}, !- Handle - {00000000-0000-0000-0050-000000000103}, !- Source Object + {00000000-0000-0000-0050-000000000141}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000002}, !- Target Object 17; !- Inlet Port @@ -1024,47 +1554,47 @@ OS:Connection, {00000000-0000-0000-0015-000000000088}, !- Handle {00000000-0000-0000-0011-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000104}, !- Target Object + {00000000-0000-0000-0050-000000000142}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000089}, !- Handle - {00000000-0000-0000-0050-000000000104}, !- Source Object + {00000000-0000-0000-0050-000000000142}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000004}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000090}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0002-000000000003}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000113}, !- Target Object + {00000000-0000-0000-0050-000000000167}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000091}, !- Handle - {00000000-0000-0000-0050-000000000114}, !- Source Object + {00000000-0000-0000-0050-000000000168}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000092}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0002-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000108}, !- Target Object + {00000000-0000-0000-0050-000000000162}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000093}, !- Handle - {00000000-0000-0000-0050-000000000109}, !- Source Object + {00000000-0000-0000-0050-000000000163}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000094}, !- Handle - {00000000-0000-0000-0050-000000000108}, !- Source Object + {00000000-0000-0000-0050-000000000162}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -1073,12 +1603,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000095}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000109}, !- Target Object + {00000000-0000-0000-0050-000000000163}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000096}, !- Handle - {00000000-0000-0000-0050-000000000040}, !- Source Object + {00000000-0000-0000-0050-000000000070}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0013-000000000001}, !- Target Object 10; !- Inlet Port @@ -1087,47 +1617,47 @@ OS:Connection, {00000000-0000-0000-0015-000000000097}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000042}, !- Target Object + {00000000-0000-0000-0050-000000000072}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000098}, !- Handle - {00000000-0000-0000-0050-000000000042}, !- Source Object + {00000000-0000-0000-0050-000000000072}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000002}, !- Target Object 3; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000099}, !- Handle - {00000000-0000-0000-0039-000000000002}, !- Source Object + {00000000-0000-0000-0039-000000000006}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000114}, !- Target Object + {00000000-0000-0000-0050-000000000168}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000100}, !- Handle {00000000-0000-0000-0014-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000043}, !- Target Object + {00000000-0000-0000-0050-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000101}, !- Handle - {00000000-0000-0000-0050-000000000043}, !- Source Object + {00000000-0000-0000-0050-000000000079}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000002}, !- Target Object + {00000000-0000-0000-0039-000000000006}, !- Target Object 16; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000102}, !- Handle {00000000-0000-0000-0013-000000000001}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000041}, !- Target Object + {00000000-0000-0000-0050-000000000071}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000103}, !- Handle - {00000000-0000-0000-0050-000000000041}, !- Source Object + {00000000-0000-0000-0050-000000000071}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0014-000000000001}, !- Target Object 5; !- Inlet Port @@ -1136,889 +1666,1673 @@ OS:Connection, {00000000-0000-0000-0015-000000000104}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000110}, !- Target Object + {00000000-0000-0000-0050-000000000164}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000105}, !- Handle + {00000000-0000-0000-0050-000000000164}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000106}, !- Handle + {00000000-0000-0000-0050-000000000167}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000107}, !- Handle + {00000000-0000-0000-0039-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000147}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000108}, !- Handle + {00000000-0000-0000-0050-000000000147}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000109}, !- Handle + {00000000-0000-0000-0050-000000000037}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000110}, !- Handle + {00000000-0000-0000-0056-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000111}, !- Handle + {00000000-0000-0000-0050-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000112}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000113}, !- Handle + {00000000-0000-0000-0050-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000114}, !- Handle + {00000000-0000-0000-0006-000000000001}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000115}, !- Handle + {00000000-0000-0000-0050-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000116}, !- Handle + {00000000-0000-0000-0056-000000000042}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000117}, !- Handle + {00000000-0000-0000-0050-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000118}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000050}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000119}, !- Handle + {00000000-0000-0000-0050-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000120}, !- Handle + {00000000-0000-0000-0006-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000051}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000121}, !- Handle + {00000000-0000-0000-0050-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000122}, !- Handle + {00000000-0000-0000-0056-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000123}, !- Handle + {00000000-0000-0000-0050-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000124}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000125}, !- Handle + {00000000-0000-0000-0050-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000126}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000053}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000127}, !- Handle + {00000000-0000-0000-0050-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000128}, !- Handle + {00000000-0000-0000-0056-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000129}, !- Handle + {00000000-0000-0000-0050-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000130}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000054}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000131}, !- Handle + {00000000-0000-0000-0050-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000132}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000133}, !- Handle + {00000000-0000-0000-0050-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000134}, !- Handle + {00000000-0000-0000-0056-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000135}, !- Handle + {00000000-0000-0000-0050-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000136}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000137}, !- Handle + {00000000-0000-0000-0050-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000138}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000139}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000153}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000140}, !- Handle + {00000000-0000-0000-0050-000000000154}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000141}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000148}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000142}, !- Handle + {00000000-0000-0000-0050-000000000149}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000143}, !- Handle + {00000000-0000-0000-0050-000000000148}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000144}, !- Handle + {00000000-0000-0000-0004-000000000002}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000149}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000145}, !- Handle + {00000000-0000-0000-0017-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000073}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000146}, !- Handle + {00000000-0000-0000-0050-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000147}, !- Handle + {00000000-0000-0000-0013-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000075}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000148}, !- Handle + {00000000-0000-0000-0050-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000149}, !- Handle + {00000000-0000-0000-0039-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000154}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000150}, !- Handle + {00000000-0000-0000-0014-000000000016}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000081}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000151}, !- Handle + {00000000-0000-0000-0050-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000004}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000152}, !- Handle + {00000000-0000-0000-0013-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000074}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000153}, !- Handle + {00000000-0000-0000-0050-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000016}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000154}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000150}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000155}, !- Handle + {00000000-0000-0000-0050-000000000150}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000156}, !- Handle + {00000000-0000-0000-0050-000000000153}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000001}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000157}, !- Handle + {00000000-0000-0000-0039-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000145}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000158}, !- Handle + {00000000-0000-0000-0050-000000000145}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000159}, !- Handle + {00000000-0000-0000-0050-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000160}, !- Handle + {00000000-0000-0000-0056-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000024}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000161}, !- Handle + {00000000-0000-0000-0050-000000000024}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000162}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000163}, !- Handle + {00000000-0000-0000-0050-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000012}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000164}, !- Handle + {00000000-0000-0000-0006-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000165}, !- Handle + {00000000-0000-0000-0050-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000166}, !- Handle + {00000000-0000-0000-0056-000000000039}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000020}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000167}, !- Handle + {00000000-0000-0000-0050-000000000020}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000168}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000169}, !- Handle + {00000000-0000-0000-0050-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000013}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000170}, !- Handle + {00000000-0000-0000-0006-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000171}, !- Handle + {00000000-0000-0000-0050-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000172}, !- Handle + {00000000-0000-0000-0056-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000173}, !- Handle + {00000000-0000-0000-0050-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000174}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000175}, !- Handle + {00000000-0000-0000-0050-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000014}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000176}, !- Handle + {00000000-0000-0000-0006-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000177}, !- Handle + {00000000-0000-0000-0050-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000178}, !- Handle + {00000000-0000-0000-0056-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000179}, !- Handle + {00000000-0000-0000-0050-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000180}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000181}, !- Handle + {00000000-0000-0000-0050-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000015}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000182}, !- Handle + {00000000-0000-0000-0006-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000065}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000183}, !- Handle + {00000000-0000-0000-0050-000000000039}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000184}, !- Handle + {00000000-0000-0000-0056-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000185}, !- Handle + {00000000-0000-0000-0050-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000186}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000038}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000187}, !- Handle + {00000000-0000-0000-0050-000000000038}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000188}, !- Handle + {00000000-0000-0000-0006-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000039}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000189}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000160}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000190}, !- Handle + {00000000-0000-0000-0050-000000000161}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000191}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000155}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000192}, !- Handle + {00000000-0000-0000-0050-000000000156}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000193}, !- Handle + {00000000-0000-0000-0050-000000000155}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000003}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000194}, !- Handle + {00000000-0000-0000-0004-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000156}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000195}, !- Handle + {00000000-0000-0000-0017-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000076}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000196}, !- Handle + {00000000-0000-0000-0050-000000000076}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000003}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000197}, !- Handle + {00000000-0000-0000-0013-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000078}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000198}, !- Handle + {00000000-0000-0000-0050-000000000078}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000199}, !- Handle + {00000000-0000-0000-0039-000000000005}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000161}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000200}, !- Handle + {00000000-0000-0000-0014-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000080}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000201}, !- Handle + {00000000-0000-0000-0050-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000005}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000202}, !- Handle + {00000000-0000-0000-0013-000000000003}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000077}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000203}, !- Handle + {00000000-0000-0000-0050-000000000077}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000204}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000157}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000105}, !- Handle - {00000000-0000-0000-0050-000000000110}, !- Source Object + {00000000-0000-0000-0015-000000000205}, !- Handle + {00000000-0000-0000-0050-000000000157}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object + {00000000-0000-0000-0013-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000106}, !- Handle - {00000000-0000-0000-0050-000000000113}, !- Source Object + {00000000-0000-0000-0015-000000000206}, !- Handle + {00000000-0000-0000-0050-000000000160}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000001}, !- Target Object + {00000000-0000-0000-0039-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000107}, !- Handle - {00000000-0000-0000-0039-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000207}, !- Handle + {00000000-0000-0000-0039-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000107}, !- Target Object + {00000000-0000-0000-0050-000000000146}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000108}, !- Handle - {00000000-0000-0000-0050-000000000107}, !- Source Object + {00000000-0000-0000-0015-000000000208}, !- Handle + {00000000-0000-0000-0050-000000000146}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000109}, !- Handle - {00000000-0000-0000-0050-000000000027}, !- Source Object + {00000000-0000-0000-0015-000000000209}, !- Handle + {00000000-0000-0000-0050-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000016}, !- Target Object + {00000000-0000-0000-0056-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000110}, !- Handle - {00000000-0000-0000-0056-000000000018}, !- Source Object + {00000000-0000-0000-0015-000000000210}, !- Handle + {00000000-0000-0000-0056-000000000012}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000014}, !- Target Object + {00000000-0000-0000-0050-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000111}, !- Handle - {00000000-0000-0000-0050-000000000014}, !- Source Object + {00000000-0000-0000-0015-000000000211}, !- Handle + {00000000-0000-0000-0050-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000112}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000212}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000026}, !- Target Object + {00000000-0000-0000-0050-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000113}, !- Handle - {00000000-0000-0000-0050-000000000026}, !- Source Object + {00000000-0000-0000-0015-000000000213}, !- Handle + {00000000-0000-0000-0050-000000000040}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000001}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000114}, !- Handle - {00000000-0000-0000-0006-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000214}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000027}, !- Target Object + {00000000-0000-0000-0050-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000115}, !- Handle - {00000000-0000-0000-0050-000000000029}, !- Source Object + {00000000-0000-0000-0015-000000000215}, !- Handle + {00000000-0000-0000-0050-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000040}, !- Target Object + {00000000-0000-0000-0056-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000116}, !- Handle - {00000000-0000-0000-0056-000000000042}, !- Source Object + {00000000-0000-0000-0015-000000000216}, !- Handle + {00000000-0000-0000-0056-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000008}, !- Target Object + {00000000-0000-0000-0050-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000117}, !- Handle - {00000000-0000-0000-0050-000000000008}, !- Source Object + {00000000-0000-0000-0015-000000000217}, !- Handle + {00000000-0000-0000-0050-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000118}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000218}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000028}, !- Target Object + {00000000-0000-0000-0050-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000119}, !- Handle - {00000000-0000-0000-0050-000000000028}, !- Source Object + {00000000-0000-0000-0015-000000000219}, !- Handle + {00000000-0000-0000-0050-000000000042}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000120}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000220}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000029}, !- Target Object + {00000000-0000-0000-0050-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000121}, !- Handle - {00000000-0000-0000-0050-000000000031}, !- Source Object + {00000000-0000-0000-0015-000000000221}, !- Handle + {00000000-0000-0000-0050-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000031}, !- Target Object + {00000000-0000-0000-0056-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000122}, !- Handle - {00000000-0000-0000-0056-000000000033}, !- Source Object + {00000000-0000-0000-0015-000000000222}, !- Handle + {00000000-0000-0000-0056-000000000009}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000006}, !- Target Object + {00000000-0000-0000-0050-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000123}, !- Handle - {00000000-0000-0000-0050-000000000006}, !- Source Object + {00000000-0000-0000-0015-000000000223}, !- Handle + {00000000-0000-0000-0050-000000000026}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000124}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000224}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000030}, !- Target Object + {00000000-0000-0000-0050-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000125}, !- Handle - {00000000-0000-0000-0050-000000000030}, !- Source Object + {00000000-0000-0000-0015-000000000225}, !- Handle + {00000000-0000-0000-0050-000000000044}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000126}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000226}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000031}, !- Target Object + {00000000-0000-0000-0050-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000127}, !- Handle - {00000000-0000-0000-0050-000000000033}, !- Source Object + {00000000-0000-0000-0015-000000000227}, !- Handle + {00000000-0000-0000-0050-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000049}, !- Target Object + {00000000-0000-0000-0056-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000128}, !- Handle - {00000000-0000-0000-0056-000000000051}, !- Source Object + {00000000-0000-0000-0015-000000000228}, !- Handle + {00000000-0000-0000-0056-000000000021}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000010}, !- Target Object + {00000000-0000-0000-0050-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000129}, !- Handle - {00000000-0000-0000-0050-000000000010}, !- Source Object + {00000000-0000-0000-0015-000000000229}, !- Handle + {00000000-0000-0000-0050-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000130}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000230}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000032}, !- Target Object + {00000000-0000-0000-0050-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000131}, !- Handle - {00000000-0000-0000-0050-000000000032}, !- Source Object + {00000000-0000-0000-0015-000000000231}, !- Handle + {00000000-0000-0000-0050-000000000046}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object + {00000000-0000-0000-0006-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000132}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object + {00000000-0000-0000-0015-000000000232}, !- Handle + {00000000-0000-0000-0006-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000033}, !- Target Object + {00000000-0000-0000-0050-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000133}, !- Handle - {00000000-0000-0000-0050-000000000035}, !- Source Object + {00000000-0000-0000-0015-000000000233}, !- Handle + {00000000-0000-0000-0050-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000052}, !- Target Object + {00000000-0000-0000-0056-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000134}, !- Handle - {00000000-0000-0000-0056-000000000054}, !- Source Object + {00000000-0000-0000-0015-000000000234}, !- Handle + {00000000-0000-0000-0056-000000000030}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000012}, !- Target Object + {00000000-0000-0000-0050-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000135}, !- Handle - {00000000-0000-0000-0050-000000000012}, !- Source Object + {00000000-0000-0000-0015-000000000235}, !- Handle + {00000000-0000-0000-0050-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000136}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000236}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000034}, !- Target Object + {00000000-0000-0000-0050-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000137}, !- Handle - {00000000-0000-0000-0050-000000000034}, !- Source Object + {00000000-0000-0000-0015-000000000237}, !- Handle + {00000000-0000-0000-0050-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object + {00000000-0000-0000-0006-000000000007}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000138}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000238}, !- Handle + {00000000-0000-0000-0006-000000000007}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000035}, !- Target Object + {00000000-0000-0000-0050-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000139}, !- Handle + {00000000-0000-0000-0015-000000000239}, !- Handle {00000000-0000-0000-0055-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000059}, !- Target Object + {00000000-0000-0000-0050-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000140}, !- Handle + {00000000-0000-0000-0015-000000000240}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0050-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000141}, !- Handle - {00000000-0000-0000-0050-000000000060}, !- Source Object + {00000000-0000-0000-0015-000000000241}, !- Handle + {00000000-0000-0000-0050-000000000098}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000003}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000142}, !- Handle + {00000000-0000-0000-0015-000000000242}, !- Handle {00000000-0000-0000-0055-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000057}, !- Target Object + {00000000-0000-0000-0050-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000143}, !- Handle - {00000000-0000-0000-0050-000000000057}, !- Source Object + {00000000-0000-0000-0015-000000000243}, !- Handle + {00000000-0000-0000-0050-000000000095}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000144}, !- Handle + {00000000-0000-0000-0015-000000000244}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000093}, !- Target Object + {00000000-0000-0000-0050-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000145}, !- Handle - {00000000-0000-0000-0050-000000000058}, !- Source Object + {00000000-0000-0000-0015-000000000245}, !- Handle + {00000000-0000-0000-0050-000000000096}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000146}, !- Handle - {00000000-0000-0000-0050-000000000059}, !- Source Object + {00000000-0000-0000-0015-000000000246}, !- Handle + {00000000-0000-0000-0050-000000000097}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000147}, !- Handle + {00000000-0000-0000-0015-000000000247}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000056}, !- Target Object + {00000000-0000-0000-0050-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000148}, !- Handle - {00000000-0000-0000-0050-000000000056}, !- Source Object + {00000000-0000-0000-0015-000000000248}, !- Handle + {00000000-0000-0000-0050-000000000094}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000149}, !- Handle + {00000000-0000-0000-0015-000000000249}, !- Handle {00000000-0000-0000-0050-000000000001}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000001}, !- Target Object 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000150}, !- Handle + {00000000-0000-0000-0015-000000000250}, !- Handle {00000000-0000-0000-0095-000000000001}, !- Source Object 32, !- Outlet Port {00000000-0000-0000-0050-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000151}, !- Handle + {00000000-0000-0000-0015-000000000251}, !- Handle {00000000-0000-0000-0050-000000000002}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000152}, !- Handle + {00000000-0000-0000-0015-000000000252}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000091}, !- Target Object + {00000000-0000-0000-0050-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000153}, !- Handle - {00000000-0000-0000-0050-000000000091}, !- Source Object + {00000000-0000-0000-0015-000000000253}, !- Handle + {00000000-0000-0000-0050-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000154}, !- Handle + {00000000-0000-0000-0015-000000000254}, !- Handle {00000000-0000-0000-0054-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000092}, !- Target Object + {00000000-0000-0000-0050-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000155}, !- Handle - {00000000-0000-0000-0050-000000000092}, !- Source Object + {00000000-0000-0000-0015-000000000255}, !- Handle + {00000000-0000-0000-0050-000000000130}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000156}, !- Handle - {00000000-0000-0000-0050-000000000093}, !- Source Object + {00000000-0000-0000-0015-000000000256}, !- Handle + {00000000-0000-0000-0050-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000157}, !- Handle + {00000000-0000-0000-0015-000000000257}, !- Handle {00000000-0000-0000-0054-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000094}, !- Target Object + {00000000-0000-0000-0050-000000000132}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000158}, !- Handle - {00000000-0000-0000-0050-000000000094}, !- Source Object + {00000000-0000-0000-0015-000000000258}, !- Handle + {00000000-0000-0000-0050-000000000132}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000159}, !- Handle + {00000000-0000-0000-0015-000000000259}, !- Handle {00000000-0000-0000-0016-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000095}, !- Target Object + {00000000-0000-0000-0050-000000000133}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000160}, !- Handle - {00000000-0000-0000-0050-000000000095}, !- Source Object + {00000000-0000-0000-0015-000000000260}, !- Handle + {00000000-0000-0000-0050-000000000133}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000161}, !- Handle + {00000000-0000-0000-0015-000000000261}, !- Handle {00000000-0000-0000-0054-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000060}, !- Target Object + {00000000-0000-0000-0050-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000162}, !- Handle + {00000000-0000-0000-0015-000000000262}, !- Handle {00000000-0000-0000-0016-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000096}, !- Target Object + {00000000-0000-0000-0050-000000000134}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000163}, !- Handle - {00000000-0000-0000-0050-000000000096}, !- Source Object + {00000000-0000-0000-0015-000000000263}, !- Handle + {00000000-0000-0000-0050-000000000134}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000164}, !- Handle + {00000000-0000-0000-0015-000000000264}, !- Handle {00000000-0000-0000-0054-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000058}, !- Target Object + {00000000-0000-0000-0050-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000165}, !- Handle + {00000000-0000-0000-0015-000000000265}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000050}, !- Target Object + {00000000-0000-0000-0050-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000166}, !- Handle - {00000000-0000-0000-0050-000000000050}, !- Source Object + {00000000-0000-0000-0015-000000000266}, !- Handle + {00000000-0000-0000-0050-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000167}, !- Handle + {00000000-0000-0000-0015-000000000267}, !- Handle {00000000-0000-0000-0097-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000051}, !- Target Object + {00000000-0000-0000-0050-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000168}, !- Handle - {00000000-0000-0000-0050-000000000051}, !- Source Object + {00000000-0000-0000-0015-000000000268}, !- Handle + {00000000-0000-0000-0050-000000000089}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000169}, !- Handle + {00000000-0000-0000-0015-000000000269}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000052}, !- Target Object + {00000000-0000-0000-0050-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000170}, !- Handle - {00000000-0000-0000-0050-000000000052}, !- Source Object + {00000000-0000-0000-0015-000000000270}, !- Handle + {00000000-0000-0000-0050-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000171}, !- Handle + {00000000-0000-0000-0015-000000000271}, !- Handle {00000000-0000-0000-0097-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000053}, !- Target Object + {00000000-0000-0000-0050-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000172}, !- Handle - {00000000-0000-0000-0050-000000000053}, !- Source Object + {00000000-0000-0000-0015-000000000272}, !- Handle + {00000000-0000-0000-0050-000000000091}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000173}, !- Handle + {00000000-0000-0000-0015-000000000273}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000054}, !- Target Object + {00000000-0000-0000-0050-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000174}, !- Handle - {00000000-0000-0000-0050-000000000054}, !- Source Object + {00000000-0000-0000-0015-000000000274}, !- Handle + {00000000-0000-0000-0050-000000000092}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000175}, !- Handle + {00000000-0000-0000-0015-000000000275}, !- Handle {00000000-0000-0000-0097-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000055}, !- Target Object + {00000000-0000-0000-0050-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000176}, !- Handle - {00000000-0000-0000-0050-000000000055}, !- Source Object + {00000000-0000-0000-0015-000000000276}, !- Handle + {00000000-0000-0000-0050-000000000093}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000177}, !- Handle + {00000000-0000-0000-0015-000000000277}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000061}, !- Target Object + {00000000-0000-0000-0050-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000178}, !- Handle - {00000000-0000-0000-0050-000000000061}, !- Source Object + {00000000-0000-0000-0015-000000000278}, !- Handle + {00000000-0000-0000-0050-000000000099}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000179}, !- Handle + {00000000-0000-0000-0015-000000000279}, !- Handle {00000000-0000-0000-0097-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000062}, !- Target Object + {00000000-0000-0000-0050-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000180}, !- Handle - {00000000-0000-0000-0050-000000000062}, !- Source Object + {00000000-0000-0000-0015-000000000280}, !- Handle + {00000000-0000-0000-0050-000000000100}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000181}, !- Handle + {00000000-0000-0000-0015-000000000281}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0050-000000000063}, !- Target Object + {00000000-0000-0000-0050-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000182}, !- Handle - {00000000-0000-0000-0050-000000000063}, !- Source Object + {00000000-0000-0000-0015-000000000282}, !- Handle + {00000000-0000-0000-0050-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000183}, !- Handle + {00000000-0000-0000-0015-000000000283}, !- Handle {00000000-0000-0000-0097-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000064}, !- Target Object + {00000000-0000-0000-0050-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000184}, !- Handle - {00000000-0000-0000-0050-000000000064}, !- Source Object + {00000000-0000-0000-0015-000000000284}, !- Handle + {00000000-0000-0000-0050-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000185}, !- Handle + {00000000-0000-0000-0015-000000000285}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000065}, !- Target Object + {00000000-0000-0000-0050-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000186}, !- Handle - {00000000-0000-0000-0050-000000000065}, !- Source Object + {00000000-0000-0000-0015-000000000286}, !- Handle + {00000000-0000-0000-0050-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000187}, !- Handle + {00000000-0000-0000-0015-000000000287}, !- Handle {00000000-0000-0000-0097-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000066}, !- Target Object + {00000000-0000-0000-0050-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000188}, !- Handle - {00000000-0000-0000-0050-000000000066}, !- Source Object + {00000000-0000-0000-0015-000000000288}, !- Handle + {00000000-0000-0000-0050-000000000104}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000189}, !- Handle + {00000000-0000-0000-0015-000000000289}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0050-000000000067}, !- Target Object + {00000000-0000-0000-0050-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000190}, !- Handle - {00000000-0000-0000-0050-000000000067}, !- Source Object + {00000000-0000-0000-0015-000000000290}, !- Handle + {00000000-0000-0000-0050-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000191}, !- Handle + {00000000-0000-0000-0015-000000000291}, !- Handle {00000000-0000-0000-0097-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000068}, !- Target Object + {00000000-0000-0000-0050-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000192}, !- Handle - {00000000-0000-0000-0050-000000000068}, !- Source Object + {00000000-0000-0000-0015-000000000292}, !- Handle + {00000000-0000-0000-0050-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000193}, !- Handle + {00000000-0000-0000-0015-000000000293}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000069}, !- Target Object + {00000000-0000-0000-0050-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000194}, !- Handle - {00000000-0000-0000-0050-000000000069}, !- Source Object + {00000000-0000-0000-0015-000000000294}, !- Handle + {00000000-0000-0000-0050-000000000107}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000195}, !- Handle + {00000000-0000-0000-0015-000000000295}, !- Handle {00000000-0000-0000-0097-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000070}, !- Target Object + {00000000-0000-0000-0050-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000196}, !- Handle - {00000000-0000-0000-0050-000000000070}, !- Source Object + {00000000-0000-0000-0015-000000000296}, !- Handle + {00000000-0000-0000-0050-000000000108}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 11; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000197}, !- Handle + {00000000-0000-0000-0015-000000000297}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000071}, !- Target Object + {00000000-0000-0000-0050-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000198}, !- Handle - {00000000-0000-0000-0050-000000000071}, !- Source Object + {00000000-0000-0000-0015-000000000298}, !- Handle + {00000000-0000-0000-0050-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000199}, !- Handle + {00000000-0000-0000-0015-000000000299}, !- Handle {00000000-0000-0000-0097-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000072}, !- Target Object + {00000000-0000-0000-0050-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000200}, !- Handle - {00000000-0000-0000-0050-000000000072}, !- Source Object + {00000000-0000-0000-0015-000000000300}, !- Handle + {00000000-0000-0000-0050-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000201}, !- Handle + {00000000-0000-0000-0015-000000000301}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000073}, !- Target Object + {00000000-0000-0000-0050-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000202}, !- Handle - {00000000-0000-0000-0050-000000000073}, !- Source Object + {00000000-0000-0000-0015-000000000302}, !- Handle + {00000000-0000-0000-0050-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000203}, !- Handle + {00000000-0000-0000-0015-000000000303}, !- Handle {00000000-0000-0000-0097-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000074}, !- Target Object + {00000000-0000-0000-0050-000000000112}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000204}, !- Handle - {00000000-0000-0000-0050-000000000074}, !- Source Object + {00000000-0000-0000-0015-000000000304}, !- Handle + {00000000-0000-0000-0050-000000000112}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 13; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000205}, !- Handle + {00000000-0000-0000-0015-000000000305}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000075}, !- Target Object + {00000000-0000-0000-0050-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000206}, !- Handle - {00000000-0000-0000-0050-000000000075}, !- Source Object + {00000000-0000-0000-0015-000000000306}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000207}, !- Handle + {00000000-0000-0000-0015-000000000307}, !- Handle {00000000-0000-0000-0097-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000076}, !- Target Object + {00000000-0000-0000-0050-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000208}, !- Handle - {00000000-0000-0000-0050-000000000076}, !- Source Object + {00000000-0000-0000-0015-000000000308}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000209}, !- Handle + {00000000-0000-0000-0015-000000000309}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0050-000000000077}, !- Target Object + {00000000-0000-0000-0050-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000210}, !- Handle - {00000000-0000-0000-0050-000000000077}, !- Source Object + {00000000-0000-0000-0015-000000000310}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000211}, !- Handle + {00000000-0000-0000-0015-000000000311}, !- Handle {00000000-0000-0000-0097-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000078}, !- Target Object + {00000000-0000-0000-0050-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000212}, !- Handle - {00000000-0000-0000-0050-000000000078}, !- Source Object + {00000000-0000-0000-0015-000000000312}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000213}, !- Handle + {00000000-0000-0000-0015-000000000313}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000079}, !- Target Object + {00000000-0000-0000-0050-000000000117}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000214}, !- Handle - {00000000-0000-0000-0050-000000000079}, !- Source Object + {00000000-0000-0000-0015-000000000314}, !- Handle + {00000000-0000-0000-0050-000000000117}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000215}, !- Handle + {00000000-0000-0000-0015-000000000315}, !- Handle {00000000-0000-0000-0097-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000080}, !- Target Object + {00000000-0000-0000-0050-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000216}, !- Handle - {00000000-0000-0000-0050-000000000080}, !- Source Object + {00000000-0000-0000-0015-000000000316}, !- Handle + {00000000-0000-0000-0050-000000000118}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000217}, !- Handle + {00000000-0000-0000-0015-000000000317}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000081}, !- Target Object + {00000000-0000-0000-0050-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000218}, !- Handle - {00000000-0000-0000-0050-000000000081}, !- Source Object + {00000000-0000-0000-0015-000000000318}, !- Handle + {00000000-0000-0000-0050-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000219}, !- Handle + {00000000-0000-0000-0015-000000000319}, !- Handle {00000000-0000-0000-0097-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000082}, !- Target Object + {00000000-0000-0000-0050-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000220}, !- Handle - {00000000-0000-0000-0050-000000000082}, !- Source Object + {00000000-0000-0000-0015-000000000320}, !- Handle + {00000000-0000-0000-0050-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000221}, !- Handle + {00000000-0000-0000-0015-000000000321}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000083}, !- Target Object + {00000000-0000-0000-0050-000000000121}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000222}, !- Handle - {00000000-0000-0000-0050-000000000083}, !- Source Object + {00000000-0000-0000-0015-000000000322}, !- Handle + {00000000-0000-0000-0050-000000000121}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000223}, !- Handle + {00000000-0000-0000-0015-000000000323}, !- Handle {00000000-0000-0000-0097-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000084}, !- Target Object + {00000000-0000-0000-0050-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000224}, !- Handle - {00000000-0000-0000-0050-000000000084}, !- Source Object + {00000000-0000-0000-0015-000000000324}, !- Handle + {00000000-0000-0000-0050-000000000122}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000225}, !- Handle - {00000000-0000-0000-0050-000000000111}, !- Source Object + {00000000-0000-0000-0015-000000000325}, !- Handle + {00000000-0000-0000-0050-000000000165}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object + {00000000-0000-0000-0043-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000226}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000326}, !- Handle + {00000000-0000-0000-0043-000000000003}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000115}, !- Target Object + {00000000-0000-0000-0050-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000227}, !- Handle - {00000000-0000-0000-0050-000000000115}, !- Source Object + {00000000-0000-0000-0015-000000000327}, !- Handle + {00000000-0000-0000-0050-000000000173}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000228}, !- Handle + {00000000-0000-0000-0015-000000000328}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000116}, !- Target Object + {00000000-0000-0000-0050-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000229}, !- Handle - {00000000-0000-0000-0050-000000000116}, !- Source Object + {00000000-0000-0000-0015-000000000329}, !- Handle + {00000000-0000-0000-0050-000000000174}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000003}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000330}, !- Handle + {00000000-0000-0000-0043-000000000003}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000166}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000331}, !- Handle + {00000000-0000-0000-0050-000000000151}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000332}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000169}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000333}, !- Handle + {00000000-0000-0000-0050-000000000169}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000334}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000170}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000335}, !- Handle + {00000000-0000-0000-0050-000000000170}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0043-000000000001}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000230}, !- Handle + {00000000-0000-0000-0015-000000000336}, !- Handle {00000000-0000-0000-0043-000000000001}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0050-000000000112}, !- Target Object + {00000000-0000-0000-0050-000000000152}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000337}, !- Handle + {00000000-0000-0000-0050-000000000158}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000338}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000171}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000339}, !- Handle + {00000000-0000-0000-0050-000000000171}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000340}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000172}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000341}, !- Handle + {00000000-0000-0000-0050-000000000172}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000342}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000159}, !- Target Object 2; !- Inlet Port OS:Connector:Mixer, @@ -2033,7 +3347,9 @@ OS:Connector:Mixer, {00000000-0000-0000-0016-000000000002}, !- Handle Connector Mixer 2, !- Name {00000000-0000-0000-0015-000000000043}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000098}; !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000098}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000148}, !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000198}; !- Inlet Branch Name 3 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000003}, !- Handle @@ -2052,30 +3368,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0016-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0015-000000000159}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000151}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000155}; !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000259}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000251}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000255}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0015-000000000162}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000158}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000168}, !- Inlet Branch Name 2 - {00000000-0000-0000-0015-000000000172}, !- Inlet Branch Name 3 - {00000000-0000-0000-0015-000000000176}, !- Inlet Branch Name 4 - {00000000-0000-0000-0015-000000000180}, !- Inlet Branch Name 5 - {00000000-0000-0000-0015-000000000184}, !- Inlet Branch Name 6 - {00000000-0000-0000-0015-000000000188}, !- Inlet Branch Name 7 - {00000000-0000-0000-0015-000000000192}, !- Inlet Branch Name 8 - {00000000-0000-0000-0015-000000000196}, !- Inlet Branch Name 9 - {00000000-0000-0000-0015-000000000200}, !- Inlet Branch Name 10 - {00000000-0000-0000-0015-000000000204}, !- Inlet Branch Name 11 - {00000000-0000-0000-0015-000000000208}, !- Inlet Branch Name 12 - {00000000-0000-0000-0015-000000000212}, !- Inlet Branch Name 13 - {00000000-0000-0000-0015-000000000216}, !- Inlet Branch Name 14 - {00000000-0000-0000-0015-000000000220}, !- Inlet Branch Name 15 - {00000000-0000-0000-0015-000000000224}; !- Inlet Branch Name 16 + {00000000-0000-0000-0015-000000000262}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000258}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000268}, !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000272}, !- Inlet Branch Name 3 + {00000000-0000-0000-0015-000000000276}, !- Inlet Branch Name 4 + {00000000-0000-0000-0015-000000000280}, !- Inlet Branch Name 5 + {00000000-0000-0000-0015-000000000284}, !- Inlet Branch Name 6 + {00000000-0000-0000-0015-000000000288}, !- Inlet Branch Name 7 + {00000000-0000-0000-0015-000000000292}, !- Inlet Branch Name 8 + {00000000-0000-0000-0015-000000000296}, !- Inlet Branch Name 9 + {00000000-0000-0000-0015-000000000300}, !- Inlet Branch Name 10 + {00000000-0000-0000-0015-000000000304}, !- Inlet Branch Name 11 + {00000000-0000-0000-0015-000000000308}, !- Inlet Branch Name 12 + {00000000-0000-0000-0015-000000000312}, !- Inlet Branch Name 13 + {00000000-0000-0000-0015-000000000316}, !- Inlet Branch Name 14 + {00000000-0000-0000-0015-000000000320}, !- Inlet Branch Name 15 + {00000000-0000-0000-0015-000000000324}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000001}, !- Handle @@ -2089,7 +3405,9 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0015-000000000041}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000042}; !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000042}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000145}, !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000195}; !- Outlet Branch Name 3 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000003}, !- Handle @@ -2108,30 +3426,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0017-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0015-000000000148}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000140}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000152}; !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000248}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000240}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000252}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0015-000000000143}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000144}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000165}, !- Outlet Branch Name 2 - {00000000-0000-0000-0015-000000000169}, !- Outlet Branch Name 3 - {00000000-0000-0000-0015-000000000173}, !- Outlet Branch Name 4 - {00000000-0000-0000-0015-000000000177}, !- Outlet Branch Name 5 - {00000000-0000-0000-0015-000000000181}, !- Outlet Branch Name 6 - {00000000-0000-0000-0015-000000000185}, !- Outlet Branch Name 7 - {00000000-0000-0000-0015-000000000189}, !- Outlet Branch Name 8 - {00000000-0000-0000-0015-000000000193}, !- Outlet Branch Name 9 - {00000000-0000-0000-0015-000000000197}, !- Outlet Branch Name 10 - {00000000-0000-0000-0015-000000000201}, !- Outlet Branch Name 11 - {00000000-0000-0000-0015-000000000205}, !- Outlet Branch Name 12 - {00000000-0000-0000-0015-000000000209}, !- Outlet Branch Name 13 - {00000000-0000-0000-0015-000000000213}, !- Outlet Branch Name 14 - {00000000-0000-0000-0015-000000000217}, !- Outlet Branch Name 15 - {00000000-0000-0000-0015-000000000221}; !- Outlet Branch Name 16 + {00000000-0000-0000-0015-000000000243}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000244}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000265}, !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000269}, !- Outlet Branch Name 3 + {00000000-0000-0000-0015-000000000273}, !- Outlet Branch Name 4 + {00000000-0000-0000-0015-000000000277}, !- Outlet Branch Name 5 + {00000000-0000-0000-0015-000000000281}, !- Outlet Branch Name 6 + {00000000-0000-0000-0015-000000000285}, !- Outlet Branch Name 7 + {00000000-0000-0000-0015-000000000289}, !- Outlet Branch Name 8 + {00000000-0000-0000-0015-000000000293}, !- Outlet Branch Name 9 + {00000000-0000-0000-0015-000000000297}, !- Outlet Branch Name 10 + {00000000-0000-0000-0015-000000000301}, !- Outlet Branch Name 11 + {00000000-0000-0000-0015-000000000305}, !- Outlet Branch Name 12 + {00000000-0000-0000-0015-000000000309}, !- Outlet Branch Name 13 + {00000000-0000-0000-0015-000000000313}, !- Outlet Branch Name 14 + {00000000-0000-0000-0015-000000000317}, !- Outlet Branch Name 15 + {00000000-0000-0000-0015-000000000321}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0018-000000000001}, !- Handle @@ -2390,6 +3708,20 @@ OS:Controller:MechanicalVentilation, , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0019-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0019-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + OS:Controller:OutdoorAir, {00000000-0000-0000-0020-000000000001}, !- Handle Controller Outdoor Air 1, !- Name @@ -2408,10 +3740,70 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0064-000000000023}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0064-000000000027}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0019-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0020-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0064-000000000025}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0019-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0020-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0064-000000000026}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0019-000000000001}, !- Controller Mechanical Ventilation + {00000000-0000-0000-0019-000000000003}, !- Controller Mechanical Ventilation , !- Time of Day Economizer Control Schedule Name No, !- High Humidity Control , !- Humidistat Control Zone Name @@ -2433,6 +3825,32 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} +OS:Controller:WaterCoil, + {00000000-0000-0000-0021-000000000002}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0013-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0021-000000000003}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0013-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + OS:ConvergenceLimits, {00000000-0000-0000-0022-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -2445,7 +3863,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0015-000000000074}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 1513.88883194005, !- Fan Power at Design Air Flow Rate {W} + 3780.56530191195, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -2536,6 +3954,34 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0024-000000000005}, !- Handle + WaterCooled_Screw_CAPFT_NECB2011, !- Name + 0.812998, !- Coefficient1 Constant + -0.0142532, !- Coefficient2 x + -0.00161799, !- Coefficient3 x**2 + 0.0263844, !- Coefficient4 y + -0.00091543, !- Coefficient5 y**2 + 0.00169601, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0024-000000000006}, !- Handle + WaterCooled_Screw_EIRFT_NECB2011, !- Name + 0.638103, !- Coefficient1 Constant + 0.00630158, !- Coefficient2 x + 0.00092327, !- Coefficient3 x**2 + -0.00455294, !- Coefficient4 y + 0.000825682, !- Coefficient5 y**2 + -0.00156152, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0024-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -2549,7 +3995,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000006}, !- Handle + {00000000-0000-0000-0024-000000000008}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -2602,6 +4048,15 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0026-000000000003}, !- Handle + WaterCooled_Screw_EIRFPLR_NECB2011, !- Name + 0.330188, !- Coefficient1 Constant + 0.235543, !- Coefficient2 x + 0.460708, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0026-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -2763,7 +4218,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__ClgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2771,6 +4226,38 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0064-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0034-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0034-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name + {00000000-0000-0000-0064-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0034-000000000005}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__ClgSch0, !- Name + {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0034-000000000006}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__HtgSch0, !- Name {00000000-0000-0000-0064-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -2779,41 +4266,147 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {06a09f65-6f12-4014-8628-5e38891429e9}<23.9 && {06a09f65-6f12-4014-8628-5e38891429e9}>1.7, !- Program Line 1 + SET {d45adf95-ba66-46c4-8991-8e076032fc47} = 29.4, !- Program Line 2 + SET {bc8dfec4-6d8b-4e29-ab0c-8036daabcfd7} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {06a09f65-6f12-4014-8628-5e38891429e9}<23.9 && {06a09f65-6f12-4014-8628-5e38891429e9}>1.7, !- Program Line 4 + SET {d45adf95-ba66-46c4-8991-8e076032fc47} = 29.4, !- Program Line 5 + SET {bc8dfec4-6d8b-4e29-ab0c-8036daabcfd7} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {06a09f65-6f12-4014-8628-5e38891429e9}<23.9 && {06a09f65-6f12-4014-8628-5e38891429e9}>1.7, !- Program Line 7 + SET {d45adf95-ba66-46c4-8991-8e076032fc47} = 29.4, !- Program Line 8 + SET {bc8dfec4-6d8b-4e29-ab0c-8036daabcfd7} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {06a09f65-6f12-4014-8628-5e38891429e9}<23.9 && {06a09f65-6f12-4014-8628-5e38891429e9}>1.7, !- Program Line 10 + SET {d45adf95-ba66-46c4-8991-8e076032fc47} = 29.4, !- Program Line 11 + SET {bc8dfec4-6d8b-4e29-ab0c-8036daabcfd7} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {d45adf95-ba66-46c4-8991-8e076032fc47} = NULL, !- Program Line 14 + SET {bc8dfec4-6d8b-4e29-ab0c-8036daabcfd7} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0035-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4790a16a-89c3-4358-97e9-b928ff386379}<23.9 && {4790a16a-89c3-4358-97e9-b928ff386379}>1.7, !- Program Line 1 + SET {8ba16185-242f-4f84-a3de-e553752cbd1d} = 29.4, !- Program Line 2 + SET {00de2f05-400e-4b5a-9448-fee532ec2d6d} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4790a16a-89c3-4358-97e9-b928ff386379}<23.9 && {4790a16a-89c3-4358-97e9-b928ff386379}>1.7, !- Program Line 4 + SET {8ba16185-242f-4f84-a3de-e553752cbd1d} = 29.4, !- Program Line 5 + SET {00de2f05-400e-4b5a-9448-fee532ec2d6d} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4790a16a-89c3-4358-97e9-b928ff386379}<23.9 && {4790a16a-89c3-4358-97e9-b928ff386379}>1.7, !- Program Line 7 + SET {8ba16185-242f-4f84-a3de-e553752cbd1d} = 29.4, !- Program Line 8 + SET {00de2f05-400e-4b5a-9448-fee532ec2d6d} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4790a16a-89c3-4358-97e9-b928ff386379}<23.9 && {4790a16a-89c3-4358-97e9-b928ff386379}>1.7, !- Program Line 10 + SET {8ba16185-242f-4f84-a3de-e553752cbd1d} = 29.4, !- Program Line 11 + SET {00de2f05-400e-4b5a-9448-fee532ec2d6d} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {8ba16185-242f-4f84-a3de-e553752cbd1d} = NULL, !- Program Line 14 + SET {00de2f05-400e-4b5a-9448-fee532ec2d6d} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0035-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}<23.9 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}>1.7, !- Program Line 1 - SET {69a5ebb3-9cda-4309-9910-f2594e40e191} = 29.4, !- Program Line 2 - SET {7e3fa8f2-dd28-4a18-b436-0a3bb1661dd3} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}<23.9 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}>1.7, !- Program Line 4 - SET {69a5ebb3-9cda-4309-9910-f2594e40e191} = 29.4, !- Program Line 5 - SET {7e3fa8f2-dd28-4a18-b436-0a3bb1661dd3} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}<23.9 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}>1.7, !- Program Line 7 - SET {69a5ebb3-9cda-4309-9910-f2594e40e191} = 29.4, !- Program Line 8 - SET {7e3fa8f2-dd28-4a18-b436-0a3bb1661dd3} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}<23.9 && {c9faf8cb-63dd-4303-a315-9ee45d1f7823}>1.7, !- Program Line 10 - SET {69a5ebb3-9cda-4309-9910-f2594e40e191} = 29.4, !- Program Line 11 - SET {7e3fa8f2-dd28-4a18-b436-0a3bb1661dd3} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2a6cea1d-a735-4afc-9e63-5941ab925dce}<23.9 && {2a6cea1d-a735-4afc-9e63-5941ab925dce}>1.7, !- Program Line 1 + SET {d085ead3-3e15-49e7-8f24-5d622e236aef} = 29.4, !- Program Line 2 + SET {fdc3f7c5-28b7-48f1-8015-792506ccc25f} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2a6cea1d-a735-4afc-9e63-5941ab925dce}<23.9 && {2a6cea1d-a735-4afc-9e63-5941ab925dce}>1.7, !- Program Line 4 + SET {d085ead3-3e15-49e7-8f24-5d622e236aef} = 29.4, !- Program Line 5 + SET {fdc3f7c5-28b7-48f1-8015-792506ccc25f} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2a6cea1d-a735-4afc-9e63-5941ab925dce}<23.9 && {2a6cea1d-a735-4afc-9e63-5941ab925dce}>1.7, !- Program Line 7 + SET {d085ead3-3e15-49e7-8f24-5d622e236aef} = 29.4, !- Program Line 8 + SET {fdc3f7c5-28b7-48f1-8015-792506ccc25f} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2a6cea1d-a735-4afc-9e63-5941ab925dce}<23.9 && {2a6cea1d-a735-4afc-9e63-5941ab925dce}>1.7, !- Program Line 10 + SET {d085ead3-3e15-49e7-8f24-5d622e236aef} = 29.4, !- Program Line 11 + SET {fdc3f7c5-28b7-48f1-8015-792506ccc25f} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {69a5ebb3-9cda-4309-9910-f2594e40e191} = NULL, !- Program Line 14 - SET {7e3fa8f2-dd28-4a18-b436-0a3bb1661dd3} = NULL, !- Program Line 15 + SET {d085ead3-3e15-49e7-8f24-5d622e236aef} = NULL, !- Program Line 14 + SET {fdc3f7c5-28b7-48f1-8015-792506ccc25f} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0036-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0035-000000000002}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0036-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0035-000000000003}; !- Program Name 1 + OS:EnergyManagementSystem:Sensor, {00000000-0000-0000-0037-000000000001}, !- Handle OAT, !- Name Environment, !- Output Variable or Output Meter Index Key Name Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0037-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0037-000000000003}, !- Handle + OAT_2, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + OS:Facility, {00000000-0000-0000-0038-000000000001}; !- Handle OS:Fan:VariableVolume, {00000000-0000-0000-0039-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000156}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000157}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000206}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000207}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000003}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -2834,8 +4427,29 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000002}, !- Handle - Sys6 Supply Fan, !- Name + {00000000-0000-0000-0039-000000000004}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000151}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000149}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000005}, !- Handle + Sys6 Supply Fan 2, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -2850,6 +4464,27 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000201}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000199}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000006}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0015-000000000101}, !- Air Inlet Node Name {00000000-0000-0000-0015-000000000099}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -2896,6 +4531,58 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0015-000000000331}, !- Supply Air Inlet Node + {00000000-0000-0000-0015-000000000332}, !- Supply Air Outlet Node + {00000000-0000-0000-0015-000000000335}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0015-000000000336}, !- Exhaust Air Outlet Node + 897.446570606695, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0043-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0015-000000000337}, !- Supply Air Inlet Node + {00000000-0000-0000-0015-000000000338}, !- Supply Air Outlet Node + {00000000-0000-0000-0015-000000000341}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0015-000000000342}, !- Exhaust Air Outlet Node + 897.446570606695, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0043-000000000003}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} @@ -2907,10 +4594,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0015-000000000225}, !- Supply Air Inlet Node - {00000000-0000-0000-0015-000000000226}, !- Supply Air Outlet Node - {00000000-0000-0000-0015-000000000229}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0015-000000000230}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0015-000000000325}, !- Supply Air Inlet Node + {00000000-0000-0000-0015-000000000326}, !- Supply Air Outlet Node + {00000000-0000-0000-0015-000000000329}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0015-000000000330}, !- Exhaust Air Outlet Node 897.446570606695, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -3354,17 +5041,49 @@ OS:ModelObjectList, {00000000-0000-0000-0049-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name + OS:Node, {00000000-0000-0000-0050-000000000001}, !- Handle 125gal Electricity Water Heater - 84kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000140}, !- Inlet Port - {00000000-0000-0000-0015-000000000149}; !- Outlet Port + {00000000-0000-0000-0015-000000000240}, !- Inlet Port + {00000000-0000-0000-0015-000000000249}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000002}, !- Handle 125gal Electricity Water Heater - 84kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000150}, !- Inlet Port - {00000000-0000-0000-0015-000000000151}; !- Outlet Port + {00000000-0000-0000-0015-000000000250}, !- Inlet Port + {00000000-0000-0000-0015-000000000251}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000003}, !- Handle @@ -3446,609 +5165,957 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000184}, !- Inlet Port + {00000000-0000-0000-0015-000000000185}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000017}, !- Handle + {00000000-0000-0000-0050-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000178}, !- Inlet Port + {00000000-0000-0000-0015-000000000179}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000018}, !- Handle + {00000000-0000-0000-0050-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000166}, !- Inlet Port + {00000000-0000-0000-0015-000000000167}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000019}, !- Handle + {00000000-0000-0000-0050-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000172}, !- Inlet Port + {00000000-0000-0000-0015-000000000173}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000023}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000020}, !- Handle + {00000000-0000-0000-0050-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0015-000000000160}, !- Inlet Port + {00000000-0000-0000-0015-000000000161}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000025}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000021}, !- Handle + {00000000-0000-0000-0050-000000000026}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000222}, !- Inlet Port + {00000000-0000-0000-0015-000000000223}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000027}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000022}, !- Handle + {00000000-0000-0000-0050-000000000028}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000210}, !- Inlet Port + {00000000-0000-0000-0015-000000000211}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000029}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000023}, !- Handle + {00000000-0000-0000-0050-000000000030}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000228}, !- Inlet Port + {00000000-0000-0000-0015-000000000229}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000031}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000024}, !- Handle + {00000000-0000-0000-0050-000000000032}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000234}, !- Inlet Port + {00000000-0000-0000-0015-000000000235}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000033}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000025}, !- Handle + {00000000-0000-0000-0050-000000000034}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0015-000000000216}, !- Inlet Port + {00000000-0000-0000-0015-000000000217}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000035}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000026}, !- Handle + {00000000-0000-0000-0050-000000000036}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000112}, !- Inlet Port {00000000-0000-0000-0015-000000000113}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000027}, !- Handle + {00000000-0000-0000-0050-000000000037}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000114}, !- Inlet Port {00000000-0000-0000-0015-000000000109}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000028}, !- Handle + {00000000-0000-0000-0050-000000000038}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000186}, !- Inlet Port + {00000000-0000-0000-0015-000000000187}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000039}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000188}, !- Inlet Port + {00000000-0000-0000-0015-000000000183}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000040}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000212}, !- Inlet Port + {00000000-0000-0000-0015-000000000213}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000041}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000214}, !- Inlet Port + {00000000-0000-0000-0015-000000000209}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000042}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000218}, !- Inlet Port + {00000000-0000-0000-0015-000000000219}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000043}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000220}, !- Inlet Port + {00000000-0000-0000-0015-000000000215}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000044}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000224}, !- Inlet Port + {00000000-0000-0000-0015-000000000225}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000045}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000226}, !- Inlet Port + {00000000-0000-0000-0015-000000000221}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000046}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000230}, !- Inlet Port + {00000000-0000-0000-0015-000000000231}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000047}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000232}, !- Inlet Port + {00000000-0000-0000-0015-000000000227}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000236}, !- Inlet Port + {00000000-0000-0000-0015-000000000237}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000238}, !- Inlet Port + {00000000-0000-0000-0015-000000000233}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000050}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000118}, !- Inlet Port {00000000-0000-0000-0015-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000029}, !- Handle + {00000000-0000-0000-0050-000000000051}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000120}, !- Inlet Port {00000000-0000-0000-0015-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000030}, !- Handle + {00000000-0000-0000-0050-000000000052}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000124}, !- Inlet Port {00000000-0000-0000-0015-000000000125}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000031}, !- Handle + {00000000-0000-0000-0050-000000000053}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000126}, !- Inlet Port {00000000-0000-0000-0015-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000032}, !- Handle + {00000000-0000-0000-0050-000000000054}, !- Handle Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000130}, !- Inlet Port {00000000-0000-0000-0015-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000033}, !- Handle + {00000000-0000-0000-0050-000000000055}, !- Handle Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000132}, !- Inlet Port {00000000-0000-0000-0015-000000000127}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000034}, !- Handle + {00000000-0000-0000-0050-000000000056}, !- Handle Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000136}, !- Inlet Port {00000000-0000-0000-0015-000000000137}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000035}, !- Handle + {00000000-0000-0000-0050-000000000057}, !- Handle Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000138}, !- Inlet Port {00000000-0000-0000-0015-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000036}, !- Handle + {00000000-0000-0000-0050-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000162}, !- Inlet Port + {00000000-0000-0000-0015-000000000163}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000164}, !- Inlet Port + {00000000-0000-0000-0015-000000000159}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000168}, !- Inlet Port + {00000000-0000-0000-0015-000000000169}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000170}, !- Inlet Port + {00000000-0000-0000-0015-000000000165}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000174}, !- Inlet Port + {00000000-0000-0000-0015-000000000175}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000176}, !- Inlet Port + {00000000-0000-0000-0015-000000000171}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000180}, !- Inlet Port + {00000000-0000-0000-0015-000000000181}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000182}, !- Inlet Port + {00000000-0000-0000-0015-000000000177}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000066}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000040}, !- Inlet Port {00000000-0000-0000-0015-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000037}, !- Handle + {00000000-0000-0000-0050-000000000067}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000043}, !- Inlet Port {00000000-0000-0000-0015-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000038}, !- Handle + {00000000-0000-0000-0050-000000000068}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000037}, !- Inlet Port {00000000-0000-0000-0015-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000039}, !- Handle + {00000000-0000-0000-0050-000000000069}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000061}, !- Inlet Port {00000000-0000-0000-0015-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000040}, !- Handle + {00000000-0000-0000-0050-000000000070}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000042}, !- Inlet Port {00000000-0000-0000-0015-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000041}, !- Handle + {00000000-0000-0000-0050-000000000071}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000102}, !- Inlet Port {00000000-0000-0000-0015-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000042}, !- Handle + {00000000-0000-0000-0050-000000000072}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000097}, !- Inlet Port {00000000-0000-0000-0015-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000043}, !- Handle + {00000000-0000-0000-0050-000000000073}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000145}, !- Inlet Port + {00000000-0000-0000-0015-000000000146}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000074}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000152}, !- Inlet Port + {00000000-0000-0000-0015-000000000153}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000075}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000147}, !- Inlet Port + {00000000-0000-0000-0015-000000000148}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000076}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000195}, !- Inlet Port + {00000000-0000-0000-0015-000000000196}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000077}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000202}, !- Inlet Port + {00000000-0000-0000-0015-000000000203}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000078}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000197}, !- Inlet Port + {00000000-0000-0000-0015-000000000198}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000079}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000100}, !- Inlet Port {00000000-0000-0000-0015-000000000101}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000044}, !- Handle + {00000000-0000-0000-0050-000000000080}, !- Handle + Coil Heating Electric 13 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000200}, !- Inlet Port + {00000000-0000-0000-0015-000000000201}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000081}, !- Handle + Coil Heating Electric 7 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000150}, !- Inlet Port + {00000000-0000-0000-0015-000000000151}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000082}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000065}, !- Inlet Port {00000000-0000-0000-0015-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000045}, !- Handle + {00000000-0000-0000-0050-000000000083}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000068}, !- Inlet Port {00000000-0000-0000-0015-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000046}, !- Handle + {00000000-0000-0000-0050-000000000084}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000062}, !- Inlet Port {00000000-0000-0000-0015-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000047}, !- Handle + {00000000-0000-0000-0050-000000000085}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000082}, !- Inlet Port {00000000-0000-0000-0015-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000048}, !- Handle + {00000000-0000-0000-0050-000000000086}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000063}, !- Inlet Port {00000000-0000-0000-0015-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000049}, !- Handle + {00000000-0000-0000-0050-000000000087}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000074}, !- Inlet Port {00000000-0000-0000-0015-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000050}, !- Handle + {00000000-0000-0000-0050-000000000088}, !- Handle Core_bottom WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000165}, !- Inlet Port - {00000000-0000-0000-0015-000000000166}; !- Outlet Port + {00000000-0000-0000-0015-000000000265}, !- Inlet Port + {00000000-0000-0000-0015-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000051}, !- Handle + {00000000-0000-0000-0050-000000000089}, !- Handle Core_bottom WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000167}, !- Inlet Port - {00000000-0000-0000-0015-000000000168}; !- Outlet Port + {00000000-0000-0000-0015-000000000267}, !- Inlet Port + {00000000-0000-0000-0015-000000000268}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000052}, !- Handle + {00000000-0000-0000-0050-000000000090}, !- Handle Core_mid WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000169}, !- Inlet Port - {00000000-0000-0000-0015-000000000170}; !- Outlet Port + {00000000-0000-0000-0015-000000000269}, !- Inlet Port + {00000000-0000-0000-0015-000000000270}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000053}, !- Handle + {00000000-0000-0000-0050-000000000091}, !- Handle Core_mid WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000171}, !- Inlet Port - {00000000-0000-0000-0015-000000000172}; !- Outlet Port + {00000000-0000-0000-0015-000000000271}, !- Inlet Port + {00000000-0000-0000-0015-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000054}, !- Handle + {00000000-0000-0000-0050-000000000092}, !- Handle Core_top WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000173}, !- Inlet Port - {00000000-0000-0000-0015-000000000174}; !- Outlet Port + {00000000-0000-0000-0015-000000000273}, !- Inlet Port + {00000000-0000-0000-0015-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000055}, !- Handle + {00000000-0000-0000-0050-000000000093}, !- Handle Core_top WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000175}, !- Inlet Port - {00000000-0000-0000-0015-000000000176}; !- Outlet Port + {00000000-0000-0000-0015-000000000275}, !- Inlet Port + {00000000-0000-0000-0015-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000056}, !- Handle + {00000000-0000-0000-0050-000000000094}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000147}, !- Inlet Port - {00000000-0000-0000-0015-000000000148}; !- Outlet Port + {00000000-0000-0000-0015-000000000247}, !- Inlet Port + {00000000-0000-0000-0015-000000000248}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000057}, !- Handle + {00000000-0000-0000-0050-000000000095}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000142}, !- Inlet Port - {00000000-0000-0000-0015-000000000143}; !- Outlet Port + {00000000-0000-0000-0015-000000000242}, !- Inlet Port + {00000000-0000-0000-0015-000000000243}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000058}, !- Handle + {00000000-0000-0000-0050-000000000096}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000164}, !- Inlet Port - {00000000-0000-0000-0015-000000000145}; !- Outlet Port + {00000000-0000-0000-0015-000000000264}, !- Inlet Port + {00000000-0000-0000-0015-000000000245}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000059}, !- Handle + {00000000-0000-0000-0050-000000000097}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000139}, !- Inlet Port - {00000000-0000-0000-0015-000000000146}; !- Outlet Port + {00000000-0000-0000-0015-000000000239}, !- Inlet Port + {00000000-0000-0000-0015-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000060}, !- Handle + {00000000-0000-0000-0050-000000000098}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000161}, !- Inlet Port - {00000000-0000-0000-0015-000000000141}; !- Outlet Port + {00000000-0000-0000-0015-000000000261}, !- Inlet Port + {00000000-0000-0000-0015-000000000241}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000061}, !- Handle + {00000000-0000-0000-0050-000000000099}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000177}, !- Inlet Port - {00000000-0000-0000-0015-000000000178}; !- Outlet Port + {00000000-0000-0000-0015-000000000277}, !- Inlet Port + {00000000-0000-0000-0015-000000000278}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000062}, !- Handle + {00000000-0000-0000-0050-000000000100}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000179}, !- Inlet Port - {00000000-0000-0000-0015-000000000180}; !- Outlet Port + {00000000-0000-0000-0015-000000000279}, !- Inlet Port + {00000000-0000-0000-0015-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000063}, !- Handle + {00000000-0000-0000-0050-000000000101}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000181}, !- Inlet Port - {00000000-0000-0000-0015-000000000182}; !- Outlet Port + {00000000-0000-0000-0015-000000000281}, !- Inlet Port + {00000000-0000-0000-0015-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000064}, !- Handle + {00000000-0000-0000-0050-000000000102}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000183}, !- Inlet Port - {00000000-0000-0000-0015-000000000184}; !- Outlet Port + {00000000-0000-0000-0015-000000000283}, !- Inlet Port + {00000000-0000-0000-0015-000000000284}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000065}, !- Handle + {00000000-0000-0000-0050-000000000103}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000185}, !- Inlet Port - {00000000-0000-0000-0015-000000000186}; !- Outlet Port + {00000000-0000-0000-0015-000000000285}, !- Inlet Port + {00000000-0000-0000-0015-000000000286}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000066}, !- Handle + {00000000-0000-0000-0050-000000000104}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000187}, !- Inlet Port - {00000000-0000-0000-0015-000000000188}; !- Outlet Port + {00000000-0000-0000-0015-000000000287}, !- Inlet Port + {00000000-0000-0000-0015-000000000288}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000067}, !- Handle + {00000000-0000-0000-0050-000000000105}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000189}, !- Inlet Port - {00000000-0000-0000-0015-000000000190}; !- Outlet Port + {00000000-0000-0000-0015-000000000289}, !- Inlet Port + {00000000-0000-0000-0015-000000000290}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000068}, !- Handle + {00000000-0000-0000-0050-000000000106}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000191}, !- Inlet Port - {00000000-0000-0000-0015-000000000192}; !- Outlet Port + {00000000-0000-0000-0015-000000000291}, !- Inlet Port + {00000000-0000-0000-0015-000000000292}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000069}, !- Handle + {00000000-0000-0000-0050-000000000107}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000193}, !- Inlet Port - {00000000-0000-0000-0015-000000000194}; !- Outlet Port + {00000000-0000-0000-0015-000000000293}, !- Inlet Port + {00000000-0000-0000-0015-000000000294}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000070}, !- Handle + {00000000-0000-0000-0050-000000000108}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000195}, !- Inlet Port - {00000000-0000-0000-0015-000000000196}; !- Outlet Port + {00000000-0000-0000-0015-000000000295}, !- Inlet Port + {00000000-0000-0000-0015-000000000296}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000071}, !- Handle + {00000000-0000-0000-0050-000000000109}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000197}, !- Inlet Port - {00000000-0000-0000-0015-000000000198}; !- Outlet Port + {00000000-0000-0000-0015-000000000297}, !- Inlet Port + {00000000-0000-0000-0015-000000000298}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000072}, !- Handle + {00000000-0000-0000-0050-000000000110}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000199}, !- Inlet Port - {00000000-0000-0000-0015-000000000200}; !- Outlet Port + {00000000-0000-0000-0015-000000000299}, !- Inlet Port + {00000000-0000-0000-0015-000000000300}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000073}, !- Handle + {00000000-0000-0000-0050-000000000111}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000201}, !- Inlet Port - {00000000-0000-0000-0015-000000000202}; !- Outlet Port + {00000000-0000-0000-0015-000000000301}, !- Inlet Port + {00000000-0000-0000-0015-000000000302}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000074}, !- Handle + {00000000-0000-0000-0050-000000000112}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000203}, !- Inlet Port - {00000000-0000-0000-0015-000000000204}; !- Outlet Port + {00000000-0000-0000-0015-000000000303}, !- Inlet Port + {00000000-0000-0000-0015-000000000304}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000075}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000205}, !- Inlet Port - {00000000-0000-0000-0015-000000000206}; !- Outlet Port + {00000000-0000-0000-0015-000000000305}, !- Inlet Port + {00000000-0000-0000-0015-000000000306}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000076}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000207}, !- Inlet Port - {00000000-0000-0000-0015-000000000208}; !- Outlet Port + {00000000-0000-0000-0015-000000000307}, !- Inlet Port + {00000000-0000-0000-0015-000000000308}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000077}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000209}, !- Inlet Port - {00000000-0000-0000-0015-000000000210}; !- Outlet Port + {00000000-0000-0000-0015-000000000309}, !- Inlet Port + {00000000-0000-0000-0015-000000000310}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000078}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000211}, !- Inlet Port - {00000000-0000-0000-0015-000000000212}; !- Outlet Port + {00000000-0000-0000-0015-000000000311}, !- Inlet Port + {00000000-0000-0000-0015-000000000312}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000079}, !- Handle + {00000000-0000-0000-0050-000000000117}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000213}, !- Inlet Port - {00000000-0000-0000-0015-000000000214}; !- Outlet Port + {00000000-0000-0000-0015-000000000313}, !- Inlet Port + {00000000-0000-0000-0015-000000000314}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000080}, !- Handle + {00000000-0000-0000-0050-000000000118}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000215}, !- Inlet Port - {00000000-0000-0000-0015-000000000216}; !- Outlet Port + {00000000-0000-0000-0015-000000000315}, !- Inlet Port + {00000000-0000-0000-0015-000000000316}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000081}, !- Handle + {00000000-0000-0000-0050-000000000119}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000217}, !- Inlet Port - {00000000-0000-0000-0015-000000000218}; !- Outlet Port + {00000000-0000-0000-0015-000000000317}, !- Inlet Port + {00000000-0000-0000-0015-000000000318}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000082}, !- Handle + {00000000-0000-0000-0050-000000000120}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000219}, !- Inlet Port - {00000000-0000-0000-0015-000000000220}; !- Outlet Port + {00000000-0000-0000-0015-000000000319}, !- Inlet Port + {00000000-0000-0000-0015-000000000320}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000083}, !- Handle + {00000000-0000-0000-0050-000000000121}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000221}, !- Inlet Port - {00000000-0000-0000-0015-000000000222}; !- Outlet Port + {00000000-0000-0000-0015-000000000321}, !- Inlet Port + {00000000-0000-0000-0015-000000000322}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000084}, !- Handle + {00000000-0000-0000-0050-000000000122}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000223}, !- Inlet Port - {00000000-0000-0000-0015-000000000224}; !- Outlet Port + {00000000-0000-0000-0015-000000000323}, !- Inlet Port + {00000000-0000-0000-0015-000000000324}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000085}, !- Handle + {00000000-0000-0000-0050-000000000123}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000055}, !- Inlet Port {00000000-0000-0000-0015-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000086}, !- Handle + {00000000-0000-0000-0050-000000000124}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000057}, !- Inlet Port {00000000-0000-0000-0015-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000087}, !- Handle + {00000000-0000-0000-0050-000000000125}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000059}, !- Inlet Port {00000000-0000-0000-0015-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000088}, !- Handle + {00000000-0000-0000-0050-000000000126}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000076}, !- Inlet Port {00000000-0000-0000-0015-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000089}, !- Handle + {00000000-0000-0000-0050-000000000127}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000078}, !- Inlet Port {00000000-0000-0000-0015-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000090}, !- Handle + {00000000-0000-0000-0050-000000000128}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000080}, !- Inlet Port {00000000-0000-0000-0015-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000091}, !- Handle + {00000000-0000-0000-0050-000000000129}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000152}, !- Inlet Port - {00000000-0000-0000-0015-000000000153}; !- Outlet Port + {00000000-0000-0000-0015-000000000252}, !- Inlet Port + {00000000-0000-0000-0015-000000000253}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000092}, !- Handle + {00000000-0000-0000-0050-000000000130}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000154}, !- Inlet Port - {00000000-0000-0000-0015-000000000155}; !- Outlet Port + {00000000-0000-0000-0015-000000000254}, !- Inlet Port + {00000000-0000-0000-0015-000000000255}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000093}, !- Handle + {00000000-0000-0000-0050-000000000131}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000144}, !- Inlet Port - {00000000-0000-0000-0015-000000000156}; !- Outlet Port + {00000000-0000-0000-0015-000000000244}, !- Inlet Port + {00000000-0000-0000-0015-000000000256}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000094}, !- Handle + {00000000-0000-0000-0050-000000000132}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000157}, !- Inlet Port - {00000000-0000-0000-0015-000000000158}; !- Outlet Port + {00000000-0000-0000-0015-000000000257}, !- Inlet Port + {00000000-0000-0000-0015-000000000258}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000095}, !- Handle + {00000000-0000-0000-0050-000000000133}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000159}, !- Inlet Port - {00000000-0000-0000-0015-000000000160}; !- Outlet Port + {00000000-0000-0000-0015-000000000259}, !- Inlet Port + {00000000-0000-0000-0015-000000000260}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000096}, !- Handle + {00000000-0000-0000-0050-000000000134}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000162}, !- Inlet Port - {00000000-0000-0000-0015-000000000163}; !- Outlet Port + {00000000-0000-0000-0015-000000000262}, !- Inlet Port + {00000000-0000-0000-0015-000000000263}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000097}, !- Handle - Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0050-000000000135}, !- Handle + Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000067}, !- Inlet Port {00000000-0000-0000-0015-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000098}, !- Handle - Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0050-000000000136}, !- Handle + Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000084}, !- Inlet Port {00000000-0000-0000-0015-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000099}, !- Handle - Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0050-000000000137}, !- Handle + Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000038}, !- Inlet Port {00000000-0000-0000-0015-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000100}, !- Handle - Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0050-000000000138}, !- Handle + Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000049}, !- Inlet Port {00000000-0000-0000-0015-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000101}, !- Handle + {00000000-0000-0000-0050-000000000139}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000046}, !- Inlet Port {00000000-0000-0000-0015-000000000047}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000102}, !- Handle + {00000000-0000-0000-0050-000000000140}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000071}, !- Inlet Port {00000000-0000-0000-0015-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000103}, !- Handle + {00000000-0000-0000-0050-000000000141}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000086}, !- Inlet Port {00000000-0000-0000-0015-000000000087}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000104}, !- Handle + {00000000-0000-0000-0050-000000000142}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000088}, !- Inlet Port {00000000-0000-0000-0015-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000105}, !- Handle + {00000000-0000-0000-0050-000000000143}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000051}, !- Inlet Port {00000000-0000-0000-0015-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000106}, !- Handle + {00000000-0000-0000-0050-000000000144}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000053}, !- Inlet Port {00000000-0000-0000-0015-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000107}, !- Handle + {00000000-0000-0000-0050-000000000145}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000157}, !- Inlet Port + {00000000-0000-0000-0015-000000000158}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000146}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000207}, !- Inlet Port + {00000000-0000-0000-0015-000000000208}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000147}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000107}, !- Inlet Port {00000000-0000-0000-0015-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000108}, !- Handle + {00000000-0000-0000-0050-000000000148}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0015-000000000141}, !- Inlet Port + {00000000-0000-0000-0015-000000000143}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000149}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0015-000000000144}, !- Inlet Port + {00000000-0000-0000-0015-000000000142}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000150}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0015-000000000154}, !- Inlet Port + {00000000-0000-0000-0015-000000000155}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000151}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0015-000000000331}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000152}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0015-000000000336}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000153}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0015-000000000139}, !- Inlet Port + {00000000-0000-0000-0015-000000000156}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000154}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0015-000000000149}, !- Inlet Port + {00000000-0000-0000-0015-000000000140}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000155}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0015-000000000191}, !- Inlet Port + {00000000-0000-0000-0015-000000000193}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000156}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0015-000000000194}, !- Inlet Port + {00000000-0000-0000-0015-000000000192}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000157}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0015-000000000204}, !- Inlet Port + {00000000-0000-0000-0015-000000000205}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000158}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0015-000000000337}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000159}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0015-000000000342}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000160}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0015-000000000189}, !- Inlet Port + {00000000-0000-0000-0015-000000000206}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000161}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0015-000000000199}, !- Inlet Port + {00000000-0000-0000-0015-000000000190}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000162}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000092}, !- Inlet Port {00000000-0000-0000-0015-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000109}, !- Handle + {00000000-0000-0000-0050-000000000163}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000095}, !- Inlet Port {00000000-0000-0000-0015-000000000093}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000110}, !- Handle + {00000000-0000-0000-0050-000000000164}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0015-000000000104}, !- Inlet Port {00000000-0000-0000-0015-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000111}, !- Handle + {00000000-0000-0000-0050-000000000165}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0015-000000000225}; !- Outlet Port + {00000000-0000-0000-0015-000000000325}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000112}, !- Handle + {00000000-0000-0000-0050-000000000166}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0015-000000000230}, !- Inlet Port + {00000000-0000-0000-0015-000000000330}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000113}, !- Handle + {00000000-0000-0000-0050-000000000167}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000090}, !- Inlet Port {00000000-0000-0000-0015-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000114}, !- Handle + {00000000-0000-0000-0050-000000000168}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000099}, !- Inlet Port {00000000-0000-0000-0015-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000115}, !- Handle + {00000000-0000-0000-0050-000000000169}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000332}, !- Inlet Port + {00000000-0000-0000-0015-000000000333}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000170}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000334}, !- Inlet Port + {00000000-0000-0000-0015-000000000335}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000171}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000338}, !- Inlet Port + {00000000-0000-0000-0015-000000000339}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000172}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000340}, !- Inlet Port + {00000000-0000-0000-0015-000000000341}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000173}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000226}, !- Inlet Port - {00000000-0000-0000-0015-000000000227}; !- Outlet Port + {00000000-0000-0000-0015-000000000326}, !- Inlet Port + {00000000-0000-0000-0015-000000000327}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000116}, !- Handle + {00000000-0000-0000-0050-000000000174}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000228}, !- Inlet Port - {00000000-0000-0000-0015-000000000229}; !- Outlet Port + {00000000-0000-0000-0015-000000000328}, !- Inlet Port + {00000000-0000-0000-0015-000000000329}; !- Outlet Port OS:OutputControl:ReportingTolerances, {00000000-0000-0000-0051-000000000001}, !- Handle @@ -4063,7 +6130,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0064-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0064-000000000024}, !- Work Efficiency Schedule Name {00000000-0000-0000-0064-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0064-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -4104,26 +6171,26 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0015-000000000153}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000154}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000253}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000254}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0015-000000000156}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000157}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000256}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000257}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0015-000000000160}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000161}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000260}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000261}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0015-000000000163}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000164}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000263}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000264}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0055-000000000001}, !- Handle @@ -4134,7 +6201,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000039}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000069}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4148,7 +6215,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4170,7 +6237,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000047}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000085}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4184,7 +6251,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4206,21 +6273,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000060}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000098}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0015-000000000139}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0015-000000000141}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0015-000000000239}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0015-000000000241}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0015-000000000142}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0015-000000000145}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000242}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0015-000000000245}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4235,7 +6302,8 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0056-000000000001}, !- Handle - {00000000-0000-0000-0091-000000000013}; !- HVAC Component + {00000000-0000-0000-0091-000000000013}, !- HVAC Component + {00000000-0000-0000-0015-000000000159}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000002}, !- Handle @@ -4243,11 +6311,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000003}, !- Handle - {00000000-0000-0000-0091-000000000013}; !- HVAC Component + {00000000-0000-0000-0091-000000000013}, !- HVAC Component + {00000000-0000-0000-0015-000000000160}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000004}, !- Handle - {00000000-0000-0000-0091-000000000018}; !- HVAC Component + {00000000-0000-0000-0091-000000000018}, !- HVAC Component + {00000000-0000-0000-0015-000000000215}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000005}, !- Handle @@ -4255,11 +6325,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000006}, !- Handle - {00000000-0000-0000-0091-000000000018}; !- HVAC Component + {00000000-0000-0000-0091-000000000018}, !- HVAC Component + {00000000-0000-0000-0015-000000000216}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000007}, !- Handle - {00000000-0000-0000-0091-000000000014}; !- HVAC Component + {00000000-0000-0000-0091-000000000014}, !- HVAC Component + {00000000-0000-0000-0015-000000000221}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000008}, !- Handle @@ -4267,11 +6339,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000009}, !- Handle - {00000000-0000-0000-0091-000000000014}; !- HVAC Component + {00000000-0000-0000-0091-000000000014}, !- HVAC Component + {00000000-0000-0000-0015-000000000222}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000010}, !- Handle - {00000000-0000-0000-0091-000000000015}; !- HVAC Component + {00000000-0000-0000-0091-000000000015}, !- HVAC Component + {00000000-0000-0000-0015-000000000209}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000011}, !- Handle @@ -4279,11 +6353,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000012}, !- Handle - {00000000-0000-0000-0091-000000000015}; !- HVAC Component + {00000000-0000-0000-0091-000000000015}, !- HVAC Component + {00000000-0000-0000-0015-000000000210}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000013}, !- Handle - {00000000-0000-0000-0091-000000000009}; !- HVAC Component + {00000000-0000-0000-0091-000000000009}, !- HVAC Component + {00000000-0000-0000-0015-000000000183}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000014}, !- Handle @@ -4291,7 +6367,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000015}, !- Handle - {00000000-0000-0000-0091-000000000009}; !- HVAC Component + {00000000-0000-0000-0091-000000000009}, !- HVAC Component + {00000000-0000-0000-0015-000000000184}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000016}, !- Handle @@ -4309,7 +6386,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000019}, !- Handle - {00000000-0000-0000-0091-000000000016}; !- HVAC Component + {00000000-0000-0000-0091-000000000016}, !- HVAC Component + {00000000-0000-0000-0015-000000000227}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000020}, !- Handle @@ -4317,11 +6395,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000021}, !- Handle - {00000000-0000-0000-0091-000000000016}; !- HVAC Component + {00000000-0000-0000-0091-000000000016}, !- HVAC Component + {00000000-0000-0000-0015-000000000228}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000022}, !- Handle - {00000000-0000-0000-0091-000000000010}; !- HVAC Component + {00000000-0000-0000-0091-000000000010}, !- HVAC Component + {00000000-0000-0000-0015-000000000177}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000023}, !- Handle @@ -4329,7 +6409,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000024}, !- Handle - {00000000-0000-0000-0091-000000000010}; !- HVAC Component + {00000000-0000-0000-0091-000000000010}, !- HVAC Component + {00000000-0000-0000-0015-000000000178}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000025}, !- Handle @@ -4345,7 +6426,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000028}, !- Handle - {00000000-0000-0000-0091-000000000017}; !- HVAC Component + {00000000-0000-0000-0091-000000000017}, !- HVAC Component + {00000000-0000-0000-0015-000000000233}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000029}, !- Handle @@ -4353,7 +6435,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000030}, !- Handle - {00000000-0000-0000-0091-000000000017}; !- HVAC Component + {00000000-0000-0000-0091-000000000017}, !- HVAC Component + {00000000-0000-0000-0015-000000000234}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000031}, !- Handle @@ -4383,7 +6466,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000037}, !- Handle - {00000000-0000-0000-0091-000000000011}; !- HVAC Component + {00000000-0000-0000-0091-000000000011}, !- HVAC Component + {00000000-0000-0000-0015-000000000165}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000038}, !- Handle @@ -4391,7 +6475,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000039}, !- Handle - {00000000-0000-0000-0091-000000000011}; !- HVAC Component + {00000000-0000-0000-0091-000000000011}, !- HVAC Component + {00000000-0000-0000-0015-000000000166}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000040}, !- Handle @@ -4421,7 +6506,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000046}, !- Handle - {00000000-0000-0000-0091-000000000012}; !- HVAC Component + {00000000-0000-0000-0091-000000000012}, !- HVAC Component + {00000000-0000-0000-0015-000000000171}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000047}, !- Handle @@ -4429,7 +6515,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000048}, !- Handle - {00000000-0000-0000-0091-000000000012}; !- HVAC Component + {00000000-0000-0000-0091-000000000012}, !- HVAC Component + {00000000-0000-0000-0015-000000000172}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000049}, !- Handle @@ -4462,8 +6549,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0057-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0015-000000000146}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000147}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000246}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000247}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 446362.499964258, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -4487,9 +6574,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0015-000000000045}, !- Inlet Node Name {00000000-0000-0000-0015-000000000046}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 236900.664009476, !- Rated Pump Head {Pa} + 245116.872009805, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.865, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -4520,9 +6607,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0015-000000000070}, !- Inlet Node Name {00000000-0000-0000-0015-000000000071}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 210100.176008404, !- Rated Pump Head {Pa} + 215264.649608611, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.917, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5319,6 +7406,33 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000037}, !- Handle + Schedule Day 10, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000038}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000039}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5327,7 +7441,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000038}, !- Handle + {00000000-0000-0000-0062-000000000041}, !- Handle Schedule Day 3, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5405,7 +7519,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000039}, !- Handle + {00000000-0000-0000-0062-000000000042}, !- Handle Schedule Day 4, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5483,7 +7597,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000040}, !- Handle + {00000000-0000-0000-0062-000000000043}, !- Handle Schedule Day 5, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5492,7 +7606,7 @@ OS:Schedule:Day, 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000041}, !- Handle + {00000000-0000-0000-0062-000000000044}, !- Handle Schedule Day 6, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5501,7 +7615,7 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000042}, !- Handle + {00000000-0000-0000-0062-000000000045}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5510,7 +7624,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000043}, !- Handle + {00000000-0000-0000-0062-000000000046}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5519,7 +7633,16 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000044}, !- Handle + {00000000-0000-0000-0062-000000000047}, !- Handle + Schedule Day 9, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000048}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5528,7 +7651,25 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000045}, !- Handle + {00000000-0000-0000-0062-000000000049}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000050}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000051}, !- Handle Supply Air Temp Default, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5537,7 +7678,7 @@ OS:Schedule:Day, 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000046}, !- Handle + {00000000-0000-0000-0062-000000000052}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5546,7 +7687,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000047}, !- Handle + {00000000-0000-0000-0062-000000000053}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5555,7 +7696,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000048}, !- Handle + {00000000-0000-0000-0062-000000000054}, !- Handle satCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5633,7 +7774,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000049}, !- Handle + {00000000-0000-0000-0062-000000000055}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5711,7 +7852,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000050}, !- Handle + {00000000-0000-0000-0062-000000000056}, !- Handle satCW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5789,7 +7930,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000051}, !- Handle + {00000000-0000-0000-0062-000000000057}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5867,7 +8008,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000052}, !- Handle + {00000000-0000-0000-0062-000000000058}, !- Handle sunCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5945,7 +8086,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000053}, !- Handle + {00000000-0000-0000-0062-000000000059}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6023,7 +8164,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000054}, !- Handle + {00000000-0000-0000-0062-000000000060}, !- Handle sunCW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6101,7 +8242,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000055}, !- Handle + {00000000-0000-0000-0062-000000000061}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6179,7 +8320,73 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000056}, !- Handle + {00000000-0000-0000-0062-000000000062}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000063}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000064}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000065}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000066}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000067}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000068}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6194,7 +8401,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000057}, !- Handle + {00000000-0000-0000-0062-000000000069}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6203,7 +8410,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000058}, !- Handle + {00000000-0000-0000-0062-000000000070}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6212,7 +8419,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000059}, !- Handle + {00000000-0000-0000-0062-000000000071}, !- Handle wkdCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6290,7 +8497,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000060}, !- Handle + {00000000-0000-0000-0062-000000000072}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6368,7 +8575,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000061}, !- Handle + {00000000-0000-0000-0062-000000000073}, !- Handle wkdCW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6446,7 +8653,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000062}, !- Handle + {00000000-0000-0000-0062-000000000074}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6754,9 +8961,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0064-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0064-000000000027}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000042}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000045}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -6773,9 +8980,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0064-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0064-000000000027}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000046}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -6791,6 +8998,82 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000015}, !- Handle + Schedule Rule 22, !- Name + {00000000-0000-0000-0064-000000000025}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0062-000000000047}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0063-000000000016}, !- Handle + Schedule Rule 23, !- Name + {00000000-0000-0000-0064-000000000025}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0062-000000000037}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0063-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0064-000000000026}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0062-000000000038}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0063-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0064-000000000026}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0062-000000000039}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0063-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0064-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -6809,7 +9092,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000016}, !- Handle + {00000000-0000-0000-0063-000000000020}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0064-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -6828,7 +9111,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000017}, !- Handle + {00000000-0000-0000-0063-000000000021}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0064-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order @@ -6847,7 +9130,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000018}, !- Handle + {00000000-0000-0000-0063-000000000022}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0064-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -6866,7 +9149,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000019}, !- Handle + {00000000-0000-0000-0063-000000000023}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0064-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -6885,7 +9168,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000020}, !- Handle + {00000000-0000-0000-0063-000000000024}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0064-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -6904,7 +9187,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000021}, !- Handle + {00000000-0000-0000-0063-000000000025}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0064-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -6923,11 +9206,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000022}, !- Handle + {00000000-0000-0000-0063-000000000026}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000048}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000054}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6942,11 +9225,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000023}, !- Handle + {00000000-0000-0000-0063-000000000027}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000056}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6961,11 +9244,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000024}, !- Handle + {00000000-0000-0000-0063-000000000028}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000052}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000058}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6980,11 +9263,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000025}, !- Handle + {00000000-0000-0000-0063-000000000029}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000060}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6999,11 +9282,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000026}, !- Handle + {00000000-0000-0000-0063-000000000030}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0062-000000000059}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000071}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7018,11 +9301,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000027}, !- Handle + {00000000-0000-0000-0063-000000000031}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0062-000000000061}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000073}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7052,13 +9335,13 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000003}, !- Handle CHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000038}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000004}, !- Handle CW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000039}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000005}, !- Handle @@ -7138,45 +9421,73 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000017}, !- Handle Schedule Ruleset 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000040}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000043}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000018}, !- Handle Schedule Ruleset 2, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000020}, !- Handle - Supply Air Temp, !- Name + Supply Air Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000045}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000021}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000050}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0064-000000000022}, !- Handle + Supply Air Temp, !- Name + {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000051}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0064-000000000023}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000022}, !- Handle + {00000000-0000-0000-0064-000000000024}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000053}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000023}, !- Handle + {00000000-0000-0000-0064-000000000025}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000062}, !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000063}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0062-000000000064}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0064-000000000026}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000065}, !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000066}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0062-000000000067}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0064-000000000027}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000056}, !- Default Day Schedule Name - {00000000-0000-0000-0062-000000000057}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0062-000000000058}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0062-000000000068}, !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000069}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0062-000000000070}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0065-000000000001}, !- Handle @@ -7257,39 +9568,81 @@ OS:SetpointManager:OutdoorAirPretreat, 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000110}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000110}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000111}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000107}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000115}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000164}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000164}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000165}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000147}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000173}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0066-000000000002}, !- Handle + Setpoint Manager Outdoor Air Pretreat 2, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0050-000000000150}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000150}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000151}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000145}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000169}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0066-000000000003}, !- Handle + Setpoint Manager Outdoor Air Pretreat 3, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0050-000000000157}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000157}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000158}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000146}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000171}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000019}, !- Schedule Name - {00000000-0000-0000-0050-000000000060}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000098}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000003}, !- Schedule Name - {00000000-0000-0000-0050-000000000039}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000069}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000004}, !- Schedule Name - {00000000-0000-0000-0050-000000000047}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000085}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable + {00000000-0000-0000-0064-000000000022}, !- Schedule Name + {00000000-0000-0000-0050-000000000168}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0067-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable {00000000-0000-0000-0064-000000000020}, !- Schedule Name - {00000000-0000-0000-0050-000000000114}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000154}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0067-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0064-000000000021}, !- Schedule Name + {00000000-0000-0000-0050-000000000161}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0068-000000000001}, !- Handle @@ -7432,6 +9785,47 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0078-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -7471,19 +9865,60 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, {00000000-0000-0000-0079-000000000001}, !- Handle {00000000-0000-0000-0091-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7509,16 +9944,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000002}, !- Handle {00000000-0000-0000-0091-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7544,16 +9979,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000003}, !- Handle {00000000-0000-0000-0091-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7579,16 +10014,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000004}, !- Handle {00000000-0000-0000-0091-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7614,16 +10049,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000005}, !- Handle {00000000-0000-0000-0091-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7684,16 +10119,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000007}, !- Handle {00000000-0000-0000-0091-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7719,16 +10154,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000008}, !- Handle {00000000-0000-0000-0091-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7789,16 +10224,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000010}, !- Handle {00000000-0000-0000-0091-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7894,16 +10329,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000013}, !- Handle {00000000-0000-0000-0091-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7999,16 +10434,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000016}, !- Handle {00000000-0000-0000-0091-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -12229,7 +14664,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0064-000000000021}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0064-000000000023}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 3.09460458577128, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -12239,8 +14674,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0015-000000000149}, !- Use Side Inlet Node Name - {00000000-0000-0000-0015-000000000150}, !- Use Side Outlet Node Name + {00000000-0000-0000-0015-000000000249}, !- Use Side Inlet Node Name + {00000000-0000-0000-0015-000000000250}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -12263,8 +14698,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000001}, !- Handle Core_bottom WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000166}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000167}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000266}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000267}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12277,8 +14712,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000002}, !- Handle Core_mid WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000170}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000171}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000270}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000271}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12291,8 +14726,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000003}, !- Handle Core_top WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000174}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000175}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000274}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000275}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12305,8 +14740,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000178}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000179}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000278}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000279}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12319,8 +14754,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000182}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000183}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000282}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000283}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12333,8 +14768,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000186}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000187}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000286}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000287}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12347,8 +14782,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000190}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000191}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000290}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000291}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12361,8 +14796,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000194}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000195}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000294}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000295}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12375,8 +14810,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000198}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000199}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000298}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000299}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12389,8 +14824,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000202}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000203}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000302}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000303}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12403,8 +14838,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000206}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000207}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000306}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000307}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12417,8 +14852,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000210}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000211}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000310}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000311}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12431,8 +14866,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000214}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000215}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000314}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000315}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12445,8 +14880,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000218}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000219}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000318}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000319}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12459,8 +14894,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000222}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000223}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000322}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000323}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12754,32 +15189,102 @@ OS:ZoneHVAC:Baseboard:Convective:Electric, OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0103-000000000002}, !- Handle - Zone HVAC Baseboard Convective Electric 2, !- Name + Zone HVAC Baseboard Convective Electric 10, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0103-000000000003}, !- Handle - Zone HVAC Baseboard Convective Electric 3, !- Name + Zone HVAC Baseboard Convective Electric 11, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0103-000000000004}, !- Handle - Zone HVAC Baseboard Convective Electric 4, !- Name + Zone HVAC Baseboard Convective Electric 12, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0103-000000000005}, !- Handle + Zone HVAC Baseboard Convective Electric 13, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000006}, !- Handle + Zone HVAC Baseboard Convective Electric 14, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000007}, !- Handle + Zone HVAC Baseboard Convective Electric 15, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000008}, !- Handle + Zone HVAC Baseboard Convective Electric 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000009}, !- Handle + Zone HVAC Baseboard Convective Electric 3, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000010}, !- Handle + Zone HVAC Baseboard Convective Electric 4, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000011}, !- Handle Zone HVAC Baseboard Convective Electric 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000012}, !- Handle + Zone HVAC Baseboard Convective Electric 6, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000013}, !- Handle + Zone HVAC Baseboard Convective Electric 7, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000014}, !- Handle + Zone HVAC Baseboard Convective Electric 8, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000015}, !- Handle + Zone HVAC Baseboard Convective Electric 9, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name @@ -12803,12 +15308,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000003}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000009}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12819,12 +15324,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000008}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12835,12 +15340,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000004}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000010}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12851,12 +15356,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000005}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000011}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12882,59 +15387,159 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000012}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm index c6a6e6c7bd..a99741cdb7 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2017-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0066-000000000023}, !- Object Name + {00000000-0000-0000-0066-000000000027}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.066608825093468, !- Feature Value 1 @@ -16,22 +16,98 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0012-000000000001}; !- Object Name + {00000000-0000-0000-0066-000000000025}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.066608825093468, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle + {00000000-0000-0000-0066-000000000026}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.066608825093468, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0012-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name , !- Controller List Name - {00000000-0000-0000-0066-000000000023}, !- Availability Schedule + {00000000-0000-0000-0066-000000000025}, !- Availability Schedule {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name , !- Connector List Name + {00000000-0000-0000-0017-000000000207}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000210}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000208}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0066-000000000026}, !- Availability Schedule + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000301}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000304}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000303}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000302}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name + , !- Controller List Name + {00000000-0000-0000-0066-000000000027}, !- Availability Schedule + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name {00000000-0000-0000-0017-000000000115}, !- Supply Side Inlet Node Name {00000000-0000-0000-0017-000000000118}, !- Demand Side Outlet Node Name {00000000-0000-0000-0017-000000000117}, !- Demand Side Inlet Node A @@ -51,10 +127,32 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000132}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000295}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000296}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000483}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000484}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000136}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000002}, !- Handle + Air Loop HVAC Outdoor Air System 2, !- Name + {00000000-0000-0000-0022-000000000002}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000226}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000489}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000490}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000230}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0022-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000320}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000495}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000496}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000324}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -65,6 +163,26 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000189}, !- Inlet Node Name 4 {00000000-0000-0000-0017-000000000203}; !- Inlet Node Name 5 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000002}, !- Handle + Air Loop HVAC Zone Mixer 2, !- Name + {00000000-0000-0000-0017-000000000212}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000241}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000255}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000269}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000283}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000297}; !- Inlet Node Name 5 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0017-000000000306}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000335}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000349}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000363}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000377}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000391}; !- Inlet Node Name 5 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -75,6 +193,26 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000190}, !- Outlet Node Name 4 {00000000-0000-0000-0017-000000000204}; !- Outlet Node Name 5 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000002}, !- Handle + Air Loop HVAC Zone Splitter 2, !- Name + {00000000-0000-0000-0017-000000000211}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000242}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000256}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000270}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000284}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000298}; !- Outlet Node Name 5 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0017-000000000305}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000336}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000350}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000364}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000378}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000392}; !- Outlet Node Name 5 + OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -85,7 +223,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000011}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000150}, !- Air Outlet Node Name @@ -98,6 +236,132 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000299}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000300}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000337}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000338}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000351}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000352}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000365}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000366}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000379}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000009}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000380}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000393}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000010}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000394}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000163}, !- Air Inlet Node Name @@ -106,7 +370,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000012}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000164}, !- Air Outlet Node Name @@ -118,7 +382,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000177}, !- Air Inlet Node Name @@ -127,7 +391,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000013}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000178}, !- Air Outlet Node Name @@ -139,7 +403,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000191}, !- Air Inlet Node Name @@ -148,7 +412,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000005}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000014}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000192}, !- Air Outlet Node Name @@ -160,7 +424,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000205}, !- Air Inlet Node Name @@ -169,7 +433,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000015}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000206}, !- Air Outlet Node Name @@ -180,6 +444,90 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000243}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000017}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000244}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000257}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000018}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000258}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000271}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000272}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000285}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000286}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -194,43 +542,81 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0051-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0051-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0051-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0051-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000004}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000007}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000001}, !- Handle - Primary Boiler 361kBtu/hr 0.83 Thermal Eff, !- Name + Primary Boiler 1845kBtu/hr 0.83 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 105767.86310854, !- Nominal Capacity {W} + 540792.26829436, !- Nominal Capacity {W} 0.83, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} - , !- Minimum Part Load Ratio + 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio {00000000-0000-0000-0017-000000000048}, !- Boiler Water Inlet Node Name {00000000-0000-0000-0017-000000000049}, !- Boiler Water Outlet Node Name 99, !- Water Outlet Upper Temperature Limit {C} - ConstantFlow, !- Boiler Flow Mode + LeavingSetpointModulated, !- Boiler Flow Mode 0, !- On Cycle Parasitic Electric Load {W} 0, !- Off Cycle Parasitic Fuel Load {W} 1, !- Sizing Factor @@ -238,10 +624,10 @@ OS:Boiler:HotWater, OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000002}, !- Handle - Secondary Boiler 361kBtu/hr 0.83 Thermal Eff, !- Name + Secondary Boiler 0kBtu/hr 0.85 AFUE, !- Name NaturalGas, !- Fuel Type - 105767.86310854, !- Nominal Capacity {W} - 0.83, !- Nominal Thermal Efficiency + 0.001, !- Nominal Capacity {W} + 0.85, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} @@ -306,8 +692,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton, !- Name - 95292.0324647093, !- Reference Capacity {W} + Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton, !- Name + 237968.431950895, !- Reference Capacity {W} 4.50320102432778, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -350,9 +736,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0026-000000000005}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0026-000000000007}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -403,6 +789,42 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration +OS:Coil:Cooling:Water, + {00000000-0000-0000-0014-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000218}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000219}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000227}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000224}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0014-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000312}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000313}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000321}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000318}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Heating Water 1, !- Name @@ -423,6 +845,168 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000002}, !- Handle + Coil Heating Water 10, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000260}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000261}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 11020.0849056244, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000003}, !- Handle + Coil Heating Water 11, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000274}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000275}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 6187.80405521393, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000004}, !- Handle + Coil Heating Water 12, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000288}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000289}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 11857.871389389, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000005}, !- Handle + Coil Heating Water 13, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000308}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000309}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000319}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000316}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000006}, !- Handle + Coil Heating Water 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000326}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000327}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 22238.1554603577, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000007}, !- Handle + Coil Heating Water 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000340}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000341}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 13827.2543907166, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000008}, !- Handle + Coil Heating Water 16, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000354}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000355}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 11500.2985954285, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000009}, !- Handle + Coil Heating Water 17, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000368}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000369}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 7091.35980606079, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000010}, !- Handle + Coil Heating Water 18, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000382}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000383}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 12537.4444484711, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000011}, !- Handle Coil Heating Water 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -432,7 +1016,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 24868.4987068176, !- Rated Capacity {W} + 13067.0129299164, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -440,7 +1024,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000003}, !- Handle + {00000000-0000-0000-0015-000000000012}, !- Handle Coil Heating Water 3, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -450,7 +1034,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 14588.2245540619, !- Rated Capacity {W} + 11280.1081180573, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -458,7 +1042,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000004}, !- Handle + {00000000-0000-0000-0015-000000000013}, !- Handle Coil Heating Water 4, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -468,7 +1052,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 12384.0525627136, !- Rated Capacity {W} + 10132.8232526779, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -476,7 +1060,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000005}, !- Handle + {00000000-0000-0000-0015-000000000014}, !- Handle Coil Heating Water 5, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -486,7 +1070,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 6629.09781932831, !- Rated Capacity {W} + 5639.30861949921, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -494,7 +1078,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000006}, !- Handle + {00000000-0000-0000-0015-000000000015}, !- Handle Coil Heating Water 6, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -504,7 +1088,61 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 13672.8299617767, !- Rated Capacity {W} + 11510.5686664581, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000016}, !- Handle + Coil Heating Water 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000214}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000215}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000225}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000222}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000017}, !- Handle + Coil Heating Water 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000232}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000233}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 18493.941450119, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000018}, !- Handle + Coil Heating Water 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000246}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000247}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 12915.1157855988, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -526,7 +1164,7 @@ OS:Coil:Heating:Water:Baseboard, OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Water Baseboard 2, !- Name + Coil Heating Water Baseboard 10, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -534,12 +1172,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000156}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000157}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000292}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000293}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Water Baseboard 3, !- Name + Coil Heating Water Baseboard 11, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -547,12 +1185,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000170}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000171}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000330}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000331}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Heating Water Baseboard 4, !- Name + Coil Heating Water Baseboard 12, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -560,12 +1198,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000184}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000185}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000344}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000345}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000005}, !- Handle - Coil Heating Water Baseboard 5, !- Name + Coil Heating Water Baseboard 13, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -573,21 +1211,151 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000198}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000199}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000358}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000359}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0017-000000000001}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000006}, !- Handle + Coil Heating Water Baseboard 14, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000372}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000373}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0017-000000000002}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000007}, !- Handle + Coil Heating Water Baseboard 15, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000386}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000387}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000008}, !- Handle + Coil Heating Water Baseboard 2, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000156}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000157}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000009}, !- Handle + Coil Heating Water Baseboard 3, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000170}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000171}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000010}, !- Handle + Coil Heating Water Baseboard 4, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000184}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000185}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000011}, !- Handle + Coil Heating Water Baseboard 5, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000198}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000199}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000012}, !- Handle + Coil Heating Water Baseboard 6, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000236}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000237}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000013}, !- Handle + Coil Heating Water Baseboard 7, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000250}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000251}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000014}, !- Handle + Coil Heating Water Baseboard 8, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000264}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000265}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000015}, !- Handle + Coil Heating Water Baseboard 9, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000278}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000279}; !- Water Outlet Node Name + +OS:Connection, + {00000000-0000-0000-0017-000000000001}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000002}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object 2; !- Inlet Port OS:Connection, @@ -706,35 +1474,35 @@ OS:Connection, {00000000-0000-0000-0017-000000000019}, !- Handle {00000000-0000-0000-0094-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000020}, !- Target Object + {00000000-0000-0000-0052-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000020}, !- Handle {00000000-0000-0000-0094-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000025}, !- Target Object + {00000000-0000-0000-0052-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000021}, !- Handle {00000000-0000-0000-0094-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000021}, !- Target Object + {00000000-0000-0000-0052-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000022}, !- Handle {00000000-0000-0000-0094-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000022}, !- Target Object + {00000000-0000-0000-0052-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000023}, !- Handle {00000000-0000-0000-0094-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000016}, !- Target Object + {00000000-0000-0000-0052-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -748,14 +1516,14 @@ OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle {00000000-0000-0000-0094-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000023}, !- Target Object + {00000000-0000-0000-0052-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle {00000000-0000-0000-0094-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000017}, !- Target Object + {00000000-0000-0000-0052-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -769,7 +1537,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle {00000000-0000-0000-0094-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000024}, !- Target Object + {00000000-0000-0000-0052-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -790,7 +1558,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle {00000000-0000-0000-0094-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000018}, !- Target Object + {00000000-0000-0000-0052-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -811,7 +1579,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle {00000000-0000-0000-0094-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000019}, !- Target Object + {00000000-0000-0000-0052-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -832,19 +1600,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle {00000000-0000-0000-0057-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000080}, !- Target Object + {00000000-0000-0000-0052-000000000162}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000126}, !- Target Object + {00000000-0000-0000-0052-000000000208}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0052-000000000081}, !- Source Object + {00000000-0000-0000-0052-000000000163}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000003}, !- Target Object 15; !- Inlet Port @@ -853,12 +1621,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle {00000000-0000-0000-0057-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000078}, !- Target Object + {00000000-0000-0000-0052-000000000160}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0052-000000000078}, !- Source Object + {00000000-0000-0000-0052-000000000160}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -867,26 +1635,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000043}, !- Target Object + {00000000-0000-0000-0052-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000079}, !- Target Object + {00000000-0000-0000-0052-000000000161}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0052-000000000079}, !- Source Object + {00000000-0000-0000-0052-000000000161}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0052-000000000080}, !- Source Object + {00000000-0000-0000-0052-000000000162}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000001}, !- Target Object 2; !- Inlet Port @@ -895,19 +1663,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle {00000000-0000-0000-0060-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000132}, !- Target Object + {00000000-0000-0000-0052-000000000214}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle - {00000000-0000-0000-0052-000000000132}, !- Source Object + {00000000-0000-0000-0052-000000000214}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0052-000000000126}, !- Source Object + {00000000-0000-0000-0052-000000000208}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000001}, !- Target Object 11; !- Inlet Port @@ -916,12 +1684,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0009-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000127}, !- Target Object + {00000000-0000-0000-0052-000000000209}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0052-000000000127}, !- Source Object + {00000000-0000-0000-0052-000000000209}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -930,12 +1698,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000135}, !- Target Object + {00000000-0000-0000-0052-000000000217}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle - {00000000-0000-0000-0052-000000000135}, !- Source Object + {00000000-0000-0000-0052-000000000217}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000002}, !- Target Object 11; !- Inlet Port @@ -944,12 +1712,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle {00000000-0000-0000-0009-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000136}, !- Target Object + {00000000-0000-0000-0052-000000000218}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle - {00000000-0000-0000-0052-000000000136}, !- Source Object + {00000000-0000-0000-0052-000000000218}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -958,12 +1726,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000111}, !- Target Object + {00000000-0000-0000-0052-000000000193}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle - {00000000-0000-0000-0052-000000000111}, !- Source Object + {00000000-0000-0000-0052-000000000193}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000001}, !- Target Object 2; !- Inlet Port @@ -972,12 +1740,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle {00000000-0000-0000-0056-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000112}, !- Target Object + {00000000-0000-0000-0052-000000000194}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle - {00000000-0000-0000-0052-000000000112}, !- Source Object + {00000000-0000-0000-0052-000000000194}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -986,12 +1754,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000114}, !- Target Object + {00000000-0000-0000-0052-000000000196}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0052-000000000114}, !- Source Object + {00000000-0000-0000-0052-000000000196}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000003}, !- Target Object 2; !- Inlet Port @@ -1000,26 +1768,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle {00000000-0000-0000-0056-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000081}, !- Target Object + {00000000-0000-0000-0052-000000000163}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000038}, !- Target Object + {00000000-0000-0000-0052-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000130}, !- Target Object + {00000000-0000-0000-0052-000000000212}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle - {00000000-0000-0000-0052-000000000039}, !- Source Object + {00000000-0000-0000-0052-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 15; !- Inlet Port @@ -1028,12 +1796,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000036}, !- Target Object + {00000000-0000-0000-0052-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle - {00000000-0000-0000-0052-000000000036}, !- Source Object + {00000000-0000-0000-0052-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1042,26 +1810,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000040}, !- Target Object + {00000000-0000-0000-0052-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000037}, !- Target Object + {00000000-0000-0000-0052-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0052-000000000037}, !- Source Object + {00000000-0000-0000-0052-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle - {00000000-0000-0000-0052-000000000038}, !- Source Object + {00000000-0000-0000-0052-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000002}, !- Target Object 2; !- Inlet Port @@ -1070,19 +1838,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle {00000000-0000-0000-0060-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000133}, !- Target Object + {00000000-0000-0000-0052-000000000215}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle - {00000000-0000-0000-0052-000000000133}, !- Source Object + {00000000-0000-0000-0052-000000000215}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle - {00000000-0000-0000-0052-000000000130}, !- Source Object + {00000000-0000-0000-0052-000000000212}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -1091,12 +1859,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000131}, !- Target Object + {00000000-0000-0000-0052-000000000213}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle - {00000000-0000-0000-0052-000000000131}, !- Source Object + {00000000-0000-0000-0052-000000000213}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -1105,12 +1873,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000139}, !- Target Object + {00000000-0000-0000-0052-000000000221}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0052-000000000139}, !- Source Object + {00000000-0000-0000-0052-000000000221}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1119,12 +1887,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000140}, !- Target Object + {00000000-0000-0000-0052-000000000222}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle - {00000000-0000-0000-0052-000000000140}, !- Source Object + {00000000-0000-0000-0052-000000000222}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -1133,12 +1901,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000115}, !- Target Object + {00000000-0000-0000-0052-000000000197}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle - {00000000-0000-0000-0052-000000000115}, !- Source Object + {00000000-0000-0000-0052-000000000197}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000004}, !- Target Object 2; !- Inlet Port @@ -1147,12 +1915,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle {00000000-0000-0000-0056-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000116}, !- Target Object + {00000000-0000-0000-0052-000000000198}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle - {00000000-0000-0000-0052-000000000116}, !- Source Object + {00000000-0000-0000-0052-000000000198}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 5; !- Inlet Port @@ -1161,12 +1929,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000117}, !- Target Object + {00000000-0000-0000-0052-000000000199}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle - {00000000-0000-0000-0052-000000000117}, !- Source Object + {00000000-0000-0000-0052-000000000199}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000005}, !- Target Object 2; !- Inlet Port @@ -1175,26 +1943,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle {00000000-0000-0000-0056-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000039}, !- Target Object + {00000000-0000-0000-0052-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle {00000000-0000-0000-0057-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000068}, !- Target Object + {00000000-0000-0000-0052-000000000150}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000070}, !- Target Object + {00000000-0000-0000-0052-000000000152}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle - {00000000-0000-0000-0052-000000000069}, !- Source Object + {00000000-0000-0000-0052-000000000151}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000002}, !- Target Object 15; !- Inlet Port @@ -1203,12 +1971,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle {00000000-0000-0000-0057-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000066}, !- Target Object + {00000000-0000-0000-0052-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle - {00000000-0000-0000-0052-000000000066}, !- Source Object + {00000000-0000-0000-0052-000000000148}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000006}, !- Target Object 2; !- Inlet Port @@ -1217,26 +1985,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000128}, !- Target Object + {00000000-0000-0000-0052-000000000210}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle {00000000-0000-0000-0018-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000067}, !- Target Object + {00000000-0000-0000-0052-000000000149}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0052-000000000067}, !- Source Object + {00000000-0000-0000-0052-000000000149}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle - {00000000-0000-0000-0052-000000000068}, !- Source Object + {00000000-0000-0000-0052-000000000150}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000003}, !- Target Object 2; !- Inlet Port @@ -1245,19 +2013,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle {00000000-0000-0000-0060-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000134}, !- Target Object + {00000000-0000-0000-0052-000000000216}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle - {00000000-0000-0000-0052-000000000134}, !- Source Object + {00000000-0000-0000-0052-000000000216}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle - {00000000-0000-0000-0052-000000000070}, !- Source Object + {00000000-0000-0000-0052-000000000152}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0025-000000000001}, !- Target Object 2; !- Inlet Port @@ -1266,12 +2034,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle {00000000-0000-0000-0025-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000071}, !- Target Object + {00000000-0000-0000-0052-000000000153}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle - {00000000-0000-0000-0052-000000000071}, !- Source Object + {00000000-0000-0000-0052-000000000153}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 3; !- Inlet Port @@ -1280,12 +2048,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000118}, !- Target Object + {00000000-0000-0000-0052-000000000200}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0052-000000000118}, !- Source Object + {00000000-0000-0000-0052-000000000200}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000006}, !- Target Object 2; !- Inlet Port @@ -1294,12 +2062,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle {00000000-0000-0000-0056-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000119}, !- Target Object + {00000000-0000-0000-0052-000000000201}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle - {00000000-0000-0000-0052-000000000119}, !- Source Object + {00000000-0000-0000-0052-000000000201}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 4; !- Inlet Port @@ -1308,12 +2076,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle {00000000-0000-0000-0018-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000120}, !- Target Object + {00000000-0000-0000-0052-000000000202}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle - {00000000-0000-0000-0052-000000000120}, !- Source Object + {00000000-0000-0000-0052-000000000202}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000007}, !- Target Object 2; !- Inlet Port @@ -1322,12 +2090,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle {00000000-0000-0000-0056-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000069}, !- Target Object + {00000000-0000-0000-0052-000000000151}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle - {00000000-0000-0000-0052-000000000128}, !- Source Object + {00000000-0000-0000-0052-000000000210}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -1336,12 +2104,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000129}, !- Target Object + {00000000-0000-0000-0052-000000000211}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle - {00000000-0000-0000-0052-000000000129}, !- Source Object + {00000000-0000-0000-0052-000000000211}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 3; !- Inlet Port @@ -1350,12 +2118,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000137}, !- Target Object + {00000000-0000-0000-0052-000000000219}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle - {00000000-0000-0000-0052-000000000137}, !- Source Object + {00000000-0000-0000-0052-000000000219}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -1364,47 +2132,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000138}, !- Target Object + {00000000-0000-0000-0052-000000000220}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle - {00000000-0000-0000-0052-000000000138}, !- Source Object + {00000000-0000-0000-0052-000000000220}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0002-000000000003}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000147}, !- Target Object + {00000000-0000-0000-0052-000000000245}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle - {00000000-0000-0000-0052-000000000148}, !- Source Object + {00000000-0000-0000-0052-000000000246}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0002-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000142}, !- Target Object + {00000000-0000-0000-0052-000000000240}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle - {00000000-0000-0000-0052-000000000143}, !- Source Object + {00000000-0000-0000-0052-000000000241}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0052-000000000142}, !- Source Object + {00000000-0000-0000-0052-000000000240}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -1413,1253 +2181,2653 @@ OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000143}, !- Target Object + {00000000-0000-0000-0052-000000000241}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000121}, !- Handle + {00000000-0000-0000-0052-000000000079}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000001}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000122}, !- Handle + {00000000-0000-0000-0015-000000000001}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000081}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000123}, !- Handle + {00000000-0000-0000-0052-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000124}, !- Handle + {00000000-0000-0000-0052-000000000070}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000125}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000072}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000126}, !- Handle + {00000000-0000-0000-0052-000000000072}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000127}, !- Handle + {00000000-0000-0000-0041-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000246}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000128}, !- Handle + {00000000-0000-0000-0015-000000000001}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000080}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000129}, !- Handle + {00000000-0000-0000-0052-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000006}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000130}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000071}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000131}, !- Handle + {00000000-0000-0000-0052-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000001}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000132}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000242}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000133}, !- Handle + {00000000-0000-0000-0052-000000000242}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000134}, !- Handle + {00000000-0000-0000-0052-000000000245}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000135}, !- Handle + {00000000-0000-0000-0041-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000225}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000136}, !- Handle + {00000000-0000-0000-0052-000000000225}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000137}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000101}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000138}, !- Handle + {00000000-0000-0000-0052-000000000101}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000011}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000139}, !- Handle + {00000000-0000-0000-0015-000000000011}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000102}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000140}, !- Handle + {00000000-0000-0000-0052-000000000102}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000141}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000118}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000142}, !- Handle + {00000000-0000-0000-0052-000000000118}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000001}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000143}, !- Handle + {00000000-0000-0000-0016-000000000001}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000119}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000144}, !- Handle + {00000000-0000-0000-0052-000000000119}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000145}, !- Handle + {00000000-0000-0000-0052-000000000037}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000146}, !- Handle + {00000000-0000-0000-0058-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000147}, !- Handle + {00000000-0000-0000-0052-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000148}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000149}, !- Handle + {00000000-0000-0000-0052-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000150}, !- Handle + {00000000-0000-0000-0006-000000000001}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000151}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000103}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000152}, !- Handle + {00000000-0000-0000-0052-000000000103}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000012}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000153}, !- Handle + {00000000-0000-0000-0015-000000000012}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000104}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000154}, !- Handle + {00000000-0000-0000-0052-000000000104}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000155}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000132}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000156}, !- Handle + {00000000-0000-0000-0052-000000000132}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000008}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000157}, !- Handle + {00000000-0000-0000-0016-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000133}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000158}, !- Handle + {00000000-0000-0000-0052-000000000133}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000159}, !- Handle + {00000000-0000-0000-0052-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000160}, !- Handle + {00000000-0000-0000-0058-000000000042}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000161}, !- Handle + {00000000-0000-0000-0052-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000162}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000050}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000163}, !- Handle + {00000000-0000-0000-0052-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000164}, !- Handle + {00000000-0000-0000-0006-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000051}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000165}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000105}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000166}, !- Handle + {00000000-0000-0000-0052-000000000105}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000013}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000167}, !- Handle + {00000000-0000-0000-0015-000000000013}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000106}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000168}, !- Handle + {00000000-0000-0000-0052-000000000106}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000169}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000134}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000170}, !- Handle + {00000000-0000-0000-0052-000000000134}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000009}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000171}, !- Handle + {00000000-0000-0000-0016-000000000009}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000135}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000172}, !- Handle + {00000000-0000-0000-0052-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000173}, !- Handle + {00000000-0000-0000-0052-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000174}, !- Handle + {00000000-0000-0000-0058-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000175}, !- Handle + {00000000-0000-0000-0052-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000176}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000177}, !- Handle + {00000000-0000-0000-0052-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000178}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000053}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000179}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000107}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000180}, !- Handle + {00000000-0000-0000-0052-000000000107}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000014}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000181}, !- Handle + {00000000-0000-0000-0015-000000000014}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000108}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000182}, !- Handle + {00000000-0000-0000-0052-000000000108}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000183}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000136}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000184}, !- Handle + {00000000-0000-0000-0052-000000000136}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000010}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000185}, !- Handle + {00000000-0000-0000-0016-000000000010}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000137}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000186}, !- Handle + {00000000-0000-0000-0052-000000000137}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000187}, !- Handle + {00000000-0000-0000-0052-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000188}, !- Handle + {00000000-0000-0000-0058-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000189}, !- Handle + {00000000-0000-0000-0052-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000190}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000054}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000191}, !- Handle + {00000000-0000-0000-0052-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000192}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000193}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000109}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000194}, !- Handle + {00000000-0000-0000-0052-000000000109}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000015}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000195}, !- Handle + {00000000-0000-0000-0015-000000000015}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000110}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000196}, !- Handle + {00000000-0000-0000-0052-000000000110}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000197}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000138}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000198}, !- Handle + {00000000-0000-0000-0052-000000000138}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000011}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000199}, !- Handle + {00000000-0000-0000-0016-000000000011}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000139}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000200}, !- Handle + {00000000-0000-0000-0052-000000000139}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 13; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000201}, !- Handle + {00000000-0000-0000-0052-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000202}, !- Handle + {00000000-0000-0000-0058-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000203}, !- Handle + {00000000-0000-0000-0052-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000204}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000205}, !- Handle + {00000000-0000-0000-0052-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000206}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000207}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000231}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000208}, !- Handle + {00000000-0000-0000-0052-000000000232}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000209}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000226}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000210}, !- Handle + {00000000-0000-0000-0052-000000000227}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000211}, !- Handle + {00000000-0000-0000-0052-000000000226}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000212}, !- Handle + {00000000-0000-0000-0004-000000000002}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000227}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000213}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0052-000000000111}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000214}, !- Handle + {00000000-0000-0000-0052-000000000111}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000016}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000215}, !- Handle + {00000000-0000-0000-0015-000000000016}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000113}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000216}, !- Handle + {00000000-0000-0000-0052-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000217}, !- Handle + {00000000-0000-0000-0019-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000073}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000218}, !- Handle + {00000000-0000-0000-0052-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000219}, !- Handle + {00000000-0000-0000-0014-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000075}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000220}, !- Handle + {00000000-0000-0000-0052-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000004}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000221}, !- Handle + {00000000-0000-0000-0041-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000232}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000222}, !- Handle + {00000000-0000-0000-0015-000000000016}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000112}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000223}, !- Handle + {00000000-0000-0000-0052-000000000112}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000004}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000224}, !- Handle + {00000000-0000-0000-0014-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000074}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000225}, !- Handle + {00000000-0000-0000-0052-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000016}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000226}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000228}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000227}, !- Handle + {00000000-0000-0000-0052-000000000228}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000228}, !- Handle + {00000000-0000-0000-0052-000000000231}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000001}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000229}, !- Handle + {00000000-0000-0000-0041-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000223}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000230}, !- Handle + {00000000-0000-0000-0052-000000000223}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000231}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0052-000000000114}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000232}, !- Handle + {00000000-0000-0000-0052-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000017}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000233}, !- Handle + {00000000-0000-0000-0015-000000000017}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000115}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000234}, !- Handle + {00000000-0000-0000-0052-000000000115}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000235}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0052-000000000140}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000236}, !- Handle + {00000000-0000-0000-0052-000000000140}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000012}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000237}, !- Handle + {00000000-0000-0000-0016-000000000012}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000141}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000238}, !- Handle + {00000000-0000-0000-0052-000000000141}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000239}, !- Handle + {00000000-0000-0000-0052-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000240}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000024}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000241}, !- Handle + {00000000-0000-0000-0052-000000000024}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000242}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000243}, !- Handle + {00000000-0000-0000-0052-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000012}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000244}, !- Handle + {00000000-0000-0000-0006-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000245}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000116}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000246}, !- Handle + {00000000-0000-0000-0052-000000000116}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000018}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000247}, !- Handle + {00000000-0000-0000-0015-000000000018}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000117}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000248}, !- Handle + {00000000-0000-0000-0052-000000000117}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000249}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0052-000000000142}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000250}, !- Handle + {00000000-0000-0000-0052-000000000142}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000013}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000251}, !- Handle + {00000000-0000-0000-0016-000000000013}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000143}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000252}, !- Handle + {00000000-0000-0000-0052-000000000143}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000253}, !- Handle + {00000000-0000-0000-0052-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000254}, !- Handle + {00000000-0000-0000-0058-000000000039}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000020}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000255}, !- Handle + {00000000-0000-0000-0052-000000000020}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000256}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000257}, !- Handle + {00000000-0000-0000-0052-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000013}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000258}, !- Handle + {00000000-0000-0000-0006-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000259}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0052-000000000082}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000260}, !- Handle + {00000000-0000-0000-0052-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000261}, !- Handle + {00000000-0000-0000-0015-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000083}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000262}, !- Handle + {00000000-0000-0000-0052-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000263}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0052-000000000144}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000264}, !- Handle + {00000000-0000-0000-0052-000000000144}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000014}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000265}, !- Handle + {00000000-0000-0000-0016-000000000014}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000145}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000266}, !- Handle + {00000000-0000-0000-0052-000000000145}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000267}, !- Handle + {00000000-0000-0000-0052-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000268}, !- Handle + {00000000-0000-0000-0058-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000269}, !- Handle + {00000000-0000-0000-0052-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000270}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000271}, !- Handle + {00000000-0000-0000-0052-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000014}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000272}, !- Handle + {00000000-0000-0000-0006-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000273}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0052-000000000084}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000274}, !- Handle + {00000000-0000-0000-0052-000000000084}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000003}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000275}, !- Handle + {00000000-0000-0000-0015-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000085}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000276}, !- Handle + {00000000-0000-0000-0052-000000000085}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000277}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0052-000000000146}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000278}, !- Handle + {00000000-0000-0000-0052-000000000146}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000015}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000279}, !- Handle + {00000000-0000-0000-0016-000000000015}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000147}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000280}, !- Handle + {00000000-0000-0000-0052-000000000147}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 22; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000281}, !- Handle + {00000000-0000-0000-0052-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000282}, !- Handle + {00000000-0000-0000-0058-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000283}, !- Handle + {00000000-0000-0000-0052-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000284}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000285}, !- Handle + {00000000-0000-0000-0052-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000015}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000286}, !- Handle + {00000000-0000-0000-0006-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000065}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000287}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 23, !- Outlet Port + {00000000-0000-0000-0052-000000000086}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000288}, !- Handle + {00000000-0000-0000-0052-000000000086}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000004}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000289}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000087}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000290}, !- Handle + {00000000-0000-0000-0052-000000000087}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 23; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000291}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 24, !- Outlet Port + {00000000-0000-0000-0052-000000000120}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000292}, !- Handle + {00000000-0000-0000-0052-000000000120}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000293}, !- Handle + {00000000-0000-0000-0016-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000121}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000294}, !- Handle + {00000000-0000-0000-0052-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 24; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000295}, !- Handle + {00000000-0000-0000-0052-000000000039}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000296}, !- Handle + {00000000-0000-0000-0058-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000297}, !- Handle + {00000000-0000-0000-0052-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000298}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000038}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000299}, !- Handle + {00000000-0000-0000-0052-000000000038}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000300}, !- Handle + {00000000-0000-0000-0006-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000039}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000301}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000238}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000302}, !- Handle + {00000000-0000-0000-0052-000000000239}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000303}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000233}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000304}, !- Handle + {00000000-0000-0000-0052-000000000234}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000305}, !- Handle + {00000000-0000-0000-0052-000000000233}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000003}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000306}, !- Handle + {00000000-0000-0000-0004-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000234}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000307}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 25, !- Outlet Port + {00000000-0000-0000-0052-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0052-000000000043}, !- Source Object + {00000000-0000-0000-0017-000000000308}, !- Handle + {00000000-0000-0000-0052-000000000088}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000001}, !- Target Object + {00000000-0000-0000-0015-000000000005}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000122}, !- Handle - {00000000-0000-0000-0015-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000309}, !- Handle + {00000000-0000-0000-0015-000000000005}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000045}, !- Target Object + {00000000-0000-0000-0052-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0052-000000000045}, !- Source Object + {00000000-0000-0000-0017-000000000310}, !- Handle + {00000000-0000-0000-0052-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 3; !- Inlet Port + 25; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0052-000000000040}, !- Source Object + {00000000-0000-0000-0017-000000000311}, !- Handle + {00000000-0000-0000-0019-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000076}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000312}, !- Handle + {00000000-0000-0000-0052-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object + {00000000-0000-0000-0014-000000000003}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000125}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000313}, !- Handle + {00000000-0000-0000-0014-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000042}, !- Target Object + {00000000-0000-0000-0052-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0052-000000000042}, !- Source Object + {00000000-0000-0000-0017-000000000314}, !- Handle + {00000000-0000-0000-0052-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object - 3; !- Inlet Port + 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000127}, !- Handle - {00000000-0000-0000-0041-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000315}, !- Handle + {00000000-0000-0000-0041-000000000005}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000148}, !- Target Object + {00000000-0000-0000-0052-000000000239}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000128}, !- Handle - {00000000-0000-0000-0015-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000316}, !- Handle + {00000000-0000-0000-0015-000000000005}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0052-000000000044}, !- Target Object + {00000000-0000-0000-0052-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000129}, !- Handle - {00000000-0000-0000-0052-000000000044}, !- Source Object + {00000000-0000-0000-0017-000000000317}, !- Handle + {00000000-0000-0000-0052-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000002}, !- Target Object + {00000000-0000-0000-0041-000000000005}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000130}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000318}, !- Handle + {00000000-0000-0000-0014-000000000003}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000041}, !- Target Object + {00000000-0000-0000-0052-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0052-000000000041}, !- Source Object + {00000000-0000-0000-0017-000000000319}, !- Handle + {00000000-0000-0000-0052-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000001}, !- Target Object + {00000000-0000-0000-0015-000000000005}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000132}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000320}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000144}, !- Target Object + {00000000-0000-0000-0052-000000000235}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0052-000000000144}, !- Source Object + {00000000-0000-0000-0017-000000000321}, !- Handle + {00000000-0000-0000-0052-000000000235}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object + {00000000-0000-0000-0014-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000134}, !- Handle - {00000000-0000-0000-0052-000000000147}, !- Source Object + {00000000-0000-0000-0017-000000000322}, !- Handle + {00000000-0000-0000-0052-000000000238}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000001}, !- Target Object + {00000000-0000-0000-0041-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0041-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000323}, !- Handle + {00000000-0000-0000-0041-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000141}, !- Target Object + {00000000-0000-0000-0052-000000000224}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000136}, !- Handle - {00000000-0000-0000-0052-000000000141}, !- Source Object + {00000000-0000-0000-0017-000000000324}, !- Handle + {00000000-0000-0000-0052-000000000224}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000137}, !- Handle + {00000000-0000-0000-0017-000000000325}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000046}, !- Target Object + 26, !- Outlet Port + {00000000-0000-0000-0052-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000138}, !- Handle - {00000000-0000-0000-0052-000000000046}, !- Source Object + {00000000-0000-0000-0017-000000000326}, !- Handle + {00000000-0000-0000-0052-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object + {00000000-0000-0000-0015-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000139}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000327}, !- Handle + {00000000-0000-0000-0015-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000047}, !- Target Object + {00000000-0000-0000-0052-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0052-000000000047}, !- Source Object + {00000000-0000-0000-0017-000000000328}, !- Handle + {00000000-0000-0000-0052-000000000092}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 4; !- Inlet Port + 26; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000141}, !- Handle + {00000000-0000-0000-0017-000000000329}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000056}, !- Target Object + 27, !- Outlet Port + {00000000-0000-0000-0052-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000142}, !- Handle - {00000000-0000-0000-0052-000000000056}, !- Source Object + {00000000-0000-0000-0017-000000000330}, !- Handle + {00000000-0000-0000-0052-000000000122}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000001}, !- Target Object + {00000000-0000-0000-0016-000000000003}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000143}, !- Handle - {00000000-0000-0000-0016-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000331}, !- Handle + {00000000-0000-0000-0016-000000000003}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000057}, !- Target Object + {00000000-0000-0000-0052-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000144}, !- Handle - {00000000-0000-0000-0052-000000000057}, !- Source Object + {00000000-0000-0000-0017-000000000332}, !- Handle + {00000000-0000-0000-0052-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 5; !- Inlet Port + 27; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0052-000000000027}, !- Source Object + {00000000-0000-0000-0017-000000000333}, !- Handle + {00000000-0000-0000-0052-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000016}, !- Target Object + {00000000-0000-0000-0058-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000146}, !- Handle - {00000000-0000-0000-0058-000000000018}, !- Source Object + {00000000-0000-0000-0017-000000000334}, !- Handle + {00000000-0000-0000-0058-000000000012}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000014}, !- Target Object + {00000000-0000-0000-0052-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000147}, !- Handle - {00000000-0000-0000-0052-000000000014}, !- Source Object + {00000000-0000-0000-0017-000000000335}, !- Handle + {00000000-0000-0000-0052-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000148}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000336}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000026}, !- Target Object + {00000000-0000-0000-0052-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0052-000000000026}, !- Source Object + {00000000-0000-0000-0017-000000000337}, !- Handle + {00000000-0000-0000-0052-000000000040}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000001}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000150}, !- Handle - {00000000-0000-0000-0006-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000338}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000027}, !- Target Object + {00000000-0000-0000-0052-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000151}, !- Handle + {00000000-0000-0000-0017-000000000339}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000048}, !- Target Object + 28, !- Outlet Port + {00000000-0000-0000-0052-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0052-000000000048}, !- Source Object + {00000000-0000-0000-0017-000000000340}, !- Handle + {00000000-0000-0000-0052-000000000093}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object + {00000000-0000-0000-0015-000000000007}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000153}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object + {00000000-0000-0000-0017-000000000341}, !- Handle + {00000000-0000-0000-0015-000000000007}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000049}, !- Target Object + {00000000-0000-0000-0052-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0052-000000000049}, !- Source Object + {00000000-0000-0000-0017-000000000342}, !- Handle + {00000000-0000-0000-0052-000000000094}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 6; !- Inlet Port + 28; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000155}, !- Handle + {00000000-0000-0000-0017-000000000343}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000058}, !- Target Object + 29, !- Outlet Port + {00000000-0000-0000-0052-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0052-000000000058}, !- Source Object + {00000000-0000-0000-0017-000000000344}, !- Handle + {00000000-0000-0000-0052-000000000124}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object + {00000000-0000-0000-0016-000000000004}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000157}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000345}, !- Handle + {00000000-0000-0000-0016-000000000004}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000059}, !- Target Object + {00000000-0000-0000-0052-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0052-000000000059}, !- Source Object + {00000000-0000-0000-0017-000000000346}, !- Handle + {00000000-0000-0000-0052-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 7; !- Inlet Port + 29; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0052-000000000029}, !- Source Object + {00000000-0000-0000-0017-000000000347}, !- Handle + {00000000-0000-0000-0052-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000040}, !- Target Object + {00000000-0000-0000-0058-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000160}, !- Handle - {00000000-0000-0000-0058-000000000042}, !- Source Object + {00000000-0000-0000-0017-000000000348}, !- Handle + {00000000-0000-0000-0058-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000008}, !- Target Object + {00000000-0000-0000-0052-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000161}, !- Handle - {00000000-0000-0000-0052-000000000008}, !- Source Object + {00000000-0000-0000-0017-000000000349}, !- Handle + {00000000-0000-0000-0052-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000162}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000350}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000028}, !- Target Object + {00000000-0000-0000-0052-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0052-000000000028}, !- Source Object + {00000000-0000-0000-0017-000000000351}, !- Handle + {00000000-0000-0000-0052-000000000042}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000352}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000029}, !- Target Object + {00000000-0000-0000-0052-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000165}, !- Handle + {00000000-0000-0000-0017-000000000353}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000050}, !- Target Object + 30, !- Outlet Port + {00000000-0000-0000-0052-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0052-000000000050}, !- Source Object + {00000000-0000-0000-0017-000000000354}, !- Handle + {00000000-0000-0000-0052-000000000095}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object + {00000000-0000-0000-0015-000000000008}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000167}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object + {00000000-0000-0000-0017-000000000355}, !- Handle + {00000000-0000-0000-0015-000000000008}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000051}, !- Target Object + {00000000-0000-0000-0052-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0052-000000000051}, !- Source Object + {00000000-0000-0000-0017-000000000356}, !- Handle + {00000000-0000-0000-0052-000000000096}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 8; !- Inlet Port + 30; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000169}, !- Handle + {00000000-0000-0000-0017-000000000357}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000060}, !- Target Object + 31, !- Outlet Port + {00000000-0000-0000-0052-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0052-000000000060}, !- Source Object + {00000000-0000-0000-0017-000000000358}, !- Handle + {00000000-0000-0000-0052-000000000126}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object + {00000000-0000-0000-0016-000000000005}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000171}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object + {00000000-0000-0000-0017-000000000359}, !- Handle + {00000000-0000-0000-0016-000000000005}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000061}, !- Target Object + {00000000-0000-0000-0052-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0052-000000000061}, !- Source Object + {00000000-0000-0000-0017-000000000360}, !- Handle + {00000000-0000-0000-0052-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 9; !- Inlet Port + 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0052-000000000031}, !- Source Object + {00000000-0000-0000-0017-000000000361}, !- Handle + {00000000-0000-0000-0052-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000031}, !- Target Object + {00000000-0000-0000-0058-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000174}, !- Handle - {00000000-0000-0000-0058-000000000033}, !- Source Object + {00000000-0000-0000-0017-000000000362}, !- Handle + {00000000-0000-0000-0058-000000000009}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000006}, !- Target Object + {00000000-0000-0000-0052-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000175}, !- Handle - {00000000-0000-0000-0052-000000000006}, !- Source Object + {00000000-0000-0000-0017-000000000363}, !- Handle + {00000000-0000-0000-0052-000000000026}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000176}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000364}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000030}, !- Target Object + {00000000-0000-0000-0052-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0052-000000000030}, !- Source Object + {00000000-0000-0000-0017-000000000365}, !- Handle + {00000000-0000-0000-0052-000000000044}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object + {00000000-0000-0000-0017-000000000366}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000031}, !- Target Object + {00000000-0000-0000-0052-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000179}, !- Handle + {00000000-0000-0000-0017-000000000367}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000052}, !- Target Object + 32, !- Outlet Port + {00000000-0000-0000-0052-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0052-000000000052}, !- Source Object + {00000000-0000-0000-0017-000000000368}, !- Handle + {00000000-0000-0000-0052-000000000097}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000005}, !- Target Object + {00000000-0000-0000-0015-000000000009}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000181}, !- Handle - {00000000-0000-0000-0015-000000000005}, !- Source Object + {00000000-0000-0000-0017-000000000369}, !- Handle + {00000000-0000-0000-0015-000000000009}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000053}, !- Target Object + {00000000-0000-0000-0052-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0052-000000000053}, !- Source Object + {00000000-0000-0000-0017-000000000370}, !- Handle + {00000000-0000-0000-0052-000000000098}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 10; !- Inlet Port + 32; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000183}, !- Handle + {00000000-0000-0000-0017-000000000371}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000062}, !- Target Object + 33, !- Outlet Port + {00000000-0000-0000-0052-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0052-000000000062}, !- Source Object + {00000000-0000-0000-0017-000000000372}, !- Handle + {00000000-0000-0000-0052-000000000128}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object + {00000000-0000-0000-0016-000000000006}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000185}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object + {00000000-0000-0000-0017-000000000373}, !- Handle + {00000000-0000-0000-0016-000000000006}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000063}, !- Target Object + {00000000-0000-0000-0052-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0052-000000000063}, !- Source Object + {00000000-0000-0000-0017-000000000374}, !- Handle + {00000000-0000-0000-0052-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 11; !- Inlet Port + 33; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0052-000000000033}, !- Source Object + {00000000-0000-0000-0017-000000000375}, !- Handle + {00000000-0000-0000-0052-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000049}, !- Target Object + {00000000-0000-0000-0058-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000188}, !- Handle - {00000000-0000-0000-0058-000000000051}, !- Source Object + {00000000-0000-0000-0017-000000000376}, !- Handle + {00000000-0000-0000-0058-000000000021}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000010}, !- Target Object + {00000000-0000-0000-0052-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000189}, !- Handle - {00000000-0000-0000-0052-000000000010}, !- Source Object + {00000000-0000-0000-0017-000000000377}, !- Handle + {00000000-0000-0000-0052-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000190}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000378}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000032}, !- Target Object + {00000000-0000-0000-0052-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0052-000000000032}, !- Source Object + {00000000-0000-0000-0017-000000000379}, !- Handle + {00000000-0000-0000-0052-000000000046}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object + {00000000-0000-0000-0006-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object + {00000000-0000-0000-0017-000000000380}, !- Handle + {00000000-0000-0000-0006-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000033}, !- Target Object + {00000000-0000-0000-0052-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000193}, !- Handle + {00000000-0000-0000-0017-000000000381}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000054}, !- Target Object + 34, !- Outlet Port + {00000000-0000-0000-0052-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0052-000000000054}, !- Source Object + {00000000-0000-0000-0017-000000000382}, !- Handle + {00000000-0000-0000-0052-000000000099}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000006}, !- Target Object + {00000000-0000-0000-0015-000000000010}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000195}, !- Handle - {00000000-0000-0000-0015-000000000006}, !- Source Object + {00000000-0000-0000-0017-000000000383}, !- Handle + {00000000-0000-0000-0015-000000000010}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000055}, !- Target Object + {00000000-0000-0000-0052-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0052-000000000055}, !- Source Object + {00000000-0000-0000-0017-000000000384}, !- Handle + {00000000-0000-0000-0052-000000000100}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 12; !- Inlet Port + 34; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000197}, !- Handle + {00000000-0000-0000-0017-000000000385}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000064}, !- Target Object + 35, !- Outlet Port + {00000000-0000-0000-0052-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0052-000000000064}, !- Source Object + {00000000-0000-0000-0017-000000000386}, !- Handle + {00000000-0000-0000-0052-000000000130}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000005}, !- Target Object + {00000000-0000-0000-0016-000000000007}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000199}, !- Handle - {00000000-0000-0000-0016-000000000005}, !- Source Object + {00000000-0000-0000-0017-000000000387}, !- Handle + {00000000-0000-0000-0016-000000000007}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000065}, !- Target Object + {00000000-0000-0000-0052-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0052-000000000065}, !- Source Object + {00000000-0000-0000-0017-000000000388}, !- Handle + {00000000-0000-0000-0052-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 13; !- Inlet Port + 35; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0052-000000000035}, !- Source Object + {00000000-0000-0000-0017-000000000389}, !- Handle + {00000000-0000-0000-0052-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000052}, !- Target Object + {00000000-0000-0000-0058-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000202}, !- Handle - {00000000-0000-0000-0058-000000000054}, !- Source Object + {00000000-0000-0000-0017-000000000390}, !- Handle + {00000000-0000-0000-0058-000000000030}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000012}, !- Target Object + {00000000-0000-0000-0052-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000203}, !- Handle - {00000000-0000-0000-0052-000000000012}, !- Source Object + {00000000-0000-0000-0017-000000000391}, !- Handle + {00000000-0000-0000-0052-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000204}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000392}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000034}, !- Target Object + {00000000-0000-0000-0052-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0052-000000000034}, !- Source Object + {00000000-0000-0000-0017-000000000393}, !- Handle + {00000000-0000-0000-0052-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object + {00000000-0000-0000-0006-000000000007}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object + {00000000-0000-0000-0017-000000000394}, !- Handle + {00000000-0000-0000-0006-000000000007}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000035}, !- Target Object + {00000000-0000-0000-0052-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000207}, !- Handle + {00000000-0000-0000-0017-000000000395}, !- Handle {00000000-0000-0000-0057-000000000004}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000085}, !- Target Object + {00000000-0000-0000-0052-000000000167}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000208}, !- Handle + {00000000-0000-0000-0017-000000000396}, !- Handle {00000000-0000-0000-0019-000000000007}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0052-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0052-000000000086}, !- Source Object + {00000000-0000-0000-0017-000000000397}, !- Handle + {00000000-0000-0000-0052-000000000168}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000004}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000210}, !- Handle + {00000000-0000-0000-0017-000000000398}, !- Handle {00000000-0000-0000-0057-000000000004}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000083}, !- Target Object + {00000000-0000-0000-0052-000000000165}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0052-000000000083}, !- Source Object + {00000000-0000-0000-0017-000000000399}, !- Handle + {00000000-0000-0000-0052-000000000165}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000212}, !- Handle + {00000000-0000-0000-0017-000000000400}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000123}, !- Target Object + {00000000-0000-0000-0052-000000000205}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0052-000000000084}, !- Source Object + {00000000-0000-0000-0017-000000000401}, !- Handle + {00000000-0000-0000-0052-000000000166}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000004}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0052-000000000085}, !- Source Object + {00000000-0000-0000-0017-000000000402}, !- Handle + {00000000-0000-0000-0052-000000000167}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0059-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000215}, !- Handle + {00000000-0000-0000-0017-000000000403}, !- Handle {00000000-0000-0000-0059-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000082}, !- Target Object + {00000000-0000-0000-0052-000000000164}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0052-000000000082}, !- Source Object + {00000000-0000-0000-0017-000000000404}, !- Handle + {00000000-0000-0000-0052-000000000164}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000217}, !- Handle + {00000000-0000-0000-0017-000000000405}, !- Handle {00000000-0000-0000-0052-000000000001}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000001}, !- Target Object 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000218}, !- Handle + {00000000-0000-0000-0017-000000000406}, !- Handle {00000000-0000-0000-0098-000000000001}, !- Source Object 32, !- Outlet Port {00000000-0000-0000-0052-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000219}, !- Handle + {00000000-0000-0000-0017-000000000407}, !- Handle {00000000-0000-0000-0052-000000000002}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000007}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000220}, !- Handle + {00000000-0000-0000-0017-000000000408}, !- Handle {00000000-0000-0000-0019-000000000007}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000121}, !- Target Object + {00000000-0000-0000-0052-000000000203}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0052-000000000121}, !- Source Object + {00000000-0000-0000-0017-000000000409}, !- Handle + {00000000-0000-0000-0052-000000000203}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000222}, !- Handle + {00000000-0000-0000-0017-000000000410}, !- Handle {00000000-0000-0000-0056-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000122}, !- Target Object + {00000000-0000-0000-0052-000000000204}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0052-000000000122}, !- Source Object + {00000000-0000-0000-0017-000000000411}, !- Handle + {00000000-0000-0000-0052-000000000204}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000007}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0052-000000000123}, !- Source Object + {00000000-0000-0000-0017-000000000412}, !- Handle + {00000000-0000-0000-0052-000000000205}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000225}, !- Handle + {00000000-0000-0000-0017-000000000413}, !- Handle {00000000-0000-0000-0056-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000124}, !- Target Object + {00000000-0000-0000-0052-000000000206}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0052-000000000124}, !- Source Object + {00000000-0000-0000-0017-000000000414}, !- Handle + {00000000-0000-0000-0052-000000000206}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000227}, !- Handle + {00000000-0000-0000-0017-000000000415}, !- Handle {00000000-0000-0000-0018-000000000007}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000125}, !- Target Object + {00000000-0000-0000-0052-000000000207}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0052-000000000125}, !- Source Object + {00000000-0000-0000-0017-000000000416}, !- Handle + {00000000-0000-0000-0052-000000000207}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000229}, !- Handle + {00000000-0000-0000-0017-000000000417}, !- Handle {00000000-0000-0000-0056-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000086}, !- Target Object + {00000000-0000-0000-0052-000000000168}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000230}, !- Handle + {00000000-0000-0000-0017-000000000418}, !- Handle {00000000-0000-0000-0018-000000000008}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000113}, !- Target Object + {00000000-0000-0000-0052-000000000195}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0052-000000000113}, !- Source Object + {00000000-0000-0000-0017-000000000419}, !- Handle + {00000000-0000-0000-0052-000000000195}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000232}, !- Handle + {00000000-0000-0000-0017-000000000420}, !- Handle {00000000-0000-0000-0056-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000084}, !- Target Object + {00000000-0000-0000-0052-000000000166}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000233}, !- Handle + {00000000-0000-0000-0017-000000000421}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000072}, !- Target Object + {00000000-0000-0000-0052-000000000154}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0052-000000000072}, !- Source Object + {00000000-0000-0000-0017-000000000422}, !- Handle + {00000000-0000-0000-0052-000000000154}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000235}, !- Handle + {00000000-0000-0000-0017-000000000423}, !- Handle {00000000-0000-0000-0100-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000073}, !- Target Object + {00000000-0000-0000-0052-000000000155}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0052-000000000073}, !- Source Object + {00000000-0000-0000-0017-000000000424}, !- Handle + {00000000-0000-0000-0052-000000000155}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000237}, !- Handle + {00000000-0000-0000-0017-000000000425}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000074}, !- Target Object + {00000000-0000-0000-0052-000000000156}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0052-000000000074}, !- Source Object + {00000000-0000-0000-0017-000000000426}, !- Handle + {00000000-0000-0000-0052-000000000156}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000239}, !- Handle + {00000000-0000-0000-0017-000000000427}, !- Handle {00000000-0000-0000-0100-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000075}, !- Target Object + {00000000-0000-0000-0052-000000000157}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0052-000000000075}, !- Source Object + {00000000-0000-0000-0017-000000000428}, !- Handle + {00000000-0000-0000-0052-000000000157}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000241}, !- Handle + {00000000-0000-0000-0017-000000000429}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000076}, !- Target Object + {00000000-0000-0000-0052-000000000158}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0052-000000000076}, !- Source Object + {00000000-0000-0000-0017-000000000430}, !- Handle + {00000000-0000-0000-0052-000000000158}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000243}, !- Handle + {00000000-0000-0000-0017-000000000431}, !- Handle {00000000-0000-0000-0100-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000077}, !- Target Object + {00000000-0000-0000-0052-000000000159}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0052-000000000077}, !- Source Object + {00000000-0000-0000-0017-000000000432}, !- Handle + {00000000-0000-0000-0052-000000000159}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000245}, !- Handle + {00000000-0000-0000-0017-000000000433}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000087}, !- Target Object + {00000000-0000-0000-0052-000000000169}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0052-000000000087}, !- Source Object + {00000000-0000-0000-0017-000000000434}, !- Handle + {00000000-0000-0000-0052-000000000169}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000247}, !- Handle + {00000000-0000-0000-0017-000000000435}, !- Handle {00000000-0000-0000-0100-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000088}, !- Target Object + {00000000-0000-0000-0052-000000000170}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0052-000000000088}, !- Source Object + {00000000-0000-0000-0017-000000000436}, !- Handle + {00000000-0000-0000-0052-000000000170}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000249}, !- Handle + {00000000-0000-0000-0017-000000000437}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0052-000000000089}, !- Target Object + {00000000-0000-0000-0052-000000000171}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0052-000000000089}, !- Source Object + {00000000-0000-0000-0017-000000000438}, !- Handle + {00000000-0000-0000-0052-000000000171}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000251}, !- Handle + {00000000-0000-0000-0017-000000000439}, !- Handle {00000000-0000-0000-0100-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000090}, !- Target Object + {00000000-0000-0000-0052-000000000172}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0052-000000000090}, !- Source Object + {00000000-0000-0000-0017-000000000440}, !- Handle + {00000000-0000-0000-0052-000000000172}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000253}, !- Handle + {00000000-0000-0000-0017-000000000441}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000091}, !- Target Object + {00000000-0000-0000-0052-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0052-000000000091}, !- Source Object + {00000000-0000-0000-0017-000000000442}, !- Handle + {00000000-0000-0000-0052-000000000173}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000255}, !- Handle + {00000000-0000-0000-0017-000000000443}, !- Handle {00000000-0000-0000-0100-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000092}, !- Target Object + {00000000-0000-0000-0052-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0052-000000000092}, !- Source Object + {00000000-0000-0000-0017-000000000444}, !- Handle + {00000000-0000-0000-0052-000000000174}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000257}, !- Handle + {00000000-0000-0000-0017-000000000445}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000093}, !- Target Object + {00000000-0000-0000-0052-000000000175}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0052-000000000093}, !- Source Object + {00000000-0000-0000-0017-000000000446}, !- Handle + {00000000-0000-0000-0052-000000000175}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000259}, !- Handle + {00000000-0000-0000-0017-000000000447}, !- Handle {00000000-0000-0000-0100-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000094}, !- Target Object + {00000000-0000-0000-0052-000000000176}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000260}, !- Handle - {00000000-0000-0000-0052-000000000094}, !- Source Object + {00000000-0000-0000-0017-000000000448}, !- Handle + {00000000-0000-0000-0052-000000000176}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000261}, !- Handle + {00000000-0000-0000-0017-000000000449}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000095}, !- Target Object + {00000000-0000-0000-0052-000000000177}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000262}, !- Handle - {00000000-0000-0000-0052-000000000095}, !- Source Object + {00000000-0000-0000-0017-000000000450}, !- Handle + {00000000-0000-0000-0052-000000000177}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000263}, !- Handle + {00000000-0000-0000-0017-000000000451}, !- Handle {00000000-0000-0000-0100-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000096}, !- Target Object + {00000000-0000-0000-0052-000000000178}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000264}, !- Handle - {00000000-0000-0000-0052-000000000096}, !- Source Object + {00000000-0000-0000-0017-000000000452}, !- Handle + {00000000-0000-0000-0052-000000000178}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 11; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000265}, !- Handle + {00000000-0000-0000-0017-000000000453}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000097}, !- Target Object + {00000000-0000-0000-0052-000000000179}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000266}, !- Handle - {00000000-0000-0000-0052-000000000097}, !- Source Object + {00000000-0000-0000-0017-000000000454}, !- Handle + {00000000-0000-0000-0052-000000000179}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000267}, !- Handle + {00000000-0000-0000-0017-000000000455}, !- Handle {00000000-0000-0000-0100-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000098}, !- Target Object + {00000000-0000-0000-0052-000000000180}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000268}, !- Handle - {00000000-0000-0000-0052-000000000098}, !- Source Object + {00000000-0000-0000-0017-000000000456}, !- Handle + {00000000-0000-0000-0052-000000000180}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000269}, !- Handle + {00000000-0000-0000-0017-000000000457}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000099}, !- Target Object + {00000000-0000-0000-0052-000000000181}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000270}, !- Handle - {00000000-0000-0000-0052-000000000099}, !- Source Object + {00000000-0000-0000-0017-000000000458}, !- Handle + {00000000-0000-0000-0052-000000000181}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000271}, !- Handle + {00000000-0000-0000-0017-000000000459}, !- Handle {00000000-0000-0000-0100-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000100}, !- Target Object + {00000000-0000-0000-0052-000000000182}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000272}, !- Handle - {00000000-0000-0000-0052-000000000100}, !- Source Object + {00000000-0000-0000-0017-000000000460}, !- Handle + {00000000-0000-0000-0052-000000000182}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 13; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000273}, !- Handle + {00000000-0000-0000-0017-000000000461}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000101}, !- Target Object + {00000000-0000-0000-0052-000000000183}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000274}, !- Handle - {00000000-0000-0000-0052-000000000101}, !- Source Object + {00000000-0000-0000-0017-000000000462}, !- Handle + {00000000-0000-0000-0052-000000000183}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000275}, !- Handle + {00000000-0000-0000-0017-000000000463}, !- Handle {00000000-0000-0000-0100-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000102}, !- Target Object + {00000000-0000-0000-0052-000000000184}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000276}, !- Handle - {00000000-0000-0000-0052-000000000102}, !- Source Object + {00000000-0000-0000-0017-000000000464}, !- Handle + {00000000-0000-0000-0052-000000000184}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000277}, !- Handle + {00000000-0000-0000-0017-000000000465}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0052-000000000103}, !- Target Object + {00000000-0000-0000-0052-000000000185}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000278}, !- Handle - {00000000-0000-0000-0052-000000000103}, !- Source Object + {00000000-0000-0000-0017-000000000466}, !- Handle + {00000000-0000-0000-0052-000000000185}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000279}, !- Handle + {00000000-0000-0000-0017-000000000467}, !- Handle {00000000-0000-0000-0100-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000104}, !- Target Object + {00000000-0000-0000-0052-000000000186}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000280}, !- Handle - {00000000-0000-0000-0052-000000000104}, !- Source Object + {00000000-0000-0000-0017-000000000468}, !- Handle + {00000000-0000-0000-0052-000000000186}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000281}, !- Handle + {00000000-0000-0000-0017-000000000469}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000105}, !- Target Object + {00000000-0000-0000-0052-000000000187}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000282}, !- Handle - {00000000-0000-0000-0052-000000000105}, !- Source Object + {00000000-0000-0000-0017-000000000470}, !- Handle + {00000000-0000-0000-0052-000000000187}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000283}, !- Handle + {00000000-0000-0000-0017-000000000471}, !- Handle {00000000-0000-0000-0100-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000106}, !- Target Object + {00000000-0000-0000-0052-000000000188}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000284}, !- Handle - {00000000-0000-0000-0052-000000000106}, !- Source Object + {00000000-0000-0000-0017-000000000472}, !- Handle + {00000000-0000-0000-0052-000000000188}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000285}, !- Handle + {00000000-0000-0000-0017-000000000473}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000107}, !- Target Object + {00000000-0000-0000-0052-000000000189}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000286}, !- Handle - {00000000-0000-0000-0052-000000000107}, !- Source Object + {00000000-0000-0000-0017-000000000474}, !- Handle + {00000000-0000-0000-0052-000000000189}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000287}, !- Handle + {00000000-0000-0000-0017-000000000475}, !- Handle {00000000-0000-0000-0100-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000108}, !- Target Object + {00000000-0000-0000-0052-000000000190}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000288}, !- Handle - {00000000-0000-0000-0052-000000000108}, !- Source Object + {00000000-0000-0000-0017-000000000476}, !- Handle + {00000000-0000-0000-0052-000000000190}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000289}, !- Handle + {00000000-0000-0000-0017-000000000477}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000109}, !- Target Object + {00000000-0000-0000-0052-000000000191}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000290}, !- Handle - {00000000-0000-0000-0052-000000000109}, !- Source Object + {00000000-0000-0000-0017-000000000478}, !- Handle + {00000000-0000-0000-0052-000000000191}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000291}, !- Handle + {00000000-0000-0000-0017-000000000479}, !- Handle {00000000-0000-0000-0100-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000110}, !- Target Object + {00000000-0000-0000-0052-000000000192}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000292}, !- Handle - {00000000-0000-0000-0052-000000000110}, !- Source Object + {00000000-0000-0000-0017-000000000480}, !- Handle + {00000000-0000-0000-0052-000000000192}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000293}, !- Handle - {00000000-0000-0000-0052-000000000145}, !- Source Object + {00000000-0000-0000-0017-000000000481}, !- Handle + {00000000-0000-0000-0052-000000000243}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000001}, !- Target Object + {00000000-0000-0000-0045-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000294}, !- Handle - {00000000-0000-0000-0045-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000482}, !- Handle + {00000000-0000-0000-0045-000000000003}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000149}, !- Target Object + {00000000-0000-0000-0052-000000000251}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000295}, !- Handle - {00000000-0000-0000-0052-000000000149}, !- Source Object + {00000000-0000-0000-0017-000000000483}, !- Handle + {00000000-0000-0000-0052-000000000251}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000296}, !- Handle + {00000000-0000-0000-0017-000000000484}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000150}, !- Target Object + {00000000-0000-0000-0052-000000000252}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000297}, !- Handle - {00000000-0000-0000-0052-000000000150}, !- Source Object + {00000000-0000-0000-0017-000000000485}, !- Handle + {00000000-0000-0000-0052-000000000252}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000003}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000486}, !- Handle + {00000000-0000-0000-0045-000000000003}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0052-000000000244}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000487}, !- Handle + {00000000-0000-0000-0052-000000000229}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000488}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000247}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000489}, !- Handle + {00000000-0000-0000-0052-000000000247}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000490}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000248}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000491}, !- Handle + {00000000-0000-0000-0052-000000000248}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0045-000000000001}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000298}, !- Handle + {00000000-0000-0000-0017-000000000492}, !- Handle {00000000-0000-0000-0045-000000000001}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0052-000000000146}, !- Target Object + {00000000-0000-0000-0052-000000000230}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000493}, !- Handle + {00000000-0000-0000-0052-000000000236}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000494}, !- Handle + {00000000-0000-0000-0045-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000249}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000495}, !- Handle + {00000000-0000-0000-0052-000000000249}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000496}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000250}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000497}, !- Handle + {00000000-0000-0000-0052-000000000250}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000498}, !- Handle + {00000000-0000-0000-0045-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0052-000000000237}, !- Target Object 2; !- Inlet Port OS:Connector:Mixer, @@ -2684,7 +4852,29 @@ OS:Connector:Mixer, {00000000-0000-0000-0017-000000000182}, !- Inlet Branch Name 8 {00000000-0000-0000-0017-000000000186}, !- Inlet Branch Name 9 {00000000-0000-0000-0017-000000000196}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000200}; !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000200}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000216}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000234}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000248}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000252}, !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000262}, !- Inlet Branch Name 17 + {00000000-0000-0000-0017-000000000266}, !- Inlet Branch Name 18 + {00000000-0000-0000-0017-000000000276}, !- Inlet Branch Name 19 + {00000000-0000-0000-0017-000000000280}, !- Inlet Branch Name 20 + {00000000-0000-0000-0017-000000000290}, !- Inlet Branch Name 21 + {00000000-0000-0000-0017-000000000294}, !- Inlet Branch Name 22 + {00000000-0000-0000-0017-000000000310}, !- Inlet Branch Name 23 + {00000000-0000-0000-0017-000000000328}, !- Inlet Branch Name 24 + {00000000-0000-0000-0017-000000000332}, !- Inlet Branch Name 25 + {00000000-0000-0000-0017-000000000342}, !- Inlet Branch Name 26 + {00000000-0000-0000-0017-000000000346}, !- Inlet Branch Name 27 + {00000000-0000-0000-0017-000000000356}, !- Inlet Branch Name 28 + {00000000-0000-0000-0017-000000000360}, !- Inlet Branch Name 29 + {00000000-0000-0000-0017-000000000370}, !- Inlet Branch Name 30 + {00000000-0000-0000-0017-000000000374}, !- Inlet Branch Name 31 + {00000000-0000-0000-0017-000000000384}, !- Inlet Branch Name 32 + {00000000-0000-0000-0017-000000000388}; !- Inlet Branch Name 33 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000003}, !- Handle @@ -2698,7 +4888,9 @@ OS:Connector:Mixer, {00000000-0000-0000-0018-000000000004}, !- Handle Connector Mixer 4, !- Name {00000000-0000-0000-0017-000000000068}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000126}; !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000126}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000220}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000314}; !- Inlet Branch Name 3 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle @@ -2717,30 +4909,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0018-000000000007}, !- Handle Connector Mixer 7, !- Name - {00000000-0000-0000-0017-000000000227}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000223}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000415}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000407}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000411}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000008}, !- Handle Connector Mixer 8, !- Name - {00000000-0000-0000-0017-000000000230}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000226}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000236}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000240}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000244}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000248}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000252}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000256}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000260}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000264}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000268}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000272}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000276}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000280}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000284}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000288}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000292}; !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000418}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000414}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000424}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000428}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000432}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000436}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000440}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000444}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000448}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000452}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000456}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000460}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000464}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000468}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000472}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000476}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000480}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -2764,7 +4956,29 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000179}, !- Outlet Branch Name 8 {00000000-0000-0000-0017-000000000183}, !- Outlet Branch Name 9 {00000000-0000-0000-0017-000000000193}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000197}; !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000197}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000213}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000231}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000245}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000249}, !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000259}, !- Outlet Branch Name 17 + {00000000-0000-0000-0017-000000000263}, !- Outlet Branch Name 18 + {00000000-0000-0000-0017-000000000273}, !- Outlet Branch Name 19 + {00000000-0000-0000-0017-000000000277}, !- Outlet Branch Name 20 + {00000000-0000-0000-0017-000000000287}, !- Outlet Branch Name 21 + {00000000-0000-0000-0017-000000000291}, !- Outlet Branch Name 22 + {00000000-0000-0000-0017-000000000307}, !- Outlet Branch Name 23 + {00000000-0000-0000-0017-000000000325}, !- Outlet Branch Name 24 + {00000000-0000-0000-0017-000000000329}, !- Outlet Branch Name 25 + {00000000-0000-0000-0017-000000000339}, !- Outlet Branch Name 26 + {00000000-0000-0000-0017-000000000343}, !- Outlet Branch Name 27 + {00000000-0000-0000-0017-000000000353}, !- Outlet Branch Name 28 + {00000000-0000-0000-0017-000000000357}, !- Outlet Branch Name 29 + {00000000-0000-0000-0017-000000000367}, !- Outlet Branch Name 30 + {00000000-0000-0000-0017-000000000371}, !- Outlet Branch Name 31 + {00000000-0000-0000-0017-000000000381}, !- Outlet Branch Name 32 + {00000000-0000-0000-0017-000000000385}; !- Outlet Branch Name 33 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -2778,7 +4992,9 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000004}, !- Handle Connector Splitter 4, !- Name {00000000-0000-0000-0017-000000000066}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000067}; !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000067}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000217}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000311}; !- Outlet Branch Name 3 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle @@ -2797,30 +5013,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000007}, !- Handle Connector Splitter 7, !- Name - {00000000-0000-0000-0017-000000000216}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000208}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000220}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000404}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000396}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000408}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000008}, !- Handle Connector Splitter 8, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000212}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000233}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000237}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000241}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000245}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000249}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000253}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000257}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000261}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000265}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000269}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000273}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000277}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000281}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000285}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000289}; !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000399}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000400}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000421}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000425}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000429}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000433}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000437}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000441}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000445}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000449}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000453}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000457}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000461}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000465}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000469}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000473}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000477}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle @@ -3079,6 +5295,20 @@ OS:Controller:MechanicalVentilation, , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + OS:Controller:OutdoorAir, {00000000-0000-0000-0022-000000000001}, !- Handle Controller Outdoor Air 1, !- Name @@ -3097,7 +5327,7 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000023}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0066-000000000027}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation @@ -3109,10 +5339,200 @@ OS:Controller:OutdoorAir, BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000025}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000026}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000001}, !- Handle + Controller Water Coil 1, !- Name + {00000000-0000-0000-0015-000000000001}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000002}, !- Handle + Controller Water Coil 10, !- Name + {00000000-0000-0000-0015-000000000017}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000003}, !- Handle + Controller Water Coil 11, !- Name + {00000000-0000-0000-0015-000000000018}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000004}, !- Handle + Controller Water Coil 12, !- Name + {00000000-0000-0000-0015-000000000002}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000005}, !- Handle + Controller Water Coil 13, !- Name + {00000000-0000-0000-0015-000000000003}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000006}, !- Handle + Controller Water Coil 14, !- Name + {00000000-0000-0000-0015-000000000004}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000007}, !- Handle + Controller Water Coil 15, !- Name + {00000000-0000-0000-0015-000000000005}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000008}, !- Handle + Controller Water Coil 16, !- Name + {00000000-0000-0000-0014-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000009}, !- Handle + Controller Water Coil 17, !- Name + {00000000-0000-0000-0015-000000000006}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000010}, !- Handle + Controller Water Coil 18, !- Name + {00000000-0000-0000-0015-000000000007}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000001}, !- Handle - Controller Water Coil 1, !- Name - {00000000-0000-0000-0015-000000000001}, !- Water Coil Name + {00000000-0000-0000-0023-000000000011}, !- Handle + Controller Water Coil 19, !- Name + {00000000-0000-0000-0015-000000000008}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3123,7 +5543,7 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000002}, !- Handle + {00000000-0000-0000-0023-000000000012}, !- Handle Controller Water Coil 2, !- Name {00000000-0000-0000-0014-000000000001}, !- Water Coil Name , !- Control Variable @@ -3136,9 +5556,35 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000003}, !- Handle + {00000000-0000-0000-0023-000000000013}, !- Handle + Controller Water Coil 20, !- Name + {00000000-0000-0000-0015-000000000009}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000014}, !- Handle + Controller Water Coil 21, !- Name + {00000000-0000-0000-0015-000000000010}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000015}, !- Handle Controller Water Coil 3, !- Name - {00000000-0000-0000-0015-000000000002}, !- Water Coil Name + {00000000-0000-0000-0015-000000000011}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3149,9 +5595,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000004}, !- Handle + {00000000-0000-0000-0023-000000000016}, !- Handle Controller Water Coil 4, !- Name - {00000000-0000-0000-0015-000000000003}, !- Water Coil Name + {00000000-0000-0000-0015-000000000012}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3162,9 +5608,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000005}, !- Handle + {00000000-0000-0000-0023-000000000017}, !- Handle Controller Water Coil 5, !- Name - {00000000-0000-0000-0015-000000000004}, !- Water Coil Name + {00000000-0000-0000-0015-000000000013}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3175,9 +5621,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000006}, !- Handle + {00000000-0000-0000-0023-000000000018}, !- Handle Controller Water Coil 6, !- Name - {00000000-0000-0000-0015-000000000005}, !- Water Coil Name + {00000000-0000-0000-0015-000000000014}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3188,9 +5634,22 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000007}, !- Handle + {00000000-0000-0000-0023-000000000019}, !- Handle Controller Water Coil 7, !- Name - {00000000-0000-0000-0015-000000000006}, !- Water Coil Name + {00000000-0000-0000-0015-000000000015}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000020}, !- Handle + Controller Water Coil 8, !- Name + {00000000-0000-0000-0015-000000000016}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3200,6 +5659,19 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000021}, !- Handle + Controller Water Coil 9, !- Name + {00000000-0000-0000-0014-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + OS:ConvergenceLimits, {00000000-0000-0000-0024-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -3212,7 +5684,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000099}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 1513.88883194005, !- Fan Power at Design Air Flow Rate {W} + 3780.56530191195, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -3303,6 +5775,34 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0026-000000000005}, !- Handle + WaterCooled_Screw_CAPFT_NECB2011, !- Name + 0.812998, !- Coefficient1 Constant + -0.0142532, !- Coefficient2 x + -0.00161799, !- Coefficient3 x**2 + 0.0263844, !- Coefficient4 y + -0.00091543, !- Coefficient5 y**2 + 0.00169601, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0026-000000000006}, !- Handle + WaterCooled_Screw_EIRFT_NECB2011, !- Name + 0.638103, !- Coefficient1 Constant + 0.00630158, !- Coefficient2 x + 0.00092327, !- Coefficient3 x**2 + -0.00455294, !- Coefficient4 y + 0.000825682, !- Coefficient5 y**2 + -0.00156152, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0026-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -3316,7 +5816,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000006}, !- Handle + {00000000-0000-0000-0026-000000000008}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -3389,6 +5889,15 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0028-000000000003}, !- Handle + WaterCooled_Screw_EIRFPLR_NECB2011, !- Name + 0.330188, !- Coefficient1 Constant + 0.235543, !- Coefficient2 x + 0.460708, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0028-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -3550,7 +6059,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__ClgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3558,6 +6067,38 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0036-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0036-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name + {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0036-000000000005}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__ClgSch0, !- Name + {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0036-000000000006}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__HtgSch0, !- Name {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type @@ -3566,41 +6107,147 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {4aa09fd6-efb3-4cd7-93b3-2bd7cfc3bd9c}<23.9 && {4aa09fd6-efb3-4cd7-93b3-2bd7cfc3bd9c}>1.7, !- Program Line 1 + SET {d5e8a1da-4984-4eb7-a3ff-9ab551cfe774} = 29.4, !- Program Line 2 + SET {54cf2450-0a24-461d-a55b-5d21ef6e5cb5} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {4aa09fd6-efb3-4cd7-93b3-2bd7cfc3bd9c}<23.9 && {4aa09fd6-efb3-4cd7-93b3-2bd7cfc3bd9c}>1.7, !- Program Line 4 + SET {d5e8a1da-4984-4eb7-a3ff-9ab551cfe774} = 29.4, !- Program Line 5 + SET {54cf2450-0a24-461d-a55b-5d21ef6e5cb5} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {4aa09fd6-efb3-4cd7-93b3-2bd7cfc3bd9c}<23.9 && {4aa09fd6-efb3-4cd7-93b3-2bd7cfc3bd9c}>1.7, !- Program Line 7 + SET {d5e8a1da-4984-4eb7-a3ff-9ab551cfe774} = 29.4, !- Program Line 8 + SET {54cf2450-0a24-461d-a55b-5d21ef6e5cb5} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {4aa09fd6-efb3-4cd7-93b3-2bd7cfc3bd9c}<23.9 && {4aa09fd6-efb3-4cd7-93b3-2bd7cfc3bd9c}>1.7, !- Program Line 10 + SET {d5e8a1da-4984-4eb7-a3ff-9ab551cfe774} = 29.4, !- Program Line 11 + SET {54cf2450-0a24-461d-a55b-5d21ef6e5cb5} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {d5e8a1da-4984-4eb7-a3ff-9ab551cfe774} = NULL, !- Program Line 14 + SET {54cf2450-0a24-461d-a55b-5d21ef6e5cb5} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0037-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {2e0dcfb8-b546-41b9-b609-dcef7ef91889}<23.9 && {2e0dcfb8-b546-41b9-b609-dcef7ef91889}>1.7, !- Program Line 1 + SET {9ee37969-eda4-43bd-a62b-3069ed2d18e4} = 29.4, !- Program Line 2 + SET {6e518797-b97c-4cd7-af85-8d767d2f01e3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {2e0dcfb8-b546-41b9-b609-dcef7ef91889}<23.9 && {2e0dcfb8-b546-41b9-b609-dcef7ef91889}>1.7, !- Program Line 4 + SET {9ee37969-eda4-43bd-a62b-3069ed2d18e4} = 29.4, !- Program Line 5 + SET {6e518797-b97c-4cd7-af85-8d767d2f01e3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {2e0dcfb8-b546-41b9-b609-dcef7ef91889}<23.9 && {2e0dcfb8-b546-41b9-b609-dcef7ef91889}>1.7, !- Program Line 7 + SET {9ee37969-eda4-43bd-a62b-3069ed2d18e4} = 29.4, !- Program Line 8 + SET {6e518797-b97c-4cd7-af85-8d767d2f01e3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {2e0dcfb8-b546-41b9-b609-dcef7ef91889}<23.9 && {2e0dcfb8-b546-41b9-b609-dcef7ef91889}>1.7, !- Program Line 10 + SET {9ee37969-eda4-43bd-a62b-3069ed2d18e4} = 29.4, !- Program Line 11 + SET {6e518797-b97c-4cd7-af85-8d767d2f01e3} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {9ee37969-eda4-43bd-a62b-3069ed2d18e4} = NULL, !- Program Line 14 + SET {6e518797-b97c-4cd7-af85-8d767d2f01e3} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0037-000000000003}, !- Handle ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}<23.9 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}>1.7, !- Program Line 1 - SET {6ddafe64-b010-4c3d-a9d5-f1449e15e3eb} = 29.4, !- Program Line 2 - SET {c1f3db94-28e3-4885-9ac2-bf2b9122a705} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}<23.9 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}>1.7, !- Program Line 4 - SET {6ddafe64-b010-4c3d-a9d5-f1449e15e3eb} = 29.4, !- Program Line 5 - SET {c1f3db94-28e3-4885-9ac2-bf2b9122a705} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}<23.9 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}>1.7, !- Program Line 7 - SET {6ddafe64-b010-4c3d-a9d5-f1449e15e3eb} = 29.4, !- Program Line 8 - SET {c1f3db94-28e3-4885-9ac2-bf2b9122a705} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}<23.9 && {954dec7a-c4e2-4f38-8e62-a7f9de13a954}>1.7, !- Program Line 10 - SET {6ddafe64-b010-4c3d-a9d5-f1449e15e3eb} = 29.4, !- Program Line 11 - SET {c1f3db94-28e3-4885-9ac2-bf2b9122a705} = 15.6, !- Program Line 12 + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fa7984aa-7c33-482f-9ef4-454d53889f14}<23.9 && {fa7984aa-7c33-482f-9ef4-454d53889f14}>1.7, !- Program Line 1 + SET {58095197-eb1c-4ab5-a818-7c277def2a7b} = 29.4, !- Program Line 2 + SET {111d12ab-ea48-4e04-9367-6373d6b56ce8} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fa7984aa-7c33-482f-9ef4-454d53889f14}<23.9 && {fa7984aa-7c33-482f-9ef4-454d53889f14}>1.7, !- Program Line 4 + SET {58095197-eb1c-4ab5-a818-7c277def2a7b} = 29.4, !- Program Line 5 + SET {111d12ab-ea48-4e04-9367-6373d6b56ce8} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fa7984aa-7c33-482f-9ef4-454d53889f14}<23.9 && {fa7984aa-7c33-482f-9ef4-454d53889f14}>1.7, !- Program Line 7 + SET {58095197-eb1c-4ab5-a818-7c277def2a7b} = 29.4, !- Program Line 8 + SET {111d12ab-ea48-4e04-9367-6373d6b56ce8} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fa7984aa-7c33-482f-9ef4-454d53889f14}<23.9 && {fa7984aa-7c33-482f-9ef4-454d53889f14}>1.7, !- Program Line 10 + SET {58095197-eb1c-4ab5-a818-7c277def2a7b} = 29.4, !- Program Line 11 + SET {111d12ab-ea48-4e04-9367-6373d6b56ce8} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {6ddafe64-b010-4c3d-a9d5-f1449e15e3eb} = NULL, !- Program Line 14 - SET {c1f3db94-28e3-4885-9ac2-bf2b9122a705} = NULL, !- Program Line 15 + SET {58095197-eb1c-4ab5-a818-7c277def2a7b} = NULL, !- Program Line 14 + SET {111d12ab-ea48-4e04-9367-6373d6b56ce8} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0038-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0037-000000000002}; !- Program Name 1 + +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0038-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0037-000000000003}; !- Program Name 1 + OS:EnergyManagementSystem:Sensor, {00000000-0000-0000-0039-000000000001}, !- Handle OAT, !- Name Environment, !- Output Variable or Output Meter Index Key Name Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0039-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0039-000000000003}, !- Handle + OAT_2, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + OS:Facility, {00000000-0000-0000-0040-000000000001}; !- Handle OS:Fan:VariableVolume, {00000000-0000-0000-0041-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000228}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000229}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000322}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000323}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000003}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -3621,8 +6268,29 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000002}, !- Handle - Sys6 Supply Fan, !- Name + {00000000-0000-0000-0041-000000000004}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000223}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000221}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000005}, !- Handle + Sys6 Supply Fan 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -3637,6 +6305,27 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000317}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000315}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000006}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0017-000000000129}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000127}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -3683,6 +6372,58 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0045-000000000001}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0017-000000000487}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000488}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000491}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000492}, !- Exhaust Air Outlet Node + 897.446570606695, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0045-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0017-000000000493}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000494}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000497}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000498}, !- Exhaust Air Outlet Node + 897.446570606695, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0045-000000000003}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} @@ -3694,10 +6435,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000293}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000294}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000297}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000298}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0017-000000000481}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000482}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000485}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000486}, !- Exhaust Air Outlet Node 897.446570606695, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -4126,32 +6867,64 @@ OS:Material:NoMass, 0.7; !- Visible Absorptance OS:ModelObjectList, - {00000000-0000-0000-0051-000000000001}, !- Handle - Availability Manager Night Cycle 1 Control Zone List; !- Name + {00000000-0000-0000-0051-000000000001}, !- Handle + Availability Manager Night Cycle 1 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000002}, !- Handle + Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000003}, !- Handle + Availability Manager Night Cycle 1 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000004}, !- Handle + Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0051-000000000002}, !- Handle - Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name + {00000000-0000-0000-0051-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0051-000000000003}, !- Handle - Availability Manager Night Cycle 1 Heating Control Zone List; !- Name + {00000000-0000-0000-0051-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name OS:ModelObjectList, - {00000000-0000-0000-0051-000000000004}, !- Handle - Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name + {00000000-0000-0000-0051-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name OS:Node, {00000000-0000-0000-0052-000000000001}, !- Handle 125gal NaturalGas Water Heater - 84kBtu/hr 0.813 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000208}, !- Inlet Port - {00000000-0000-0000-0017-000000000217}; !- Outlet Port + {00000000-0000-0000-0017-000000000396}, !- Inlet Port + {00000000-0000-0000-0017-000000000405}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000002}, !- Handle 125gal NaturalGas Water Heater - 84kBtu/hr 0.813 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000218}, !- Inlet Port - {00000000-0000-0000-0017-000000000219}; !- Outlet Port + {00000000-0000-0000-0017-000000000406}, !- Inlet Port + {00000000-0000-0000-0017-000000000407}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000003}, !- Handle @@ -4233,813 +7006,1425 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000296}, !- Inlet Port + {00000000-0000-0000-0017-000000000297}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000017}, !- Handle + {00000000-0000-0000-0052-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000282}, !- Inlet Port + {00000000-0000-0000-0017-000000000283}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000018}, !- Handle + {00000000-0000-0000-0052-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000254}, !- Inlet Port + {00000000-0000-0000-0017-000000000255}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000019}, !- Handle + {00000000-0000-0000-0052-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000268}, !- Inlet Port + {00000000-0000-0000-0017-000000000269}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000023}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000020}, !- Handle + {00000000-0000-0000-0052-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000240}, !- Inlet Port + {00000000-0000-0000-0017-000000000241}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000025}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000021}, !- Handle + {00000000-0000-0000-0052-000000000026}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000362}, !- Inlet Port + {00000000-0000-0000-0017-000000000363}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000027}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000022}, !- Handle + {00000000-0000-0000-0052-000000000028}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000334}, !- Inlet Port + {00000000-0000-0000-0017-000000000335}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000029}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000023}, !- Handle + {00000000-0000-0000-0052-000000000030}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000376}, !- Inlet Port + {00000000-0000-0000-0017-000000000377}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000031}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000024}, !- Handle + {00000000-0000-0000-0052-000000000032}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000390}, !- Inlet Port + {00000000-0000-0000-0017-000000000391}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000033}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000025}, !- Handle + {00000000-0000-0000-0052-000000000034}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000348}, !- Inlet Port + {00000000-0000-0000-0017-000000000349}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000035}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000026}, !- Handle + {00000000-0000-0000-0052-000000000036}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000148}, !- Inlet Port {00000000-0000-0000-0017-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000027}, !- Handle + {00000000-0000-0000-0052-000000000037}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000150}, !- Inlet Port {00000000-0000-0000-0017-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000028}, !- Handle + {00000000-0000-0000-0052-000000000038}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000298}, !- Inlet Port + {00000000-0000-0000-0017-000000000299}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000039}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000300}, !- Inlet Port + {00000000-0000-0000-0017-000000000295}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000040}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000336}, !- Inlet Port + {00000000-0000-0000-0017-000000000337}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000041}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000338}, !- Inlet Port + {00000000-0000-0000-0017-000000000333}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000042}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000350}, !- Inlet Port + {00000000-0000-0000-0017-000000000351}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000043}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000352}, !- Inlet Port + {00000000-0000-0000-0017-000000000347}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000044}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000364}, !- Inlet Port + {00000000-0000-0000-0017-000000000365}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000045}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000366}, !- Inlet Port + {00000000-0000-0000-0017-000000000361}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000046}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000378}, !- Inlet Port + {00000000-0000-0000-0017-000000000379}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000047}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000380}, !- Inlet Port + {00000000-0000-0000-0017-000000000375}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000392}, !- Inlet Port + {00000000-0000-0000-0017-000000000393}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000394}, !- Inlet Port + {00000000-0000-0000-0017-000000000389}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000050}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000162}, !- Inlet Port {00000000-0000-0000-0017-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000029}, !- Handle + {00000000-0000-0000-0052-000000000051}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000164}, !- Inlet Port {00000000-0000-0000-0017-000000000159}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000030}, !- Handle + {00000000-0000-0000-0052-000000000052}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000176}, !- Inlet Port {00000000-0000-0000-0017-000000000177}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000031}, !- Handle + {00000000-0000-0000-0052-000000000053}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000178}, !- Inlet Port {00000000-0000-0000-0017-000000000173}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000032}, !- Handle + {00000000-0000-0000-0052-000000000054}, !- Handle Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000190}, !- Inlet Port {00000000-0000-0000-0017-000000000191}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000033}, !- Handle + {00000000-0000-0000-0052-000000000055}, !- Handle Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000192}, !- Inlet Port {00000000-0000-0000-0017-000000000187}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000034}, !- Handle + {00000000-0000-0000-0052-000000000056}, !- Handle Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000204}, !- Inlet Port {00000000-0000-0000-0017-000000000205}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000035}, !- Handle + {00000000-0000-0000-0052-000000000057}, !- Handle Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000206}, !- Inlet Port {00000000-0000-0000-0017-000000000201}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000036}, !- Handle + {00000000-0000-0000-0052-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000242}, !- Inlet Port + {00000000-0000-0000-0017-000000000243}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000244}, !- Inlet Port + {00000000-0000-0000-0017-000000000239}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000256}, !- Inlet Port + {00000000-0000-0000-0017-000000000257}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000258}, !- Inlet Port + {00000000-0000-0000-0017-000000000253}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000270}, !- Inlet Port + {00000000-0000-0000-0017-000000000271}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000272}, !- Inlet Port + {00000000-0000-0000-0017-000000000267}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000284}, !- Inlet Port + {00000000-0000-0000-0017-000000000285}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000286}, !- Inlet Port + {00000000-0000-0000-0017-000000000281}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000066}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000065}, !- Inlet Port {00000000-0000-0000-0017-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000037}, !- Handle + {00000000-0000-0000-0052-000000000067}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000038}, !- Handle + {00000000-0000-0000-0052-000000000068}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000062}, !- Inlet Port {00000000-0000-0000-0017-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000039}, !- Handle + {00000000-0000-0000-0052-000000000069}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000086}, !- Inlet Port {00000000-0000-0000-0017-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000040}, !- Handle + {00000000-0000-0000-0052-000000000070}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000067}, !- Inlet Port {00000000-0000-0000-0017-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000041}, !- Handle - Coil Cooling Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000130}, !- Inlet Port - {00000000-0000-0000-0017-000000000131}; !- Outlet Port + {00000000-0000-0000-0052-000000000071}, !- Handle + Coil Cooling Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000130}, !- Inlet Port + {00000000-0000-0000-0017-000000000131}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000072}, !- Handle + Coil Cooling Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000125}, !- Inlet Port + {00000000-0000-0000-0017-000000000126}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000073}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000217}, !- Inlet Port + {00000000-0000-0000-0017-000000000218}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000074}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Port + {00000000-0000-0000-0017-000000000225}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000075}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000219}, !- Inlet Port + {00000000-0000-0000-0017-000000000220}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000076}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000311}, !- Inlet Port + {00000000-0000-0000-0017-000000000312}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000077}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000318}, !- Inlet Port + {00000000-0000-0000-0017-000000000319}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000078}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000313}, !- Inlet Port + {00000000-0000-0000-0017-000000000314}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000079}, !- Handle + Coil Heating Water 1 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000042}, !- Inlet Port + {00000000-0000-0000-0017-000000000121}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000080}, !- Handle + Coil Heating Water 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000128}, !- Inlet Port + {00000000-0000-0000-0017-000000000129}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000081}, !- Handle + Coil Heating Water 1 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000122}, !- Inlet Port + {00000000-0000-0000-0017-000000000123}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000082}, !- Handle + Coil Heating Water 10 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000259}, !- Inlet Port + {00000000-0000-0000-0017-000000000260}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000083}, !- Handle + Coil Heating Water 10 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000261}, !- Inlet Port + {00000000-0000-0000-0017-000000000262}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000084}, !- Handle + Coil Heating Water 11 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000273}, !- Inlet Port + {00000000-0000-0000-0017-000000000274}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000085}, !- Handle + Coil Heating Water 11 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000275}, !- Inlet Port + {00000000-0000-0000-0017-000000000276}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000086}, !- Handle + Coil Heating Water 12 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000287}, !- Inlet Port + {00000000-0000-0000-0017-000000000288}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000087}, !- Handle + Coil Heating Water 12 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000289}, !- Inlet Port + {00000000-0000-0000-0017-000000000290}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000088}, !- Handle + Coil Heating Water 13 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000307}, !- Inlet Port + {00000000-0000-0000-0017-000000000308}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000089}, !- Handle + Coil Heating Water 13 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000316}, !- Inlet Port + {00000000-0000-0000-0017-000000000317}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000090}, !- Handle + Coil Heating Water 13 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000309}, !- Inlet Port + {00000000-0000-0000-0017-000000000310}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000091}, !- Handle + Coil Heating Water 14 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000325}, !- Inlet Port + {00000000-0000-0000-0017-000000000326}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000092}, !- Handle + Coil Heating Water 14 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000327}, !- Inlet Port + {00000000-0000-0000-0017-000000000328}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000093}, !- Handle + Coil Heating Water 15 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000339}, !- Inlet Port + {00000000-0000-0000-0017-000000000340}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000094}, !- Handle + Coil Heating Water 15 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000341}, !- Inlet Port + {00000000-0000-0000-0017-000000000342}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000095}, !- Handle + Coil Heating Water 16 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000353}, !- Inlet Port + {00000000-0000-0000-0017-000000000354}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000096}, !- Handle + Coil Heating Water 16 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000355}, !- Inlet Port + {00000000-0000-0000-0017-000000000356}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000042}, !- Handle - Coil Cooling Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000125}, !- Inlet Port - {00000000-0000-0000-0017-000000000126}; !- Outlet Port + {00000000-0000-0000-0052-000000000097}, !- Handle + Coil Heating Water 17 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000367}, !- Inlet Port + {00000000-0000-0000-0017-000000000368}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000043}, !- Handle - Coil Heating Water 1 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000042}, !- Inlet Port - {00000000-0000-0000-0017-000000000121}; !- Outlet Port + {00000000-0000-0000-0052-000000000098}, !- Handle + Coil Heating Water 17 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000369}, !- Inlet Port + {00000000-0000-0000-0017-000000000370}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000044}, !- Handle - Coil Heating Water 1 Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000128}, !- Inlet Port - {00000000-0000-0000-0017-000000000129}; !- Outlet Port + {00000000-0000-0000-0052-000000000099}, !- Handle + Coil Heating Water 18 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000381}, !- Inlet Port + {00000000-0000-0000-0017-000000000382}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000045}, !- Handle - Coil Heating Water 1 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000122}, !- Inlet Port - {00000000-0000-0000-0017-000000000123}; !- Outlet Port + {00000000-0000-0000-0052-000000000100}, !- Handle + Coil Heating Water 18 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000383}, !- Inlet Port + {00000000-0000-0000-0017-000000000384}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000046}, !- Handle + {00000000-0000-0000-0052-000000000101}, !- Handle Coil Heating Water 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000047}, !- Handle + {00000000-0000-0000-0052-000000000102}, !- Handle Coil Heating Water 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000139}, !- Inlet Port {00000000-0000-0000-0017-000000000140}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000048}, !- Handle + {00000000-0000-0000-0052-000000000103}, !- Handle Coil Heating Water 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000151}, !- Inlet Port {00000000-0000-0000-0017-000000000152}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000049}, !- Handle + {00000000-0000-0000-0052-000000000104}, !- Handle Coil Heating Water 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000153}, !- Inlet Port {00000000-0000-0000-0017-000000000154}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000050}, !- Handle + {00000000-0000-0000-0052-000000000105}, !- Handle Coil Heating Water 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000165}, !- Inlet Port {00000000-0000-0000-0017-000000000166}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000051}, !- Handle + {00000000-0000-0000-0052-000000000106}, !- Handle Coil Heating Water 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000167}, !- Inlet Port {00000000-0000-0000-0017-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000052}, !- Handle + {00000000-0000-0000-0052-000000000107}, !- Handle Coil Heating Water 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000179}, !- Inlet Port {00000000-0000-0000-0017-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000053}, !- Handle + {00000000-0000-0000-0052-000000000108}, !- Handle Coil Heating Water 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000181}, !- Inlet Port {00000000-0000-0000-0017-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000054}, !- Handle + {00000000-0000-0000-0052-000000000109}, !- Handle Coil Heating Water 6 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000193}, !- Inlet Port {00000000-0000-0000-0017-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000055}, !- Handle + {00000000-0000-0000-0052-000000000110}, !- Handle Coil Heating Water 6 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000195}, !- Inlet Port {00000000-0000-0000-0017-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000056}, !- Handle + {00000000-0000-0000-0052-000000000111}, !- Handle + Coil Heating Water 7 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000213}, !- Inlet Port + {00000000-0000-0000-0017-000000000214}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000112}, !- Handle + Coil Heating Water 7 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000222}, !- Inlet Port + {00000000-0000-0000-0017-000000000223}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000113}, !- Handle + Coil Heating Water 7 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000215}, !- Inlet Port + {00000000-0000-0000-0017-000000000216}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000114}, !- Handle + Coil Heating Water 8 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000231}, !- Inlet Port + {00000000-0000-0000-0017-000000000232}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000115}, !- Handle + Coil Heating Water 8 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000233}, !- Inlet Port + {00000000-0000-0000-0017-000000000234}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000116}, !- Handle + Coil Heating Water 9 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000245}, !- Inlet Port + {00000000-0000-0000-0017-000000000246}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000117}, !- Handle + Coil Heating Water 9 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000247}, !- Inlet Port + {00000000-0000-0000-0017-000000000248}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000118}, !- Handle Coil Heating Water Baseboard 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000141}, !- Inlet Port {00000000-0000-0000-0017-000000000142}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000057}, !- Handle + {00000000-0000-0000-0052-000000000119}, !- Handle Coil Heating Water Baseboard 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000143}, !- Inlet Port {00000000-0000-0000-0017-000000000144}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000058}, !- Handle + {00000000-0000-0000-0052-000000000120}, !- Handle + Coil Heating Water Baseboard 10 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000291}, !- Inlet Port + {00000000-0000-0000-0017-000000000292}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000121}, !- Handle + Coil Heating Water Baseboard 10 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000293}, !- Inlet Port + {00000000-0000-0000-0017-000000000294}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000122}, !- Handle + Coil Heating Water Baseboard 11 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000329}, !- Inlet Port + {00000000-0000-0000-0017-000000000330}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000123}, !- Handle + Coil Heating Water Baseboard 11 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000331}, !- Inlet Port + {00000000-0000-0000-0017-000000000332}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000124}, !- Handle + Coil Heating Water Baseboard 12 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000343}, !- Inlet Port + {00000000-0000-0000-0017-000000000344}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000125}, !- Handle + Coil Heating Water Baseboard 12 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000345}, !- Inlet Port + {00000000-0000-0000-0017-000000000346}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000126}, !- Handle + Coil Heating Water Baseboard 13 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000357}, !- Inlet Port + {00000000-0000-0000-0017-000000000358}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000127}, !- Handle + Coil Heating Water Baseboard 13 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000359}, !- Inlet Port + {00000000-0000-0000-0017-000000000360}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000128}, !- Handle + Coil Heating Water Baseboard 14 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000371}, !- Inlet Port + {00000000-0000-0000-0017-000000000372}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000129}, !- Handle + Coil Heating Water Baseboard 14 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000373}, !- Inlet Port + {00000000-0000-0000-0017-000000000374}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000130}, !- Handle + Coil Heating Water Baseboard 15 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000385}, !- Inlet Port + {00000000-0000-0000-0017-000000000386}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000131}, !- Handle + Coil Heating Water Baseboard 15 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000387}, !- Inlet Port + {00000000-0000-0000-0017-000000000388}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000132}, !- Handle Coil Heating Water Baseboard 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000155}, !- Inlet Port {00000000-0000-0000-0017-000000000156}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000059}, !- Handle + {00000000-0000-0000-0052-000000000133}, !- Handle Coil Heating Water Baseboard 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000157}, !- Inlet Port {00000000-0000-0000-0017-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000060}, !- Handle + {00000000-0000-0000-0052-000000000134}, !- Handle Coil Heating Water Baseboard 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000169}, !- Inlet Port {00000000-0000-0000-0017-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000061}, !- Handle + {00000000-0000-0000-0052-000000000135}, !- Handle Coil Heating Water Baseboard 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000171}, !- Inlet Port {00000000-0000-0000-0017-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000062}, !- Handle + {00000000-0000-0000-0052-000000000136}, !- Handle Coil Heating Water Baseboard 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000183}, !- Inlet Port {00000000-0000-0000-0017-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000063}, !- Handle + {00000000-0000-0000-0052-000000000137}, !- Handle Coil Heating Water Baseboard 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000185}, !- Inlet Port {00000000-0000-0000-0017-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000064}, !- Handle + {00000000-0000-0000-0052-000000000138}, !- Handle Coil Heating Water Baseboard 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000197}, !- Inlet Port {00000000-0000-0000-0017-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000065}, !- Handle + {00000000-0000-0000-0052-000000000139}, !- Handle Coil Heating Water Baseboard 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000199}, !- Inlet Port {00000000-0000-0000-0017-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000066}, !- Handle + {00000000-0000-0000-0052-000000000140}, !- Handle + Coil Heating Water Baseboard 6 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000235}, !- Inlet Port + {00000000-0000-0000-0017-000000000236}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000141}, !- Handle + Coil Heating Water Baseboard 6 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000237}, !- Inlet Port + {00000000-0000-0000-0017-000000000238}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000142}, !- Handle + Coil Heating Water Baseboard 7 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000249}, !- Inlet Port + {00000000-0000-0000-0017-000000000250}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000143}, !- Handle + Coil Heating Water Baseboard 7 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000251}, !- Inlet Port + {00000000-0000-0000-0017-000000000252}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000144}, !- Handle + Coil Heating Water Baseboard 8 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000263}, !- Inlet Port + {00000000-0000-0000-0017-000000000264}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000145}, !- Handle + Coil Heating Water Baseboard 8 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000265}, !- Inlet Port + {00000000-0000-0000-0017-000000000266}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000146}, !- Handle + Coil Heating Water Baseboard 9 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000277}, !- Inlet Port + {00000000-0000-0000-0017-000000000278}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000147}, !- Handle + Coil Heating Water Baseboard 9 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000279}, !- Inlet Port + {00000000-0000-0000-0017-000000000280}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000148}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000067}, !- Handle + {00000000-0000-0000-0052-000000000149}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000068}, !- Handle + {00000000-0000-0000-0052-000000000150}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000069}, !- Handle + {00000000-0000-0000-0052-000000000151}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000107}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000070}, !- Handle + {00000000-0000-0000-0052-000000000152}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000071}, !- Handle + {00000000-0000-0000-0052-000000000153}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000099}, !- Inlet Port {00000000-0000-0000-0017-000000000100}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000072}, !- Handle + {00000000-0000-0000-0052-000000000154}, !- Handle Core_bottom WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000233}, !- Inlet Port - {00000000-0000-0000-0017-000000000234}; !- Outlet Port + {00000000-0000-0000-0017-000000000421}, !- Inlet Port + {00000000-0000-0000-0017-000000000422}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000073}, !- Handle + {00000000-0000-0000-0052-000000000155}, !- Handle Core_bottom WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000235}, !- Inlet Port - {00000000-0000-0000-0017-000000000236}; !- Outlet Port + {00000000-0000-0000-0017-000000000423}, !- Inlet Port + {00000000-0000-0000-0017-000000000424}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000074}, !- Handle + {00000000-0000-0000-0052-000000000156}, !- Handle Core_mid WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000237}, !- Inlet Port - {00000000-0000-0000-0017-000000000238}; !- Outlet Port + {00000000-0000-0000-0017-000000000425}, !- Inlet Port + {00000000-0000-0000-0017-000000000426}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000075}, !- Handle + {00000000-0000-0000-0052-000000000157}, !- Handle Core_mid WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000239}, !- Inlet Port - {00000000-0000-0000-0017-000000000240}; !- Outlet Port + {00000000-0000-0000-0017-000000000427}, !- Inlet Port + {00000000-0000-0000-0017-000000000428}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000076}, !- Handle + {00000000-0000-0000-0052-000000000158}, !- Handle Core_top WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000241}, !- Inlet Port - {00000000-0000-0000-0017-000000000242}; !- Outlet Port + {00000000-0000-0000-0017-000000000429}, !- Inlet Port + {00000000-0000-0000-0017-000000000430}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000077}, !- Handle + {00000000-0000-0000-0052-000000000159}, !- Handle Core_top WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000243}, !- Inlet Port - {00000000-0000-0000-0017-000000000244}; !- Outlet Port + {00000000-0000-0000-0017-000000000431}, !- Inlet Port + {00000000-0000-0000-0017-000000000432}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000078}, !- Handle + {00000000-0000-0000-0052-000000000160}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000079}, !- Handle + {00000000-0000-0000-0052-000000000161}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port {00000000-0000-0000-0017-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000080}, !- Handle + {00000000-0000-0000-0052-000000000162}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port {00000000-0000-0000-0017-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000081}, !- Handle + {00000000-0000-0000-0052-000000000163}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000061}, !- Inlet Port {00000000-0000-0000-0017-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000082}, !- Handle + {00000000-0000-0000-0052-000000000164}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000215}, !- Inlet Port - {00000000-0000-0000-0017-000000000216}; !- Outlet Port + {00000000-0000-0000-0017-000000000403}, !- Inlet Port + {00000000-0000-0000-0017-000000000404}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000083}, !- Handle + {00000000-0000-0000-0052-000000000165}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000210}, !- Inlet Port - {00000000-0000-0000-0017-000000000211}; !- Outlet Port + {00000000-0000-0000-0017-000000000398}, !- Inlet Port + {00000000-0000-0000-0017-000000000399}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000084}, !- Handle + {00000000-0000-0000-0052-000000000166}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000232}, !- Inlet Port - {00000000-0000-0000-0017-000000000213}; !- Outlet Port + {00000000-0000-0000-0017-000000000420}, !- Inlet Port + {00000000-0000-0000-0017-000000000401}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000085}, !- Handle + {00000000-0000-0000-0052-000000000167}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000207}, !- Inlet Port - {00000000-0000-0000-0017-000000000214}; !- Outlet Port + {00000000-0000-0000-0017-000000000395}, !- Inlet Port + {00000000-0000-0000-0017-000000000402}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000086}, !- Handle + {00000000-0000-0000-0052-000000000168}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000229}, !- Inlet Port - {00000000-0000-0000-0017-000000000209}; !- Outlet Port + {00000000-0000-0000-0017-000000000417}, !- Inlet Port + {00000000-0000-0000-0017-000000000397}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000087}, !- Handle + {00000000-0000-0000-0052-000000000169}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000245}, !- Inlet Port - {00000000-0000-0000-0017-000000000246}; !- Outlet Port + {00000000-0000-0000-0017-000000000433}, !- Inlet Port + {00000000-0000-0000-0017-000000000434}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000088}, !- Handle + {00000000-0000-0000-0052-000000000170}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000247}, !- Inlet Port - {00000000-0000-0000-0017-000000000248}; !- Outlet Port + {00000000-0000-0000-0017-000000000435}, !- Inlet Port + {00000000-0000-0000-0017-000000000436}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000089}, !- Handle + {00000000-0000-0000-0052-000000000171}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000249}, !- Inlet Port - {00000000-0000-0000-0017-000000000250}; !- Outlet Port + {00000000-0000-0000-0017-000000000437}, !- Inlet Port + {00000000-0000-0000-0017-000000000438}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000090}, !- Handle + {00000000-0000-0000-0052-000000000172}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000251}, !- Inlet Port - {00000000-0000-0000-0017-000000000252}; !- Outlet Port + {00000000-0000-0000-0017-000000000439}, !- Inlet Port + {00000000-0000-0000-0017-000000000440}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000091}, !- Handle + {00000000-0000-0000-0052-000000000173}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000253}, !- Inlet Port - {00000000-0000-0000-0017-000000000254}; !- Outlet Port + {00000000-0000-0000-0017-000000000441}, !- Inlet Port + {00000000-0000-0000-0017-000000000442}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000092}, !- Handle + {00000000-0000-0000-0052-000000000174}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000255}, !- Inlet Port - {00000000-0000-0000-0017-000000000256}; !- Outlet Port + {00000000-0000-0000-0017-000000000443}, !- Inlet Port + {00000000-0000-0000-0017-000000000444}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000093}, !- Handle + {00000000-0000-0000-0052-000000000175}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000257}, !- Inlet Port - {00000000-0000-0000-0017-000000000258}; !- Outlet Port + {00000000-0000-0000-0017-000000000445}, !- Inlet Port + {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000094}, !- Handle + {00000000-0000-0000-0052-000000000176}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000259}, !- Inlet Port - {00000000-0000-0000-0017-000000000260}; !- Outlet Port + {00000000-0000-0000-0017-000000000447}, !- Inlet Port + {00000000-0000-0000-0017-000000000448}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000095}, !- Handle + {00000000-0000-0000-0052-000000000177}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000261}, !- Inlet Port - {00000000-0000-0000-0017-000000000262}; !- Outlet Port + {00000000-0000-0000-0017-000000000449}, !- Inlet Port + {00000000-0000-0000-0017-000000000450}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000096}, !- Handle + {00000000-0000-0000-0052-000000000178}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000263}, !- Inlet Port - {00000000-0000-0000-0017-000000000264}; !- Outlet Port + {00000000-0000-0000-0017-000000000451}, !- Inlet Port + {00000000-0000-0000-0017-000000000452}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000097}, !- Handle + {00000000-0000-0000-0052-000000000179}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000265}, !- Inlet Port - {00000000-0000-0000-0017-000000000266}; !- Outlet Port + {00000000-0000-0000-0017-000000000453}, !- Inlet Port + {00000000-0000-0000-0017-000000000454}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000098}, !- Handle + {00000000-0000-0000-0052-000000000180}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000267}, !- Inlet Port - {00000000-0000-0000-0017-000000000268}; !- Outlet Port + {00000000-0000-0000-0017-000000000455}, !- Inlet Port + {00000000-0000-0000-0017-000000000456}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000099}, !- Handle + {00000000-0000-0000-0052-000000000181}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000269}, !- Inlet Port - {00000000-0000-0000-0017-000000000270}; !- Outlet Port + {00000000-0000-0000-0017-000000000457}, !- Inlet Port + {00000000-0000-0000-0017-000000000458}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000100}, !- Handle + {00000000-0000-0000-0052-000000000182}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000271}, !- Inlet Port - {00000000-0000-0000-0017-000000000272}; !- Outlet Port + {00000000-0000-0000-0017-000000000459}, !- Inlet Port + {00000000-0000-0000-0017-000000000460}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000101}, !- Handle + {00000000-0000-0000-0052-000000000183}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000273}, !- Inlet Port - {00000000-0000-0000-0017-000000000274}; !- Outlet Port + {00000000-0000-0000-0017-000000000461}, !- Inlet Port + {00000000-0000-0000-0017-000000000462}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000102}, !- Handle + {00000000-0000-0000-0052-000000000184}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000275}, !- Inlet Port - {00000000-0000-0000-0017-000000000276}; !- Outlet Port + {00000000-0000-0000-0017-000000000463}, !- Inlet Port + {00000000-0000-0000-0017-000000000464}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000103}, !- Handle + {00000000-0000-0000-0052-000000000185}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000277}, !- Inlet Port - {00000000-0000-0000-0017-000000000278}; !- Outlet Port + {00000000-0000-0000-0017-000000000465}, !- Inlet Port + {00000000-0000-0000-0017-000000000466}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000104}, !- Handle + {00000000-0000-0000-0052-000000000186}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000279}, !- Inlet Port - {00000000-0000-0000-0017-000000000280}; !- Outlet Port + {00000000-0000-0000-0017-000000000467}, !- Inlet Port + {00000000-0000-0000-0017-000000000468}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000105}, !- Handle + {00000000-0000-0000-0052-000000000187}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000281}, !- Inlet Port - {00000000-0000-0000-0017-000000000282}; !- Outlet Port + {00000000-0000-0000-0017-000000000469}, !- Inlet Port + {00000000-0000-0000-0017-000000000470}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000106}, !- Handle + {00000000-0000-0000-0052-000000000188}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000283}, !- Inlet Port - {00000000-0000-0000-0017-000000000284}; !- Outlet Port + {00000000-0000-0000-0017-000000000471}, !- Inlet Port + {00000000-0000-0000-0017-000000000472}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000107}, !- Handle + {00000000-0000-0000-0052-000000000189}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000285}, !- Inlet Port - {00000000-0000-0000-0017-000000000286}; !- Outlet Port + {00000000-0000-0000-0017-000000000473}, !- Inlet Port + {00000000-0000-0000-0017-000000000474}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000108}, !- Handle + {00000000-0000-0000-0052-000000000190}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000287}, !- Inlet Port - {00000000-0000-0000-0017-000000000288}; !- Outlet Port + {00000000-0000-0000-0017-000000000475}, !- Inlet Port + {00000000-0000-0000-0017-000000000476}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000109}, !- Handle + {00000000-0000-0000-0052-000000000191}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000289}, !- Inlet Port - {00000000-0000-0000-0017-000000000290}; !- Outlet Port + {00000000-0000-0000-0017-000000000477}, !- Inlet Port + {00000000-0000-0000-0017-000000000478}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000110}, !- Handle + {00000000-0000-0000-0052-000000000192}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000291}, !- Inlet Port - {00000000-0000-0000-0017-000000000292}; !- Outlet Port + {00000000-0000-0000-0017-000000000479}, !- Inlet Port + {00000000-0000-0000-0017-000000000480}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000111}, !- Handle + {00000000-0000-0000-0052-000000000193}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000112}, !- Handle + {00000000-0000-0000-0052-000000000194}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000057}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000113}, !- Handle + {00000000-0000-0000-0052-000000000195}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000230}, !- Inlet Port - {00000000-0000-0000-0017-000000000231}; !- Outlet Port + {00000000-0000-0000-0017-000000000418}, !- Inlet Port + {00000000-0000-0000-0017-000000000419}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000114}, !- Handle + {00000000-0000-0000-0052-000000000196}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000059}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000115}, !- Handle + {00000000-0000-0000-0052-000000000197}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000080}, !- Inlet Port {00000000-0000-0000-0017-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000116}, !- Handle + {00000000-0000-0000-0052-000000000198}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000082}, !- Inlet Port {00000000-0000-0000-0017-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000117}, !- Handle + {00000000-0000-0000-0052-000000000199}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000084}, !- Inlet Port {00000000-0000-0000-0017-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000118}, !- Handle + {00000000-0000-0000-0052-000000000200}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000101}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000119}, !- Handle + {00000000-0000-0000-0052-000000000201}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000120}, !- Handle + {00000000-0000-0000-0052-000000000202}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000105}, !- Inlet Port {00000000-0000-0000-0017-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000121}, !- Handle + {00000000-0000-0000-0052-000000000203}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000220}, !- Inlet Port - {00000000-0000-0000-0017-000000000221}; !- Outlet Port + {00000000-0000-0000-0017-000000000408}, !- Inlet Port + {00000000-0000-0000-0017-000000000409}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000122}, !- Handle + {00000000-0000-0000-0052-000000000204}, !- Handle Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000222}, !- Inlet Port - {00000000-0000-0000-0017-000000000223}; !- Outlet Port + {00000000-0000-0000-0017-000000000410}, !- Inlet Port + {00000000-0000-0000-0017-000000000411}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000123}, !- Handle + {00000000-0000-0000-0052-000000000205}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Port - {00000000-0000-0000-0017-000000000224}; !- Outlet Port + {00000000-0000-0000-0017-000000000400}, !- Inlet Port + {00000000-0000-0000-0017-000000000412}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000124}, !- Handle + {00000000-0000-0000-0052-000000000206}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000225}, !- Inlet Port - {00000000-0000-0000-0017-000000000226}; !- Outlet Port + {00000000-0000-0000-0017-000000000413}, !- Inlet Port + {00000000-0000-0000-0017-000000000414}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000125}, !- Handle + {00000000-0000-0000-0052-000000000207}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000227}, !- Inlet Port - {00000000-0000-0000-0017-000000000228}; !- Outlet Port + {00000000-0000-0000-0017-000000000415}, !- Inlet Port + {00000000-0000-0000-0017-000000000416}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000126}, !- Handle - Primary Boiler 361kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000208}, !- Handle + Primary Boiler 1845kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000127}, !- Handle - Primary Boiler 361kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000209}, !- Handle + Primary Boiler 1845kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000128}, !- Handle - Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000210}, !- Handle + Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Port {00000000-0000-0000-0017-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000129}, !- Handle - Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000211}, !- Handle + Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000109}, !- Inlet Port {00000000-0000-0000-0017-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000130}, !- Handle - Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000212}, !- Handle + Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000063}, !- Inlet Port {00000000-0000-0000-0017-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000131}, !- Handle - Primary Chiller WaterCooled Scroll 27tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000213}, !- Handle + Primary Chiller WaterCooled Rotary Screw 68tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000074}, !- Inlet Port {00000000-0000-0000-0017-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000132}, !- Handle + {00000000-0000-0000-0052-000000000214}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port {00000000-0000-0000-0017-000000000047}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000133}, !- Handle + {00000000-0000-0000-0052-000000000215}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000071}, !- Inlet Port {00000000-0000-0000-0017-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000134}, !- Handle + {00000000-0000-0000-0052-000000000216}, !- Handle Pump Variable Speed 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000097}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000135}, !- Handle - Secondary Boiler 361kBtu/hr 0.83 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000217}, !- Handle + Secondary Boiler 0kBtu/hr 0.85 AFUE Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000051}, !- Inlet Port {00000000-0000-0000-0017-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000136}, !- Handle - Secondary Boiler 361kBtu/hr 0.83 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000218}, !- Handle + Secondary Boiler 0kBtu/hr 0.85 AFUE Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000137}, !- Handle + {00000000-0000-0000-0052-000000000219}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000111}, !- Inlet Port {00000000-0000-0000-0017-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000138}, !- Handle + {00000000-0000-0000-0052-000000000220}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000113}, !- Inlet Port {00000000-0000-0000-0017-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000139}, !- Handle + {00000000-0000-0000-0052-000000000221}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000076}, !- Inlet Port {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000140}, !- Handle + {00000000-0000-0000-0052-000000000222}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000078}, !- Inlet Port {00000000-0000-0000-0017-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000141}, !- Handle + {00000000-0000-0000-0052-000000000223}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000229}, !- Inlet Port + {00000000-0000-0000-0017-000000000230}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000224}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000323}, !- Inlet Port + {00000000-0000-0000-0017-000000000324}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000225}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000135}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000142}, !- Handle + {00000000-0000-0000-0052-000000000226}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000209}, !- Inlet Port + {00000000-0000-0000-0017-000000000211}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000227}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000212}, !- Inlet Port + {00000000-0000-0000-0017-000000000210}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000228}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000226}, !- Inlet Port + {00000000-0000-0000-0017-000000000227}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000229}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000487}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000230}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000492}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000231}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000207}, !- Inlet Port + {00000000-0000-0000-0017-000000000228}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000232}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000221}, !- Inlet Port + {00000000-0000-0000-0017-000000000208}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000233}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000303}, !- Inlet Port + {00000000-0000-0000-0017-000000000305}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000234}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000306}, !- Inlet Port + {00000000-0000-0000-0017-000000000304}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000235}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000320}, !- Inlet Port + {00000000-0000-0000-0017-000000000321}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000236}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000493}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000237}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000498}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000238}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000301}, !- Inlet Port + {00000000-0000-0000-0017-000000000322}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000239}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000315}, !- Inlet Port + {00000000-0000-0000-0017-000000000302}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000240}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000117}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000143}, !- Handle + {00000000-0000-0000-0052-000000000241}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000144}, !- Handle + {00000000-0000-0000-0052-000000000242}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port {00000000-0000-0000-0017-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000145}, !- Handle + {00000000-0000-0000-0052-000000000243}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000293}; !- Outlet Port + {00000000-0000-0000-0017-000000000481}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000146}, !- Handle + {00000000-0000-0000-0052-000000000244}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000298}, !- Inlet Port + {00000000-0000-0000-0017-000000000486}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000147}, !- Handle + {00000000-0000-0000-0052-000000000245}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000115}, !- Inlet Port {00000000-0000-0000-0017-000000000134}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000148}, !- Handle + {00000000-0000-0000-0052-000000000246}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000127}, !- Inlet Port {00000000-0000-0000-0017-000000000116}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000149}, !- Handle + {00000000-0000-0000-0052-000000000247}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000488}, !- Inlet Port + {00000000-0000-0000-0017-000000000489}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000248}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000490}, !- Inlet Port + {00000000-0000-0000-0017-000000000491}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000249}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000494}, !- Inlet Port + {00000000-0000-0000-0017-000000000495}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000250}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000496}, !- Inlet Port + {00000000-0000-0000-0017-000000000497}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000251}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000294}, !- Inlet Port - {00000000-0000-0000-0017-000000000295}; !- Outlet Port + {00000000-0000-0000-0017-000000000482}, !- Inlet Port + {00000000-0000-0000-0017-000000000483}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000150}, !- Handle + {00000000-0000-0000-0052-000000000252}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000296}, !- Inlet Port - {00000000-0000-0000-0017-000000000297}; !- Outlet Port + {00000000-0000-0000-0017-000000000484}, !- Inlet Port + {00000000-0000-0000-0017-000000000485}; !- Outlet Port OS:OutputControl:ReportingTolerances, {00000000-0000-0000-0053-000000000001}, !- Handle @@ -5054,7 +8439,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0066-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0066-000000000024}, !- Work Efficiency Schedule Name {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -5077,8 +8462,8 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0017-000000000231}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000232}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000419}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000420}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000003}, !- Handle @@ -5113,20 +8498,20 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000221}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000222}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000409}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000410}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000225}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000412}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000413}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0017-000000000228}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000229}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000416}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000417}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0057-000000000001}, !- Handle @@ -5137,7 +8522,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000039}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000069}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5151,7 +8536,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5173,7 +8558,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000069}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000151}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5187,7 +8572,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5209,7 +8594,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000081}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000163}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5223,7 +8608,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000007}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5245,21 +8630,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000086}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000168}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000207}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000209}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000395}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000397}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000210}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000213}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000398}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000401}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5274,7 +8659,8 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0058-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000013}; !- HVAC Component + {00000000-0000-0000-0094-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000239}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000002}, !- Handle @@ -5282,11 +8668,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000003}, !- Handle - {00000000-0000-0000-0094-000000000013}; !- HVAC Component + {00000000-0000-0000-0094-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000240}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000004}, !- Handle - {00000000-0000-0000-0094-000000000018}; !- HVAC Component + {00000000-0000-0000-0094-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000347}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000005}, !- Handle @@ -5294,11 +8682,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000006}, !- Handle - {00000000-0000-0000-0094-000000000018}; !- HVAC Component + {00000000-0000-0000-0094-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000348}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000007}, !- Handle - {00000000-0000-0000-0094-000000000014}; !- HVAC Component + {00000000-0000-0000-0094-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000361}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000008}, !- Handle @@ -5306,11 +8696,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000009}, !- Handle - {00000000-0000-0000-0094-000000000014}; !- HVAC Component + {00000000-0000-0000-0094-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000362}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000010}, !- Handle - {00000000-0000-0000-0094-000000000015}; !- HVAC Component + {00000000-0000-0000-0094-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000333}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000011}, !- Handle @@ -5318,11 +8710,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000012}, !- Handle - {00000000-0000-0000-0094-000000000015}; !- HVAC Component + {00000000-0000-0000-0094-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000334}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000013}, !- Handle - {00000000-0000-0000-0094-000000000009}; !- HVAC Component + {00000000-0000-0000-0094-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000295}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000014}, !- Handle @@ -5330,7 +8724,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000015}, !- Handle - {00000000-0000-0000-0094-000000000009}; !- HVAC Component + {00000000-0000-0000-0094-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000296}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000016}, !- Handle @@ -5348,7 +8743,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000019}, !- Handle - {00000000-0000-0000-0094-000000000016}; !- HVAC Component + {00000000-0000-0000-0094-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000375}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000020}, !- Handle @@ -5356,11 +8752,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000021}, !- Handle - {00000000-0000-0000-0094-000000000016}; !- HVAC Component + {00000000-0000-0000-0094-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000376}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000022}, !- Handle - {00000000-0000-0000-0094-000000000010}; !- HVAC Component + {00000000-0000-0000-0094-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000281}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000023}, !- Handle @@ -5368,7 +8766,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000024}, !- Handle - {00000000-0000-0000-0094-000000000010}; !- HVAC Component + {00000000-0000-0000-0094-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000282}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000025}, !- Handle @@ -5384,7 +8783,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000028}, !- Handle - {00000000-0000-0000-0094-000000000017}; !- HVAC Component + {00000000-0000-0000-0094-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000389}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000029}, !- Handle @@ -5392,7 +8792,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000030}, !- Handle - {00000000-0000-0000-0094-000000000017}; !- HVAC Component + {00000000-0000-0000-0094-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000390}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000031}, !- Handle @@ -5422,7 +8823,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000037}, !- Handle - {00000000-0000-0000-0094-000000000011}; !- HVAC Component + {00000000-0000-0000-0094-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000253}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000038}, !- Handle @@ -5430,7 +8832,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000039}, !- Handle - {00000000-0000-0000-0094-000000000011}; !- HVAC Component + {00000000-0000-0000-0094-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000254}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000040}, !- Handle @@ -5460,7 +8863,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000046}, !- Handle - {00000000-0000-0000-0094-000000000012}; !- HVAC Component + {00000000-0000-0000-0094-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000267}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000047}, !- Handle @@ -5468,7 +8872,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000048}, !- Handle - {00000000-0000-0000-0094-000000000012}; !- HVAC Component + {00000000-0000-0000-0094-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000268}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000049}, !- Handle @@ -5501,8 +8906,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0059-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000214}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000215}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000402}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000403}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 446362.499964258, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -5526,9 +8931,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000045}, !- Inlet Node Name {00000000-0000-0000-0017-000000000046}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 200710.224008028, !- Rated Pump Head {Pa} + 210100.176008404, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5559,9 +8964,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000070}, !- Inlet Node Name {00000000-0000-0000-0017-000000000071}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 236900.664009476, !- Rated Pump Head {Pa} + 245116.872009805, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.865, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5592,9 +8997,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000095}, !- Inlet Node Name {00000000-0000-0000-0017-000000000096}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 210100.176008404, !- Rated Pump Head {Pa} + 215264.649608611, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.917, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -6391,6 +9796,33 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000037}, !- Handle + Schedule Day 10, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000038}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000039}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6399,7 +9831,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000038}, !- Handle + {00000000-0000-0000-0064-000000000041}, !- Handle Schedule Day 3, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6477,7 +9909,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000039}, !- Handle + {00000000-0000-0000-0064-000000000042}, !- Handle Schedule Day 4, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6555,7 +9987,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000040}, !- Handle + {00000000-0000-0000-0064-000000000043}, !- Handle Schedule Day 5, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6564,7 +9996,7 @@ OS:Schedule:Day, 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000041}, !- Handle + {00000000-0000-0000-0064-000000000044}, !- Handle Schedule Day 6, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6573,7 +10005,7 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000042}, !- Handle + {00000000-0000-0000-0064-000000000045}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6582,7 +10014,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000043}, !- Handle + {00000000-0000-0000-0064-000000000046}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6591,7 +10023,16 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000044}, !- Handle + {00000000-0000-0000-0064-000000000047}, !- Handle + Schedule Day 9, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000048}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6600,7 +10041,25 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000045}, !- Handle + {00000000-0000-0000-0064-000000000049}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000050}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000051}, !- Handle Supply Air Temp Default, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6609,7 +10068,7 @@ OS:Schedule:Day, 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000046}, !- Handle + {00000000-0000-0000-0064-000000000052}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6618,7 +10077,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000047}, !- Handle + {00000000-0000-0000-0064-000000000053}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6627,7 +10086,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000048}, !- Handle + {00000000-0000-0000-0064-000000000054}, !- Handle satCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6705,7 +10164,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000049}, !- Handle + {00000000-0000-0000-0064-000000000055}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6783,7 +10242,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000050}, !- Handle + {00000000-0000-0000-0064-000000000056}, !- Handle satCW Temp 1, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6861,7 +10320,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000051}, !- Handle + {00000000-0000-0000-0064-000000000057}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6939,7 +10398,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000052}, !- Handle + {00000000-0000-0000-0064-000000000058}, !- Handle sunCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7017,7 +10476,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000053}, !- Handle + {00000000-0000-0000-0064-000000000059}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7095,7 +10554,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000054}, !- Handle + {00000000-0000-0000-0064-000000000060}, !- Handle sunCW Temp 1, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7173,7 +10632,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000055}, !- Handle + {00000000-0000-0000-0064-000000000061}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7251,7 +10710,73 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000056}, !- Handle + {00000000-0000-0000-0064-000000000062}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000063}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000064}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000065}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000066}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000067}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000068}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7266,7 +10791,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000057}, !- Handle + {00000000-0000-0000-0064-000000000069}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7275,7 +10800,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000058}, !- Handle + {00000000-0000-0000-0064-000000000070}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7284,7 +10809,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000059}, !- Handle + {00000000-0000-0000-0064-000000000071}, !- Handle wkdCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7362,7 +10887,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000060}, !- Handle + {00000000-0000-0000-0064-000000000072}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7440,7 +10965,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000061}, !- Handle + {00000000-0000-0000-0064-000000000073}, !- Handle wkdCW Temp 1, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7518,7 +11043,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000062}, !- Handle + {00000000-0000-0000-0064-000000000074}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7826,9 +11351,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0066-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000042}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000045}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7845,9 +11370,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0066-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000046}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7863,6 +11388,82 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000015}, !- Handle + Schedule Rule 22, !- Name + {00000000-0000-0000-0066-000000000025}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0064-000000000047}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000016}, !- Handle + Schedule Rule 23, !- Name + {00000000-0000-0000-0066-000000000025}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0064-000000000037}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0064-000000000038}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0064-000000000039}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -7881,7 +11482,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000016}, !- Handle + {00000000-0000-0000-0065-000000000020}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -7900,7 +11501,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000017}, !- Handle + {00000000-0000-0000-0065-000000000021}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 2, !- Rule Order @@ -7919,7 +11520,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000018}, !- Handle + {00000000-0000-0000-0065-000000000022}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -7938,7 +11539,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000019}, !- Handle + {00000000-0000-0000-0065-000000000023}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -7957,7 +11558,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000020}, !- Handle + {00000000-0000-0000-0065-000000000024}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -7976,7 +11577,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000021}, !- Handle + {00000000-0000-0000-0065-000000000025}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -7995,11 +11596,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000022}, !- Handle + {00000000-0000-0000-0065-000000000026}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000048}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000054}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8014,11 +11615,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000023}, !- Handle + {00000000-0000-0000-0065-000000000027}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000056}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8033,11 +11634,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000024}, !- Handle + {00000000-0000-0000-0065-000000000028}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000052}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000058}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8052,11 +11653,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000025}, !- Handle + {00000000-0000-0000-0065-000000000029}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000060}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8071,11 +11672,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000026}, !- Handle + {00000000-0000-0000-0065-000000000030}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000059}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000071}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8090,11 +11691,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000027}, !- Handle + {00000000-0000-0000-0065-000000000031}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000061}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000073}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8124,13 +11725,13 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000003}, !- Handle CHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000038}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000004}, !- Handle CW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000039}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000005}, !- Handle @@ -8210,45 +11811,73 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000017}, !- Handle Schedule Ruleset 1, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000040}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000043}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000018}, !- Handle Schedule Ruleset 2, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000020}, !- Handle - Supply Air Temp, !- Name + Supply Air Temp 1, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000045}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000021}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000050}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000022}, !- Handle + Supply Air Temp, !- Name + {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000051}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000023}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000022}, !- Handle + {00000000-0000-0000-0066-000000000024}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000053}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000023}, !- Handle + {00000000-0000-0000-0066-000000000025}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000062}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000063}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000064}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000026}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000065}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000066}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000067}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000027}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000056}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000057}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000058}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000068}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000069}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000070}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0067-000000000001}, !- Handle @@ -8329,11 +11958,39 @@ OS:SetpointManager:OutdoorAirPretreat, 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0052-000000000144}, !- Reference Setpoint Node Name - {00000000-0000-0000-0052-000000000144}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0052-000000000145}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0052-000000000141}, !- Return Air Stream Node Name - {00000000-0000-0000-0052-000000000149}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000242}, !- Reference Setpoint Node Name + {00000000-0000-0000-0052-000000000242}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0052-000000000243}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0052-000000000225}, !- Return Air Stream Node Name + {00000000-0000-0000-0052-000000000251}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0068-000000000002}, !- Handle + Setpoint Manager Outdoor Air Pretreat 2, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0052-000000000228}, !- Reference Setpoint Node Name + {00000000-0000-0000-0052-000000000228}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0052-000000000229}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0052-000000000223}, !- Return Air Stream Node Name + {00000000-0000-0000-0052-000000000247}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0068-000000000003}, !- Handle + Setpoint Manager Outdoor Air Pretreat 3, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0052-000000000235}, !- Reference Setpoint Node Name + {00000000-0000-0000-0052-000000000235}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0052-000000000236}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0052-000000000224}, !- Return Air Stream Node Name + {00000000-0000-0000-0052-000000000249}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirReset, {00000000-0000-0000-0069-000000000001}, !- Handle @@ -8343,7 +12000,7 @@ OS:SetpointManager:OutdoorAirReset, -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0052-000000000081}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000163}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -8355,28 +12012,42 @@ OS:SetpointManager:Scheduled, Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000019}, !- Schedule Name - {00000000-0000-0000-0052-000000000086}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000168}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000003}, !- Schedule Name - {00000000-0000-0000-0052-000000000039}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000069}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000004}, !- Schedule Name - {00000000-0000-0000-0052-000000000069}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000151}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable + {00000000-0000-0000-0066-000000000022}, !- Schedule Name + {00000000-0000-0000-0052-000000000246}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0070-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable {00000000-0000-0000-0066-000000000020}, !- Schedule Name - {00000000-0000-0000-0052-000000000148}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000232}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0070-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0066-000000000021}, !- Schedule Name + {00000000-0000-0000-0052-000000000239}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0071-000000000001}, !- Handle @@ -8529,6 +12200,47 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0081-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -8568,19 +12280,60 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, {00000000-0000-0000-0082-000000000001}, !- Handle {00000000-0000-0000-0094-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8606,16 +12359,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000002}, !- Handle {00000000-0000-0000-0094-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8641,16 +12394,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000003}, !- Handle {00000000-0000-0000-0094-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8676,16 +12429,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000004}, !- Handle {00000000-0000-0000-0094-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8711,16 +12464,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000005}, !- Handle {00000000-0000-0000-0094-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8781,16 +12534,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000007}, !- Handle {00000000-0000-0000-0094-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8816,16 +12569,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000008}, !- Handle {00000000-0000-0000-0094-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8886,16 +12639,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000010}, !- Handle {00000000-0000-0000-0094-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8991,16 +12744,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000013}, !- Handle {00000000-0000-0000-0094-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9096,16 +12849,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000016}, !- Handle {00000000-0000-0000-0094-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -13326,7 +17079,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0066-000000000021}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0066-000000000023}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 8.03531559151522, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -13336,8 +17089,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000217}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000218}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000405}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000406}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -13360,8 +17113,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000001}, !- Handle Core_bottom WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000234}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000235}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000422}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000423}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13374,8 +17127,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000002}, !- Handle Core_mid WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000238}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000239}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000426}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000427}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13388,8 +17141,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000003}, !- Handle Core_top WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000242}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000243}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000430}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000431}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13402,8 +17155,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000246}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000247}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000434}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000435}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13416,8 +17169,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000250}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000251}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000438}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000439}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13430,8 +17183,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000254}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000255}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000442}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000443}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13444,8 +17197,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000258}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000259}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000446}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000447}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13458,8 +17211,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000262}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000263}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000450}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000451}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13472,8 +17225,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000266}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000267}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000454}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000455}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13486,8 +17239,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000270}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000271}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000458}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000459}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13500,8 +17253,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000274}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000275}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000462}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000463}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13514,8 +17267,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000278}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000279}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000466}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000467}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13528,8 +17281,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000282}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000283}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000470}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000471}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13542,8 +17295,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000286}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000287}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000474}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000475}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13556,8 +17309,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000290}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000291}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000478}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000479}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13850,28 +17603,88 @@ OS:ZoneHVAC:Baseboard:Convective:Water, OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 2, !- Name + Zone HVAC Baseboard Convective Water 10, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000002}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000003}, !- Handle - Zone HVAC Baseboard Convective Water 3, !- Name + Zone HVAC Baseboard Convective Water 11, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000003}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000004}, !- Handle - Zone HVAC Baseboard Convective Water 4, !- Name + Zone HVAC Baseboard Convective Water 12, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000004}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000005}, !- Handle - Zone HVAC Baseboard Convective Water 5, !- Name + Zone HVAC Baseboard Convective Water 13, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000005}; !- Heating Coil Name +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000006}, !- Handle + Zone HVAC Baseboard Convective Water 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000006}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000007}, !- Handle + Zone HVAC Baseboard Convective Water 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000007}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000008}, !- Handle + Zone HVAC Baseboard Convective Water 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000008}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000009}, !- Handle + Zone HVAC Baseboard Convective Water 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000009}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000010}, !- Handle + Zone HVAC Baseboard Convective Water 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000010}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000011}, !- Handle + Zone HVAC Baseboard Convective Water 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000011}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000012}, !- Handle + Zone HVAC Baseboard Convective Water 6, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000012}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000013}, !- Handle + Zone HVAC Baseboard Convective Water 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000013}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000014}, !- Handle + Zone HVAC Baseboard Convective Water 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000014}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000015}, !- Handle + Zone HVAC Baseboard Convective Water 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000015}; !- Heating Coil Name + OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name @@ -13895,12 +17708,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000009}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13911,12 +17724,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000008}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13927,12 +17740,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000010}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13943,12 +17756,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000011}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13974,59 +17787,159 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000012}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2020-Electricity-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2020-Electricity-CAN_AB_Calgary.osm index 5e0573a59c..8409372eb7 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2020-Electricity-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2020-Electricity-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0064-000000000023}, !- Object Name + {00000000-0000-0000-0064-000000000027}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.066608825093468, !- Feature Value 1 @@ -16,22 +16,98 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0011-000000000001}; !- Object Name + {00000000-0000-0000-0064-000000000025}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.066608825093468, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle + {00000000-0000-0000-0064-000000000026}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.066608825093468, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0011-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle {00000000-0000-0000-0011-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1, !- Name , !- Controller List Name - {00000000-0000-0000-0064-000000000023}, !- Availability Schedule + {00000000-0000-0000-0064-000000000025}, !- Availability Schedule {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name , !- Connector List Name + {00000000-0000-0000-0015-000000000139}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0015-000000000142}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000141}, !- Demand Side Inlet Node A + {00000000-0000-0000-0015-000000000140}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0064-000000000026}, !- Availability Schedule + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0015-000000000189}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0015-000000000192}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000191}, !- Demand Side Inlet Node A + {00000000-0000-0000-0015-000000000190}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv|, !- Name + , !- Controller List Name + {00000000-0000-0000-0064-000000000027}, !- Availability Schedule + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name {00000000-0000-0000-0015-000000000090}, !- Supply Side Inlet Node Name {00000000-0000-0000-0015-000000000093}, !- Demand Side Outlet Node Name {00000000-0000-0000-0015-000000000092}, !- Demand Side Inlet Node A @@ -51,10 +127,32 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0015-000000000104}, !- Mixed Air Node Name - {00000000-0000-0000-0015-000000000227}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0015-000000000228}, !- Relief Air Stream Node Name + {00000000-0000-0000-0015-000000000327}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0015-000000000328}, !- Relief Air Stream Node Name {00000000-0000-0000-0015-000000000108}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000002}, !- Handle + Air Loop HVAC Outdoor Air System 2, !- Name + {00000000-0000-0000-0020-000000000002}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0015-000000000154}, !- Mixed Air Node Name + {00000000-0000-0000-0015-000000000333}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0015-000000000334}, !- Relief Air Stream Node Name + {00000000-0000-0000-0015-000000000158}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0020-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0015-000000000204}, !- Mixed Air Node Name + {00000000-0000-0000-0015-000000000339}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0015-000000000340}, !- Relief Air Stream Node Name + {00000000-0000-0000-0015-000000000208}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -65,6 +163,26 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0015-000000000129}, !- Inlet Node Name 4 {00000000-0000-0000-0015-000000000135}; !- Inlet Node Name 5 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000002}, !- Handle + Air Loop HVAC Zone Mixer 2, !- Name + {00000000-0000-0000-0015-000000000144}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000161}, !- Inlet Node Name 1 + {00000000-0000-0000-0015-000000000167}, !- Inlet Node Name 2 + {00000000-0000-0000-0015-000000000173}, !- Inlet Node Name 3 + {00000000-0000-0000-0015-000000000179}, !- Inlet Node Name 4 + {00000000-0000-0000-0015-000000000185}; !- Inlet Node Name 5 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0015-000000000194}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000211}, !- Inlet Node Name 1 + {00000000-0000-0000-0015-000000000217}, !- Inlet Node Name 2 + {00000000-0000-0000-0015-000000000223}, !- Inlet Node Name 3 + {00000000-0000-0000-0015-000000000229}, !- Inlet Node Name 4 + {00000000-0000-0000-0015-000000000235}; !- Inlet Node Name 5 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -75,6 +193,26 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0015-000000000130}, !- Outlet Node Name 4 {00000000-0000-0000-0015-000000000136}; !- Outlet Node Name 5 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000002}, !- Handle + Air Loop HVAC Zone Splitter 2, !- Name + {00000000-0000-0000-0015-000000000143}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000162}, !- Outlet Node Name 1 + {00000000-0000-0000-0015-000000000168}, !- Outlet Node Name 2 + {00000000-0000-0000-0015-000000000174}, !- Outlet Node Name 3 + {00000000-0000-0000-0015-000000000180}, !- Outlet Node Name 4 + {00000000-0000-0000-0015-000000000186}; !- Outlet Node Name 5 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0015-000000000193}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000212}, !- Outlet Node Name 1 + {00000000-0000-0000-0015-000000000218}, !- Outlet Node Name 2 + {00000000-0000-0000-0015-000000000224}, !- Outlet Node Name 3 + {00000000-0000-0000-0015-000000000230}, !- Outlet Node Name 4 + {00000000-0000-0000-0015-000000000236}; !- Outlet Node Name 5 + OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -85,7 +223,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000011}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000114}, !- Air Outlet Node Name @@ -98,6 +236,132 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000187}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000188}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000213}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000214}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000219}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000220}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000225}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000226}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000231}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000009}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000232}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000237}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000010}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000238}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000119}, !- Air Inlet Node Name @@ -106,7 +370,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000012}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000120}, !- Air Outlet Node Name @@ -118,7 +382,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000125}, !- Air Inlet Node Name @@ -127,7 +391,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000004}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000013}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000126}, !- Air Outlet Node Name @@ -139,7 +403,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000131}, !- Air Inlet Node Name @@ -148,7 +412,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000005}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000014}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000132}, !- Air Outlet Node Name @@ -160,7 +424,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0015-000000000137}, !- Air Inlet Node Name @@ -169,7 +433,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0014-000000000006}, !- Reheat Coil Name + {00000000-0000-0000-0014-000000000015}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0015-000000000138}, !- Air Outlet Node Name @@ -180,6 +444,90 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000163}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000017}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000164}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000169}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000018}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000170}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000175}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000002}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000176}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0015-000000000181}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0014-000000000003}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0015-000000000182}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -194,21 +542,59 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0049-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0049-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0061-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0049-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0049-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000004}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000006}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Building, @@ -260,8 +646,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0011-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton, !- Name - 90258.9344239522, !- Reference Capacity {W} + Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton, !- Name + 227561.829243193, !- Reference Capacity {W} 4.51476251604621, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -304,9 +690,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0024-000000000005}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0024-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0024-000000000007}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0024-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -357,6 +743,42 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration +OS:Coil:Cooling:Water, + {00000000-0000-0000-0013-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0015-000000000146}, !- Water Inlet Node Name + {00000000-0000-0000-0015-000000000147}, !- Water Outlet Node Name + {00000000-0000-0000-0015-000000000155}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000152}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0013-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0015-000000000196}, !- Water Inlet Node Name + {00000000-0000-0000-0015-000000000197}, !- Water Outlet Node Name + {00000000-0000-0000-0015-000000000205}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000202}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000001}, !- Handle Coil Heating Electric 1, !- Name @@ -368,46 +790,154 @@ OS:Coil:Heating:Electric, OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000002}, !- Handle - Coil Heating Electric 2, !- Name + Coil Heating Electric 10, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 22253.7697792053, !- Nominal Capacity {W} + 10816.4048194885, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000003}, !- Handle - Coil Heating Electric 3, !- Name + Coil Heating Electric 11, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 13966.3979530334, !- Nominal Capacity {W} + 5886.98766231537, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000004}, !- Handle - Coil Heating Electric 4, !- Name + Coil Heating Electric 12, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 11994.1851139069, !- Nominal Capacity {W} + 11633.1632137299, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, {00000000-0000-0000-0014-000000000005}, !- Handle + Coil Heating Electric 13, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0015-000000000203}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000200}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000006}, !- Handle + Coil Heating Electric 14, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 20259.9005699158, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000007}, !- Handle + Coil Heating Electric 15, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 13369.1064834595, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000008}, !- Handle + Coil Heating Electric 16, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 11202.1511077881, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000009}, !- Handle + Coil Heating Electric 17, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 6669.87683773041, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000010}, !- Handle + Coil Heating Electric 18, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 12228.19647789, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000011}, !- Handle + Coil Heating Electric 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 11816.5915489197, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000012}, !- Handle + Coil Heating Electric 3, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 10983.2056045532, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000013}, !- Handle + Coil Heating Electric 4, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 9967.39811897278, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000014}, !- Handle Coil Heating Electric 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 6781.3985824585, !- Nominal Capacity {W} + 5375.52763223648, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name OS:Coil:Heating:Electric, - {00000000-0000-0000-0014-000000000006}, !- Handle + {00000000-0000-0000-0014-000000000015}, !- Handle Coil Heating Electric 6, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name , !- Efficiency - 13260.2620124817, !- Nominal Capacity {W} + 11305.0475120544, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000016}, !- Handle + Coil Heating Electric 7, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + , !- Nominal Capacity {W} + {00000000-0000-0000-0015-000000000153}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000150}; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000017}, !- Handle + Coil Heating Electric 8, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 17045.9644317627, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:Electric, + {00000000-0000-0000-0014-000000000018}, !- Handle + Coil Heating Electric 9, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + , !- Efficiency + 12589.4295215607, !- Nominal Capacity {W} , !- Air Inlet Node Name ; !- Air Outlet Node Name @@ -541,35 +1071,35 @@ OS:Connection, {00000000-0000-0000-0015-000000000019}, !- Handle {00000000-0000-0000-0091-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000020}, !- Target Object + {00000000-0000-0000-0050-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000020}, !- Handle {00000000-0000-0000-0091-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000025}, !- Target Object + {00000000-0000-0000-0050-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000021}, !- Handle {00000000-0000-0000-0091-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000021}, !- Target Object + {00000000-0000-0000-0050-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000022}, !- Handle {00000000-0000-0000-0091-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000022}, !- Target Object + {00000000-0000-0000-0050-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000023}, !- Handle {00000000-0000-0000-0091-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000016}, !- Target Object + {00000000-0000-0000-0050-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -583,14 +1113,14 @@ OS:Connection, {00000000-0000-0000-0015-000000000025}, !- Handle {00000000-0000-0000-0091-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000023}, !- Target Object + {00000000-0000-0000-0050-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000026}, !- Handle {00000000-0000-0000-0091-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000017}, !- Target Object + {00000000-0000-0000-0050-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -604,7 +1134,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000028}, !- Handle {00000000-0000-0000-0091-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000024}, !- Target Object + {00000000-0000-0000-0050-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -625,7 +1155,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000031}, !- Handle {00000000-0000-0000-0091-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000018}, !- Target Object + {00000000-0000-0000-0050-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -646,7 +1176,7 @@ OS:Connection, {00000000-0000-0000-0015-000000000034}, !- Handle {00000000-0000-0000-0091-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000019}, !- Target Object + {00000000-0000-0000-0050-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -667,19 +1197,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000037}, !- Handle {00000000-0000-0000-0055-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000038}, !- Target Object + {00000000-0000-0000-0050-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000038}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000099}, !- Target Object + {00000000-0000-0000-0050-000000000137}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000039}, !- Handle - {00000000-0000-0000-0050-000000000039}, !- Source Object + {00000000-0000-0000-0050-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000001}, !- Target Object 15; !- Inlet Port @@ -688,12 +1218,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000040}, !- Handle {00000000-0000-0000-0055-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000036}, !- Target Object + {00000000-0000-0000-0050-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000041}, !- Handle - {00000000-0000-0000-0050-000000000036}, !- Source Object + {00000000-0000-0000-0050-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000002}, !- Target Object 2; !- Inlet Port @@ -702,26 +1232,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000042}, !- Handle {00000000-0000-0000-0017-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000040}, !- Target Object + {00000000-0000-0000-0050-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000043}, !- Handle {00000000-0000-0000-0016-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000037}, !- Target Object + {00000000-0000-0000-0050-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000044}, !- Handle - {00000000-0000-0000-0050-000000000037}, !- Source Object + {00000000-0000-0000-0050-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000045}, !- Handle - {00000000-0000-0000-0050-000000000038}, !- Source Object + {00000000-0000-0000-0050-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000001}, !- Target Object 2; !- Inlet Port @@ -730,19 +1260,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000046}, !- Handle {00000000-0000-0000-0058-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000101}, !- Target Object + {00000000-0000-0000-0050-000000000139}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000047}, !- Handle - {00000000-0000-0000-0050-000000000101}, !- Source Object + {00000000-0000-0000-0050-000000000139}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000048}, !- Handle - {00000000-0000-0000-0050-000000000099}, !- Source Object + {00000000-0000-0000-0050-000000000137}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000001}, !- Target Object 15; !- Inlet Port @@ -751,12 +1281,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000049}, !- Handle {00000000-0000-0000-0011-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000100}, !- Target Object + {00000000-0000-0000-0050-000000000138}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000050}, !- Handle - {00000000-0000-0000-0050-000000000100}, !- Source Object + {00000000-0000-0000-0050-000000000138}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 3; !- Inlet Port @@ -765,12 +1295,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000051}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000105}, !- Target Object + {00000000-0000-0000-0050-000000000143}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000052}, !- Handle - {00000000-0000-0000-0050-000000000105}, !- Source Object + {00000000-0000-0000-0050-000000000143}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0011-000000000002}, !- Target Object 15; !- Inlet Port @@ -779,12 +1309,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000053}, !- Handle {00000000-0000-0000-0011-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000106}, !- Target Object + {00000000-0000-0000-0050-000000000144}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000054}, !- Handle - {00000000-0000-0000-0050-000000000106}, !- Source Object + {00000000-0000-0000-0050-000000000144}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 4; !- Inlet Port @@ -793,12 +1323,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000055}, !- Handle {00000000-0000-0000-0017-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000085}, !- Target Object + {00000000-0000-0000-0050-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000056}, !- Handle - {00000000-0000-0000-0050-000000000085}, !- Source Object + {00000000-0000-0000-0050-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000001}, !- Target Object 2; !- Inlet Port @@ -807,12 +1337,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000057}, !- Handle {00000000-0000-0000-0054-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000086}, !- Target Object + {00000000-0000-0000-0050-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000058}, !- Handle - {00000000-0000-0000-0050-000000000086}, !- Source Object + {00000000-0000-0000-0050-000000000124}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000001}, !- Target Object 5; !- Inlet Port @@ -821,12 +1351,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000059}, !- Handle {00000000-0000-0000-0016-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000087}, !- Target Object + {00000000-0000-0000-0050-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000060}, !- Handle - {00000000-0000-0000-0050-000000000087}, !- Source Object + {00000000-0000-0000-0050-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000002}, !- Target Object 2; !- Inlet Port @@ -835,26 +1365,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000061}, !- Handle {00000000-0000-0000-0054-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000039}, !- Target Object + {00000000-0000-0000-0050-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000062}, !- Handle {00000000-0000-0000-0055-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000046}, !- Target Object + {00000000-0000-0000-0050-000000000084}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000063}, !- Handle {00000000-0000-0000-0017-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000048}, !- Target Object + {00000000-0000-0000-0050-000000000086}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000064}, !- Handle - {00000000-0000-0000-0050-000000000047}, !- Source Object + {00000000-0000-0000-0050-000000000085}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000002}, !- Target Object 15; !- Inlet Port @@ -863,12 +1393,12 @@ OS:Connection, {00000000-0000-0000-0015-000000000065}, !- Handle {00000000-0000-0000-0055-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000044}, !- Target Object + {00000000-0000-0000-0050-000000000082}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000066}, !- Handle - {00000000-0000-0000-0050-000000000044}, !- Source Object + {00000000-0000-0000-0050-000000000082}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000004}, !- Target Object 2; !- Inlet Port @@ -877,26 +1407,26 @@ OS:Connection, {00000000-0000-0000-0015-000000000067}, !- Handle {00000000-0000-0000-0017-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000097}, !- Target Object + {00000000-0000-0000-0050-000000000135}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000068}, !- Handle {00000000-0000-0000-0016-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000045}, !- Target Object + {00000000-0000-0000-0050-000000000083}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000069}, !- Handle - {00000000-0000-0000-0050-000000000045}, !- Source Object + {00000000-0000-0000-0050-000000000083}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000070}, !- Handle - {00000000-0000-0000-0050-000000000046}, !- Source Object + {00000000-0000-0000-0050-000000000084}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0058-000000000002}, !- Target Object 2; !- Inlet Port @@ -905,19 +1435,19 @@ OS:Connection, {00000000-0000-0000-0015-000000000071}, !- Handle {00000000-0000-0000-0058-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000102}, !- Target Object + {00000000-0000-0000-0050-000000000140}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000072}, !- Handle - {00000000-0000-0000-0050-000000000102}, !- Source Object + {00000000-0000-0000-0050-000000000140}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000073}, !- Handle - {00000000-0000-0000-0050-000000000048}, !- Source Object + {00000000-0000-0000-0050-000000000086}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0023-000000000001}, !- Target Object 2; !- Inlet Port @@ -926,1099 +1456,1883 @@ OS:Connection, {00000000-0000-0000-0015-000000000074}, !- Handle {00000000-0000-0000-0023-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000049}, !- Target Object + {00000000-0000-0000-0050-000000000087}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0015-000000000075}, !- Handle - {00000000-0000-0000-0050-000000000049}, !- Source Object + {00000000-0000-0000-0050-000000000087}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000076}, !- Handle + {00000000-0000-0000-0017-000000000003}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000126}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000077}, !- Handle + {00000000-0000-0000-0050-000000000126}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000003}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000078}, !- Handle + {00000000-0000-0000-0054-000000000003}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000127}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000079}, !- Handle + {00000000-0000-0000-0050-000000000127}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000003}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000080}, !- Handle + {00000000-0000-0000-0016-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000128}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000081}, !- Handle + {00000000-0000-0000-0050-000000000128}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0054-000000000004}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000082}, !- Handle + {00000000-0000-0000-0054-000000000004}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000085}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000083}, !- Handle + {00000000-0000-0000-0050-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0011-000000000001}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000084}, !- Handle + {00000000-0000-0000-0011-000000000001}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0050-000000000136}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000085}, !- Handle + {00000000-0000-0000-0050-000000000136}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000086}, !- Handle + {00000000-0000-0000-0017-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000141}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000087}, !- Handle + {00000000-0000-0000-0050-000000000141}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0011-000000000002}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000088}, !- Handle + {00000000-0000-0000-0011-000000000002}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0050-000000000142}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000089}, !- Handle + {00000000-0000-0000-0050-000000000142}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000004}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000090}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000167}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000091}, !- Handle + {00000000-0000-0000-0050-000000000168}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000092}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000162}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000093}, !- Handle + {00000000-0000-0000-0050-000000000163}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000003}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000094}, !- Handle + {00000000-0000-0000-0050-000000000162}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000095}, !- Handle + {00000000-0000-0000-0004-000000000001}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000163}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000096}, !- Handle + {00000000-0000-0000-0050-000000000070}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000097}, !- Handle + {00000000-0000-0000-0013-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000072}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000098}, !- Handle + {00000000-0000-0000-0050-000000000072}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000099}, !- Handle + {00000000-0000-0000-0039-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000168}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000100}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000079}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000101}, !- Handle + {00000000-0000-0000-0050-000000000079}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000006}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000102}, !- Handle + {00000000-0000-0000-0013-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000071}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000103}, !- Handle + {00000000-0000-0000-0050-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000001}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000104}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000164}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000105}, !- Handle + {00000000-0000-0000-0050-000000000164}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000106}, !- Handle + {00000000-0000-0000-0050-000000000167}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000107}, !- Handle + {00000000-0000-0000-0039-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000147}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000108}, !- Handle + {00000000-0000-0000-0050-000000000147}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000109}, !- Handle + {00000000-0000-0000-0050-000000000037}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000110}, !- Handle + {00000000-0000-0000-0056-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000111}, !- Handle + {00000000-0000-0000-0050-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000112}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000113}, !- Handle + {00000000-0000-0000-0050-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000114}, !- Handle + {00000000-0000-0000-0006-000000000001}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000115}, !- Handle + {00000000-0000-0000-0050-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000116}, !- Handle + {00000000-0000-0000-0056-000000000042}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000117}, !- Handle + {00000000-0000-0000-0050-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000118}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000050}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000119}, !- Handle + {00000000-0000-0000-0050-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000120}, !- Handle + {00000000-0000-0000-0006-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000051}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000121}, !- Handle + {00000000-0000-0000-0050-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000122}, !- Handle + {00000000-0000-0000-0056-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000123}, !- Handle + {00000000-0000-0000-0050-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000124}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000125}, !- Handle + {00000000-0000-0000-0050-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000126}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000053}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000127}, !- Handle + {00000000-0000-0000-0050-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000128}, !- Handle + {00000000-0000-0000-0056-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000129}, !- Handle + {00000000-0000-0000-0050-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000130}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000054}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000131}, !- Handle + {00000000-0000-0000-0050-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000132}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000133}, !- Handle + {00000000-0000-0000-0050-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000134}, !- Handle + {00000000-0000-0000-0056-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000135}, !- Handle + {00000000-0000-0000-0050-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000136}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000137}, !- Handle + {00000000-0000-0000-0050-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000138}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000139}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0050-000000000153}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000140}, !- Handle + {00000000-0000-0000-0050-000000000154}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000141}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000148}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000142}, !- Handle + {00000000-0000-0000-0050-000000000149}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000143}, !- Handle + {00000000-0000-0000-0050-000000000148}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000144}, !- Handle + {00000000-0000-0000-0004-000000000002}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000149}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000145}, !- Handle + {00000000-0000-0000-0017-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000073}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000146}, !- Handle + {00000000-0000-0000-0050-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000147}, !- Handle + {00000000-0000-0000-0013-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0050-000000000075}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000148}, !- Handle + {00000000-0000-0000-0050-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000149}, !- Handle + {00000000-0000-0000-0039-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000154}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000150}, !- Handle + {00000000-0000-0000-0014-000000000016}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000081}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000151}, !- Handle + {00000000-0000-0000-0050-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000004}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000152}, !- Handle + {00000000-0000-0000-0013-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000074}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000153}, !- Handle + {00000000-0000-0000-0050-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000016}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000154}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000150}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000155}, !- Handle + {00000000-0000-0000-0050-000000000150}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0013-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000156}, !- Handle + {00000000-0000-0000-0050-000000000153}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0039-000000000001}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000157}, !- Handle + {00000000-0000-0000-0039-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0050-000000000145}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000158}, !- Handle + {00000000-0000-0000-0050-000000000145}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000159}, !- Handle + {00000000-0000-0000-0050-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000160}, !- Handle + {00000000-0000-0000-0056-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000024}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000161}, !- Handle + {00000000-0000-0000-0050-000000000024}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000162}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0050-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000163}, !- Handle + {00000000-0000-0000-0050-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000012}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000164}, !- Handle + {00000000-0000-0000-0006-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000165}, !- Handle + {00000000-0000-0000-0050-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000166}, !- Handle + {00000000-0000-0000-0056-000000000039}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000020}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000167}, !- Handle + {00000000-0000-0000-0050-000000000020}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000168}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0050-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000169}, !- Handle + {00000000-0000-0000-0050-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000013}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000170}, !- Handle + {00000000-0000-0000-0006-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000171}, !- Handle + {00000000-0000-0000-0050-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0056-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000172}, !- Handle + {00000000-0000-0000-0056-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000173}, !- Handle + {00000000-0000-0000-0050-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000174}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000175}, !- Handle + {00000000-0000-0000-0050-000000000062}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object + {00000000-0000-0000-0006-000000000014}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000076}, !- Handle - {00000000-0000-0000-0017-000000000003}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000088}, !- Target Object + {00000000-0000-0000-0015-000000000176}, !- Handle + {00000000-0000-0000-0006-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000063}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000077}, !- Handle - {00000000-0000-0000-0050-000000000088}, !- Source Object + {00000000-0000-0000-0015-000000000177}, !- Handle + {00000000-0000-0000-0050-000000000065}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000003}, !- Target Object + {00000000-0000-0000-0056-000000000022}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000078}, !- Handle - {00000000-0000-0000-0054-000000000003}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000089}, !- Target Object + {00000000-0000-0000-0015-000000000178}, !- Handle + {00000000-0000-0000-0056-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000018}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000079}, !- Handle - {00000000-0000-0000-0050-000000000089}, !- Source Object + {00000000-0000-0000-0015-000000000179}, !- Handle + {00000000-0000-0000-0050-000000000018}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object - 4; !- Inlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000080}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object - 2, !- Outlet Port - {00000000-0000-0000-0050-000000000090}, !- Target Object + {00000000-0000-0000-0015-000000000180}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0050-000000000064}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000081}, !- Handle - {00000000-0000-0000-0050-000000000090}, !- Source Object + {00000000-0000-0000-0015-000000000181}, !- Handle + {00000000-0000-0000-0050-000000000064}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0054-000000000004}, !- Target Object - 2; !- Inlet Port + {00000000-0000-0000-0006-000000000015}, !- Target Object + 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000082}, !- Handle - {00000000-0000-0000-0054-000000000004}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0050-000000000047}, !- Target Object + {00000000-0000-0000-0015-000000000182}, !- Handle + {00000000-0000-0000-0006-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000065}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000083}, !- Handle - {00000000-0000-0000-0050-000000000097}, !- Source Object + {00000000-0000-0000-0015-000000000183}, !- Handle + {00000000-0000-0000-0050-000000000039}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0011-000000000001}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0056-000000000013}, !- Target Object + 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000084}, !- Handle - {00000000-0000-0000-0011-000000000001}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0050-000000000098}, !- Target Object + {00000000-0000-0000-0015-000000000184}, !- Handle + {00000000-0000-0000-0056-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0050-000000000016}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000085}, !- Handle - {00000000-0000-0000-0050-000000000098}, !- Source Object + {00000000-0000-0000-0015-000000000185}, !- Handle + {00000000-0000-0000-0050-000000000016}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 3; !- Inlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000086}, !- Handle - {00000000-0000-0000-0017-000000000004}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0050-000000000103}, !- Target Object + {00000000-0000-0000-0015-000000000186}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000038}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000087}, !- Handle - {00000000-0000-0000-0050-000000000103}, !- Source Object + {00000000-0000-0000-0015-000000000187}, !- Handle + {00000000-0000-0000-0050-000000000038}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0011-000000000002}, !- Target Object - 17; !- Inlet Port + {00000000-0000-0000-0006-000000000002}, !- Target Object + 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000088}, !- Handle - {00000000-0000-0000-0011-000000000002}, !- Source Object - 18, !- Outlet Port - {00000000-0000-0000-0050-000000000104}, !- Target Object + {00000000-0000-0000-0015-000000000188}, !- Handle + {00000000-0000-0000-0006-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0050-000000000039}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000089}, !- Handle - {00000000-0000-0000-0050-000000000104}, !- Source Object - 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object - 4; !- Inlet Port - -OS:Connection, - {00000000-0000-0000-0015-000000000090}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000189}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000113}, !- Target Object + {00000000-0000-0000-0050-000000000160}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000091}, !- Handle - {00000000-0000-0000-0050-000000000114}, !- Source Object + {00000000-0000-0000-0015-000000000190}, !- Handle + {00000000-0000-0000-0050-000000000161}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000092}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000191}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000108}, !- Target Object + {00000000-0000-0000-0050-000000000155}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000093}, !- Handle - {00000000-0000-0000-0050-000000000109}, !- Source Object + {00000000-0000-0000-0015-000000000192}, !- Handle + {00000000-0000-0000-0050-000000000156}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000002}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000094}, !- Handle - {00000000-0000-0000-0050-000000000108}, !- Source Object + {00000000-0000-0000-0015-000000000193}, !- Handle + {00000000-0000-0000-0050-000000000155}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0005-000000000001}, !- Target Object + {00000000-0000-0000-0005-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000095}, !- Handle - {00000000-0000-0000-0004-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000194}, !- Handle + {00000000-0000-0000-0004-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000109}, !- Target Object + {00000000-0000-0000-0050-000000000156}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000096}, !- Handle - {00000000-0000-0000-0050-000000000040}, !- Source Object + {00000000-0000-0000-0015-000000000195}, !- Handle + {00000000-0000-0000-0017-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0050-000000000076}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000196}, !- Handle + {00000000-0000-0000-0050-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object + {00000000-0000-0000-0013-000000000003}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000097}, !- Handle - {00000000-0000-0000-0013-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000197}, !- Handle + {00000000-0000-0000-0013-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000042}, !- Target Object + {00000000-0000-0000-0050-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000098}, !- Handle - {00000000-0000-0000-0050-000000000042}, !- Source Object + {00000000-0000-0000-0015-000000000198}, !- Handle + {00000000-0000-0000-0050-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000002}, !- Target Object - 3; !- Inlet Port + 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000099}, !- Handle - {00000000-0000-0000-0039-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000199}, !- Handle + {00000000-0000-0000-0039-000000000005}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000114}, !- Target Object + {00000000-0000-0000-0050-000000000161}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000100}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000200}, !- Handle + {00000000-0000-0000-0014-000000000005}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000043}, !- Target Object + {00000000-0000-0000-0050-000000000080}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000101}, !- Handle - {00000000-0000-0000-0050-000000000043}, !- Source Object + {00000000-0000-0000-0015-000000000201}, !- Handle + {00000000-0000-0000-0050-000000000080}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000002}, !- Target Object + {00000000-0000-0000-0039-000000000005}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000102}, !- Handle - {00000000-0000-0000-0013-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000202}, !- Handle + {00000000-0000-0000-0013-000000000003}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000041}, !- Target Object + {00000000-0000-0000-0050-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000103}, !- Handle - {00000000-0000-0000-0050-000000000041}, !- Source Object + {00000000-0000-0000-0015-000000000203}, !- Handle + {00000000-0000-0000-0050-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object + {00000000-0000-0000-0014-000000000005}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000104}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000204}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000110}, !- Target Object + {00000000-0000-0000-0050-000000000157}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000105}, !- Handle - {00000000-0000-0000-0050-000000000110}, !- Source Object + {00000000-0000-0000-0015-000000000205}, !- Handle + {00000000-0000-0000-0050-000000000157}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0013-000000000001}, !- Target Object + {00000000-0000-0000-0013-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000106}, !- Handle - {00000000-0000-0000-0050-000000000113}, !- Source Object + {00000000-0000-0000-0015-000000000206}, !- Handle + {00000000-0000-0000-0050-000000000160}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0039-000000000001}, !- Target Object + {00000000-0000-0000-0039-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000107}, !- Handle - {00000000-0000-0000-0039-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000207}, !- Handle + {00000000-0000-0000-0039-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000107}, !- Target Object + {00000000-0000-0000-0050-000000000146}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000108}, !- Handle - {00000000-0000-0000-0050-000000000107}, !- Source Object + {00000000-0000-0000-0015-000000000208}, !- Handle + {00000000-0000-0000-0050-000000000146}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000109}, !- Handle - {00000000-0000-0000-0050-000000000027}, !- Source Object + {00000000-0000-0000-0015-000000000209}, !- Handle + {00000000-0000-0000-0050-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000016}, !- Target Object + {00000000-0000-0000-0056-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000110}, !- Handle - {00000000-0000-0000-0056-000000000018}, !- Source Object + {00000000-0000-0000-0015-000000000210}, !- Handle + {00000000-0000-0000-0056-000000000012}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000014}, !- Target Object + {00000000-0000-0000-0050-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000111}, !- Handle - {00000000-0000-0000-0050-000000000014}, !- Source Object + {00000000-0000-0000-0015-000000000211}, !- Handle + {00000000-0000-0000-0050-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000112}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000212}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000026}, !- Target Object + {00000000-0000-0000-0050-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000113}, !- Handle - {00000000-0000-0000-0050-000000000026}, !- Source Object + {00000000-0000-0000-0015-000000000213}, !- Handle + {00000000-0000-0000-0050-000000000040}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000001}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000114}, !- Handle - {00000000-0000-0000-0006-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000214}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000027}, !- Target Object + {00000000-0000-0000-0050-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000115}, !- Handle - {00000000-0000-0000-0050-000000000029}, !- Source Object + {00000000-0000-0000-0015-000000000215}, !- Handle + {00000000-0000-0000-0050-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000040}, !- Target Object + {00000000-0000-0000-0056-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000116}, !- Handle - {00000000-0000-0000-0056-000000000042}, !- Source Object + {00000000-0000-0000-0015-000000000216}, !- Handle + {00000000-0000-0000-0056-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000008}, !- Target Object + {00000000-0000-0000-0050-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000117}, !- Handle - {00000000-0000-0000-0050-000000000008}, !- Source Object + {00000000-0000-0000-0015-000000000217}, !- Handle + {00000000-0000-0000-0050-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000118}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000218}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000028}, !- Target Object + {00000000-0000-0000-0050-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000119}, !- Handle - {00000000-0000-0000-0050-000000000028}, !- Source Object + {00000000-0000-0000-0015-000000000219}, !- Handle + {00000000-0000-0000-0050-000000000042}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000120}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object + {00000000-0000-0000-0015-000000000220}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000029}, !- Target Object + {00000000-0000-0000-0050-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000121}, !- Handle - {00000000-0000-0000-0050-000000000031}, !- Source Object + {00000000-0000-0000-0015-000000000221}, !- Handle + {00000000-0000-0000-0050-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000031}, !- Target Object + {00000000-0000-0000-0056-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000122}, !- Handle - {00000000-0000-0000-0056-000000000033}, !- Source Object + {00000000-0000-0000-0015-000000000222}, !- Handle + {00000000-0000-0000-0056-000000000009}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000006}, !- Target Object + {00000000-0000-0000-0050-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000123}, !- Handle - {00000000-0000-0000-0050-000000000006}, !- Source Object + {00000000-0000-0000-0015-000000000223}, !- Handle + {00000000-0000-0000-0050-000000000026}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000124}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000224}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000030}, !- Target Object + {00000000-0000-0000-0050-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000125}, !- Handle - {00000000-0000-0000-0050-000000000030}, !- Source Object + {00000000-0000-0000-0015-000000000225}, !- Handle + {00000000-0000-0000-0050-000000000044}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000126}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object + {00000000-0000-0000-0015-000000000226}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000031}, !- Target Object + {00000000-0000-0000-0050-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000127}, !- Handle - {00000000-0000-0000-0050-000000000033}, !- Source Object + {00000000-0000-0000-0015-000000000227}, !- Handle + {00000000-0000-0000-0050-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000049}, !- Target Object + {00000000-0000-0000-0056-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000128}, !- Handle - {00000000-0000-0000-0056-000000000051}, !- Source Object + {00000000-0000-0000-0015-000000000228}, !- Handle + {00000000-0000-0000-0056-000000000021}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000010}, !- Target Object + {00000000-0000-0000-0050-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000129}, !- Handle - {00000000-0000-0000-0050-000000000010}, !- Source Object + {00000000-0000-0000-0015-000000000229}, !- Handle + {00000000-0000-0000-0050-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000130}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000230}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000032}, !- Target Object + {00000000-0000-0000-0050-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000131}, !- Handle - {00000000-0000-0000-0050-000000000032}, !- Source Object + {00000000-0000-0000-0015-000000000231}, !- Handle + {00000000-0000-0000-0050-000000000046}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object + {00000000-0000-0000-0006-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000132}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object + {00000000-0000-0000-0015-000000000232}, !- Handle + {00000000-0000-0000-0006-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000033}, !- Target Object + {00000000-0000-0000-0050-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000133}, !- Handle - {00000000-0000-0000-0050-000000000035}, !- Source Object + {00000000-0000-0000-0015-000000000233}, !- Handle + {00000000-0000-0000-0050-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0056-000000000052}, !- Target Object + {00000000-0000-0000-0056-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000134}, !- Handle - {00000000-0000-0000-0056-000000000054}, !- Source Object + {00000000-0000-0000-0015-000000000234}, !- Handle + {00000000-0000-0000-0056-000000000030}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000012}, !- Target Object + {00000000-0000-0000-0050-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000135}, !- Handle - {00000000-0000-0000-0050-000000000012}, !- Source Object + {00000000-0000-0000-0015-000000000235}, !- Handle + {00000000-0000-0000-0050-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000136}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000236}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000034}, !- Target Object + {00000000-0000-0000-0050-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000137}, !- Handle - {00000000-0000-0000-0050-000000000034}, !- Source Object + {00000000-0000-0000-0015-000000000237}, !- Handle + {00000000-0000-0000-0050-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object + {00000000-0000-0000-0006-000000000007}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000138}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object + {00000000-0000-0000-0015-000000000238}, !- Handle + {00000000-0000-0000-0006-000000000007}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000035}, !- Target Object + {00000000-0000-0000-0050-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000139}, !- Handle + {00000000-0000-0000-0015-000000000239}, !- Handle {00000000-0000-0000-0055-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000059}, !- Target Object + {00000000-0000-0000-0050-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000140}, !- Handle + {00000000-0000-0000-0015-000000000240}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0050-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000141}, !- Handle - {00000000-0000-0000-0050-000000000060}, !- Source Object + {00000000-0000-0000-0015-000000000241}, !- Handle + {00000000-0000-0000-0050-000000000098}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000003}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000142}, !- Handle + {00000000-0000-0000-0015-000000000242}, !- Handle {00000000-0000-0000-0055-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000057}, !- Target Object + {00000000-0000-0000-0050-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000143}, !- Handle - {00000000-0000-0000-0050-000000000057}, !- Source Object + {00000000-0000-0000-0015-000000000243}, !- Handle + {00000000-0000-0000-0050-000000000095}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000144}, !- Handle + {00000000-0000-0000-0015-000000000244}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000093}, !- Target Object + {00000000-0000-0000-0050-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000145}, !- Handle - {00000000-0000-0000-0050-000000000058}, !- Source Object + {00000000-0000-0000-0015-000000000245}, !- Handle + {00000000-0000-0000-0050-000000000096}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0055-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000146}, !- Handle - {00000000-0000-0000-0050-000000000059}, !- Source Object + {00000000-0000-0000-0015-000000000246}, !- Handle + {00000000-0000-0000-0050-000000000097}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000147}, !- Handle + {00000000-0000-0000-0015-000000000247}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000056}, !- Target Object + {00000000-0000-0000-0050-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000148}, !- Handle - {00000000-0000-0000-0050-000000000056}, !- Source Object + {00000000-0000-0000-0015-000000000248}, !- Handle + {00000000-0000-0000-0050-000000000094}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0017-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000149}, !- Handle + {00000000-0000-0000-0015-000000000249}, !- Handle {00000000-0000-0000-0050-000000000001}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0095-000000000001}, !- Target Object 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000150}, !- Handle + {00000000-0000-0000-0015-000000000250}, !- Handle {00000000-0000-0000-0095-000000000001}, !- Source Object 32, !- Outlet Port {00000000-0000-0000-0050-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000151}, !- Handle + {00000000-0000-0000-0015-000000000251}, !- Handle {00000000-0000-0000-0050-000000000002}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000152}, !- Handle + {00000000-0000-0000-0015-000000000252}, !- Handle {00000000-0000-0000-0017-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000091}, !- Target Object + {00000000-0000-0000-0050-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000153}, !- Handle - {00000000-0000-0000-0050-000000000091}, !- Source Object + {00000000-0000-0000-0015-000000000253}, !- Handle + {00000000-0000-0000-0050-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000154}, !- Handle + {00000000-0000-0000-0015-000000000254}, !- Handle {00000000-0000-0000-0054-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000092}, !- Target Object + {00000000-0000-0000-0050-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000155}, !- Handle - {00000000-0000-0000-0050-000000000092}, !- Source Object + {00000000-0000-0000-0015-000000000255}, !- Handle + {00000000-0000-0000-0050-000000000130}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000005}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000156}, !- Handle - {00000000-0000-0000-0050-000000000093}, !- Source Object + {00000000-0000-0000-0015-000000000256}, !- Handle + {00000000-0000-0000-0050-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000157}, !- Handle + {00000000-0000-0000-0015-000000000257}, !- Handle {00000000-0000-0000-0054-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000094}, !- Target Object + {00000000-0000-0000-0050-000000000132}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000158}, !- Handle - {00000000-0000-0000-0050-000000000094}, !- Source Object + {00000000-0000-0000-0015-000000000258}, !- Handle + {00000000-0000-0000-0050-000000000132}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000159}, !- Handle + {00000000-0000-0000-0015-000000000259}, !- Handle {00000000-0000-0000-0016-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000095}, !- Target Object + {00000000-0000-0000-0050-000000000133}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000160}, !- Handle - {00000000-0000-0000-0050-000000000095}, !- Source Object + {00000000-0000-0000-0015-000000000260}, !- Handle + {00000000-0000-0000-0050-000000000133}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000161}, !- Handle + {00000000-0000-0000-0015-000000000261}, !- Handle {00000000-0000-0000-0054-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000060}, !- Target Object + {00000000-0000-0000-0050-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000162}, !- Handle + {00000000-0000-0000-0015-000000000262}, !- Handle {00000000-0000-0000-0016-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0050-000000000096}, !- Target Object + {00000000-0000-0000-0050-000000000134}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000163}, !- Handle - {00000000-0000-0000-0050-000000000096}, !- Source Object + {00000000-0000-0000-0015-000000000263}, !- Handle + {00000000-0000-0000-0050-000000000134}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0054-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000164}, !- Handle + {00000000-0000-0000-0015-000000000264}, !- Handle {00000000-0000-0000-0054-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000058}, !- Target Object + {00000000-0000-0000-0050-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000165}, !- Handle + {00000000-0000-0000-0015-000000000265}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0050-000000000050}, !- Target Object + {00000000-0000-0000-0050-000000000088}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000166}, !- Handle - {00000000-0000-0000-0050-000000000050}, !- Source Object + {00000000-0000-0000-0015-000000000266}, !- Handle + {00000000-0000-0000-0050-000000000088}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000167}, !- Handle + {00000000-0000-0000-0015-000000000267}, !- Handle {00000000-0000-0000-0097-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000051}, !- Target Object + {00000000-0000-0000-0050-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000168}, !- Handle - {00000000-0000-0000-0050-000000000051}, !- Source Object + {00000000-0000-0000-0015-000000000268}, !- Handle + {00000000-0000-0000-0050-000000000089}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000169}, !- Handle + {00000000-0000-0000-0015-000000000269}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0050-000000000052}, !- Target Object + {00000000-0000-0000-0050-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000170}, !- Handle - {00000000-0000-0000-0050-000000000052}, !- Source Object + {00000000-0000-0000-0015-000000000270}, !- Handle + {00000000-0000-0000-0050-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000171}, !- Handle + {00000000-0000-0000-0015-000000000271}, !- Handle {00000000-0000-0000-0097-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000053}, !- Target Object + {00000000-0000-0000-0050-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000172}, !- Handle - {00000000-0000-0000-0050-000000000053}, !- Source Object + {00000000-0000-0000-0015-000000000272}, !- Handle + {00000000-0000-0000-0050-000000000091}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000173}, !- Handle + {00000000-0000-0000-0015-000000000273}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0050-000000000054}, !- Target Object + {00000000-0000-0000-0050-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000174}, !- Handle - {00000000-0000-0000-0050-000000000054}, !- Source Object + {00000000-0000-0000-0015-000000000274}, !- Handle + {00000000-0000-0000-0050-000000000092}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000175}, !- Handle + {00000000-0000-0000-0015-000000000275}, !- Handle {00000000-0000-0000-0097-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000055}, !- Target Object + {00000000-0000-0000-0050-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000176}, !- Handle - {00000000-0000-0000-0050-000000000055}, !- Source Object + {00000000-0000-0000-0015-000000000276}, !- Handle + {00000000-0000-0000-0050-000000000093}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000177}, !- Handle + {00000000-0000-0000-0015-000000000277}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000061}, !- Target Object + {00000000-0000-0000-0050-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000178}, !- Handle - {00000000-0000-0000-0050-000000000061}, !- Source Object + {00000000-0000-0000-0015-000000000278}, !- Handle + {00000000-0000-0000-0050-000000000099}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000179}, !- Handle + {00000000-0000-0000-0015-000000000279}, !- Handle {00000000-0000-0000-0097-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000062}, !- Target Object + {00000000-0000-0000-0050-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000180}, !- Handle - {00000000-0000-0000-0050-000000000062}, !- Source Object + {00000000-0000-0000-0015-000000000280}, !- Handle + {00000000-0000-0000-0050-000000000100}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000181}, !- Handle + {00000000-0000-0000-0015-000000000281}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0050-000000000063}, !- Target Object + {00000000-0000-0000-0050-000000000101}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000182}, !- Handle - {00000000-0000-0000-0050-000000000063}, !- Source Object + {00000000-0000-0000-0015-000000000282}, !- Handle + {00000000-0000-0000-0050-000000000101}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000183}, !- Handle + {00000000-0000-0000-0015-000000000283}, !- Handle {00000000-0000-0000-0097-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000064}, !- Target Object + {00000000-0000-0000-0050-000000000102}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000184}, !- Handle - {00000000-0000-0000-0050-000000000064}, !- Source Object + {00000000-0000-0000-0015-000000000284}, !- Handle + {00000000-0000-0000-0050-000000000102}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000185}, !- Handle + {00000000-0000-0000-0015-000000000285}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0050-000000000065}, !- Target Object + {00000000-0000-0000-0050-000000000103}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000186}, !- Handle - {00000000-0000-0000-0050-000000000065}, !- Source Object + {00000000-0000-0000-0015-000000000286}, !- Handle + {00000000-0000-0000-0050-000000000103}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000187}, !- Handle + {00000000-0000-0000-0015-000000000287}, !- Handle {00000000-0000-0000-0097-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000066}, !- Target Object + {00000000-0000-0000-0050-000000000104}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000188}, !- Handle - {00000000-0000-0000-0050-000000000066}, !- Source Object + {00000000-0000-0000-0015-000000000288}, !- Handle + {00000000-0000-0000-0050-000000000104}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000189}, !- Handle + {00000000-0000-0000-0015-000000000289}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0050-000000000067}, !- Target Object + {00000000-0000-0000-0050-000000000105}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000190}, !- Handle - {00000000-0000-0000-0050-000000000067}, !- Source Object + {00000000-0000-0000-0015-000000000290}, !- Handle + {00000000-0000-0000-0050-000000000105}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000191}, !- Handle + {00000000-0000-0000-0015-000000000291}, !- Handle {00000000-0000-0000-0097-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000068}, !- Target Object + {00000000-0000-0000-0050-000000000106}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000192}, !- Handle - {00000000-0000-0000-0050-000000000068}, !- Source Object + {00000000-0000-0000-0015-000000000292}, !- Handle + {00000000-0000-0000-0050-000000000106}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000193}, !- Handle + {00000000-0000-0000-0015-000000000293}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0050-000000000069}, !- Target Object + {00000000-0000-0000-0050-000000000107}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000194}, !- Handle - {00000000-0000-0000-0050-000000000069}, !- Source Object + {00000000-0000-0000-0015-000000000294}, !- Handle + {00000000-0000-0000-0050-000000000107}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000195}, !- Handle + {00000000-0000-0000-0015-000000000295}, !- Handle {00000000-0000-0000-0097-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000070}, !- Target Object + {00000000-0000-0000-0050-000000000108}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000196}, !- Handle - {00000000-0000-0000-0050-000000000070}, !- Source Object + {00000000-0000-0000-0015-000000000296}, !- Handle + {00000000-0000-0000-0050-000000000108}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 11; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000197}, !- Handle + {00000000-0000-0000-0015-000000000297}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0050-000000000071}, !- Target Object + {00000000-0000-0000-0050-000000000109}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000198}, !- Handle - {00000000-0000-0000-0050-000000000071}, !- Source Object + {00000000-0000-0000-0015-000000000298}, !- Handle + {00000000-0000-0000-0050-000000000109}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000199}, !- Handle + {00000000-0000-0000-0015-000000000299}, !- Handle {00000000-0000-0000-0097-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000072}, !- Target Object + {00000000-0000-0000-0050-000000000110}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000200}, !- Handle - {00000000-0000-0000-0050-000000000072}, !- Source Object + {00000000-0000-0000-0015-000000000300}, !- Handle + {00000000-0000-0000-0050-000000000110}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000201}, !- Handle + {00000000-0000-0000-0015-000000000301}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000073}, !- Target Object + {00000000-0000-0000-0050-000000000111}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000202}, !- Handle - {00000000-0000-0000-0050-000000000073}, !- Source Object + {00000000-0000-0000-0015-000000000302}, !- Handle + {00000000-0000-0000-0050-000000000111}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000203}, !- Handle + {00000000-0000-0000-0015-000000000303}, !- Handle {00000000-0000-0000-0097-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000074}, !- Target Object + {00000000-0000-0000-0050-000000000112}, !- Target Object 2; !- Inlet Port -OS:Connection, - {00000000-0000-0000-0015-000000000204}, !- Handle - {00000000-0000-0000-0050-000000000074}, !- Source Object +OS:Connection, + {00000000-0000-0000-0015-000000000304}, !- Handle + {00000000-0000-0000-0050-000000000112}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 13; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000205}, !- Handle + {00000000-0000-0000-0015-000000000305}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0050-000000000075}, !- Target Object + {00000000-0000-0000-0050-000000000113}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000206}, !- Handle - {00000000-0000-0000-0050-000000000075}, !- Source Object + {00000000-0000-0000-0015-000000000306}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000207}, !- Handle + {00000000-0000-0000-0015-000000000307}, !- Handle {00000000-0000-0000-0097-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000076}, !- Target Object + {00000000-0000-0000-0050-000000000114}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000208}, !- Handle - {00000000-0000-0000-0050-000000000076}, !- Source Object + {00000000-0000-0000-0015-000000000308}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000209}, !- Handle + {00000000-0000-0000-0015-000000000309}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0050-000000000077}, !- Target Object + {00000000-0000-0000-0050-000000000115}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000210}, !- Handle - {00000000-0000-0000-0050-000000000077}, !- Source Object + {00000000-0000-0000-0015-000000000310}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000211}, !- Handle + {00000000-0000-0000-0015-000000000311}, !- Handle {00000000-0000-0000-0097-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000078}, !- Target Object + {00000000-0000-0000-0050-000000000116}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000212}, !- Handle - {00000000-0000-0000-0050-000000000078}, !- Source Object + {00000000-0000-0000-0015-000000000312}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000213}, !- Handle + {00000000-0000-0000-0015-000000000313}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0050-000000000079}, !- Target Object + {00000000-0000-0000-0050-000000000117}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000214}, !- Handle - {00000000-0000-0000-0050-000000000079}, !- Source Object + {00000000-0000-0000-0015-000000000314}, !- Handle + {00000000-0000-0000-0050-000000000117}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000215}, !- Handle + {00000000-0000-0000-0015-000000000315}, !- Handle {00000000-0000-0000-0097-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000080}, !- Target Object + {00000000-0000-0000-0050-000000000118}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000216}, !- Handle - {00000000-0000-0000-0050-000000000080}, !- Source Object + {00000000-0000-0000-0015-000000000316}, !- Handle + {00000000-0000-0000-0050-000000000118}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000217}, !- Handle + {00000000-0000-0000-0015-000000000317}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0050-000000000081}, !- Target Object + {00000000-0000-0000-0050-000000000119}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000218}, !- Handle - {00000000-0000-0000-0050-000000000081}, !- Source Object + {00000000-0000-0000-0015-000000000318}, !- Handle + {00000000-0000-0000-0050-000000000119}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000219}, !- Handle + {00000000-0000-0000-0015-000000000319}, !- Handle {00000000-0000-0000-0097-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000082}, !- Target Object + {00000000-0000-0000-0050-000000000120}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000220}, !- Handle - {00000000-0000-0000-0050-000000000082}, !- Source Object + {00000000-0000-0000-0015-000000000320}, !- Handle + {00000000-0000-0000-0050-000000000120}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000221}, !- Handle + {00000000-0000-0000-0015-000000000321}, !- Handle {00000000-0000-0000-0017-000000000006}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0050-000000000083}, !- Target Object + {00000000-0000-0000-0050-000000000121}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000222}, !- Handle - {00000000-0000-0000-0050-000000000083}, !- Source Object + {00000000-0000-0000-0015-000000000322}, !- Handle + {00000000-0000-0000-0050-000000000121}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0097-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000223}, !- Handle + {00000000-0000-0000-0015-000000000323}, !- Handle {00000000-0000-0000-0097-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0050-000000000084}, !- Target Object + {00000000-0000-0000-0050-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000224}, !- Handle - {00000000-0000-0000-0050-000000000084}, !- Source Object + {00000000-0000-0000-0015-000000000324}, !- Handle + {00000000-0000-0000-0050-000000000122}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0016-000000000006}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000225}, !- Handle - {00000000-0000-0000-0050-000000000111}, !- Source Object + {00000000-0000-0000-0015-000000000325}, !- Handle + {00000000-0000-0000-0050-000000000165}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0043-000000000001}, !- Target Object + {00000000-0000-0000-0043-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000226}, !- Handle - {00000000-0000-0000-0043-000000000001}, !- Source Object + {00000000-0000-0000-0015-000000000326}, !- Handle + {00000000-0000-0000-0043-000000000003}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0050-000000000115}, !- Target Object + {00000000-0000-0000-0050-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000227}, !- Handle - {00000000-0000-0000-0050-000000000115}, !- Source Object + {00000000-0000-0000-0015-000000000327}, !- Handle + {00000000-0000-0000-0050-000000000173}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000228}, !- Handle + {00000000-0000-0000-0015-000000000328}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0050-000000000116}, !- Target Object + {00000000-0000-0000-0050-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000229}, !- Handle - {00000000-0000-0000-0050-000000000116}, !- Source Object + {00000000-0000-0000-0015-000000000329}, !- Handle + {00000000-0000-0000-0050-000000000174}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000003}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000330}, !- Handle + {00000000-0000-0000-0043-000000000003}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000166}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000331}, !- Handle + {00000000-0000-0000-0050-000000000151}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000332}, !- Handle + {00000000-0000-0000-0043-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000169}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000333}, !- Handle + {00000000-0000-0000-0050-000000000169}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000334}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000170}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000335}, !- Handle + {00000000-0000-0000-0050-000000000170}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0043-000000000001}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0015-000000000230}, !- Handle + {00000000-0000-0000-0015-000000000336}, !- Handle {00000000-0000-0000-0043-000000000001}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0050-000000000112}, !- Target Object + {00000000-0000-0000-0050-000000000152}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000337}, !- Handle + {00000000-0000-0000-0050-000000000158}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000338}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0050-000000000171}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000339}, !- Handle + {00000000-0000-0000-0050-000000000171}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000340}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0050-000000000172}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000341}, !- Handle + {00000000-0000-0000-0050-000000000172}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0043-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0015-000000000342}, !- Handle + {00000000-0000-0000-0043-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0050-000000000159}, !- Target Object 2; !- Inlet Port OS:Connector:Mixer, @@ -2033,7 +3347,9 @@ OS:Connector:Mixer, {00000000-0000-0000-0016-000000000002}, !- Handle Connector Mixer 2, !- Name {00000000-0000-0000-0015-000000000043}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000098}; !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000098}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000148}, !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000198}; !- Inlet Branch Name 3 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000003}, !- Handle @@ -2052,30 +3368,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0016-000000000005}, !- Handle Connector Mixer 5, !- Name - {00000000-0000-0000-0015-000000000159}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000151}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000155}; !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000259}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000251}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000255}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0016-000000000006}, !- Handle Connector Mixer 6, !- Name - {00000000-0000-0000-0015-000000000162}, !- Outlet Branch Name - {00000000-0000-0000-0015-000000000158}, !- Inlet Branch Name 1 - {00000000-0000-0000-0015-000000000168}, !- Inlet Branch Name 2 - {00000000-0000-0000-0015-000000000172}, !- Inlet Branch Name 3 - {00000000-0000-0000-0015-000000000176}, !- Inlet Branch Name 4 - {00000000-0000-0000-0015-000000000180}, !- Inlet Branch Name 5 - {00000000-0000-0000-0015-000000000184}, !- Inlet Branch Name 6 - {00000000-0000-0000-0015-000000000188}, !- Inlet Branch Name 7 - {00000000-0000-0000-0015-000000000192}, !- Inlet Branch Name 8 - {00000000-0000-0000-0015-000000000196}, !- Inlet Branch Name 9 - {00000000-0000-0000-0015-000000000200}, !- Inlet Branch Name 10 - {00000000-0000-0000-0015-000000000204}, !- Inlet Branch Name 11 - {00000000-0000-0000-0015-000000000208}, !- Inlet Branch Name 12 - {00000000-0000-0000-0015-000000000212}, !- Inlet Branch Name 13 - {00000000-0000-0000-0015-000000000216}, !- Inlet Branch Name 14 - {00000000-0000-0000-0015-000000000220}, !- Inlet Branch Name 15 - {00000000-0000-0000-0015-000000000224}; !- Inlet Branch Name 16 + {00000000-0000-0000-0015-000000000262}, !- Outlet Branch Name + {00000000-0000-0000-0015-000000000258}, !- Inlet Branch Name 1 + {00000000-0000-0000-0015-000000000268}, !- Inlet Branch Name 2 + {00000000-0000-0000-0015-000000000272}, !- Inlet Branch Name 3 + {00000000-0000-0000-0015-000000000276}, !- Inlet Branch Name 4 + {00000000-0000-0000-0015-000000000280}, !- Inlet Branch Name 5 + {00000000-0000-0000-0015-000000000284}, !- Inlet Branch Name 6 + {00000000-0000-0000-0015-000000000288}, !- Inlet Branch Name 7 + {00000000-0000-0000-0015-000000000292}, !- Inlet Branch Name 8 + {00000000-0000-0000-0015-000000000296}, !- Inlet Branch Name 9 + {00000000-0000-0000-0015-000000000300}, !- Inlet Branch Name 10 + {00000000-0000-0000-0015-000000000304}, !- Inlet Branch Name 11 + {00000000-0000-0000-0015-000000000308}, !- Inlet Branch Name 12 + {00000000-0000-0000-0015-000000000312}, !- Inlet Branch Name 13 + {00000000-0000-0000-0015-000000000316}, !- Inlet Branch Name 14 + {00000000-0000-0000-0015-000000000320}, !- Inlet Branch Name 15 + {00000000-0000-0000-0015-000000000324}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000001}, !- Handle @@ -2089,7 +3405,9 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000002}, !- Handle Connector Splitter 2, !- Name {00000000-0000-0000-0015-000000000041}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000042}; !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000042}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000145}, !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000195}; !- Outlet Branch Name 3 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000003}, !- Handle @@ -2108,30 +3426,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0017-000000000005}, !- Handle Connector Splitter 5, !- Name - {00000000-0000-0000-0015-000000000148}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000140}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000152}; !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000248}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000240}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000252}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0017-000000000006}, !- Handle Connector Splitter 6, !- Name - {00000000-0000-0000-0015-000000000143}, !- Inlet Branch Name - {00000000-0000-0000-0015-000000000144}, !- Outlet Branch Name 1 - {00000000-0000-0000-0015-000000000165}, !- Outlet Branch Name 2 - {00000000-0000-0000-0015-000000000169}, !- Outlet Branch Name 3 - {00000000-0000-0000-0015-000000000173}, !- Outlet Branch Name 4 - {00000000-0000-0000-0015-000000000177}, !- Outlet Branch Name 5 - {00000000-0000-0000-0015-000000000181}, !- Outlet Branch Name 6 - {00000000-0000-0000-0015-000000000185}, !- Outlet Branch Name 7 - {00000000-0000-0000-0015-000000000189}, !- Outlet Branch Name 8 - {00000000-0000-0000-0015-000000000193}, !- Outlet Branch Name 9 - {00000000-0000-0000-0015-000000000197}, !- Outlet Branch Name 10 - {00000000-0000-0000-0015-000000000201}, !- Outlet Branch Name 11 - {00000000-0000-0000-0015-000000000205}, !- Outlet Branch Name 12 - {00000000-0000-0000-0015-000000000209}, !- Outlet Branch Name 13 - {00000000-0000-0000-0015-000000000213}, !- Outlet Branch Name 14 - {00000000-0000-0000-0015-000000000217}, !- Outlet Branch Name 15 - {00000000-0000-0000-0015-000000000221}; !- Outlet Branch Name 16 + {00000000-0000-0000-0015-000000000243}, !- Inlet Branch Name + {00000000-0000-0000-0015-000000000244}, !- Outlet Branch Name 1 + {00000000-0000-0000-0015-000000000265}, !- Outlet Branch Name 2 + {00000000-0000-0000-0015-000000000269}, !- Outlet Branch Name 3 + {00000000-0000-0000-0015-000000000273}, !- Outlet Branch Name 4 + {00000000-0000-0000-0015-000000000277}, !- Outlet Branch Name 5 + {00000000-0000-0000-0015-000000000281}, !- Outlet Branch Name 6 + {00000000-0000-0000-0015-000000000285}, !- Outlet Branch Name 7 + {00000000-0000-0000-0015-000000000289}, !- Outlet Branch Name 8 + {00000000-0000-0000-0015-000000000293}, !- Outlet Branch Name 9 + {00000000-0000-0000-0015-000000000297}, !- Outlet Branch Name 10 + {00000000-0000-0000-0015-000000000301}, !- Outlet Branch Name 11 + {00000000-0000-0000-0015-000000000305}, !- Outlet Branch Name 12 + {00000000-0000-0000-0015-000000000309}, !- Outlet Branch Name 13 + {00000000-0000-0000-0015-000000000313}, !- Outlet Branch Name 14 + {00000000-0000-0000-0015-000000000317}, !- Outlet Branch Name 15 + {00000000-0000-0000-0015-000000000321}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0018-000000000001}, !- Handle @@ -2390,6 +3708,20 @@ OS:Controller:MechanicalVentilation, , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0019-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0019-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + OS:Controller:OutdoorAir, {00000000-0000-0000-0020-000000000001}, !- Handle Controller Outdoor Air 1, !- Name @@ -2408,7 +3740,7 @@ OS:Controller:OutdoorAir, , !- Economizer Minimum Limit Dry-Bulb Temperature {C} NoLockout, !- Lockout Type FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0064-000000000023}, !- Minimum Outdoor Air Schedule Name + {00000000-0000-0000-0064-000000000027}, !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name {00000000-0000-0000-0019-000000000001}, !- Controller Mechanical Ventilation @@ -2420,6 +3752,66 @@ OS:Controller:OutdoorAir, BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type InterlockedWithMechanicalCooling; !- Economizer Operation Staging +OS:Controller:OutdoorAir, + {00000000-0000-0000-0020-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0064-000000000025}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0019-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0020-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0064-000000000026}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0019-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + OS:Controller:WaterCoil, {00000000-0000-0000-0021-000000000001}, !- Handle Controller Water Coil 1, !- Name @@ -2433,6 +3825,32 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} +OS:Controller:WaterCoil, + {00000000-0000-0000-0021-000000000002}, !- Handle + Controller Water Coil 2, !- Name + {00000000-0000-0000-0013-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0021-000000000003}, !- Handle + Controller Water Coil 3, !- Name + {00000000-0000-0000-0013-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + OS:ConvergenceLimits, {00000000-0000-0000-0022-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -2445,7 +3863,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0015-000000000074}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 1433.2615779667, !- Fan Power at Design Air Flow Rate {W} + 3613.55502973381, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -2536,6 +3954,34 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0024-000000000005}, !- Handle + WaterCooled_Screw_CAPFT_NECB2011, !- Name + 0.812998, !- Coefficient1 Constant + -0.0142532, !- Coefficient2 x + -0.00161799, !- Coefficient3 x**2 + 0.0263844, !- Coefficient4 y + -0.00091543, !- Coefficient5 y**2 + 0.00169601, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0024-000000000006}, !- Handle + WaterCooled_Screw_EIRFT_NECB2011, !- Name + 0.638103, !- Coefficient1 Constant + 0.00630158, !- Coefficient2 x + 0.00092327, !- Coefficient3 x**2 + -0.00455294, !- Coefficient4 y + 0.000825682, !- Coefficient5 y**2 + -0.00156152, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0024-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -2549,7 +3995,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0024-000000000006}, !- Handle + {00000000-0000-0000-0024-000000000008}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -2602,6 +4048,15 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0026-000000000003}, !- Handle + WaterCooled_Screw_EIRFPLR_NECB2011, !- Name + 0.330188, !- Coefficient1 Constant + 0.235543, !- Coefficient2 x + 0.460708, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0026-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -2763,7 +4218,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__ClgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_ClgSch0, !- Name {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2771,7 +4226,23 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0034-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__HtgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0064-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0034-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0064-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0034-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_HtgSch0, !- Name {00000000-0000-0000-0064-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -2779,41 +4250,115 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0035-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}<23.9 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}>1.7, !- Program Line 1 - SET {9fd289da-fd91-429b-b47b-988b8c6223d9} = 29.4, !- Program Line 2 - SET {de4ab440-b26b-49eb-ad23-0e9c46a752f9} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}<23.9 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}>1.7, !- Program Line 4 - SET {9fd289da-fd91-429b-b47b-988b8c6223d9} = 29.4, !- Program Line 5 - SET {de4ab440-b26b-49eb-ad23-0e9c46a752f9} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}<23.9 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}>1.7, !- Program Line 7 - SET {9fd289da-fd91-429b-b47b-988b8c6223d9} = 29.4, !- Program Line 8 - SET {de4ab440-b26b-49eb-ad23-0e9c46a752f9} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}<23.9 && {9392619e-ab07-49b2-a07e-7daf97fed2f3}>1.7, !- Program Line 10 - SET {9fd289da-fd91-429b-b47b-988b8c6223d9} = 29.4, !- Program Line 11 - SET {de4ab440-b26b-49eb-ad23-0e9c46a752f9} = 15.6, !- Program Line 12 + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {e11bfa6e-d0d5-439a-9228-e5574c024108}<23.9 && {e11bfa6e-d0d5-439a-9228-e5574c024108}>1.7, !- Program Line 1 + SET {403d8659-d7ce-490d-acbe-4f4a3b2f4045} = 29.4, !- Program Line 2 + SET {f7afcdf1-e43c-4566-80e8-0b817575e9d3} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {e11bfa6e-d0d5-439a-9228-e5574c024108}<23.9 && {e11bfa6e-d0d5-439a-9228-e5574c024108}>1.7, !- Program Line 4 + SET {403d8659-d7ce-490d-acbe-4f4a3b2f4045} = 29.4, !- Program Line 5 + SET {f7afcdf1-e43c-4566-80e8-0b817575e9d3} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {e11bfa6e-d0d5-439a-9228-e5574c024108}<23.9 && {e11bfa6e-d0d5-439a-9228-e5574c024108}>1.7, !- Program Line 7 + SET {403d8659-d7ce-490d-acbe-4f4a3b2f4045} = 29.4, !- Program Line 8 + SET {f7afcdf1-e43c-4566-80e8-0b817575e9d3} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {e11bfa6e-d0d5-439a-9228-e5574c024108}<23.9 && {e11bfa6e-d0d5-439a-9228-e5574c024108}>1.7, !- Program Line 10 + SET {403d8659-d7ce-490d-acbe-4f4a3b2f4045} = 29.4, !- Program Line 11 + SET {f7afcdf1-e43c-4566-80e8-0b817575e9d3} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {403d8659-d7ce-490d-acbe-4f4a3b2f4045} = NULL, !- Program Line 14 + SET {f7afcdf1-e43c-4566-80e8-0b817575e9d3} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0035-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {3ffe55b4-bed8-48f3-9db4-efd7d6274895}<23.9 && {3ffe55b4-bed8-48f3-9db4-efd7d6274895}>1.7, !- Program Line 1 + SET {68a59bb7-d36d-4eef-9176-c5b09fd06f6c} = 29.4, !- Program Line 2 + SET {5a57da6c-facd-401c-a421-88ebb0c05301} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {3ffe55b4-bed8-48f3-9db4-efd7d6274895}<23.9 && {3ffe55b4-bed8-48f3-9db4-efd7d6274895}>1.7, !- Program Line 4 + SET {68a59bb7-d36d-4eef-9176-c5b09fd06f6c} = 29.4, !- Program Line 5 + SET {5a57da6c-facd-401c-a421-88ebb0c05301} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {3ffe55b4-bed8-48f3-9db4-efd7d6274895}<23.9 && {3ffe55b4-bed8-48f3-9db4-efd7d6274895}>1.7, !- Program Line 7 + SET {68a59bb7-d36d-4eef-9176-c5b09fd06f6c} = 29.4, !- Program Line 8 + SET {5a57da6c-facd-401c-a421-88ebb0c05301} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {3ffe55b4-bed8-48f3-9db4-efd7d6274895}<23.9 && {3ffe55b4-bed8-48f3-9db4-efd7d6274895}>1.7, !- Program Line 10 + SET {68a59bb7-d36d-4eef-9176-c5b09fd06f6c} = 29.4, !- Program Line 11 + SET {5a57da6c-facd-401c-a421-88ebb0c05301} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {9fd289da-fd91-429b-b47b-988b8c6223d9} = NULL, !- Program Line 14 - SET {de4ab440-b26b-49eb-ad23-0e9c46a752f9} = NULL, !- Program Line 15 + SET {68a59bb7-d36d-4eef-9176-c5b09fd06f6c} = NULL, !- Program Line 14 + SET {5a57da6c-facd-401c-a421-88ebb0c05301} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0035-000000000001}; !- Program Name 1 +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0036-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_e_sc_c_chw_ssf_vv_zh_b_e_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0035-000000000002}; !- Program Name 1 + OS:EnergyManagementSystem:Sensor, {00000000-0000-0000-0037-000000000001}, !- Handle OAT, !- Name Environment, !- Output Variable or Output Meter Index Key Name Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name -OS:Facility, - {00000000-0000-0000-0038-000000000001}; !- Handle +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0037-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + +OS:Facility, + {00000000-0000-0000-0038-000000000001}; !- Handle + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000156}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000157}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000206}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000207}, !- Air Outlet Node Name + ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000001}, !- Handle + {00000000-0000-0000-0039-000000000003}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -2834,8 +4379,29 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0039-000000000002}, !- Handle - Sys6 Supply Fan, !- Name + {00000000-0000-0000-0039-000000000004}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000151}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000149}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000005}, !- Handle + Sys6 Supply Fan 2, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -2850,6 +4416,27 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0015-000000000201}, !- Air Inlet Node Name + {00000000-0000-0000-0015-000000000199}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0039-000000000006}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0015-000000000101}, !- Air Inlet Node Name {00000000-0000-0000-0015-000000000099}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -2896,6 +4483,58 @@ OS:HeatBalanceAlgorithm, OS:HeatExchanger:AirToAir:SensibleAndLatent, {00000000-0000-0000-0043-000000000001}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0015-000000000331}, !- Supply Air Inlet Node + {00000000-0000-0000-0015-000000000332}, !- Supply Air Outlet Node + {00000000-0000-0000-0015-000000000335}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0015-000000000336}, !- Exhaust Air Outlet Node + 564.521132154065, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0043-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0015-000000000337}, !- Supply Air Inlet Node + {00000000-0000-0000-0015-000000000338}, !- Supply Air Outlet Node + {00000000-0000-0000-0015-000000000341}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0015-000000000342}, !- Exhaust Air Outlet Node + 564.521132154065, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0043-000000000003}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} @@ -2907,10 +4546,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0015-000000000225}, !- Supply Air Inlet Node - {00000000-0000-0000-0015-000000000226}, !- Supply Air Outlet Node - {00000000-0000-0000-0015-000000000229}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0015-000000000230}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0015-000000000325}, !- Supply Air Inlet Node + {00000000-0000-0000-0015-000000000326}, !- Supply Air Outlet Node + {00000000-0000-0000-0015-000000000329}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0015-000000000330}, !- Exhaust Air Outlet Node 564.521132154065, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -3354,17 +4993,49 @@ OS:ModelObjectList, {00000000-0000-0000-0049-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0049-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name + OS:Node, {00000000-0000-0000-0050-000000000001}, !- Handle 125gal Electricity Water Heater - 84kBtu/hr 1 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000140}, !- Inlet Port - {00000000-0000-0000-0015-000000000149}; !- Outlet Port + {00000000-0000-0000-0015-000000000240}, !- Inlet Port + {00000000-0000-0000-0015-000000000249}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000002}, !- Handle 125gal Electricity Water Heater - 84kBtu/hr 1 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000150}, !- Inlet Port - {00000000-0000-0000-0015-000000000151}; !- Outlet Port + {00000000-0000-0000-0015-000000000250}, !- Inlet Port + {00000000-0000-0000-0015-000000000251}; !- Outlet Port OS:Node, {00000000-0000-0000-0050-000000000003}, !- Handle @@ -3446,609 +5117,957 @@ OS:Node, OS:Node, {00000000-0000-0000-0050-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000184}, !- Inlet Port + {00000000-0000-0000-0015-000000000185}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000017}, !- Handle + {00000000-0000-0000-0050-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000178}, !- Inlet Port + {00000000-0000-0000-0015-000000000179}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000018}, !- Handle + {00000000-0000-0000-0050-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000166}, !- Inlet Port + {00000000-0000-0000-0015-000000000167}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000019}, !- Handle + {00000000-0000-0000-0050-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000172}, !- Inlet Port + {00000000-0000-0000-0015-000000000173}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000023}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000020}, !- Handle + {00000000-0000-0000-0050-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0015-000000000160}, !- Inlet Port + {00000000-0000-0000-0015-000000000161}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000025}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000021}, !- Handle + {00000000-0000-0000-0050-000000000026}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000222}, !- Inlet Port + {00000000-0000-0000-0015-000000000223}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000027}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000022}, !- Handle + {00000000-0000-0000-0050-000000000028}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000210}, !- Inlet Port + {00000000-0000-0000-0015-000000000211}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000029}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000023}, !- Handle + {00000000-0000-0000-0050-000000000030}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000228}, !- Inlet Port + {00000000-0000-0000-0015-000000000229}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000031}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000024}, !- Handle + {00000000-0000-0000-0050-000000000032}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0015-000000000234}, !- Inlet Port + {00000000-0000-0000-0015-000000000235}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000033}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0015-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000025}, !- Handle + {00000000-0000-0000-0050-000000000034}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0015-000000000216}, !- Inlet Port + {00000000-0000-0000-0015-000000000217}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000035}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0015-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000026}, !- Handle + {00000000-0000-0000-0050-000000000036}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000112}, !- Inlet Port {00000000-0000-0000-0015-000000000113}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000027}, !- Handle + {00000000-0000-0000-0050-000000000037}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000114}, !- Inlet Port {00000000-0000-0000-0015-000000000109}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000028}, !- Handle + {00000000-0000-0000-0050-000000000038}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000186}, !- Inlet Port + {00000000-0000-0000-0015-000000000187}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000039}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000188}, !- Inlet Port + {00000000-0000-0000-0015-000000000183}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000040}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000212}, !- Inlet Port + {00000000-0000-0000-0015-000000000213}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000041}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000214}, !- Inlet Port + {00000000-0000-0000-0015-000000000209}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000042}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000218}, !- Inlet Port + {00000000-0000-0000-0015-000000000219}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000043}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000220}, !- Inlet Port + {00000000-0000-0000-0015-000000000215}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000044}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000224}, !- Inlet Port + {00000000-0000-0000-0015-000000000225}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000045}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000226}, !- Inlet Port + {00000000-0000-0000-0015-000000000221}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000046}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000230}, !- Inlet Port + {00000000-0000-0000-0015-000000000231}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000047}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000232}, !- Inlet Port + {00000000-0000-0000-0015-000000000227}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000236}, !- Inlet Port + {00000000-0000-0000-0015-000000000237}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000238}, !- Inlet Port + {00000000-0000-0000-0015-000000000233}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000050}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000118}, !- Inlet Port {00000000-0000-0000-0015-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000029}, !- Handle + {00000000-0000-0000-0050-000000000051}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000120}, !- Inlet Port {00000000-0000-0000-0015-000000000115}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000030}, !- Handle + {00000000-0000-0000-0050-000000000052}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0015-000000000124}, !- Inlet Port {00000000-0000-0000-0015-000000000125}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000031}, !- Handle + {00000000-0000-0000-0050-000000000053}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000126}, !- Inlet Port {00000000-0000-0000-0015-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000032}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000130}, !- Inlet Port - {00000000-0000-0000-0015-000000000131}; !- Outlet Port + {00000000-0000-0000-0050-000000000054}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000130}, !- Inlet Port + {00000000-0000-0000-0015-000000000131}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000055}, !- Handle + Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000132}, !- Inlet Port + {00000000-0000-0000-0015-000000000127}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000056}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000136}, !- Inlet Port + {00000000-0000-0000-0015-000000000137}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000057}, !- Handle + Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000138}, !- Inlet Port + {00000000-0000-0000-0015-000000000133}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000162}, !- Inlet Port + {00000000-0000-0000-0015-000000000163}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000164}, !- Inlet Port + {00000000-0000-0000-0015-000000000159}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000168}, !- Inlet Port + {00000000-0000-0000-0015-000000000169}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000170}, !- Inlet Port + {00000000-0000-0000-0015-000000000165}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000174}, !- Inlet Port + {00000000-0000-0000-0015-000000000175}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000033}, !- Handle - Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000132}, !- Inlet Port - {00000000-0000-0000-0015-000000000127}; !- Outlet Port + {00000000-0000-0000-0050-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000176}, !- Inlet Port + {00000000-0000-0000-0015-000000000171}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000034}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000136}, !- Inlet Port - {00000000-0000-0000-0015-000000000137}; !- Outlet Port + {00000000-0000-0000-0050-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000180}, !- Inlet Port + {00000000-0000-0000-0015-000000000181}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000035}, !- Handle - Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000138}, !- Inlet Port - {00000000-0000-0000-0015-000000000133}; !- Outlet Port + {00000000-0000-0000-0050-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000182}, !- Inlet Port + {00000000-0000-0000-0015-000000000177}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000036}, !- Handle + {00000000-0000-0000-0050-000000000066}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000040}, !- Inlet Port {00000000-0000-0000-0015-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000037}, !- Handle + {00000000-0000-0000-0050-000000000067}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000043}, !- Inlet Port {00000000-0000-0000-0015-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000038}, !- Handle + {00000000-0000-0000-0050-000000000068}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000037}, !- Inlet Port {00000000-0000-0000-0015-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000039}, !- Handle + {00000000-0000-0000-0050-000000000069}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000061}, !- Inlet Port {00000000-0000-0000-0015-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000040}, !- Handle + {00000000-0000-0000-0050-000000000070}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000042}, !- Inlet Port {00000000-0000-0000-0015-000000000096}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000041}, !- Handle + {00000000-0000-0000-0050-000000000071}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000102}, !- Inlet Port {00000000-0000-0000-0015-000000000103}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000042}, !- Handle + {00000000-0000-0000-0050-000000000072}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000097}, !- Inlet Port {00000000-0000-0000-0015-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000043}, !- Handle + {00000000-0000-0000-0050-000000000073}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000145}, !- Inlet Port + {00000000-0000-0000-0015-000000000146}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000074}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000152}, !- Inlet Port + {00000000-0000-0000-0015-000000000153}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000075}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000147}, !- Inlet Port + {00000000-0000-0000-0015-000000000148}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000076}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000195}, !- Inlet Port + {00000000-0000-0000-0015-000000000196}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000077}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000202}, !- Inlet Port + {00000000-0000-0000-0015-000000000203}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000078}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000197}, !- Inlet Port + {00000000-0000-0000-0015-000000000198}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000079}, !- Handle Coil Heating Electric 1 Outlet Air Node, !- Name {00000000-0000-0000-0015-000000000100}, !- Inlet Port {00000000-0000-0000-0015-000000000101}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000044}, !- Handle + {00000000-0000-0000-0050-000000000080}, !- Handle + Coil Heating Electric 13 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000200}, !- Inlet Port + {00000000-0000-0000-0015-000000000201}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000081}, !- Handle + Coil Heating Electric 7 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000150}, !- Inlet Port + {00000000-0000-0000-0015-000000000151}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000082}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000065}, !- Inlet Port {00000000-0000-0000-0015-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000045}, !- Handle + {00000000-0000-0000-0050-000000000083}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000068}, !- Inlet Port {00000000-0000-0000-0015-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000046}, !- Handle + {00000000-0000-0000-0050-000000000084}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000062}, !- Inlet Port {00000000-0000-0000-0015-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000047}, !- Handle + {00000000-0000-0000-0050-000000000085}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000082}, !- Inlet Port {00000000-0000-0000-0015-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000048}, !- Handle + {00000000-0000-0000-0050-000000000086}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000063}, !- Inlet Port {00000000-0000-0000-0015-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000049}, !- Handle + {00000000-0000-0000-0050-000000000087}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000074}, !- Inlet Port {00000000-0000-0000-0015-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000050}, !- Handle + {00000000-0000-0000-0050-000000000088}, !- Handle Core_bottom WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000165}, !- Inlet Port - {00000000-0000-0000-0015-000000000166}; !- Outlet Port + {00000000-0000-0000-0015-000000000265}, !- Inlet Port + {00000000-0000-0000-0015-000000000266}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000051}, !- Handle + {00000000-0000-0000-0050-000000000089}, !- Handle Core_bottom WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000167}, !- Inlet Port - {00000000-0000-0000-0015-000000000168}; !- Outlet Port + {00000000-0000-0000-0015-000000000267}, !- Inlet Port + {00000000-0000-0000-0015-000000000268}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000052}, !- Handle + {00000000-0000-0000-0050-000000000090}, !- Handle Core_mid WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000169}, !- Inlet Port - {00000000-0000-0000-0015-000000000170}; !- Outlet Port + {00000000-0000-0000-0015-000000000269}, !- Inlet Port + {00000000-0000-0000-0015-000000000270}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000053}, !- Handle + {00000000-0000-0000-0050-000000000091}, !- Handle Core_mid WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000171}, !- Inlet Port - {00000000-0000-0000-0015-000000000172}; !- Outlet Port + {00000000-0000-0000-0015-000000000271}, !- Inlet Port + {00000000-0000-0000-0015-000000000272}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000054}, !- Handle + {00000000-0000-0000-0050-000000000092}, !- Handle Core_top WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000173}, !- Inlet Port - {00000000-0000-0000-0015-000000000174}; !- Outlet Port + {00000000-0000-0000-0015-000000000273}, !- Inlet Port + {00000000-0000-0000-0015-000000000274}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000055}, !- Handle + {00000000-0000-0000-0050-000000000093}, !- Handle Core_top WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000175}, !- Inlet Port - {00000000-0000-0000-0015-000000000176}; !- Outlet Port + {00000000-0000-0000-0015-000000000275}, !- Inlet Port + {00000000-0000-0000-0015-000000000276}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000056}, !- Handle + {00000000-0000-0000-0050-000000000094}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000147}, !- Inlet Port - {00000000-0000-0000-0015-000000000148}; !- Outlet Port + {00000000-0000-0000-0015-000000000247}, !- Inlet Port + {00000000-0000-0000-0015-000000000248}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000057}, !- Handle + {00000000-0000-0000-0050-000000000095}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0015-000000000142}, !- Inlet Port - {00000000-0000-0000-0015-000000000143}; !- Outlet Port + {00000000-0000-0000-0015-000000000242}, !- Inlet Port + {00000000-0000-0000-0015-000000000243}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000058}, !- Handle + {00000000-0000-0000-0050-000000000096}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0015-000000000164}, !- Inlet Port - {00000000-0000-0000-0015-000000000145}; !- Outlet Port + {00000000-0000-0000-0015-000000000264}, !- Inlet Port + {00000000-0000-0000-0015-000000000245}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000059}, !- Handle + {00000000-0000-0000-0050-000000000097}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0015-000000000139}, !- Inlet Port - {00000000-0000-0000-0015-000000000146}; !- Outlet Port + {00000000-0000-0000-0015-000000000239}, !- Inlet Port + {00000000-0000-0000-0015-000000000246}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000060}, !- Handle + {00000000-0000-0000-0050-000000000098}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0015-000000000161}, !- Inlet Port - {00000000-0000-0000-0015-000000000141}; !- Outlet Port + {00000000-0000-0000-0015-000000000261}, !- Inlet Port + {00000000-0000-0000-0015-000000000241}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000061}, !- Handle + {00000000-0000-0000-0050-000000000099}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000177}, !- Inlet Port - {00000000-0000-0000-0015-000000000178}; !- Outlet Port + {00000000-0000-0000-0015-000000000277}, !- Inlet Port + {00000000-0000-0000-0015-000000000278}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000062}, !- Handle + {00000000-0000-0000-0050-000000000100}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000179}, !- Inlet Port - {00000000-0000-0000-0015-000000000180}; !- Outlet Port + {00000000-0000-0000-0015-000000000279}, !- Inlet Port + {00000000-0000-0000-0015-000000000280}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000063}, !- Handle + {00000000-0000-0000-0050-000000000101}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000181}, !- Inlet Port - {00000000-0000-0000-0015-000000000182}; !- Outlet Port + {00000000-0000-0000-0015-000000000281}, !- Inlet Port + {00000000-0000-0000-0015-000000000282}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000064}, !- Handle + {00000000-0000-0000-0050-000000000102}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000183}, !- Inlet Port - {00000000-0000-0000-0015-000000000184}; !- Outlet Port + {00000000-0000-0000-0015-000000000283}, !- Inlet Port + {00000000-0000-0000-0015-000000000284}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000065}, !- Handle + {00000000-0000-0000-0050-000000000103}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000185}, !- Inlet Port - {00000000-0000-0000-0015-000000000186}; !- Outlet Port + {00000000-0000-0000-0015-000000000285}, !- Inlet Port + {00000000-0000-0000-0015-000000000286}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000066}, !- Handle + {00000000-0000-0000-0050-000000000104}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000187}, !- Inlet Port - {00000000-0000-0000-0015-000000000188}; !- Outlet Port + {00000000-0000-0000-0015-000000000287}, !- Inlet Port + {00000000-0000-0000-0015-000000000288}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000067}, !- Handle + {00000000-0000-0000-0050-000000000105}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000189}, !- Inlet Port - {00000000-0000-0000-0015-000000000190}; !- Outlet Port + {00000000-0000-0000-0015-000000000289}, !- Inlet Port + {00000000-0000-0000-0015-000000000290}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000068}, !- Handle + {00000000-0000-0000-0050-000000000106}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000191}, !- Inlet Port - {00000000-0000-0000-0015-000000000192}; !- Outlet Port + {00000000-0000-0000-0015-000000000291}, !- Inlet Port + {00000000-0000-0000-0015-000000000292}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000069}, !- Handle + {00000000-0000-0000-0050-000000000107}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000193}, !- Inlet Port - {00000000-0000-0000-0015-000000000194}; !- Outlet Port + {00000000-0000-0000-0015-000000000293}, !- Inlet Port + {00000000-0000-0000-0015-000000000294}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000070}, !- Handle + {00000000-0000-0000-0050-000000000108}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000195}, !- Inlet Port - {00000000-0000-0000-0015-000000000196}; !- Outlet Port + {00000000-0000-0000-0015-000000000295}, !- Inlet Port + {00000000-0000-0000-0015-000000000296}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000071}, !- Handle + {00000000-0000-0000-0050-000000000109}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000197}, !- Inlet Port - {00000000-0000-0000-0015-000000000198}; !- Outlet Port + {00000000-0000-0000-0015-000000000297}, !- Inlet Port + {00000000-0000-0000-0015-000000000298}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000072}, !- Handle + {00000000-0000-0000-0050-000000000110}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000199}, !- Inlet Port - {00000000-0000-0000-0015-000000000200}; !- Outlet Port + {00000000-0000-0000-0015-000000000299}, !- Inlet Port + {00000000-0000-0000-0015-000000000300}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000073}, !- Handle + {00000000-0000-0000-0050-000000000111}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000201}, !- Inlet Port - {00000000-0000-0000-0015-000000000202}; !- Outlet Port + {00000000-0000-0000-0015-000000000301}, !- Inlet Port + {00000000-0000-0000-0015-000000000302}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000074}, !- Handle + {00000000-0000-0000-0050-000000000112}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000203}, !- Inlet Port - {00000000-0000-0000-0015-000000000204}; !- Outlet Port + {00000000-0000-0000-0015-000000000303}, !- Inlet Port + {00000000-0000-0000-0015-000000000304}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000075}, !- Handle + {00000000-0000-0000-0050-000000000113}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000205}, !- Inlet Port - {00000000-0000-0000-0015-000000000206}; !- Outlet Port + {00000000-0000-0000-0015-000000000305}, !- Inlet Port + {00000000-0000-0000-0015-000000000306}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000076}, !- Handle + {00000000-0000-0000-0050-000000000114}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000207}, !- Inlet Port - {00000000-0000-0000-0015-000000000208}; !- Outlet Port + {00000000-0000-0000-0015-000000000307}, !- Inlet Port + {00000000-0000-0000-0015-000000000308}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000077}, !- Handle + {00000000-0000-0000-0050-000000000115}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000209}, !- Inlet Port - {00000000-0000-0000-0015-000000000210}; !- Outlet Port + {00000000-0000-0000-0015-000000000309}, !- Inlet Port + {00000000-0000-0000-0015-000000000310}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000078}, !- Handle + {00000000-0000-0000-0050-000000000116}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000211}, !- Inlet Port - {00000000-0000-0000-0015-000000000212}; !- Outlet Port + {00000000-0000-0000-0015-000000000311}, !- Inlet Port + {00000000-0000-0000-0015-000000000312}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000079}, !- Handle + {00000000-0000-0000-0050-000000000117}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000213}, !- Inlet Port - {00000000-0000-0000-0015-000000000214}; !- Outlet Port + {00000000-0000-0000-0015-000000000313}, !- Inlet Port + {00000000-0000-0000-0015-000000000314}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000080}, !- Handle + {00000000-0000-0000-0050-000000000118}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000215}, !- Inlet Port - {00000000-0000-0000-0015-000000000216}; !- Outlet Port + {00000000-0000-0000-0015-000000000315}, !- Inlet Port + {00000000-0000-0000-0015-000000000316}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000081}, !- Handle + {00000000-0000-0000-0050-000000000119}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000217}, !- Inlet Port - {00000000-0000-0000-0015-000000000218}; !- Outlet Port + {00000000-0000-0000-0015-000000000317}, !- Inlet Port + {00000000-0000-0000-0015-000000000318}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000082}, !- Handle + {00000000-0000-0000-0050-000000000120}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000219}, !- Inlet Port - {00000000-0000-0000-0015-000000000220}; !- Outlet Port + {00000000-0000-0000-0015-000000000319}, !- Inlet Port + {00000000-0000-0000-0015-000000000320}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000083}, !- Handle + {00000000-0000-0000-0050-000000000121}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000221}, !- Inlet Port - {00000000-0000-0000-0015-000000000222}; !- Outlet Port + {00000000-0000-0000-0015-000000000321}, !- Inlet Port + {00000000-0000-0000-0015-000000000322}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000084}, !- Handle + {00000000-0000-0000-0050-000000000122}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000223}, !- Inlet Port - {00000000-0000-0000-0015-000000000224}; !- Outlet Port + {00000000-0000-0000-0015-000000000323}, !- Inlet Port + {00000000-0000-0000-0015-000000000324}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000085}, !- Handle + {00000000-0000-0000-0050-000000000123}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000055}, !- Inlet Port {00000000-0000-0000-0015-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000086}, !- Handle + {00000000-0000-0000-0050-000000000124}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000057}, !- Inlet Port {00000000-0000-0000-0015-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000087}, !- Handle + {00000000-0000-0000-0050-000000000125}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000059}, !- Inlet Port {00000000-0000-0000-0015-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000088}, !- Handle + {00000000-0000-0000-0050-000000000126}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000076}, !- Inlet Port {00000000-0000-0000-0015-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000089}, !- Handle + {00000000-0000-0000-0050-000000000127}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0015-000000000078}, !- Inlet Port {00000000-0000-0000-0015-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000090}, !- Handle + {00000000-0000-0000-0050-000000000128}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0015-000000000080}, !- Inlet Port {00000000-0000-0000-0015-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000091}, !- Handle + {00000000-0000-0000-0050-000000000129}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000152}, !- Inlet Port - {00000000-0000-0000-0015-000000000153}; !- Outlet Port + {00000000-0000-0000-0015-000000000252}, !- Inlet Port + {00000000-0000-0000-0015-000000000253}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000092}, !- Handle + {00000000-0000-0000-0050-000000000130}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000154}, !- Inlet Port - {00000000-0000-0000-0015-000000000155}; !- Outlet Port + {00000000-0000-0000-0015-000000000254}, !- Inlet Port + {00000000-0000-0000-0015-000000000255}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000093}, !- Handle + {00000000-0000-0000-0050-000000000131}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000144}, !- Inlet Port - {00000000-0000-0000-0015-000000000156}; !- Outlet Port + {00000000-0000-0000-0015-000000000244}, !- Inlet Port + {00000000-0000-0000-0015-000000000256}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000094}, !- Handle + {00000000-0000-0000-0050-000000000132}, !- Handle Pipe Adiabatic 6 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000157}, !- Inlet Port - {00000000-0000-0000-0015-000000000158}; !- Outlet Port + {00000000-0000-0000-0015-000000000257}, !- Inlet Port + {00000000-0000-0000-0015-000000000258}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000095}, !- Handle + {00000000-0000-0000-0050-000000000133}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000159}, !- Inlet Port - {00000000-0000-0000-0015-000000000160}; !- Outlet Port + {00000000-0000-0000-0015-000000000259}, !- Inlet Port + {00000000-0000-0000-0015-000000000260}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000096}, !- Handle + {00000000-0000-0000-0050-000000000134}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000162}, !- Inlet Port - {00000000-0000-0000-0015-000000000163}; !- Outlet Port + {00000000-0000-0000-0015-000000000262}, !- Inlet Port + {00000000-0000-0000-0015-000000000263}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000135}, !- Handle + Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000067}, !- Inlet Port + {00000000-0000-0000-0015-000000000083}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000136}, !- Handle + Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000084}, !- Inlet Port + {00000000-0000-0000-0015-000000000085}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000137}, !- Handle + Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000038}, !- Inlet Port + {00000000-0000-0000-0015-000000000048}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000138}, !- Handle + Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000049}, !- Inlet Port + {00000000-0000-0000-0015-000000000050}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000139}, !- Handle + Pump Variable Speed 1 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000046}, !- Inlet Port + {00000000-0000-0000-0015-000000000047}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000140}, !- Handle + Pump Variable Speed 2 Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000071}, !- Inlet Port + {00000000-0000-0000-0015-000000000072}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000141}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000086}, !- Inlet Port + {00000000-0000-0000-0015-000000000087}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000142}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000088}, !- Inlet Port + {00000000-0000-0000-0015-000000000089}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000143}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0015-000000000051}, !- Inlet Port + {00000000-0000-0000-0015-000000000052}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000144}, !- Handle + Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0015-000000000053}, !- Inlet Port + {00000000-0000-0000-0015-000000000054}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000145}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000157}, !- Inlet Port + {00000000-0000-0000-0015-000000000158}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000146}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000207}, !- Inlet Port + {00000000-0000-0000-0015-000000000208}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000147}, !- Handle + Sys6 Return Fan Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000107}, !- Inlet Port + {00000000-0000-0000-0015-000000000108}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000148}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0015-000000000141}, !- Inlet Port + {00000000-0000-0000-0015-000000000143}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000149}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0015-000000000144}, !- Inlet Port + {00000000-0000-0000-0015-000000000142}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000150}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0015-000000000154}, !- Inlet Port + {00000000-0000-0000-0015-000000000155}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000097}, !- Handle - Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Demand Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000067}, !- Inlet Port - {00000000-0000-0000-0015-000000000083}; !- Outlet Port + {00000000-0000-0000-0050-000000000151}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0015-000000000331}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000098}, !- Handle - Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Demand Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000084}, !- Inlet Port - {00000000-0000-0000-0015-000000000085}; !- Outlet Port + {00000000-0000-0000-0050-000000000152}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0015-000000000336}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000099}, !- Handle - Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000038}, !- Inlet Port - {00000000-0000-0000-0015-000000000048}; !- Outlet Port + {00000000-0000-0000-0050-000000000153}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0015-000000000139}, !- Inlet Port + {00000000-0000-0000-0015-000000000156}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000100}, !- Handle - Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000049}, !- Inlet Port - {00000000-0000-0000-0015-000000000050}; !- Outlet Port + {00000000-0000-0000-0050-000000000154}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0015-000000000149}, !- Inlet Port + {00000000-0000-0000-0015-000000000140}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000101}, !- Handle - Pump Variable Speed 1 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000046}, !- Inlet Port - {00000000-0000-0000-0015-000000000047}; !- Outlet Port + {00000000-0000-0000-0050-000000000155}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0015-000000000191}, !- Inlet Port + {00000000-0000-0000-0015-000000000193}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000102}, !- Handle - Pump Variable Speed 2 Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000071}, !- Inlet Port - {00000000-0000-0000-0015-000000000072}; !- Outlet Port + {00000000-0000-0000-0050-000000000156}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0015-000000000194}, !- Inlet Port + {00000000-0000-0000-0015-000000000192}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000103}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000086}, !- Inlet Port - {00000000-0000-0000-0015-000000000087}; !- Outlet Port + {00000000-0000-0000-0050-000000000157}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0015-000000000204}, !- Inlet Port + {00000000-0000-0000-0015-000000000205}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000104}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000088}, !- Inlet Port - {00000000-0000-0000-0015-000000000089}; !- Outlet Port + {00000000-0000-0000-0050-000000000158}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0015-000000000337}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000105}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name - {00000000-0000-0000-0015-000000000051}, !- Inlet Port - {00000000-0000-0000-0015-000000000052}; !- Outlet Port + {00000000-0000-0000-0050-000000000159}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0015-000000000342}, !- Inlet Port + ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000106}, !- Handle - Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name - {00000000-0000-0000-0015-000000000053}, !- Inlet Port - {00000000-0000-0000-0015-000000000054}; !- Outlet Port + {00000000-0000-0000-0050-000000000160}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0015-000000000189}, !- Inlet Port + {00000000-0000-0000-0015-000000000206}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000107}, !- Handle - Sys6 Return Fan Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000107}, !- Inlet Port - {00000000-0000-0000-0015-000000000108}; !- Outlet Port + {00000000-0000-0000-0050-000000000161}, !- Handle + sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0015-000000000199}, !- Inlet Port + {00000000-0000-0000-0015-000000000190}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000108}, !- Handle + {00000000-0000-0000-0050-000000000162}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0015-000000000092}, !- Inlet Port {00000000-0000-0000-0015-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000109}, !- Handle + {00000000-0000-0000-0050-000000000163}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0015-000000000095}, !- Inlet Port {00000000-0000-0000-0015-000000000093}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000110}, !- Handle + {00000000-0000-0000-0050-000000000164}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0015-000000000104}, !- Inlet Port {00000000-0000-0000-0015-000000000105}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000111}, !- Handle + {00000000-0000-0000-0050-000000000165}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0015-000000000225}; !- Outlet Port + {00000000-0000-0000-0015-000000000325}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000112}, !- Handle + {00000000-0000-0000-0050-000000000166}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0015-000000000230}, !- Inlet Port + {00000000-0000-0000-0015-000000000330}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000113}, !- Handle + {00000000-0000-0000-0050-000000000167}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0015-000000000090}, !- Inlet Port {00000000-0000-0000-0015-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000114}, !- Handle + {00000000-0000-0000-0050-000000000168}, !- Handle sys_6|mixed|shr>erv|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0015-000000000099}, !- Inlet Port {00000000-0000-0000-0015-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000115}, !- Handle + {00000000-0000-0000-0050-000000000169}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000332}, !- Inlet Port + {00000000-0000-0000-0015-000000000333}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000170}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000334}, !- Inlet Port + {00000000-0000-0000-0015-000000000335}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000171}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0015-000000000338}, !- Inlet Port + {00000000-0000-0000-0015-000000000339}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000172}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0015-000000000340}, !- Inlet Port + {00000000-0000-0000-0015-000000000341}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0050-000000000173}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0015-000000000226}, !- Inlet Port - {00000000-0000-0000-0015-000000000227}; !- Outlet Port + {00000000-0000-0000-0015-000000000326}, !- Inlet Port + {00000000-0000-0000-0015-000000000327}; !- Outlet Port OS:Node, - {00000000-0000-0000-0050-000000000116}, !- Handle + {00000000-0000-0000-0050-000000000174}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0015-000000000228}, !- Inlet Port - {00000000-0000-0000-0015-000000000229}; !- Outlet Port + {00000000-0000-0000-0015-000000000328}, !- Inlet Port + {00000000-0000-0000-0015-000000000329}; !- Outlet Port OS:OutputControl:ReportingTolerances, {00000000-0000-0000-0051-000000000001}, !- Handle @@ -4063,7 +6082,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0064-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0064-000000000024}, !- Work Efficiency Schedule Name {00000000-0000-0000-0064-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0064-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -4104,26 +6123,26 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000005}, !- Handle Pipe Adiabatic 5, !- Name - {00000000-0000-0000-0015-000000000153}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000154}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000253}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000254}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000006}, !- Handle Pipe Adiabatic 6, !- Name - {00000000-0000-0000-0015-000000000156}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000157}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000256}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000257}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000007}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0015-000000000160}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000161}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000260}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000261}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0054-000000000008}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0015-000000000163}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000164}; !- Outlet Node Name + {00000000-0000-0000-0015-000000000263}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000264}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0055-000000000001}, !- Handle @@ -4134,7 +6153,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000039}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000069}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4148,7 +6167,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4170,7 +6189,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000047}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000085}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -4184,7 +6203,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4206,21 +6225,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0050-000000000060}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0050-000000000098}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0015-000000000139}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0015-000000000141}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0015-000000000239}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0015-000000000241}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0015-000000000142}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0015-000000000145}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0015-000000000242}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0015-000000000245}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -4235,7 +6254,8 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0056-000000000001}, !- Handle - {00000000-0000-0000-0091-000000000013}; !- HVAC Component + {00000000-0000-0000-0091-000000000013}, !- HVAC Component + {00000000-0000-0000-0015-000000000159}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000002}, !- Handle @@ -4243,11 +6263,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000003}, !- Handle - {00000000-0000-0000-0091-000000000013}; !- HVAC Component + {00000000-0000-0000-0091-000000000013}, !- HVAC Component + {00000000-0000-0000-0015-000000000160}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000004}, !- Handle - {00000000-0000-0000-0091-000000000018}; !- HVAC Component + {00000000-0000-0000-0091-000000000018}, !- HVAC Component + {00000000-0000-0000-0015-000000000215}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000005}, !- Handle @@ -4255,11 +6277,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000006}, !- Handle - {00000000-0000-0000-0091-000000000018}; !- HVAC Component + {00000000-0000-0000-0091-000000000018}, !- HVAC Component + {00000000-0000-0000-0015-000000000216}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000007}, !- Handle - {00000000-0000-0000-0091-000000000014}; !- HVAC Component + {00000000-0000-0000-0091-000000000014}, !- HVAC Component + {00000000-0000-0000-0015-000000000221}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000008}, !- Handle @@ -4267,11 +6291,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000009}, !- Handle - {00000000-0000-0000-0091-000000000014}; !- HVAC Component + {00000000-0000-0000-0091-000000000014}, !- HVAC Component + {00000000-0000-0000-0015-000000000222}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000010}, !- Handle - {00000000-0000-0000-0091-000000000015}; !- HVAC Component + {00000000-0000-0000-0091-000000000015}, !- HVAC Component + {00000000-0000-0000-0015-000000000209}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000011}, !- Handle @@ -4279,11 +6305,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000012}, !- Handle - {00000000-0000-0000-0091-000000000015}; !- HVAC Component + {00000000-0000-0000-0091-000000000015}, !- HVAC Component + {00000000-0000-0000-0015-000000000210}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000013}, !- Handle - {00000000-0000-0000-0091-000000000009}; !- HVAC Component + {00000000-0000-0000-0091-000000000009}, !- HVAC Component + {00000000-0000-0000-0015-000000000183}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000014}, !- Handle @@ -4291,7 +6319,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000015}, !- Handle - {00000000-0000-0000-0091-000000000009}; !- HVAC Component + {00000000-0000-0000-0091-000000000009}, !- HVAC Component + {00000000-0000-0000-0015-000000000184}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000016}, !- Handle @@ -4309,7 +6338,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000019}, !- Handle - {00000000-0000-0000-0091-000000000016}; !- HVAC Component + {00000000-0000-0000-0091-000000000016}, !- HVAC Component + {00000000-0000-0000-0015-000000000227}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000020}, !- Handle @@ -4317,11 +6347,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000021}, !- Handle - {00000000-0000-0000-0091-000000000016}; !- HVAC Component + {00000000-0000-0000-0091-000000000016}, !- HVAC Component + {00000000-0000-0000-0015-000000000228}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000022}, !- Handle - {00000000-0000-0000-0091-000000000010}; !- HVAC Component + {00000000-0000-0000-0091-000000000010}, !- HVAC Component + {00000000-0000-0000-0015-000000000177}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000023}, !- Handle @@ -4329,7 +6361,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000024}, !- Handle - {00000000-0000-0000-0091-000000000010}; !- HVAC Component + {00000000-0000-0000-0091-000000000010}, !- HVAC Component + {00000000-0000-0000-0015-000000000178}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000025}, !- Handle @@ -4345,7 +6378,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000028}, !- Handle - {00000000-0000-0000-0091-000000000017}; !- HVAC Component + {00000000-0000-0000-0091-000000000017}, !- HVAC Component + {00000000-0000-0000-0015-000000000233}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000029}, !- Handle @@ -4353,7 +6387,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000030}, !- Handle - {00000000-0000-0000-0091-000000000017}; !- HVAC Component + {00000000-0000-0000-0091-000000000017}, !- HVAC Component + {00000000-0000-0000-0015-000000000234}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000031}, !- Handle @@ -4383,7 +6418,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000037}, !- Handle - {00000000-0000-0000-0091-000000000011}; !- HVAC Component + {00000000-0000-0000-0091-000000000011}, !- HVAC Component + {00000000-0000-0000-0015-000000000165}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000038}, !- Handle @@ -4391,7 +6427,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000039}, !- Handle - {00000000-0000-0000-0091-000000000011}; !- HVAC Component + {00000000-0000-0000-0091-000000000011}, !- HVAC Component + {00000000-0000-0000-0015-000000000166}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000040}, !- Handle @@ -4421,7 +6458,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000046}, !- Handle - {00000000-0000-0000-0091-000000000012}; !- HVAC Component + {00000000-0000-0000-0091-000000000012}, !- HVAC Component + {00000000-0000-0000-0015-000000000171}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000047}, !- Handle @@ -4429,7 +6467,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0056-000000000048}, !- Handle - {00000000-0000-0000-0091-000000000012}; !- HVAC Component + {00000000-0000-0000-0091-000000000012}, !- HVAC Component + {00000000-0000-0000-0015-000000000172}; !- Port 1 OS:PortList, {00000000-0000-0000-0056-000000000049}, !- Handle @@ -4462,8 +6501,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0057-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0015-000000000146}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000147}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000246}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000247}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 446362.499964258, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -4487,9 +6526,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0015-000000000045}, !- Inlet Node Name {00000000-0000-0000-0015-000000000046}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 236900.664009476, !- Rated Pump Head {Pa} + 245116.872009805, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.865, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -4520,9 +6559,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0015-000000000070}, !- Inlet Node Name {00000000-0000-0000-0015-000000000071}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 210100.176008404, !- Rated Pump Head {Pa} + 215264.649608611, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.917, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5319,6 +7358,33 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0062-000000000037}, !- Handle + Schedule Day 10, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000038}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000039}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5327,7 +7393,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000038}, !- Handle + {00000000-0000-0000-0062-000000000041}, !- Handle Schedule Day 3, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5405,9 +7471,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000039}, !- Handle + {00000000-0000-0000-0062-000000000042}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -5483,25 +7549,25 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000040}, !- Handle + {00000000-0000-0000-0062-000000000043}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000041}, !- Handle + {00000000-0000-0000-0062-000000000044}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000042}, !- Handle + {00000000-0000-0000-0062-000000000045}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5510,7 +7576,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000043}, !- Handle + {00000000-0000-0000-0062-000000000046}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5519,7 +7585,16 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000044}, !- Handle + {00000000-0000-0000-0062-000000000047}, !- Handle + Schedule Day 9, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000048}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5528,16 +7603,34 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000045}, !- Handle + {00000000-0000-0000-0062-000000000049}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000050}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000051}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000046}, !- Handle + {00000000-0000-0000-0062-000000000052}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5546,7 +7639,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000047}, !- Handle + {00000000-0000-0000-0062-000000000053}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5555,7 +7648,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000048}, !- Handle + {00000000-0000-0000-0062-000000000054}, !- Handle satCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5633,7 +7726,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000049}, !- Handle + {00000000-0000-0000-0062-000000000055}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5711,9 +7804,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000050}, !- Handle + {00000000-0000-0000-0062-000000000056}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -5789,7 +7882,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000051}, !- Handle + {00000000-0000-0000-0062-000000000057}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5867,7 +7960,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000052}, !- Handle + {00000000-0000-0000-0062-000000000058}, !- Handle sunCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -5945,7 +8038,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000053}, !- Handle + {00000000-0000-0000-0062-000000000059}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6023,9 +8116,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000054}, !- Handle + {00000000-0000-0000-0062-000000000060}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6101,7 +8194,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000055}, !- Handle + {00000000-0000-0000-0062-000000000061}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6179,7 +8272,73 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000056}, !- Handle + {00000000-0000-0000-0062-000000000062}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000063}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000064}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000065}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000066}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000067}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0062-000000000068}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6194,7 +8353,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000057}, !- Handle + {00000000-0000-0000-0062-000000000069}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6203,7 +8362,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000058}, !- Handle + {00000000-0000-0000-0062-000000000070}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6212,7 +8371,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000059}, !- Handle + {00000000-0000-0000-0062-000000000071}, !- Handle wkdCHW Temp 1, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6290,7 +8449,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000060}, !- Handle + {00000000-0000-0000-0062-000000000072}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6368,9 +8527,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000061}, !- Handle + {00000000-0000-0000-0062-000000000073}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6446,7 +8605,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0062-000000000062}, !- Handle + {00000000-0000-0000-0062-000000000074}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6754,9 +8913,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0064-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0064-000000000027}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000042}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000045}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -6773,9 +8932,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0064-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0064-000000000027}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000046}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -6791,6 +8950,82 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0063-000000000015}, !- Handle + Schedule Rule 22, !- Name + {00000000-0000-0000-0064-000000000025}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0062-000000000047}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0063-000000000016}, !- Handle + Schedule Rule 23, !- Name + {00000000-0000-0000-0064-000000000025}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0062-000000000037}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0063-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0064-000000000026}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0062-000000000038}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0063-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0064-000000000026}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0062-000000000039}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0063-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0064-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -6809,7 +9044,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000016}, !- Handle + {00000000-0000-0000-0063-000000000020}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0064-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -6828,7 +9063,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000017}, !- Handle + {00000000-0000-0000-0063-000000000021}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0064-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order @@ -6847,7 +9082,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000018}, !- Handle + {00000000-0000-0000-0063-000000000022}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0064-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -6866,7 +9101,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000019}, !- Handle + {00000000-0000-0000-0063-000000000023}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0064-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -6885,7 +9120,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000020}, !- Handle + {00000000-0000-0000-0063-000000000024}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0064-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -6904,7 +9139,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000021}, !- Handle + {00000000-0000-0000-0063-000000000025}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0064-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -6923,11 +9158,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000022}, !- Handle + {00000000-0000-0000-0063-000000000026}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000048}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000054}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6942,11 +9177,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000023}, !- Handle + {00000000-0000-0000-0063-000000000027}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0062-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000056}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6961,11 +9196,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000024}, !- Handle + {00000000-0000-0000-0063-000000000028}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000052}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000058}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6980,11 +9215,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000025}, !- Handle + {00000000-0000-0000-0063-000000000029}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0062-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000060}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -6999,11 +9234,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000026}, !- Handle + {00000000-0000-0000-0063-000000000030}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0064-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0062-000000000059}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000071}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7018,11 +9253,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0063-000000000027}, !- Handle + {00000000-0000-0000-0063-000000000031}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0064-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0062-000000000061}, !- Day Schedule Name + {00000000-0000-0000-0062-000000000073}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -7052,13 +9287,13 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000003}, !- Handle CHW Temp, !- Name {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000038}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000039}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000005}, !- Handle @@ -7137,46 +9372,74 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000040}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000043}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000020}, !- Handle - Supply Air Temp, !- Name - {00000000-0000-0000-0065-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000045}; !- Default Day Schedule Name + Supply Air Temp 1, !- Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0064-000000000021}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000050}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0064-000000000022}, !- Handle + Supply Air Temp, !- Name + {00000000-0000-0000-0065-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000051}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0064-000000000023}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0065-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000022}, !- Handle + {00000000-0000-0000-0064-000000000024}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000053}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0064-000000000023}, !- Handle + {00000000-0000-0000-0064-000000000025}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000062}, !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000063}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0062-000000000064}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0064-000000000026}, !- Handle + sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0062-000000000065}, !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000066}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0062-000000000067}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0064-000000000027}, !- Handle sys_6|mixed|shr>none|sh>c-e|sc>c-chw|ssf>vv|zh>b-e|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0065-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0062-000000000056}, !- Default Day Schedule Name - {00000000-0000-0000-0062-000000000057}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0062-000000000058}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0062-000000000068}, !- Default Day Schedule Name + {00000000-0000-0000-0062-000000000069}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0062-000000000070}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0065-000000000001}, !- Handle @@ -7257,39 +9520,81 @@ OS:SetpointManager:OutdoorAirPretreat, 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0050-000000000110}, !- Reference Setpoint Node Name - {00000000-0000-0000-0050-000000000110}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0050-000000000111}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0050-000000000107}, !- Return Air Stream Node Name - {00000000-0000-0000-0050-000000000115}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000164}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000164}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000165}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000147}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000173}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0066-000000000002}, !- Handle + Setpoint Manager Outdoor Air Pretreat 2, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0050-000000000150}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000150}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000151}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000145}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000169}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0066-000000000003}, !- Handle + Setpoint Manager Outdoor Air Pretreat 3, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0050-000000000157}, !- Reference Setpoint Node Name + {00000000-0000-0000-0050-000000000157}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0050-000000000158}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0050-000000000146}, !- Return Air Stream Node Name + {00000000-0000-0000-0050-000000000171}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000001}, !- Handle Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000019}, !- Schedule Name - {00000000-0000-0000-0050-000000000060}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000098}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000003}, !- Schedule Name - {00000000-0000-0000-0050-000000000039}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000069}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0064-000000000004}, !- Schedule Name - {00000000-0000-0000-0050-000000000047}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000085}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0067-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable + {00000000-0000-0000-0064-000000000022}, !- Schedule Name + {00000000-0000-0000-0050-000000000168}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0067-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable {00000000-0000-0000-0064-000000000020}, !- Schedule Name - {00000000-0000-0000-0050-000000000114}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0050-000000000154}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0067-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0064-000000000021}, !- Schedule Name + {00000000-0000-0000-0050-000000000161}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0068-000000000001}, !- Handle @@ -7432,6 +9737,47 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0078-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0078-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -7471,19 +9817,60 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0078-000000000003}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, {00000000-0000-0000-0079-000000000001}, !- Handle {00000000-0000-0000-0091-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7509,16 +9896,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000002}, !- Handle {00000000-0000-0000-0091-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7544,16 +9931,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000003}, !- Handle {00000000-0000-0000-0091-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7579,16 +9966,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000004}, !- Handle {00000000-0000-0000-0091-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7614,16 +10001,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000005}, !- Handle {00000000-0000-0000-0091-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7684,16 +10071,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000007}, !- Handle {00000000-0000-0000-0091-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7719,16 +10106,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000008}, !- Handle {00000000-0000-0000-0091-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7789,16 +10176,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000010}, !- Handle {00000000-0000-0000-0091-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7894,16 +10281,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000013}, !- Handle {00000000-0000-0000-0091-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -7999,16 +10386,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0079-000000000016}, !- Handle {00000000-0000-0000-0091-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -12229,7 +14616,7 @@ OS:WaterHeater:Mixed, Electricity, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0064-000000000021}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0064-000000000023}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 0.0132874553128062, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -12239,8 +14626,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0015-000000000149}, !- Use Side Inlet Node Name - {00000000-0000-0000-0015-000000000150}, !- Use Side Outlet Node Name + {00000000-0000-0000-0015-000000000249}, !- Use Side Inlet Node Name + {00000000-0000-0000-0015-000000000250}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -12263,8 +14650,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000001}, !- Handle Core_bottom WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000166}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000167}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000266}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000267}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12277,8 +14664,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000002}, !- Handle Core_mid WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000170}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000171}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000270}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000271}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12291,8 +14678,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000003}, !- Handle Core_top WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0015-000000000174}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000175}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000274}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000275}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12305,8 +14692,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000178}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000179}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000278}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000279}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12319,8 +14706,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000182}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000183}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000282}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000283}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12333,8 +14720,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000186}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000187}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000286}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000287}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12347,8 +14734,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000190}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000191}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000290}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000291}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12361,8 +14748,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000194}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000195}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000294}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000295}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12375,8 +14762,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000198}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000199}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000298}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000299}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12389,8 +14776,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000202}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000203}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000302}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000303}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12403,8 +14790,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000206}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000207}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000306}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000307}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12417,8 +14804,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000210}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000211}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000310}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000311}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12431,8 +14818,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000214}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000215}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000314}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000315}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12445,8 +14832,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0015-000000000218}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000219}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000318}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000319}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12459,8 +14846,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0097-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0015-000000000222}, !- Inlet Node Name - {00000000-0000-0000-0015-000000000223}, !- Outlet Node Name + {00000000-0000-0000-0015-000000000322}, !- Inlet Node Name + {00000000-0000-0000-0015-000000000323}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -12761,32 +15148,102 @@ OS:ZoneHVAC:Baseboard:Convective:Electric, OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0103-000000000002}, !- Handle - Zone HVAC Baseboard Convective Electric 2, !- Name + Zone HVAC Baseboard Convective Electric 10, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0103-000000000003}, !- Handle - Zone HVAC Baseboard Convective Electric 3, !- Name + Zone HVAC Baseboard Convective Electric 11, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0103-000000000004}, !- Handle - Zone HVAC Baseboard Convective Electric 4, !- Name + Zone HVAC Baseboard Convective Electric 12, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency OS:ZoneHVAC:Baseboard:Convective:Electric, {00000000-0000-0000-0103-000000000005}, !- Handle + Zone HVAC Baseboard Convective Electric 13, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000006}, !- Handle + Zone HVAC Baseboard Convective Electric 14, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000007}, !- Handle + Zone HVAC Baseboard Convective Electric 15, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000008}, !- Handle + Zone HVAC Baseboard Convective Electric 2, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000009}, !- Handle + Zone HVAC Baseboard Convective Electric 3, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000010}, !- Handle + Zone HVAC Baseboard Convective Electric 4, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000011}, !- Handle Zone HVAC Baseboard Convective Electric 5, !- Name {00000000-0000-0000-0061-000000000001}, !- Availability Schedule autosize, !- Nominal Capacity {W} 1; !- Efficiency +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000012}, !- Handle + Zone HVAC Baseboard Convective Electric 6, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000013}, !- Handle + Zone HVAC Baseboard Convective Electric 7, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000014}, !- Handle + Zone HVAC Baseboard Convective Electric 8, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + +OS:ZoneHVAC:Baseboard:Convective:Electric, + {00000000-0000-0000-0103-000000000015}, !- Handle + Zone HVAC Baseboard Convective Electric 9, !- Name + {00000000-0000-0000-0061-000000000001}, !- Availability Schedule + autosize, !- Nominal Capacity {W} + 1; !- Efficiency + OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name @@ -12810,12 +15267,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000003}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000009}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12826,12 +15283,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000008}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12842,12 +15299,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000004}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000010}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12858,12 +15315,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0103-000000000005}, !- Zone Equipment 1 + {00000000-0000-0000-0103-000000000011}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -12889,59 +15346,159 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000012}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0104-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0091-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0103-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 diff --git a/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm b/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm index 8fe1f18b5c..355e98fbe6 100644 --- a/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm +++ b/test/necb/regression_tests/expected/MediumOffice-NECB2020-NaturalGas-CAN_AB_Calgary.osm @@ -1,6 +1,6 @@ OS:AdditionalProperties, {00000000-0000-0000-0001-000000000001}, !- Handle - {00000000-0000-0000-0066-000000000023}, !- Object Name + {00000000-0000-0000-0066-000000000027}, !- Object Name max_occ_in_spaces, !- Feature Name 1 Double, !- Feature Data Type 1 83.066608825093468, !- Feature Value 1 @@ -16,22 +16,98 @@ OS:AdditionalProperties, OS:AdditionalProperties, {00000000-0000-0000-0001-000000000002}, !- Handle - {00000000-0000-0000-0012-000000000001}; !- Object Name + {00000000-0000-0000-0066-000000000025}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.066608825093468, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 OS:AdditionalProperties, {00000000-0000-0000-0001-000000000003}, !- Handle + {00000000-0000-0000-0066-000000000026}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 83.066608825093468, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 5, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-01-01 01:00:00 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-01-01 01:00:00 UTC; !- Feature Value 4 + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000004}, !- Handle + {00000000-0000-0000-0012-000000000001}; !- Object Name + +OS:AdditionalProperties, + {00000000-0000-0000-0001-000000000005}, !- Handle {00000000-0000-0000-0012-000000000002}; !- Object Name OS:AirLoopHVAC, {00000000-0000-0000-0002-000000000001}, !- Handle - sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1, !- Name , !- Controller List Name - {00000000-0000-0000-0066-000000000023}, !- Availability Schedule + {00000000-0000-0000-0066-000000000025}, !- Availability Schedule {00000000-0000-0000-0008-000000000001}, !- Availability Manager List Name autosize, !- Design Supply Air Flow Rate {m3/s} 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name , !- Connector List Name + {00000000-0000-0000-0017-000000000207}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000210}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000209}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000208}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000002}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000002}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000002}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2, !- Name + , !- Controller List Name + {00000000-0000-0000-0066-000000000026}, !- Availability Schedule + {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {00000000-0000-0000-0017-000000000301}, !- Supply Side Inlet Node Name + {00000000-0000-0000-0017-000000000304}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000303}, !- Demand Side Inlet Node A + {00000000-0000-0000-0017-000000000302}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {00000000-0000-0000-0004-000000000003}, !- Demand Mixer Name + {00000000-0000-0000-0005-000000000003}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:AirLoopHVAC, + {00000000-0000-0000-0002-000000000003}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv|, !- Name + , !- Controller List Name + {00000000-0000-0000-0066-000000000027}, !- Availability Schedule + {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name {00000000-0000-0000-0017-000000000115}, !- Supply Side Inlet Node Name {00000000-0000-0000-0017-000000000118}, !- Demand Side Outlet Node Name {00000000-0000-0000-0017-000000000117}, !- Demand Side Inlet Node A @@ -51,10 +127,32 @@ OS:AirLoopHVAC:OutdoorAirSystem, , !- Outdoor Air Equipment List Name , !- Availability Manager List Name {00000000-0000-0000-0017-000000000132}, !- Mixed Air Node Name - {00000000-0000-0000-0017-000000000295}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0017-000000000296}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000483}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000484}, !- Relief Air Stream Node Name {00000000-0000-0000-0017-000000000136}; !- Return Air Stream Node Name +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000002}, !- Handle + Air Loop HVAC Outdoor Air System 2, !- Name + {00000000-0000-0000-0022-000000000002}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000226}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000489}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000490}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000230}; !- Return Air Stream Node Name + +OS:AirLoopHVAC:OutdoorAirSystem, + {00000000-0000-0000-0003-000000000003}, !- Handle + Air Loop HVAC Outdoor Air System 3, !- Name + {00000000-0000-0000-0022-000000000003}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {00000000-0000-0000-0017-000000000320}, !- Mixed Air Node Name + {00000000-0000-0000-0017-000000000495}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0017-000000000496}, !- Relief Air Stream Node Name + {00000000-0000-0000-0017-000000000324}; !- Return Air Stream Node Name + OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0004-000000000001}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name @@ -65,6 +163,26 @@ OS:AirLoopHVAC:ZoneMixer, {00000000-0000-0000-0017-000000000189}, !- Inlet Node Name 4 {00000000-0000-0000-0017-000000000203}; !- Inlet Node Name 5 +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000002}, !- Handle + Air Loop HVAC Zone Mixer 2, !- Name + {00000000-0000-0000-0017-000000000212}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000241}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000255}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000269}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000283}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000297}; !- Inlet Node Name 5 + +OS:AirLoopHVAC:ZoneMixer, + {00000000-0000-0000-0004-000000000003}, !- Handle + Air Loop HVAC Zone Mixer 3, !- Name + {00000000-0000-0000-0017-000000000306}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000335}, !- Inlet Node Name 1 + {00000000-0000-0000-0017-000000000349}, !- Inlet Node Name 2 + {00000000-0000-0000-0017-000000000363}, !- Inlet Node Name 3 + {00000000-0000-0000-0017-000000000377}, !- Inlet Node Name 4 + {00000000-0000-0000-0017-000000000391}; !- Inlet Node Name 5 + OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0005-000000000001}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name @@ -75,6 +193,26 @@ OS:AirLoopHVAC:ZoneSplitter, {00000000-0000-0000-0017-000000000190}, !- Outlet Node Name 4 {00000000-0000-0000-0017-000000000204}; !- Outlet Node Name 5 +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000002}, !- Handle + Air Loop HVAC Zone Splitter 2, !- Name + {00000000-0000-0000-0017-000000000211}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000242}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000256}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000270}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000284}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000298}; !- Outlet Node Name 5 + +OS:AirLoopHVAC:ZoneSplitter, + {00000000-0000-0000-0005-000000000003}, !- Handle + Air Loop HVAC Zone Splitter 3, !- Name + {00000000-0000-0000-0017-000000000305}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000336}, !- Outlet Node Name 1 + {00000000-0000-0000-0017-000000000350}, !- Outlet Node Name 2 + {00000000-0000-0000-0017-000000000364}, !- Outlet Node Name 3 + {00000000-0000-0000-0017-000000000378}, !- Outlet Node Name 4 + {00000000-0000-0000-0017-000000000392}; !- Outlet Node Name 5 + OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000001}, !- Handle Air Terminal Single Duct VAV Reheat 1, !- Name @@ -85,7 +223,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000011}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000150}, !- Air Outlet Node Name @@ -98,6 +236,132 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, OS:AirTerminal:SingleDuct:VAV:Reheat, {00000000-0000-0000-0006-000000000002}, !- Handle + Air Terminal Single Duct VAV Reheat 10, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000299}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000300}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000003}, !- Handle + Air Terminal Single Duct VAV Reheat 11, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000337}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000338}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000004}, !- Handle + Air Terminal Single Duct VAV Reheat 12, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000351}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000007}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000352}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000005}, !- Handle + Air Terminal Single Duct VAV Reheat 13, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000365}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000008}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000366}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000006}, !- Handle + Air Terminal Single Duct VAV Reheat 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000379}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000009}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000380}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000007}, !- Handle + Air Terminal Single Duct VAV Reheat 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000393}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000010}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000394}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000008}, !- Handle Air Terminal Single Duct VAV Reheat 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000163}, !- Air Inlet Node Name @@ -106,7 +370,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000012}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000164}, !- Air Outlet Node Name @@ -118,7 +382,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000003}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Handle Air Terminal Single Duct VAV Reheat 3, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000177}, !- Air Inlet Node Name @@ -127,7 +391,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000004}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000013}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000178}, !- Air Outlet Node Name @@ -139,7 +403,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000004}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Handle Air Terminal Single Duct VAV Reheat 4, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000191}, !- Air Inlet Node Name @@ -148,7 +412,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000005}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000014}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000192}, !- Air Outlet Node Name @@ -160,7 +424,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, No; !- Control For Outdoor Air OS:AirTerminal:SingleDuct:VAV:Reheat, - {00000000-0000-0000-0006-000000000005}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Handle Air Terminal Single Duct VAV Reheat 5, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0017-000000000205}, !- Air Inlet Node Name @@ -169,7 +433,7 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 0.3, !- Constant Minimum Air Flow Fraction 0.26250716784, !- Fixed Minimum Air Flow Rate {m3/s} , !- Minimum Air Flow Fraction Schedule Name - {00000000-0000-0000-0015-000000000006}, !- Reheat Coil Name + {00000000-0000-0000-0015-000000000015}, !- Reheat Coil Name AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} {00000000-0000-0000-0017-000000000206}, !- Air Outlet Node Name @@ -180,6 +444,90 @@ OS:AirTerminal:SingleDuct:VAV:Reheat, 43, !- Maximum Reheat Air Temperature {C} No; !- Control For Outdoor Air +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000012}, !- Handle + Air Terminal Single Duct VAV Reheat 6, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000243}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 1.96707314364, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000017}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000244}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000013}, !- Handle + Air Terminal Single Duct VAV Reheat 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000257}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000018}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000258}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000014}, !- Handle + Air Terminal Single Duct VAV Reheat 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000271}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.2625243882, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000002}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000272}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {00000000-0000-0000-0006-000000000015}, !- Handle + Air Terminal Single Duct VAV Reheat 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0017-000000000285}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0.41467628196, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {00000000-0000-0000-0015-000000000003}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000286}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 43, !- Maximum Reheat Air Temperature {C} + No; !- Control For Outdoor Air + OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0007-000000000001}, !- Handle Availability Manager Night Cycle 1, !- Name @@ -194,43 +542,81 @@ OS:AvailabilityManager:NightCycle, {00000000-0000-0000-0051-000000000003}, !- Heating Control Zone or Zone List Name {00000000-0000-0000-0051-000000000004}; !- Heating Zone Fans Only Zone or Zone List Name -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000001}, !- Handle - Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name - {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 - -OS:AvailabilityManagerAssignmentList, - {00000000-0000-0000-0008-000000000002}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000002}, !- Handle + Availability Manager Night Cycle 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0051-000000000005}, !- Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000006}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000007}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000008}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManager:NightCycle, + {00000000-0000-0000-0007-000000000003}, !- Handle + Availability Manager Night Cycle 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1, !- Thermostat Tolerance {deltaC} + , !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {00000000-0000-0000-0051-000000000009}, !- Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000010}, !- Cooling Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000011}, !- Heating Control Zone or Zone List Name + {00000000-0000-0000-0051-000000000012}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000001}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name + {00000000-0000-0000-0007-000000000002}; !- Availability Manager Name 1 + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000002}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name + {00000000-0000-0000-0007-000000000003}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000003}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {00000000-0000-0000-0007-000000000001}; !- Availability Manager Name 1 OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000004}, !- Handle - Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name OS:AvailabilityManagerAssignmentList, {00000000-0000-0000-0008-000000000005}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000006}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name + +OS:AvailabilityManagerAssignmentList, + {00000000-0000-0000-0008-000000000007}, !- Handle Plant Loop 1 AvailabilityManagerAssignmentList; !- Name OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000001}, !- Handle - Primary Boiler 332kBtu/hr 0.9 Thermal Eff, !- Name + Primary Boiler 1560kBtu/hr 0.9 Thermal Eff, !- Name NaturalGas, !- Fuel Type - 97372.1572414182, !- Nominal Capacity {W} + 457205.59780454, !- Nominal Capacity {W} 0.9, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name , !- Design Water Flow Rate {m3/s} - , !- Minimum Part Load Ratio + 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio {00000000-0000-0000-0017-000000000048}, !- Boiler Water Inlet Node Name {00000000-0000-0000-0017-000000000049}, !- Boiler Water Outlet Node Name 99, !- Water Outlet Upper Temperature Limit {C} - ConstantFlow, !- Boiler Flow Mode + LeavingSetpointModulated, !- Boiler Flow Mode 0, !- On Cycle Parasitic Electric Load {W} 0, !- Off Cycle Parasitic Fuel Load {W} 1, !- Sizing Factor @@ -238,9 +624,9 @@ OS:Boiler:HotWater, OS:Boiler:HotWater, {00000000-0000-0000-0009-000000000002}, !- Handle - Secondary Boiler 332kBtu/hr 0.9 Thermal Eff, !- Name + Secondary Boiler 0kBtu/hr 0.9 AFUE, !- Name NaturalGas, !- Fuel Type - 97372.1572414182, !- Nominal Capacity {W} + 0.001, !- Nominal Capacity {W} 0.9, !- Nominal Thermal Efficiency , !- Efficiency Curve Temperature Evaluation Variable {00000000-0000-0000-0027-000000000001}, !- Normalized Boiler Efficiency Curve Name @@ -306,8 +692,8 @@ OS:BuildingStory, OS:Chiller:Electric:EIR, {00000000-0000-0000-0012-000000000001}, !- Handle - Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton, !- Name - 90258.9344239522, !- Reference Capacity {W} + Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton, !- Name + 227561.829243193, !- Reference Capacity {W} 4.51476251604621, !- Reference COP {W/W} , !- Reference Leaving Chilled Water Temperature {C} , !- Reference Entering Condenser Fluid Temperature {C} @@ -350,9 +736,9 @@ OS:Chiller:Electric:EIR, , !- Reference Entering Condenser Fluid Temperature {C} Autosize, !- Reference Chilled Water Flow Rate {m3/s} , !- Reference Condenser Fluid Flow Rate {m3/s} - {00000000-0000-0000-0026-000000000005}, !- Cooling Capacity Function of Temperature Curve Name - {00000000-0000-0000-0026-000000000006}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name - {00000000-0000-0000-0028-000000000003}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + {00000000-0000-0000-0026-000000000007}, !- Cooling Capacity Function of Temperature Curve Name + {00000000-0000-0000-0026-000000000008}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {00000000-0000-0000-0028-000000000004}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name 0.25, !- Minimum Part Load Ratio , !- Maximum Part Load Ratio , !- Optimum Part Load Ratio @@ -403,6 +789,42 @@ OS:Coil:Cooling:Water, , !- Type of Analysis ; !- Heat Exchanger Configuration +OS:Coil:Cooling:Water, + {00000000-0000-0000-0014-000000000002}, !- Handle + Coil Cooling Water 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000218}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000219}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000227}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000224}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:Coil:Cooling:Water, + {00000000-0000-0000-0014-000000000003}, !- Handle + Coil Cooling Water 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {00000000-0000-0000-0017-000000000312}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000313}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000321}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000318}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000001}, !- Handle Coil Heating Water 1, !- Name @@ -423,6 +845,168 @@ OS:Coil:Heating:Water, OS:Coil:Heating:Water, {00000000-0000-0000-0015-000000000002}, !- Handle + Coil Heating Water 10, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000260}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000261}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 10816.4048194885, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000003}, !- Handle + Coil Heating Water 11, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000274}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000275}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 5886.98766231537, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000004}, !- Handle + Coil Heating Water 12, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000288}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000289}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 11633.1632137299, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000005}, !- Handle + Coil Heating Water 13, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000308}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000309}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000319}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000316}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000006}, !- Handle + Coil Heating Water 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000326}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000327}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 20259.9005699158, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000007}, !- Handle + Coil Heating Water 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000340}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000341}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 13369.1064834595, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000008}, !- Handle + Coil Heating Water 16, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000354}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000355}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 11202.1511077881, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000009}, !- Handle + Coil Heating Water 17, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000368}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000369}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 6669.87683773041, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000010}, !- Handle + Coil Heating Water 18, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000382}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000383}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 12228.19647789, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000011}, !- Handle Coil Heating Water 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -432,7 +1016,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 22253.7697792053, !- Rated Capacity {W} + 11816.5915489197, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -440,7 +1024,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000003}, !- Handle + {00000000-0000-0000-0015-000000000012}, !- Handle Coil Heating Water 3, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -450,7 +1034,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 13966.3979530334, !- Rated Capacity {W} + 10983.2056045532, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -458,7 +1042,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000004}, !- Handle + {00000000-0000-0000-0015-000000000013}, !- Handle Coil Heating Water 4, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -468,7 +1052,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 11994.1851139069, !- Rated Capacity {W} + 9967.39811897278, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -476,7 +1060,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000005}, !- Handle + {00000000-0000-0000-0015-000000000014}, !- Handle Coil Heating Water 5, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -486,7 +1070,7 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 6781.3985824585, !- Rated Capacity {W} + 5375.52763223648, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -494,7 +1078,7 @@ OS:Coil:Heating:Water, ; !- Rated Ratio for Air and Water Convection OS:Coil:Heating:Water, - {00000000-0000-0000-0015-000000000006}, !- Handle + {00000000-0000-0000-0015-000000000015}, !- Handle Coil Heating Water 6, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name , !- U-Factor Times Area Value {W/K} @@ -504,7 +1088,61 @@ OS:Coil:Heating:Water, , !- Air Inlet Node Name , !- Air Outlet Node Name NominalCapacity, !- Performance Input Method - 13260.2620124817, !- Rated Capacity {W} + 11305.0475120544, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000016}, !- Handle + Coil Heating Water 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000214}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000215}, !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000225}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000222}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000017}, !- Handle + Coil Heating Water 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000232}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000233}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 17045.9644317627, !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Heating:Water, + {00000000-0000-0000-0015-000000000018}, !- Handle + Coil Heating Water 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {00000000-0000-0000-0017-000000000246}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000247}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + 12589.4295215607, !- Rated Capacity {W} , !- Rated Inlet Water Temperature {C} , !- Rated Inlet Air Temperature {C} , !- Rated Outlet Water Temperature {C} @@ -526,7 +1164,7 @@ OS:Coil:Heating:Water:Baseboard, OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000002}, !- Handle - Coil Heating Water Baseboard 2, !- Name + Coil Heating Water Baseboard 10, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -534,12 +1172,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000156}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000157}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000292}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000293}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000003}, !- Handle - Coil Heating Water Baseboard 3, !- Name + Coil Heating Water Baseboard 11, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -547,12 +1185,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000170}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000171}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000330}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000331}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000004}, !- Handle - Coil Heating Water Baseboard 4, !- Name + Coil Heating Water Baseboard 12, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -560,12 +1198,12 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000184}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000185}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000344}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000345}; !- Water Outlet Node Name OS:Coil:Heating:Water:Baseboard, {00000000-0000-0000-0016-000000000005}, !- Handle - Coil Heating Water Baseboard 5, !- Name + Coil Heating Water Baseboard 13, !- Name HeatingDesignCapacity, !- Heating Design Capacity Method autosize, !- Heating Design Capacity {W} 0, !- Heating Design Capacity Per Floor Area {W/m2} @@ -573,22 +1211,152 @@ OS:Coil:Heating:Water:Baseboard, , !- U-Factor Times Area Value {W/K} , !- Maximum Water Flow Rate {m3/s} , !- Convergence Tolerance - {00000000-0000-0000-0017-000000000198}, !- Water Inlet Node Name - {00000000-0000-0000-0017-000000000199}; !- Water Outlet Node Name + {00000000-0000-0000-0017-000000000358}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000359}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0017-000000000001}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000006}, !- Handle + Coil Heating Water Baseboard 14, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000372}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000373}; !- Water Outlet Node Name -OS:Connection, - {00000000-0000-0000-0017-000000000002}, !- Handle - , !- Source Object - 11, !- Outlet Port - , !- Target Object - 2; !- Inlet Port +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000007}, !- Handle + Coil Heating Water Baseboard 15, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000386}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000387}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000008}, !- Handle + Coil Heating Water Baseboard 2, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000156}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000157}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000009}, !- Handle + Coil Heating Water Baseboard 3, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000170}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000171}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000010}, !- Handle + Coil Heating Water Baseboard 4, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000184}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000185}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000011}, !- Handle + Coil Heating Water Baseboard 5, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000198}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000199}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000012}, !- Handle + Coil Heating Water Baseboard 6, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000236}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000237}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000013}, !- Handle + Coil Heating Water Baseboard 7, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000250}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000251}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000014}, !- Handle + Coil Heating Water Baseboard 8, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000264}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000265}; !- Water Outlet Node Name + +OS:Coil:Heating:Water:Baseboard, + {00000000-0000-0000-0016-000000000015}, !- Handle + Coil Heating Water Baseboard 9, !- Name + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 0, !- Heating Design Capacity Per Floor Area {W/m2} + 0.8, !- Fraction of Autosized Heating Design Capacity + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + , !- Convergence Tolerance + {00000000-0000-0000-0017-000000000278}, !- Water Inlet Node Name + {00000000-0000-0000-0017-000000000279}; !- Water Outlet Node Name + +OS:Connection, + {00000000-0000-0000-0017-000000000001}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000002}, !- Handle + , !- Source Object + 11, !- Outlet Port + , !- Target Object + 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000003}, !- Handle @@ -706,35 +1474,35 @@ OS:Connection, {00000000-0000-0000-0017-000000000019}, !- Handle {00000000-0000-0000-0094-000000000013}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000020}, !- Target Object + {00000000-0000-0000-0052-000000000025}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000020}, !- Handle {00000000-0000-0000-0094-000000000018}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000025}, !- Target Object + {00000000-0000-0000-0052-000000000035}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000021}, !- Handle {00000000-0000-0000-0094-000000000014}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000021}, !- Target Object + {00000000-0000-0000-0052-000000000027}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000022}, !- Handle {00000000-0000-0000-0094-000000000015}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000022}, !- Target Object + {00000000-0000-0000-0052-000000000029}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000023}, !- Handle {00000000-0000-0000-0094-000000000009}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000016}, !- Target Object + {00000000-0000-0000-0052-000000000017}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -748,14 +1516,14 @@ OS:Connection, {00000000-0000-0000-0017-000000000025}, !- Handle {00000000-0000-0000-0094-000000000016}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000023}, !- Target Object + {00000000-0000-0000-0052-000000000031}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000026}, !- Handle {00000000-0000-0000-0094-000000000010}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000017}, !- Target Object + {00000000-0000-0000-0052-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -769,7 +1537,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000028}, !- Handle {00000000-0000-0000-0094-000000000017}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000024}, !- Target Object + {00000000-0000-0000-0052-000000000033}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -790,7 +1558,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000031}, !- Handle {00000000-0000-0000-0094-000000000011}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000018}, !- Target Object + {00000000-0000-0000-0052-000000000021}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -811,7 +1579,7 @@ OS:Connection, {00000000-0000-0000-0017-000000000034}, !- Handle {00000000-0000-0000-0094-000000000012}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000019}, !- Target Object + {00000000-0000-0000-0052-000000000023}, !- Target Object 2; !- Inlet Port OS:Connection, @@ -832,19 +1600,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000037}, !- Handle {00000000-0000-0000-0057-000000000003}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000080}, !- Target Object + {00000000-0000-0000-0052-000000000162}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000038}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000126}, !- Target Object + {00000000-0000-0000-0052-000000000208}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000039}, !- Handle - {00000000-0000-0000-0052-000000000081}, !- Source Object + {00000000-0000-0000-0052-000000000163}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000003}, !- Target Object 15; !- Inlet Port @@ -853,12 +1621,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000040}, !- Handle {00000000-0000-0000-0057-000000000003}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000078}, !- Target Object + {00000000-0000-0000-0052-000000000160}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000041}, !- Handle - {00000000-0000-0000-0052-000000000078}, !- Source Object + {00000000-0000-0000-0052-000000000160}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000002}, !- Target Object 2; !- Inlet Port @@ -867,26 +1635,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000042}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000043}, !- Target Object + {00000000-0000-0000-0052-000000000079}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000043}, !- Handle {00000000-0000-0000-0018-000000000002}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000079}, !- Target Object + {00000000-0000-0000-0052-000000000161}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000044}, !- Handle - {00000000-0000-0000-0052-000000000079}, !- Source Object + {00000000-0000-0000-0052-000000000161}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000003}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000045}, !- Handle - {00000000-0000-0000-0052-000000000080}, !- Source Object + {00000000-0000-0000-0052-000000000162}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000001}, !- Target Object 2; !- Inlet Port @@ -895,19 +1663,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000046}, !- Handle {00000000-0000-0000-0060-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000132}, !- Target Object + {00000000-0000-0000-0052-000000000214}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000047}, !- Handle - {00000000-0000-0000-0052-000000000132}, !- Source Object + {00000000-0000-0000-0052-000000000214}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000048}, !- Handle - {00000000-0000-0000-0052-000000000126}, !- Source Object + {00000000-0000-0000-0052-000000000208}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000001}, !- Target Object 11; !- Inlet Port @@ -916,12 +1684,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000049}, !- Handle {00000000-0000-0000-0009-000000000001}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000127}, !- Target Object + {00000000-0000-0000-0052-000000000209}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000050}, !- Handle - {00000000-0000-0000-0052-000000000127}, !- Source Object + {00000000-0000-0000-0052-000000000209}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 3; !- Inlet Port @@ -930,12 +1698,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000051}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000135}, !- Target Object + {00000000-0000-0000-0052-000000000217}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000052}, !- Handle - {00000000-0000-0000-0052-000000000135}, !- Source Object + {00000000-0000-0000-0052-000000000217}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0009-000000000002}, !- Target Object 11; !- Inlet Port @@ -944,12 +1712,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000053}, !- Handle {00000000-0000-0000-0009-000000000002}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000136}, !- Target Object + {00000000-0000-0000-0052-000000000218}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000054}, !- Handle - {00000000-0000-0000-0052-000000000136}, !- Source Object + {00000000-0000-0000-0052-000000000218}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 4; !- Inlet Port @@ -958,12 +1726,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000055}, !- Handle {00000000-0000-0000-0019-000000000001}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000111}, !- Target Object + {00000000-0000-0000-0052-000000000193}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000056}, !- Handle - {00000000-0000-0000-0052-000000000111}, !- Source Object + {00000000-0000-0000-0052-000000000193}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000001}, !- Target Object 2; !- Inlet Port @@ -972,12 +1740,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000057}, !- Handle {00000000-0000-0000-0056-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000112}, !- Target Object + {00000000-0000-0000-0052-000000000194}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000058}, !- Handle - {00000000-0000-0000-0052-000000000112}, !- Source Object + {00000000-0000-0000-0052-000000000194}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000001}, !- Target Object 5; !- Inlet Port @@ -986,12 +1754,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000059}, !- Handle {00000000-0000-0000-0018-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000114}, !- Target Object + {00000000-0000-0000-0052-000000000196}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000060}, !- Handle - {00000000-0000-0000-0052-000000000114}, !- Source Object + {00000000-0000-0000-0052-000000000196}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000003}, !- Target Object 2; !- Inlet Port @@ -1000,26 +1768,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000061}, !- Handle {00000000-0000-0000-0056-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000081}, !- Target Object + {00000000-0000-0000-0052-000000000163}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000062}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000038}, !- Target Object + {00000000-0000-0000-0052-000000000068}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000063}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000130}, !- Target Object + {00000000-0000-0000-0052-000000000212}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000064}, !- Handle - {00000000-0000-0000-0052-000000000039}, !- Source Object + {00000000-0000-0000-0052-000000000069}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 15; !- Inlet Port @@ -1028,12 +1796,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000065}, !- Handle {00000000-0000-0000-0057-000000000001}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000036}, !- Target Object + {00000000-0000-0000-0052-000000000066}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000066}, !- Handle - {00000000-0000-0000-0052-000000000036}, !- Source Object + {00000000-0000-0000-0052-000000000066}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000004}, !- Target Object 2; !- Inlet Port @@ -1042,26 +1810,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000067}, !- Handle {00000000-0000-0000-0019-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000040}, !- Target Object + {00000000-0000-0000-0052-000000000070}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000068}, !- Handle {00000000-0000-0000-0018-000000000004}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000037}, !- Target Object + {00000000-0000-0000-0052-000000000067}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000069}, !- Handle - {00000000-0000-0000-0052-000000000037}, !- Source Object + {00000000-0000-0000-0052-000000000067}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000001}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000070}, !- Handle - {00000000-0000-0000-0052-000000000038}, !- Source Object + {00000000-0000-0000-0052-000000000068}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000002}, !- Target Object 2; !- Inlet Port @@ -1070,19 +1838,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000071}, !- Handle {00000000-0000-0000-0060-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000133}, !- Target Object + {00000000-0000-0000-0052-000000000215}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000072}, !- Handle - {00000000-0000-0000-0052-000000000133}, !- Source Object + {00000000-0000-0000-0052-000000000215}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000073}, !- Handle - {00000000-0000-0000-0052-000000000130}, !- Source Object + {00000000-0000-0000-0052-000000000212}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 15; !- Inlet Port @@ -1091,12 +1859,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000074}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000131}, !- Target Object + {00000000-0000-0000-0052-000000000213}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000075}, !- Handle - {00000000-0000-0000-0052-000000000131}, !- Source Object + {00000000-0000-0000-0052-000000000213}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 3; !- Inlet Port @@ -1105,12 +1873,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000076}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000139}, !- Target Object + {00000000-0000-0000-0052-000000000221}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000077}, !- Handle - {00000000-0000-0000-0052-000000000139}, !- Source Object + {00000000-0000-0000-0052-000000000221}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 15; !- Inlet Port @@ -1119,12 +1887,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000078}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000140}, !- Target Object + {00000000-0000-0000-0052-000000000222}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000079}, !- Handle - {00000000-0000-0000-0052-000000000140}, !- Source Object + {00000000-0000-0000-0052-000000000222}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 4; !- Inlet Port @@ -1133,12 +1901,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000080}, !- Handle {00000000-0000-0000-0019-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000115}, !- Target Object + {00000000-0000-0000-0052-000000000197}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000081}, !- Handle - {00000000-0000-0000-0052-000000000115}, !- Source Object + {00000000-0000-0000-0052-000000000197}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000004}, !- Target Object 2; !- Inlet Port @@ -1147,12 +1915,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000082}, !- Handle {00000000-0000-0000-0056-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000116}, !- Target Object + {00000000-0000-0000-0052-000000000198}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000083}, !- Handle - {00000000-0000-0000-0052-000000000116}, !- Source Object + {00000000-0000-0000-0052-000000000198}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000003}, !- Target Object 5; !- Inlet Port @@ -1161,12 +1929,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000084}, !- Handle {00000000-0000-0000-0018-000000000003}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000117}, !- Target Object + {00000000-0000-0000-0052-000000000199}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000085}, !- Handle - {00000000-0000-0000-0052-000000000117}, !- Source Object + {00000000-0000-0000-0052-000000000199}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000005}, !- Target Object 2; !- Inlet Port @@ -1175,26 +1943,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000086}, !- Handle {00000000-0000-0000-0056-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000039}, !- Target Object + {00000000-0000-0000-0052-000000000069}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000087}, !- Handle {00000000-0000-0000-0057-000000000002}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000068}, !- Target Object + {00000000-0000-0000-0052-000000000150}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000088}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000070}, !- Target Object + {00000000-0000-0000-0052-000000000152}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000089}, !- Handle - {00000000-0000-0000-0052-000000000069}, !- Source Object + {00000000-0000-0000-0052-000000000151}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000002}, !- Target Object 15; !- Inlet Port @@ -1203,12 +1971,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000090}, !- Handle {00000000-0000-0000-0057-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000066}, !- Target Object + {00000000-0000-0000-0052-000000000148}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000091}, !- Handle - {00000000-0000-0000-0052-000000000066}, !- Source Object + {00000000-0000-0000-0052-000000000148}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000006}, !- Target Object 2; !- Inlet Port @@ -1217,26 +1985,26 @@ OS:Connection, {00000000-0000-0000-0017-000000000092}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000128}, !- Target Object + {00000000-0000-0000-0052-000000000210}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000093}, !- Handle {00000000-0000-0000-0018-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000067}, !- Target Object + {00000000-0000-0000-0052-000000000149}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000094}, !- Handle - {00000000-0000-0000-0052-000000000067}, !- Source Object + {00000000-0000-0000-0052-000000000149}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000002}, !- Target Object 18; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000095}, !- Handle - {00000000-0000-0000-0052-000000000068}, !- Source Object + {00000000-0000-0000-0052-000000000150}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0060-000000000003}, !- Target Object 2; !- Inlet Port @@ -1245,19 +2013,19 @@ OS:Connection, {00000000-0000-0000-0017-000000000096}, !- Handle {00000000-0000-0000-0060-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000134}, !- Target Object + {00000000-0000-0000-0052-000000000216}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000097}, !- Handle - {00000000-0000-0000-0052-000000000134}, !- Source Object + {00000000-0000-0000-0052-000000000216}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000098}, !- Handle - {00000000-0000-0000-0052-000000000070}, !- Source Object + {00000000-0000-0000-0052-000000000152}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0025-000000000001}, !- Target Object 2; !- Inlet Port @@ -1266,12 +2034,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000099}, !- Handle {00000000-0000-0000-0025-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000071}, !- Target Object + {00000000-0000-0000-0052-000000000153}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000100}, !- Handle - {00000000-0000-0000-0052-000000000071}, !- Source Object + {00000000-0000-0000-0052-000000000153}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 3; !- Inlet Port @@ -1280,12 +2048,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000101}, !- Handle {00000000-0000-0000-0019-000000000005}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000118}, !- Target Object + {00000000-0000-0000-0052-000000000200}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000102}, !- Handle - {00000000-0000-0000-0052-000000000118}, !- Source Object + {00000000-0000-0000-0052-000000000200}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000006}, !- Target Object 2; !- Inlet Port @@ -1294,12 +2062,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000103}, !- Handle {00000000-0000-0000-0056-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000119}, !- Target Object + {00000000-0000-0000-0052-000000000201}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000104}, !- Handle - {00000000-0000-0000-0052-000000000119}, !- Source Object + {00000000-0000-0000-0052-000000000201}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000005}, !- Target Object 4; !- Inlet Port @@ -1308,12 +2076,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000105}, !- Handle {00000000-0000-0000-0018-000000000005}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000120}, !- Target Object + {00000000-0000-0000-0052-000000000202}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000106}, !- Handle - {00000000-0000-0000-0052-000000000120}, !- Source Object + {00000000-0000-0000-0052-000000000202}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000007}, !- Target Object 2; !- Inlet Port @@ -1322,12 +2090,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000107}, !- Handle {00000000-0000-0000-0056-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000069}, !- Target Object + {00000000-0000-0000-0052-000000000151}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000108}, !- Handle - {00000000-0000-0000-0052-000000000128}, !- Source Object + {00000000-0000-0000-0052-000000000210}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000001}, !- Target Object 17; !- Inlet Port @@ -1336,12 +2104,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000109}, !- Handle {00000000-0000-0000-0012-000000000001}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000129}, !- Target Object + {00000000-0000-0000-0052-000000000211}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000110}, !- Handle - {00000000-0000-0000-0052-000000000129}, !- Source Object + {00000000-0000-0000-0052-000000000211}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 3; !- Inlet Port @@ -1350,12 +2118,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000111}, !- Handle {00000000-0000-0000-0019-000000000006}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000137}, !- Target Object + {00000000-0000-0000-0052-000000000219}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000112}, !- Handle - {00000000-0000-0000-0052-000000000137}, !- Source Object + {00000000-0000-0000-0052-000000000219}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0012-000000000002}, !- Target Object 17; !- Inlet Port @@ -1364,47 +2132,47 @@ OS:Connection, {00000000-0000-0000-0017-000000000113}, !- Handle {00000000-0000-0000-0012-000000000002}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000138}, !- Target Object + {00000000-0000-0000-0052-000000000220}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000114}, !- Handle - {00000000-0000-0000-0052-000000000138}, !- Source Object + {00000000-0000-0000-0052-000000000220}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000006}, !- Target Object 4; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000115}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0002-000000000003}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000147}, !- Target Object + {00000000-0000-0000-0052-000000000245}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000116}, !- Handle - {00000000-0000-0000-0052-000000000148}, !- Source Object + {00000000-0000-0000-0052-000000000246}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000117}, !- Handle - {00000000-0000-0000-0002-000000000001}, !- Source Object + {00000000-0000-0000-0002-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000142}, !- Target Object + {00000000-0000-0000-0052-000000000240}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000118}, !- Handle - {00000000-0000-0000-0052-000000000143}, !- Source Object + {00000000-0000-0000-0052-000000000241}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0002-000000000001}, !- Target Object + {00000000-0000-0000-0002-000000000003}, !- Target Object 10; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000119}, !- Handle - {00000000-0000-0000-0052-000000000142}, !- Source Object + {00000000-0000-0000-0052-000000000240}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0005-000000000001}, !- Target Object 2; !- Inlet Port @@ -1413,12 +2181,12 @@ OS:Connection, {00000000-0000-0000-0017-000000000120}, !- Handle {00000000-0000-0000-0004-000000000001}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000143}, !- Target Object + {00000000-0000-0000-0052-000000000241}, !- Target Object 2; !- Inlet Port OS:Connection, {00000000-0000-0000-0017-000000000121}, !- Handle - {00000000-0000-0000-0052-000000000043}, !- Source Object + {00000000-0000-0000-0052-000000000079}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0015-000000000001}, !- Target Object 5; !- Inlet Port @@ -1427,1239 +2195,2639 @@ OS:Connection, {00000000-0000-0000-0017-000000000122}, !- Handle {00000000-0000-0000-0015-000000000001}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000045}, !- Target Object + {00000000-0000-0000-0052-000000000081}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000123}, !- Handle + {00000000-0000-0000-0052-000000000081}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000124}, !- Handle + {00000000-0000-0000-0052-000000000070}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000125}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000072}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000126}, !- Handle + {00000000-0000-0000-0052-000000000072}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000004}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000127}, !- Handle + {00000000-0000-0000-0041-000000000006}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000246}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000128}, !- Handle + {00000000-0000-0000-0015-000000000001}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000080}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000129}, !- Handle + {00000000-0000-0000-0052-000000000080}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000006}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000130}, !- Handle + {00000000-0000-0000-0014-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000071}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000131}, !- Handle + {00000000-0000-0000-0052-000000000071}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000001}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000132}, !- Handle + {00000000-0000-0000-0003-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000242}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000133}, !- Handle + {00000000-0000-0000-0052-000000000242}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000134}, !- Handle + {00000000-0000-0000-0052-000000000245}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000003}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000135}, !- Handle + {00000000-0000-0000-0041-000000000003}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000225}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000136}, !- Handle + {00000000-0000-0000-0052-000000000225}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000001}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000137}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000101}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000138}, !- Handle + {00000000-0000-0000-0052-000000000101}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000011}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000139}, !- Handle + {00000000-0000-0000-0015-000000000011}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000102}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000140}, !- Handle + {00000000-0000-0000-0052-000000000102}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000141}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000118}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000142}, !- Handle + {00000000-0000-0000-0052-000000000118}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000001}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000143}, !- Handle + {00000000-0000-0000-0016-000000000001}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000119}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000144}, !- Handle + {00000000-0000-0000-0052-000000000119}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000145}, !- Handle + {00000000-0000-0000-0052-000000000037}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000146}, !- Handle + {00000000-0000-0000-0058-000000000018}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000014}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000147}, !- Handle + {00000000-0000-0000-0052-000000000014}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000148}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000036}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000149}, !- Handle + {00000000-0000-0000-0052-000000000036}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000001}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000150}, !- Handle + {00000000-0000-0000-0006-000000000001}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000151}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000103}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000152}, !- Handle + {00000000-0000-0000-0052-000000000103}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000012}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000153}, !- Handle + {00000000-0000-0000-0015-000000000012}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000104}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000154}, !- Handle + {00000000-0000-0000-0052-000000000104}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000155}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000132}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000156}, !- Handle + {00000000-0000-0000-0052-000000000132}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000008}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000157}, !- Handle + {00000000-0000-0000-0016-000000000008}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000133}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000158}, !- Handle + {00000000-0000-0000-0052-000000000133}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000159}, !- Handle + {00000000-0000-0000-0052-000000000051}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000040}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000160}, !- Handle + {00000000-0000-0000-0058-000000000042}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000008}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000161}, !- Handle + {00000000-0000-0000-0052-000000000008}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000162}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000050}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000163}, !- Handle + {00000000-0000-0000-0052-000000000050}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000008}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000164}, !- Handle + {00000000-0000-0000-0006-000000000008}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000051}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000165}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000105}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000166}, !- Handle + {00000000-0000-0000-0052-000000000105}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000013}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000167}, !- Handle + {00000000-0000-0000-0015-000000000013}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000106}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000168}, !- Handle + {00000000-0000-0000-0052-000000000106}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000169}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000134}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000170}, !- Handle + {00000000-0000-0000-0052-000000000134}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000009}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000171}, !- Handle + {00000000-0000-0000-0016-000000000009}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000135}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000172}, !- Handle + {00000000-0000-0000-0052-000000000135}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000173}, !- Handle + {00000000-0000-0000-0052-000000000053}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000174}, !- Handle + {00000000-0000-0000-0058-000000000033}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000006}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000175}, !- Handle + {00000000-0000-0000-0052-000000000006}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000176}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000177}, !- Handle + {00000000-0000-0000-0052-000000000052}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000009}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000178}, !- Handle + {00000000-0000-0000-0006-000000000009}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000053}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000179}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000107}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000180}, !- Handle + {00000000-0000-0000-0052-000000000107}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000014}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000181}, !- Handle + {00000000-0000-0000-0015-000000000014}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000108}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000182}, !- Handle + {00000000-0000-0000-0052-000000000108}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000183}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000136}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000184}, !- Handle + {00000000-0000-0000-0052-000000000136}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000010}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000185}, !- Handle + {00000000-0000-0000-0016-000000000010}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000137}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000186}, !- Handle + {00000000-0000-0000-0052-000000000137}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000187}, !- Handle + {00000000-0000-0000-0052-000000000055}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000049}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000188}, !- Handle + {00000000-0000-0000-0058-000000000051}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000010}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000189}, !- Handle + {00000000-0000-0000-0052-000000000010}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000190}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000054}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000191}, !- Handle + {00000000-0000-0000-0052-000000000054}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000010}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000192}, !- Handle + {00000000-0000-0000-0006-000000000010}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000055}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000193}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000109}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000194}, !- Handle + {00000000-0000-0000-0052-000000000109}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000015}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000195}, !- Handle + {00000000-0000-0000-0015-000000000015}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000110}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000196}, !- Handle + {00000000-0000-0000-0052-000000000110}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000197}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000138}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000198}, !- Handle + {00000000-0000-0000-0052-000000000138}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000011}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000199}, !- Handle + {00000000-0000-0000-0016-000000000011}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000139}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000200}, !- Handle + {00000000-0000-0000-0052-000000000139}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 13; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000201}, !- Handle + {00000000-0000-0000-0052-000000000057}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000052}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000202}, !- Handle + {00000000-0000-0000-0058-000000000054}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000012}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000203}, !- Handle + {00000000-0000-0000-0052-000000000012}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000001}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000204}, !- Handle + {00000000-0000-0000-0005-000000000001}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000056}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000205}, !- Handle + {00000000-0000-0000-0052-000000000056}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000011}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000206}, !- Handle + {00000000-0000-0000-0006-000000000011}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000057}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000207}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000231}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000208}, !- Handle + {00000000-0000-0000-0052-000000000232}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000209}, !- Handle + {00000000-0000-0000-0002-000000000001}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000226}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000210}, !- Handle + {00000000-0000-0000-0052-000000000227}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000001}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000211}, !- Handle + {00000000-0000-0000-0052-000000000226}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000002}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000212}, !- Handle + {00000000-0000-0000-0004-000000000002}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000227}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000213}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 14, !- Outlet Port + {00000000-0000-0000-0052-000000000111}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000214}, !- Handle + {00000000-0000-0000-0052-000000000111}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000016}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000215}, !- Handle + {00000000-0000-0000-0015-000000000016}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000113}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000216}, !- Handle + {00000000-0000-0000-0052-000000000113}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000217}, !- Handle + {00000000-0000-0000-0019-000000000004}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000073}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000218}, !- Handle + {00000000-0000-0000-0052-000000000073}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000219}, !- Handle + {00000000-0000-0000-0014-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000075}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000220}, !- Handle + {00000000-0000-0000-0052-000000000075}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000004}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000221}, !- Handle + {00000000-0000-0000-0041-000000000004}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000232}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000222}, !- Handle + {00000000-0000-0000-0015-000000000016}, !- Source Object + 8, !- Outlet Port + {00000000-0000-0000-0052-000000000112}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000223}, !- Handle + {00000000-0000-0000-0052-000000000112}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000004}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000224}, !- Handle + {00000000-0000-0000-0014-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000074}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000225}, !- Handle + {00000000-0000-0000-0052-000000000074}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000016}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000226}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000228}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000227}, !- Handle + {00000000-0000-0000-0052-000000000228}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0014-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000228}, !- Handle + {00000000-0000-0000-0052-000000000231}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0041-000000000001}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000229}, !- Handle + {00000000-0000-0000-0041-000000000001}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000223}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000230}, !- Handle + {00000000-0000-0000-0052-000000000223}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000231}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0052-000000000114}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000232}, !- Handle + {00000000-0000-0000-0052-000000000114}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000017}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000233}, !- Handle + {00000000-0000-0000-0015-000000000017}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000115}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000234}, !- Handle + {00000000-0000-0000-0052-000000000115}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000235}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 16, !- Outlet Port + {00000000-0000-0000-0052-000000000140}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000236}, !- Handle + {00000000-0000-0000-0052-000000000140}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000012}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000237}, !- Handle + {00000000-0000-0000-0016-000000000012}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000141}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000238}, !- Handle + {00000000-0000-0000-0052-000000000141}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000239}, !- Handle + {00000000-0000-0000-0052-000000000059}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000001}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000240}, !- Handle + {00000000-0000-0000-0058-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000024}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000241}, !- Handle + {00000000-0000-0000-0052-000000000024}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000242}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0052-000000000058}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000243}, !- Handle + {00000000-0000-0000-0052-000000000058}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000012}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000244}, !- Handle + {00000000-0000-0000-0006-000000000012}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000059}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000245}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 17, !- Outlet Port + {00000000-0000-0000-0052-000000000116}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000246}, !- Handle + {00000000-0000-0000-0052-000000000116}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000018}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000247}, !- Handle + {00000000-0000-0000-0015-000000000018}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000117}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000248}, !- Handle + {00000000-0000-0000-0052-000000000117}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000249}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 18, !- Outlet Port + {00000000-0000-0000-0052-000000000142}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000250}, !- Handle + {00000000-0000-0000-0052-000000000142}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000013}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000251}, !- Handle + {00000000-0000-0000-0016-000000000013}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000143}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000252}, !- Handle + {00000000-0000-0000-0052-000000000143}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 18; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000253}, !- Handle + {00000000-0000-0000-0052-000000000061}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000254}, !- Handle + {00000000-0000-0000-0058-000000000039}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000020}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000255}, !- Handle + {00000000-0000-0000-0052-000000000020}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 4; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000256}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 4, !- Outlet Port + {00000000-0000-0000-0052-000000000060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000257}, !- Handle + {00000000-0000-0000-0052-000000000060}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000013}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000258}, !- Handle + {00000000-0000-0000-0006-000000000013}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000061}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000259}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 19, !- Outlet Port + {00000000-0000-0000-0052-000000000082}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000260}, !- Handle + {00000000-0000-0000-0052-000000000082}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000261}, !- Handle + {00000000-0000-0000-0015-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000083}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000262}, !- Handle + {00000000-0000-0000-0052-000000000083}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 19; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000263}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 20, !- Outlet Port + {00000000-0000-0000-0052-000000000144}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000264}, !- Handle + {00000000-0000-0000-0052-000000000144}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000014}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000265}, !- Handle + {00000000-0000-0000-0016-000000000014}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000145}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000266}, !- Handle + {00000000-0000-0000-0052-000000000145}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 20; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000267}, !- Handle + {00000000-0000-0000-0052-000000000063}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000046}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000268}, !- Handle + {00000000-0000-0000-0058-000000000048}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000269}, !- Handle + {00000000-0000-0000-0052-000000000022}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000270}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000062}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000271}, !- Handle + {00000000-0000-0000-0052-000000000062}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000014}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000272}, !- Handle + {00000000-0000-0000-0006-000000000014}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000273}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 21, !- Outlet Port + {00000000-0000-0000-0052-000000000084}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000274}, !- Handle + {00000000-0000-0000-0052-000000000084}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000003}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000275}, !- Handle + {00000000-0000-0000-0015-000000000003}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000085}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000276}, !- Handle + {00000000-0000-0000-0052-000000000085}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 21; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000277}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 22, !- Outlet Port + {00000000-0000-0000-0052-000000000146}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000278}, !- Handle + {00000000-0000-0000-0052-000000000146}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000015}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000279}, !- Handle + {00000000-0000-0000-0016-000000000015}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000147}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000280}, !- Handle + {00000000-0000-0000-0052-000000000147}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 22; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000281}, !- Handle + {00000000-0000-0000-0052-000000000065}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000022}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000282}, !- Handle + {00000000-0000-0000-0058-000000000024}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000018}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000283}, !- Handle + {00000000-0000-0000-0052-000000000018}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000284}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000064}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000285}, !- Handle + {00000000-0000-0000-0052-000000000064}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000015}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000286}, !- Handle + {00000000-0000-0000-0006-000000000015}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000065}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000287}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 23, !- Outlet Port + {00000000-0000-0000-0052-000000000086}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000288}, !- Handle + {00000000-0000-0000-0052-000000000086}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000004}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000289}, !- Handle + {00000000-0000-0000-0015-000000000004}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000087}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000290}, !- Handle + {00000000-0000-0000-0052-000000000087}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 23; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000291}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 24, !- Outlet Port + {00000000-0000-0000-0052-000000000120}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000292}, !- Handle + {00000000-0000-0000-0052-000000000120}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0016-000000000002}, !- Target Object + 9; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000293}, !- Handle + {00000000-0000-0000-0016-000000000002}, !- Source Object + 10, !- Outlet Port + {00000000-0000-0000-0052-000000000121}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000294}, !- Handle + {00000000-0000-0000-0052-000000000121}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0018-000000000002}, !- Target Object + 24; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000295}, !- Handle + {00000000-0000-0000-0052-000000000039}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0058-000000000013}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000296}, !- Handle + {00000000-0000-0000-0058-000000000015}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000016}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000297}, !- Handle + {00000000-0000-0000-0052-000000000016}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0004-000000000002}, !- Target Object + 7; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000298}, !- Handle + {00000000-0000-0000-0005-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000038}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000299}, !- Handle + {00000000-0000-0000-0052-000000000038}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0006-000000000002}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000300}, !- Handle + {00000000-0000-0000-0006-000000000002}, !- Source Object + 12, !- Outlet Port + {00000000-0000-0000-0052-000000000039}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000301}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object + 9, !- Outlet Port + {00000000-0000-0000-0052-000000000238}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000302}, !- Handle + {00000000-0000-0000-0052-000000000239}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000303}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- Source Object + 11, !- Outlet Port + {00000000-0000-0000-0052-000000000233}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000304}, !- Handle + {00000000-0000-0000-0052-000000000234}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0002-000000000002}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000305}, !- Handle + {00000000-0000-0000-0052-000000000233}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0005-000000000003}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000306}, !- Handle + {00000000-0000-0000-0004-000000000003}, !- Source Object + 2, !- Outlet Port + {00000000-0000-0000-0052-000000000234}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000307}, !- Handle + {00000000-0000-0000-0019-000000000002}, !- Source Object + 25, !- Outlet Port + {00000000-0000-0000-0052-000000000088}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000308}, !- Handle + {00000000-0000-0000-0052-000000000088}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0015-000000000005}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000309}, !- Handle + {00000000-0000-0000-0015-000000000005}, !- Source Object + 6, !- Outlet Port + {00000000-0000-0000-0052-000000000090}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000123}, !- Handle - {00000000-0000-0000-0052-000000000045}, !- Source Object + {00000000-0000-0000-0017-000000000310}, !- Handle + {00000000-0000-0000-0052-000000000090}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 3; !- Inlet Port + 25; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000124}, !- Handle - {00000000-0000-0000-0052-000000000040}, !- Source Object + {00000000-0000-0000-0017-000000000311}, !- Handle + {00000000-0000-0000-0019-000000000004}, !- Source Object + 5, !- Outlet Port + {00000000-0000-0000-0052-000000000076}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000312}, !- Handle + {00000000-0000-0000-0052-000000000076}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object + {00000000-0000-0000-0014-000000000003}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000125}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000313}, !- Handle + {00000000-0000-0000-0014-000000000003}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000042}, !- Target Object + {00000000-0000-0000-0052-000000000078}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000126}, !- Handle - {00000000-0000-0000-0052-000000000042}, !- Source Object + {00000000-0000-0000-0017-000000000314}, !- Handle + {00000000-0000-0000-0052-000000000078}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000004}, !- Target Object - 3; !- Inlet Port + 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000127}, !- Handle - {00000000-0000-0000-0041-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000315}, !- Handle + {00000000-0000-0000-0041-000000000005}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000148}, !- Target Object + {00000000-0000-0000-0052-000000000239}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000128}, !- Handle - {00000000-0000-0000-0015-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000316}, !- Handle + {00000000-0000-0000-0015-000000000005}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0052-000000000044}, !- Target Object + {00000000-0000-0000-0052-000000000089}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000129}, !- Handle - {00000000-0000-0000-0052-000000000044}, !- Source Object + {00000000-0000-0000-0017-000000000317}, !- Handle + {00000000-0000-0000-0052-000000000089}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000002}, !- Target Object + {00000000-0000-0000-0041-000000000005}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000130}, !- Handle - {00000000-0000-0000-0014-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000318}, !- Handle + {00000000-0000-0000-0014-000000000003}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000041}, !- Target Object + {00000000-0000-0000-0052-000000000077}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000131}, !- Handle - {00000000-0000-0000-0052-000000000041}, !- Source Object + {00000000-0000-0000-0017-000000000319}, !- Handle + {00000000-0000-0000-0052-000000000077}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000001}, !- Target Object + {00000000-0000-0000-0015-000000000005}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000132}, !- Handle - {00000000-0000-0000-0003-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000320}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000144}, !- Target Object + {00000000-0000-0000-0052-000000000235}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000133}, !- Handle - {00000000-0000-0000-0052-000000000144}, !- Source Object + {00000000-0000-0000-0017-000000000321}, !- Handle + {00000000-0000-0000-0052-000000000235}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0014-000000000001}, !- Target Object + {00000000-0000-0000-0014-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000134}, !- Handle - {00000000-0000-0000-0052-000000000147}, !- Source Object + {00000000-0000-0000-0017-000000000322}, !- Handle + {00000000-0000-0000-0052-000000000238}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0041-000000000001}, !- Target Object + {00000000-0000-0000-0041-000000000002}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000135}, !- Handle - {00000000-0000-0000-0041-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000323}, !- Handle + {00000000-0000-0000-0041-000000000002}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000141}, !- Target Object + {00000000-0000-0000-0052-000000000224}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000136}, !- Handle - {00000000-0000-0000-0052-000000000141}, !- Source Object + {00000000-0000-0000-0017-000000000324}, !- Handle + {00000000-0000-0000-0052-000000000224}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0003-000000000001}, !- Target Object + {00000000-0000-0000-0003-000000000003}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000137}, !- Handle + {00000000-0000-0000-0017-000000000325}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 4, !- Outlet Port - {00000000-0000-0000-0052-000000000046}, !- Target Object + 26, !- Outlet Port + {00000000-0000-0000-0052-000000000091}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000138}, !- Handle - {00000000-0000-0000-0052-000000000046}, !- Source Object + {00000000-0000-0000-0017-000000000326}, !- Handle + {00000000-0000-0000-0052-000000000091}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000002}, !- Target Object + {00000000-0000-0000-0015-000000000006}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000139}, !- Handle - {00000000-0000-0000-0015-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000327}, !- Handle + {00000000-0000-0000-0015-000000000006}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000047}, !- Target Object + {00000000-0000-0000-0052-000000000092}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000140}, !- Handle - {00000000-0000-0000-0052-000000000047}, !- Source Object + {00000000-0000-0000-0017-000000000328}, !- Handle + {00000000-0000-0000-0052-000000000092}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 4; !- Inlet Port + 26; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000141}, !- Handle + {00000000-0000-0000-0017-000000000329}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 5, !- Outlet Port - {00000000-0000-0000-0052-000000000056}, !- Target Object + 27, !- Outlet Port + {00000000-0000-0000-0052-000000000122}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000142}, !- Handle - {00000000-0000-0000-0052-000000000056}, !- Source Object + {00000000-0000-0000-0017-000000000330}, !- Handle + {00000000-0000-0000-0052-000000000122}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000001}, !- Target Object + {00000000-0000-0000-0016-000000000003}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000143}, !- Handle - {00000000-0000-0000-0016-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000331}, !- Handle + {00000000-0000-0000-0016-000000000003}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000057}, !- Target Object + {00000000-0000-0000-0052-000000000123}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000144}, !- Handle - {00000000-0000-0000-0052-000000000057}, !- Source Object + {00000000-0000-0000-0017-000000000332}, !- Handle + {00000000-0000-0000-0052-000000000123}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 5; !- Inlet Port + 27; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000145}, !- Handle - {00000000-0000-0000-0052-000000000027}, !- Source Object + {00000000-0000-0000-0017-000000000333}, !- Handle + {00000000-0000-0000-0052-000000000041}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000016}, !- Target Object + {00000000-0000-0000-0058-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000146}, !- Handle - {00000000-0000-0000-0058-000000000018}, !- Source Object + {00000000-0000-0000-0017-000000000334}, !- Handle + {00000000-0000-0000-0058-000000000012}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000014}, !- Target Object + {00000000-0000-0000-0052-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000147}, !- Handle - {00000000-0000-0000-0052-000000000014}, !- Source Object + {00000000-0000-0000-0017-000000000335}, !- Handle + {00000000-0000-0000-0052-000000000028}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000148}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000336}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000026}, !- Target Object + {00000000-0000-0000-0052-000000000040}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000149}, !- Handle - {00000000-0000-0000-0052-000000000026}, !- Source Object + {00000000-0000-0000-0017-000000000337}, !- Handle + {00000000-0000-0000-0052-000000000040}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000001}, !- Target Object + {00000000-0000-0000-0006-000000000003}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000150}, !- Handle - {00000000-0000-0000-0006-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000338}, !- Handle + {00000000-0000-0000-0006-000000000003}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000027}, !- Target Object + {00000000-0000-0000-0052-000000000041}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000151}, !- Handle + {00000000-0000-0000-0017-000000000339}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 6, !- Outlet Port - {00000000-0000-0000-0052-000000000048}, !- Target Object + 28, !- Outlet Port + {00000000-0000-0000-0052-000000000093}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000152}, !- Handle - {00000000-0000-0000-0052-000000000048}, !- Source Object + {00000000-0000-0000-0017-000000000340}, !- Handle + {00000000-0000-0000-0052-000000000093}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000003}, !- Target Object + {00000000-0000-0000-0015-000000000007}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000153}, !- Handle - {00000000-0000-0000-0015-000000000003}, !- Source Object + {00000000-0000-0000-0017-000000000341}, !- Handle + {00000000-0000-0000-0015-000000000007}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000049}, !- Target Object + {00000000-0000-0000-0052-000000000094}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000154}, !- Handle - {00000000-0000-0000-0052-000000000049}, !- Source Object + {00000000-0000-0000-0017-000000000342}, !- Handle + {00000000-0000-0000-0052-000000000094}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 6; !- Inlet Port + 28; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000155}, !- Handle + {00000000-0000-0000-0017-000000000343}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 7, !- Outlet Port - {00000000-0000-0000-0052-000000000058}, !- Target Object + 29, !- Outlet Port + {00000000-0000-0000-0052-000000000124}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000156}, !- Handle - {00000000-0000-0000-0052-000000000058}, !- Source Object + {00000000-0000-0000-0017-000000000344}, !- Handle + {00000000-0000-0000-0052-000000000124}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000002}, !- Target Object + {00000000-0000-0000-0016-000000000004}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000157}, !- Handle - {00000000-0000-0000-0016-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000345}, !- Handle + {00000000-0000-0000-0016-000000000004}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000059}, !- Target Object + {00000000-0000-0000-0052-000000000125}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000158}, !- Handle - {00000000-0000-0000-0052-000000000059}, !- Source Object + {00000000-0000-0000-0017-000000000346}, !- Handle + {00000000-0000-0000-0052-000000000125}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 7; !- Inlet Port + 29; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000159}, !- Handle - {00000000-0000-0000-0052-000000000029}, !- Source Object + {00000000-0000-0000-0017-000000000347}, !- Handle + {00000000-0000-0000-0052-000000000043}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000040}, !- Target Object + {00000000-0000-0000-0058-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000160}, !- Handle - {00000000-0000-0000-0058-000000000042}, !- Source Object + {00000000-0000-0000-0017-000000000348}, !- Handle + {00000000-0000-0000-0058-000000000006}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000008}, !- Target Object + {00000000-0000-0000-0052-000000000034}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000161}, !- Handle - {00000000-0000-0000-0052-000000000008}, !- Source Object + {00000000-0000-0000-0017-000000000349}, !- Handle + {00000000-0000-0000-0052-000000000034}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000162}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000350}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000028}, !- Target Object + {00000000-0000-0000-0052-000000000042}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000163}, !- Handle - {00000000-0000-0000-0052-000000000028}, !- Source Object + {00000000-0000-0000-0017-000000000351}, !- Handle + {00000000-0000-0000-0052-000000000042}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000002}, !- Target Object + {00000000-0000-0000-0006-000000000004}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000164}, !- Handle - {00000000-0000-0000-0006-000000000002}, !- Source Object + {00000000-0000-0000-0017-000000000352}, !- Handle + {00000000-0000-0000-0006-000000000004}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000029}, !- Target Object + {00000000-0000-0000-0052-000000000043}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000165}, !- Handle + {00000000-0000-0000-0017-000000000353}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 8, !- Outlet Port - {00000000-0000-0000-0052-000000000050}, !- Target Object + 30, !- Outlet Port + {00000000-0000-0000-0052-000000000095}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000166}, !- Handle - {00000000-0000-0000-0052-000000000050}, !- Source Object + {00000000-0000-0000-0017-000000000354}, !- Handle + {00000000-0000-0000-0052-000000000095}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000004}, !- Target Object + {00000000-0000-0000-0015-000000000008}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000167}, !- Handle - {00000000-0000-0000-0015-000000000004}, !- Source Object + {00000000-0000-0000-0017-000000000355}, !- Handle + {00000000-0000-0000-0015-000000000008}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000051}, !- Target Object + {00000000-0000-0000-0052-000000000096}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000168}, !- Handle - {00000000-0000-0000-0052-000000000051}, !- Source Object + {00000000-0000-0000-0017-000000000356}, !- Handle + {00000000-0000-0000-0052-000000000096}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 8; !- Inlet Port + 30; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000169}, !- Handle + {00000000-0000-0000-0017-000000000357}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 9, !- Outlet Port - {00000000-0000-0000-0052-000000000060}, !- Target Object + 31, !- Outlet Port + {00000000-0000-0000-0052-000000000126}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000170}, !- Handle - {00000000-0000-0000-0052-000000000060}, !- Source Object + {00000000-0000-0000-0017-000000000358}, !- Handle + {00000000-0000-0000-0052-000000000126}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000003}, !- Target Object + {00000000-0000-0000-0016-000000000005}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000171}, !- Handle - {00000000-0000-0000-0016-000000000003}, !- Source Object + {00000000-0000-0000-0017-000000000359}, !- Handle + {00000000-0000-0000-0016-000000000005}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000061}, !- Target Object + {00000000-0000-0000-0052-000000000127}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000172}, !- Handle - {00000000-0000-0000-0052-000000000061}, !- Source Object + {00000000-0000-0000-0017-000000000360}, !- Handle + {00000000-0000-0000-0052-000000000127}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 9; !- Inlet Port + 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000173}, !- Handle - {00000000-0000-0000-0052-000000000031}, !- Source Object + {00000000-0000-0000-0017-000000000361}, !- Handle + {00000000-0000-0000-0052-000000000045}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000031}, !- Target Object + {00000000-0000-0000-0058-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000174}, !- Handle - {00000000-0000-0000-0058-000000000033}, !- Source Object + {00000000-0000-0000-0017-000000000362}, !- Handle + {00000000-0000-0000-0058-000000000009}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000006}, !- Target Object + {00000000-0000-0000-0052-000000000026}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000175}, !- Handle - {00000000-0000-0000-0052-000000000006}, !- Source Object + {00000000-0000-0000-0017-000000000363}, !- Handle + {00000000-0000-0000-0052-000000000026}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000176}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000364}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000030}, !- Target Object + {00000000-0000-0000-0052-000000000044}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000177}, !- Handle - {00000000-0000-0000-0052-000000000030}, !- Source Object + {00000000-0000-0000-0017-000000000365}, !- Handle + {00000000-0000-0000-0052-000000000044}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000003}, !- Target Object + {00000000-0000-0000-0006-000000000005}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000178}, !- Handle - {00000000-0000-0000-0006-000000000003}, !- Source Object + {00000000-0000-0000-0017-000000000366}, !- Handle + {00000000-0000-0000-0006-000000000005}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000031}, !- Target Object + {00000000-0000-0000-0052-000000000045}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000179}, !- Handle + {00000000-0000-0000-0017-000000000367}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 10, !- Outlet Port - {00000000-0000-0000-0052-000000000052}, !- Target Object + 32, !- Outlet Port + {00000000-0000-0000-0052-000000000097}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000180}, !- Handle - {00000000-0000-0000-0052-000000000052}, !- Source Object + {00000000-0000-0000-0017-000000000368}, !- Handle + {00000000-0000-0000-0052-000000000097}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000005}, !- Target Object + {00000000-0000-0000-0015-000000000009}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000181}, !- Handle - {00000000-0000-0000-0015-000000000005}, !- Source Object + {00000000-0000-0000-0017-000000000369}, !- Handle + {00000000-0000-0000-0015-000000000009}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000053}, !- Target Object + {00000000-0000-0000-0052-000000000098}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000182}, !- Handle - {00000000-0000-0000-0052-000000000053}, !- Source Object + {00000000-0000-0000-0017-000000000370}, !- Handle + {00000000-0000-0000-0052-000000000098}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 10; !- Inlet Port + 32; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000183}, !- Handle + {00000000-0000-0000-0017-000000000371}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 11, !- Outlet Port - {00000000-0000-0000-0052-000000000062}, !- Target Object + 33, !- Outlet Port + {00000000-0000-0000-0052-000000000128}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000184}, !- Handle - {00000000-0000-0000-0052-000000000062}, !- Source Object + {00000000-0000-0000-0017-000000000372}, !- Handle + {00000000-0000-0000-0052-000000000128}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000004}, !- Target Object + {00000000-0000-0000-0016-000000000006}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000185}, !- Handle - {00000000-0000-0000-0016-000000000004}, !- Source Object + {00000000-0000-0000-0017-000000000373}, !- Handle + {00000000-0000-0000-0016-000000000006}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000063}, !- Target Object + {00000000-0000-0000-0052-000000000129}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000186}, !- Handle - {00000000-0000-0000-0052-000000000063}, !- Source Object + {00000000-0000-0000-0017-000000000374}, !- Handle + {00000000-0000-0000-0052-000000000129}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 11; !- Inlet Port + 33; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000187}, !- Handle - {00000000-0000-0000-0052-000000000033}, !- Source Object + {00000000-0000-0000-0017-000000000375}, !- Handle + {00000000-0000-0000-0052-000000000047}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000049}, !- Target Object + {00000000-0000-0000-0058-000000000019}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000188}, !- Handle - {00000000-0000-0000-0058-000000000051}, !- Source Object + {00000000-0000-0000-0017-000000000376}, !- Handle + {00000000-0000-0000-0058-000000000021}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000010}, !- Target Object + {00000000-0000-0000-0052-000000000030}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000189}, !- Handle - {00000000-0000-0000-0052-000000000010}, !- Source Object + {00000000-0000-0000-0017-000000000377}, !- Handle + {00000000-0000-0000-0052-000000000030}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000190}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000378}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000032}, !- Target Object + {00000000-0000-0000-0052-000000000046}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000191}, !- Handle - {00000000-0000-0000-0052-000000000032}, !- Source Object + {00000000-0000-0000-0017-000000000379}, !- Handle + {00000000-0000-0000-0052-000000000046}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000004}, !- Target Object + {00000000-0000-0000-0006-000000000006}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000192}, !- Handle - {00000000-0000-0000-0006-000000000004}, !- Source Object + {00000000-0000-0000-0017-000000000380}, !- Handle + {00000000-0000-0000-0006-000000000006}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000033}, !- Target Object + {00000000-0000-0000-0052-000000000047}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000193}, !- Handle + {00000000-0000-0000-0017-000000000381}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 12, !- Outlet Port - {00000000-0000-0000-0052-000000000054}, !- Target Object + 34, !- Outlet Port + {00000000-0000-0000-0052-000000000099}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000194}, !- Handle - {00000000-0000-0000-0052-000000000054}, !- Source Object + {00000000-0000-0000-0017-000000000382}, !- Handle + {00000000-0000-0000-0052-000000000099}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0015-000000000006}, !- Target Object + {00000000-0000-0000-0015-000000000010}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000195}, !- Handle - {00000000-0000-0000-0015-000000000006}, !- Source Object + {00000000-0000-0000-0017-000000000383}, !- Handle + {00000000-0000-0000-0015-000000000010}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000055}, !- Target Object + {00000000-0000-0000-0052-000000000100}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000196}, !- Handle - {00000000-0000-0000-0052-000000000055}, !- Source Object + {00000000-0000-0000-0017-000000000384}, !- Handle + {00000000-0000-0000-0052-000000000100}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 12; !- Inlet Port + 34; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000197}, !- Handle + {00000000-0000-0000-0017-000000000385}, !- Handle {00000000-0000-0000-0019-000000000002}, !- Source Object - 13, !- Outlet Port - {00000000-0000-0000-0052-000000000064}, !- Target Object + 35, !- Outlet Port + {00000000-0000-0000-0052-000000000130}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000198}, !- Handle - {00000000-0000-0000-0052-000000000064}, !- Source Object + {00000000-0000-0000-0017-000000000386}, !- Handle + {00000000-0000-0000-0052-000000000130}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0016-000000000005}, !- Target Object + {00000000-0000-0000-0016-000000000007}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000199}, !- Handle - {00000000-0000-0000-0016-000000000005}, !- Source Object + {00000000-0000-0000-0017-000000000387}, !- Handle + {00000000-0000-0000-0016-000000000007}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000065}, !- Target Object + {00000000-0000-0000-0052-000000000131}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000200}, !- Handle - {00000000-0000-0000-0052-000000000065}, !- Source Object + {00000000-0000-0000-0017-000000000388}, !- Handle + {00000000-0000-0000-0052-000000000131}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000002}, !- Target Object - 13; !- Inlet Port + 35; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000201}, !- Handle - {00000000-0000-0000-0052-000000000035}, !- Source Object + {00000000-0000-0000-0017-000000000389}, !- Handle + {00000000-0000-0000-0052-000000000049}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0058-000000000052}, !- Target Object + {00000000-0000-0000-0058-000000000028}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000202}, !- Handle - {00000000-0000-0000-0058-000000000054}, !- Source Object + {00000000-0000-0000-0017-000000000390}, !- Handle + {00000000-0000-0000-0058-000000000030}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000012}, !- Target Object + {00000000-0000-0000-0052-000000000032}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000203}, !- Handle - {00000000-0000-0000-0052-000000000012}, !- Source Object + {00000000-0000-0000-0017-000000000391}, !- Handle + {00000000-0000-0000-0052-000000000032}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0004-000000000001}, !- Target Object + {00000000-0000-0000-0004-000000000003}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000204}, !- Handle - {00000000-0000-0000-0005-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000392}, !- Handle + {00000000-0000-0000-0005-000000000003}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000034}, !- Target Object + {00000000-0000-0000-0052-000000000048}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000205}, !- Handle - {00000000-0000-0000-0052-000000000034}, !- Source Object + {00000000-0000-0000-0017-000000000393}, !- Handle + {00000000-0000-0000-0052-000000000048}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0006-000000000005}, !- Target Object + {00000000-0000-0000-0006-000000000007}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000206}, !- Handle - {00000000-0000-0000-0006-000000000005}, !- Source Object + {00000000-0000-0000-0017-000000000394}, !- Handle + {00000000-0000-0000-0006-000000000007}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000035}, !- Target Object + {00000000-0000-0000-0052-000000000049}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000207}, !- Handle + {00000000-0000-0000-0017-000000000395}, !- Handle {00000000-0000-0000-0057-000000000004}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000085}, !- Target Object + {00000000-0000-0000-0052-000000000167}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000208}, !- Handle + {00000000-0000-0000-0017-000000000396}, !- Handle {00000000-0000-0000-0019-000000000007}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0052-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000209}, !- Handle - {00000000-0000-0000-0052-000000000086}, !- Source Object + {00000000-0000-0000-0017-000000000397}, !- Handle + {00000000-0000-0000-0052-000000000168}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000004}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000210}, !- Handle + {00000000-0000-0000-0017-000000000398}, !- Handle {00000000-0000-0000-0057-000000000004}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000083}, !- Target Object + {00000000-0000-0000-0052-000000000165}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000211}, !- Handle - {00000000-0000-0000-0052-000000000083}, !- Source Object + {00000000-0000-0000-0017-000000000399}, !- Handle + {00000000-0000-0000-0052-000000000165}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000212}, !- Handle + {00000000-0000-0000-0017-000000000400}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000123}, !- Target Object + {00000000-0000-0000-0052-000000000205}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000213}, !- Handle - {00000000-0000-0000-0052-000000000084}, !- Source Object + {00000000-0000-0000-0017-000000000401}, !- Handle + {00000000-0000-0000-0052-000000000166}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0057-000000000004}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000214}, !- Handle - {00000000-0000-0000-0052-000000000085}, !- Source Object + {00000000-0000-0000-0017-000000000402}, !- Handle + {00000000-0000-0000-0052-000000000167}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0059-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000215}, !- Handle + {00000000-0000-0000-0017-000000000403}, !- Handle {00000000-0000-0000-0059-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000082}, !- Target Object + {00000000-0000-0000-0052-000000000164}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000216}, !- Handle - {00000000-0000-0000-0052-000000000082}, !- Source Object + {00000000-0000-0000-0017-000000000404}, !- Handle + {00000000-0000-0000-0052-000000000164}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0019-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000217}, !- Handle + {00000000-0000-0000-0017-000000000405}, !- Handle {00000000-0000-0000-0052-000000000001}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0098-000000000001}, !- Target Object 31; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000218}, !- Handle + {00000000-0000-0000-0017-000000000406}, !- Handle {00000000-0000-0000-0098-000000000001}, !- Source Object 32, !- Outlet Port {00000000-0000-0000-0052-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000219}, !- Handle + {00000000-0000-0000-0017-000000000407}, !- Handle {00000000-0000-0000-0052-000000000002}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000007}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000220}, !- Handle + {00000000-0000-0000-0017-000000000408}, !- Handle {00000000-0000-0000-0019-000000000007}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000121}, !- Target Object + {00000000-0000-0000-0052-000000000203}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000221}, !- Handle - {00000000-0000-0000-0052-000000000121}, !- Source Object + {00000000-0000-0000-0017-000000000409}, !- Handle + {00000000-0000-0000-0052-000000000203}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000222}, !- Handle + {00000000-0000-0000-0017-000000000410}, !- Handle {00000000-0000-0000-0056-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000122}, !- Target Object + {00000000-0000-0000-0052-000000000204}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000223}, !- Handle - {00000000-0000-0000-0052-000000000122}, !- Source Object + {00000000-0000-0000-0017-000000000411}, !- Handle + {00000000-0000-0000-0052-000000000204}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000007}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000224}, !- Handle - {00000000-0000-0000-0052-000000000123}, !- Source Object + {00000000-0000-0000-0017-000000000412}, !- Handle + {00000000-0000-0000-0052-000000000205}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000225}, !- Handle + {00000000-0000-0000-0017-000000000413}, !- Handle {00000000-0000-0000-0056-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000124}, !- Target Object + {00000000-0000-0000-0052-000000000206}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000226}, !- Handle - {00000000-0000-0000-0052-000000000124}, !- Source Object + {00000000-0000-0000-0017-000000000414}, !- Handle + {00000000-0000-0000-0052-000000000206}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 3; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000227}, !- Handle + {00000000-0000-0000-0017-000000000415}, !- Handle {00000000-0000-0000-0018-000000000007}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000125}, !- Target Object + {00000000-0000-0000-0052-000000000207}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000228}, !- Handle - {00000000-0000-0000-0052-000000000125}, !- Source Object + {00000000-0000-0000-0017-000000000416}, !- Handle + {00000000-0000-0000-0052-000000000207}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000229}, !- Handle + {00000000-0000-0000-0017-000000000417}, !- Handle {00000000-0000-0000-0056-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000086}, !- Target Object + {00000000-0000-0000-0052-000000000168}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000230}, !- Handle + {00000000-0000-0000-0017-000000000418}, !- Handle {00000000-0000-0000-0018-000000000008}, !- Source Object 2, !- Outlet Port - {00000000-0000-0000-0052-000000000113}, !- Target Object + {00000000-0000-0000-0052-000000000195}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000231}, !- Handle - {00000000-0000-0000-0052-000000000113}, !- Source Object + {00000000-0000-0000-0017-000000000419}, !- Handle + {00000000-0000-0000-0052-000000000195}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0056-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000232}, !- Handle + {00000000-0000-0000-0017-000000000420}, !- Handle {00000000-0000-0000-0056-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000084}, !- Target Object + {00000000-0000-0000-0052-000000000166}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000233}, !- Handle + {00000000-0000-0000-0017-000000000421}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 4, !- Outlet Port - {00000000-0000-0000-0052-000000000072}, !- Target Object + {00000000-0000-0000-0052-000000000154}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000234}, !- Handle - {00000000-0000-0000-0052-000000000072}, !- Source Object + {00000000-0000-0000-0017-000000000422}, !- Handle + {00000000-0000-0000-0052-000000000154}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000001}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000235}, !- Handle + {00000000-0000-0000-0017-000000000423}, !- Handle {00000000-0000-0000-0100-000000000001}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000073}, !- Target Object + {00000000-0000-0000-0052-000000000155}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000236}, !- Handle - {00000000-0000-0000-0052-000000000073}, !- Source Object + {00000000-0000-0000-0017-000000000424}, !- Handle + {00000000-0000-0000-0052-000000000155}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 4; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000237}, !- Handle + {00000000-0000-0000-0017-000000000425}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 5, !- Outlet Port - {00000000-0000-0000-0052-000000000074}, !- Target Object + {00000000-0000-0000-0052-000000000156}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000238}, !- Handle - {00000000-0000-0000-0052-000000000074}, !- Source Object + {00000000-0000-0000-0017-000000000426}, !- Handle + {00000000-0000-0000-0052-000000000156}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000002}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000239}, !- Handle + {00000000-0000-0000-0017-000000000427}, !- Handle {00000000-0000-0000-0100-000000000002}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000075}, !- Target Object + {00000000-0000-0000-0052-000000000157}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000240}, !- Handle - {00000000-0000-0000-0052-000000000075}, !- Source Object + {00000000-0000-0000-0017-000000000428}, !- Handle + {00000000-0000-0000-0052-000000000157}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 5; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000241}, !- Handle + {00000000-0000-0000-0017-000000000429}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 6, !- Outlet Port - {00000000-0000-0000-0052-000000000076}, !- Target Object + {00000000-0000-0000-0052-000000000158}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000242}, !- Handle - {00000000-0000-0000-0052-000000000076}, !- Source Object + {00000000-0000-0000-0017-000000000430}, !- Handle + {00000000-0000-0000-0052-000000000158}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000003}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000243}, !- Handle + {00000000-0000-0000-0017-000000000431}, !- Handle {00000000-0000-0000-0100-000000000003}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000077}, !- Target Object + {00000000-0000-0000-0052-000000000159}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000244}, !- Handle - {00000000-0000-0000-0052-000000000077}, !- Source Object + {00000000-0000-0000-0017-000000000432}, !- Handle + {00000000-0000-0000-0052-000000000159}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000245}, !- Handle + {00000000-0000-0000-0017-000000000433}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000087}, !- Target Object + {00000000-0000-0000-0052-000000000169}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000246}, !- Handle - {00000000-0000-0000-0052-000000000087}, !- Source Object + {00000000-0000-0000-0017-000000000434}, !- Handle + {00000000-0000-0000-0052-000000000169}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000004}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000247}, !- Handle + {00000000-0000-0000-0017-000000000435}, !- Handle {00000000-0000-0000-0100-000000000004}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000088}, !- Target Object + {00000000-0000-0000-0052-000000000170}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000248}, !- Handle - {00000000-0000-0000-0052-000000000088}, !- Source Object + {00000000-0000-0000-0017-000000000436}, !- Handle + {00000000-0000-0000-0052-000000000170}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 7; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000249}, !- Handle + {00000000-0000-0000-0017-000000000437}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 8, !- Outlet Port - {00000000-0000-0000-0052-000000000089}, !- Target Object + {00000000-0000-0000-0052-000000000171}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000250}, !- Handle - {00000000-0000-0000-0052-000000000089}, !- Source Object + {00000000-0000-0000-0017-000000000438}, !- Handle + {00000000-0000-0000-0052-000000000171}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000005}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000251}, !- Handle + {00000000-0000-0000-0017-000000000439}, !- Handle {00000000-0000-0000-0100-000000000005}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000090}, !- Target Object + {00000000-0000-0000-0052-000000000172}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000252}, !- Handle - {00000000-0000-0000-0052-000000000090}, !- Source Object + {00000000-0000-0000-0017-000000000440}, !- Handle + {00000000-0000-0000-0052-000000000172}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 8; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000253}, !- Handle + {00000000-0000-0000-0017-000000000441}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 9, !- Outlet Port - {00000000-0000-0000-0052-000000000091}, !- Target Object + {00000000-0000-0000-0052-000000000173}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000254}, !- Handle - {00000000-0000-0000-0052-000000000091}, !- Source Object + {00000000-0000-0000-0017-000000000442}, !- Handle + {00000000-0000-0000-0052-000000000173}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000006}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000255}, !- Handle + {00000000-0000-0000-0017-000000000443}, !- Handle {00000000-0000-0000-0100-000000000006}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000092}, !- Target Object + {00000000-0000-0000-0052-000000000174}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000256}, !- Handle - {00000000-0000-0000-0052-000000000092}, !- Source Object + {00000000-0000-0000-0017-000000000444}, !- Handle + {00000000-0000-0000-0052-000000000174}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 9; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000257}, !- Handle + {00000000-0000-0000-0017-000000000445}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 10, !- Outlet Port - {00000000-0000-0000-0052-000000000093}, !- Target Object + {00000000-0000-0000-0052-000000000175}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000258}, !- Handle - {00000000-0000-0000-0052-000000000093}, !- Source Object + {00000000-0000-0000-0017-000000000446}, !- Handle + {00000000-0000-0000-0052-000000000175}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000007}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000259}, !- Handle + {00000000-0000-0000-0017-000000000447}, !- Handle {00000000-0000-0000-0100-000000000007}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000094}, !- Target Object + {00000000-0000-0000-0052-000000000176}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000260}, !- Handle - {00000000-0000-0000-0052-000000000094}, !- Source Object + {00000000-0000-0000-0017-000000000448}, !- Handle + {00000000-0000-0000-0052-000000000176}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 10; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000261}, !- Handle + {00000000-0000-0000-0017-000000000449}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 11, !- Outlet Port - {00000000-0000-0000-0052-000000000095}, !- Target Object + {00000000-0000-0000-0052-000000000177}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000262}, !- Handle - {00000000-0000-0000-0052-000000000095}, !- Source Object + {00000000-0000-0000-0017-000000000450}, !- Handle + {00000000-0000-0000-0052-000000000177}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000008}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000263}, !- Handle + {00000000-0000-0000-0017-000000000451}, !- Handle {00000000-0000-0000-0100-000000000008}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000096}, !- Target Object + {00000000-0000-0000-0052-000000000178}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000264}, !- Handle - {00000000-0000-0000-0052-000000000096}, !- Source Object + {00000000-0000-0000-0017-000000000452}, !- Handle + {00000000-0000-0000-0052-000000000178}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 11; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000265}, !- Handle + {00000000-0000-0000-0017-000000000453}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 12, !- Outlet Port - {00000000-0000-0000-0052-000000000097}, !- Target Object + {00000000-0000-0000-0052-000000000179}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000266}, !- Handle - {00000000-0000-0000-0052-000000000097}, !- Source Object + {00000000-0000-0000-0017-000000000454}, !- Handle + {00000000-0000-0000-0052-000000000179}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000009}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000267}, !- Handle + {00000000-0000-0000-0017-000000000455}, !- Handle {00000000-0000-0000-0100-000000000009}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000098}, !- Target Object + {00000000-0000-0000-0052-000000000180}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000268}, !- Handle - {00000000-0000-0000-0052-000000000098}, !- Source Object + {00000000-0000-0000-0017-000000000456}, !- Handle + {00000000-0000-0000-0052-000000000180}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000269}, !- Handle + {00000000-0000-0000-0017-000000000457}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000099}, !- Target Object + {00000000-0000-0000-0052-000000000181}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000270}, !- Handle - {00000000-0000-0000-0052-000000000099}, !- Source Object + {00000000-0000-0000-0017-000000000458}, !- Handle + {00000000-0000-0000-0052-000000000181}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000010}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000271}, !- Handle + {00000000-0000-0000-0017-000000000459}, !- Handle {00000000-0000-0000-0100-000000000010}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000100}, !- Target Object + {00000000-0000-0000-0052-000000000182}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000272}, !- Handle - {00000000-0000-0000-0052-000000000100}, !- Source Object + {00000000-0000-0000-0017-000000000460}, !- Handle + {00000000-0000-0000-0052-000000000182}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 13; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000273}, !- Handle + {00000000-0000-0000-0017-000000000461}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 14, !- Outlet Port - {00000000-0000-0000-0052-000000000101}, !- Target Object + {00000000-0000-0000-0052-000000000183}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000274}, !- Handle - {00000000-0000-0000-0052-000000000101}, !- Source Object + {00000000-0000-0000-0017-000000000462}, !- Handle + {00000000-0000-0000-0052-000000000183}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000011}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000275}, !- Handle + {00000000-0000-0000-0017-000000000463}, !- Handle {00000000-0000-0000-0100-000000000011}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000102}, !- Target Object + {00000000-0000-0000-0052-000000000184}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000276}, !- Handle - {00000000-0000-0000-0052-000000000102}, !- Source Object + {00000000-0000-0000-0017-000000000464}, !- Handle + {00000000-0000-0000-0052-000000000184}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000277}, !- Handle + {00000000-0000-0000-0017-000000000465}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0052-000000000103}, !- Target Object + {00000000-0000-0000-0052-000000000185}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000278}, !- Handle - {00000000-0000-0000-0052-000000000103}, !- Source Object + {00000000-0000-0000-0017-000000000466}, !- Handle + {00000000-0000-0000-0052-000000000185}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000012}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000279}, !- Handle + {00000000-0000-0000-0017-000000000467}, !- Handle {00000000-0000-0000-0100-000000000012}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000104}, !- Target Object + {00000000-0000-0000-0052-000000000186}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000280}, !- Handle - {00000000-0000-0000-0052-000000000104}, !- Source Object + {00000000-0000-0000-0017-000000000468}, !- Handle + {00000000-0000-0000-0052-000000000186}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 15; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000281}, !- Handle + {00000000-0000-0000-0017-000000000469}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 16, !- Outlet Port - {00000000-0000-0000-0052-000000000105}, !- Target Object + {00000000-0000-0000-0052-000000000187}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000282}, !- Handle - {00000000-0000-0000-0052-000000000105}, !- Source Object + {00000000-0000-0000-0017-000000000470}, !- Handle + {00000000-0000-0000-0052-000000000187}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000013}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000283}, !- Handle + {00000000-0000-0000-0017-000000000471}, !- Handle {00000000-0000-0000-0100-000000000013}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000106}, !- Target Object + {00000000-0000-0000-0052-000000000188}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000284}, !- Handle - {00000000-0000-0000-0052-000000000106}, !- Source Object + {00000000-0000-0000-0017-000000000472}, !- Handle + {00000000-0000-0000-0052-000000000188}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 16; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000285}, !- Handle + {00000000-0000-0000-0017-000000000473}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 17, !- Outlet Port - {00000000-0000-0000-0052-000000000107}, !- Target Object + {00000000-0000-0000-0052-000000000189}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000286}, !- Handle - {00000000-0000-0000-0052-000000000107}, !- Source Object + {00000000-0000-0000-0017-000000000474}, !- Handle + {00000000-0000-0000-0052-000000000189}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000014}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000287}, !- Handle + {00000000-0000-0000-0017-000000000475}, !- Handle {00000000-0000-0000-0100-000000000014}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000108}, !- Target Object + {00000000-0000-0000-0052-000000000190}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000288}, !- Handle - {00000000-0000-0000-0052-000000000108}, !- Source Object + {00000000-0000-0000-0017-000000000476}, !- Handle + {00000000-0000-0000-0052-000000000190}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 17; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000289}, !- Handle + {00000000-0000-0000-0017-000000000477}, !- Handle {00000000-0000-0000-0019-000000000008}, !- Source Object 18, !- Outlet Port - {00000000-0000-0000-0052-000000000109}, !- Target Object + {00000000-0000-0000-0052-000000000191}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000290}, !- Handle - {00000000-0000-0000-0052-000000000109}, !- Source Object + {00000000-0000-0000-0017-000000000478}, !- Handle + {00000000-0000-0000-0052-000000000191}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0100-000000000015}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000291}, !- Handle + {00000000-0000-0000-0017-000000000479}, !- Handle {00000000-0000-0000-0100-000000000015}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0052-000000000110}, !- Target Object + {00000000-0000-0000-0052-000000000192}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000292}, !- Handle - {00000000-0000-0000-0052-000000000110}, !- Source Object + {00000000-0000-0000-0017-000000000480}, !- Handle + {00000000-0000-0000-0052-000000000192}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0018-000000000008}, !- Target Object 18; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000293}, !- Handle - {00000000-0000-0000-0052-000000000145}, !- Source Object + {00000000-0000-0000-0017-000000000481}, !- Handle + {00000000-0000-0000-0052-000000000243}, !- Source Object 3, !- Outlet Port - {00000000-0000-0000-0045-000000000001}, !- Target Object + {00000000-0000-0000-0045-000000000003}, !- Target Object 12; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000294}, !- Handle - {00000000-0000-0000-0045-000000000001}, !- Source Object + {00000000-0000-0000-0017-000000000482}, !- Handle + {00000000-0000-0000-0045-000000000003}, !- Source Object 13, !- Outlet Port - {00000000-0000-0000-0052-000000000149}, !- Target Object + {00000000-0000-0000-0052-000000000251}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000295}, !- Handle - {00000000-0000-0000-0052-000000000149}, !- Source Object + {00000000-0000-0000-0017-000000000483}, !- Handle + {00000000-0000-0000-0052-000000000251}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0003-000000000001}, !- Target Object 6; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000296}, !- Handle + {00000000-0000-0000-0017-000000000484}, !- Handle {00000000-0000-0000-0003-000000000001}, !- Source Object 7, !- Outlet Port - {00000000-0000-0000-0052-000000000150}, !- Target Object + {00000000-0000-0000-0052-000000000252}, !- Target Object 2; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000297}, !- Handle - {00000000-0000-0000-0052-000000000150}, !- Source Object + {00000000-0000-0000-0017-000000000485}, !- Handle + {00000000-0000-0000-0052-000000000252}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000003}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000486}, !- Handle + {00000000-0000-0000-0045-000000000003}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0052-000000000244}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000487}, !- Handle + {00000000-0000-0000-0052-000000000229}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000001}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000488}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000247}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000489}, !- Handle + {00000000-0000-0000-0052-000000000247}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000002}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000490}, !- Handle + {00000000-0000-0000-0003-000000000002}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000248}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000491}, !- Handle + {00000000-0000-0000-0052-000000000248}, !- Source Object 3, !- Outlet Port {00000000-0000-0000-0045-000000000001}, !- Target Object 14; !- Inlet Port OS:Connection, - {00000000-0000-0000-0017-000000000298}, !- Handle + {00000000-0000-0000-0017-000000000492}, !- Handle {00000000-0000-0000-0045-000000000001}, !- Source Object 15, !- Outlet Port - {00000000-0000-0000-0052-000000000146}, !- Target Object + {00000000-0000-0000-0052-000000000230}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000493}, !- Handle + {00000000-0000-0000-0052-000000000236}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000002}, !- Target Object + 12; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000494}, !- Handle + {00000000-0000-0000-0045-000000000002}, !- Source Object + 13, !- Outlet Port + {00000000-0000-0000-0052-000000000249}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000495}, !- Handle + {00000000-0000-0000-0052-000000000249}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0003-000000000003}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000496}, !- Handle + {00000000-0000-0000-0003-000000000003}, !- Source Object + 7, !- Outlet Port + {00000000-0000-0000-0052-000000000250}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000497}, !- Handle + {00000000-0000-0000-0052-000000000250}, !- Source Object + 3, !- Outlet Port + {00000000-0000-0000-0045-000000000002}, !- Target Object + 14; !- Inlet Port + +OS:Connection, + {00000000-0000-0000-0017-000000000498}, !- Handle + {00000000-0000-0000-0045-000000000002}, !- Source Object + 15, !- Outlet Port + {00000000-0000-0000-0052-000000000237}, !- Target Object 2; !- Inlet Port OS:Connector:Mixer, @@ -2684,7 +4852,29 @@ OS:Connector:Mixer, {00000000-0000-0000-0017-000000000182}, !- Inlet Branch Name 8 {00000000-0000-0000-0017-000000000186}, !- Inlet Branch Name 9 {00000000-0000-0000-0017-000000000196}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000200}; !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000200}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000216}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000234}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000238}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000248}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000252}, !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000262}, !- Inlet Branch Name 17 + {00000000-0000-0000-0017-000000000266}, !- Inlet Branch Name 18 + {00000000-0000-0000-0017-000000000276}, !- Inlet Branch Name 19 + {00000000-0000-0000-0017-000000000280}, !- Inlet Branch Name 20 + {00000000-0000-0000-0017-000000000290}, !- Inlet Branch Name 21 + {00000000-0000-0000-0017-000000000294}, !- Inlet Branch Name 22 + {00000000-0000-0000-0017-000000000310}, !- Inlet Branch Name 23 + {00000000-0000-0000-0017-000000000328}, !- Inlet Branch Name 24 + {00000000-0000-0000-0017-000000000332}, !- Inlet Branch Name 25 + {00000000-0000-0000-0017-000000000342}, !- Inlet Branch Name 26 + {00000000-0000-0000-0017-000000000346}, !- Inlet Branch Name 27 + {00000000-0000-0000-0017-000000000356}, !- Inlet Branch Name 28 + {00000000-0000-0000-0017-000000000360}, !- Inlet Branch Name 29 + {00000000-0000-0000-0017-000000000370}, !- Inlet Branch Name 30 + {00000000-0000-0000-0017-000000000374}, !- Inlet Branch Name 31 + {00000000-0000-0000-0017-000000000384}, !- Inlet Branch Name 32 + {00000000-0000-0000-0017-000000000388}; !- Inlet Branch Name 33 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000003}, !- Handle @@ -2698,7 +4888,9 @@ OS:Connector:Mixer, {00000000-0000-0000-0018-000000000004}, !- Handle Connector Mixer 4, !- Name {00000000-0000-0000-0017-000000000068}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000126}; !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000126}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000220}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000314}; !- Inlet Branch Name 3 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000005}, !- Handle @@ -2717,30 +4909,30 @@ OS:Connector:Mixer, OS:Connector:Mixer, {00000000-0000-0000-0018-000000000007}, !- Handle Connector Mixer 7, !- Name - {00000000-0000-0000-0017-000000000227}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000219}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000223}; !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000415}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000407}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000411}; !- Inlet Branch Name 2 OS:Connector:Mixer, {00000000-0000-0000-0018-000000000008}, !- Handle Connector Mixer 8, !- Name - {00000000-0000-0000-0017-000000000230}, !- Outlet Branch Name - {00000000-0000-0000-0017-000000000226}, !- Inlet Branch Name 1 - {00000000-0000-0000-0017-000000000236}, !- Inlet Branch Name 2 - {00000000-0000-0000-0017-000000000240}, !- Inlet Branch Name 3 - {00000000-0000-0000-0017-000000000244}, !- Inlet Branch Name 4 - {00000000-0000-0000-0017-000000000248}, !- Inlet Branch Name 5 - {00000000-0000-0000-0017-000000000252}, !- Inlet Branch Name 6 - {00000000-0000-0000-0017-000000000256}, !- Inlet Branch Name 7 - {00000000-0000-0000-0017-000000000260}, !- Inlet Branch Name 8 - {00000000-0000-0000-0017-000000000264}, !- Inlet Branch Name 9 - {00000000-0000-0000-0017-000000000268}, !- Inlet Branch Name 10 - {00000000-0000-0000-0017-000000000272}, !- Inlet Branch Name 11 - {00000000-0000-0000-0017-000000000276}, !- Inlet Branch Name 12 - {00000000-0000-0000-0017-000000000280}, !- Inlet Branch Name 13 - {00000000-0000-0000-0017-000000000284}, !- Inlet Branch Name 14 - {00000000-0000-0000-0017-000000000288}, !- Inlet Branch Name 15 - {00000000-0000-0000-0017-000000000292}; !- Inlet Branch Name 16 + {00000000-0000-0000-0017-000000000418}, !- Outlet Branch Name + {00000000-0000-0000-0017-000000000414}, !- Inlet Branch Name 1 + {00000000-0000-0000-0017-000000000424}, !- Inlet Branch Name 2 + {00000000-0000-0000-0017-000000000428}, !- Inlet Branch Name 3 + {00000000-0000-0000-0017-000000000432}, !- Inlet Branch Name 4 + {00000000-0000-0000-0017-000000000436}, !- Inlet Branch Name 5 + {00000000-0000-0000-0017-000000000440}, !- Inlet Branch Name 6 + {00000000-0000-0000-0017-000000000444}, !- Inlet Branch Name 7 + {00000000-0000-0000-0017-000000000448}, !- Inlet Branch Name 8 + {00000000-0000-0000-0017-000000000452}, !- Inlet Branch Name 9 + {00000000-0000-0000-0017-000000000456}, !- Inlet Branch Name 10 + {00000000-0000-0000-0017-000000000460}, !- Inlet Branch Name 11 + {00000000-0000-0000-0017-000000000464}, !- Inlet Branch Name 12 + {00000000-0000-0000-0017-000000000468}, !- Inlet Branch Name 13 + {00000000-0000-0000-0017-000000000472}, !- Inlet Branch Name 14 + {00000000-0000-0000-0017-000000000476}, !- Inlet Branch Name 15 + {00000000-0000-0000-0017-000000000480}; !- Inlet Branch Name 16 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000001}, !- Handle @@ -2764,7 +4956,29 @@ OS:Connector:Splitter, {00000000-0000-0000-0017-000000000179}, !- Outlet Branch Name 8 {00000000-0000-0000-0017-000000000183}, !- Outlet Branch Name 9 {00000000-0000-0000-0017-000000000193}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000197}; !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000197}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000213}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000231}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000235}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000245}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000249}, !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000259}, !- Outlet Branch Name 17 + {00000000-0000-0000-0017-000000000263}, !- Outlet Branch Name 18 + {00000000-0000-0000-0017-000000000273}, !- Outlet Branch Name 19 + {00000000-0000-0000-0017-000000000277}, !- Outlet Branch Name 20 + {00000000-0000-0000-0017-000000000287}, !- Outlet Branch Name 21 + {00000000-0000-0000-0017-000000000291}, !- Outlet Branch Name 22 + {00000000-0000-0000-0017-000000000307}, !- Outlet Branch Name 23 + {00000000-0000-0000-0017-000000000325}, !- Outlet Branch Name 24 + {00000000-0000-0000-0017-000000000329}, !- Outlet Branch Name 25 + {00000000-0000-0000-0017-000000000339}, !- Outlet Branch Name 26 + {00000000-0000-0000-0017-000000000343}, !- Outlet Branch Name 27 + {00000000-0000-0000-0017-000000000353}, !- Outlet Branch Name 28 + {00000000-0000-0000-0017-000000000357}, !- Outlet Branch Name 29 + {00000000-0000-0000-0017-000000000367}, !- Outlet Branch Name 30 + {00000000-0000-0000-0017-000000000371}, !- Outlet Branch Name 31 + {00000000-0000-0000-0017-000000000381}, !- Outlet Branch Name 32 + {00000000-0000-0000-0017-000000000385}; !- Outlet Branch Name 33 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000003}, !- Handle @@ -2778,7 +4992,9 @@ OS:Connector:Splitter, {00000000-0000-0000-0019-000000000004}, !- Handle Connector Splitter 4, !- Name {00000000-0000-0000-0017-000000000066}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000067}; !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000067}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000217}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000311}; !- Outlet Branch Name 3 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000005}, !- Handle @@ -2797,30 +5013,30 @@ OS:Connector:Splitter, OS:Connector:Splitter, {00000000-0000-0000-0019-000000000007}, !- Handle Connector Splitter 7, !- Name - {00000000-0000-0000-0017-000000000216}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000208}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000220}; !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000404}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000396}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000408}; !- Outlet Branch Name 2 OS:Connector:Splitter, {00000000-0000-0000-0019-000000000008}, !- Handle Connector Splitter 8, !- Name - {00000000-0000-0000-0017-000000000211}, !- Inlet Branch Name - {00000000-0000-0000-0017-000000000212}, !- Outlet Branch Name 1 - {00000000-0000-0000-0017-000000000233}, !- Outlet Branch Name 2 - {00000000-0000-0000-0017-000000000237}, !- Outlet Branch Name 3 - {00000000-0000-0000-0017-000000000241}, !- Outlet Branch Name 4 - {00000000-0000-0000-0017-000000000245}, !- Outlet Branch Name 5 - {00000000-0000-0000-0017-000000000249}, !- Outlet Branch Name 6 - {00000000-0000-0000-0017-000000000253}, !- Outlet Branch Name 7 - {00000000-0000-0000-0017-000000000257}, !- Outlet Branch Name 8 - {00000000-0000-0000-0017-000000000261}, !- Outlet Branch Name 9 - {00000000-0000-0000-0017-000000000265}, !- Outlet Branch Name 10 - {00000000-0000-0000-0017-000000000269}, !- Outlet Branch Name 11 - {00000000-0000-0000-0017-000000000273}, !- Outlet Branch Name 12 - {00000000-0000-0000-0017-000000000277}, !- Outlet Branch Name 13 - {00000000-0000-0000-0017-000000000281}, !- Outlet Branch Name 14 - {00000000-0000-0000-0017-000000000285}, !- Outlet Branch Name 15 - {00000000-0000-0000-0017-000000000289}; !- Outlet Branch Name 16 + {00000000-0000-0000-0017-000000000399}, !- Inlet Branch Name + {00000000-0000-0000-0017-000000000400}, !- Outlet Branch Name 1 + {00000000-0000-0000-0017-000000000421}, !- Outlet Branch Name 2 + {00000000-0000-0000-0017-000000000425}, !- Outlet Branch Name 3 + {00000000-0000-0000-0017-000000000429}, !- Outlet Branch Name 4 + {00000000-0000-0000-0017-000000000433}, !- Outlet Branch Name 5 + {00000000-0000-0000-0017-000000000437}, !- Outlet Branch Name 6 + {00000000-0000-0000-0017-000000000441}, !- Outlet Branch Name 7 + {00000000-0000-0000-0017-000000000445}, !- Outlet Branch Name 8 + {00000000-0000-0000-0017-000000000449}, !- Outlet Branch Name 9 + {00000000-0000-0000-0017-000000000453}, !- Outlet Branch Name 10 + {00000000-0000-0000-0017-000000000457}, !- Outlet Branch Name 11 + {00000000-0000-0000-0017-000000000461}, !- Outlet Branch Name 12 + {00000000-0000-0000-0017-000000000465}, !- Outlet Branch Name 13 + {00000000-0000-0000-0017-000000000469}, !- Outlet Branch Name 14 + {00000000-0000-0000-0017-000000000473}, !- Outlet Branch Name 15 + {00000000-0000-0000-0017-000000000477}; !- Outlet Branch Name 16 OS:Construction, {00000000-0000-0000-0020-000000000001}, !- Handle @@ -3079,40 +5295,231 @@ OS:Controller:MechanicalVentilation, , !- Demand Controlled Ventilation ZoneSum; !- System Outdoor Air Method -OS:Controller:OutdoorAir, - {00000000-0000-0000-0022-000000000001}, !- Handle - Controller Outdoor Air 1, !- Name - , !- Relief Air Outlet Node Name - , !- Return Air Node Name - , !- Mixed Air Node Name +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000002}, !- Handle + Controller Mechanical Ventilation 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:MechanicalVentilation, + {00000000-0000-0000-0021-000000000003}, !- Handle + Controller Mechanical Ventilation 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000001}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000027}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000002}, !- Handle + Controller Outdoor Air 2, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000025}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000002}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:OutdoorAir, + {00000000-0000-0000-0022-000000000003}, !- Handle + Controller Outdoor Air 3, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {00000000-0000-0000-0066-000000000026}, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {00000000-0000-0000-0021-000000000003}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000001}, !- Handle + Controller Water Coil 1, !- Name + {00000000-0000-0000-0015-000000000001}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000002}, !- Handle + Controller Water Coil 10, !- Name + {00000000-0000-0000-0015-000000000017}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000003}, !- Handle + Controller Water Coil 11, !- Name + {00000000-0000-0000-0015-000000000018}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000004}, !- Handle + Controller Water Coil 12, !- Name + {00000000-0000-0000-0015-000000000002}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000005}, !- Handle + Controller Water Coil 13, !- Name + {00000000-0000-0000-0015-000000000003}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000006}, !- Handle + Controller Water Coil 14, !- Name + {00000000-0000-0000-0015-000000000004}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000007}, !- Handle + Controller Water Coil 15, !- Name + {00000000-0000-0000-0015-000000000005}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000008}, !- Handle + Controller Water Coil 16, !- Name + {00000000-0000-0000-0014-000000000003}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000009}, !- Handle + Controller Water Coil 17, !- Name + {00000000-0000-0000-0015-000000000006}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name , !- Actuator Node Name - autosize, !- Minimum Outdoor Air Flow Rate {m3/s} - Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} - DifferentialEnthalpy, !- Economizer Control Type - ModulateFlow, !- Economizer Control Action Type - , !- Economizer Maximum Limit Dry-Bulb Temperature {C} - , !- Economizer Maximum Limit Enthalpy {J/kg} - , !- Economizer Maximum Limit Dewpoint Temperature {C} - , !- Electronic Enthalpy Limit Curve Name - , !- Economizer Minimum Limit Dry-Bulb Temperature {C} - NoLockout, !- Lockout Type - FixedMinimum, !- Minimum Limit Type - {00000000-0000-0000-0066-000000000023}, !- Minimum Outdoor Air Schedule Name - , !- Minimum Fraction of Outdoor Air Schedule Name - , !- Maximum Fraction of Outdoor Air Schedule Name - {00000000-0000-0000-0021-000000000001}, !- Controller Mechanical Ventilation - , !- Time of Day Economizer Control Schedule Name - No, !- High Humidity Control - , !- Humidistat Control Zone Name - , !- High Humidity Outdoor Air Flow Ratio - , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio - BypassWhenOAFlowGreaterThanMinimum, !- Heat Recovery Bypass Control Type - InterlockedWithMechanicalCooling; !- Economizer Operation Staging + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000001}, !- Handle - Controller Water Coil 1, !- Name - {00000000-0000-0000-0015-000000000001}, !- Water Coil Name + {00000000-0000-0000-0023-000000000010}, !- Handle + Controller Water Coil 18, !- Name + {00000000-0000-0000-0015-000000000007}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3123,7 +5530,20 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000002}, !- Handle + {00000000-0000-0000-0023-000000000011}, !- Handle + Controller Water Coil 19, !- Name + {00000000-0000-0000-0015-000000000008}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000012}, !- Handle Controller Water Coil 2, !- Name {00000000-0000-0000-0014-000000000001}, !- Water Coil Name , !- Control Variable @@ -3136,9 +5556,35 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000003}, !- Handle + {00000000-0000-0000-0023-000000000013}, !- Handle + Controller Water Coil 20, !- Name + {00000000-0000-0000-0015-000000000009}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000014}, !- Handle + Controller Water Coil 21, !- Name + {00000000-0000-0000-0015-000000000010}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000015}, !- Handle Controller Water Coil 3, !- Name - {00000000-0000-0000-0015-000000000002}, !- Water Coil Name + {00000000-0000-0000-0015-000000000011}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3149,9 +5595,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000004}, !- Handle + {00000000-0000-0000-0023-000000000016}, !- Handle Controller Water Coil 4, !- Name - {00000000-0000-0000-0015-000000000003}, !- Water Coil Name + {00000000-0000-0000-0015-000000000012}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3162,9 +5608,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000005}, !- Handle + {00000000-0000-0000-0023-000000000017}, !- Handle Controller Water Coil 5, !- Name - {00000000-0000-0000-0015-000000000004}, !- Water Coil Name + {00000000-0000-0000-0015-000000000013}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3175,9 +5621,9 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000006}, !- Handle + {00000000-0000-0000-0023-000000000018}, !- Handle Controller Water Coil 6, !- Name - {00000000-0000-0000-0015-000000000005}, !- Water Coil Name + {00000000-0000-0000-0015-000000000014}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3188,9 +5634,22 @@ OS:Controller:WaterCoil, ; !- Minimum Actuated Flow {m3/s} OS:Controller:WaterCoil, - {00000000-0000-0000-0023-000000000007}, !- Handle + {00000000-0000-0000-0023-000000000019}, !- Handle Controller Water Coil 7, !- Name - {00000000-0000-0000-0015-000000000006}, !- Water Coil Name + {00000000-0000-0000-0015-000000000015}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000020}, !- Handle + Controller Water Coil 8, !- Name + {00000000-0000-0000-0015-000000000016}, !- Water Coil Name , !- Control Variable Normal, !- Action , !- Actuator Variable @@ -3200,6 +5659,19 @@ OS:Controller:WaterCoil, , !- Maximum Actuated Flow {m3/s} ; !- Minimum Actuated Flow {m3/s} +OS:Controller:WaterCoil, + {00000000-0000-0000-0023-000000000021}, !- Handle + Controller Water Coil 9, !- Name + {00000000-0000-0000-0014-000000000002}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + ; !- Minimum Actuated Flow {m3/s} + OS:ConvergenceLimits, {00000000-0000-0000-0024-000000000001}, !- Handle 2, !- Minimum System Timestep {minutes} @@ -3212,7 +5684,7 @@ OS:CoolingTower:SingleSpeed, {00000000-0000-0000-0017-000000000099}, !- Water Outlet Node Name autosize, !- Design Water Flow Rate {m3/s} autosize, !- Design Air Flow Rate {m3/s} - 1433.2615779667, !- Fan Power at Design Air Flow Rate {W} + 3613.55502973381, !- Fan Power at Design Air Flow Rate {W} autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} autosize, !- Air Flow Rate in Free Convection Regime {m3/s} autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} @@ -3303,6 +5775,34 @@ OS:Curve:Biquadratic, OS:Curve:Biquadratic, {00000000-0000-0000-0026-000000000005}, !- Handle + WaterCooled_Screw_CAPFT_NECB2011, !- Name + 0.812998, !- Coefficient1 Constant + -0.0142532, !- Coefficient2 x + -0.00161799, !- Coefficient3 x**2 + 0.0263844, !- Coefficient4 y + -0.00091543, !- Coefficient5 y**2 + 0.00169601, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0026-000000000006}, !- Handle + WaterCooled_Screw_EIRFT_NECB2011, !- Name + 0.638103, !- Coefficient1 Constant + 0.00630158, !- Coefficient2 x + 0.00092327, !- Coefficient3 x**2 + -0.00455294, !- Coefficient4 y + 0.000825682, !- Coefficient5 y**2 + -0.00156152, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {00000000-0000-0000-0026-000000000007}, !- Handle WaterCooled_Scroll_CAPFT_NECB2011, !- Name 0.94418, !- Coefficient1 Constant 0.0337102, !- Coefficient2 x @@ -3316,7 +5816,7 @@ OS:Curve:Biquadratic, 35; !- Maximum Value of y OS:Curve:Biquadratic, - {00000000-0000-0000-0026-000000000006}, !- Handle + {00000000-0000-0000-0026-000000000008}, !- Handle WaterCooled_Scroll_EIRFT_NECB2011, !- Name 0.727393, !- Coefficient1 Constant -0.0118922, !- Coefficient2 x @@ -3389,6 +5889,15 @@ OS:Curve:Quadratic, OS:Curve:Quadratic, {00000000-0000-0000-0028-000000000003}, !- Handle + WaterCooled_Screw_EIRFPLR_NECB2011, !- Name + 0.330188, !- Coefficient1 Constant + 0.235543, !- Coefficient2 x + 0.460708, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Curve:Quadratic, + {00000000-0000-0000-0028-000000000004}, !- Handle WaterCooled_Scroll_EIRFPLR_NECB2011, !- Name 0.04412, !- Coefficient1 Constant 0.640367, !- Coefficient2 x @@ -3550,7 +6059,7 @@ OS:ElectricEquipment:Definition, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__ClgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_ClgSch0, !- Name {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3558,7 +6067,23 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Actuator, {00000000-0000-0000-0036-000000000002}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__HtgSch0, !- Name + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_HtgSch0, !- Name + {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0036-000000000003}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_ClgSch0, !- Name + {00000000-0000-0000-0066-000000000014}, !- Actuated Component Name + Schedule:Year, !- Actuated Component Type + Schedule Value, !- Actuated Component Control Type + ; !- Zone or Space Name + +OS:EnergyManagementSystem:Actuator, + {00000000-0000-0000-0036-000000000004}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_HtgSch0, !- Name {00000000-0000-0000-0066-000000000015}, !- Actuated Component Name Schedule:Year, !- Actuated Component Type Schedule Value, !- Actuated Component Control Type @@ -3566,41 +6091,115 @@ OS:EnergyManagementSystem:Actuator, OS:EnergyManagementSystem:Program, {00000000-0000-0000-0037-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartProg0, !- Name - IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {fb0bfe1e-3823-420b-8f79-026825348657}<23.9 && {fb0bfe1e-3823-420b-8f79-026825348657}>1.7, !- Program Line 1 - SET {b852c4f6-75d6-4ff6-980c-79723a587fab} = 29.4, !- Program Line 2 - SET {048c1d07-46f8-4705-a863-3dbd80219e86} = 15.6, !- Program Line 3 - ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {fb0bfe1e-3823-420b-8f79-026825348657}<23.9 && {fb0bfe1e-3823-420b-8f79-026825348657}>1.7, !- Program Line 4 - SET {b852c4f6-75d6-4ff6-980c-79723a587fab} = 29.4, !- Program Line 5 - SET {048c1d07-46f8-4705-a863-3dbd80219e86} = 15.6, !- Program Line 6 - ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {fb0bfe1e-3823-420b-8f79-026825348657}<23.9 && {fb0bfe1e-3823-420b-8f79-026825348657}>1.7, !- Program Line 7 - SET {b852c4f6-75d6-4ff6-980c-79723a587fab} = 29.4, !- Program Line 8 - SET {048c1d07-46f8-4705-a863-3dbd80219e86} = 15.6, !- Program Line 9 - ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {fb0bfe1e-3823-420b-8f79-026825348657}<23.9 && {fb0bfe1e-3823-420b-8f79-026825348657}>1.7, !- Program Line 10 - SET {b852c4f6-75d6-4ff6-980c-79723a587fab} = 29.4, !- Program Line 11 - SET {048c1d07-46f8-4705-a863-3dbd80219e86} = 15.6, !- Program Line 12 + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {37105444-605c-48a5-89b4-1eb352e721c1}<23.9 && {37105444-605c-48a5-89b4-1eb352e721c1}>1.7, !- Program Line 1 + SET {1546c921-6003-40df-a029-48498fe6f5fd} = 29.4, !- Program Line 2 + SET {c0ec131d-fc6e-46a3-bf8e-514cce540a16} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {37105444-605c-48a5-89b4-1eb352e721c1}<23.9 && {37105444-605c-48a5-89b4-1eb352e721c1}>1.7, !- Program Line 4 + SET {1546c921-6003-40df-a029-48498fe6f5fd} = 29.4, !- Program Line 5 + SET {c0ec131d-fc6e-46a3-bf8e-514cce540a16} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {37105444-605c-48a5-89b4-1eb352e721c1}<23.9 && {37105444-605c-48a5-89b4-1eb352e721c1}>1.7, !- Program Line 7 + SET {1546c921-6003-40df-a029-48498fe6f5fd} = 29.4, !- Program Line 8 + SET {c0ec131d-fc6e-46a3-bf8e-514cce540a16} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {37105444-605c-48a5-89b4-1eb352e721c1}<23.9 && {37105444-605c-48a5-89b4-1eb352e721c1}>1.7, !- Program Line 10 + SET {1546c921-6003-40df-a029-48498fe6f5fd} = 29.4, !- Program Line 11 + SET {c0ec131d-fc6e-46a3-bf8e-514cce540a16} = 15.6, !- Program Line 12 + ELSE, !- Program Line 13 + SET {1546c921-6003-40df-a029-48498fe6f5fd} = NULL, !- Program Line 14 + SET {c0ec131d-fc6e-46a3-bf8e-514cce540a16} = NULL, !- Program Line 15 + ENDIF; !- Program Line 16 + +OS:EnergyManagementSystem:Program, + {00000000-0000-0000-0037-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartProg0, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && Hour==5 && {c88dd7c1-4a32-4038-91df-91f9332b4a41}<23.9 && {c88dd7c1-4a32-4038-91df-91f9332b4a41}>1.7, !- Program Line 1 + SET {f569ed9a-ce2b-4584-b56c-159224520462} = 29.4, !- Program Line 2 + SET {f6ba8682-eba2-41dc-9104-2c013e0b6388} = 15.6, !- Program Line 3 + ELSEIF DaylightSavings==0 && DayOfWeek==1 && Hour==7 && {c88dd7c1-4a32-4038-91df-91f9332b4a41}<23.9 && {c88dd7c1-4a32-4038-91df-91f9332b4a41}>1.7, !- Program Line 4 + SET {f569ed9a-ce2b-4584-b56c-159224520462} = 29.4, !- Program Line 5 + SET {f6ba8682-eba2-41dc-9104-2c013e0b6388} = 15.6, !- Program Line 6 + ELSEIF DaylightSavings==1 && DayOfWeek>1 && Hour==4 && {c88dd7c1-4a32-4038-91df-91f9332b4a41}<23.9 && {c88dd7c1-4a32-4038-91df-91f9332b4a41}>1.7, !- Program Line 7 + SET {f569ed9a-ce2b-4584-b56c-159224520462} = 29.4, !- Program Line 8 + SET {f6ba8682-eba2-41dc-9104-2c013e0b6388} = 15.6, !- Program Line 9 + ELSEIF DaylightSavings==1 && DayOfWeek==1 && Hour==6 && {c88dd7c1-4a32-4038-91df-91f9332b4a41}<23.9 && {c88dd7c1-4a32-4038-91df-91f9332b4a41}>1.7, !- Program Line 10 + SET {f569ed9a-ce2b-4584-b56c-159224520462} = 29.4, !- Program Line 11 + SET {f6ba8682-eba2-41dc-9104-2c013e0b6388} = 15.6, !- Program Line 12 ELSE, !- Program Line 13 - SET {b852c4f6-75d6-4ff6-980c-79723a587fab} = NULL, !- Program Line 14 - SET {048c1d07-46f8-4705-a863-3dbd80219e86} = NULL, !- Program Line 15 + SET {f569ed9a-ce2b-4584-b56c-159224520462} = NULL, !- Program Line 14 + SET {f6ba8682-eba2-41dc-9104-2c013e0b6388} = NULL, !- Program Line 15 ENDIF; !- Program Line 16 OS:EnergyManagementSystem:ProgramCallingManager, {00000000-0000-0000-0038-000000000001}, !- Handle - ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__OptimumStartCallingManager0, !- Name + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__1_OptimumStartCallingManager0, !- Name BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point {00000000-0000-0000-0037-000000000001}; !- Program Name 1 +OS:EnergyManagementSystem:ProgramCallingManager, + {00000000-0000-0000-0038-000000000002}, !- Handle + ems_sys_6_mixed_shr_none_sh_c_hw_sc_c_chw_ssf_vv_zh_b_hw_zc_none_srf_vv__2_OptimumStartCallingManager0, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + {00000000-0000-0000-0037-000000000002}; !- Program Name 1 + OS:EnergyManagementSystem:Sensor, {00000000-0000-0000-0039-000000000001}, !- Handle OAT, !- Name Environment, !- Output Variable or Output Meter Index Key Name Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name +OS:EnergyManagementSystem:Sensor, + {00000000-0000-0000-0039-000000000002}, !- Handle + OAT_1, !- Name + Environment, !- Output Variable or Output Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output Variable or Output Meter Name + OS:Facility, {00000000-0000-0000-0040-000000000001}; !- Handle OS:Fan:VariableVolume, {00000000-0000-0000-0041-000000000001}, !- Handle + Sys6 Return Fan 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000228}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000229}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000002}, !- Handle + Sys6 Return Fan 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.299975, !- Fan Total Efficiency + 250, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.4615, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000322}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000323}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000003}, !- Handle Sys6 Return Fan, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name 0.299975, !- Fan Total Efficiency @@ -3621,8 +6220,29 @@ OS:Fan:VariableVolume, ; !- End-Use Subcategory OS:Fan:VariableVolume, - {00000000-0000-0000-0041-000000000002}, !- Handle - Sys6 Supply Fan, !- Name + {00000000-0000-0000-0041-000000000004}, !- Handle + Sys6 Supply Fan 1, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.5, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -4.1457, !- Fan Power Coefficient 1 + 16.803, !- Fan Power Coefficient 2 + -19.471, !- Fan Power Coefficient 3 + 7.8488, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000223}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000221}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000005}, !- Handle + Sys6 Supply Fan 2, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name 0.549965, !- Fan Total Efficiency 1000, !- Pressure Rise {Pa} @@ -3637,6 +6257,27 @@ OS:Fan:VariableVolume, -19.471, !- Fan Power Coefficient 3 7.8488, !- Fan Power Coefficient 4 0, !- Fan Power Coefficient 5 + {00000000-0000-0000-0017-000000000317}, !- Air Inlet Node Name + {00000000-0000-0000-0017-000000000315}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Fan:VariableVolume, + {00000000-0000-0000-0041-000000000006}, !- Handle + Sys6 Supply Fan, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + 0.549965, !- Fan Total Efficiency + 1000, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.68, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.8461, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + -2.4176, !- Fan Power Coefficient 1 + 9.5874, !- Fan Power Coefficient 2 + -11.559, !- Fan Power Coefficient 3 + 5.4009, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 {00000000-0000-0000-0017-000000000129}, !- Air Inlet Node Name {00000000-0000-0000-0017-000000000127}, !- Air Outlet Node Name ; !- End-Use Subcategory @@ -3682,7 +6323,59 @@ OS:HeatBalanceAlgorithm, 200; !- Surface Temperature Upper Limit {C} OS:HeatExchanger:AirToAir:SensibleAndLatent, - {00000000-0000-0000-0045-000000000001}, !- Handle + {00000000-0000-0000-0045-000000000001}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0017-000000000487}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000488}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000491}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000492}, !- Exhaust Air Outlet Node + 564.521132154065, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0045-000000000002}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule + autosize, !- Nominal Supply Air Flow Rate {m3/s} + 0.5, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + {00000000-0000-0000-0017-000000000493}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000494}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000497}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000498}, !- Exhaust Air Outlet Node + 564.521132154065, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44, !- Rate of Defrost Time Fraction Increase {1/K} + Yes; !- Economizer Lockout + +OS:HeatExchanger:AirToAir:SensibleAndLatent, + {00000000-0000-0000-0045-000000000003}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule autosize, !- Nominal Supply Air Flow Rate {m3/s} @@ -3694,10 +6387,10 @@ OS:HeatExchanger:AirToAir:SensibleAndLatent, 0.5, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} 0.5, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} 0.5, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} - {00000000-0000-0000-0017-000000000293}, !- Supply Air Inlet Node - {00000000-0000-0000-0017-000000000294}, !- Supply Air Outlet Node - {00000000-0000-0000-0017-000000000297}, !- Exhaust Air Inlet Node - {00000000-0000-0000-0017-000000000298}, !- Exhaust Air Outlet Node + {00000000-0000-0000-0017-000000000481}, !- Supply Air Inlet Node + {00000000-0000-0000-0017-000000000482}, !- Supply Air Outlet Node + {00000000-0000-0000-0017-000000000485}, !- Exhaust Air Inlet Node + {00000000-0000-0000-0017-000000000486}, !- Exhaust Air Outlet Node 564.521132154065, !- Nominal Electric Power {W} Yes, !- Supply Air Outlet Temperature Control Rotary, !- Heat Exchanger Type @@ -4141,17 +6834,49 @@ OS:ModelObjectList, {00000000-0000-0000-0051-000000000004}, !- Handle Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000005}, !- Handle + Availability Manager Night Cycle 2 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000006}, !- Handle + Availability Manager Night Cycle 2 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000007}, !- Handle + Availability Manager Night Cycle 2 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000008}, !- Handle + Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000009}, !- Handle + Availability Manager Night Cycle 3 Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000010}, !- Handle + Availability Manager Night Cycle 3 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000011}, !- Handle + Availability Manager Night Cycle 3 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {00000000-0000-0000-0051-000000000012}, !- Handle + Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name + OS:Node, {00000000-0000-0000-0052-000000000001}, !- Handle 125gal NaturalGas Water Heater - 84kBtu/hr 0.912 Therm Eff Supply Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000208}, !- Inlet Port - {00000000-0000-0000-0017-000000000217}; !- Outlet Port + {00000000-0000-0000-0017-000000000396}, !- Inlet Port + {00000000-0000-0000-0017-000000000405}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000002}, !- Handle 125gal NaturalGas Water Heater - 84kBtu/hr 0.912 Therm Eff Supply Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000218}, !- Inlet Port - {00000000-0000-0000-0017-000000000219}; !- Outlet Port + {00000000-0000-0000-0017-000000000406}, !- Inlet Port + {00000000-0000-0000-0017-000000000407}; !- Outlet Port OS:Node, {00000000-0000-0000-0052-000000000003}, !- Handle @@ -4233,813 +6958,1425 @@ OS:Node, OS:Node, {00000000-0000-0000-0052-000000000016}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000296}, !- Inlet Port + {00000000-0000-0000-0017-000000000297}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000023}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000017}, !- Handle + {00000000-0000-0000-0052-000000000018}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000282}, !- Inlet Port + {00000000-0000-0000-0017-000000000283}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000019}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000026}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000018}, !- Handle + {00000000-0000-0000-0052-000000000020}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000254}, !- Inlet Port + {00000000-0000-0000-0017-000000000255}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000021}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000031}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000019}, !- Handle + {00000000-0000-0000-0052-000000000022}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000268}, !- Inlet Port + {00000000-0000-0000-0017-000000000269}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000023}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000034}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000020}, !- Handle + {00000000-0000-0000-0052-000000000024}, !- Handle + ALL_ST=Office open plan_FL=Building Story 2_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000240}, !- Inlet Port + {00000000-0000-0000-0017-000000000241}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000025}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000019}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000021}, !- Handle + {00000000-0000-0000-0052-000000000026}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000362}, !- Inlet Port + {00000000-0000-0000-0017-000000000363}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000027}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000021}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000022}, !- Handle + {00000000-0000-0000-0052-000000000028}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000334}, !- Inlet Port + {00000000-0000-0000-0017-000000000335}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000029}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000022}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000023}, !- Handle + {00000000-0000-0000-0052-000000000030}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000376}, !- Inlet Port + {00000000-0000-0000-0017-000000000377}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000031}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000025}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000024}, !- Handle + {00000000-0000-0000-0052-000000000032}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Return Air Node, !- Name + {00000000-0000-0000-0017-000000000390}, !- Inlet Port + {00000000-0000-0000-0017-000000000391}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000033}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone Air Node, !- Name {00000000-0000-0000-0017-000000000028}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000025}, !- Handle + {00000000-0000-0000-0052-000000000034}, !- Handle + ALL_ST=Office open plan_FL=Building Story 3_SCH=A Return Air Node, !- Name + {00000000-0000-0000-0017-000000000348}, !- Inlet Port + {00000000-0000-0000-0017-000000000349}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000035}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone Air Node, !- Name {00000000-0000-0000-0017-000000000020}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000026}, !- Handle + {00000000-0000-0000-0052-000000000036}, !- Handle Air Terminal Single Duct VAV Reheat 1 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000148}, !- Inlet Port {00000000-0000-0000-0017-000000000149}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000027}, !- Handle + {00000000-0000-0000-0052-000000000037}, !- Handle Air Terminal Single Duct VAV Reheat 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000150}, !- Inlet Port {00000000-0000-0000-0017-000000000145}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000028}, !- Handle + {00000000-0000-0000-0052-000000000038}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000298}, !- Inlet Port + {00000000-0000-0000-0017-000000000299}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000039}, !- Handle + Air Terminal Single Duct VAV Reheat 10 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000300}, !- Inlet Port + {00000000-0000-0000-0017-000000000295}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000040}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000336}, !- Inlet Port + {00000000-0000-0000-0017-000000000337}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000041}, !- Handle + Air Terminal Single Duct VAV Reheat 11 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000338}, !- Inlet Port + {00000000-0000-0000-0017-000000000333}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000042}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000350}, !- Inlet Port + {00000000-0000-0000-0017-000000000351}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000043}, !- Handle + Air Terminal Single Duct VAV Reheat 12 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000352}, !- Inlet Port + {00000000-0000-0000-0017-000000000347}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000044}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000364}, !- Inlet Port + {00000000-0000-0000-0017-000000000365}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000045}, !- Handle + Air Terminal Single Duct VAV Reheat 13 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000366}, !- Inlet Port + {00000000-0000-0000-0017-000000000361}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000046}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000378}, !- Inlet Port + {00000000-0000-0000-0017-000000000379}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000047}, !- Handle + Air Terminal Single Duct VAV Reheat 14 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000380}, !- Inlet Port + {00000000-0000-0000-0017-000000000375}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000048}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000392}, !- Inlet Port + {00000000-0000-0000-0017-000000000393}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000049}, !- Handle + Air Terminal Single Duct VAV Reheat 15 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000394}, !- Inlet Port + {00000000-0000-0000-0017-000000000389}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000050}, !- Handle Air Terminal Single Duct VAV Reheat 2 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000162}, !- Inlet Port {00000000-0000-0000-0017-000000000163}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000029}, !- Handle + {00000000-0000-0000-0052-000000000051}, !- Handle Air Terminal Single Duct VAV Reheat 2 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000164}, !- Inlet Port {00000000-0000-0000-0017-000000000159}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000030}, !- Handle + {00000000-0000-0000-0052-000000000052}, !- Handle Air Terminal Single Duct VAV Reheat 3 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000176}, !- Inlet Port {00000000-0000-0000-0017-000000000177}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000031}, !- Handle + {00000000-0000-0000-0052-000000000053}, !- Handle Air Terminal Single Duct VAV Reheat 3 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000178}, !- Inlet Port {00000000-0000-0000-0017-000000000173}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000032}, !- Handle + {00000000-0000-0000-0052-000000000054}, !- Handle Air Terminal Single Duct VAV Reheat 4 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000190}, !- Inlet Port {00000000-0000-0000-0017-000000000191}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000033}, !- Handle + {00000000-0000-0000-0052-000000000055}, !- Handle Air Terminal Single Duct VAV Reheat 4 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000192}, !- Inlet Port {00000000-0000-0000-0017-000000000187}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000034}, !- Handle + {00000000-0000-0000-0052-000000000056}, !- Handle Air Terminal Single Duct VAV Reheat 5 Inlet Air Node, !- Name {00000000-0000-0000-0017-000000000204}, !- Inlet Port {00000000-0000-0000-0017-000000000205}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000035}, !- Handle + {00000000-0000-0000-0052-000000000057}, !- Handle Air Terminal Single Duct VAV Reheat 5 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000206}, !- Inlet Port {00000000-0000-0000-0017-000000000201}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000036}, !- Handle + {00000000-0000-0000-0052-000000000058}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000242}, !- Inlet Port + {00000000-0000-0000-0017-000000000243}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000059}, !- Handle + Air Terminal Single Duct VAV Reheat 6 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000244}, !- Inlet Port + {00000000-0000-0000-0017-000000000239}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000060}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000256}, !- Inlet Port + {00000000-0000-0000-0017-000000000257}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000061}, !- Handle + Air Terminal Single Duct VAV Reheat 7 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000258}, !- Inlet Port + {00000000-0000-0000-0017-000000000253}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000062}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000270}, !- Inlet Port + {00000000-0000-0000-0017-000000000271}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000063}, !- Handle + Air Terminal Single Duct VAV Reheat 8 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000272}, !- Inlet Port + {00000000-0000-0000-0017-000000000267}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000064}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000284}, !- Inlet Port + {00000000-0000-0000-0017-000000000285}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000065}, !- Handle + Air Terminal Single Duct VAV Reheat 9 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000286}, !- Inlet Port + {00000000-0000-0000-0017-000000000281}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000066}, !- Handle Chilled Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000065}, !- Inlet Port {00000000-0000-0000-0017-000000000066}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000037}, !- Handle + {00000000-0000-0000-0052-000000000067}, !- Handle Chilled Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000068}, !- Inlet Port {00000000-0000-0000-0017-000000000069}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000038}, !- Handle + {00000000-0000-0000-0052-000000000068}, !- Handle Chilled Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000062}, !- Inlet Port {00000000-0000-0000-0017-000000000070}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000039}, !- Handle + {00000000-0000-0000-0052-000000000069}, !- Handle Chilled Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000086}, !- Inlet Port {00000000-0000-0000-0017-000000000064}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000040}, !- Handle + {00000000-0000-0000-0052-000000000070}, !- Handle Coil Cooling Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000067}, !- Inlet Port {00000000-0000-0000-0017-000000000124}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000041}, !- Handle + {00000000-0000-0000-0052-000000000071}, !- Handle Coil Cooling Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000130}, !- Inlet Port {00000000-0000-0000-0017-000000000131}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000042}, !- Handle + {00000000-0000-0000-0052-000000000072}, !- Handle Coil Cooling Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000125}, !- Inlet Port {00000000-0000-0000-0017-000000000126}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000043}, !- Handle + {00000000-0000-0000-0052-000000000073}, !- Handle + Coil Cooling Water 2 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000217}, !- Inlet Port + {00000000-0000-0000-0017-000000000218}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000074}, !- Handle + Coil Cooling Water 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000224}, !- Inlet Port + {00000000-0000-0000-0017-000000000225}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000075}, !- Handle + Coil Cooling Water 2 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000219}, !- Inlet Port + {00000000-0000-0000-0017-000000000220}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000076}, !- Handle + Coil Cooling Water 3 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000311}, !- Inlet Port + {00000000-0000-0000-0017-000000000312}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000077}, !- Handle + Coil Cooling Water 3 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000318}, !- Inlet Port + {00000000-0000-0000-0017-000000000319}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000078}, !- Handle + Coil Cooling Water 3 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000313}, !- Inlet Port + {00000000-0000-0000-0017-000000000314}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000079}, !- Handle Coil Heating Water 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000042}, !- Inlet Port {00000000-0000-0000-0017-000000000121}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000044}, !- Handle + {00000000-0000-0000-0052-000000000080}, !- Handle Coil Heating Water 1 Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000128}, !- Inlet Port {00000000-0000-0000-0017-000000000129}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000045}, !- Handle + {00000000-0000-0000-0052-000000000081}, !- Handle Coil Heating Water 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000122}, !- Inlet Port {00000000-0000-0000-0017-000000000123}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000046}, !- Handle + {00000000-0000-0000-0052-000000000082}, !- Handle + Coil Heating Water 10 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000259}, !- Inlet Port + {00000000-0000-0000-0017-000000000260}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000083}, !- Handle + Coil Heating Water 10 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000261}, !- Inlet Port + {00000000-0000-0000-0017-000000000262}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000084}, !- Handle + Coil Heating Water 11 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000273}, !- Inlet Port + {00000000-0000-0000-0017-000000000274}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000085}, !- Handle + Coil Heating Water 11 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000275}, !- Inlet Port + {00000000-0000-0000-0017-000000000276}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000086}, !- Handle + Coil Heating Water 12 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000287}, !- Inlet Port + {00000000-0000-0000-0017-000000000288}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000087}, !- Handle + Coil Heating Water 12 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000289}, !- Inlet Port + {00000000-0000-0000-0017-000000000290}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000088}, !- Handle + Coil Heating Water 13 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000307}, !- Inlet Port + {00000000-0000-0000-0017-000000000308}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000089}, !- Handle + Coil Heating Water 13 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000316}, !- Inlet Port + {00000000-0000-0000-0017-000000000317}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000090}, !- Handle + Coil Heating Water 13 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000309}, !- Inlet Port + {00000000-0000-0000-0017-000000000310}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000091}, !- Handle + Coil Heating Water 14 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000325}, !- Inlet Port + {00000000-0000-0000-0017-000000000326}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000092}, !- Handle + Coil Heating Water 14 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000327}, !- Inlet Port + {00000000-0000-0000-0017-000000000328}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000093}, !- Handle + Coil Heating Water 15 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000339}, !- Inlet Port + {00000000-0000-0000-0017-000000000340}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000094}, !- Handle + Coil Heating Water 15 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000341}, !- Inlet Port + {00000000-0000-0000-0017-000000000342}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000095}, !- Handle + Coil Heating Water 16 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000353}, !- Inlet Port + {00000000-0000-0000-0017-000000000354}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000096}, !- Handle + Coil Heating Water 16 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000355}, !- Inlet Port + {00000000-0000-0000-0017-000000000356}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000097}, !- Handle + Coil Heating Water 17 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000367}, !- Inlet Port + {00000000-0000-0000-0017-000000000368}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000098}, !- Handle + Coil Heating Water 17 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000369}, !- Inlet Port + {00000000-0000-0000-0017-000000000370}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000099}, !- Handle + Coil Heating Water 18 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000381}, !- Inlet Port + {00000000-0000-0000-0017-000000000382}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000100}, !- Handle + Coil Heating Water 18 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000383}, !- Inlet Port + {00000000-0000-0000-0017-000000000384}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000101}, !- Handle Coil Heating Water 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000137}, !- Inlet Port {00000000-0000-0000-0017-000000000138}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000047}, !- Handle + {00000000-0000-0000-0052-000000000102}, !- Handle Coil Heating Water 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000139}, !- Inlet Port {00000000-0000-0000-0017-000000000140}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000048}, !- Handle + {00000000-0000-0000-0052-000000000103}, !- Handle Coil Heating Water 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000151}, !- Inlet Port {00000000-0000-0000-0017-000000000152}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000049}, !- Handle + {00000000-0000-0000-0052-000000000104}, !- Handle Coil Heating Water 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000153}, !- Inlet Port {00000000-0000-0000-0017-000000000154}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000050}, !- Handle + {00000000-0000-0000-0052-000000000105}, !- Handle Coil Heating Water 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000165}, !- Inlet Port {00000000-0000-0000-0017-000000000166}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000051}, !- Handle + {00000000-0000-0000-0052-000000000106}, !- Handle Coil Heating Water 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000167}, !- Inlet Port {00000000-0000-0000-0017-000000000168}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000052}, !- Handle + {00000000-0000-0000-0052-000000000107}, !- Handle Coil Heating Water 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000179}, !- Inlet Port {00000000-0000-0000-0017-000000000180}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000053}, !- Handle + {00000000-0000-0000-0052-000000000108}, !- Handle Coil Heating Water 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000181}, !- Inlet Port {00000000-0000-0000-0017-000000000182}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000054}, !- Handle + {00000000-0000-0000-0052-000000000109}, !- Handle Coil Heating Water 6 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000193}, !- Inlet Port {00000000-0000-0000-0017-000000000194}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000055}, !- Handle + {00000000-0000-0000-0052-000000000110}, !- Handle Coil Heating Water 6 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000195}, !- Inlet Port {00000000-0000-0000-0017-000000000196}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000056}, !- Handle + {00000000-0000-0000-0052-000000000111}, !- Handle + Coil Heating Water 7 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000213}, !- Inlet Port + {00000000-0000-0000-0017-000000000214}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000112}, !- Handle + Coil Heating Water 7 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000222}, !- Inlet Port + {00000000-0000-0000-0017-000000000223}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000113}, !- Handle + Coil Heating Water 7 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000215}, !- Inlet Port + {00000000-0000-0000-0017-000000000216}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000114}, !- Handle + Coil Heating Water 8 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000231}, !- Inlet Port + {00000000-0000-0000-0017-000000000232}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000115}, !- Handle + Coil Heating Water 8 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000233}, !- Inlet Port + {00000000-0000-0000-0017-000000000234}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000116}, !- Handle + Coil Heating Water 9 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000245}, !- Inlet Port + {00000000-0000-0000-0017-000000000246}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000117}, !- Handle + Coil Heating Water 9 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000247}, !- Inlet Port + {00000000-0000-0000-0017-000000000248}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000118}, !- Handle Coil Heating Water Baseboard 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000141}, !- Inlet Port {00000000-0000-0000-0017-000000000142}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000057}, !- Handle + {00000000-0000-0000-0052-000000000119}, !- Handle Coil Heating Water Baseboard 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000143}, !- Inlet Port {00000000-0000-0000-0017-000000000144}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000058}, !- Handle + {00000000-0000-0000-0052-000000000120}, !- Handle + Coil Heating Water Baseboard 10 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000291}, !- Inlet Port + {00000000-0000-0000-0017-000000000292}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000121}, !- Handle + Coil Heating Water Baseboard 10 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000293}, !- Inlet Port + {00000000-0000-0000-0017-000000000294}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000122}, !- Handle + Coil Heating Water Baseboard 11 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000329}, !- Inlet Port + {00000000-0000-0000-0017-000000000330}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000123}, !- Handle + Coil Heating Water Baseboard 11 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000331}, !- Inlet Port + {00000000-0000-0000-0017-000000000332}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000124}, !- Handle + Coil Heating Water Baseboard 12 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000343}, !- Inlet Port + {00000000-0000-0000-0017-000000000344}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000125}, !- Handle + Coil Heating Water Baseboard 12 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000345}, !- Inlet Port + {00000000-0000-0000-0017-000000000346}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000126}, !- Handle + Coil Heating Water Baseboard 13 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000357}, !- Inlet Port + {00000000-0000-0000-0017-000000000358}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000127}, !- Handle + Coil Heating Water Baseboard 13 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000359}, !- Inlet Port + {00000000-0000-0000-0017-000000000360}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000128}, !- Handle + Coil Heating Water Baseboard 14 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000371}, !- Inlet Port + {00000000-0000-0000-0017-000000000372}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000129}, !- Handle + Coil Heating Water Baseboard 14 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000373}, !- Inlet Port + {00000000-0000-0000-0017-000000000374}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000130}, !- Handle + Coil Heating Water Baseboard 15 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000385}, !- Inlet Port + {00000000-0000-0000-0017-000000000386}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000131}, !- Handle + Coil Heating Water Baseboard 15 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000387}, !- Inlet Port + {00000000-0000-0000-0017-000000000388}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000132}, !- Handle Coil Heating Water Baseboard 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000155}, !- Inlet Port {00000000-0000-0000-0017-000000000156}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000059}, !- Handle + {00000000-0000-0000-0052-000000000133}, !- Handle Coil Heating Water Baseboard 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000157}, !- Inlet Port {00000000-0000-0000-0017-000000000158}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000060}, !- Handle + {00000000-0000-0000-0052-000000000134}, !- Handle Coil Heating Water Baseboard 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000169}, !- Inlet Port {00000000-0000-0000-0017-000000000170}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000061}, !- Handle + {00000000-0000-0000-0052-000000000135}, !- Handle Coil Heating Water Baseboard 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000171}, !- Inlet Port {00000000-0000-0000-0017-000000000172}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000062}, !- Handle + {00000000-0000-0000-0052-000000000136}, !- Handle Coil Heating Water Baseboard 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000183}, !- Inlet Port {00000000-0000-0000-0017-000000000184}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000063}, !- Handle + {00000000-0000-0000-0052-000000000137}, !- Handle Coil Heating Water Baseboard 4 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000185}, !- Inlet Port {00000000-0000-0000-0017-000000000186}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000064}, !- Handle + {00000000-0000-0000-0052-000000000138}, !- Handle Coil Heating Water Baseboard 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000197}, !- Inlet Port {00000000-0000-0000-0017-000000000198}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000065}, !- Handle + {00000000-0000-0000-0052-000000000139}, !- Handle Coil Heating Water Baseboard 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000199}, !- Inlet Port {00000000-0000-0000-0017-000000000200}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000066}, !- Handle + {00000000-0000-0000-0052-000000000140}, !- Handle + Coil Heating Water Baseboard 6 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000235}, !- Inlet Port + {00000000-0000-0000-0017-000000000236}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000141}, !- Handle + Coil Heating Water Baseboard 6 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000237}, !- Inlet Port + {00000000-0000-0000-0017-000000000238}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000142}, !- Handle + Coil Heating Water Baseboard 7 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000249}, !- Inlet Port + {00000000-0000-0000-0017-000000000250}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000143}, !- Handle + Coil Heating Water Baseboard 7 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000251}, !- Inlet Port + {00000000-0000-0000-0017-000000000252}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000144}, !- Handle + Coil Heating Water Baseboard 8 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000263}, !- Inlet Port + {00000000-0000-0000-0017-000000000264}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000145}, !- Handle + Coil Heating Water Baseboard 8 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000265}, !- Inlet Port + {00000000-0000-0000-0017-000000000266}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000146}, !- Handle + Coil Heating Water Baseboard 9 Inlet Water Node, !- Name + {00000000-0000-0000-0017-000000000277}, !- Inlet Port + {00000000-0000-0000-0017-000000000278}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000147}, !- Handle + Coil Heating Water Baseboard 9 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000279}, !- Inlet Port + {00000000-0000-0000-0017-000000000280}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000148}, !- Handle Condenser Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000090}, !- Inlet Port {00000000-0000-0000-0017-000000000091}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000067}, !- Handle + {00000000-0000-0000-0052-000000000149}, !- Handle Condenser Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000093}, !- Inlet Port {00000000-0000-0000-0017-000000000094}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000068}, !- Handle + {00000000-0000-0000-0052-000000000150}, !- Handle Condenser Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000087}, !- Inlet Port {00000000-0000-0000-0017-000000000095}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000069}, !- Handle + {00000000-0000-0000-0052-000000000151}, !- Handle Condenser Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000107}, !- Inlet Port {00000000-0000-0000-0017-000000000089}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000070}, !- Handle + {00000000-0000-0000-0052-000000000152}, !- Handle Cooling Tower Single Speed 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000088}, !- Inlet Port {00000000-0000-0000-0017-000000000098}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000071}, !- Handle + {00000000-0000-0000-0052-000000000153}, !- Handle Cooling Tower Single Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000099}, !- Inlet Port {00000000-0000-0000-0017-000000000100}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000072}, !- Handle + {00000000-0000-0000-0052-000000000154}, !- Handle Core_bottom WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000233}, !- Inlet Port - {00000000-0000-0000-0017-000000000234}; !- Outlet Port + {00000000-0000-0000-0017-000000000421}, !- Inlet Port + {00000000-0000-0000-0017-000000000422}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000073}, !- Handle + {00000000-0000-0000-0052-000000000155}, !- Handle Core_bottom WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000235}, !- Inlet Port - {00000000-0000-0000-0017-000000000236}; !- Outlet Port + {00000000-0000-0000-0017-000000000423}, !- Inlet Port + {00000000-0000-0000-0017-000000000424}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000074}, !- Handle + {00000000-0000-0000-0052-000000000156}, !- Handle Core_mid WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000237}, !- Inlet Port - {00000000-0000-0000-0017-000000000238}; !- Outlet Port + {00000000-0000-0000-0017-000000000425}, !- Inlet Port + {00000000-0000-0000-0017-000000000426}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000075}, !- Handle + {00000000-0000-0000-0052-000000000157}, !- Handle Core_mid WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000239}, !- Inlet Port - {00000000-0000-0000-0017-000000000240}; !- Outlet Port + {00000000-0000-0000-0017-000000000427}, !- Inlet Port + {00000000-0000-0000-0017-000000000428}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000076}, !- Handle + {00000000-0000-0000-0052-000000000158}, !- Handle Core_top WUC 0.37gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000241}, !- Inlet Port - {00000000-0000-0000-0017-000000000242}; !- Outlet Port + {00000000-0000-0000-0017-000000000429}, !- Inlet Port + {00000000-0000-0000-0017-000000000430}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000077}, !- Handle + {00000000-0000-0000-0052-000000000159}, !- Handle Core_top WUC 0.37gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000243}, !- Inlet Port - {00000000-0000-0000-0017-000000000244}; !- Outlet Port + {00000000-0000-0000-0017-000000000431}, !- Inlet Port + {00000000-0000-0000-0017-000000000432}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000078}, !- Handle + {00000000-0000-0000-0052-000000000160}, !- Handle Hot Water Loop Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000040}, !- Inlet Port {00000000-0000-0000-0017-000000000041}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000079}, !- Handle + {00000000-0000-0000-0052-000000000161}, !- Handle Hot Water Loop Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000043}, !- Inlet Port {00000000-0000-0000-0017-000000000044}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000080}, !- Handle + {00000000-0000-0000-0052-000000000162}, !- Handle Hot Water Loop Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000037}, !- Inlet Port {00000000-0000-0000-0017-000000000045}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000081}, !- Handle + {00000000-0000-0000-0052-000000000163}, !- Handle Hot Water Loop Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000061}, !- Inlet Port {00000000-0000-0000-0017-000000000039}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000082}, !- Handle + {00000000-0000-0000-0052-000000000164}, !- Handle Main Service Water Loop Circulator Pump Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000215}, !- Inlet Port - {00000000-0000-0000-0017-000000000216}; !- Outlet Port + {00000000-0000-0000-0017-000000000403}, !- Inlet Port + {00000000-0000-0000-0017-000000000404}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000083}, !- Handle + {00000000-0000-0000-0052-000000000165}, !- Handle Main Service Water Loop Demand Inlet Node, !- Name - {00000000-0000-0000-0017-000000000210}, !- Inlet Port - {00000000-0000-0000-0017-000000000211}; !- Outlet Port + {00000000-0000-0000-0017-000000000398}, !- Inlet Port + {00000000-0000-0000-0017-000000000399}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000084}, !- Handle + {00000000-0000-0000-0052-000000000166}, !- Handle Main Service Water Loop Demand Outlet Node, !- Name - {00000000-0000-0000-0017-000000000232}, !- Inlet Port - {00000000-0000-0000-0017-000000000213}; !- Outlet Port + {00000000-0000-0000-0017-000000000420}, !- Inlet Port + {00000000-0000-0000-0017-000000000401}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000085}, !- Handle + {00000000-0000-0000-0052-000000000167}, !- Handle Main Service Water Loop Supply Inlet Node, !- Name - {00000000-0000-0000-0017-000000000207}, !- Inlet Port - {00000000-0000-0000-0017-000000000214}; !- Outlet Port + {00000000-0000-0000-0017-000000000395}, !- Inlet Port + {00000000-0000-0000-0017-000000000402}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000086}, !- Handle + {00000000-0000-0000-0052-000000000168}, !- Handle Main Service Water Loop Supply Outlet Node, !- Name - {00000000-0000-0000-0017-000000000229}, !- Inlet Port - {00000000-0000-0000-0017-000000000209}; !- Outlet Port + {00000000-0000-0000-0017-000000000417}, !- Inlet Port + {00000000-0000-0000-0017-000000000397}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000087}, !- Handle + {00000000-0000-0000-0052-000000000169}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000245}, !- Inlet Port - {00000000-0000-0000-0017-000000000246}; !- Outlet Port + {00000000-0000-0000-0017-000000000433}, !- Inlet Port + {00000000-0000-0000-0017-000000000434}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000088}, !- Handle + {00000000-0000-0000-0052-000000000170}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000247}, !- Inlet Port - {00000000-0000-0000-0017-000000000248}; !- Outlet Port + {00000000-0000-0000-0017-000000000435}, !- Inlet Port + {00000000-0000-0000-0017-000000000436}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000089}, !- Handle + {00000000-0000-0000-0052-000000000171}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000249}, !- Inlet Port - {00000000-0000-0000-0017-000000000250}; !- Outlet Port + {00000000-0000-0000-0017-000000000437}, !- Inlet Port + {00000000-0000-0000-0017-000000000438}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000090}, !- Handle + {00000000-0000-0000-0052-000000000172}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000251}, !- Inlet Port - {00000000-0000-0000-0017-000000000252}; !- Outlet Port + {00000000-0000-0000-0017-000000000439}, !- Inlet Port + {00000000-0000-0000-0017-000000000440}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000091}, !- Handle + {00000000-0000-0000-0052-000000000173}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000253}, !- Inlet Port - {00000000-0000-0000-0017-000000000254}; !- Outlet Port + {00000000-0000-0000-0017-000000000441}, !- Inlet Port + {00000000-0000-0000-0017-000000000442}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000092}, !- Handle + {00000000-0000-0000-0052-000000000174}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000255}, !- Inlet Port - {00000000-0000-0000-0017-000000000256}; !- Outlet Port + {00000000-0000-0000-0017-000000000443}, !- Inlet Port + {00000000-0000-0000-0017-000000000444}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000093}, !- Handle + {00000000-0000-0000-0052-000000000175}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000257}, !- Inlet Port - {00000000-0000-0000-0017-000000000258}; !- Outlet Port + {00000000-0000-0000-0017-000000000445}, !- Inlet Port + {00000000-0000-0000-0017-000000000446}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000094}, !- Handle + {00000000-0000-0000-0052-000000000176}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000259}, !- Inlet Port - {00000000-0000-0000-0017-000000000260}; !- Outlet Port + {00000000-0000-0000-0017-000000000447}, !- Inlet Port + {00000000-0000-0000-0017-000000000448}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000095}, !- Handle + {00000000-0000-0000-0052-000000000177}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000261}, !- Inlet Port - {00000000-0000-0000-0017-000000000262}; !- Outlet Port + {00000000-0000-0000-0017-000000000449}, !- Inlet Port + {00000000-0000-0000-0017-000000000450}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000096}, !- Handle + {00000000-0000-0000-0052-000000000178}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000263}, !- Inlet Port - {00000000-0000-0000-0017-000000000264}; !- Outlet Port + {00000000-0000-0000-0017-000000000451}, !- Inlet Port + {00000000-0000-0000-0017-000000000452}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000097}, !- Handle + {00000000-0000-0000-0052-000000000179}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000265}, !- Inlet Port - {00000000-0000-0000-0017-000000000266}; !- Outlet Port + {00000000-0000-0000-0017-000000000453}, !- Inlet Port + {00000000-0000-0000-0017-000000000454}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000098}, !- Handle + {00000000-0000-0000-0052-000000000180}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000267}, !- Inlet Port - {00000000-0000-0000-0017-000000000268}; !- Outlet Port + {00000000-0000-0000-0017-000000000455}, !- Inlet Port + {00000000-0000-0000-0017-000000000456}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000099}, !- Handle + {00000000-0000-0000-0052-000000000181}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000269}, !- Inlet Port - {00000000-0000-0000-0017-000000000270}; !- Outlet Port + {00000000-0000-0000-0017-000000000457}, !- Inlet Port + {00000000-0000-0000-0017-000000000458}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000100}, !- Handle + {00000000-0000-0000-0052-000000000182}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000271}, !- Inlet Port - {00000000-0000-0000-0017-000000000272}; !- Outlet Port + {00000000-0000-0000-0017-000000000459}, !- Inlet Port + {00000000-0000-0000-0017-000000000460}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000101}, !- Handle + {00000000-0000-0000-0052-000000000183}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000273}, !- Inlet Port - {00000000-0000-0000-0017-000000000274}; !- Outlet Port + {00000000-0000-0000-0017-000000000461}, !- Inlet Port + {00000000-0000-0000-0017-000000000462}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000102}, !- Handle + {00000000-0000-0000-0052-000000000184}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000275}, !- Inlet Port - {00000000-0000-0000-0017-000000000276}; !- Outlet Port + {00000000-0000-0000-0017-000000000463}, !- Inlet Port + {00000000-0000-0000-0017-000000000464}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000103}, !- Handle + {00000000-0000-0000-0052-000000000185}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000277}, !- Inlet Port - {00000000-0000-0000-0017-000000000278}; !- Outlet Port + {00000000-0000-0000-0017-000000000465}, !- Inlet Port + {00000000-0000-0000-0017-000000000466}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000104}, !- Handle + {00000000-0000-0000-0052-000000000186}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000279}, !- Inlet Port - {00000000-0000-0000-0017-000000000280}; !- Outlet Port + {00000000-0000-0000-0017-000000000467}, !- Inlet Port + {00000000-0000-0000-0017-000000000468}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000105}, !- Handle + {00000000-0000-0000-0052-000000000187}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000281}, !- Inlet Port - {00000000-0000-0000-0017-000000000282}; !- Outlet Port + {00000000-0000-0000-0017-000000000469}, !- Inlet Port + {00000000-0000-0000-0017-000000000470}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000106}, !- Handle + {00000000-0000-0000-0052-000000000188}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000283}, !- Inlet Port - {00000000-0000-0000-0017-000000000284}; !- Outlet Port + {00000000-0000-0000-0017-000000000471}, !- Inlet Port + {00000000-0000-0000-0017-000000000472}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000107}, !- Handle + {00000000-0000-0000-0052-000000000189}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000285}, !- Inlet Port - {00000000-0000-0000-0017-000000000286}; !- Outlet Port + {00000000-0000-0000-0017-000000000473}, !- Inlet Port + {00000000-0000-0000-0017-000000000474}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000108}, !- Handle + {00000000-0000-0000-0052-000000000190}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000287}, !- Inlet Port - {00000000-0000-0000-0017-000000000288}; !- Outlet Port + {00000000-0000-0000-0017-000000000475}, !- Inlet Port + {00000000-0000-0000-0017-000000000476}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000109}, !- Handle + {00000000-0000-0000-0052-000000000191}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000289}, !- Inlet Port - {00000000-0000-0000-0017-000000000290}; !- Outlet Port + {00000000-0000-0000-0017-000000000477}, !- Inlet Port + {00000000-0000-0000-0017-000000000478}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000110}, !- Handle + {00000000-0000-0000-0052-000000000192}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000291}, !- Inlet Port - {00000000-0000-0000-0017-000000000292}; !- Outlet Port + {00000000-0000-0000-0017-000000000479}, !- Inlet Port + {00000000-0000-0000-0017-000000000480}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000111}, !- Handle + {00000000-0000-0000-0052-000000000193}, !- Handle Pipe Adiabatic 1 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000055}, !- Inlet Port {00000000-0000-0000-0017-000000000056}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000112}, !- Handle + {00000000-0000-0000-0052-000000000194}, !- Handle Pipe Adiabatic 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000057}, !- Inlet Port {00000000-0000-0000-0017-000000000058}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000113}, !- Handle + {00000000-0000-0000-0052-000000000195}, !- Handle Pipe Adiabatic 10 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000230}, !- Inlet Port - {00000000-0000-0000-0017-000000000231}; !- Outlet Port + {00000000-0000-0000-0017-000000000418}, !- Inlet Port + {00000000-0000-0000-0017-000000000419}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000114}, !- Handle + {00000000-0000-0000-0052-000000000196}, !- Handle Pipe Adiabatic 2 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000059}, !- Inlet Port {00000000-0000-0000-0017-000000000060}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000115}, !- Handle + {00000000-0000-0000-0052-000000000197}, !- Handle Pipe Adiabatic 3 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000080}, !- Inlet Port {00000000-0000-0000-0017-000000000081}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000116}, !- Handle + {00000000-0000-0000-0052-000000000198}, !- Handle Pipe Adiabatic 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000082}, !- Inlet Port {00000000-0000-0000-0017-000000000083}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000117}, !- Handle + {00000000-0000-0000-0052-000000000199}, !- Handle Pipe Adiabatic 4 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000084}, !- Inlet Port {00000000-0000-0000-0017-000000000085}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000118}, !- Handle + {00000000-0000-0000-0052-000000000200}, !- Handle Pipe Adiabatic 5 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000101}, !- Inlet Port {00000000-0000-0000-0017-000000000102}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000119}, !- Handle + {00000000-0000-0000-0052-000000000201}, !- Handle Pipe Adiabatic 5 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000103}, !- Inlet Port {00000000-0000-0000-0017-000000000104}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000120}, !- Handle + {00000000-0000-0000-0052-000000000202}, !- Handle Pipe Adiabatic 6 Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000105}, !- Inlet Port {00000000-0000-0000-0017-000000000106}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000121}, !- Handle + {00000000-0000-0000-0052-000000000203}, !- Handle Pipe Adiabatic 7 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000220}, !- Inlet Port - {00000000-0000-0000-0017-000000000221}; !- Outlet Port + {00000000-0000-0000-0017-000000000408}, !- Inlet Port + {00000000-0000-0000-0017-000000000409}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000122}, !- Handle - Pipe Adiabatic 7 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000222}, !- Inlet Port - {00000000-0000-0000-0017-000000000223}; !- Outlet Port + {00000000-0000-0000-0052-000000000204}, !- Handle + Pipe Adiabatic 7 Outlet Water Node, !- Name + {00000000-0000-0000-0017-000000000410}, !- Inlet Port + {00000000-0000-0000-0017-000000000411}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000123}, !- Handle + {00000000-0000-0000-0052-000000000205}, !- Handle Pipe Adiabatic 8 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000212}, !- Inlet Port - {00000000-0000-0000-0017-000000000224}; !- Outlet Port + {00000000-0000-0000-0017-000000000400}, !- Inlet Port + {00000000-0000-0000-0017-000000000412}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000124}, !- Handle + {00000000-0000-0000-0052-000000000206}, !- Handle Pipe Adiabatic 8 Outlet Water Node, !- Name - {00000000-0000-0000-0017-000000000225}, !- Inlet Port - {00000000-0000-0000-0017-000000000226}; !- Outlet Port + {00000000-0000-0000-0017-000000000413}, !- Inlet Port + {00000000-0000-0000-0017-000000000414}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000125}, !- Handle + {00000000-0000-0000-0052-000000000207}, !- Handle Pipe Adiabatic 9 Inlet Water Node, !- Name - {00000000-0000-0000-0017-000000000227}, !- Inlet Port - {00000000-0000-0000-0017-000000000228}; !- Outlet Port + {00000000-0000-0000-0017-000000000415}, !- Inlet Port + {00000000-0000-0000-0017-000000000416}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000126}, !- Handle - Primary Boiler 332kBtu/hr 0.9 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000208}, !- Handle + Primary Boiler 1560kBtu/hr 0.9 Thermal Eff Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000038}, !- Inlet Port {00000000-0000-0000-0017-000000000048}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000127}, !- Handle - Primary Boiler 332kBtu/hr 0.9 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000209}, !- Handle + Primary Boiler 1560kBtu/hr 0.9 Thermal Eff Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000049}, !- Inlet Port {00000000-0000-0000-0017-000000000050}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000128}, !- Handle - Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Demand Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000210}, !- Handle + Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000092}, !- Inlet Port {00000000-0000-0000-0017-000000000108}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000129}, !- Handle - Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Demand Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000211}, !- Handle + Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000109}, !- Inlet Port {00000000-0000-0000-0017-000000000110}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000130}, !- Handle - Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Supply Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000212}, !- Handle + Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000063}, !- Inlet Port {00000000-0000-0000-0017-000000000073}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000131}, !- Handle - Primary Chiller WaterCooled Scroll 26tons 0.8kW/ton Supply Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000213}, !- Handle + Primary Chiller WaterCooled Rotary Screw 65tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000074}, !- Inlet Port {00000000-0000-0000-0017-000000000075}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000132}, !- Handle + {00000000-0000-0000-0052-000000000214}, !- Handle Pump Variable Speed 1 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000046}, !- Inlet Port {00000000-0000-0000-0017-000000000047}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000133}, !- Handle + {00000000-0000-0000-0052-000000000215}, !- Handle Pump Variable Speed 2 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000071}, !- Inlet Port {00000000-0000-0000-0017-000000000072}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000134}, !- Handle + {00000000-0000-0000-0052-000000000216}, !- Handle Pump Variable Speed 3 Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000096}, !- Inlet Port {00000000-0000-0000-0017-000000000097}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000135}, !- Handle - Secondary Boiler 332kBtu/hr 0.9 Thermal Eff Inlet Water Node, !- Name + {00000000-0000-0000-0052-000000000217}, !- Handle + Secondary Boiler 0kBtu/hr 0.9 AFUE Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000051}, !- Inlet Port {00000000-0000-0000-0017-000000000052}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000136}, !- Handle - Secondary Boiler 332kBtu/hr 0.9 Thermal Eff Outlet Water Node, !- Name + {00000000-0000-0000-0052-000000000218}, !- Handle + Secondary Boiler 0kBtu/hr 0.9 AFUE Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000053}, !- Inlet Port {00000000-0000-0000-0017-000000000054}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000137}, !- Handle + {00000000-0000-0000-0052-000000000219}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000111}, !- Inlet Port {00000000-0000-0000-0017-000000000112}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000138}, !- Handle + {00000000-0000-0000-0052-000000000220}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Demand Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000113}, !- Inlet Port {00000000-0000-0000-0017-000000000114}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000139}, !- Handle + {00000000-0000-0000-0052-000000000221}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Inlet Water Node, !- Name {00000000-0000-0000-0017-000000000076}, !- Inlet Port {00000000-0000-0000-0017-000000000077}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000140}, !- Handle + {00000000-0000-0000-0052-000000000222}, !- Handle Secondary Chiller WaterCooled Scroll 0tons 0.8kW/ton Supply Outlet Water Node, !- Name {00000000-0000-0000-0017-000000000078}, !- Inlet Port {00000000-0000-0000-0017-000000000079}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000141}, !- Handle + {00000000-0000-0000-0052-000000000223}, !- Handle + Sys6 Return Fan 1 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000229}, !- Inlet Port + {00000000-0000-0000-0017-000000000230}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000224}, !- Handle + Sys6 Return Fan 2 Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000323}, !- Inlet Port + {00000000-0000-0000-0017-000000000324}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000225}, !- Handle Sys6 Return Fan Outlet Air Node, !- Name {00000000-0000-0000-0017-000000000135}, !- Inlet Port {00000000-0000-0000-0017-000000000136}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000142}, !- Handle + {00000000-0000-0000-0052-000000000226}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000209}, !- Inlet Port + {00000000-0000-0000-0017-000000000211}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000227}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000212}, !- Inlet Port + {00000000-0000-0000-0017-000000000210}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000228}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000226}, !- Inlet Port + {00000000-0000-0000-0017-000000000227}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000229}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000487}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000230}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000492}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000231}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000207}, !- Inlet Port + {00000000-0000-0000-0017-000000000228}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000232}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000221}, !- Inlet Port + {00000000-0000-0000-0017-000000000208}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000233}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Inlet Node, !- Name + {00000000-0000-0000-0017-000000000303}, !- Inlet Port + {00000000-0000-0000-0017-000000000305}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000234}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Demand Outlet Node, !- Name + {00000000-0000-0000-0017-000000000306}, !- Inlet Port + {00000000-0000-0000-0017-000000000304}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000235}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Mixed Air Node, !- Name + {00000000-0000-0000-0017-000000000320}, !- Inlet Port + {00000000-0000-0000-0017-000000000321}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000236}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Outdoor Air Node, !- Name + , !- Inlet Port + {00000000-0000-0000-0017-000000000493}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000237}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Relief Air Node, !- Name + {00000000-0000-0000-0017-000000000498}, !- Inlet Port + ; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000238}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Inlet Node, !- Name + {00000000-0000-0000-0017-000000000301}, !- Inlet Port + {00000000-0000-0000-0017-000000000322}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000239}, !- Handle + sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Supply Outlet Node, !- Name + {00000000-0000-0000-0017-000000000315}, !- Inlet Port + {00000000-0000-0000-0017-000000000302}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000240}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Inlet Node, !- Name {00000000-0000-0000-0017-000000000117}, !- Inlet Port {00000000-0000-0000-0017-000000000119}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000143}, !- Handle + {00000000-0000-0000-0052-000000000241}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Demand Outlet Node, !- Name {00000000-0000-0000-0017-000000000120}, !- Inlet Port {00000000-0000-0000-0017-000000000118}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000144}, !- Handle + {00000000-0000-0000-0052-000000000242}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Mixed Air Node, !- Name {00000000-0000-0000-0017-000000000132}, !- Inlet Port {00000000-0000-0000-0017-000000000133}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000145}, !- Handle + {00000000-0000-0000-0052-000000000243}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Outdoor Air Node, !- Name , !- Inlet Port - {00000000-0000-0000-0017-000000000293}; !- Outlet Port + {00000000-0000-0000-0017-000000000481}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000146}, !- Handle + {00000000-0000-0000-0052-000000000244}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Relief Air Node, !- Name - {00000000-0000-0000-0017-000000000298}, !- Inlet Port + {00000000-0000-0000-0017-000000000486}, !- Inlet Port ; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000147}, !- Handle + {00000000-0000-0000-0052-000000000245}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Inlet Node, !- Name {00000000-0000-0000-0017-000000000115}, !- Inlet Port {00000000-0000-0000-0017-000000000134}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000148}, !- Handle + {00000000-0000-0000-0052-000000000246}, !- Handle sys_6|mixed|shr>erv|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Supply Outlet Node, !- Name {00000000-0000-0000-0017-000000000127}, !- Inlet Port {00000000-0000-0000-0017-000000000116}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000149}, !- Handle + {00000000-0000-0000-0052-000000000247}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000488}, !- Inlet Port + {00000000-0000-0000-0017-000000000489}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000248}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000490}, !- Inlet Port + {00000000-0000-0000-0017-000000000491}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000249}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Primary Outlet Air Node, !- Name + {00000000-0000-0000-0017-000000000494}, !- Inlet Port + {00000000-0000-0000-0017-000000000495}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000250}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 ERV Secondary Inlet Air Node, !- Name + {00000000-0000-0000-0017-000000000496}, !- Inlet Port + {00000000-0000-0000-0017-000000000497}; !- Outlet Port + +OS:Node, + {00000000-0000-0000-0052-000000000251}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Primary Outlet Air Node, !- Name - {00000000-0000-0000-0017-000000000294}, !- Inlet Port - {00000000-0000-0000-0017-000000000295}; !- Outlet Port + {00000000-0000-0000-0017-000000000482}, !- Inlet Port + {00000000-0000-0000-0017-000000000483}; !- Outlet Port OS:Node, - {00000000-0000-0000-0052-000000000150}, !- Handle + {00000000-0000-0000-0052-000000000252}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| ERV Secondary Inlet Air Node, !- Name - {00000000-0000-0000-0017-000000000296}, !- Inlet Port - {00000000-0000-0000-0017-000000000297}; !- Outlet Port + {00000000-0000-0000-0017-000000000484}, !- Inlet Port + {00000000-0000-0000-0017-000000000485}; !- Outlet Port OS:OutputControl:ReportingTolerances, {00000000-0000-0000-0053-000000000001}, !- Handle @@ -5054,7 +8391,7 @@ OS:People, , !- Number of People Schedule Name , !- Activity Level Schedule Name , !- Surface Name/Angle Factor List Name - {00000000-0000-0000-0066-000000000022}, !- Work Efficiency Schedule Name + {00000000-0000-0000-0066-000000000024}, !- Work Efficiency Schedule Name {00000000-0000-0000-0066-000000000005}, !- Clothing Insulation Schedule Name {00000000-0000-0000-0066-000000000001}, !- Air Velocity Schedule Name 1; !- Multiplier @@ -5077,8 +8414,8 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000002}, !- Handle Pipe Adiabatic 10, !- Name - {00000000-0000-0000-0017-000000000231}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000232}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000419}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000420}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000003}, !- Handle @@ -5113,20 +8450,20 @@ OS:Pipe:Adiabatic, OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000008}, !- Handle Pipe Adiabatic 7, !- Name - {00000000-0000-0000-0017-000000000221}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000222}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000409}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000410}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000009}, !- Handle Pipe Adiabatic 8, !- Name - {00000000-0000-0000-0017-000000000224}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000225}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000412}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000413}; !- Outlet Node Name OS:Pipe:Adiabatic, {00000000-0000-0000-0056-000000000010}, !- Handle Pipe Adiabatic 9, !- Name - {00000000-0000-0000-0017-000000000228}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000229}; !- Outlet Node Name + {00000000-0000-0000-0017-000000000416}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000417}; !- Outlet Node Name OS:PlantLoop, {00000000-0000-0000-0057-000000000001}, !- Handle @@ -5137,7 +8474,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000039}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000069}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5151,7 +8488,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000002}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5173,7 +8510,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000069}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000151}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5187,7 +8524,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000003}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5209,7 +8546,7 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000081}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000163}, !- Loop Temperature Setpoint Node Name , !- Maximum Loop Temperature {C} , !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} @@ -5223,7 +8560,7 @@ OS:PlantLoop, , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000005}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000007}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5245,21 +8582,21 @@ OS:PlantLoop, , !- Plant Equipment Operation Heating Load , !- Plant Equipment Operation Cooling Load , !- Primary Plant Equipment Operation Scheme - {00000000-0000-0000-0052-000000000086}, !- Loop Temperature Setpoint Node Name + {00000000-0000-0000-0052-000000000168}, !- Loop Temperature Setpoint Node Name 60, !- Maximum Loop Temperature {C} 10, !- Minimum Loop Temperature {C} , !- Maximum Loop Flow Rate {m3/s} , !- Minimum Loop Flow Rate {m3/s} Autocalculate, !- Plant Loop Volume {m3} - {00000000-0000-0000-0017-000000000207}, !- Plant Side Inlet Node Name - {00000000-0000-0000-0017-000000000209}, !- Plant Side Outlet Node Name + {00000000-0000-0000-0017-000000000395}, !- Plant Side Inlet Node Name + {00000000-0000-0000-0017-000000000397}, !- Plant Side Outlet Node Name , !- Plant Side Branch List Name - {00000000-0000-0000-0017-000000000210}, !- Demand Side Inlet Node Name - {00000000-0000-0000-0017-000000000213}, !- Demand Side Outlet Node Name + {00000000-0000-0000-0017-000000000398}, !- Demand Side Inlet Node Name + {00000000-0000-0000-0017-000000000401}, !- Demand Side Outlet Node Name , !- Demand Side Branch List Name , !- Demand Side Connector List Name Optimal, !- Load Distribution Scheme - {00000000-0000-0000-0008-000000000004}, !- Availability Manager List Name + {00000000-0000-0000-0008-000000000006}, !- Availability Manager List Name , !- Plant Loop Demand Calculation Scheme , !- Common Pipe Simulation , !- Pressure Simulation Type @@ -5274,7 +8611,8 @@ OS:PlantLoop, OS:PortList, {00000000-0000-0000-0058-000000000001}, !- Handle - {00000000-0000-0000-0094-000000000013}; !- HVAC Component + {00000000-0000-0000-0094-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000239}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000002}, !- Handle @@ -5282,11 +8620,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000003}, !- Handle - {00000000-0000-0000-0094-000000000013}; !- HVAC Component + {00000000-0000-0000-0094-000000000013}, !- HVAC Component + {00000000-0000-0000-0017-000000000240}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000004}, !- Handle - {00000000-0000-0000-0094-000000000018}; !- HVAC Component + {00000000-0000-0000-0094-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000347}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000005}, !- Handle @@ -5294,11 +8634,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000006}, !- Handle - {00000000-0000-0000-0094-000000000018}; !- HVAC Component + {00000000-0000-0000-0094-000000000018}, !- HVAC Component + {00000000-0000-0000-0017-000000000348}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000007}, !- Handle - {00000000-0000-0000-0094-000000000014}; !- HVAC Component + {00000000-0000-0000-0094-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000361}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000008}, !- Handle @@ -5306,11 +8648,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000009}, !- Handle - {00000000-0000-0000-0094-000000000014}; !- HVAC Component + {00000000-0000-0000-0094-000000000014}, !- HVAC Component + {00000000-0000-0000-0017-000000000362}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000010}, !- Handle - {00000000-0000-0000-0094-000000000015}; !- HVAC Component + {00000000-0000-0000-0094-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000333}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000011}, !- Handle @@ -5318,11 +8662,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000012}, !- Handle - {00000000-0000-0000-0094-000000000015}; !- HVAC Component + {00000000-0000-0000-0094-000000000015}, !- HVAC Component + {00000000-0000-0000-0017-000000000334}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000013}, !- Handle - {00000000-0000-0000-0094-000000000009}; !- HVAC Component + {00000000-0000-0000-0094-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000295}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000014}, !- Handle @@ -5330,7 +8676,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000015}, !- Handle - {00000000-0000-0000-0094-000000000009}; !- HVAC Component + {00000000-0000-0000-0094-000000000009}, !- HVAC Component + {00000000-0000-0000-0017-000000000296}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000016}, !- Handle @@ -5348,7 +8695,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000019}, !- Handle - {00000000-0000-0000-0094-000000000016}; !- HVAC Component + {00000000-0000-0000-0094-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000375}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000020}, !- Handle @@ -5356,11 +8704,13 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000021}, !- Handle - {00000000-0000-0000-0094-000000000016}; !- HVAC Component + {00000000-0000-0000-0094-000000000016}, !- HVAC Component + {00000000-0000-0000-0017-000000000376}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000022}, !- Handle - {00000000-0000-0000-0094-000000000010}; !- HVAC Component + {00000000-0000-0000-0094-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000281}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000023}, !- Handle @@ -5368,7 +8718,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000024}, !- Handle - {00000000-0000-0000-0094-000000000010}; !- HVAC Component + {00000000-0000-0000-0094-000000000010}, !- HVAC Component + {00000000-0000-0000-0017-000000000282}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000025}, !- Handle @@ -5384,7 +8735,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000028}, !- Handle - {00000000-0000-0000-0094-000000000017}; !- HVAC Component + {00000000-0000-0000-0094-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000389}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000029}, !- Handle @@ -5392,7 +8744,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000030}, !- Handle - {00000000-0000-0000-0094-000000000017}; !- HVAC Component + {00000000-0000-0000-0094-000000000017}, !- HVAC Component + {00000000-0000-0000-0017-000000000390}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000031}, !- Handle @@ -5422,7 +8775,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000037}, !- Handle - {00000000-0000-0000-0094-000000000011}; !- HVAC Component + {00000000-0000-0000-0094-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000253}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000038}, !- Handle @@ -5430,7 +8784,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000039}, !- Handle - {00000000-0000-0000-0094-000000000011}; !- HVAC Component + {00000000-0000-0000-0094-000000000011}, !- HVAC Component + {00000000-0000-0000-0017-000000000254}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000040}, !- Handle @@ -5460,7 +8815,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000046}, !- Handle - {00000000-0000-0000-0094-000000000012}; !- HVAC Component + {00000000-0000-0000-0094-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000267}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000047}, !- Handle @@ -5468,7 +8824,8 @@ OS:PortList, OS:PortList, {00000000-0000-0000-0058-000000000048}, !- Handle - {00000000-0000-0000-0094-000000000012}; !- HVAC Component + {00000000-0000-0000-0094-000000000012}, !- HVAC Component + {00000000-0000-0000-0017-000000000268}; !- Port 1 OS:PortList, {00000000-0000-0000-0058-000000000049}, !- Handle @@ -5501,8 +8858,8 @@ OS:PortList, OS:Pump:ConstantSpeed, {00000000-0000-0000-0059-000000000001}, !- Handle Main Service Water Loop Circulator Pump, !- Name - {00000000-0000-0000-0017-000000000214}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000215}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000402}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000403}, !- Outlet Node Name autosize, !- Rated Flow Rate {m3/s} 446362.499964258, !- Rated Pump Head {Pa} autosize, !- Rated Power Consumption {W} @@ -5526,9 +8883,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000045}, !- Inlet Node Name {00000000-0000-0000-0017-000000000046}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 200710.224008028, !- Rated Pump Head {Pa} + 210100.176008404, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.855, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5559,9 +8916,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000070}, !- Inlet Node Name {00000000-0000-0000-0017-000000000071}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 236900.664009476, !- Rated Pump Head {Pa} + 245116.872009805, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.865, !- Motor Efficiency + 0.895, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -5592,9 +8949,9 @@ OS:Pump:VariableSpeed, {00000000-0000-0000-0017-000000000095}, !- Inlet Node Name {00000000-0000-0000-0017-000000000096}, !- Outlet Node Name , !- Rated Flow Rate {m3/s} - 210100.176008404, !- Rated Pump Head {Pa} + 215264.649608611, !- Rated Pump Head {Pa} , !- Rated Power Consumption {W} - 0.895, !- Motor Efficiency + 0.917, !- Motor Efficiency , !- Fraction of Motor Inefficiencies to Fluid Stream , !- Coefficient 1 of the Part Load Performance Curve , !- Coefficient 2 of the Part Load Performance Curve @@ -6391,6 +9748,33 @@ OS:Schedule:Day, OS:Schedule:Day, {00000000-0000-0000-0064-000000000037}, !- Handle + Schedule Day 10, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000038}, !- Handle + Schedule Day 11, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000039}, !- Handle + Schedule Day 12, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000040}, !- Handle Schedule Day 2, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6399,7 +9783,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000038}, !- Handle + {00000000-0000-0000-0064-000000000041}, !- Handle Schedule Day 3, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6477,9 +9861,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000039}, !- Handle + {00000000-0000-0000-0064-000000000042}, !- Handle Schedule Day 4, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6555,25 +9939,25 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000040}, !- Handle + {00000000-0000-0000-0064-000000000043}, !- Handle Schedule Day 5, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 22; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000041}, !- Handle + {00000000-0000-0000-0064-000000000044}, !- Handle Schedule Day 6, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000042}, !- Handle + {00000000-0000-0000-0064-000000000045}, !- Handle Schedule Day 7, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6582,7 +9966,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000043}, !- Handle + {00000000-0000-0000-0064-000000000046}, !- Handle Schedule Day 8, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6591,7 +9975,16 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000044}, !- Handle + {00000000-0000-0000-0064-000000000047}, !- Handle + Schedule Day 9, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000048}, !- Handle Service Water Loop Temp - 140F Default, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6600,16 +9993,34 @@ OS:Schedule:Day, 60; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000045}, !- Handle + {00000000-0000-0000-0064-000000000049}, !- Handle + Supply Air Temp Default 1, !- Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000050}, !- Handle + Supply Air Temp Default 2, !- Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 13; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000051}, !- Handle Supply Air Temp Default, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 13; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000046}, !- Handle + {00000000-0000-0000-0064-000000000052}, !- Handle Water Heater Ambient Temp Schedule 71.6F Default, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6618,7 +10029,7 @@ OS:Schedule:Day, 22.0000000000001; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000047}, !- Handle + {00000000-0000-0000-0064-000000000053}, !- Handle Work Efficiency Schedule Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6627,7 +10038,7 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000048}, !- Handle + {00000000-0000-0000-0064-000000000054}, !- Handle satCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6705,7 +10116,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000049}, !- Handle + {00000000-0000-0000-0064-000000000055}, !- Handle satCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6783,9 +10194,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000050}, !- Handle + {00000000-0000-0000-0064-000000000056}, !- Handle satCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -6861,7 +10272,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000051}, !- Handle + {00000000-0000-0000-0064-000000000057}, !- Handle satCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -6939,7 +10350,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000052}, !- Handle + {00000000-0000-0000-0064-000000000058}, !- Handle sunCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7017,7 +10428,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000053}, !- Handle + {00000000-0000-0000-0064-000000000059}, !- Handle sunCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7095,9 +10506,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000054}, !- Handle + {00000000-0000-0000-0064-000000000060}, !- Handle sunCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7173,7 +10584,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000055}, !- Handle + {00000000-0000-0000-0064-000000000061}, !- Handle sunCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7251,7 +10662,73 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000056}, !- Handle + {00000000-0000-0000-0064-000000000062}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Default, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000063}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000064}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000065}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Default, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 19, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000066}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Summer Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000067}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch Winter Design Day, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {00000000-0000-0000-0064-000000000068}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Default, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7266,7 +10743,7 @@ OS:Schedule:Day, 0; !- Value Until Time 3 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000057}, !- Handle + {00000000-0000-0000-0064-000000000069}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Summer Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7275,7 +10752,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000058}, !- Handle + {00000000-0000-0000-0064-000000000070}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch Winter Design Day, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7284,7 +10761,7 @@ OS:Schedule:Day, 1; !- Value Until Time 1 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000059}, !- Handle + {00000000-0000-0000-0064-000000000071}, !- Handle wkdCHW Temp 1, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7362,7 +10839,7 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000060}, !- Handle + {00000000-0000-0000-0064-000000000072}, !- Handle wkdCHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7440,9 +10917,9 @@ OS:Schedule:Day, 7; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000061}, !- Handle + {00000000-0000-0000-0064-000000000073}, !- Handle wkdCW Temp 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name , !- Interpolate to Timestep 1, !- Hour 1 0, !- Minute 1 @@ -7518,7 +10995,7 @@ OS:Schedule:Day, 29; !- Value Until Time 24 OS:Schedule:Day, - {00000000-0000-0000-0064-000000000062}, !- Handle + {00000000-0000-0000-0064-000000000074}, !- Handle wkdCW Temp, !- Name {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -7826,9 +11303,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000013}, !- Handle Schedule Rule 20, !- Name - {00000000-0000-0000-0066-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000042}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000045}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7845,9 +11322,9 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000014}, !- Handle Schedule Rule 21, !- Name - {00000000-0000-0000-0066-000000000023}, !- Schedule Ruleset Name + {00000000-0000-0000-0066-000000000027}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000043}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000046}, !- Day Schedule Name Yes, !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -7863,6 +11340,82 @@ OS:Schedule:Rule, OS:Schedule:Rule, {00000000-0000-0000-0065-000000000015}, !- Handle + Schedule Rule 22, !- Name + {00000000-0000-0000-0066-000000000025}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0064-000000000047}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000016}, !- Handle + Schedule Rule 23, !- Name + {00000000-0000-0000-0066-000000000025}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0064-000000000037}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000017}, !- Handle + Schedule Rule 24, !- Name + {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name + 1, !- Rule Order + {00000000-0000-0000-0064-000000000038}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000018}, !- Handle + Schedule Rule 25, !- Name + {00000000-0000-0000-0066-000000000026}, !- Schedule Ruleset Name + 0, !- Rule Order + {00000000-0000-0000-0064-000000000039}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Rule, + {00000000-0000-0000-0065-000000000019}, !- Handle Schedule Rule 3, !- Name {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 1, !- Rule Order @@ -7881,7 +11434,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000016}, !- Handle + {00000000-0000-0000-0065-000000000020}, !- Handle Schedule Rule 4, !- Name {00000000-0000-0000-0066-000000000012}, !- Schedule Ruleset Name 0, !- Rule Order @@ -7900,7 +11453,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000017}, !- Handle + {00000000-0000-0000-0065-000000000021}, !- Handle Schedule Rule 5, !- Name {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 2, !- Rule Order @@ -7919,7 +11472,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000018}, !- Handle + {00000000-0000-0000-0065-000000000022}, !- Handle Schedule Rule 6, !- Name {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 1, !- Rule Order @@ -7938,7 +11491,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000019}, !- Handle + {00000000-0000-0000-0065-000000000023}, !- Handle Schedule Rule 7, !- Name {00000000-0000-0000-0066-000000000011}, !- Schedule Ruleset Name 0, !- Rule Order @@ -7957,7 +11510,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000020}, !- Handle + {00000000-0000-0000-0065-000000000024}, !- Handle Schedule Rule 8, !- Name {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 2, !- Rule Order @@ -7976,7 +11529,7 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000021}, !- Handle + {00000000-0000-0000-0065-000000000025}, !- Handle Schedule Rule 9, !- Name {00000000-0000-0000-0066-000000000010}, !- Schedule Ruleset Name 1, !- Rule Order @@ -7995,11 +11548,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000022}, !- Handle + {00000000-0000-0000-0065-000000000026}, !- Handle satCHW Temprule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000048}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000054}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8014,11 +11567,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000023}, !- Handle + {00000000-0000-0000-0065-000000000027}, !- Handle satCW Temprule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 1, !- Rule Order - {00000000-0000-0000-0064-000000000050}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000056}, !- Day Schedule Name No, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8033,11 +11586,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000024}, !- Handle + {00000000-0000-0000-0065-000000000028}, !- Handle sunCHW Temprule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000052}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000058}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8052,11 +11605,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000025}, !- Handle + {00000000-0000-0000-0065-000000000029}, !- Handle sunCW Temprule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 0, !- Rule Order - {00000000-0000-0000-0064-000000000054}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000060}, !- Day Schedule Name Yes, !- Apply Sunday No, !- Apply Monday No, !- Apply Tuesday @@ -8071,11 +11624,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000026}, !- Handle + {00000000-0000-0000-0065-000000000030}, !- Handle wkdCHW Temp rule, !- Name {00000000-0000-0000-0066-000000000003}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000059}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000071}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8090,11 +11643,11 @@ OS:Schedule:Rule, 31; !- End Day OS:Schedule:Rule, - {00000000-0000-0000-0065-000000000027}, !- Handle + {00000000-0000-0000-0065-000000000031}, !- Handle wkdCW Temp rule, !- Name {00000000-0000-0000-0066-000000000004}, !- Schedule Ruleset Name 2, !- Rule Order - {00000000-0000-0000-0064-000000000061}, !- Day Schedule Name + {00000000-0000-0000-0064-000000000073}, !- Day Schedule Name No, !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -8124,13 +11677,13 @@ OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000003}, !- Handle CHW Temp, !- Name {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000038}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000041}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000004}, !- Handle CW Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000039}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000042}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000005}, !- Handle @@ -8209,46 +11762,74 @@ OS:Schedule:Ruleset, OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000017}, !- Handle Schedule Ruleset 1, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000040}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000043}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000018}, !- Handle Schedule Ruleset 2, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000041}; !- Default Day Schedule Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000044}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000019}, !- Handle Service Water Loop Temp - 140F, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000044}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000048}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000020}, !- Handle - Supply Air Temp, !- Name - {00000000-0000-0000-0067-000000000007}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000045}; !- Default Day Schedule Name + Supply Air Temp 1, !- Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000049}; !- Default Day Schedule Name OS:Schedule:Ruleset, {00000000-0000-0000-0066-000000000021}, !- Handle + Supply Air Temp 2, !- Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000050}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000022}, !- Handle + Supply Air Temp, !- Name + {00000000-0000-0000-0067-000000000006}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000051}; !- Default Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000023}, !- Handle Water Heater Ambient Temp Schedule 71.6F, !- Name {00000000-0000-0000-0067-000000000008}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000046}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000052}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000022}, !- Handle + {00000000-0000-0000-0066-000000000024}, !- Handle Work Efficiency Schedule, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000047}; !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000053}; !- Default Day Schedule Name OS:Schedule:Ruleset, - {00000000-0000-0000-0066-000000000023}, !- Handle + {00000000-0000-0000-0066-000000000025}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 1 Occ Sch, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000062}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000063}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000064}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000026}, !- Handle + sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| 2 Occ Sch, !- Name + {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name + {00000000-0000-0000-0064-000000000065}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000066}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000067}; !- Winter Design Day Schedule Name + +OS:Schedule:Ruleset, + {00000000-0000-0000-0066-000000000027}, !- Handle sys_6|mixed|shr>none|sh>c-hw|sc>c-chw|ssf>vv|zh>b-hw|zc>none|srf>vv| Occ Sch, !- Name {00000000-0000-0000-0067-000000000004}, !- Schedule Type Limits Name - {00000000-0000-0000-0064-000000000056}, !- Default Day Schedule Name - {00000000-0000-0000-0064-000000000057}, !- Summer Design Day Schedule Name - {00000000-0000-0000-0064-000000000058}; !- Winter Design Day Schedule Name + {00000000-0000-0000-0064-000000000068}, !- Default Day Schedule Name + {00000000-0000-0000-0064-000000000069}, !- Summer Design Day Schedule Name + {00000000-0000-0000-0064-000000000070}; !- Winter Design Day Schedule Name OS:ScheduleTypeLimits, {00000000-0000-0000-0067-000000000001}, !- Handle @@ -8329,11 +11910,39 @@ OS:SetpointManager:OutdoorAirPretreat, 99, !- Maximum Setpoint Temperature {C} 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} - {00000000-0000-0000-0052-000000000144}, !- Reference Setpoint Node Name - {00000000-0000-0000-0052-000000000144}, !- Mixed Air Stream Node Name - {00000000-0000-0000-0052-000000000145}, !- Outdoor Air Stream Node Name - {00000000-0000-0000-0052-000000000141}, !- Return Air Stream Node Name - {00000000-0000-0000-0052-000000000149}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000242}, !- Reference Setpoint Node Name + {00000000-0000-0000-0052-000000000242}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0052-000000000243}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0052-000000000225}, !- Return Air Stream Node Name + {00000000-0000-0000-0052-000000000251}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0068-000000000002}, !- Handle + Setpoint Manager Outdoor Air Pretreat 2, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0052-000000000228}, !- Reference Setpoint Node Name + {00000000-0000-0000-0052-000000000228}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0052-000000000229}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0052-000000000223}, !- Return Air Stream Node Name + {00000000-0000-0000-0052-000000000247}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:OutdoorAirPretreat, + {00000000-0000-0000-0068-000000000003}, !- Handle + Setpoint Manager Outdoor Air Pretreat 3, !- Name + , !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 1e-05, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + {00000000-0000-0000-0052-000000000235}, !- Reference Setpoint Node Name + {00000000-0000-0000-0052-000000000235}, !- Mixed Air Stream Node Name + {00000000-0000-0000-0052-000000000236}, !- Outdoor Air Stream Node Name + {00000000-0000-0000-0052-000000000224}, !- Return Air Stream Node Name + {00000000-0000-0000-0052-000000000249}; !- Setpoint Node or NodeList Name OS:SetpointManager:OutdoorAirReset, {00000000-0000-0000-0069-000000000001}, !- Handle @@ -8343,7 +11952,7 @@ OS:SetpointManager:OutdoorAirReset, -16, !- Outdoor Low Temperature {C} 60, !- Setpoint at Outdoor High Temperature {C} 0, !- Outdoor High Temperature {C} - {00000000-0000-0000-0052-000000000081}, !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000163}, !- Setpoint Node or NodeList Name , !- Schedule Name , !- Setpoint at Outdoor Low Temperature 2 {C} , !- Outdoor Low Temperature 2 {C} @@ -8355,28 +11964,42 @@ OS:SetpointManager:Scheduled, Service hot water setpoint manager, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000019}, !- Schedule Name - {00000000-0000-0000-0052-000000000086}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000168}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000002}, !- Handle Setpoint Manager Scheduled 1, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000003}, !- Schedule Name - {00000000-0000-0000-0052-000000000039}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000069}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000003}, !- Handle Setpoint Manager Scheduled 2, !- Name Temperature, !- Control Variable {00000000-0000-0000-0066-000000000004}, !- Schedule Name - {00000000-0000-0000-0052-000000000069}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000151}; !- Setpoint Node or NodeList Name OS:SetpointManager:Scheduled, {00000000-0000-0000-0070-000000000004}, !- Handle Setpoint Manager Scheduled 3, !- Name Temperature, !- Control Variable + {00000000-0000-0000-0066-000000000022}, !- Schedule Name + {00000000-0000-0000-0052-000000000246}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0070-000000000005}, !- Handle + Setpoint Manager Scheduled 4, !- Name + Temperature, !- Control Variable {00000000-0000-0000-0066-000000000020}, !- Schedule Name - {00000000-0000-0000-0052-000000000148}; !- Setpoint Node or NodeList Name + {00000000-0000-0000-0052-000000000232}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:Scheduled, + {00000000-0000-0000-0070-000000000006}, !- Handle + Setpoint Manager Scheduled 5, !- Name + Temperature, !- Control Variable + {00000000-0000-0000-0066-000000000021}, !- Schedule Name + {00000000-0000-0000-0052-000000000239}; !- Setpoint Node or NodeList Name OS:ShadowCalculation, {00000000-0000-0000-0071-000000000001}, !- Handle @@ -8529,6 +12152,47 @@ OS:Sizing:Plant, OS:Sizing:System, {00000000-0000-0000-0081-000000000001}, !- Handle + {00000000-0000-0000-0002-000000000003}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:Sizing:System, + {00000000-0000-0000-0081-000000000002}, !- Handle {00000000-0000-0000-0002-000000000001}, !- AirLoop Name , !- Type of Load to Size On Autosize, !- Design Outdoor Air Flow Rate {m3/s} @@ -8568,19 +12232,60 @@ OS:Sizing:System, OnOff, !- Central Cooling Capacity Control Method autosize; !- Occupant Diversity +OS:Sizing:System, + {00000000-0000-0000-0081-000000000003}, !- Handle + {00000000-0000-0000-0002-000000000002}, !- AirLoop Name + , !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 13, !- Central Cooling Design Supply Air Temperature {C} + 13.1, !- Central Heating Design Supply Air Temperature {C} + , !- Sizing Option + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + OS:Sizing:Zone, {00000000-0000-0000-0082-000000000001}, !- Handle {00000000-0000-0000-0094-000000000013}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8606,16 +12311,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000002}, !- Handle {00000000-0000-0000-0094-000000000018}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8641,16 +12346,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000003}, !- Handle {00000000-0000-0000-0094-000000000014}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8676,16 +12381,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000004}, !- Handle {00000000-0000-0000-0094-000000000015}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8711,16 +12416,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000005}, !- Handle {00000000-0000-0000-0094-000000000009}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8781,16 +12486,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000007}, !- Handle {00000000-0000-0000-0094-000000000016}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8816,16 +12521,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000008}, !- Handle {00000000-0000-0000-0094-000000000010}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8886,16 +12591,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000010}, !- Handle {00000000-0000-0000-0094-000000000017}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -8991,16 +12696,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000013}, !- Handle {00000000-0000-0000-0094-000000000011}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -9096,16 +12801,16 @@ OS:Sizing:Zone, OS:Sizing:Zone, {00000000-0000-0000-0082-000000000016}, !- Handle {00000000-0000-0000-0094-000000000012}, !- Zone or ZoneList Name - SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method 14, !- Zone Cooling Design Supply Air Temperature {C} - 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} - SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method 40, !- Zone Heating Design Supply Air Temperature {C} - 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 21, !- Zone Heating Design Supply Air Temperature Difference {deltaC} 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} - , !- Zone Heating Sizing Factor - , !- Zone Cooling Sizing Factor + 1.3, !- Zone Heating Sizing Factor + 1.1, !- 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} @@ -13326,7 +17031,7 @@ OS:WaterHeater:Mixed, NaturalGas, !- On Cycle Parasitic Fuel Type 0, !- On Cycle Parasitic Heat Fraction to Tank Schedule, !- Ambient Temperature Indicator - {00000000-0000-0000-0066-000000000021}, !- Ambient Temperature Schedule Name + {00000000-0000-0000-0066-000000000023}, !- Ambient Temperature Schedule Name , !- Ambient Temperature Thermal Zone Name , !- Ambient Temperature Outdoor Air Node Name 7.59358966638208, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} @@ -13336,8 +17041,8 @@ OS:WaterHeater:Mixed, , !- Peak Use Flow Rate {m3/s} , !- Use Flow Rate Fraction Schedule Name , !- Cold Water Supply Temperature Schedule Name - {00000000-0000-0000-0017-000000000217}, !- Use Side Inlet Node Name - {00000000-0000-0000-0017-000000000218}, !- Use Side Outlet Node Name + {00000000-0000-0000-0017-000000000405}, !- Use Side Inlet Node Name + {00000000-0000-0000-0017-000000000406}, !- Use Side Outlet Node Name 1, !- Use Side Effectiveness , !- Source Side Inlet Node Name , !- Source Side Outlet Node Name @@ -13360,8 +17065,8 @@ OS:WaterHeater:Sizing, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000001}, !- Handle Core_bottom WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000234}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000235}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000422}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000423}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13374,8 +17079,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000002}, !- Handle Core_mid WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000238}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000239}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000426}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000427}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13388,8 +17093,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000003}, !- Handle Core_top WUC 0.37gpm 140F, !- Name - {00000000-0000-0000-0017-000000000242}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000243}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000430}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000431}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13402,8 +17107,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000004}, !- Handle Perimeter_bot_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000246}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000247}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000434}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000435}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13416,8 +17121,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000005}, !- Handle Perimeter_bot_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000250}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000251}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000438}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000439}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13430,8 +17135,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000006}, !- Handle Perimeter_bot_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000254}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000255}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000442}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000443}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13444,8 +17149,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000007}, !- Handle Perimeter_bot_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000258}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000259}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000446}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000447}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13458,8 +17163,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000008}, !- Handle Perimeter_mid_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000262}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000263}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000450}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000451}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13472,8 +17177,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000009}, !- Handle Perimeter_mid_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000266}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000267}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000454}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000455}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13486,8 +17191,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000010}, !- Handle Perimeter_mid_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000270}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000271}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000458}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000459}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13500,8 +17205,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000011}, !- Handle Perimeter_mid_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000274}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000275}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000462}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000463}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13514,8 +17219,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000012}, !- Handle Perimeter_top_ZN_1 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000278}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000279}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000466}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000467}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13528,8 +17233,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000013}, !- Handle Perimeter_top_ZN_2 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000282}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000283}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000470}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000471}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13542,8 +17247,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000014}, !- Handle Perimeter_top_ZN_3 WUC 0.08gpm 140F, !- Name - {00000000-0000-0000-0017-000000000286}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000287}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000474}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000475}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13556,8 +17261,8 @@ OS:WaterUse:Connections, OS:WaterUse:Connections, {00000000-0000-0000-0100-000000000015}, !- Handle Perimeter_top_ZN_4 WUC 0.05gpm 140F, !- Name - {00000000-0000-0000-0017-000000000290}, !- Inlet Node Name - {00000000-0000-0000-0017-000000000291}, !- Outlet Node Name + {00000000-0000-0000-0017-000000000478}, !- Inlet Node Name + {00000000-0000-0000-0017-000000000479}, !- Outlet Node Name , !- Supply Water Storage Tank Name , !- Reclamation Water Storage Tank Name , !- Hot Water Supply Temperature Schedule Name @@ -13857,28 +17562,88 @@ OS:ZoneHVAC:Baseboard:Convective:Water, OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000002}, !- Handle - Zone HVAC Baseboard Convective Water 2, !- Name + Zone HVAC Baseboard Convective Water 10, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000002}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000003}, !- Handle - Zone HVAC Baseboard Convective Water 3, !- Name + Zone HVAC Baseboard Convective Water 11, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000003}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000004}, !- Handle - Zone HVAC Baseboard Convective Water 4, !- Name + Zone HVAC Baseboard Convective Water 12, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000004}; !- Heating Coil Name OS:ZoneHVAC:Baseboard:Convective:Water, {00000000-0000-0000-0106-000000000005}, !- Handle - Zone HVAC Baseboard Convective Water 5, !- Name + Zone HVAC Baseboard Convective Water 13, !- Name {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name {00000000-0000-0000-0016-000000000005}; !- Heating Coil Name +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000006}, !- Handle + Zone HVAC Baseboard Convective Water 14, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000006}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000007}, !- Handle + Zone HVAC Baseboard Convective Water 15, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000007}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000008}, !- Handle + Zone HVAC Baseboard Convective Water 2, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000008}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000009}, !- Handle + Zone HVAC Baseboard Convective Water 3, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000009}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000010}, !- Handle + Zone HVAC Baseboard Convective Water 4, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000010}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000011}, !- Handle + Zone HVAC Baseboard Convective Water 5, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000011}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000012}, !- Handle + Zone HVAC Baseboard Convective Water 6, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000012}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000013}, !- Handle + Zone HVAC Baseboard Convective Water 7, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000013}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000014}, !- Handle + Zone HVAC Baseboard Convective Water 8, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000014}; !- Heating Coil Name + +OS:ZoneHVAC:Baseboard:Convective:Water, + {00000000-0000-0000-0106-000000000015}, !- Handle + Zone HVAC Baseboard Convective Water 9, !- Name + {00000000-0000-0000-0063-000000000001}, !- Availability Schedule Name + {00000000-0000-0000-0016-000000000015}; !- Heating Coil Name + OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000001}, !- Handle ALL_ST=- undefined -_FL=Building Story 1_SCH=A Zone HVAC Equipment List, !- Name @@ -13902,12 +17667,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000004}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000009}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000009}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13918,12 +17683,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000005}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000008}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000008}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13934,12 +17699,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000006}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000010}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000010}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13950,12 +17715,12 @@ OS:ZoneHVAC:EquipmentList, ALL_ST=Office open plan_FL=Building Story 1_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000007}, !- Thermal Zone , !- Load Distribution Scheme - {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 + {00000000-0000-0000-0106-000000000011}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 1, !- Zone Equipment Heating or No-Load Sequence 1 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 - {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + {00000000-0000-0000-0006-000000000011}, !- Zone Equipment 2 2, !- Zone Equipment Cooling Sequence 2 2, !- Zone Equipment Heating or No-Load Sequence 2 , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 @@ -13981,59 +17746,159 @@ OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000009}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000009}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000002}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000002}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000010}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000010}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000015}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000015}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000011}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000011}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000013}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000013}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000012}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000012}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000014}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000014}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000013}, !- Handle ALL_ST=Office open plan_FL=Building Story 2_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000013}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000012}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000012}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000014}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 1 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000014}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000005}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000005}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000015}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 2 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000015}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000003}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000003}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000016}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 3 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000016}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000006}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000006}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000017}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A 4 Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000017}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000007}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000007}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 OS:ZoneHVAC:EquipmentList, {00000000-0000-0000-0107-000000000018}, !- Handle ALL_ST=Office open plan_FL=Building Story 3_SCH=A Zone HVAC Equipment List, !- Name {00000000-0000-0000-0094-000000000018}, !- Thermal Zone - ; !- Load Distribution Scheme + , !- Load Distribution Scheme + {00000000-0000-0000-0106-000000000004}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {00000000-0000-0000-0006-000000000004}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 From e5e821653824f3c0ca58fe69cf138b2d95a9a292 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Tue, 10 Dec 2024 20:25:48 +0000 Subject: [PATCH 17/38] Including some minor fixes and significant revisions to code checking if a hot water loop is needed. --- .../standards/necb/ECMS/hvac_systems.rb | 16 +- .../standards/necb/NECB2011/autozone.rb | 208 ++++++++++++------ 2 files changed, 149 insertions(+), 75 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb b/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb index 8a7b961518..5ba84ab063 100755 --- a/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb @@ -819,9 +819,9 @@ def add_air_system(model:, sys_name_pars['sys_rf'] = 'none' sys_name_pars['sys_rf'] = 'cv' if sys_ret_fan_type == 'constant_volume' sys_name_pars['sys_rf'] = 'vv' if sys_ret_fan_type == 'variable_volume' - assign_base_sys_name( air_loop: airloop, - sys_abbr: sys_abbr, - sys_oa: sys_vent_type, + assign_base_sys_name( air_loop: airloop, + sys_abbr: sys_abbr, + sys_oa: sys_vent_type, sys_name_pars: sys_name_pars) return airloop, clg_eqpt, htg_eqpt, return_fan end @@ -3536,11 +3536,11 @@ def add_ecm_remove_airloops_add_zone_baseboards(model:, # Create the hot water loop if necessary. hw_loop = standard.create_hw_loop_if_required( - baseboard_type, - boiler_fueltype, - backup_boiler_fueltype, - mau_heating_coil_type, - model + baseboard_type: baseboard_type, + boiler_fueltype: boilder_fueltype, + backup_boiler_fueltype: backup_boiler_fueltype, + mau_heating_coil_type: mau_heating_coil_type, + model: model ) # Add baseboard heaters to each heated zone. diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 4d23078dc6..70e3dec953 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -120,14 +120,19 @@ def apply_systems(model:, # collect sizing information on each space. store_space_sizing_loads(model) - # remove idealair from zones if any. model.getZoneHVACIdealLoadsAirSystems.each(&:remove) - @hw_loop = create_hw_loop_if_required(self.fuel_type_set.baseboard_type, - self.fuel_type_set.boiler_fueltype, - self.fuel_type_set.backup_boiler_fueltype, - self.fuel_type_set.mau_heating_coil_type, - model) + @hw_loop = create_hw_loop_if_required(baseboard_type: self.fuel_type_set.baseboard_type, + boiler_fueltype: self.fuel_type_set.boiler_fueltype, + backup_boiler_fueltype: self.fuel_type_set.backup_boiler_fueltype, + mau_heating_coil_type: self.fuel_type_set.mau_heating_coil_type, + model: model, + hvac_system_primary: hvac_system_primary, + hvac_system_dwelling_units: hvac_system_dwelling_units, + hvac_system_washrooms: hvac_system_washrooms, + hvac_system_corridor: hvac_system_corridor, + hvac_system_storage: hvac_system_storage + ) # Rule that all dwelling units have their own zone and system. auto_system_dwelling_units(model: model, hvac_system_dwelling_units: hvac_system_dwelling_units, @@ -835,35 +840,81 @@ def determine_necb_schedule_type(space) ################################################# NECB Systems # Method will create a hot water loop if systems default fuel and medium sources require it. - def create_hw_loop_if_required(baseboard_type, boiler_fueltype, backup_boiler_fueltype, mau_heating_coil_type, model) + def create_hw_loop_if_required(baseboard_type: baseboard_type, boilder_fueltype: boiler_fueltype, backup_boiler_fueltype: backup_boiler_fueltype, mau_heating_coil_type: mau_heating_coil_type, model: model, hvac_system_primary: nil, hvac_system_dwelling_units: nil, hvac_system_washrooms: nil, hvac_system_corridor: nil, hvac_system_storage: nil) # get systems that will be used in the model based on the space types to determine if a hw_loop is required. - systems_used = [] - model.getSpaces.sort.each do |space| - systems_used << get_necb_spacetype_system_selection(space) - systems_used.uniq! - end - # See if we need to create a hot water loop based on fueltype and systems used. hw_loop_needed = false - systems_used.each do |system| - case system.to_s - when '2', '5', '7' - hw_loop_needed = true - when '1', '6' - if (mau_heating_coil_type == 'Hot Water') || (baseboard_type == 'Hot Water') - hw_loop_needed = true - end - when '3', '4' - if (mau_heating_coil_type == 'Hot Water') || (baseboard_type == 'Hot Water') - hw_loop_needed = true if baseboard_type == 'Hot Water' - end + + # Find Dwelling Units and determine if a HW loop is needed + dwelling_units = model.getSpaces.select { |space| is_a_necb_dwelling_unit?(space) } + unless dwelling_units.empty? + # If no dwelling unit hvac system is defined then check if a HW loop is needed based on the system type + if hvac_system_dwelling_units.nil? + hw_loop_needed = true if hw_loop_required_from_spaces(spaces: dwelling_units, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) + else + # If a dwelling unit hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item + hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_dwelling_units } + hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end - if hw_loop_needed - # just need one true condition to need a boiler. - break + end + + # Find washrooms and determine if a HW loop is needed + washroom_spaces = model.getSpaces.select { |space| is_an_necb_wet_space?(space) } + unless washroom_spaces.empty? + # If no washroom hvac system is defined then check if a HW loop is needed based on the system type + if hvac_system_washrooms.nil? + hw_loop_needed = true if hw_loop_required_from_spaces(spaces: washroom_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) + else + # If a washroom hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item + hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_washrooms } + hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool + end + end + + # Find corridors and determine if a HW loop is needed + corridor_spaces = model.getSpaces.select { |space| is_an_necb_wildcard_space?(space) } + unless corridor_spaces.empty? + # If no corridor hvac system is defined then check if a HW loop is needed based on the system type + if hvac_system_corridor.nil? + hw_loop_needed = true if hw_loop_required_from_spaces(spaces: corridor_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) + else + # If a corridor hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item + hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_corridor } + hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool + end + end + + # Find storage spaces and determine if a HW loop is needed + storage_spaces = model.getSpaces.select { |space| is_an_necb_storage_space?(space) } + unless storage_spaces.empty? + # If no storage space hvac system is defined then check if a HW loop is needed based on the system type + if hvac_system_storage.nil? + hw_loop_needed = true if hw_loop_required_from_spaces(spaces: storage_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) + else + # If a storage space hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item + hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_storage } + hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool + end + end + + # Find if a HW loop is needed for the remaining spaces + other_spaces = model.getSpaces.select do |space| + !is_an_necb_wet_space(space) && + !is_a_necb_dwelling_unit?(space) && + !is_an_necb_wildcard_space?(space) && + !is_an_necb_storage_space?(space) + end + unless other_spaces.empty? + # If a hvac system is defined for the remaining spaces then check if a HW loop is needed based on the system type + if hvac_system_primary.nil? + hw_loop_needed = true if hw_loop_required_from_spaces(spaces: other_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) + else + # If an hvac system is defined for the remaining spaces then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item + hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_primary } + hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end - # each end + # create hw_loop as needed.. Assuming one loop per model. if hw_loop_needed @hw_loop = OpenStudio::Model::PlantLoop.new(model) @@ -921,10 +972,10 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', hvac_system_name: hvac_system_primary, hw_loop: @hw_loop, zones: curr_zones - ) + ) end end - + when 2 group_similar_zones_together(sys_zones).each do |curr_zones| if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? @@ -939,7 +990,7 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', hvac_system_name: hvac_system_primary, hw_loop: @hw_loop, zones: curr_zones - ) + ) end end when 3 @@ -958,10 +1009,10 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', hvac_system_name: hvac_system_primary, hw_loop: @hw_loop, zones: curr_zones - ) + ) end end - + when 4 group_similar_zones_together(sys_zones).each do |curr_zones| if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? @@ -977,10 +1028,10 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', hvac_system_name: hvac_system_primary, hw_loop: @hw_loop, zones: curr_zones - ) + ) end end - + when 5 group_similar_zones_together(sys_zones).each do |curr_zones| if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? @@ -998,7 +1049,7 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', ) end end - + when 6 if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? if necb_reference_hp @@ -1024,7 +1075,7 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', zones: sys_zones ) end - + when 7 group_similar_zones_together(sys_zones).each do |curr_zones| if hvac_system_primary == 'NECB_Default' or hvac_system_primary.nil? @@ -1194,16 +1245,16 @@ def auto_system_dwelling_units( system_zones_hash.each_pair do |system, sys_zones| if dwelling_shared_ahu create_hvac_by_name( model: model, - hvac_system_name: hvac_system_washrooms, - zones: sys_zones, - hw_loop: hw_loop) # Add this method to create the system. + hvac_system_name: hvac_system_dwelling_units, + zones: sys_zones, + hw_loop: @hw_loop) # Add this method to create the system. else # Create a separate air loop for each unit. sys_zones.each do |zone| create_hvac_by_name( model: model, - hvac_system_name: hvac_system_washrooms, - zones: [zone], - hw_loop: hw_loop) # Add this method to create the system. + hvac_system_name: hvac_system_dwelling_units, + zones: [zone], + hw_loop: @hw_loop) # Add this method to create the system. end # zone end # if end # Sys_zone loop @@ -1235,10 +1286,10 @@ def auto_system_wet_spaces(hvac_system_washrooms: 'NECB_Default', hw_loop: @hw_loop) else create_hvac_by_name( model: model, - hvac_system_name: hvac_system_washrooms, - zones: wet_tz, - hw_loop: hw_loop) # Add this method to create the system. - end + hvac_system_name: hvac_system_washrooms, + zones: wet_tz, + hw_loop: @hw_loop) # Add this method to create the system. + end end # All wet spaces will be on their own system 4 AHU. @@ -1267,9 +1318,9 @@ def auto_system_storage_spaces(hvac_system_storage: 'NECB_Default', hw_loop: @hw_loop) else create_hvac_by_name( model: model, - hvac_system_name: hvac_system_washrooms, - zones: tz, - hw_loop: hw_loop) # Add this method to create the system. + hvac_system_name: hvac_system_washrooms, + zones: tz, + hw_loop: @hw_loop) # Add this method to create the system. end end @@ -1277,8 +1328,8 @@ def auto_system_storage_spaces(hvac_system_storage: 'NECB_Default', # All wild spaces will be on a single system 4 ahu with the largests heating load zone being the control zone. def auto_system_wild_spaces(hvac_system_corridor: 'NECB_Default', baseboard_type:, - necb_reference_hp:false, - necb_reference_hp_supp_fuel:'Defaultfuel', + necb_reference_hp: false, + necb_reference_hp_supp_fuel: 'Defaultfuel', heating_coil_type_sys4:, model:) @@ -1301,9 +1352,9 @@ def auto_system_wild_spaces(hvac_system_corridor: 'NECB_Default', hw_loop: @hw_loop) else create_hvac_by_name( model: model, - hvac_system_name: hvac_system_corridor, - zones: zones, - hw_loop: hw_loop) # Add this method to create the system. + hvac_system_name: hvac_system_corridor, + zones: zones, + hw_loop: @hw_loop) # Add this method to create the system. end end @@ -1374,15 +1425,6 @@ def create_hvac_by_name(model:, hvac_system_name:, zones:, hw_loop: nil) hvac_system_data = standard.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_name } raise("Could not find hvac_system_data for #{hvac_system_name}") if hvac_system_data.nil? - - # !!!!!!!!!!!!!!!!!!Create plant loop and boiler. This is a temporary solution until Chris changes the logic for deciding if a boiler is needed. - hw_loop = OpenStudio::Model::PlantLoop.new(model) - setup_hw_loop_with_components( model, - hw_loop, - 'Electricity', - 'Electricity', - model.alwaysOnDiscreteSchedule) - case hvac_system_data['system'] when 'sys_1' @@ -1413,7 +1455,7 @@ def create_hvac_by_name(model:, hvac_system_name:, zones:, hw_loop: nil) baseboard_type: hvac_system_data['baseboard_type'], hw_loop: hw_loop, new_auto_zoner: true) - when 'sys_4' + when 'sys_4' add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, necb_reference_hp: hvac_system_data['necb_reference_hp'], necb_reference_hp_supp_fuel: hvac_system_data['necb_reference_hp_supp_fuel'], @@ -1439,10 +1481,42 @@ def create_hvac_by_name(model:, hvac_system_name:, zones:, hw_loop: nil) hw_loop: hw_loop ) end - + end + # Method will check if the spaces passed to it will require a hot water loop based on their associated system type. + def hw_loop_required_from_spaces(spaces:, mau_heating_coil_type:, baseboard_type:) + hw_loop_needed = false + systems_used = [] + + # Find the space type for each space and get the system type associated with each space type + spaces.sort.each do |space| + systems_used << get_necb_spacetype_system_selection(space) + systems_used.uniq! + end + # See if we need to create a hot water loop based on fueltype and systems used. + systems_used.each do |system| + case system.to_s + when '2', '5', '7' + hw_loop_needed = true + when '1', '6' + if (mau_heating_coil_type == 'Hot Water') || (baseboard_type == 'Hot Water') + hw_loop_needed = true + end + when '3', '4' + if (mau_heating_coil_type == 'Hot Water') || (baseboard_type == 'Hot Water') + hw_loop_needed = true if baseboard_type == 'Hot Water' + end + end + if hw_loop_needed + # just need one true condition to need a boiler. + break + end + # each + end + return hw_loop_needed + end end From 1eca421221869b9a642df10c77eae487ceaf344f Mon Sep 17 00:00:00 2001 From: srgilani Date: Wed, 11 Dec 2024 09:09:11 -0500 Subject: [PATCH 18/38] Tweak a comment in test_dcv.rb just for the sake of re-running all tests on s3 as same tests, including unit tests for NV and DCV ECMS, that pass locally, fail on s3 --- test/necb/unit_tests/tests/test_dcv.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/necb/unit_tests/tests/test_dcv.rb b/test/necb/unit_tests/tests/test_dcv.rb index 18fd5c81cd..0e65916be9 100644 --- a/test/necb/unit_tests/tests/test_dcv.rb +++ b/test/necb/unit_tests/tests/test_dcv.rb @@ -128,7 +128,7 @@ def test_dcv() baseline_system_zones_map_option: nil # Three options: (1) 'NECB_Default'/'none'/nil (i.e. 'one_sys_per_bldg'), (2) 'one_sys_per_dwelling_unit', (3) 'one_sys_per_bldg' ) - # # comment out for regular tests + ### comment out for regular tests # BTAP::FileIO.save_osm(model, File.join(@output_folder,"#{template}-#{building_type}-#{dcv_type}.osm")) # puts File.join(@output_folder,"#{template}-#{building_type}-#{dcv_type}.osm") From 345d8ec58d209b77fe627d6b03c726e6b429ddd2 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Wed, 11 Dec 2024 22:51:38 +0000 Subject: [PATCH 19/38] Inculding more changes to support code which determines if a hot water loop is needed when forcing HVAC system types. --- .../standards/necb/NECB2011/autozone.rb | 14 +++++++------- .../standards/necb/NECB2011/necb_2011.rb | 5 +++-- .../standards/necb/NECB2011/system_fuels.rb | 11 +++++++++++ 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 70e3dec953..d2f1932456 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -840,7 +840,7 @@ def determine_necb_schedule_type(space) ################################################# NECB Systems # Method will create a hot water loop if systems default fuel and medium sources require it. - def create_hw_loop_if_required(baseboard_type: baseboard_type, boilder_fueltype: boiler_fueltype, backup_boiler_fueltype: backup_boiler_fueltype, mau_heating_coil_type: mau_heating_coil_type, model: model, hvac_system_primary: nil, hvac_system_dwelling_units: nil, hvac_system_washrooms: nil, hvac_system_corridor: nil, hvac_system_storage: nil) + def create_hw_loop_if_required(baseboard_type:, boiler_fueltype:, backup_boiler_fueltype:, mau_heating_coil_type:, model:, hvac_system_primary: nil, hvac_system_dwelling_units: nil, hvac_system_washrooms: nil, hvac_system_corridor: nil, hvac_system_storage: nil) # get systems that will be used in the model based on the space types to determine if a hw_loop is required. hw_loop_needed = false @@ -849,7 +849,7 @@ def create_hw_loop_if_required(baseboard_type: baseboard_type, boilder_fueltype: dwelling_units = model.getSpaces.select { |space| is_a_necb_dwelling_unit?(space) } unless dwelling_units.empty? # If no dwelling unit hvac system is defined then check if a HW loop is needed based on the system type - if hvac_system_dwelling_units.nil? + if hvac_system_dwelling_units.nil? || hvac_system_dwelling_units.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: dwelling_units, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) else # If a dwelling unit hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item @@ -862,7 +862,7 @@ def create_hw_loop_if_required(baseboard_type: baseboard_type, boilder_fueltype: washroom_spaces = model.getSpaces.select { |space| is_an_necb_wet_space?(space) } unless washroom_spaces.empty? # If no washroom hvac system is defined then check if a HW loop is needed based on the system type - if hvac_system_washrooms.nil? + if hvac_system_washrooms.nil? || hvac_system_washrooms.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: washroom_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) else # If a washroom hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item @@ -875,7 +875,7 @@ def create_hw_loop_if_required(baseboard_type: baseboard_type, boilder_fueltype: corridor_spaces = model.getSpaces.select { |space| is_an_necb_wildcard_space?(space) } unless corridor_spaces.empty? # If no corridor hvac system is defined then check if a HW loop is needed based on the system type - if hvac_system_corridor.nil? + if hvac_system_corridor.nil? || hvac_system_corridor.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: corridor_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) else # If a corridor hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item @@ -888,7 +888,7 @@ def create_hw_loop_if_required(baseboard_type: baseboard_type, boilder_fueltype: storage_spaces = model.getSpaces.select { |space| is_an_necb_storage_space?(space) } unless storage_spaces.empty? # If no storage space hvac system is defined then check if a HW loop is needed based on the system type - if hvac_system_storage.nil? + if hvac_system_storage.nil? || hvac_system_storage.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: storage_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) else # If a storage space hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item @@ -899,14 +899,14 @@ def create_hw_loop_if_required(baseboard_type: baseboard_type, boilder_fueltype: # Find if a HW loop is needed for the remaining spaces other_spaces = model.getSpaces.select do |space| - !is_an_necb_wet_space(space) && + !is_an_necb_wet_space?(space) && !is_a_necb_dwelling_unit?(space) && !is_an_necb_wildcard_space?(space) && !is_an_necb_storage_space?(space) end unless other_spaces.empty? # If a hvac system is defined for the remaining spaces then check if a HW loop is needed based on the system type - if hvac_system_primary.nil? + if hvac_system_primary.nil? || hvac_system_primary.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: other_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) else # If an hvac system is defined for the remaining spaces then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item diff --git a/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb b/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb index cd4fdf7757..2a154e0b27 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb @@ -432,6 +432,9 @@ def model_apply_standard(model:, primary_heating_fuel = validate_primary_heating_fuel(primary_heating_fuel: primary_heating_fuel, model: model) self.fuel_type_set = SystemFuels.new() self.fuel_type_set.set_defaults(standards_data: @standards_data, primary_heating_fuel: primary_heating_fuel) + unless hvac_system_primary.nil? || hvac_system_primary.to_s.downcase == 'necb_default' + fuel_type_set.set_fuel_to_hvac_system_primary(hvac_system_primary: hvac_system_primary, standards_data: @standards_data) + end clean_and_scale_model(model: model, rotation_degrees: rotation_degrees, scale_x: scale_x, scale_y: scale_y, scale_z: scale_z) fdwr_set = convert_arg_to_f(variable: fdwr_set, default: -1) srr_set = convert_arg_to_f(variable: srr_set, default: -1) @@ -2525,5 +2528,3 @@ def set_boiler_cap_ratios(boiler_cap_ratio:, boiler_fuel:) return boiler_cap_ratios end end - - diff --git a/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb b/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb index 1e6cc686f6..5c3fad3fd5 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb @@ -60,4 +60,15 @@ def set_boiler_fuel(standards_data:, boiler_fuel:, boiler_cap_ratios:) def set_swh_fuel(swh_fuel:) @swh_fueltype = swh_fuel end + + # Reset system fuels to match parameters defined by hvac_system_primary + def set_fuel_to_hvac_system_primary(hvac_system_primary:, standards_data:) + hvac_system_data = standards_data['hvac_types'].find { |system| system['description'] == hvac_system_primary } + return if hvac_system_data.empty? + @baseboard_type = hvac_system_data["baseboard_type"].to_s + @mau_heating_coil_type = hvac_system_data["mau_heating_type"].to_s + @mau_type = hvac_system_data["mau_type"].to_bool + @necb_reference_hp = hvac_system_data["necb_reference_hp"].to_bool + @necb_reference_hp_supp_fuel = hvac_system_data["necb_reference_hp_supp_fuel"] + end end From e1e22aeda4cf4cbc10aad07d1737c46985c1d71f Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Fri, 13 Dec 2024 16:15:28 +0000 Subject: [PATCH 20/38] Including code to adjust system fuel types --- .../standards/necb/NECB2011/system_fuels.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb b/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb index 5c3fad3fd5..2daa987433 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb @@ -63,12 +63,17 @@ def set_swh_fuel(swh_fuel:) # Reset system fuels to match parameters defined by hvac_system_primary def set_fuel_to_hvac_system_primary(hvac_system_primary:, standards_data:) - hvac_system_data = standards_data['hvac_types'].find { |system| system['description'] == hvac_system_primary } - return if hvac_system_data.empty? + hvac_system_data = standards_data['hvac_types'].find { |system| system['description'].to_s.downcase == hvac_system_primary.to_s.downcase } + return if hvac_system_data.nil? || hvac_system_data.empty? @baseboard_type = hvac_system_data["baseboard_type"].to_s @mau_heating_coil_type = hvac_system_data["mau_heating_type"].to_s @mau_type = hvac_system_data["mau_type"].to_bool @necb_reference_hp = hvac_system_data["necb_reference_hp"].to_bool @necb_reference_hp_supp_fuel = hvac_system_data["necb_reference_hp_supp_fuel"] + # If applying a hvac_system_primary with an NECB reference HP, make sure that the system 4 systems (if left at + # NECB_Default) work with the NECB reference HP. + if hvac_system_data["necb_reference_hp"].to_bool + @heating_coil_type_sys4 = "DX" + end end end From acb5859f6d7b143bf1644acfd6b2459988fcf0f3 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Mon, 16 Dec 2024 21:00:49 +0000 Subject: [PATCH 21/38] Removing HVAC system 5 which appears to be cooling only. Keeping the old system.json but renamed and not used. --- .../standards/necb/NECB2011/autozone.rb | 17 +- .../standards/necb/NECB2011/data/systems.json | 72 --- .../NECB2011/data/systems_including_sys5.json | 588 ++++++++++++++++++ 3 files changed, 595 insertions(+), 82 deletions(-) create mode 100644 lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index d2f1932456..1ab786c5bb 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -152,8 +152,7 @@ def apply_systems(model:, baseline_system_zones_map_option: baseline_system_zones_map_option) # Assign a single system 4 for all wet spaces.. and assign the control zone to the one with the largest load. - auto_system_wet_spaces( - hvac_system_washrooms: hvac_system_washrooms, + auto_system_wet_spaces(hvac_system_washrooms: hvac_system_washrooms, baseboard_type: self.fuel_type_set.baseboard_type, necb_reference_hp: self.fuel_type_set.necb_reference_hp, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, @@ -162,8 +161,7 @@ def apply_systems(model:, model: model) # Assign a single system 4 for all storage spaces.. and assign the control zone to the one with the largest load. - auto_system_storage_spaces( - hvac_system_storage: hvac_system_storage, + auto_system_storage_spaces(hvac_system_storage: hvac_system_storage, baseboard_type: self.fuel_type_set.baseboard_type, necb_reference_hp: self.fuel_type_set.necb_reference_hp, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, @@ -172,8 +170,7 @@ def apply_systems(model:, model: model) # Assign the wild spaces to a single system 4 system with a control zone with the largest load. - auto_system_wild_spaces( - hvac_system_corridor: hvac_system_corridor, + auto_system_wild_spaces(hvac_system_corridor: hvac_system_corridor, baseboard_type: self.fuel_type_set.baseboard_type, necb_reference_hp: self.fuel_type_set.necb_reference_hp, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, @@ -1317,10 +1314,10 @@ def auto_system_storage_spaces(hvac_system_storage: 'NECB_Default', baseboard_type: baseboard_type, hw_loop: @hw_loop) else - create_hvac_by_name( model: model, - hvac_system_name: hvac_system_washrooms, - zones: tz, - hw_loop: @hw_loop) # Add this method to create the system. + create_hvac_by_name(model: model, + hvac_system_name: hvac_system_storage, + zones: tz, + hw_loop: @hw_loop) # Add this method to create the system. end end diff --git a/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json b/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json index e44370a2ac..4de1eef6d2 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json +++ b/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json @@ -350,78 +350,6 @@ "system": "sys_4", "needs_boiler": false }, - { - "description": "TPFC MAU DX Coils with Scroll Chiller", - "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", - "chiller_type": "Scroll", - "fan_coil_type": "TPFC", - "mau_cooling_type": "DX", - "system": "sys_5", - "needs_boiler": false - }, - { - "description": "TPFC MAU DX Coils with Centrifugal Chiller", - "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", - "chiller_type": "Centrifugal", - "fan_coil_type": "TPFC", - "mau_cooling_type": "DX", - "system": "sys_5", - "needs_boiler": false - }, - { - "description": "TPFC MAU DX Coils with Rotary Screw Chiller", - "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", - "chiller_type": "RotaryScrew", - "fan_coil_type": "TPFC", - "mau_cooling_type": "DX", - "system": "sys_5", - "needs_boiler": false - }, - { - "description": "TPFC MAU DX Coils with Reciprocating Chiller", - "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", - "chiller_type": "Reciprocating", - "fan_coil_type": "TPFC", - "mau_cooling_type": "DX", - "system": "sys_5", - "needs_boiler": false - }, - { - "description": "TPFC MAU Chilled Water Coils with Scroll Chiller", - "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", - "chiller_type": "Scroll", - "fan_coil_type": "TPFC", - "mau_cooling_type": "Hydronic", - "system": "sys_5", - "needs_boiler": false - }, - { - "description": "TPFC MAU Chilled Water Coils with Centrifugal Chiller", - "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", - "chiller_type": "Centrifugal", - "fan_coil_type": "TPFC", - "mau_cooling_type": "Hydronic", - "system": "sys_5", - "needs_boiler": false - }, - { - "description": "TPFC MAU Chilled Water Coils with Rotary Screw Chiller", - "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", - "chiller_type": "RotaryScrew", - "fan_coil_type": "TPFC", - "mau_cooling_type": "Hydronic", - "system": "sys_5", - "needs_boiler": false - }, - { - "description": "TPFC MAU Chilled Water Coils with Reciprocating Chiller", - "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", - "chiller_type": "Reciprocating", - "fan_coil_type": "TPFC", - "mau_cooling_type": "Hydronic", - "system": "sys_5", - "needs_boiler": false - }, { "description": "MZ BU RTU Electric Heating Coil Scroll Chiller and Electric Baseboard", "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|", diff --git a/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json b/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json new file mode 100644 index 0000000000..e44370a2ac --- /dev/null +++ b/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json @@ -0,0 +1,588 @@ +{ + "tables": { + "hvac_types": { + "data_type": "table", + "refs": [ + "assumption" + ], + "table":[ + { + "description": "PSZ RTU ASHP with Gas and ASHP Coils and Hot Water Baseboard with Gas Reheat", + "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "mau_heating_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_1", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Gas and ASHP Coils and Electric Baseboard with Gas Reheat", + "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "mau_heating_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_1", + "needs_boiler": false + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP Coils and Hot Water Baseboard with Electric Reheat", + "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "mau_heating_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_1", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP Coils and Electric Baseboard with Electric Reheat", + "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "mau_heating_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_1", + "needs_boiler": false + }, + { + "description": "PSZ MAU Hot Water and DX Coils and Hot Water Baseboard with PTAC", + "name": "sys_1|doas|shr>none|sc>dx|sh>c-hw|ssf>cv|zh>b-hw|zc>ptac|srf>none|", + "baseboard_type": "Hot Water", + "mau_heating_type": "Hot Water", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_1", + "needs_boiler": true + }, + { + "description": "PSZ MAU Hot Water and DX Coils and Electric Baseboard with PTAC", + "name": "sys_1|doas|shr>none|sc>dx|sh>c-hw|ssf>cv|zh>b-e|zc>ptac|srf>none|", + "baseboard_type": "Electric", + "mau_heating_type": "Hot Water", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_1", + "needs_boiler": true + }, + { + "description": "PSZ MAU Electric and DX Coils and Hot Water Baseboard with PTAC", + "name": "sys_1|doas|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>ptac|srf>none|", + "baseboard_type": "Hot Water", + "mau_heating_type": "Electric", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_1", + "needs_boiler": true + }, + { + "description": "PSZ MAU Electric and DX Coils and Electric Baseboard with PTAC", + "name": "sys_1|doas|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>ptac|srf>none|", + "baseboard_type": "Electric", + "mau_heating_type": "Electric", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_1", + "needs_boiler": false + }, + { + "description": "FPFC MAU DX Coils with Scroll Chiller", + "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Scroll", + "fan_coil_type": "FPFC", + "mau_cooling_type": "DX", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU DX Coils with Centrifugal Chiller", + "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Centrifugal", + "fan_coil_type": "FPFC", + "mau_cooling_type": "DX", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU DX Coils with Rotary Screw Chiller", + "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "RotaryScrew", + "fan_coil_type": "FPFC", + "mau_cooling_type": "DX", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU DX Coils with Reciprocating Chiller", + "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Reciprocating", + "fan_coil_type": "FPFC", + "mau_cooling_type": "DX", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU Chilled Water Coils with Scroll Chiller", + "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Scroll", + "fan_coil_type": "FPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU Chilled Water Coils with Centrifugal Chiller", + "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Centrifugal", + "fan_coil_type": "FPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU Chilled Water Coils with Rotary Screw Chiller", + "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "RotaryScrew", + "fan_coil_type": "FPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "FPFC MAU Chilled Water Coils with Reciprocating Chiller", + "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|", + "chiller_type": "Reciprocating", + "fan_coil_type": "FPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_2", + "needs_boiler": false + }, + { + "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard", + "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_3", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Electric Baseboard", + "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_3", + "needs_boiler": false + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Hot Water Baseboard", + "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_3", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Electric Baseboard", + "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "DX", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_3", + "needs_boiler": false + }, + { + "description": "PSZ RTU Gas and DX Coils and Hot Water Baseboard", + "name": "sys_3|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "Gas", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_3", + "needs_boiler": true + }, + { + "description": "PSZ RTU Gas and DX Coils and Electric Baseboard", + "name": "sys_3|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "Gas", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_3", + "needs_boiler": false + }, + { + "description": "PSZ RTU Electric and DX Coils and Hot Water Baseboard", + "name": "sys_3|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "Electric", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_3", + "needs_boiler": true + }, + { + "description": "PSZ RTU Electric and DX Coils and Electric Baseboard", + "name": "sys_3|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "Electric", + "mau_type": true, + "multispeed": false, + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_3", + "needs_boiler": false + }, + { + "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard", + "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "DX", + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_4", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Electric Baseboard", + "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "DX", + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "NaturalGas", + "system": "sys_4", + "needs_boiler": false + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Hot Water Baseboard", + "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "DX", + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_4", + "needs_boiler": true + }, + { + "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Electric Baseboard", + "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "DX", + "necb_reference_hp": true, + "necb_reference_hp_supp_fuel": "Electricity", + "system": "sys_4", + "needs_boiler": false + }, + { + "description": "PSZ RTU Gas and DX Coils and Hot Water Baseboard", + "name": "sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "Gas", + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_4", + "needs_boiler": true + }, + { + "description": "PSZ RTU Gas and DX Coils and Electric Baseboard", + "name": "sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "Gas", + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_4", + "needs_boiler": false + }, + { + "description": "PSZ RTU Electric and DX Coils and Hot Water Baseboard", + "name": "sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", + "baseboard_type": "Hot Water", + "heating_coil_type": "Electric", + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_4", + "needs_boiler": true + }, + { + "description": "PSZ RTU Electric and DX Coils and Electric Baseboard", + "name": "sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", + "baseboard_type": "Electric", + "heating_coil_type": "Electric", + "necb_reference_hp": false, + "necb_reference_hp_supp_fuel": "None", + "system": "sys_4", + "needs_boiler": false + }, + { + "description": "TPFC MAU DX Coils with Scroll Chiller", + "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Scroll", + "fan_coil_type": "TPFC", + "mau_cooling_type": "DX", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU DX Coils with Centrifugal Chiller", + "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Centrifugal", + "fan_coil_type": "TPFC", + "mau_cooling_type": "DX", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU DX Coils with Rotary Screw Chiller", + "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "RotaryScrew", + "fan_coil_type": "TPFC", + "mau_cooling_type": "DX", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU DX Coils with Reciprocating Chiller", + "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Reciprocating", + "fan_coil_type": "TPFC", + "mau_cooling_type": "DX", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU Chilled Water Coils with Scroll Chiller", + "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Scroll", + "fan_coil_type": "TPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU Chilled Water Coils with Centrifugal Chiller", + "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Centrifugal", + "fan_coil_type": "TPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU Chilled Water Coils with Rotary Screw Chiller", + "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "RotaryScrew", + "fan_coil_type": "TPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "TPFC MAU Chilled Water Coils with Reciprocating Chiller", + "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|", + "chiller_type": "Reciprocating", + "fan_coil_type": "TPFC", + "mau_cooling_type": "Hydronic", + "system": "sys_5", + "needs_boiler": false + }, + { + "description": "MZ BU RTU Electric Heating Coil Scroll Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Scroll", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": false + }, + { + "description": "MZ BU RTU Electric Heating Coil Centrifugal Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Centrifugal", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": false + }, + { + "description": "MZ BU RTU Electric Heating Coil Rotary Screw Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "RotaryScrew", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": false + }, + { + "description": "MZ BU RTU Electric Heating Coil Reciprocating Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Reciprocating", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": false + }, + { + "description": "MZ BU RTU Electric Heating Coil Scroll Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Scroll", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Electric Heating Coil Centrifugal Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Centrifugal", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Electric Heating Coil Rotary Screw Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "RotaryScrew", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Electric Heating Coil Reciprocating Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Reciprocating", + "fan_type": "var_speed_drive", + "heating_coil_type": "Electric", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Scroll Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Scroll", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Centrifugal Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Centrifugal", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Rotary Screw Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "RotaryScrew", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Reciprocating Chiller and Electric Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|", + "baseboard_type": "Electric", + "chiller_type": "Reciprocating", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Scroll Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Scroll", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Centrifugal Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Centrifugal", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Rotary Screw Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "RotaryScrew", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + }, + { + "description": "MZ BU RTU Hot Water Heating Coil Reciprocating Chiller and Hot Water Baseboard", + "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|", + "baseboard_type": "Hot Water", + "chiller_type": "Reciprocating", + "fan_type": "var_speed_drive", + "heating_coil_type": "Hot Water", + "system": "sys_6", + "needs_boiler": true + } + ] + } + } +} \ No newline at end of file From c9e6adf276913255ba62ee93caffaa2267fc3a4b Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Wed, 18 Dec 2024 19:18:47 +0000 Subject: [PATCH 22/38] Fixing type in boiler_fueltype parameter in noair baseboard ECM. --- lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb b/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb index 5ba84ab063..4fdabf0872 100755 --- a/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb @@ -3537,7 +3537,7 @@ def add_ecm_remove_airloops_add_zone_baseboards(model:, # Create the hot water loop if necessary. hw_loop = standard.create_hw_loop_if_required( baseboard_type: baseboard_type, - boiler_fueltype: boilder_fueltype, + boiler_fueltype: boiler_fueltype, backup_boiler_fueltype: backup_boiler_fueltype, mau_heating_coil_type: mau_heating_coil_type, model: model From 32e791f29fdee758566af6b37db1a34e70b334b3 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Thu, 19 Dec 2024 14:48:14 +0000 Subject: [PATCH 23/38] Including code which adds washrooms, corridors, storage spaces and dwelling units to the list of other spaces if any non-default HVAC systems are defined for them. Essentially, washrooms, cooridors, storage spaces and dwelling units will either have default HVAC systems assigned to them or ones defined by the other spaces. --- .../standards/necb/NECB2011/autozone.rb | 128 ++++++++++++------ 1 file changed, 84 insertions(+), 44 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 1ab786c5bb..20b2d3c48e 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -133,6 +133,8 @@ def apply_systems(model:, hvac_system_corridor: hvac_system_corridor, hvac_system_storage: hvac_system_storage ) + # Determine if dwelling units, wet spaces, storage spaces, and wild spaces should have their own space or be part of common spaces + common_system_spaces = add_to_common_system?(model: model, hvac_system_dwelling_units: hvac_system_dwelling_units, hvac_system_washrooms: hvac_system_washrooms, hvac_system_corridor: hvac_system_corridor, hvac_system_storage: hvac_system_storage) # Rule that all dwelling units have their own zone and system. auto_system_dwelling_units(model: model, hvac_system_dwelling_units: hvac_system_dwelling_units, @@ -192,6 +194,7 @@ def apply_systems(model:, mau_cooling_type: self.fuel_type_set.mau_cooling_type, mau_heating_coil_type: self.fuel_type_set.mau_heating_coil_type, mau_type: self.fuel_type_set.mau_type + common_system_spaces: common_system_spaces ) model_add_swh(model: model, shw_scale: shw_scale) @@ -848,10 +851,10 @@ def create_hw_loop_if_required(baseboard_type:, boiler_fueltype:, backup_boiler_ # If no dwelling unit hvac system is defined then check if a HW loop is needed based on the system type if hvac_system_dwelling_units.nil? || hvac_system_dwelling_units.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: dwelling_units, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) - else + #else # If a dwelling unit hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item - hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_dwelling_units } - hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool + #hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_dwelling_units } + #hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end end @@ -861,10 +864,10 @@ def create_hw_loop_if_required(baseboard_type:, boiler_fueltype:, backup_boiler_ # If no washroom hvac system is defined then check if a HW loop is needed based on the system type if hvac_system_washrooms.nil? || hvac_system_washrooms.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: washroom_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) - else + #else # If a washroom hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item - hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_washrooms } - hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool + #hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_washrooms } + #hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end end @@ -874,10 +877,10 @@ def create_hw_loop_if_required(baseboard_type:, boiler_fueltype:, backup_boiler_ # If no corridor hvac system is defined then check if a HW loop is needed based on the system type if hvac_system_corridor.nil? || hvac_system_corridor.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: corridor_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) - else + #else # If a corridor hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item - hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_corridor } - hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool + #hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_corridor } + #hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end end @@ -887,9 +890,9 @@ def create_hw_loop_if_required(baseboard_type:, boiler_fueltype:, backup_boiler_ # If no storage space hvac system is defined then check if a HW loop is needed based on the system type if hvac_system_storage.nil? || hvac_system_storage.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: storage_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) - else + #else # If a storage space hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item - hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_storage } + #hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_storage } hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end end @@ -1109,7 +1112,8 @@ def auto_system_all_other_spaces(baseboard_type:, mau_cooling_type:, mau_heating_coil_type:, mau_type:, - model:) + model: + common_system_spaces: []) zones = [] other_spaces = model.getSpaces.select do |space| @@ -1117,6 +1121,10 @@ def auto_system_all_other_spaces(baseboard_type:, !is_an_necb_wildcard_space?(space) && !is_an_necb_storage_space?(space) end + # Add any dwelling units, washrooms, cooridors, or storage spaces to the list of other spaces if a non-default system type was assigned to them + unless common_spaces.empty? || common_spaces.nil? + other_spaces = other_spaces + common_spaces + end other_spaces.each do |space| zones << space.thermalZone.get end @@ -1238,23 +1246,23 @@ def auto_system_dwelling_units( end # end if end # end when 3 end # Sys_zone loop - else # New HVAC system - system_zones_hash.each_pair do |system, sys_zones| - if dwelling_shared_ahu - create_hvac_by_name( model: model, - hvac_system_name: hvac_system_dwelling_units, - zones: sys_zones, - hw_loop: @hw_loop) # Add this method to create the system. - else - # Create a separate air loop for each unit. - sys_zones.each do |zone| - create_hvac_by_name( model: model, - hvac_system_name: hvac_system_dwelling_units, - zones: [zone], - hw_loop: @hw_loop) # Add this method to create the system. - end # zone - end # if - end # Sys_zone loop +# else # New HVAC system +# system_zones_hash.each_pair do |system, sys_zones| +# if dwelling_shared_ahu +# create_hvac_by_name( model: model, +# hvac_system_name: hvac_system_dwelling_units, +# zones: sys_zones, +# hw_loop: @hw_loop) # Add this method to create the system. +# else +# # Create a separate air loop for each unit. +# sys_zones.each do |zone| +# create_hvac_by_name( model: model, +# hvac_system_name: hvac_system_dwelling_units, +# zones: [zone], +# hw_loop: @hw_loop) # Add this method to create the system. +# end # zone +# end # if +# end # Sys_zone loop end # if new HVAC system end @@ -1281,11 +1289,11 @@ def auto_system_wet_spaces(hvac_system_washrooms: 'NECB_Default', heating_coil_type: heating_coil_type_sys4, baseboard_type: baseboard_type, hw_loop: @hw_loop) - else - create_hvac_by_name( model: model, - hvac_system_name: hvac_system_washrooms, - zones: wet_tz, - hw_loop: @hw_loop) # Add this method to create the system. + #else + # create_hvac_by_name( model: model, + # hvac_system_name: hvac_system_washrooms, + # zones: wet_tz, + # hw_loop: @hw_loop) # Add this method to create the system. end end @@ -1313,11 +1321,11 @@ def auto_system_storage_spaces(hvac_system_storage: 'NECB_Default', heating_coil_type: heating_coil_type_sys4, baseboard_type: baseboard_type, hw_loop: @hw_loop) - else - create_hvac_by_name(model: model, - hvac_system_name: hvac_system_storage, - zones: tz, - hw_loop: @hw_loop) # Add this method to create the system. + #else + # create_hvac_by_name(model: model, + # hvac_system_name: hvac_system_storage, + # zones: tz, + # hw_loop: @hw_loop) # Add this method to create the system. end end @@ -1347,11 +1355,11 @@ def auto_system_wild_spaces(hvac_system_corridor: 'NECB_Default', heating_coil_type: heating_coil_type_sys4, baseboard_type: baseboard_type, hw_loop: @hw_loop) - else - create_hvac_by_name( model: model, - hvac_system_name: hvac_system_corridor, - zones: zones, - hw_loop: @hw_loop) # Add this method to create the system. + #else + # create_hvac_by_name( model: model, + # hvac_system_name: hvac_system_corridor, + # zones: zones, + # hw_loop: @hw_loop) # Add this method to create the system. end end @@ -1515,5 +1523,37 @@ def hw_loop_required_from_spaces(spaces:, mau_heating_coil_type:, baseboard_type return hw_loop_needed end + # Method to determine if dwelling_units, washrooms, corridors, or storage spaces should be added to the common HVAC system. + def add_to_common_system?(model:, hvac_system_dwelling_units: nil, hvac_system_washrooms: nil, hvac_system_corridor: nil, hvac_system_storage: nil) + common_spaces = [] + # Find Dwelling Units and determine if they should be added + dwelling_units = model.getSpaces.select { |space| is_a_necb_dwelling_unit?(space) } + unless dwelling_units.empty? || hvac_system_dwelling_units.nil? || hvac_system_dwelling_units.to_s.downcase == 'necb_default' + # If a dwelling unit hvac system is defined and dwelling units are present then add them to them to the common_spaces + common_spaces = common_spaces + dwelling_units + end + + # Find washrooms and determine if they should be added + washroom_spaces = model.getSpaces.select { |space| is_an_necb_wet_space?(space) } + unless washroom_spaces.empty? || hvac_system_washrooms.nil? || hvac_system_washrooms.to_s.downcase == 'necb_default' + # If a washroom hvac system is defined and washrooms/wet spaces are present then add them to the common_spaces + common_spaces = common_spaces + washroom_spaces + end + + # Find corridors and determine if they should be added + corridor_spaces = model.getSpaces.select { |space| is_an_necb_wildcard_space?(space) } + unless corridor_spaces.empty? || hvac_system_corridor.nil? || hvac_system_corridor.to_s.downcase == 'necb_default' + # If a corridor hvac system is defined and corridors are present then add them to the common spaces + common_spaces = common_spaces + corridor_spaces + end + + # Find storage spaces and determine if they should be added + storage_spaces = model.getSpaces.select { |space| is_an_necb_storage_space?(space) } + unless storage_spaces.empty? || hvac_system_storage.nil? || hvac_system_storage.to_s.downcase == 'necb_default' + # If a storage space hvac system is defined and storage spaces are present then add them to the common spaces + common_spaces = common_spaces + storage_spaces + end + return common_spaces + end end From c832b6ef23e647d8a8cfaf0b2d4a6cc34b6b048e Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Thu, 19 Dec 2024 18:02:11 +0000 Subject: [PATCH 24/38] Removing commas from btap_cli run_options test run_options.yml. --- utilities/btap_cli/tests/run_options.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/utilities/btap_cli/tests/run_options.yml b/utilities/btap_cli/tests/run_options.yml index 0d7b1fcee8..1cea080ce5 100644 --- a/utilities/btap_cli/tests/run_options.yml +++ b/utilities/btap_cli/tests/run_options.yml @@ -28,11 +28,11 @@ :ground_floor_cond: NECB_Default :ground_roof_cond: NECB_Default :ground_wall_cond: NECB_Default -:hvac_system_primary: NECB_Default, -:hvac_system_dwelling_units: NECB_Default, -:hvac_system_washrooms: NECB_Default, -:hvac_system_corridor: NECB_Default, -:hvac_system_storage: NECB_Default, +:hvac_system_primary: NECB_Default +:hvac_system_dwelling_units: NECB_Default +:hvac_system_washrooms: NECB_Default +:hvac_system_corridor: NECB_Default +:hvac_system_storage: NECB_Default :infiltration_scale: NECB_Default :lights_scale: NECB_Default :lights_type: NECB_Default From 98bd9cd4eeb597f8f17e4c3496f7f106c6ff09e5 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Thu, 19 Dec 2024 18:12:23 +0000 Subject: [PATCH 25/38] Small syntax error and variable name error fixes in autozone.rb. --- .../standards/necb/NECB2011/autozone.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 20b2d3c48e..a35a590a9b 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -193,7 +193,7 @@ def apply_systems(model:, heating_coil_type_sys6: self.fuel_type_set.heating_coil_type_sys6, mau_cooling_type: self.fuel_type_set.mau_cooling_type, mau_heating_coil_type: self.fuel_type_set.mau_heating_coil_type, - mau_type: self.fuel_type_set.mau_type + mau_type: self.fuel_type_set.mau_type, common_system_spaces: common_system_spaces ) model_add_swh(model: model, @@ -1112,7 +1112,7 @@ def auto_system_all_other_spaces(baseboard_type:, mau_cooling_type:, mau_heating_coil_type:, mau_type:, - model: + model:, common_system_spaces: []) zones = [] @@ -1122,8 +1122,8 @@ def auto_system_all_other_spaces(baseboard_type:, !is_an_necb_storage_space?(space) end # Add any dwelling units, washrooms, cooridors, or storage spaces to the list of other spaces if a non-default system type was assigned to them - unless common_spaces.empty? || common_spaces.nil? - other_spaces = other_spaces + common_spaces + unless common_system_spaces.empty? || common_system_spaces.nil? + other_spaces = other_spaces + common_system_spaces end other_spaces.each do |space| zones << space.thermalZone.get From 61887a55b89ddb3fa3c2320f2dd6671dc67f2906 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Thu, 19 Dec 2024 20:22:07 +0000 Subject: [PATCH 26/38] Removing washrooms and locker rooms from method that finds wildcard spaces. --- .../standards/necb/NECB2011/autozone.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index a35a590a9b..98c9a2f950 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -134,7 +134,7 @@ def apply_systems(model:, hvac_system_storage: hvac_system_storage ) # Determine if dwelling units, wet spaces, storage spaces, and wild spaces should have their own space or be part of common spaces - common_system_spaces = add_to_common_system?(model: model, hvac_system_dwelling_units: hvac_system_dwelling_units, hvac_system_washrooms: hvac_system_washrooms, hvac_system_corridor: hvac_system_corridor, hvac_system_storage: hvac_system_storage) + common_system_spaces = spaces_to_add_to_common_system(model: model, hvac_system_dwelling_units: hvac_system_dwelling_units, hvac_system_washrooms: hvac_system_washrooms, hvac_system_corridor: hvac_system_corridor, hvac_system_storage: hvac_system_storage) # Rule that all dwelling units have their own zone and system. auto_system_dwelling_units(model: model, hvac_system_dwelling_units: hvac_system_dwelling_units, @@ -654,6 +654,8 @@ def space_surface_report(space) # Check to see if this is a wildcard space that the NECB does not have a specified schedule or system for. def is_an_necb_wildcard_space?(space) + # Avoid including washrooms and locker rooms as both wildcard and wet spaces + return nil if space.spaceType.get.standardsSpaceType.get.include?('Locker room') || space.spaceType.get.standardsSpaceType.get.include?('Washroom') space_type_table = @standards_data['space_types'] space_type_data = model_find_object(space_type_table, 'template' => self.class.name, @@ -1424,10 +1426,8 @@ def set_random_rendering_color(object, random) def create_hvac_by_name(model:, hvac_system_name:, zones:, hw_loop: nil) # Get the HVAC system properties - template = determine_spacetype_vintage(model) - standard = Standard.build(template) # Get the HVAC system properties from lib/openstudio-standards/standards/necb/NECB2011/data/systems.json from description field. - hvac_system_data = standard.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_name } + hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_name } raise("Could not find hvac_system_data for #{hvac_system_name}") if hvac_system_data.nil? @@ -1524,7 +1524,7 @@ def hw_loop_required_from_spaces(spaces:, mau_heating_coil_type:, baseboard_type end # Method to determine if dwelling_units, washrooms, corridors, or storage spaces should be added to the common HVAC system. - def add_to_common_system?(model:, hvac_system_dwelling_units: nil, hvac_system_washrooms: nil, hvac_system_corridor: nil, hvac_system_storage: nil) + def spaces_to_add_to_common_system(model:, hvac_system_dwelling_units: nil, hvac_system_washrooms: nil, hvac_system_corridor: nil, hvac_system_storage: nil) common_spaces = [] # Find Dwelling Units and determine if they should be added dwelling_units = model.getSpaces.select { |space| is_a_necb_dwelling_unit?(space) } From 44f72e3838331f6914c8fae8b61b2269ee29e8c4 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Fri, 20 Dec 2024 21:01:02 +0000 Subject: [PATCH 27/38] Ensuring that if washrooms, dwelling units, storage areas, and cooridors system types are defined they use the primary system type instead (or are defaluted if no primary is defined). Making HVAC system descriptions unique. --- .../standards/necb/NECB2011/autozone.rb | 15 +++++++++-- .../standards/necb/NECB2011/data/systems.json | 16 +++++------ .../standards/necb/NECB2011/necb_2011.rb | 27 +++++++++++++++++++ 3 files changed, 48 insertions(+), 10 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 98c9a2f950..237f7e1932 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -947,9 +947,20 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', necb_reference_hp_supp_fuel:'DefaultFuel') # The goal is to minimize the number of system when possible. system_zones_hash = {} + system_selection = nil zones.each do |zone| - system_zones_hash[get_necb_thermal_zone_system_selection(zone)] = [] if system_zones_hash[get_necb_thermal_zone_system_selection(zone)].nil? - system_zones_hash[get_necb_thermal_zone_system_selection(zone)] << zone + # Define the system type based on the space type data or use the custom one (hvac_system_primary) if is defined. + if hvac_system_primary.nil? || hvac_system_primary.to_s.downcase == 'necb_default' + system_selection = get_necb_thermal_zone_system_selection(zone) + else + system_data = @standards_data['hvac_types'] + selected_systems = system_data.select { |ind_system| ind_system["description"].to_s.downcase == hvac_system_primary.to_s.downcase } + raise ("Could not find the provided HVAC system name in the HVAC system library. Please check the spelling of HVAC system name you defined. Provided HVAC system name: #{hvac_system_primary}") if selected_systems.empty? + raise ("More than one HVAC systems match the provided HVAC system name. Please check the spelling of the provided HVAC system name. Provided HVAC system name: #{hvac_system_primary}") if selected_systems.size > 1 + system_selection = selected_systems[0]["system"][4].to_i + end + system_zones_hash[system_selection] = [] if system_zones_hash[system_selection].nil? + system_zones_hash[system_selection] << zone end # puts JSON.pretty_generate(system_zones_hash) # go through each system and zones pairs to diff --git a/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json b/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json index 4de1eef6d2..4f7ad17ca5 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json +++ b/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json @@ -271,7 +271,7 @@ "needs_boiler": false }, { - "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard", + "description": "PSZ RTU with exhaust ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard", "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", "baseboard_type": "Hot Water", "heating_coil_type": "DX", @@ -281,7 +281,7 @@ "needs_boiler": true }, { - "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Electric Baseboard", + "description": "PSZ RTU with exhaust ASHP with Gas and ASHP with Gas Supp. Heat Coils and Electric Baseboard", "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", "baseboard_type": "Electric", "heating_coil_type": "DX", @@ -291,7 +291,7 @@ "needs_boiler": false }, { - "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Hot Water Baseboard", + "description": "PSZ RTU with exhaust ASHP with Electric and ASHP with Electric Supp. Heat Coils and Hot Water Baseboard", "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", "baseboard_type": "Hot Water", "heating_coil_type": "DX", @@ -301,7 +301,7 @@ "needs_boiler": true }, { - "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Electric Baseboard", + "description": "PSZ RTU with exhaust ASHP with Electric and ASHP with Electric Supp. Heat Coils and Electric Baseboard", "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", "baseboard_type": "Electric", "heating_coil_type": "DX", @@ -311,7 +311,7 @@ "needs_boiler": false }, { - "description": "PSZ RTU Gas and DX Coils and Hot Water Baseboard", + "description": "PSZ RTU with exhaust Gas and DX Coils and Hot Water Baseboard", "name": "sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", "baseboard_type": "Hot Water", "heating_coil_type": "Gas", @@ -321,7 +321,7 @@ "needs_boiler": true }, { - "description": "PSZ RTU Gas and DX Coils and Electric Baseboard", + "description": "PSZ RTU with exhaust Gas and DX Coils and Electric Baseboard", "name": "sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", "baseboard_type": "Electric", "heating_coil_type": "Gas", @@ -331,7 +331,7 @@ "needs_boiler": false }, { - "description": "PSZ RTU Electric and DX Coils and Hot Water Baseboard", + "description": "PSZ RTU with exhaust Electric and DX Coils and Hot Water Baseboard", "name": "sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", "baseboard_type": "Hot Water", "heating_coil_type": "Electric", @@ -341,7 +341,7 @@ "needs_boiler": true }, { - "description": "PSZ RTU Electric and DX Coils and Electric Baseboard", + "description": "PSZ RTU with exhaust Electric and DX Coils and Electric Baseboard", "name": "sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", "baseboard_type": "Electric", "heating_coil_type": "Electric", diff --git a/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb b/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb index 2a154e0b27..ba51d4f23e 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb @@ -443,6 +443,14 @@ def model_apply_standard(model:, boiler_cap_ratio = convert_arg_to_string(variable: boiler_cap_ratio, default: nil) swh_fuel = convert_arg_to_string(variable: swh_fuel, default: nil) + # Check if custom systems are assigned to dwelling units, washrooms, corridors, and storage rooms. If they are set + # them to be the same as the primary system type. If no primary system type is defined then set them to be nil. + hvac_system_dwelling_units, hvac_system_corridor, hvac_system_storage, hvac_system_washrooms = reset_hvac_system_if_required(hvac_system_primary: hvac_system_primary, + hvac_system_dwelling_units: hvac_system_dwelling_units, + hvac_system_corridor: hvac_system_corridor, + hvac_system_storage: hvac_system_storage, + hvac_system_washrooms: hvac_system_washrooms) + boiler_cap_ratios = set_boiler_cap_ratios(boiler_cap_ratio: boiler_cap_ratio, boiler_fuel: boiler_fuel) unless boiler_cap_ratio.nil? && boiler_fuel.nil? self.fuel_type_set.set_boiler_fuel(standards_data: @standards_data, boiler_fuel: boiler_fuel, boiler_cap_ratios: boiler_cap_ratios) unless boiler_fuel.nil? self.fuel_type_set.set_swh_fuel(swh_fuel: swh_fuel) unless swh_fuel.nil? || swh_fuel.to_s.downcase == 'defaultfuel' @@ -2527,4 +2535,23 @@ def set_boiler_cap_ratios(boiler_cap_ratio:, boiler_fuel:) } return boiler_cap_ratios end + + # Until someone has time to allow dwelling units, washrooms, cooridors, and storage rooms can get their own custom + # system types (beyond the default necb_system), this metod will set the system type for those rooms to either be + # their default or to the primary system type (if one is defined and the other sytems are not set to default) + def reset_hvac_system_if_required(hvac_system_primary: nil, hvac_system_dwelling_units: nil, hvac_system_corridor: nil, hvac_system_storage: nil, hvac_system_washrooms: nil) + if hvac_system_primary.nil? || hvac_system_primary.to_s.downcase == "necb_default" + hvac_system_dwelling_units = nil + hvac_system_corridor = nil + hvac_system_storage = nil + hvac_system_washrooms = nil + else + hvac_system_dwelling_units = hvac_system_primary unless hvac_system_dwelling_units.nil? || hvac_system_dwelling_units.to_s.downcase == "necb_default" + hvac_system_corridor = hvac_system_primary unless hvac_system_corridor.nil? || hvac_system_corridor.to_s.downcase == "necb_default" + hvac_system_storage = hvac_system_primary unless hvac_system_storage.nil? || hvac_system_storage.to_s.downcase == "necb_default" + hvac_system_washrooms = hvac_system_primary unless hvac_system_washrooms.nil? || hvac_system_washrooms.to_s.downcase == "necb_default" + end + return hvac_system_dwelling_units, hvac_system_corridor, hvac_system_storage, hvac_system_washrooms + end + end From fb4c2e9bacca9fa37e9ff2a29c1f628102f5988c Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Fri, 20 Dec 2024 21:14:14 +0000 Subject: [PATCH 28/38] Renaming systems_including_sys5.json table to distinguish it from the systems.json table. Updating the systems_including_sys5.json table to distinguish between sys3 and sys4 descriptions. --- .../NECB2011/data/systems_including_sys5.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json b/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json index e44370a2ac..8626beefdb 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json +++ b/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json @@ -1,6 +1,6 @@ { "tables": { - "hvac_types": { + "hvac_types_with_sys5": { "data_type": "table", "refs": [ "assumption" @@ -271,7 +271,7 @@ "needs_boiler": false }, { - "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard", + "description": "PSZ RTU ASHP with exhaust with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard", "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", "baseboard_type": "Hot Water", "heating_coil_type": "DX", @@ -281,7 +281,7 @@ "needs_boiler": true }, { - "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Electric Baseboard", + "description": "PSZ RTU with exhaust ASHP with Gas and ASHP with Gas Supp. Heat Coils and Electric Baseboard", "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", "baseboard_type": "Electric", "heating_coil_type": "DX", @@ -291,7 +291,7 @@ "needs_boiler": false }, { - "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Hot Water Baseboard", + "description": "PSZ RTU with exhaust ASHP with Electric and ASHP with Electric Supp. Heat Coils and Hot Water Baseboard", "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", "baseboard_type": "Hot Water", "heating_coil_type": "DX", @@ -301,7 +301,7 @@ "needs_boiler": true }, { - "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Electric Baseboard", + "description": "PSZ RTU with exhaust ASHP with Electric and ASHP with Electric Supp. Heat Coils and Electric Baseboard", "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", "baseboard_type": "Electric", "heating_coil_type": "DX", @@ -311,7 +311,7 @@ "needs_boiler": false }, { - "description": "PSZ RTU Gas and DX Coils and Hot Water Baseboard", + "description": "PSZ RTU with exhaust Gas and DX Coils and Hot Water Baseboard", "name": "sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|", "baseboard_type": "Hot Water", "heating_coil_type": "Gas", @@ -321,7 +321,7 @@ "needs_boiler": true }, { - "description": "PSZ RTU Gas and DX Coils and Electric Baseboard", + "description": "PSZ RTU with exhaust Gas and DX Coils and Electric Baseboard", "name": "sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-e|zc>none|srf>none|", "baseboard_type": "Electric", "heating_coil_type": "Gas", @@ -331,7 +331,7 @@ "needs_boiler": false }, { - "description": "PSZ RTU Electric and DX Coils and Hot Water Baseboard", + "description": "PSZ RTU with exhaust Electric and DX Coils and Hot Water Baseboard", "name": "sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|", "baseboard_type": "Hot Water", "heating_coil_type": "Electric", @@ -341,7 +341,7 @@ "needs_boiler": true }, { - "description": "PSZ RTU Electric and DX Coils and Electric Baseboard", + "description": "PSZ RTU with exhaust Electric and DX Coils and Electric Baseboard", "name": "sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|", "baseboard_type": "Electric", "heating_coil_type": "Electric", From eebfa38613d1f5f4e47c7942a5016a9d3a030c60 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Mon, 30 Dec 2024 20:12:44 +0000 Subject: [PATCH 29/38] Ensure HW loops added to FPFC systems. --- .../standards/necb/NECB2011/data/systems.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json b/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json index 4f7ad17ca5..d703545e6e 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json +++ b/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json @@ -109,7 +109,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "DX", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU DX Coils with Centrifugal Chiller", @@ -118,7 +118,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "DX", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU DX Coils with Rotary Screw Chiller", @@ -127,7 +127,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "DX", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU DX Coils with Reciprocating Chiller", @@ -136,7 +136,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "DX", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU Chilled Water Coils with Scroll Chiller", @@ -145,7 +145,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "Hydronic", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU Chilled Water Coils with Centrifugal Chiller", @@ -154,7 +154,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "Hydronic", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU Chilled Water Coils with Rotary Screw Chiller", @@ -163,7 +163,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "Hydronic", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU Chilled Water Coils with Reciprocating Chiller", @@ -172,7 +172,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "Hydronic", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard", From fed094ecc623576611ab77d539a35f023cb48994 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Mon, 30 Dec 2024 21:05:23 +0000 Subject: [PATCH 30/38] Ensuring boiler created for FPFC systems in systems_including_sys5.json --- .../NECB2011/data/systems_including_sys5.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json b/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json index 8626beefdb..a12a4daea4 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json +++ b/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json @@ -109,7 +109,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "DX", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU DX Coils with Centrifugal Chiller", @@ -118,7 +118,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "DX", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU DX Coils with Rotary Screw Chiller", @@ -127,7 +127,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "DX", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU DX Coils with Reciprocating Chiller", @@ -136,7 +136,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "DX", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU Chilled Water Coils with Scroll Chiller", @@ -145,7 +145,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "Hydronic", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU Chilled Water Coils with Centrifugal Chiller", @@ -154,7 +154,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "Hydronic", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU Chilled Water Coils with Rotary Screw Chiller", @@ -163,7 +163,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "Hydronic", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "FPFC MAU Chilled Water Coils with Reciprocating Chiller", @@ -172,7 +172,7 @@ "fan_coil_type": "FPFC", "mau_cooling_type": "Hydronic", "system": "sys_2", - "needs_boiler": false + "needs_boiler": true }, { "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard", From 7fddede7c8c2475405551e0c652ed4da7f403589 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Mon, 30 Dec 2024 21:47:34 +0000 Subject: [PATCH 31/38] Ensure that undefined spaces are not inculded when assigning user defdined system types to zones. --- .../standards/necb/NECB2011/autozone.rb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 237f7e1932..a7d7ca4e64 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -953,11 +953,19 @@ def create_necb_system(hvac_system_primary: 'NECB_Default', if hvac_system_primary.nil? || hvac_system_primary.to_s.downcase == 'necb_default' system_selection = get_necb_thermal_zone_system_selection(zone) else + zone_space_count = 0 + null_space_count = 0 + zone.spaces.sort.each do |space| + zone_space_count += 1 + null_space_count += 1 if space.spaceType.get.name.to_s.downcase.include?("undefined") + end system_data = @standards_data['hvac_types'] selected_systems = system_data.select { |ind_system| ind_system["description"].to_s.downcase == hvac_system_primary.to_s.downcase } raise ("Could not find the provided HVAC system name in the HVAC system library. Please check the spelling of HVAC system name you defined. Provided HVAC system name: #{hvac_system_primary}") if selected_systems.empty? raise ("More than one HVAC systems match the provided HVAC system name. Please check the spelling of the provided HVAC system name. Provided HVAC system name: #{hvac_system_primary}") if selected_systems.size > 1 system_selection = selected_systems[0]["system"][4].to_i + # Do not inculde zones exclusively containing undefined spaces + system_selection = nil if null_space_count > 0 && zone_space_count == null_space_count end system_zones_hash[system_selection] = [] if system_zones_hash[system_selection].nil? system_zones_hash[system_selection] << zone From a8b9dff86dd73991a87f637e561b16f12b9ea1fe Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Tue, 31 Dec 2024 20:09:25 +0000 Subject: [PATCH 32/38] Ensuring that HW loops are created if needed when custom system types are used. --- .../standards/necb/NECB2011/autozone.rb | 49 +++++++++---------- .../standards/necb/NECB2011/necb_2011.rb | 10 ++-- .../standards/necb/NECB2011/system_fuels.rb | 10 ++-- 3 files changed, 34 insertions(+), 35 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index a7d7ca4e64..46415b9ec9 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -850,51 +850,51 @@ def create_hw_loop_if_required(baseboard_type:, boiler_fueltype:, backup_boiler_ # Find Dwelling Units and determine if a HW loop is needed dwelling_units = model.getSpaces.select { |space| is_a_necb_dwelling_unit?(space) } unless dwelling_units.empty? - # If no dwelling unit hvac system is defined then check if a HW loop is needed based on the system type + # If no dwelling unit hvac system is defined then check if a HW loop is needed based on the system type. if hvac_system_dwelling_units.nil? || hvac_system_dwelling_units.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: dwelling_units, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) - #else - # If a dwelling unit hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item - #hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_dwelling_units } - #hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool + else + # If a dwelling unit hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item. + hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_dwelling_units } + hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end end # Find washrooms and determine if a HW loop is needed washroom_spaces = model.getSpaces.select { |space| is_an_necb_wet_space?(space) } unless washroom_spaces.empty? - # If no washroom hvac system is defined then check if a HW loop is needed based on the system type + # If no washroom hvac system is defined then check if a HW loop is needed based on the system type. if hvac_system_washrooms.nil? || hvac_system_washrooms.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: washroom_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) - #else - # If a washroom hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item - #hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_washrooms } - #hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool + else + # If a washroom hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item. + hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_washrooms } + hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end end # Find corridors and determine if a HW loop is needed corridor_spaces = model.getSpaces.select { |space| is_an_necb_wildcard_space?(space) } unless corridor_spaces.empty? - # If no corridor hvac system is defined then check if a HW loop is needed based on the system type + # If no corridor hvac system is defined then check if a HW loop is needed based on the system type. if hvac_system_corridor.nil? || hvac_system_corridor.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: corridor_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) - #else - # If a corridor hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item - #hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_corridor } - #hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool + else + # If a corridor hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item. + hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_corridor } + hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end end # Find storage spaces and determine if a HW loop is needed storage_spaces = model.getSpaces.select { |space| is_an_necb_storage_space?(space) } unless storage_spaces.empty? - # If no storage space hvac system is defined then check if a HW loop is needed based on the system type + # If no storage space hvac system is defined then check if a HW loop is needed based on the system type. if hvac_system_storage.nil? || hvac_system_storage.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: storage_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) - #else - # If a storage space hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item - #hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_storage } + else + # If a storage space hvac system is defined then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item. + hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_storage } hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end end @@ -911,7 +911,7 @@ def create_hw_loop_if_required(baseboard_type:, boiler_fueltype:, backup_boiler_ if hvac_system_primary.nil? || hvac_system_primary.to_s.downcase == 'necb_default' hw_loop_needed = true if hw_loop_required_from_spaces(spaces: other_spaces, mau_heating_coil_type: mau_heating_coil_type, baseboard_type: baseboard_type) else - # If an hvac system is defined for the remaining spaces then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item + # If an hvac system is defined for the remaining spaces then find it in the hvac_types array and check if it requires a HW loop based on the 'needs_boiler' item. hvac_system_data = self.standards_data['hvac_types'].find { |system| system['description'] == hvac_system_primary } hw_loop_needed = true if hvac_system_data["needs_boiler"].to_bool end @@ -1204,7 +1204,7 @@ def auto_system_dwelling_units( end zones.uniq! - if hvac_system_dwelling_units == 'NECB_Default' or hvac_system_dwelling_units.nil? + if hvac_system_dwelling_units.to_s.downcase == 'necb_default' || hvac_system_dwelling_units.nil? # sort system 1 or 3 used for each dwelling unit as per T8.4.4.8.A NECB 2011-17 zones.each do |zone| @@ -1302,7 +1302,7 @@ def auto_system_wet_spaces(hvac_system_washrooms: 'NECB_Default', wet_tz.uniq! # create a system 4 for the wet zones. return if wet_tz.empty? - if hvac_system_washrooms == 'NECB_Default' or hvac_system_washrooms.nil? + if hvac_system_washrooms.to_s.downcase == 'necb_default' || hvac_system_washrooms.nil? add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, necb_reference_hp: necb_reference_hp, necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel, @@ -1333,7 +1333,7 @@ def auto_system_storage_spaces(hvac_system_storage: 'NECB_Default', tz.uniq! return if tz.empty? - if hvac_system_storage == 'NECB_Default' or hvac_system_storage.nil? + if hvac_system_storage.to_s.downcase == 'necb_default' || hvac_system_storage.nil? # create a system 4 for the zones. add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, necb_reference_hp: necb_reference_hp, @@ -1366,8 +1366,7 @@ def auto_system_wild_spaces(hvac_system_corridor: 'NECB_Default', return if zones.empty? - if hvac_system_corridor == 'NECB_Default' or hvac_system_corridor.nil? - + if hvac_system_corridor.to_s.downcase == 'necb_default' || hvac_system_corridor.nil? # create a system 4 for the wild zones. add_sys4_single_zone_make_up_air_unit_with_baseboard_heating(model: model, necb_reference_hp: necb_reference_hp, diff --git a/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb b/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb index ba51d4f23e..ae24e7aa9c 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb @@ -443,7 +443,7 @@ def model_apply_standard(model:, boiler_cap_ratio = convert_arg_to_string(variable: boiler_cap_ratio, default: nil) swh_fuel = convert_arg_to_string(variable: swh_fuel, default: nil) - # Check if custom systems are assigned to dwelling units, washrooms, corridors, and storage rooms. If they are set + # Check if custom systems are assigned to dwelling units, washrooms, corridors, and storage rooms. If they are, set # them to be the same as the primary system type. If no primary system type is defined then set them to be nil. hvac_system_dwelling_units, hvac_system_corridor, hvac_system_storage, hvac_system_washrooms = reset_hvac_system_if_required(hvac_system_primary: hvac_system_primary, hvac_system_dwelling_units: hvac_system_dwelling_units, @@ -2541,10 +2541,10 @@ def set_boiler_cap_ratios(boiler_cap_ratio:, boiler_fuel:) # their default or to the primary system type (if one is defined and the other sytems are not set to default) def reset_hvac_system_if_required(hvac_system_primary: nil, hvac_system_dwelling_units: nil, hvac_system_corridor: nil, hvac_system_storage: nil, hvac_system_washrooms: nil) if hvac_system_primary.nil? || hvac_system_primary.to_s.downcase == "necb_default" - hvac_system_dwelling_units = nil - hvac_system_corridor = nil - hvac_system_storage = nil - hvac_system_washrooms = nil + hvac_system_dwelling_units = "NECB_Default" + hvac_system_corridor = "NECB_Default" + hvac_system_storage = "NECB_Default" + hvac_system_washrooms = "NECB_Default" else hvac_system_dwelling_units = hvac_system_primary unless hvac_system_dwelling_units.nil? || hvac_system_dwelling_units.to_s.downcase == "necb_default" hvac_system_corridor = hvac_system_primary unless hvac_system_corridor.nil? || hvac_system_corridor.to_s.downcase == "necb_default" diff --git a/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb b/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb index 2daa987433..523c544805 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb @@ -65,11 +65,11 @@ def set_swh_fuel(swh_fuel:) def set_fuel_to_hvac_system_primary(hvac_system_primary:, standards_data:) hvac_system_data = standards_data['hvac_types'].find { |system| system['description'].to_s.downcase == hvac_system_primary.to_s.downcase } return if hvac_system_data.nil? || hvac_system_data.empty? - @baseboard_type = hvac_system_data["baseboard_type"].to_s - @mau_heating_coil_type = hvac_system_data["mau_heating_type"].to_s - @mau_type = hvac_system_data["mau_type"].to_bool - @necb_reference_hp = hvac_system_data["necb_reference_hp"].to_bool - @necb_reference_hp_supp_fuel = hvac_system_data["necb_reference_hp_supp_fuel"] + @baseboard_type = hvac_system_data["baseboard_type"].to_s unless hvac_system_data["baseboard_type"].nil? + @mau_heating_coil_type = hvac_system_data["mau_heating_type"].to_s unless hvac_system_data["mau_heating_type"].nil? + @mau_type = hvac_system_data["mau_type"].to_bool unless hvac_system_data["mau_type"].nil? + @necb_reference_hp = hvac_system_data["necb_reference_hp"].to_bool unless hvac_system_data["necb_reference_hp"].nil? + @necb_reference_hp_supp_fuel = hvac_system_data["necb_reference_hp_supp_fuel"] unless hvac_system_data["necb_reference_hp_supp_fuel"].nil? # If applying a hvac_system_primary with an NECB reference HP, make sure that the system 4 systems (if left at # NECB_Default) work with the NECB reference HP. if hvac_system_data["necb_reference_hp"].to_bool From 57e5db2385ff857ebd5f85848ba19bc5a4bf89f0 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Tue, 31 Dec 2024 22:19:30 +0000 Subject: [PATCH 33/38] Including sys2 heating coil type in primary heating fuel setting and incorporating this when setting the system 2 heating coil type. setting sys2 heating coil type to supplemental fuel type when DX. Will handle properly in future. --- .../necb/NECB2011/data/fuel_type_sets.json | 7 ++++++ .../necb/NECB2011/hvac_system_2_and_5.rb | 22 ++++++++++++++++++- .../standards/necb/NECB2011/system_fuels.rb | 2 ++ 3 files changed, 30 insertions(+), 1 deletion(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json b/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json index 204fce7250..f6832237ca 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json +++ b/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json @@ -18,6 +18,7 @@ "mau_heating_coil_type": "Hot Water", "mau_cooling_type": "DX", "chiller_type": "", + "heating_coil_type_sys2": "Gas", "heating_coil_type_sys3": "Gas", "heating_coil_type_sys4": "Gas", "heating_coil_type_sys6": "Hot Water", @@ -35,6 +36,7 @@ "mau_heating_coil_type": "DX", "mau_cooling_type": "DX", "chiller_type": "", + "heating_coil_type_sys2": "DX", "heating_coil_type_sys3": "DX", "heating_coil_type_sys4": "DX", "heating_coil_type_sys6": "DX", @@ -52,6 +54,7 @@ "mau_heating_coil_type": "DX", "mau_cooling_type": "DX", "chiller_type": "", + "heating_coil_type_sys2": "DX", "heating_coil_type_sys3": "DX", "heating_coil_type_sys4": "DX", "heating_coil_type_sys6": "DX", @@ -69,6 +72,7 @@ "mau_heating_coil_type": "Electric", "mau_cooling_type": "DX", "chiller_type": "", + "heating_coil_type_sys2": "Electric", "heating_coil_type_sys3": "Electric", "heating_coil_type_sys4": "Electric", "heating_coil_type_sys6": "Electric", @@ -87,6 +91,7 @@ "mau_heating_coil_type": "DX", "mau_cooling_type": "DX", "chiller_type": "", + "heating_coil_type_sys2": "DX", "heating_coil_type_sys3": "DX", "heating_coil_type_sys4": "DX", "heating_coil_type_sys6": "DX", @@ -104,6 +109,7 @@ "mau_heating_coil_type": "DX", "mau_cooling_type": "DX", "chiller_type": "", + "heating_coil_type_sys2": "DX", "heating_coil_type_sys3": "DX", "heating_coil_type_sys4": "DX", "heating_coil_type_sys6": "DX", @@ -120,6 +126,7 @@ "mau_heating_coil_type": "Hot Water", "mau_cooling_type": "DX", "chiller_type": "", + "heating_coil_type_sys2": "Electric", "heating_coil_type_sys3": "Electric", "heating_coil_type_sys4": "Electric", "heating_coil_type_sys6": "Electric", diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb index ceb8595b27..35d836d2a2 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb @@ -78,7 +78,27 @@ def add_sys2_FPFC_sys5_TPFC(model:, # Assume direct-fired gas heating coil for now; need to add logic # to set up hydronic or electric coil depending on proposed? - htg_coil = OpenStudio::Model::CoilHeatingGas.new(model, always_on) + # Get Heating Coil from heating coil type sys2. If set to DX use NECB reference HP supplemental fuel. + # TODO: If set to DX incorporate DX heating coil and supplemental heating type. + if self.fuel_type_set.heating_coil_type_sys2 == "DX" + htg_coil_fuel = self.fuel_type_set.necb_reference_hp_supp_fuel + else + htg_coil_fuel = self.fuel_type_set.heating_coil_type_sys2 + end + + case htg_coil_fuel + when 'Electric' # Electric Coil + htg_coil = OpenStudio::Model::CoilHeatingElectric.new(model, always_on) + when 'Electricity' # Electric Coil + htg_coil = OpenStudio::Model::CoilHeatingElectric.new(model, always_on) + when 'Gas' # Natural Gas Coil + htg_coil = OpenStudio::Model::CoilHeatingGas.new(model, always_on) + when 'Hot Water' # Hot Water Coil + htg_coil = OpenStudio::Model::CoilHeatingWater.new(model, always_on) + hw_loop.addDemandBranchForComponent(htg_coil) + else # Default to Natural Gas Coil + htg_coil = OpenStudio::Model::CoilHeatingGas.new(model, always_on) + end # Add DX or hydronic cooling coil if mau_cooling_type == 'DX' diff --git a/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb b/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb index 523c544805..e7ec4692d2 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb @@ -9,6 +9,7 @@ class SystemFuels attr_accessor :mau_heating_coil_type attr_accessor :mau_cooling_type attr_accessor :chiller_type + attr_accessor :heating_coil_type_sys2 attr_accessor :heating_coil_type_sys3 attr_accessor :heating_coil_type_sys4 attr_accessor :heating_coil_type_sys6 @@ -33,6 +34,7 @@ def set_defaults(standards_data:, primary_heating_fuel:) @mau_cooling_type = system_fuel_defaults['mau_cooling_type'] @chiller_type = system_fuel_defaults['chiller_type'] @mau_heating_coil_type = system_fuel_defaults['mau_heating_coil_type'] + @heating_coil_type_sys2 = system_fuel_defaults['heating_coil_type_sys2'] @heating_coil_type_sys3 = system_fuel_defaults['heating_coil_type_sys3'] @heating_coil_type_sys4 = system_fuel_defaults['heating_coil_type_sys4'] @heating_coil_type_sys6 = system_fuel_defaults['heating_coil_type_sys6'] From 852dbfbcb7f6e66fac737d181d6da79d9ad509f7 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Thu, 2 Jan 2025 21:56:40 +0000 Subject: [PATCH 34/38] When setting standards performance, ensuring that the performance of a cooling tower associated with a specific chiller is modified rather than assuming that only one cooling tower is in the model. Also, ensuring that wet spaces are removed when setting the 'other space types' HVAC systems. --- .../standards/necb/NECB2011/autozone.rb | 1 + .../standards/necb/NECB2015/hvac_systems.rb | 18 +++++++++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 46415b9ec9..7b6070f433 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -1138,6 +1138,7 @@ def auto_system_all_other_spaces(baseboard_type:, zones = [] other_spaces = model.getSpaces.select do |space| + !is_an_necb_wet_space?(space) && !is_a_necb_dwelling_unit?(space) && !is_an_necb_wildcard_space?(space) && !is_an_necb_storage_space?(space) diff --git a/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb b/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb index 9761bfd478..cc0245d84f 100644 --- a/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb @@ -104,14 +104,22 @@ def chiller_electric_eir_apply_efficiency_and_curves(chiller_electric_eir, clg_t # Set cooling tower properties now that the new COP of the chiller is set if chiller_electric_eir.name.to_s.include? 'Primary Chiller' - # Single speed tower model assumes 25% extra for compressor power + # Get the cooling tower based on the condenser water loop rather than assume that there is only one cooling tower loop. + clg_towers = [] tower_cap = capacity_w * (1.0 + 1.0 / chiller_electric_eir.referenceCOP) + condenser_loop = chiller_electric_eir.condenserWaterLoop.get + condenser_loop.supplyComponents.each do |supply_comp| + if supply_comp.to_CoolingTowerSingleSpeed.is_initialized + clg_towers << supply_comp.to_CoolingTowerSingleSpeed.get + end + end + # Single speed tower model assumes 25% extra for compressor power if (tower_cap / 1000.0) < 1750 - clg_tower_objs[0].setNumberofCells(1) + clg_towers[0].setNumberofCells(1) else - clg_tower_objs[0].setNumberofCells((tower_cap / (1000 * 1750) + 0.5).round) + clg_towers[0].setNumberofCells((tower_cap / (1000 * 1750) + 0.5).round) end - clg_tower_objs[0].setFanPoweratDesignAirFlowRate(0.013 * tower_cap) + clg_towers[0].setFanPoweratDesignAirFlowRate(0.013 * tower_cap) end # Append the name with size and kw/ton @@ -166,7 +174,7 @@ def apply_maximum_loop_pump_power(model) var_spd_pumps = pumps.select {|pump| pump.to_PumpVariableSpeed.is_initialized} # EnergyPlus doesn't currently properly account for variable speed pumps operation in the condenser loop. # This code is an approximation for a correction to the pump head when the loop has variable speed pumps for ground-source condenser loops. - # These estimates were confirmed with OS runs using Montreal weather file for offices, schoold, and apartment bldgs. Office estimates are + # These estimates were confirmed with OS runs using Montreal weather file for offices, schoold, and apartment bldgs. Office estimates are # then for other bldg types. if plantloop.name.to_s.upcase.include? "GLHX" max_powertoload = 21.0 From 9567ef196dfbf977d7ff50b99aa954601fff64ac Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Mon, 6 Jan 2025 17:37:57 +0000 Subject: [PATCH 35/38] Setting system type for wet, wild, and storage spaces as 4 when determining if a hot water loop is required. --- lib/openstudio-standards/standards/necb/NECB2011/autozone.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 7b6070f433..d322a9c982 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -1515,7 +1515,9 @@ def hw_loop_required_from_spaces(spaces:, mau_heating_coil_type:, baseboard_type # Find the space type for each space and get the system type associated with each space type spaces.sort.each do |space| - systems_used << get_necb_spacetype_system_selection(space) + space_system = get_necb_spacetype_system_selection(space) + space_system = 4 if (space_system.nil? || space_system.empty?) && (is_an_necb_storage_space?(space) || is_an_necb_wet_space?(space) || is_an_necb_wildcard_space?(space)) + systems_used << space_system systems_used.uniq! end From b1230cc70ef35b014382d6ba5adcb76ddac72701 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Mon, 6 Jan 2025 17:52:36 +0000 Subject: [PATCH 36/38] Removing innapropriate .empty? on if an integer is returned. --- lib/openstudio-standards/standards/necb/NECB2011/autozone.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index d322a9c982..5577bfee80 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -1516,7 +1516,7 @@ def hw_loop_required_from_spaces(spaces:, mau_heating_coil_type:, baseboard_type # Find the space type for each space and get the system type associated with each space type spaces.sort.each do |space| space_system = get_necb_spacetype_system_selection(space) - space_system = 4 if (space_system.nil? || space_system.empty?) && (is_an_necb_storage_space?(space) || is_an_necb_wet_space?(space) || is_an_necb_wildcard_space?(space)) + space_system = 4 if space_system.nil? && (is_an_necb_storage_space?(space) || is_an_necb_wet_space?(space) || is_an_necb_wildcard_space?(space)) systems_used << space_system systems_used.uniq! end From bfd995544eb31ca46dce8c2e2b5fda578228d325 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Tue, 7 Jan 2025 16:45:49 +0000 Subject: [PATCH 37/38] Autosizing cooling tower fan power when below 500 W to avoid E+ failure. --- .../standards/necb/NECB2011/hvac_systems.rb | 21 +++++++++++++------ .../standards/necb/NECB2015/hvac_systems.rb | 3 ++- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb index 17b2b79dad..911d86ef49 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb @@ -740,14 +740,24 @@ def chiller_electric_eir_apply_efficiency_and_curves(chiller_electric_eir, clg_t # Set cooling tower properties now that the new COP of the chiller is set if chiller_electric_eir.name.to_s.include? 'Primary Chiller' + # Get the cooling tower based on the condenser water loop rather than assume that there is only one cooling tower loop. + clg_towers = [] + tower_cap = capacity_w * (1.0 + 1.0 / chiller_electric_eir.referenceCOP) + condenser_loop = chiller_electric_eir.condenserWaterLoop.get + condenser_loop.supplyComponents.each do |supply_comp| + if supply_comp.to_CoolingTowerSingleSpeed.is_initialized + clg_towers << supply_comp.to_CoolingTowerSingleSpeed.get + end + end # Single speed tower model assumes 25% extra for compressor power tower_cap = capacity_w * (1.0 + 1.0 / chiller_electric_eir.referenceCOP) if (tower_cap / 1000.0) < 1750 - clg_tower_objs[0].setNumberofCells(1) + clg_towers[0].setNumberofCells(1) else - clg_tower_objs[0].setNumberofCells((tower_cap / (1000 * 1750) + 0.5).round) + clg_towers[0].setNumberofCells((tower_cap / (1000 * 1750) + 0.5).round) end - clg_tower_objs[0].setFanPoweratDesignAirFlowRate(0.015 * tower_cap) + # Only apply cooling tower fan power if power is greater than 500 W. This is to avoid EnergyPlus issues with some small cooling towers. + clg_towers[0].setFanPoweratDesignAirFlowRate(0.015 * tower_cap) if (tower_cap * 0.015 > 500.0) end # Append the name with size and kw/ton @@ -2223,7 +2233,6 @@ def assign_base_sys_name(air_loop:, sys_abbr:, sys_oa:, sys_name_pars:) sys_name += 'sh>ccashp>c-g' when 'ccashp>c-e' sys_name += 'sh>ccashp>c-e' - else sys_name += 'sh>none' end @@ -2300,8 +2309,8 @@ def assign_base_sys_name(air_loop:, sys_abbr:, sys_oa:, sys_name_pars:) end air_loop.setName(sys_name) - return detect_air_system_type(air_loop: air_loop, - old_system_name: sys_name, + return detect_air_system_type(air_loop: air_loop, + old_system_name: sys_name, sys_abbr: sys_abbr) end diff --git a/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb b/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb index cc0245d84f..99f0fec021 100644 --- a/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb @@ -119,7 +119,8 @@ def chiller_electric_eir_apply_efficiency_and_curves(chiller_electric_eir, clg_t else clg_towers[0].setNumberofCells((tower_cap / (1000 * 1750) + 0.5).round) end - clg_towers[0].setFanPoweratDesignAirFlowRate(0.013 * tower_cap) + # Only apply cooling tower fan power if power is greater than 500 W. This is to avoid EnergyPlus issues with some small cooling towers. + clg_towers[0].setFanPoweratDesignAirFlowRate(0.013 * tower_cap) if (tower_cap * 0.013 > 500.0) end # Append the name with size and kw/ton From 530fdcb95ebaa9bf44a5db334af5e3a20a6a50a0 Mon Sep 17 00:00:00 2001 From: Chris Kirney Date: Thu, 9 Jan 2025 15:05:34 +0000 Subject: [PATCH 38/38] Adding code to ensure fuel types sets are set to those defined by the user execpt when setting to hvac_system_primary. Updating cut-off to autosize cooling tower fans to 600W. --- .../standards/necb/NECB2011/autozone.rb | 75 ++++++++++++++++--- .../standards/necb/NECB2011/hvac_systems.rb | 2 +- .../standards/necb/NECB2011/necb_2011.rb | 3 - .../standards/necb/NECB2011/system_fuels.rb | 23 ++++++ .../standards/necb/NECB2015/hvac_systems.rb | 2 +- 5 files changed, 88 insertions(+), 17 deletions(-) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb index 5577bfee80..62de315d5a 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb @@ -103,7 +103,8 @@ def apply_systems(model:, shw_scale:, baseline_system_zones_map_option:) raise('validation of model failed.') unless validate_initial_model(model) - + # Store fuel type information in case hvac_system_primary requires a reset + init_fuel_type = get_fuel_type_information() # Check to see if model is using another vintage of spacetypes. If so overwrite the @standards for the object with the # other spacetype data. This is required for correct system mapping. template = determine_spacetype_vintage(model) @@ -151,7 +152,8 @@ def apply_systems(model:, mau_cooling_type: self.fuel_type_set.mau_cooling_type, mau_heating_coil_type: self.fuel_type_set.mau_heating_coil_type, mau_type: self.fuel_type_set.mau_type, - baseline_system_zones_map_option: baseline_system_zones_map_option) + baseline_system_zones_map_option: baseline_system_zones_map_option, + init_fuel_type: init_fuel_type) # Assign a single system 4 for all wet spaces.. and assign the control zone to the one with the largest load. auto_system_wet_spaces(hvac_system_washrooms: hvac_system_washrooms, @@ -160,7 +162,8 @@ def apply_systems(model:, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, boiler_fueltype: self.fuel_type_set.boiler_fueltype, heating_coil_type_sys4: self.fuel_type_set.heating_coil_type_sys4, - model: model) + model: model, + init_fuel_type: init_fuel_type) # Assign a single system 4 for all storage spaces.. and assign the control zone to the one with the largest load. auto_system_storage_spaces(hvac_system_storage: hvac_system_storage, @@ -169,7 +172,8 @@ def apply_systems(model:, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, boiler_fueltype: self.fuel_type_set.boiler_fueltype, heating_coil_type_sys4: self.fuel_type_set.heating_coil_type_sys4, - model: model) + model: model, + init_fuel_type: init_fuel_type) # Assign the wild spaces to a single system 4 system with a control zone with the largest load. auto_system_wild_spaces(hvac_system_corridor: hvac_system_corridor, @@ -177,7 +181,8 @@ def apply_systems(model:, necb_reference_hp: self.fuel_type_set.necb_reference_hp, necb_reference_hp_supp_fuel: self.fuel_type_set.necb_reference_hp_supp_fuel, heating_coil_type_sys4: self.fuel_type_set.heating_coil_type_sys4, - model: model) + model: model, + init_fuel_type: init_fuel_type) # do the regular assignment for the rest and group where possible. auto_system_all_other_spaces(model: model, hvac_system_primary: hvac_system_primary, @@ -194,7 +199,8 @@ def apply_systems(model:, mau_cooling_type: self.fuel_type_set.mau_cooling_type, mau_heating_coil_type: self.fuel_type_set.mau_heating_coil_type, mau_type: self.fuel_type_set.mau_type, - common_system_spaces: common_system_spaces + common_system_spaces: common_system_spaces, + init_fuel_type: init_fuel_type ) model_add_swh(model: model, shw_scale: shw_scale) @@ -1134,8 +1140,14 @@ def auto_system_all_other_spaces(baseboard_type:, mau_heating_coil_type:, mau_type:, model:, - common_system_spaces: []) - + common_system_spaces: [], + init_fuel_type:) + # Reset fuel type set to those defined by the user + fuel_type_set.reset_default_fuel_info(init_fuel_type: init_fuel_type) + # Set fuel type info based on hvac_system_primary (if set) + unless hvac_system_primary.nil? || hvac_system_primary.to_s.downcase == 'necb_default' + fuel_type_set.set_fuel_to_hvac_system_primary(hvac_system_primary: hvac_system_primary, standards_data: @standards_data) + end zones = [] other_spaces = model.getSpaces.select do |space| !is_an_necb_wet_space?(space) && @@ -1169,6 +1181,8 @@ def auto_system_all_other_spaces(baseboard_type:, zones: zones, necb_reference_hp: necb_reference_hp, necb_reference_hp_supp_fuel: necb_reference_hp_supp_fuel) + # Reset fuel type set back to those defined by the user + fuel_type_set.reset_default_fuel_info(init_fuel_type: init_fuel_type) end # This method will ensure that all dwelling units are assigned to a system 1 or 3. @@ -1190,7 +1204,10 @@ def auto_system_dwelling_units( mau_heating_coil_type:, mau_type:, model:, - baseline_system_zones_map_option:) + baseline_system_zones_map_option:, + init_fuel_type:) + # Reset fuel type set to those defined by the user + fuel_type_set.reset_default_fuel_info(init_fuel_type: init_fuel_type) system_zones_hash = {} # Determine if dwelling units have a shared AHU. If user entered building stories > 4 then set to true. if baseline_system_zones_map_option == 'one_sys_per_dwelling_unit' @@ -1295,7 +1312,10 @@ def auto_system_wet_spaces(hvac_system_washrooms: 'NECB_Default', necb_reference_hp_supp_fuel:'DefaultFuel', boiler_fueltype:, heating_coil_type_sys4:, - model:) + model:, + init_fuel_type:) + # Reset fuel type set to those defined by the user + fuel_type_set.reset_default_fuel_info(init_fuel_type: init_fuel_type) # Determine what zones are wet zones. wet_tz = [] wet_spaces = model.getSpaces.select { |space| is_an_necb_wet_space?(space) } @@ -1326,7 +1346,10 @@ def auto_system_storage_spaces(hvac_system_storage: 'NECB_Default', necb_reference_hp_supp_fuel:'DefaultFuel', boiler_fueltype:, heating_coil_type_sys4:, - model:) + model:, + init_fuel_type:) + # Reset fuel type set to those defined by the user + fuel_type_set.reset_default_fuel_info(init_fuel_type: init_fuel_type) # Determine what zones are storage zones. tz = [] storage_spaces = model.getSpaces.select { |space| is_an_necb_storage_space?(space) } @@ -1358,7 +1381,10 @@ def auto_system_wild_spaces(hvac_system_corridor: 'NECB_Default', necb_reference_hp: false, necb_reference_hp_supp_fuel: 'Defaultfuel', heating_coil_type_sys4:, - model:) + model:, + init_fuel_type:) + # Reset fuel type set to those defined by the user + fuel_type_set.reset_default_fuel_info(init_fuel_type: init_fuel_type) zones = [] wild_spaces = model.getSpaces.select { |space| !is_an_necb_wet_space?(space) && is_an_necb_wildcard_space?(space) } @@ -1577,4 +1603,29 @@ def spaces_to_add_to_common_system(model:, hvac_system_dwelling_units: nil, hvac return common_spaces end + def get_fuel_type_information() + init_fuel_type = { + name: fuel_type_set.name, + boiler_fueltype: fuel_type_set.boiler_fueltype, + backup_boiler_fueltype: fuel_type_set.backup_boiler_fueltype, + primary_boiler_cap_frac: fuel_type_set.primary_boiler_cap_frac, + secondary_boiler_cap_frac: fuel_type_set.secondary_boiler_cap_frac, + baseboard_type: fuel_type_set.baseboard_type, + mau_type: fuel_type_set.mau_type, + mau_heating_coil_type: fuel_type_set.mau_heating_coil_type, + mau_cooling_type: fuel_type_set.mau_cooling_type, + chiller_type: fuel_type_set.chiller_type, + heating_coil_type_sys2: fuel_type_set.heating_coil_type_sys2, + heating_coil_type_sys3: fuel_type_set.heating_coil_type_sys3, + heating_coil_type_sys4: fuel_type_set.heating_coil_type_sys4, + heating_coil_type_sys6: fuel_type_set.heating_coil_type_sys6, + necb_reference_hp: fuel_type_set.necb_reference_hp, + necb_reference_hp_supp_fuel: fuel_type_set.necb_reference_hp_supp_fuel, + fan_type: fuel_type_set.fan_type, + ecm_fueltype: fuel_type_set.ecm_fueltype, + swh_fueltype: fuel_type_set.swh_fueltype + } + return init_fuel_type + end + end diff --git a/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb b/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb index 911d86ef49..29bf3126ee 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb @@ -757,7 +757,7 @@ def chiller_electric_eir_apply_efficiency_and_curves(chiller_electric_eir, clg_t clg_towers[0].setNumberofCells((tower_cap / (1000 * 1750) + 0.5).round) end # Only apply cooling tower fan power if power is greater than 500 W. This is to avoid EnergyPlus issues with some small cooling towers. - clg_towers[0].setFanPoweratDesignAirFlowRate(0.015 * tower_cap) if (tower_cap * 0.015 > 500.0) + clg_towers[0].setFanPoweratDesignAirFlowRate(0.015 * tower_cap) if (tower_cap * 0.015 > 600.0) end # Append the name with size and kw/ton diff --git a/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb b/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb index ae24e7aa9c..8b602e03f4 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb @@ -432,9 +432,6 @@ def model_apply_standard(model:, primary_heating_fuel = validate_primary_heating_fuel(primary_heating_fuel: primary_heating_fuel, model: model) self.fuel_type_set = SystemFuels.new() self.fuel_type_set.set_defaults(standards_data: @standards_data, primary_heating_fuel: primary_heating_fuel) - unless hvac_system_primary.nil? || hvac_system_primary.to_s.downcase == 'necb_default' - fuel_type_set.set_fuel_to_hvac_system_primary(hvac_system_primary: hvac_system_primary, standards_data: @standards_data) - end clean_and_scale_model(model: model, rotation_degrees: rotation_degrees, scale_x: scale_x, scale_y: scale_y, scale_z: scale_z) fdwr_set = convert_arg_to_f(variable: fdwr_set, default: -1) srr_set = convert_arg_to_f(variable: srr_set, default: -1) diff --git a/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb b/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb index e7ec4692d2..4cc349f151 100644 --- a/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +++ b/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb @@ -78,4 +78,27 @@ def set_fuel_to_hvac_system_primary(hvac_system_primary:, standards_data:) @heating_coil_type_sys4 = "DX" end end + + # Reset to default fuel info + def reset_default_fuel_info(init_fuel_type:) + @name = init_fuel_type[:name] + @boiler_fueltype = init_fuel_type[:boiler_fueltype] + @backup_boiler_fueltype = init_fuel_type[:backup_boiler_fueltype] + @primary_boiler_cap_frac = init_fuel_type[:primary_boiler_cap_frac] + @secondary_boiler_cap_frac = init_fuel_type[:secondary_boiler_cap_frac] + @baseboard_type = init_fuel_type[:baseboard_type] + @mau_type = init_fuel_type[:mau_type] + @mau_heating_coil_type = init_fuel_type[:mau_heating_coil_type] + @mau_cooling_type = init_fuel_type[:mau_cooling_type] + @chiller_type = init_fuel_type[:chiller_type] + @heating_coil_type_sys2 = init_fuel_type[:heating_coil_type_sys2] + @heating_coil_type_sys3 = init_fuel_type[:heating_coil_type_sys3] + @heating_coil_type_sys4 = init_fuel_type[:heating_coil_type_sys4] + @heating_coil_type_sys6 = init_fuel_type[:heating_coil_type_sys6] + @necb_reference_hp = init_fuel_type[:necb_reference_hp] + @necb_reference_hp_supp_fuel = init_fuel_type[:necb_reference_hp_supp_fuel] + @fan_type = init_fuel_type[:fan_type] + @ecm_fueltype = init_fuel_type[:ecm_fueltype] + @swh_fueltype = init_fuel_type[:swh_fueltype] + end end diff --git a/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb b/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb index 99f0fec021..5eda425f38 100644 --- a/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +++ b/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb @@ -120,7 +120,7 @@ def chiller_electric_eir_apply_efficiency_and_curves(chiller_electric_eir, clg_t clg_towers[0].setNumberofCells((tower_cap / (1000 * 1750) + 0.5).round) end # Only apply cooling tower fan power if power is greater than 500 W. This is to avoid EnergyPlus issues with some small cooling towers. - clg_towers[0].setFanPoweratDesignAirFlowRate(0.013 * tower_cap) if (tower_cap * 0.013 > 500.0) + clg_towers[0].setFanPoweratDesignAirFlowRate(0.013 * tower_cap) if (tower_cap * 0.013 > 600.0) end # Append the name with size and kw/ton